ZAP Scanning Report
| Risk Level | Number of Alerts |
|---|---|
|
High
|
2
|
|
Medium
|
11
|
|
Low
|
5
|
|
Informational
|
6
|
|
False Positives:
|
0
|
| Name | Risk Level | Number of Instances |
|---|---|---|
| Anti-CSRF Tokens Check | High | 4 |
| Proxy Disclosure | High | 19 |
| Absence of Anti-CSRF Tokens | Medium | 4 |
| Backup File Disclosure | Medium | 2 |
| CORS Misconfiguration | Medium | 19 |
| Content Security Policy (CSP) Header Not Set | Medium | 6 |
| Cross-Domain Misconfiguration | Medium | 15 |
| Hidden File Found | Medium | 1 |
| Insecure HTTP Method - PATCH | Medium | 1 |
| Insecure HTTP Method - PUT | Medium | 19 |
| Missing Anti-clickjacking Header | Medium | 4 |
| Vulnerable JS Library | Medium | 1 |
| Web Cache Deception | Medium | 4 |
| Dangerous JS Functions | Low | 1 |
| In Page Banner Information Leak | Low | 2 |
| Permissions Policy Header Not Set | Low | 9 |
| Server Leaks Version Information via "Server" HTTP Response Header Field | Low | 15 |
| X-Content-Type-Options Header Missing | Low | 13 |
| Base64 Disclosure | Informational | 1 |
| Information Disclosure - Suspicious Comments | Informational | 3 |
| Modern Web Application | Informational | 5 |
| Non-Storable Content | Informational | 4 |
| Storable and Cacheable Content | Informational | 11 |
| User Agent Fuzzer | Informational | 28 |
| HTTP Response Code | Number of Responses |
|---|---|
| 501 Not Implemented |
22
|
| 403 Forbidden |
36
|
| 404 Not Found |
766
|
| 405 Method Not Allowed |
61
|
| 200 OK |
751
|
| 400 Bad Request |
6
|
| 302 Found |
241
|
| Technology | Version | Categories | Implies |
|---|---|---|---|
|
Apache Tomcat
|
Web servers
|
Java
|
|
|
Bootstrap
|
UI frameworks
|
||
|
Font Awesome
|
Font scripts
|
||
|
Java
|
Programming languages
|
||
|
jQuery
|
1.8.2
|
JavaScript libraries
|
| Parameter Name | Type | Flags | Times Used | # Values |
|---|
|
High |
Anti-CSRF Tokens Check |
|---|---|
| Description |
A cross-site request forgery is an attack that involves forcing a victim to send an HTTP request to a target destination without their knowledge or intent in order to perform an action as the victim. The underlying cause is application functionality using predictable URL/form actions in a repeatable way. The nature of the attack is that CSRF exploits the trust that a web site has for a user. By contrast, cross-site scripting (XSS) exploits the trust that a user has for a web site. Like XSS, CSRF attacks are not necessarily cross-site, but they can be. Cross-site request forgery is also known as CSRF, XSRF, one-click attack, session riding, confused deputy, and sea surf.
CSRF attacks are effective in a number of situations, including:
* The victim has an active session on the target site.
* The victim is authenticated via HTTP auth on the target site.
* The victim is on the same local network as the target site.
CSRF has primarily been used to perform an action against a target site using the victim's privileges, but recent techniques have been discovered to disclose information by gaining access to the response. The risk of information disclosure is dramatically increased when the target site is vulnerable to XSS, because XSS can be used as a platform for CSRF, allowing the attack to operate within the bounds of the same-origin policy.
|
| URL | http://zero.webappsecurity.com |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | <form action="/search.html" class="navbar-search pull-right" style="padding-right: 20px"> |
| Request Header - size: 213 bytes. |
GET http://zero.webappsecurity.com HTTP/1.1
Host: zero.webappsecurity.com User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0 Pragma: no-cache Cache-Control: no-cache |
| Request Body - size: 0 bytes. |
|
| Response Header - size: 242 bytes. |
HTTP/1.1 200 OK
Date: Mon, 14 Mar 2022 07:13:40 GMT Server: Apache-Coyote/1.1 Access-Control-Allow-Origin: * Cache-Control: no-cache, max-age=0, must-revalidate, no-store Content-Type: text/html;charset=UTF-8 Content-Language: en-US |
| Response Body - size: 12,471 bytes. |
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Zero - Personal Banking - Loans - Credit Cards</title> <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"> <meta http-equiv="X-UA-Compatible" content="IE=Edge"> <link type="text/css" rel="stylesheet" href="/resources/css/bootstrap.min.css"/> <link type="text/css" rel="stylesheet" href="/resources/css/font-awesome.css"/> <link type="text/css" rel="stylesheet" href="/resources/css/main.css"/> <script src="/resources/js/jquery-1.8.2.min.js"></script> <script src="/resources/js/bootstrap.min.js"></script> <script src="/resources/js/placeholders.min.js"></script> <script type="text/javascript"> Placeholders.init({ live: true, // Apply to future and modified elements too hideOnFocus: true // Hide the placeholder when the element receives focus }); </script> <script type="text/javascript"> $(document).ajaxError(function errorHandler(event, xhr, ajaxOptions, thrownError) { if (xhr.status == 403) { window.location.reload(); } }); </script> </head> <body> <div class="wrapper"> <div class="navbar navbar-fixed-top"> <div class="navbar-inner"> <div class="container"> <a href="/index.html" class="brand">Zero Bank</a> <div> <ul class="nav float-right"> <li> <form action="/search.html" class="navbar-search pull-right" style="padding-right: 20px"> <input type="text" id="searchTerm" name="searchTerm" class="search-query" placeholder="Search"/> </form> </li> <li> <button id="signin_button" type="button" class="signin btn btn-info"> <i class="icon-signin"></i>Signin </button> </li> </ul> </div> </div> </div> </div> <script type="text/javascript"> $(function() { var path = "/"; $("#signin_button").click(function(event) { event.preventDefault(); window.location.href = path + "login" + ".html"; }); }); </script> <div class="container"> <div class="top_offset"> <div class="row"> <div class="span12"> <div id="nav" class="clearfix"> <ul id="pages-nav"> <li id="homeMenu"><div><strong>Home</strong></div></li> <li id="onlineBankingMenu"><div><strong>Online Banking</strong></div></li> <li id="feedback"><div><strong>Feedback</strong></div></li> </ul> </div> </div> <script type="text/javascript"> $(function () { var path = "/"; var featureIdToName = { "index": "homeMenu", "online-banking": "onlineBankingMenu", "feedback": "feedback" }; if (document.location.href.match(".*" + path + "$") != null) { $("#homeMenu").addClass("active"); } else { $.each(featureIdToName, function(featureId, featureName) { if (document.location.href.indexOf(featureId + ".html") >= 0) { $("#" + featureName).addClass("active"); } }); } $.each(featureIdToName, function(featureId, featureName) { $("#nav").on("click", "li[id='" + featureName + "']", function(event) { event.preventDefault(); window.location.href = path + featureId + ".html"; }); }); }); </script> </div> <div class="row"> <div class="span12"> <div id="carousel" class="carousel slide"> <div class="carousel-inner"> <div class="active item"> <img src="/resources/img/main_carousel_1.jpg" width="940" height="401" alt=""/> <div class="custom carousel-caption"> <h4>Online Banking</h4> <p>Welcome to Zero Online Banking. Zero provides a greener and more convenient way to manage your money. Zero enables you to check your account balances, pay your bills, transfer money, and keep detailed records of your transactions, wherever there is an internet connection.</p> </div> </div> <div class="item"> <img src="/resources/img/main_carousel_2.jpg" width="940" height="401" alt=""/> <div class="custom carousel-caption"> <h4>Online Banking</h4> <p>Welcome to Zero Online Banking. Zero provides a greener and more convenient way to manage your money. Zero enables you to check your account balances, pay your bills, transfer money, and keep detailed records of your transactions, wherever there is an internet connection.</p> </div> </div> <div class="item"> <img src="/resources/img/main_carousel_3.jpg" width="940" height="401" alt=""/> <div class="custom carousel-caption"> <h4>Online Banking</h4> <p>Welcome to Zero Online Banking. Zero provides a greener and more convenient way to manage your money. Zero enables you to check your account balances, pay your bills, transfer money, and keep detailed records of your transactions, wherever there is an internet connection.</p> </div> </div> </div> <a class="carousel-control custom left" href="#carousel" data-slide="prev">‹</a> <a class="carousel-control custom right" href="#carousel" data-slide="next">›</a> </div> </div> </div> <hr class="row-divider"/> <div id="online_banking_features" class="row divider"> <div class="span3"> <h4><i class="icon icon-bookmark"></i> Online Banking</h4> <p>Click the button below to view online banking features.</p> <a id="online-banking" class="btn btn-small btn-info">More Services</a> </div> <div class="span3"> <div> <h4><span class="headers" id="account_activity_link"><i class="icon icon-user"></i>Checking Account Activity</span></h4> <p>Use Zero to view the most up-to-date listings of your deposits, withdrawals, interest payments, and a number of other useful transactions. </p> </div> </div> <div class="span3"> <div> <h4><span class="headers" id="transfer_funds_link"><i class="icon icon-random"></i>Transfer Funds</span></h4> <p>Use Zero to safely and securely transfer funds between accounts. There is no hold placed on online money transfers, so your funds are available when you need them. </p> </div> </div> <div class="span3"> <div> <h4><span class="headers" id="money_map_link"><i class="icon icon-list-alt"></i>My Money Map</span></h4> <p>Use Zero to set up and monitor your personalized money map. A money map is an easy-to-use online tool that helps you manage your finances efficiently. With Money Map, you can create a budget, sort your finances into spending and savings categories, check the interest your accounts are earning, and gain new understanding of your patterns with the help of Zero’s clear charts and graphs. </p> </div> </div> </div> <script type="text/javascript"> $(function() { $("#carousel").carousel({ interval: false }); $("div").on("click", "a[id='online-banking']", function(event){ event.preventDefault(); window.location.href = "/" + "online-banking" + ".html"; }); var path = "/bank/"; var featureIdToName = { "account_activity_link": "account-activity", "transfer_funds_link": "transfer-funds", "money_map_link": "money-map" } $.each(featureIdToName, function(featureId, featureName) { $("#online_banking_features").on("click", "span[id='" + featureId + "']", function(event) { event.preventDefault(); window.location.href = path + featureName +".html"; }); }); }); </script> </div> </div> <div class="clearfix push"></div> </div> <div class="extra"> <div class="extra-inner"> <div class="container"> <div class="row"> <div class="span4"> <ul> <li><span id="download_webinspect_link">Download WebInspect</span></li> </ul> </div> <div class="span4"> <ul> <li><span id="terms_of_use_link">Terms of Use</span></li> </ul> </div> <div class="span4"> <ul> <li><span id="contact_hp_link">Contact Micro Focus</span></li> <li><span id="privacy_statement_link">Privacy Statement</span></li> </ul> </div> </div> <div class="row"> <div class="disclaimer span12"> The Free Online Bank Web site is published by Micro Focus Fortify for the sole purpose of demonstrating the functionality and effectiveness of Micro Focus Fortify’s WebInspect products in detecting and reporting Web application vulnerabilities. This site is not a real banking site and any similarities to third party products and/or Web sites are purely coincidental. This site is provided "as is" without warranty of any kind, either express or implied. Micro Focus Fortify does not assume any risk in relation to your use of this Web site. Use of this Web site indicates that you have read and agree to Micro Focus Fortify’s Terms of Use found at <a href="https://www.microfocus.com/about/legal/#privacy" target="_blank">https://www.microfocus.com/about/legal/#privacy</a> and Micro Focus Fortify’s Online Privacy Statement found at <a href="https://www.microfocus.com/about/legal/#privacy" target="_blank">https://www.microfocus.com/about/legal/#privacy</a>. <br/><br/> Copyright © 2012-2018, Micro Focus Development Company. All rights reserved. </div> </div> </div> </div> </div> <script type="text/javascript"> $(function () { var path = "/"; var attachClickHandler = function(selector, handler) { $(".extra").on('click', selector, handler); } var footerLinks = { "download_webinspect_link": { absolute: true, page: "https://software.microfocus.com/en-us/products/webinspect-dynamic-analysis-dast/overview" }, "contact_hp_link" : { absolute: true, page: "https://support.fortify.com" }, "privacy_statement_link": { absolute: true, page: "https://www.microfocus.com/about/legal/#privacy" }, "terms_of_use_link": { absolute: true, page: "https://www.microfocus.com/about/legal/" } }; $.each(footerLinks, function(linkId, link) { attachClickHandler('span[id="' + linkId + '"]', function(event) { event.preventDefault(); if (link.absolute) { window.location.href = link.page; } else { window.location.href = path + link.page + ".html"; } }); }); }); </script> </body> </html> |
| URL | http://zero.webappsecurity.com/ |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | <form action="/search.html" class="navbar-search pull-right" style="padding-right: 20px"> |
| Request Header - size: 214 bytes. |
GET http://zero.webappsecurity.com/ HTTP/1.1
Host: zero.webappsecurity.com User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0 Pragma: no-cache Cache-Control: no-cache |
| Request Body - size: 0 bytes. |
|
| Response Header - size: 242 bytes. |
HTTP/1.1 200 OK
Date: Mon, 14 Mar 2022 07:13:41 GMT Server: Apache-Coyote/1.1 Access-Control-Allow-Origin: * Cache-Control: no-cache, max-age=0, must-revalidate, no-store Content-Type: text/html;charset=UTF-8 Content-Language: en-US |
| Response Body - size: 12,471 bytes. |
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Zero - Personal Banking - Loans - Credit Cards</title> <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"> <meta http-equiv="X-UA-Compatible" content="IE=Edge"> <link type="text/css" rel="stylesheet" href="/resources/css/bootstrap.min.css"/> <link type="text/css" rel="stylesheet" href="/resources/css/font-awesome.css"/> <link type="text/css" rel="stylesheet" href="/resources/css/main.css"/> <script src="/resources/js/jquery-1.8.2.min.js"></script> <script src="/resources/js/bootstrap.min.js"></script> <script src="/resources/js/placeholders.min.js"></script> <script type="text/javascript"> Placeholders.init({ live: true, // Apply to future and modified elements too hideOnFocus: true // Hide the placeholder when the element receives focus }); </script> <script type="text/javascript"> $(document).ajaxError(function errorHandler(event, xhr, ajaxOptions, thrownError) { if (xhr.status == 403) { window.location.reload(); } }); </script> </head> <body> <div class="wrapper"> <div class="navbar navbar-fixed-top"> <div class="navbar-inner"> <div class="container"> <a href="/index.html" class="brand">Zero Bank</a> <div> <ul class="nav float-right"> <li> <form action="/search.html" class="navbar-search pull-right" style="padding-right: 20px"> <input type="text" id="searchTerm" name="searchTerm" class="search-query" placeholder="Search"/> </form> </li> <li> <button id="signin_button" type="button" class="signin btn btn-info"> <i class="icon-signin"></i>Signin </button> </li> </ul> </div> </div> </div> </div> <script type="text/javascript"> $(function() { var path = "/"; $("#signin_button").click(function(event) { event.preventDefault(); window.location.href = path + "login" + ".html"; }); }); </script> <div class="container"> <div class="top_offset"> <div class="row"> <div class="span12"> <div id="nav" class="clearfix"> <ul id="pages-nav"> <li id="homeMenu"><div><strong>Home</strong></div></li> <li id="onlineBankingMenu"><div><strong>Online Banking</strong></div></li> <li id="feedback"><div><strong>Feedback</strong></div></li> </ul> </div> </div> <script type="text/javascript"> $(function () { var path = "/"; var featureIdToName = { "index": "homeMenu", "online-banking": "onlineBankingMenu", "feedback": "feedback" }; if (document.location.href.match(".*" + path + "$") != null) { $("#homeMenu").addClass("active"); } else { $.each(featureIdToName, function(featureId, featureName) { if (document.location.href.indexOf(featureId + ".html") >= 0) { $("#" + featureName).addClass("active"); } }); } $.each(featureIdToName, function(featureId, featureName) { $("#nav").on("click", "li[id='" + featureName + "']", function(event) { event.preventDefault(); window.location.href = path + featureId + ".html"; }); }); }); </script> </div> <div class="row"> <div class="span12"> <div id="carousel" class="carousel slide"> <div class="carousel-inner"> <div class="active item"> <img src="/resources/img/main_carousel_1.jpg" width="940" height="401" alt=""/> <div class="custom carousel-caption"> <h4>Online Banking</h4> <p>Welcome to Zero Online Banking. Zero provides a greener and more convenient way to manage your money. Zero enables you to check your account balances, pay your bills, transfer money, and keep detailed records of your transactions, wherever there is an internet connection.</p> </div> </div> <div class="item"> <img src="/resources/img/main_carousel_2.jpg" width="940" height="401" alt=""/> <div class="custom carousel-caption"> <h4>Online Banking</h4> <p>Welcome to Zero Online Banking. Zero provides a greener and more convenient way to manage your money. Zero enables you to check your account balances, pay your bills, transfer money, and keep detailed records of your transactions, wherever there is an internet connection.</p> </div> </div> <div class="item"> <img src="/resources/img/main_carousel_3.jpg" width="940" height="401" alt=""/> <div class="custom carousel-caption"> <h4>Online Banking</h4> <p>Welcome to Zero Online Banking. Zero provides a greener and more convenient way to manage your money. Zero enables you to check your account balances, pay your bills, transfer money, and keep detailed records of your transactions, wherever there is an internet connection.</p> </div> </div> </div> <a class="carousel-control custom left" href="#carousel" data-slide="prev">‹</a> <a class="carousel-control custom right" href="#carousel" data-slide="next">›</a> </div> </div> </div> <hr class="row-divider"/> <div id="online_banking_features" class="row divider"> <div class="span3"> <h4><i class="icon icon-bookmark"></i> Online Banking</h4> <p>Click the button below to view online banking features.</p> <a id="online-banking" class="btn btn-small btn-info">More Services</a> </div> <div class="span3"> <div> <h4><span class="headers" id="account_activity_link"><i class="icon icon-user"></i>Checking Account Activity</span></h4> <p>Use Zero to view the most up-to-date listings of your deposits, withdrawals, interest payments, and a number of other useful transactions. </p> </div> </div> <div class="span3"> <div> <h4><span class="headers" id="transfer_funds_link"><i class="icon icon-random"></i>Transfer Funds</span></h4> <p>Use Zero to safely and securely transfer funds between accounts. There is no hold placed on online money transfers, so your funds are available when you need them. </p> </div> </div> <div class="span3"> <div> <h4><span class="headers" id="money_map_link"><i class="icon icon-list-alt"></i>My Money Map</span></h4> <p>Use Zero to set up and monitor your personalized money map. A money map is an easy-to-use online tool that helps you manage your finances efficiently. With Money Map, you can create a budget, sort your finances into spending and savings categories, check the interest your accounts are earning, and gain new understanding of your patterns with the help of Zero’s clear charts and graphs. </p> </div> </div> </div> <script type="text/javascript"> $(function() { $("#carousel").carousel({ interval: false }); $("div").on("click", "a[id='online-banking']", function(event){ event.preventDefault(); window.location.href = "/" + "online-banking" + ".html"; }); var path = "/bank/"; var featureIdToName = { "account_activity_link": "account-activity", "transfer_funds_link": "transfer-funds", "money_map_link": "money-map" } $.each(featureIdToName, function(featureId, featureName) { $("#online_banking_features").on("click", "span[id='" + featureId + "']", function(event) { event.preventDefault(); window.location.href = path + featureName +".html"; }); }); }); </script> </div> </div> <div class="clearfix push"></div> </div> <div class="extra"> <div class="extra-inner"> <div class="container"> <div class="row"> <div class="span4"> <ul> <li><span id="download_webinspect_link">Download WebInspect</span></li> </ul> </div> <div class="span4"> <ul> <li><span id="terms_of_use_link">Terms of Use</span></li> </ul> </div> <div class="span4"> <ul> <li><span id="contact_hp_link">Contact Micro Focus</span></li> <li><span id="privacy_statement_link">Privacy Statement</span></li> </ul> </div> </div> <div class="row"> <div class="disclaimer span12"> The Free Online Bank Web site is published by Micro Focus Fortify for the sole purpose of demonstrating the functionality and effectiveness of Micro Focus Fortify’s WebInspect products in detecting and reporting Web application vulnerabilities. This site is not a real banking site and any similarities to third party products and/or Web sites are purely coincidental. This site is provided "as is" without warranty of any kind, either express or implied. Micro Focus Fortify does not assume any risk in relation to your use of this Web site. Use of this Web site indicates that you have read and agree to Micro Focus Fortify’s Terms of Use found at <a href="https://www.microfocus.com/about/legal/#privacy" target="_blank">https://www.microfocus.com/about/legal/#privacy</a> and Micro Focus Fortify’s Online Privacy Statement found at <a href="https://www.microfocus.com/about/legal/#privacy" target="_blank">https://www.microfocus.com/about/legal/#privacy</a>. <br/><br/> Copyright © 2012-2018, Micro Focus Development Company. All rights reserved. </div> </div> </div> </div> </div> <script type="text/javascript"> $(function () { var path = "/"; var attachClickHandler = function(selector, handler) { $(".extra").on('click', selector, handler); } var footerLinks = { "download_webinspect_link": { absolute: true, page: "https://software.microfocus.com/en-us/products/webinspect-dynamic-analysis-dast/overview" }, "contact_hp_link" : { absolute: true, page: "https://support.fortify.com" }, "privacy_statement_link": { absolute: true, page: "https://www.microfocus.com/about/legal/#privacy" }, "terms_of_use_link": { absolute: true, page: "https://www.microfocus.com/about/legal/" } }; $.each(footerLinks, function(linkId, link) { attachClickHandler('span[id="' + linkId + '"]', function(event) { event.preventDefault(); if (link.absolute) { window.location.href = link.page; } else { window.location.href = path + link.page + ".html"; } }); }); }); </script> </body> </html> |
| URL | http://zero.webappsecurity.com/index.html |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | <form action="/search.html" class="navbar-search pull-right" style="padding-right: 20px"> |
| Request Header - size: 265 bytes. |
GET http://zero.webappsecurity.com/index.html HTTP/1.1
Host: zero.webappsecurity.com User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0 Pragma: no-cache Cache-Control: no-cache Referer: http://zero.webappsecurity.com |
| Request Body - size: 0 bytes. |
|
| Response Header - size: 242 bytes. |
HTTP/1.1 200 OK
Date: Mon, 14 Mar 2022 07:13:41 GMT Server: Apache-Coyote/1.1 Access-Control-Allow-Origin: * Cache-Control: no-cache, max-age=0, must-revalidate, no-store Content-Type: text/html;charset=UTF-8 Content-Language: en-US |
| Response Body - size: 12,471 bytes. |
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Zero - Personal Banking - Loans - Credit Cards</title> <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"> <meta http-equiv="X-UA-Compatible" content="IE=Edge"> <link type="text/css" rel="stylesheet" href="/resources/css/bootstrap.min.css"/> <link type="text/css" rel="stylesheet" href="/resources/css/font-awesome.css"/> <link type="text/css" rel="stylesheet" href="/resources/css/main.css"/> <script src="/resources/js/jquery-1.8.2.min.js"></script> <script src="/resources/js/bootstrap.min.js"></script> <script src="/resources/js/placeholders.min.js"></script> <script type="text/javascript"> Placeholders.init({ live: true, // Apply to future and modified elements too hideOnFocus: true // Hide the placeholder when the element receives focus }); </script> <script type="text/javascript"> $(document).ajaxError(function errorHandler(event, xhr, ajaxOptions, thrownError) { if (xhr.status == 403) { window.location.reload(); } }); </script> </head> <body> <div class="wrapper"> <div class="navbar navbar-fixed-top"> <div class="navbar-inner"> <div class="container"> <a href="/index.html" class="brand">Zero Bank</a> <div> <ul class="nav float-right"> <li> <form action="/search.html" class="navbar-search pull-right" style="padding-right: 20px"> <input type="text" id="searchTerm" name="searchTerm" class="search-query" placeholder="Search"/> </form> </li> <li> <button id="signin_button" type="button" class="signin btn btn-info"> <i class="icon-signin"></i>Signin </button> </li> </ul> </div> </div> </div> </div> <script type="text/javascript"> $(function() { var path = "/"; $("#signin_button").click(function(event) { event.preventDefault(); window.location.href = path + "login" + ".html"; }); }); </script> <div class="container"> <div class="top_offset"> <div class="row"> <div class="span12"> <div id="nav" class="clearfix"> <ul id="pages-nav"> <li id="homeMenu"><div><strong>Home</strong></div></li> <li id="onlineBankingMenu"><div><strong>Online Banking</strong></div></li> <li id="feedback"><div><strong>Feedback</strong></div></li> </ul> </div> </div> <script type="text/javascript"> $(function () { var path = "/"; var featureIdToName = { "index": "homeMenu", "online-banking": "onlineBankingMenu", "feedback": "feedback" }; if (document.location.href.match(".*" + path + "$") != null) { $("#homeMenu").addClass("active"); } else { $.each(featureIdToName, function(featureId, featureName) { if (document.location.href.indexOf(featureId + ".html") >= 0) { $("#" + featureName).addClass("active"); } }); } $.each(featureIdToName, function(featureId, featureName) { $("#nav").on("click", "li[id='" + featureName + "']", function(event) { event.preventDefault(); window.location.href = path + featureId + ".html"; }); }); }); </script> </div> <div class="row"> <div class="span12"> <div id="carousel" class="carousel slide"> <div class="carousel-inner"> <div class="active item"> <img src="/resources/img/main_carousel_1.jpg" width="940" height="401" alt=""/> <div class="custom carousel-caption"> <h4>Online Banking</h4> <p>Welcome to Zero Online Banking. Zero provides a greener and more convenient way to manage your money. Zero enables you to check your account balances, pay your bills, transfer money, and keep detailed records of your transactions, wherever there is an internet connection.</p> </div> </div> <div class="item"> <img src="/resources/img/main_carousel_2.jpg" width="940" height="401" alt=""/> <div class="custom carousel-caption"> <h4>Online Banking</h4> <p>Welcome to Zero Online Banking. Zero provides a greener and more convenient way to manage your money. Zero enables you to check your account balances, pay your bills, transfer money, and keep detailed records of your transactions, wherever there is an internet connection.</p> </div> </div> <div class="item"> <img src="/resources/img/main_carousel_3.jpg" width="940" height="401" alt=""/> <div class="custom carousel-caption"> <h4>Online Banking</h4> <p>Welcome to Zero Online Banking. Zero provides a greener and more convenient way to manage your money. Zero enables you to check your account balances, pay your bills, transfer money, and keep detailed records of your transactions, wherever there is an internet connection.</p> </div> </div> </div> <a class="carousel-control custom left" href="#carousel" data-slide="prev">‹</a> <a class="carousel-control custom right" href="#carousel" data-slide="next">›</a> </div> </div> </div> <hr class="row-divider"/> <div id="online_banking_features" class="row divider"> <div class="span3"> <h4><i class="icon icon-bookmark"></i> Online Banking</h4> <p>Click the button below to view online banking features.</p> <a id="online-banking" class="btn btn-small btn-info">More Services</a> </div> <div class="span3"> <div> <h4><span class="headers" id="account_activity_link"><i class="icon icon-user"></i>Checking Account Activity</span></h4> <p>Use Zero to view the most up-to-date listings of your deposits, withdrawals, interest payments, and a number of other useful transactions. </p> </div> </div> <div class="span3"> <div> <h4><span class="headers" id="transfer_funds_link"><i class="icon icon-random"></i>Transfer Funds</span></h4> <p>Use Zero to safely and securely transfer funds between accounts. There is no hold placed on online money transfers, so your funds are available when you need them. </p> </div> </div> <div class="span3"> <div> <h4><span class="headers" id="money_map_link"><i class="icon icon-list-alt"></i>My Money Map</span></h4> <p>Use Zero to set up and monitor your personalized money map. A money map is an easy-to-use online tool that helps you manage your finances efficiently. With Money Map, you can create a budget, sort your finances into spending and savings categories, check the interest your accounts are earning, and gain new understanding of your patterns with the help of Zero’s clear charts and graphs. </p> </div> </div> </div> <script type="text/javascript"> $(function() { $("#carousel").carousel({ interval: false }); $("div").on("click", "a[id='online-banking']", function(event){ event.preventDefault(); window.location.href = "/" + "online-banking" + ".html"; }); var path = "/bank/"; var featureIdToName = { "account_activity_link": "account-activity", "transfer_funds_link": "transfer-funds", "money_map_link": "money-map" } $.each(featureIdToName, function(featureId, featureName) { $("#online_banking_features").on("click", "span[id='" + featureId + "']", function(event) { event.preventDefault(); window.location.href = path + featureName +".html"; }); }); }); </script> </div> </div> <div class="clearfix push"></div> </div> <div class="extra"> <div class="extra-inner"> <div class="container"> <div class="row"> <div class="span4"> <ul> <li><span id="download_webinspect_link">Download WebInspect</span></li> </ul> </div> <div class="span4"> <ul> <li><span id="terms_of_use_link">Terms of Use</span></li> </ul> </div> <div class="span4"> <ul> <li><span id="contact_hp_link">Contact Micro Focus</span></li> <li><span id="privacy_statement_link">Privacy Statement</span></li> </ul> </div> </div> <div class="row"> <div class="disclaimer span12"> The Free Online Bank Web site is published by Micro Focus Fortify for the sole purpose of demonstrating the functionality and effectiveness of Micro Focus Fortify’s WebInspect products in detecting and reporting Web application vulnerabilities. This site is not a real banking site and any similarities to third party products and/or Web sites are purely coincidental. This site is provided "as is" without warranty of any kind, either express or implied. Micro Focus Fortify does not assume any risk in relation to your use of this Web site. Use of this Web site indicates that you have read and agree to Micro Focus Fortify’s Terms of Use found at <a href="https://www.microfocus.com/about/legal/#privacy" target="_blank">https://www.microfocus.com/about/legal/#privacy</a> and Micro Focus Fortify’s Online Privacy Statement found at <a href="https://www.microfocus.com/about/legal/#privacy" target="_blank">https://www.microfocus.com/about/legal/#privacy</a>. <br/><br/> Copyright © 2012-2018, Micro Focus Development Company. All rights reserved. </div> </div> </div> </div> </div> <script type="text/javascript"> $(function () { var path = "/"; var attachClickHandler = function(selector, handler) { $(".extra").on('click', selector, handler); } var footerLinks = { "download_webinspect_link": { absolute: true, page: "https://software.microfocus.com/en-us/products/webinspect-dynamic-analysis-dast/overview" }, "contact_hp_link" : { absolute: true, page: "https://support.fortify.com" }, "privacy_statement_link": { absolute: true, page: "https://www.microfocus.com/about/legal/#privacy" }, "terms_of_use_link": { absolute: true, page: "https://www.microfocus.com/about/legal/" } }; $.each(footerLinks, function(linkId, link) { attachClickHandler('span[id="' + linkId + '"]', function(event) { event.preventDefault(); if (link.absolute) { window.location.href = link.page; } else { window.location.href = path + link.page + ".html"; } }); }); }); </script> </body> </html> |
| URL | http://zero.webappsecurity.com/search.html?searchTerm=ZAP |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | <form action="/search.html" class="navbar-search pull-right" style="padding-right: 20px"> |
| Request Header - size: 281 bytes. |
GET http://zero.webappsecurity.com/search.html?searchTerm=ZAP HTTP/1.1
Host: zero.webappsecurity.com User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0 Pragma: no-cache Cache-Control: no-cache Referer: http://zero.webappsecurity.com |
| Request Body - size: 0 bytes. |
|
| Response Header - size: 242 bytes. |
HTTP/1.1 200 OK
Date: Mon, 14 Mar 2022 07:13:43 GMT Server: Apache-Coyote/1.1 Access-Control-Allow-Origin: * Cache-Control: no-cache, max-age=0, must-revalidate, no-store Content-Type: text/html;charset=UTF-8 Content-Language: en-US |
| Response Body - size: 7,723 bytes. |
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Zero - Search Tips</title> <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"> <meta http-equiv="X-UA-Compatible" content="IE=Edge"> <link type="text/css" rel="stylesheet" href="/resources/css/bootstrap.min.css"/> <link type="text/css" rel="stylesheet" href="/resources/css/font-awesome.css"/> <link type="text/css" rel="stylesheet" href="/resources/css/main.css"/> <script src="/resources/js/jquery-1.8.2.min.js"></script> <script src="/resources/js/bootstrap.min.js"></script> <script src="/resources/js/placeholders.min.js"></script> <script type="text/javascript"> Placeholders.init({ live: true, // Apply to future and modified elements too hideOnFocus: true // Hide the placeholder when the element receives focus }); </script> <script type="text/javascript"> $(document).ajaxError(function errorHandler(event, xhr, ajaxOptions, thrownError) { if (xhr.status == 403) { window.location.reload(); } }); </script> </head> <body> <div class="wrapper"> <div class="navbar navbar-fixed-top"> <div class="navbar-inner"> <div class="container"> <a href="/index.html" class="brand">Zero Bank</a> <div> <ul class="nav float-right"> <li> <form action="/search.html" class="navbar-search pull-right" style="padding-right: 20px"> <input type="text" id="searchTerm" name="searchTerm" class="search-query" placeholder="Search"/> </form> </li> <li> <button id="signin_button" type="button" class="signin btn btn-info"> <i class="icon-signin"></i>Signin </button> </li> </ul> </div> </div> </div> </div> <script type="text/javascript"> $(function() { var path = "/"; $("#signin_button").click(function(event) { event.preventDefault(); window.location.href = path + "login" + ".html"; }); }); </script> <div class="container"> <div class="top_offset"> <div class="row"> <div class="span12"> <div id="nav" class="clearfix"> <ul id="pages-nav"> <li id="homeMenu"><div><strong>Home</strong></div></li> <li id="onlineBankingMenu"><div><strong>Online Banking</strong></div></li> <li id="feedback"><div><strong>Feedback</strong></div></li> </ul> </div> </div> <script type="text/javascript"> $(function () { var path = "/"; var featureIdToName = { "index": "homeMenu", "online-banking": "onlineBankingMenu", "feedback": "feedback" }; if (document.location.href.match(".*" + path + "$") != null) { $("#homeMenu").addClass("active"); } else { $.each(featureIdToName, function(featureId, featureName) { if (document.location.href.indexOf(featureId + ".html") >= 0) { $("#" + featureName).addClass("active"); } }); } $.each(featureIdToName, function(featureId, featureName) { $("#nav").on("click", "li[id='" + featureName + "']", function(event) { event.preventDefault(); window.location.href = path + featureId + ".html"; }); }); }); </script> </div> <hr class="row-divider"/> <h2>Search Results:</h2> No results were found for the query: ZAP </div> </div> <div class="clearfix push"></div> </div> <div class="extra"> <div class="extra-inner"> <div class="container"> <div class="row"> <div class="span4"> <ul> <li><span id="download_webinspect_link">Download WebInspect</span></li> </ul> </div> <div class="span4"> <ul> <li><span id="terms_of_use_link">Terms of Use</span></li> </ul> </div> <div class="span4"> <ul> <li><span id="contact_hp_link">Contact Micro Focus</span></li> <li><span id="privacy_statement_link">Privacy Statement</span></li> </ul> </div> </div> <div class="row"> <div class="disclaimer span12"> The Free Online Bank Web site is published by Micro Focus Fortify for the sole purpose of demonstrating the functionality and effectiveness of Micro Focus Fortify’s WebInspect products in detecting and reporting Web application vulnerabilities. This site is not a real banking site and any similarities to third party products and/or Web sites are purely coincidental. This site is provided "as is" without warranty of any kind, either express or implied. Micro Focus Fortify does not assume any risk in relation to your use of this Web site. Use of this Web site indicates that you have read and agree to Micro Focus Fortify’s Terms of Use found at <a href="https://www.microfocus.com/about/legal/#privacy" target="_blank">https://www.microfocus.com/about/legal/#privacy</a> and Micro Focus Fortify’s Online Privacy Statement found at <a href="https://www.microfocus.com/about/legal/#privacy" target="_blank">https://www.microfocus.com/about/legal/#privacy</a>. <br/><br/> Copyright © 2012-2018, Micro Focus Development Company. All rights reserved. </div> </div> </div> </div> </div> <script type="text/javascript"> $(function () { var path = "/"; var attachClickHandler = function(selector, handler) { $(".extra").on('click', selector, handler); } var footerLinks = { "download_webinspect_link": { absolute: true, page: "https://software.microfocus.com/en-us/products/webinspect-dynamic-analysis-dast/overview" }, "contact_hp_link" : { absolute: true, page: "https://support.fortify.com" }, "privacy_statement_link": { absolute: true, page: "https://www.microfocus.com/about/legal/#privacy" }, "terms_of_use_link": { absolute: true, page: "https://www.microfocus.com/about/legal/" } }; $.each(footerLinks, function(linkId, link) { attachClickHandler('span[id="' + linkId + '"]', function(event) { event.preventDefault(); if (link.absolute) { window.location.href = link.page; } else { window.location.href = path + link.page + ".html"; } }); }); }); </script> </body> </html> |
| Instances | 4 |
| Solution |
Phase: Architecture and Design
Use a vetted library or framework that does not allow this weakness to occur or provides constructs that make this weakness easier to avoid.
For example, use anti-CSRF packages such as the OWASP CSRFGuard.
Phase: Implementation
Ensure that your application is free of cross-site scripting issues, because most CSRF defenses can be bypassed using attacker-controlled script.
Phase: Architecture and Design
Generate a unique nonce for each form, place the nonce into the form, and verify the nonce upon receipt of the form. Be sure that the nonce is not predictable (CWE-330).
Note that this can be bypassed using XSS.
Identify especially dangerous operations. When the user performs a dangerous operation, send a separate confirmation request to ensure that the user intended to perform that operation.
Note that this can be bypassed using XSS.
Use the ESAPI Session Management control.
This control includes a component for CSRF.
Do not use the GET method for any request that triggers a state change.
Phase: Implementation
Check the HTTP Referer header to see if the request originated from an expected page. This could break legitimate functionality, because users or proxies may have disabled sending the Referer for privacy reasons.
|
| Reference |
http://projects.webappsec.org/Cross-Site-Request-Forgery
http://cwe.mitre.org/data/definitions/352.html |
| Tags |
OWASP_2021_A05
WSTG-v42-SESS-05 OWASP_2017_A06 |
| CWE Id | 352 |
| WASC Id | 9 |
| Plugin Id | 20012 |
|
High |
Proxy Disclosure |
|---|---|
| Description |
1 proxy server(s) were detected or fingerprinted. This information helps a potential attacker to determine
- A list of targets for an attack against the application.
- Potential vulnerabilities on the proxy servers that service the application.
- The presence or absence of any proxy-based components that might cause attacks against the application to be detected, prevented, or mitigated.
|
| URL | http://zero.webappsecurity.com |
| Method | GET |
| Parameter | |
| Attack | TRACE, OPTIONS methods with 'Max-Forwards' header. TRACK method. |
| Evidence | |
| Request Header - size: 213 bytes. |
GET http://zero.webappsecurity.com HTTP/1.1
Host: zero.webappsecurity.com User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0 Pragma: no-cache Cache-Control: no-cache |
| Request Body - size: 0 bytes. |
|
| Response Header - size: 242 bytes. |
HTTP/1.1 200 OK
Date: Mon, 14 Mar 2022 07:13:40 GMT Server: Apache-Coyote/1.1 Access-Control-Allow-Origin: * Cache-Control: no-cache, max-age=0, must-revalidate, no-store Content-Type: text/html;charset=UTF-8 Content-Language: en-US |
| Response Body - size: 12,471 bytes. |
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Zero - Personal Banking - Loans - Credit Cards</title> <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"> <meta http-equiv="X-UA-Compatible" content="IE=Edge"> <link type="text/css" rel="stylesheet" href="/resources/css/bootstrap.min.css"/> <link type="text/css" rel="stylesheet" href="/resources/css/font-awesome.css"/> <link type="text/css" rel="stylesheet" href="/resources/css/main.css"/> <script src="/resources/js/jquery-1.8.2.min.js"></script> <script src="/resources/js/bootstrap.min.js"></script> <script src="/resources/js/placeholders.min.js"></script> <script type="text/javascript"> Placeholders.init({ live: true, // Apply to future and modified elements too hideOnFocus: true // Hide the placeholder when the element receives focus }); </script> <script type="text/javascript"> $(document).ajaxError(function errorHandler(event, xhr, ajaxOptions, thrownError) { if (xhr.status == 403) { window.location.reload(); } }); </script> </head> <body> <div class="wrapper"> <div class="navbar navbar-fixed-top"> <div class="navbar-inner"> <div class="container"> <a href="/index.html" class="brand">Zero Bank</a> <div> <ul class="nav float-right"> <li> <form action="/search.html" class="navbar-search pull-right" style="padding-right: 20px"> <input type="text" id="searchTerm" name="searchTerm" class="search-query" placeholder="Search"/> </form> </li> <li> <button id="signin_button" type="button" class="signin btn btn-info"> <i class="icon-signin"></i>Signin </button> </li> </ul> </div> </div> </div> </div> <script type="text/javascript"> $(function() { var path = "/"; $("#signin_button").click(function(event) { event.preventDefault(); window.location.href = path + "login" + ".html"; }); }); </script> <div class="container"> <div class="top_offset"> <div class="row"> <div class="span12"> <div id="nav" class="clearfix"> <ul id="pages-nav"> <li id="homeMenu"><div><strong>Home</strong></div></li> <li id="onlineBankingMenu"><div><strong>Online Banking</strong></div></li> <li id="feedback"><div><strong>Feedback</strong></div></li> </ul> </div> </div> <script type="text/javascript"> $(function () { var path = "/"; var featureIdToName = { "index": "homeMenu", "online-banking": "onlineBankingMenu", "feedback": "feedback" }; if (document.location.href.match(".*" + path + "$") != null) { $("#homeMenu").addClass("active"); } else { $.each(featureIdToName, function(featureId, featureName) { if (document.location.href.indexOf(featureId + ".html") >= 0) { $("#" + featureName).addClass("active"); } }); } $.each(featureIdToName, function(featureId, featureName) { $("#nav").on("click", "li[id='" + featureName + "']", function(event) { event.preventDefault(); window.location.href = path + featureId + ".html"; }); }); }); </script> </div> <div class="row"> <div class="span12"> <div id="carousel" class="carousel slide"> <div class="carousel-inner"> <div class="active item"> <img src="/resources/img/main_carousel_1.jpg" width="940" height="401" alt=""/> <div class="custom carousel-caption"> <h4>Online Banking</h4> <p>Welcome to Zero Online Banking. Zero provides a greener and more convenient way to manage your money. Zero enables you to check your account balances, pay your bills, transfer money, and keep detailed records of your transactions, wherever there is an internet connection.</p> </div> </div> <div class="item"> <img src="/resources/img/main_carousel_2.jpg" width="940" height="401" alt=""/> <div class="custom carousel-caption"> <h4>Online Banking</h4> <p>Welcome to Zero Online Banking. Zero provides a greener and more convenient way to manage your money. Zero enables you to check your account balances, pay your bills, transfer money, and keep detailed records of your transactions, wherever there is an internet connection.</p> </div> </div> <div class="item"> <img src="/resources/img/main_carousel_3.jpg" width="940" height="401" alt=""/> <div class="custom carousel-caption"> <h4>Online Banking</h4> <p>Welcome to Zero Online Banking. Zero provides a greener and more convenient way to manage your money. Zero enables you to check your account balances, pay your bills, transfer money, and keep detailed records of your transactions, wherever there is an internet connection.</p> </div> </div> </div> <a class="carousel-control custom left" href="#carousel" data-slide="prev">‹</a> <a class="carousel-control custom right" href="#carousel" data-slide="next">›</a> </div> </div> </div> <hr class="row-divider"/> <div id="online_banking_features" class="row divider"> <div class="span3"> <h4><i class="icon icon-bookmark"></i> Online Banking</h4> <p>Click the button below to view online banking features.</p> <a id="online-banking" class="btn btn-small btn-info">More Services</a> </div> <div class="span3"> <div> <h4><span class="headers" id="account_activity_link"><i class="icon icon-user"></i>Checking Account Activity</span></h4> <p>Use Zero to view the most up-to-date listings of your deposits, withdrawals, interest payments, and a number of other useful transactions. </p> </div> </div> <div class="span3"> <div> <h4><span class="headers" id="transfer_funds_link"><i class="icon icon-random"></i>Transfer Funds</span></h4> <p>Use Zero to safely and securely transfer funds between accounts. There is no hold placed on online money transfers, so your funds are available when you need them. </p> </div> </div> <div class="span3"> <div> <h4><span class="headers" id="money_map_link"><i class="icon icon-list-alt"></i>My Money Map</span></h4> <p>Use Zero to set up and monitor your personalized money map. A money map is an easy-to-use online tool that helps you manage your finances efficiently. With Money Map, you can create a budget, sort your finances into spending and savings categories, check the interest your accounts are earning, and gain new understanding of your patterns with the help of Zero’s clear charts and graphs. </p> </div> </div> </div> <script type="text/javascript"> $(function() { $("#carousel").carousel({ interval: false }); $("div").on("click", "a[id='online-banking']", function(event){ event.preventDefault(); window.location.href = "/" + "online-banking" + ".html"; }); var path = "/bank/"; var featureIdToName = { "account_activity_link": "account-activity", "transfer_funds_link": "transfer-funds", "money_map_link": "money-map" } $.each(featureIdToName, function(featureId, featureName) { $("#online_banking_features").on("click", "span[id='" + featureId + "']", function(event) { event.preventDefault(); window.location.href = path + featureName +".html"; }); }); }); </script> </div> </div> <div class="clearfix push"></div> </div> <div class="extra"> <div class="extra-inner"> <div class="container"> <div class="row"> <div class="span4"> <ul> <li><span id="download_webinspect_link">Download WebInspect</span></li> </ul> </div> <div class="span4"> <ul> <li><span id="terms_of_use_link">Terms of Use</span></li> </ul> </div> <div class="span4"> <ul> <li><span id="contact_hp_link">Contact Micro Focus</span></li> <li><span id="privacy_statement_link">Privacy Statement</span></li> </ul> </div> </div> <div class="row"> <div class="disclaimer span12"> The Free Online Bank Web site is published by Micro Focus Fortify for the sole purpose of demonstrating the functionality and effectiveness of Micro Focus Fortify’s WebInspect products in detecting and reporting Web application vulnerabilities. This site is not a real banking site and any similarities to third party products and/or Web sites are purely coincidental. This site is provided "as is" without warranty of any kind, either express or implied. Micro Focus Fortify does not assume any risk in relation to your use of this Web site. Use of this Web site indicates that you have read and agree to Micro Focus Fortify’s Terms of Use found at <a href="https://www.microfocus.com/about/legal/#privacy" target="_blank">https://www.microfocus.com/about/legal/#privacy</a> and Micro Focus Fortify’s Online Privacy Statement found at <a href="https://www.microfocus.com/about/legal/#privacy" target="_blank">https://www.microfocus.com/about/legal/#privacy</a>. <br/><br/> Copyright © 2012-2018, Micro Focus Development Company. All rights reserved. </div> </div> </div> </div> </div> <script type="text/javascript"> $(function () { var path = "/"; var attachClickHandler = function(selector, handler) { $(".extra").on('click', selector, handler); } var footerLinks = { "download_webinspect_link": { absolute: true, page: "https://software.microfocus.com/en-us/products/webinspect-dynamic-analysis-dast/overview" }, "contact_hp_link" : { absolute: true, page: "https://support.fortify.com" }, "privacy_statement_link": { absolute: true, page: "https://www.microfocus.com/about/legal/#privacy" }, "terms_of_use_link": { absolute: true, page: "https://www.microfocus.com/about/legal/" } }; $.each(footerLinks, function(linkId, link) { attachClickHandler('span[id="' + linkId + '"]', function(event) { event.preventDefault(); if (link.absolute) { window.location.href = link.page; } else { window.location.href = path + link.page + ".html"; } }); }); }); </script> </body> </html> |
| URL | http://zero.webappsecurity.com/ |
| Method | GET |
| Parameter | |
| Attack | TRACE, OPTIONS methods with 'Max-Forwards' header. TRACK method. |
| Evidence | |
| Request Header - size: 214 bytes. |
GET http://zero.webappsecurity.com/ HTTP/1.1
Host: zero.webappsecurity.com User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0 Pragma: no-cache Cache-Control: no-cache |
| Request Body - size: 0 bytes. |
|
| Response Header - size: 242 bytes. |
HTTP/1.1 200 OK
Date: Mon, 14 Mar 2022 07:13:41 GMT Server: Apache-Coyote/1.1 Access-Control-Allow-Origin: * Cache-Control: no-cache, max-age=0, must-revalidate, no-store Content-Type: text/html;charset=UTF-8 Content-Language: en-US |
| Response Body - size: 12,471 bytes. |
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Zero - Personal Banking - Loans - Credit Cards</title> <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"> <meta http-equiv="X-UA-Compatible" content="IE=Edge"> <link type="text/css" rel="stylesheet" href="/resources/css/bootstrap.min.css"/> <link type="text/css" rel="stylesheet" href="/resources/css/font-awesome.css"/> <link type="text/css" rel="stylesheet" href="/resources/css/main.css"/> <script src="/resources/js/jquery-1.8.2.min.js"></script> <script src="/resources/js/bootstrap.min.js"></script> <script src="/resources/js/placeholders.min.js"></script> <script type="text/javascript"> Placeholders.init({ live: true, // Apply to future and modified elements too hideOnFocus: true // Hide the placeholder when the element receives focus }); </script> <script type="text/javascript"> $(document).ajaxError(function errorHandler(event, xhr, ajaxOptions, thrownError) { if (xhr.status == 403) { window.location.reload(); } }); </script> </head> <body> <div class="wrapper"> <div class="navbar navbar-fixed-top"> <div class="navbar-inner"> <div class="container"> <a href="/index.html" class="brand">Zero Bank</a> <div> <ul class="nav float-right"> <li> <form action="/search.html" class="navbar-search pull-right" style="padding-right: 20px"> <input type="text" id="searchTerm" name="searchTerm" class="search-query" placeholder="Search"/> </form> </li> <li> <button id="signin_button" type="button" class="signin btn btn-info"> <i class="icon-signin"></i>Signin </button> </li> </ul> </div> </div> </div> </div> <script type="text/javascript"> $(function() { var path = "/"; $("#signin_button").click(function(event) { event.preventDefault(); window.location.href = path + "login" + ".html"; }); }); </script> <div class="container"> <div class="top_offset"> <div class="row"> <div class="span12"> <div id="nav" class="clearfix"> <ul id="pages-nav"> <li id="homeMenu"><div><strong>Home</strong></div></li> <li id="onlineBankingMenu"><div><strong>Online Banking</strong></div></li> <li id="feedback"><div><strong>Feedback</strong></div></li> </ul> </div> </div> <script type="text/javascript"> $(function () { var path = "/"; var featureIdToName = { "index": "homeMenu", "online-banking": "onlineBankingMenu", "feedback": "feedback" }; if (document.location.href.match(".*" + path + "$") != null) { $("#homeMenu").addClass("active"); } else { $.each(featureIdToName, function(featureId, featureName) { if (document.location.href.indexOf(featureId + ".html") >= 0) { $("#" + featureName).addClass("active"); } }); } $.each(featureIdToName, function(featureId, featureName) { $("#nav").on("click", "li[id='" + featureName + "']", function(event) { event.preventDefault(); window.location.href = path + featureId + ".html"; }); }); }); </script> </div> <div class="row"> <div class="span12"> <div id="carousel" class="carousel slide"> <div class="carousel-inner"> <div class="active item"> <img src="/resources/img/main_carousel_1.jpg" width="940" height="401" alt=""/> <div class="custom carousel-caption"> <h4>Online Banking</h4> <p>Welcome to Zero Online Banking. Zero provides a greener and more convenient way to manage your money. Zero enables you to check your account balances, pay your bills, transfer money, and keep detailed records of your transactions, wherever there is an internet connection.</p> </div> </div> <div class="item"> <img src="/resources/img/main_carousel_2.jpg" width="940" height="401" alt=""/> <div class="custom carousel-caption"> <h4>Online Banking</h4> <p>Welcome to Zero Online Banking. Zero provides a greener and more convenient way to manage your money. Zero enables you to check your account balances, pay your bills, transfer money, and keep detailed records of your transactions, wherever there is an internet connection.</p> </div> </div> <div class="item"> <img src="/resources/img/main_carousel_3.jpg" width="940" height="401" alt=""/> <div class="custom carousel-caption"> <h4>Online Banking</h4> <p>Welcome to Zero Online Banking. Zero provides a greener and more convenient way to manage your money. Zero enables you to check your account balances, pay your bills, transfer money, and keep detailed records of your transactions, wherever there is an internet connection.</p> </div> </div> </div> <a class="carousel-control custom left" href="#carousel" data-slide="prev">‹</a> <a class="carousel-control custom right" href="#carousel" data-slide="next">›</a> </div> </div> </div> <hr class="row-divider"/> <div id="online_banking_features" class="row divider"> <div class="span3"> <h4><i class="icon icon-bookmark"></i> Online Banking</h4> <p>Click the button below to view online banking features.</p> <a id="online-banking" class="btn btn-small btn-info">More Services</a> </div> <div class="span3"> <div> <h4><span class="headers" id="account_activity_link"><i class="icon icon-user"></i>Checking Account Activity</span></h4> <p>Use Zero to view the most up-to-date listings of your deposits, withdrawals, interest payments, and a number of other useful transactions. </p> </div> </div> <div class="span3"> <div> <h4><span class="headers" id="transfer_funds_link"><i class="icon icon-random"></i>Transfer Funds</span></h4> <p>Use Zero to safely and securely transfer funds between accounts. There is no hold placed on online money transfers, so your funds are available when you need them. </p> </div> </div> <div class="span3"> <div> <h4><span class="headers" id="money_map_link"><i class="icon icon-list-alt"></i>My Money Map</span></h4> <p>Use Zero to set up and monitor your personalized money map. A money map is an easy-to-use online tool that helps you manage your finances efficiently. With Money Map, you can create a budget, sort your finances into spending and savings categories, check the interest your accounts are earning, and gain new understanding of your patterns with the help of Zero’s clear charts and graphs. </p> </div> </div> </div> <script type="text/javascript"> $(function() { $("#carousel").carousel({ interval: false }); $("div").on("click", "a[id='online-banking']", function(event){ event.preventDefault(); window.location.href = "/" + "online-banking" + ".html"; }); var path = "/bank/"; var featureIdToName = { "account_activity_link": "account-activity", "transfer_funds_link": "transfer-funds", "money_map_link": "money-map" } $.each(featureIdToName, function(featureId, featureName) { $("#online_banking_features").on("click", "span[id='" + featureId + "']", function(event) { event.preventDefault(); window.location.href = path + featureName +".html"; }); }); }); </script> </div> </div> <div class="clearfix push"></div> </div> <div class="extra"> <div class="extra-inner"> <div class="container"> <div class="row"> <div class="span4"> <ul> <li><span id="download_webinspect_link">Download WebInspect</span></li> </ul> </div> <div class="span4"> <ul> <li><span id="terms_of_use_link">Terms of Use</span></li> </ul> </div> <div class="span4"> <ul> <li><span id="contact_hp_link">Contact Micro Focus</span></li> <li><span id="privacy_statement_link">Privacy Statement</span></li> </ul> </div> </div> <div class="row"> <div class="disclaimer span12"> The Free Online Bank Web site is published by Micro Focus Fortify for the sole purpose of demonstrating the functionality and effectiveness of Micro Focus Fortify’s WebInspect products in detecting and reporting Web application vulnerabilities. This site is not a real banking site and any similarities to third party products and/or Web sites are purely coincidental. This site is provided "as is" without warranty of any kind, either express or implied. Micro Focus Fortify does not assume any risk in relation to your use of this Web site. Use of this Web site indicates that you have read and agree to Micro Focus Fortify’s Terms of Use found at <a href="https://www.microfocus.com/about/legal/#privacy" target="_blank">https://www.microfocus.com/about/legal/#privacy</a> and Micro Focus Fortify’s Online Privacy Statement found at <a href="https://www.microfocus.com/about/legal/#privacy" target="_blank">https://www.microfocus.com/about/legal/#privacy</a>. <br/><br/> Copyright © 2012-2018, Micro Focus Development Company. All rights reserved. </div> </div> </div> </div> </div> <script type="text/javascript"> $(function () { var path = "/"; var attachClickHandler = function(selector, handler) { $(".extra").on('click', selector, handler); } var footerLinks = { "download_webinspect_link": { absolute: true, page: "https://software.microfocus.com/en-us/products/webinspect-dynamic-analysis-dast/overview" }, "contact_hp_link" : { absolute: true, page: "https://support.fortify.com" }, "privacy_statement_link": { absolute: true, page: "https://www.microfocus.com/about/legal/#privacy" }, "terms_of_use_link": { absolute: true, page: "https://www.microfocus.com/about/legal/" } }; $.each(footerLinks, function(linkId, link) { attachClickHandler('span[id="' + linkId + '"]', function(event) { event.preventDefault(); if (link.absolute) { window.location.href = link.page; } else { window.location.href = path + link.page + ".html"; } }); }); }); </script> </body> </html> |
| URL | http://zero.webappsecurity.com/index.html |
| Method | GET |
| Parameter | |
| Attack | TRACE, OPTIONS methods with 'Max-Forwards' header. TRACK method. |
| Evidence | |
| Request Header - size: 265 bytes. |
GET http://zero.webappsecurity.com/index.html HTTP/1.1
Host: zero.webappsecurity.com User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0 Pragma: no-cache Cache-Control: no-cache Referer: http://zero.webappsecurity.com |
| Request Body - size: 0 bytes. |
|
| Response Header - size: 242 bytes. |
HTTP/1.1 200 OK
Date: Mon, 14 Mar 2022 07:13:41 GMT Server: Apache-Coyote/1.1 Access-Control-Allow-Origin: * Cache-Control: no-cache, max-age=0, must-revalidate, no-store Content-Type: text/html;charset=UTF-8 Content-Language: en-US |
| Response Body - size: 12,471 bytes. |
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Zero - Personal Banking - Loans - Credit Cards</title> <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"> <meta http-equiv="X-UA-Compatible" content="IE=Edge"> <link type="text/css" rel="stylesheet" href="/resources/css/bootstrap.min.css"/> <link type="text/css" rel="stylesheet" href="/resources/css/font-awesome.css"/> <link type="text/css" rel="stylesheet" href="/resources/css/main.css"/> <script src="/resources/js/jquery-1.8.2.min.js"></script> <script src="/resources/js/bootstrap.min.js"></script> <script src="/resources/js/placeholders.min.js"></script> <script type="text/javascript"> Placeholders.init({ live: true, // Apply to future and modified elements too hideOnFocus: true // Hide the placeholder when the element receives focus }); </script> <script type="text/javascript"> $(document).ajaxError(function errorHandler(event, xhr, ajaxOptions, thrownError) { if (xhr.status == 403) { window.location.reload(); } }); </script> </head> <body> <div class="wrapper"> <div class="navbar navbar-fixed-top"> <div class="navbar-inner"> <div class="container"> <a href="/index.html" class="brand">Zero Bank</a> <div> <ul class="nav float-right"> <li> <form action="/search.html" class="navbar-search pull-right" style="padding-right: 20px"> <input type="text" id="searchTerm" name="searchTerm" class="search-query" placeholder="Search"/> </form> </li> <li> <button id="signin_button" type="button" class="signin btn btn-info"> <i class="icon-signin"></i>Signin </button> </li> </ul> </div> </div> </div> </div> <script type="text/javascript"> $(function() { var path = "/"; $("#signin_button").click(function(event) { event.preventDefault(); window.location.href = path + "login" + ".html"; }); }); </script> <div class="container"> <div class="top_offset"> <div class="row"> <div class="span12"> <div id="nav" class="clearfix"> <ul id="pages-nav"> <li id="homeMenu"><div><strong>Home</strong></div></li> <li id="onlineBankingMenu"><div><strong>Online Banking</strong></div></li> <li id="feedback"><div><strong>Feedback</strong></div></li> </ul> </div> </div> <script type="text/javascript"> $(function () { var path = "/"; var featureIdToName = { "index": "homeMenu", "online-banking": "onlineBankingMenu", "feedback": "feedback" }; if (document.location.href.match(".*" + path + "$") != null) { $("#homeMenu").addClass("active"); } else { $.each(featureIdToName, function(featureId, featureName) { if (document.location.href.indexOf(featureId + ".html") >= 0) { $("#" + featureName).addClass("active"); } }); } $.each(featureIdToName, function(featureId, featureName) { $("#nav").on("click", "li[id='" + featureName + "']", function(event) { event.preventDefault(); window.location.href = path + featureId + ".html"; }); }); }); </script> </div> <div class="row"> <div class="span12"> <div id="carousel" class="carousel slide"> <div class="carousel-inner"> <div class="active item"> <img src="/resources/img/main_carousel_1.jpg" width="940" height="401" alt=""/> <div class="custom carousel-caption"> <h4>Online Banking</h4> <p>Welcome to Zero Online Banking. Zero provides a greener and more convenient way to manage your money. Zero enables you to check your account balances, pay your bills, transfer money, and keep detailed records of your transactions, wherever there is an internet connection.</p> </div> </div> <div class="item"> <img src="/resources/img/main_carousel_2.jpg" width="940" height="401" alt=""/> <div class="custom carousel-caption"> <h4>Online Banking</h4> <p>Welcome to Zero Online Banking. Zero provides a greener and more convenient way to manage your money. Zero enables you to check your account balances, pay your bills, transfer money, and keep detailed records of your transactions, wherever there is an internet connection.</p> </div> </div> <div class="item"> <img src="/resources/img/main_carousel_3.jpg" width="940" height="401" alt=""/> <div class="custom carousel-caption"> <h4>Online Banking</h4> <p>Welcome to Zero Online Banking. Zero provides a greener and more convenient way to manage your money. Zero enables you to check your account balances, pay your bills, transfer money, and keep detailed records of your transactions, wherever there is an internet connection.</p> </div> </div> </div> <a class="carousel-control custom left" href="#carousel" data-slide="prev">‹</a> <a class="carousel-control custom right" href="#carousel" data-slide="next">›</a> </div> </div> </div> <hr class="row-divider"/> <div id="online_banking_features" class="row divider"> <div class="span3"> <h4><i class="icon icon-bookmark"></i> Online Banking</h4> <p>Click the button below to view online banking features.</p> <a id="online-banking" class="btn btn-small btn-info">More Services</a> </div> <div class="span3"> <div> <h4><span class="headers" id="account_activity_link"><i class="icon icon-user"></i>Checking Account Activity</span></h4> <p>Use Zero to view the most up-to-date listings of your deposits, withdrawals, interest payments, and a number of other useful transactions. </p> </div> </div> <div class="span3"> <div> <h4><span class="headers" id="transfer_funds_link"><i class="icon icon-random"></i>Transfer Funds</span></h4> <p>Use Zero to safely and securely transfer funds between accounts. There is no hold placed on online money transfers, so your funds are available when you need them. </p> </div> </div> <div class="span3"> <div> <h4><span class="headers" id="money_map_link"><i class="icon icon-list-alt"></i>My Money Map</span></h4> <p>Use Zero to set up and monitor your personalized money map. A money map is an easy-to-use online tool that helps you manage your finances efficiently. With Money Map, you can create a budget, sort your finances into spending and savings categories, check the interest your accounts are earning, and gain new understanding of your patterns with the help of Zero’s clear charts and graphs. </p> </div> </div> </div> <script type="text/javascript"> $(function() { $("#carousel").carousel({ interval: false }); $("div").on("click", "a[id='online-banking']", function(event){ event.preventDefault(); window.location.href = "/" + "online-banking" + ".html"; }); var path = "/bank/"; var featureIdToName = { "account_activity_link": "account-activity", "transfer_funds_link": "transfer-funds", "money_map_link": "money-map" } $.each(featureIdToName, function(featureId, featureName) { $("#online_banking_features").on("click", "span[id='" + featureId + "']", function(event) { event.preventDefault(); window.location.href = path + featureName +".html"; }); }); }); </script> </div> </div> <div class="clearfix push"></div> </div> <div class="extra"> <div class="extra-inner"> <div class="container"> <div class="row"> <div class="span4"> <ul> <li><span id="download_webinspect_link">Download WebInspect</span></li> </ul> </div> <div class="span4"> <ul> <li><span id="terms_of_use_link">Terms of Use</span></li> </ul> </div> <div class="span4"> <ul> <li><span id="contact_hp_link">Contact Micro Focus</span></li> <li><span id="privacy_statement_link">Privacy Statement</span></li> </ul> </div> </div> <div class="row"> <div class="disclaimer span12"> The Free Online Bank Web site is published by Micro Focus Fortify for the sole purpose of demonstrating the functionality and effectiveness of Micro Focus Fortify’s WebInspect products in detecting and reporting Web application vulnerabilities. This site is not a real banking site and any similarities to third party products and/or Web sites are purely coincidental. This site is provided "as is" without warranty of any kind, either express or implied. Micro Focus Fortify does not assume any risk in relation to your use of this Web site. Use of this Web site indicates that you have read and agree to Micro Focus Fortify’s Terms of Use found at <a href="https://www.microfocus.com/about/legal/#privacy" target="_blank">https://www.microfocus.com/about/legal/#privacy</a> and Micro Focus Fortify’s Online Privacy Statement found at <a href="https://www.microfocus.com/about/legal/#privacy" target="_blank">https://www.microfocus.com/about/legal/#privacy</a>. <br/><br/> Copyright © 2012-2018, Micro Focus Development Company. All rights reserved. </div> </div> </div> </div> </div> <script type="text/javascript"> $(function () { var path = "/"; var attachClickHandler = function(selector, handler) { $(".extra").on('click', selector, handler); } var footerLinks = { "download_webinspect_link": { absolute: true, page: "https://software.microfocus.com/en-us/products/webinspect-dynamic-analysis-dast/overview" }, "contact_hp_link" : { absolute: true, page: "https://support.fortify.com" }, "privacy_statement_link": { absolute: true, page: "https://www.microfocus.com/about/legal/#privacy" }, "terms_of_use_link": { absolute: true, page: "https://www.microfocus.com/about/legal/" } }; $.each(footerLinks, function(linkId, link) { attachClickHandler('span[id="' + linkId + '"]', function(event) { event.preventDefault(); if (link.absolute) { window.location.href = link.page; } else { window.location.href = path + link.page + ".html"; } }); }); }); </script> </body> </html> |
| URL | http://zero.webappsecurity.com/resources |
| Method | GET |
| Parameter | |
| Attack | TRACE, OPTIONS methods with 'Max-Forwards' header. TRACK method. |
| Evidence | |
| Request Header - size: 264 bytes. |
GET http://zero.webappsecurity.com/resources HTTP/1.1
Host: zero.webappsecurity.com User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0 Pragma: no-cache Cache-Control: no-cache Referer: http://zero.webappsecurity.com |
| Request Body - size: 0 bytes. |
|
| Response Header - size: 186 bytes. |
HTTP/1.1 302 Found
Date: Mon, 14 Mar 2022 07:20:58 GMT Server: Apache-Coyote/1.1 Access-Control-Allow-Origin: * Location: /resources/ Content-Length: 0 Content-Type: text/plain |
| Response Body - size: 0 bytes. |
|
| URL | http://zero.webappsecurity.com/resources/css |
| Method | GET |
| Parameter | |
| Attack | TRACE, OPTIONS methods with 'Max-Forwards' header. TRACK method. |
| Evidence | |
| Request Header - size: 268 bytes. |
GET http://zero.webappsecurity.com/resources/css HTTP/1.1
Host: zero.webappsecurity.com User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0 Pragma: no-cache Cache-Control: no-cache Referer: http://zero.webappsecurity.com |
| Request Body - size: 0 bytes. |
|
| Response Header - size: 190 bytes. |
HTTP/1.1 302 Found
Date: Mon, 14 Mar 2022 07:20:58 GMT Server: Apache-Coyote/1.1 Access-Control-Allow-Origin: * Location: /resources/css/ Content-Length: 0 Content-Type: text/plain |
| Response Body - size: 0 bytes. |
|
| URL | http://zero.webappsecurity.com/resources/css/bootstrap.min.css |
| Method | GET |
| Parameter | |
| Attack | TRACE, OPTIONS methods with 'Max-Forwards' header. TRACK method. |
| Evidence | |
| Request Header - size: 286 bytes. |
GET http://zero.webappsecurity.com/resources/css/bootstrap.min.css HTTP/1.1
Host: zero.webappsecurity.com User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0 Pragma: no-cache Cache-Control: no-cache Referer: http://zero.webappsecurity.com |
| Request Body - size: 0 bytes. |
|
| Response Header - size: 349 bytes. |
HTTP/1.1 200 OK
Date: Mon, 14 Mar 2022 07:13:41 GMT Server: Apache-Coyote/1.1 Access-Control-Allow-Origin: * Accept-Ranges: bytes ETag: W/"115795-1358437290000" Last-Modified: Thu, 17 Jan 2013 15:41:30 GMT Cache-Control: max-age=2678400 Expires: Thu, 14 Apr 2022 07:13:42 GMT Content-Type: text/css;charset=UTF-8 Content-Length: 115795 |
| Response Body - size: 115,795 bytes. |
/*!
* Bootstrap v2.2.2 * * Copyright 2012 Twitter, Inc * Licensed under the Apache License v2.0 * http://www.apache.org/licenses/LICENSE-2.0 * * Designed and built with all the love in the world @twitter by @mdo and @fat. */ .clearfix{*zoom:1;}.clearfix:before,.clearfix:after{display:table;content:"";line-height:0;} .clearfix:after{clear:both;} .hide-text{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0;} .input-block-level{display:block;width:100%;min-height:30px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;} article,aside,details,figcaption,figure,footer,header,hgroup,nav,section{display:block;} audio,canvas,video{display:inline-block;*display:inline;*zoom:1;} audio:not([controls]){display:none;} html{font-size:100%;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%;} a:focus{outline:thin dotted #333;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px;} a:hover,a:active{outline:0;} sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline;} sup{top:-0.5em;} sub{bottom:-0.25em;} img{max-width:100%;width:auto\9;height:auto;vertical-align:middle;border:0;-ms-interpolation-mode:bicubic;} #map_canvas img,.google-maps img{max-width:none;} button,input,select,textarea{margin:0;font-size:100%;vertical-align:middle;} button,input{*overflow:visible;line-height:normal;} button::-moz-focus-inner,input::-moz-focus-inner{padding:0;border:0;} button,html input[type="button"],input[type="reset"],input[type="submit"]{-webkit-appearance:button;cursor:pointer;} label,select,button,input[type="button"],input[type="reset"],input[type="submit"],input[type="radio"],input[type="checkbox"]{cursor:pointer;} input[type="search"]{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;-webkit-appearance:textfield;} input[type="search"]::-webkit-search-decoration,input[type="search"]::-webkit-search-cancel-button{-webkit-appearance:none;} textarea{overflow:auto;vertical-align:top;} @media print{*{text-shadow:none !important;color:#000 !important;background:transparent !important;box-shadow:none !important;} a,a:visited{text-decoration:underline;} a[href]:after{content:" (" attr(href) ")";} abbr[title]:after{content:" (" attr(title) ")";} .ir a:after,a[href^="javascript:"]:after,a[href^="#"]:after{content:"";} pre,blockquote{border:1px solid #999;page-break-inside:avoid;} thead{display:table-header-group;} tr,img{page-break-inside:avoid;} img{max-width:100% !important;} @page {margin:0.5cm;}p,h2,h3{orphans:3;widows:3;} h2,h3{page-break-after:avoid;}}body{margin:0;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;line-height:20px;color:#333333;background-color:#ffffff;} a{color:#0088cc;text-decoration:none;} a:hover{color:#005580;text-decoration:underline;} .img-rounded{-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;} .img-polaroid{padding:4px;background-color:#fff;border:1px solid #ccc;border:1px solid rgba(0, 0, 0, 0.2);-webkit-box-shadow:0 1px 3px rgba(0, 0, 0, 0.1);-moz-box-shadow:0 1px 3px rgba(0, 0, 0, 0.1);box-shadow:0 1px 3px rgba(0, 0, 0, 0.1);} .img-circle{-webkit-border-radius:500px;-moz-border-radius:500px;border-radius:500px;} .row{margin-left:-20px;*zoom:1;}.row:before,.row:after{display:table;content:"";line-height:0;} .row:after{clear:both;} [class*="span"]{float:left;min-height:1px;margin-left:20px;} .container,.navbar-static-top .container,.navbar-fixed-top .container,.navbar-fixed-bottom .container{width:940px;} .span12{width:940px;} .span11{width:860px;} .span10{width:780px;} .span9{width:700px;} .span8{width:620px;} .span7{width:540px;} .span6{width:460px;} .span5{width:380px;} .span4{width:300px;} .span3{width:220px;} .span2{width:140px;} .span1{width:60px;} .offset12{margin-left:980px;} .offset11{margin-left:900px;} .offset10{margin-left:820px;} .offset9{margin-left:740px;} .offset8{margin-left:660px;} .offset7{margin-left:580px;} .offset6{margin-left:500px;} .offset5{margin-left:420px;} .offset4{margin-left:340px;} .offset3{margin-left:260px;} .offset2{margin-left:180px;} .offset1{margin-left:100px;} .row-fluid{width:100%;*zoom:1;}.row-fluid:before,.row-fluid:after{display:table;content:"";line-height:0;} .row-fluid:after{clear:both;} .row-fluid [class*="span"]{display:block;width:100%;min-height:30px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;float:left;margin-left:2.127659574468085%;*margin-left:2.074468085106383%;} .row-fluid [class*="span"]:first-child{margin-left:0;} .row-fluid .controls-row [class*="span"]+[class*="span"]{margin-left:2.127659574468085%;} .row-fluid .span12{width:100%;*width:99.94680851063829%;} .row-fluid .span11{width:91.48936170212765%;*width:91.43617021276594%;} .row-fluid .span10{width:82.97872340425532%;*width:82.92553191489361%;} .row-fluid .span9{width:74.46808510638297%;*width:74.41489361702126%;} .row-fluid .span8{width:65.95744680851064%;*width:65.90425531914893%;} .row-fluid .span7{width:57.44680851063829%;*width:57.39361702127659%;} .row-fluid .span6{width:48.93617021276595%;*width:48.88297872340425%;} .row-fluid .span5{width:40.42553191489362%;*width:40.37234042553192%;} .row-fluid .span4{width:31.914893617021278%;*width:31.861702127659576%;} .row-fluid .span3{width:23.404255319148934%;*width:23.351063829787233%;} .row-fluid .span2{width:14.893617021276595%;*width:14.840425531914894%;} .row-fluid .span1{width:6.382978723404255%;*width:6.329787234042553%;} .row-fluid .offset12{margin-left:104.25531914893617%;*margin-left:104.14893617021275%;} .row-fluid .offset12:first-child{margin-left:102.12765957446808%;*margin-left:102.02127659574467%;} .row-fluid .offset11{margin-left:95.74468085106382%;*margin-left:95.6382978723404%;} .row-fluid .offset11:first-child{margin-left:93.61702127659574%;*margin-left:93.51063829787232%;} .row-fluid .offset10{margin-left:87.23404255319149%;*margin-left:87.12765957446807%;} .row-fluid .offset10:first-child{margin-left:85.1063829787234%;*margin-left:84.99999999999999%;} .row-fluid .offset9{margin-left:78.72340425531914%;*margin-left:78.61702127659572%;} .row-fluid .offset9:first-child{margin-left:76.59574468085106%;*margin-left:76.48936170212764%;} .row-fluid .offset8{margin-left:70.2127659574468%;*margin-left:70.10638297872339%;} .row-fluid .offset8:first-child{margin-left:68.08510638297872%;*margin-left:67.9787234042553%;} .row-fluid .offset7{margin-left:61.70212765957446%;*margin-left:61.59574468085106%;} .row-fluid .offset7:first-child{margin-left:59.574468085106375%;*margin-left:59.46808510638297%;} .row-fluid .offset6{margin-left:53.191489361702125%;*margin-left:53.085106382978715%;} .row-fluid .offset6:first-child{margin-left:51.063829787234035%;*margin-left:50.95744680851063%;} .row-fluid .offset5{margin-left:44.68085106382979%;*margin-left:44.57446808510638%;} .row-fluid .offset5:first-child{margin-left:42.5531914893617%;*margin-left:42.4468085106383%;} .row-fluid .offset4{margin-left:36.170212765957444%;*margin-left:36.06382978723405%;} .row-fluid .offset4:first-child{margin-left:34.04255319148936%;*margin-left:33.93617021276596%;} .row-fluid .offset3{margin-left:27.659574468085104%;*margin-left:27.5531914893617%;} .row-fluid .offset3:first-child{margin-left:25.53191489361702%;*margin-left:25.425531914893618%;} .row-fluid .offset2{margin-left:19.148936170212764%;*margin-left:19.04255319148936%;} .row-fluid .offset2:first-child{margin-left:17.02127659574468%;*margin-left:16.914893617021278%;} .row-fluid .offset1{margin-left:10.638297872340425%;*margin-left:10.53191489361702%;} .row-fluid .offset1:first-child{margin-left:8.51063829787234%;*margin-left:8.404255319148938%;} [class*="span"].hide,.row-fluid [class*="span"].hide{display:none;} [class*="span"].pull-right,.row-fluid [class*="span"].pull-right{float:right;} .container{margin-right:auto;margin-left:auto;*zoom:1;}.container:before,.container:after{display:table;content:"";line-height:0;} .container:after{clear:both;} .container-fluid{padding-right:20px;padding-left:20px;*zoom:1;}.container-fluid:before,.container-fluid:after{display:table;content:"";line-height:0;} .container-fluid:after{clear:both;} p{margin:0 0 10px;} .lead{margin-bottom:20px;font-size:21px;font-weight:200;line-height:30px;} small{font-size:85%;} strong{font-weight:bold;} em{font-style:italic;} cite{font-style:normal;} .muted{color:#999999;} a.muted:hover{color:#808080;} .text-warning{color:#c09853;} a.text-warning:hover{color:#a47e3c;} .text-error{color:#b94a48;} a.text-error:hover{color:#953b39;} .text-info{color:#3a87ad;} a.text-info:hover{color:#2d6987;} .text-success{color:#468847;} a.text-success:hover{color:#356635;} h1,h2,h3,h4,h5,h6{margin:10px 0;font-family:inherit;font-weight:bold;line-height:20px;color:inherit;text-rendering:optimizelegibility;}h1 small,h2 small,h3 small,h4 small,h5 small,h6 small{font-weight:normal;line-height:1;color:#999999;} h1,h2,h3{line-height:40px;} h1{font-size:38.5px;} h2{font-size:31.5px;} h3{font-size:24.5px;} h4{font-size:17.5px;} h5{font-size:14px;} h6{font-size:11.9px;} h1 small{font-size:24.5px;} h2 small{font-size:17.5px;} h3 small{font-size:14px;} h4 small{font-size:14px;} .page-header{padding-bottom:9px;margin:20px 0 30px;border-bottom:1px solid #eeeeee;} ul,ol{padding:0;margin:0 0 10px 25px;} ul ul,ul ol,ol ol,ol ul{margin-bottom:0;} li{line-height:20px;} ul.unstyled,ol.unstyled{margin-left:0;list-style:none;} ul.inline,ol.inline{margin-left:0;list-style:none;}ul.inline >li,ol.inline >li{display:inline-block;padding-left:5px;padding-right:5px;} dl{margin-bottom:20px;} dt,dd{line-height:20px;} dt{font-weight:bold;} dd{margin-left:10px;} .dl-horizontal{*zoom:1;}.dl-horizontal:before,.dl-horizontal:after{display:table;content:"";line-height:0;} .dl-horizontal:after{clear:both;} .dl-horizontal dt{float:left;width:160px;clear:left;text-align:right;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;} .dl-horizontal dd{margin-left:180px;} hr{margin:20px 0;border:0;border-top:1px solid #eeeeee;border-bottom:1px solid #ffffff;} abbr[title],abbr[data-original-title]{cursor:help;border-bottom:1px dotted #999999;} abbr.initialism{font-size:90%;text-transform:uppercase;} blockquote{padding:0 0 0 15px;margin:0 0 20px;border-left:5px solid #eeeeee;}blockquote p{margin-bottom:0;font-size:16px;font-weight:300;line-height:25px;} blockquote small{display:block;line-height:20px;color:#999999;}blockquote small:before{content:'\2014 \00A0';} blockquote.pull-right{float:right;padding-right:15px;padding-left:0;border-right:5px solid #eeeeee;border-left:0;}blockquote.pull-right p,blockquote.pull-right small{text-align:right;} blockquote.pull-right small:before{content:'';} blockquote.pull-right small:after{content:'\00A0 \2014';} q:before,q:after,blockquote:before,blockquote:after{content:"";} address{display:block;margin-bottom:20px;font-style:normal;line-height:20px;} code,pre{padding:0 3px 2px;font-family:Monaco,Menlo,Consolas,"Courier New",monospace;font-size:12px;color:#333333;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;} code{padding:2px 4px;color:#d14;background-color:#f7f7f9;border:1px solid #e1e1e8;white-space:nowrap;} pre{display:block;padding:9.5px;margin:0 0 10px;font-size:13px;line-height:20px;word-break:break-all;word-wrap:break-word;white-space:pre;white-space:pre-wrap;background-color:#f5f5f5;border:1px solid #ccc;border:1px solid rgba(0, 0, 0, 0.15);-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;}pre.prettyprint{margin-bottom:20px;} pre code{padding:0;color:inherit;white-space:pre;white-space:pre-wrap;background-color:transparent;border:0;} .pre-scrollable{max-height:340px;overflow-y:scroll;} .label,.badge{display:inline-block;padding:2px 4px;font-size:11.844px;font-weight:bold;line-height:14px;color:#ffffff;vertical-align:baseline;white-space:nowrap;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);background-color:#999999;} .label{-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;} .badge{padding-left:9px;padding-right:9px;-webkit-border-radius:9px;-moz-border-radius:9px;border-radius:9px;} .label:empty,.badge:empty{display:none;} a.label:hover,a.badge:hover{color:#ffffff;text-decoration:none;cursor:pointer;} .label-important,.badge-important{background-color:#b94a48;} .label-important[href],.badge-important[href]{background-color:#953b39;} .label-warning,.badge-warning{background-color:#f89406;} .label-warning[href],.badge-warning[href]{background-color:#c67605;} .label-success,.badge-success{background-color:#468847;} .label-success[href],.badge-success[href]{background-color:#356635;} .label-info,.badge-info{background-color:#3a87ad;} .label-info[href],.badge-info[href]{background-color:#2d6987;} .label-inverse,.badge-inverse{background-color:#333333;} .label-inverse[href],.badge-inverse[href]{background-color:#1a1a1a;} .btn .label,.btn .badge{position:relative;top:-1px;} .btn-mini .label,.btn-mini .badge{top:0;} table{max-width:100%;background-color:transparent;border-collapse:collapse;border-spacing:0;} .table{width:100%;margin-bottom:20px;}.table th,.table td{padding:8px;line-height:20px;text-align:left;vertical-align:top;border-top:1px solid #dddddd;} .table th{font-weight:bold;} .table thead th{vertical-align:bottom;} .table caption+thead tr:first-child th,.table caption+thead tr:first-child td,.table colgroup+thead tr:first-child th,.table colgroup+thead tr:first-child td,.table thead:first-child tr:first-child th,.table thead:first-child tr:first-child td{border-top:0;} .table tbody+tbody{border-top:2px solid #dddddd;} .table .table{background-color:#ffffff;} .table-condensed th,.table-condensed td{padding:4px 5px;} .table-bordered{border:1px solid #dddddd;border-collapse:separate;*border-collapse:collapse;border-left:0;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;}.table-bordered th,.table-bordered td{border-left:1px solid #dddddd;} .table-bordered caption+thead tr:first-child th,.table-bordered caption+tbody tr:first-child th,.table-bordered caption+tbody tr:first-child td,.table-bordered colgroup+thead tr:first-child th,.table-bordered colgroup+tbody tr:first-child th,.table-bordered colgroup+tbody tr:first-child td,.table-bordered thead:first-child tr:first-child th,.table-bordered tbody:first-child tr:first-child th,.table-bordered tbody:first-child tr:first-child td{border-top:0;} .table-bordered thead:first-child tr:first-child>th:first-child,.table-bordered tbody:first-child tr:first-child>td:first-child{-webkit-border-top-left-radius:4px;-moz-border-radius-topleft:4px;border-top-left-radius:4px;} .table-bordered thead:first-child tr:first-child>th:last-child,.table-bordered tbody:first-child tr:first-child>td:last-child{-webkit-border-top-right-radius:4px;-moz-border-radius-topright:4px;border-top-right-radius:4px;} .table-bordered thead:last-child tr:last-child>th:first-child,.table-bordered tbody:last-child tr:last-child>td:first-child,.table-bordered tfoot:last-child tr:last-child>td:first-child{-webkit-border-bottom-left-radius:4px;-moz-border-radius-bottomleft:4px;border-bottom-left-radius:4px;} .table-bordered thead:last-child tr:last-child>th:last-child,.table-bordered tbody:last-child tr:last-child>td:last-child,.table-bordered tfoot:last-child tr:last-child>td:last-child{-webkit-border-bottom-right-radius:4px;-moz-border-radius-bottomright:4px;border-bottom-right-radius:4px;} .table-bordered tfoot+tbody:last-child tr:last-child td:first-child{-webkit-border-bottom-left-radius:0;-moz-border-radius-bottomleft:0;border-bottom-left-radius:0;} .table-bordered tfoot+tbody:last-child tr:last-child td:last-child{-webkit-border-bottom-right-radius:0;-moz-border-radius-bottomright:0;border-bottom-right-radius:0;} .table-bordered caption+thead tr:first-child th:first-child,.table-bordered caption+tbody tr:first-child td:first-child,.table-bordered colgroup+thead tr:first-child th:first-child,.table-bordered colgroup+tbody tr:first-child td:first-child{-webkit-border-top-left-radius:4px;-moz-border-radius-topleft:4px;border-top-left-radius:4px;} .table-bordered caption+thead tr:first-child th:last-child,.table-bordered caption+tbody tr:first-child td:last-child,.table-bordered colgroup+thead tr:first-child th:last-child,.table-bordered colgroup+tbody tr:first-child td:last-child{-webkit-border-top-right-radius:4px;-moz-border-radius-topright:4px;border-top-right-radius:4px;} .table-striped tbody>tr:nth-child(odd)>td,.table-striped tbody>tr:nth-child(odd)>th{background-color:#f9f9f9;} .table-hover tbody tr:hover td,.table-hover tbody tr:hover th{background-color:#f5f5f5;} table td[class*="span"],table th[class*="span"],.row-fluid table td[class*="span"],.row-fluid table th[class*="span"]{display:table-cell;float:none;margin-left:0;} .table td.span1,.table th.span1{float:none;width:44px;margin-left:0;} .table td.span2,.table th.span2{float:none;width:124px;margin-left:0;} .table td.span3,.table th.span3{float:none;width:204px;margin-left:0;} .table td.span4,.table th.span4{float:none;width:284px;margin-left:0;} .table td.span5,.table th.span5{float:none;width:364px;margin-left:0;} .table td.span6,.table th.span6{float:none;width:444px;margin-left:0;} .table td.span7,.table th.span7{float:none;width:524px;margin-left:0;} .table td.span8,.table th.span8{float:none;width:604px;margin-left:0;} .table td.span9,.table th.span9{float:none;width:684px;margin-left:0;} .table td.span10,.table th.span10{float:none;width:764px;margin-left:0;} .table td.span11,.table th.span11{float:none;width:844px;margin-left:0;} .table td.span12,.table th.span12{float:none;width:924px;margin-left:0;} .table tbody tr.success td{background-color:#dff0d8;} .table tbody tr.error td{background-color:#f2dede;} .table tbody tr.warning td{background-color:#fcf8e3;} .table tbody tr.info td{background-color:#d9edf7;} .table-hover tbody tr.success:hover td{background-color:#d0e9c6;} .table-hover tbody tr.error:hover td{background-color:#ebcccc;} .table-hover tbody tr.warning:hover td{background-color:#faf2cc;} .table-hover tbody tr.info:hover td{background-color:#c4e3f3;} form{margin:0 0 20px;} fieldset{padding:0;margin:0;border:0;} legend{display:block;width:100%;padding:0;margin-bottom:20px;font-size:21px;line-height:40px;color:#333333;border:0;border-bottom:1px solid #e5e5e5;}legend small{font-size:15px;color:#999999;} label,input,button,select,textarea{font-size:14px;font-weight:normal;line-height:20px;} input,button,select,textarea{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;} label{display:block;margin-bottom:5px;} select,textarea,input[type="text"],input[type="password"],input[type="datetime"],input[type="datetime-local"],input[type="date"],input[type="month"],input[type="time"],input[type="week"],input[type="number"],input[type="email"],input[type="url"],input[type="search"],input[type="tel"],input[type="color"],.uneditable-input{display:inline-block;height:20px;padding:4px 6px;margin-bottom:10px;font-size:14px;line-height:20px;color:#555555;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;vertical-align:middle;} input,textarea,.uneditable-input{width:206px;} textarea{height:auto;} textarea,input[type="text"],input[type="password"],input[type="datetime"],input[type="datetime-local"],input[type="date"],input[type="month"],input[type="time"],input[type="week"],input[type="number"],input[type="email"],input[type="url"],input[type="search"],input[type="tel"],input[type="color"],.uneditable-input{background-color:#ffffff;border:1px solid #cccccc;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);-moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);-webkit-transition:border linear .2s, box-shadow linear .2s;-moz-transition:border linear .2s, box-shadow linear .2s;-o-transition:border linear .2s, box-shadow linear .2s;transition:border linear .2s, box-shadow linear .2s;}textarea:focus,input[type="text"]:focus,input[type="password"]:focus,input[type="datetime"]:focus,input[type="datetime-local"]:focus,input[type="date"]:focus,input[type="month"]:focus,input[type="time"]:focus,input[type="week"]:focus,input[type="number"]:focus,input[type="email"]:focus,input[type="url"]:focus,input[type="search"]:focus,input[type="tel"]:focus,input[type="color"]:focus,.uneditable-input:focus{border-color:rgba(82, 168, 236, 0.8);outline:0;outline:thin dotted \9;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(82,168,236,.6);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(82,168,236,.6);box-shadow:inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(82,168,236,.6);} input[type="radio"],input[type="checkbox"]{margin:4px 0 0;*margin-top:0;margin-top:1px \9;line-height:normal;} input[type="file"],input[type="image"],input[type="submit"],input[type="reset"],input[type="button"],input[type="radio"],input[type="checkbox"]{width:auto;} select,input[type="file"]{height:30px;*margin-top:4px;line-height:30px;} select{width:220px;border:1px solid #cccccc;background-color:#ffffff;} select[multiple],select[size]{height:auto;} select:focus,input[type="file"]:focus,input[type="radio"]:focus,input[type="checkbox"]:focus{outline:thin dotted #333;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px;} .uneditable-input,.uneditable-textarea{color:#999999;background-color:#fcfcfc;border-color:#cccccc;-webkit-box-shadow:inset 0 1px 2px rgba(0, 0, 0, 0.025);-moz-box-shadow:inset 0 1px 2px rgba(0, 0, 0, 0.025);box-shadow:inset 0 1px 2px rgba(0, 0, 0, 0.025);cursor:not-allowed;} .uneditable-input{overflow:hidden;white-space:nowrap;} .uneditable-textarea{width:auto;height:auto;} input:-moz-placeholder,textarea:-moz-placeholder{color:#999999;} input:-ms-input-placeholder,textarea:-ms-input-placeholder{color:#999999;} input::-webkit-input-placeholder,textarea::-webkit-input-placeholder{color:#999999;} .radio,.checkbox{min-height:20px;padding-left:20px;} .radio input[type="radio"],.checkbox input[type="checkbox"]{float:left;margin-left:-20px;} .controls>.radio:first-child,.controls>.checkbox:first-child{padding-top:5px;} .radio.inline,.checkbox.inline{display:inline-block;padding-top:5px;margin-bottom:0;vertical-align:middle;} .radio.inline+.radio.inline,.checkbox.inline+.checkbox.inline{margin-left:10px;} .input-mini{width:60px;} .input-small{width:90px;} .input-medium{width:150px;} .input-large{width:210px;} .input-xlarge{width:270px;} .input-xxlarge{width:530px;} input[class*="span"],select[class*="span"],textarea[class*="span"],.uneditable-input[class*="span"],.row-fluid input[class*="span"],.row-fluid select[class*="span"],.row-fluid textarea[class*="span"],.row-fluid .uneditable-input[class*="span"]{float:none;margin-left:0;} .input-append input[class*="span"],.input-append .uneditable-input[class*="span"],.input-prepend input[class*="span"],.input-prepend .uneditable-input[class*="span"],.row-fluid input[class*="span"],.row-fluid select[class*="span"],.row-fluid textarea[class*="span"],.row-fluid .uneditable-input[class*="span"],.row-fluid .input-prepend [class*="span"],.row-fluid .input-append [class*="span"]{display:inline-block;} input,textarea,.uneditable-input{margin-left:0;} .controls-row [class*="span"]+[class*="span"]{margin-left:20px;} input.span12, textarea.span12, .uneditable-input.span12{width:926px;} input.span11, textarea.span11, .uneditable-input.span11{width:846px;} input.span10, textarea.span10, .uneditable-input.span10{width:766px;} input.span9, textarea.span9, .uneditable-input.span9{width:686px;} input.span8, textarea.span8, .uneditable-input.span8{width:606px;} input.span7, textarea.span7, .uneditable-input.span7{width:526px;} input.span6, textarea.span6, .uneditable-input.span6{width:446px;} input.span5, textarea.span5, .uneditable-input.span5{width:366px;} input.span4, textarea.span4, .uneditable-input.span4{width:286px;} input.span3, textarea.span3, .uneditable-input.span3{width:206px;} input.span2, textarea.span2, .uneditable-input.span2{width:126px;} input.span1, textarea.span1, .uneditable-input.span1{width:46px;} .controls-row{*zoom:1;}.controls-row:before,.controls-row:after{display:table;content:"";line-height:0;} .controls-row:after{clear:both;} .controls-row [class*="span"],.row-fluid .controls-row [class*="span"]{float:left;} .controls-row .checkbox[class*="span"],.controls-row .radio[class*="span"]{padding-top:5px;} input[disabled],select[disabled],textarea[disabled],input[readonly],select[readonly],textarea[readonly]{cursor:not-allowed;background-color:#eeeeee;} input[type="radio"][disabled],input[type="checkbox"][disabled],input[type="radio"][readonly],input[type="checkbox"][readonly]{background-color:transparent;} .control-group.warning .control-label,.control-group.warning .help-block,.control-group.warning .help-inline{color:#c09853;} .control-group.warning .checkbox,.control-group.warning .radio,.control-group.warning input,.control-group.warning select,.control-group.warning textarea{color:#c09853;} .control-group.warning input,.control-group.warning select,.control-group.warning textarea{border-color:#c09853;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);-moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);}.control-group.warning input:focus,.control-group.warning select:focus,.control-group.warning textarea:focus{border-color:#a47e3c;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 6px #dbc59e;-moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 6px #dbc59e;box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 6px #dbc59e;} .control-group.warning .input-prepend .add-on,.control-group.warning .input-append .add-on{color:#c09853;background-color:#fcf8e3;border-color:#c09853;} .control-group.error .control-label,.control-group.error .help-block,.control-group.error .help-inline{color:#b94a48;} .control-group.error .checkbox,.control-group.error .radio,.control-group.error input,.control-group.error select,.control-group.error textarea{color:#b94a48;} .control-group.error input,.control-group.error select,.control-group.error textarea{border-color:#b94a48;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);-moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);}.control-group.error input:focus,.control-group.error select:focus,.control-group.error textarea:focus{border-color:#953b39;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 6px #d59392;-moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 6px #d59392;box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 6px #d59392;} .control-group.error .input-prepend .add-on,.control-group.error .input-append .add-on{color:#b94a48;background-color:#f2dede;border-color:#b94a48;} .control-group.success .control-label,.control-group.success .help-block,.control-group.success .help-inline{color:#468847;} .control-group.success .checkbox,.control-group.success .radio,.control-group.success input,.control-group.success select,.control-group.success textarea{color:#468847;} .control-group.success input,.control-group.success select,.control-group.success textarea{border-color:#468847;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);-moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);}.control-group.success input:focus,.control-group.success select:focus,.control-group.success textarea:focus{border-color:#356635;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 6px #7aba7b;-moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 6px #7aba7b;box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 6px #7aba7b;} .control-group.success .input-prepend .add-on,.control-group.success .input-append .add-on{color:#468847;background-color:#dff0d8;border-color:#468847;} .control-group.info .control-label,.control-group.info .help-block,.control-group.info .help-inline{color:#3a87ad;} .control-group.info .checkbox,.control-group.info .radio,.control-group.info input,.control-group.info select,.control-group.info textarea{color:#3a87ad;} .control-group.info input,.control-group.info select,.control-group.info textarea{border-color:#3a87ad;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);-moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);}.control-group.info input:focus,.control-group.info select:focus,.control-group.info textarea:focus{border-color:#2d6987;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 6px #7ab5d3;-moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 6px #7ab5d3;box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 6px #7ab5d3;} .control-group.info .input-prepend .add-on,.control-group.info .input-append .add-on{color:#3a87ad;background-color:#d9edf7;border-color:#3a87ad;} input:focus:invalid,textarea:focus:invalid,select:focus:invalid{color:#b94a48;border-color:#ee5f5b;}input:focus:invalid:focus,textarea:focus:invalid:focus,select:focus:invalid:focus{border-color:#e9322d;-webkit-box-shadow:0 0 6px #f8b9b7;-moz-box-shadow:0 0 6px #f8b9b7;box-shadow:0 0 6px #f8b9b7;} .form-actions{padding:19px 20px 20px;margin-top:20px;margin-bottom:20px;background-color:#f5f5f5;border-top:1px solid #e5e5e5;*zoom:1;}.form-actions:before,.form-actions:after{display:table;content:"";line-height:0;} .form-actions:after{clear:both;} .help-block,.help-inline{color:#595959;} .help-block{display:block;margin-bottom:10px;} .help-inline{display:inline-block;*display:inline;*zoom:1;vertical-align:middle;padding-left:5px;} .input-append,.input-prepend{margin-bottom:5px;font-size:0;white-space:nowrap;}.input-append input,.input-prepend input,.input-append select,.input-prepend select,.input-append .uneditable-input,.input-prepend .uneditable-input,.input-append .dropdown-menu,.input-prepend .dropdown-menu{font-size:14px;} .input-append input,.input-prepend input,.input-append select,.input-prepend select,.input-append .uneditable-input,.input-prepend .uneditable-input{position:relative;margin-bottom:0;*margin-left:0;vertical-align:top;-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0;}.input-append input:focus,.input-prepend input:focus,.input-append select:focus,.input-prepend select:focus,.input-append .uneditable-input:focus,.input-prepend .uneditable-input:focus{z-index:2;} .input-append .add-on,.input-prepend .add-on{display:inline-block;width:auto;height:20px;min-width:16px;padding:4px 5px;font-size:14px;font-weight:normal;line-height:20px;text-align:center;text-shadow:0 1px 0 #ffffff;background-color:#eeeeee;border:1px solid #ccc;} .input-append .add-on,.input-prepend .add-on,.input-append .btn,.input-prepend .btn,.input-append .btn-group>.dropdown-toggle,.input-prepend .btn-group>.dropdown-toggle{vertical-align:top;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;} .input-append .active,.input-prepend .active{background-color:#a9dba9;border-color:#46a546;} .input-prepend .add-on,.input-prepend .btn{margin-right:-1px;} .input-prepend .add-on:first-child,.input-prepend .btn:first-child{-webkit-border-radius:4px 0 0 4px;-moz-border-radius:4px 0 0 4px;border-radius:4px 0 0 4px;} .input-append input,.input-append select,.input-append .uneditable-input{-webkit-border-radius:4px 0 0 4px;-moz-border-radius:4px 0 0 4px;border-radius:4px 0 0 4px;}.input-append input+.btn-group .btn:last-child,.input-append select+.btn-group .btn:last-child,.input-append .uneditable-input+.btn-group .btn:last-child{-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0;} .input-append .add-on,.input-append .btn,.input-append .btn-group{margin-left:-1px;} .input-append .add-on:last-child,.input-append .btn:last-child,.input-append .btn-group:last-child>.dropdown-toggle{-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0;} .input-prepend.input-append input,.input-prepend.input-append select,.input-prepend.input-append .uneditable-input{-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;}.input-prepend.input-append input+.btn-group .btn,.input-prepend.input-append select+.btn-group .btn,.input-prepend.input-append .uneditable-input+.btn-group .btn{-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0;} .input-prepend.input-append .add-on:first-child,.input-prepend.input-append .btn:first-child{margin-right:-1px;-webkit-border-radius:4px 0 0 4px;-moz-border-radius:4px 0 0 4px;border-radius:4px 0 0 4px;} .input-prepend.input-append .add-on:last-child,.input-prepend.input-append .btn:last-child{margin-left:-1px;-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0;} .input-prepend.input-append .btn-group:first-child{margin-left:0;} input.search-query{padding-right:14px;padding-right:4px \9;padding-left:14px;padding-left:4px \9;margin-bottom:0;-webkit-border-radius:15px;-moz-border-radius:15px;border-radius:15px;} .form-search .input-append .search-query,.form-search .input-prepend .search-query{-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;} .form-search .input-append .search-query{-webkit-border-radius:14px 0 0 14px;-moz-border-radius:14px 0 0 14px;border-radius:14px 0 0 14px;} .form-search .input-append .btn{-webkit-border-radius:0 14px 14px 0;-moz-border-radius:0 14px 14px 0;border-radius:0 14px 14px 0;} .form-search .input-prepend .search-query{-webkit-border-radius:0 14px 14px 0;-moz-border-radius:0 14px 14px 0;border-radius:0 14px 14px 0;} .form-search .input-prepend .btn{-webkit-border-radius:14px 0 0 14px;-moz-border-radius:14px 0 0 14px;border-radius:14px 0 0 14px;} .form-search input,.form-inline input,.form-horizontal input,.form-search textarea,.form-inline textarea,.form-horizontal textarea,.form-search select,.form-inline select,.form-horizontal select,.form-search .help-inline,.form-inline .help-inline,.form-horizontal .help-inline,.form-search .uneditable-input,.form-inline .uneditable-input,.form-horizontal .uneditable-input,.form-search .input-prepend,.form-inline .input-prepend,.form-horizontal .input-prepend,.form-search .input-append,.form-inline .input-append,.form-horizontal .input-append{display:inline-block;*display:inline;*zoom:1;margin-bottom:0;vertical-align:middle;} .form-search .hide,.form-inline .hide,.form-horizontal .hide{display:none;} .form-search label,.form-inline label,.form-search .btn-group,.form-inline .btn-group{display:inline-block;} .form-search .input-append,.form-inline .input-append,.form-search .input-prepend,.form-inline .input-prepend{margin-bottom:0;} .form-search .radio,.form-search .checkbox,.form-inline .radio,.form-inline .checkbox{padding-left:0;margin-bottom:0;vertical-align:middle;} .form-search .radio input[type="radio"],.form-search .checkbox input[type="checkbox"],.form-inline .radio input[type="radio"],.form-inline .checkbox input[type="checkbox"]{float:left;margin-right:3px;margin-left:0;} .control-group{margin-bottom:10px;} legend+.control-group{margin-top:20px;-webkit-margin-top-collapse:separate;} .form-horizontal .control-group{margin-bottom:20px;*zoom:1;}.form-horizontal .control-group:before,.form-horizontal .control-group:after{display:table;content:"";line-height:0;} .form-horizontal .control-group:after{clear:both;} .form-horizontal .control-label{float:left;width:160px;padding-top:5px;text-align:right;} .form-horizontal .controls{*display:inline-block;*padding-left:20px;margin-left:180px;*margin-left:0;}.form-horizontal .controls:first-child{*padding-left:180px;} .form-horizontal .help-block{margin-bottom:0;} .form-horizontal input+.help-block,.form-horizontal select+.help-block,.form-horizontal textarea+.help-block,.form-horizontal .uneditable-input+.help-block,.form-horizontal .input-prepend+.help-block,.form-horizontal .input-append+.help-block{margin-top:10px;} .form-horizontal .form-actions{padding-left:180px;} .btn{display:inline-block;*display:inline;*zoom:1;padding:4px 12px;margin-bottom:0;font-size:14px;line-height:20px;text-align:center;vertical-align:middle;cursor:pointer;color:#333333;text-shadow:0 1px 1px rgba(255, 255, 255, 0.75);background-color:#f5f5f5;background-image:-moz-linear-gradient(top, #ffffff, #e6e6e6);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#e6e6e6));background-image:-webkit-linear-gradient(top, #ffffff, #e6e6e6);background-image:-o-linear-gradient(top, #ffffff, #e6e6e6);background-image:linear-gradient(to bottom, #ffffff, #e6e6e6);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe6e6e6', GradientType=0);border-color:#e6e6e6 #e6e6e6 #bfbfbf;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);*background-color:#e6e6e6;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);border:1px solid #bbbbbb;*border:0;border-bottom-color:#a2a2a2;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;*margin-left:.3em;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);-moz-box-shadow:inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);box-shadow:inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);}.btn:hover,.btn:active,.btn.active,.btn.disabled,.btn[disabled]{color:#333333;background-color:#e6e6e6;*background-color:#d9d9d9;} .btn:active,.btn.active{background-color:#cccccc \9;} .btn:first-child{*margin-left:0;} .btn:hover{color:#333333;text-decoration:none;background-position:0 -15px;-webkit-transition:background-position 0.1s linear;-moz-transition:background-position 0.1s linear;-o-transition:background-position 0.1s linear;transition:background-position 0.1s linear;} .btn:focus{outline:thin dotted #333;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px;} .btn.active,.btn:active{background-image:none;outline:0;-webkit-box-shadow:inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);-moz-box-shadow:inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);box-shadow:inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);} .btn.disabled,.btn[disabled]{cursor:default;background-image:none;opacity:0.65;filter:alpha(opacity=65);-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;} .btn-large{padding:11px 19px;font-size:17.5px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;} .btn-large [class^="icon-"],.btn-large [class*=" icon-"]{margin-top:4px;} .btn-small{padding:2px 10px;font-size:11.9px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;} .btn-small [class^="icon-"],.btn-small [class*=" icon-"]{margin-top:0;} .btn-mini [class^="icon-"],.btn-mini [class*=" icon-"]{margin-top:-1px;} .btn-mini{padding:0 6px;font-size:10.5px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;} .btn-block{display:block;width:100%;padding-left:0;padding-right:0;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;} .btn-block+.btn-block{margin-top:5px;} input[type="submit"].btn-block,input[type="reset"].btn-block,input[type="button"].btn-block{width:100%;} .btn-primary.active,.btn-warning.active,.btn-danger.active,.btn-success.active,.btn-info.active,.btn-inverse.active{color:rgba(255, 255, 255, 0.75);} .btn{border-color:#c5c5c5;border-color:rgba(0, 0, 0, 0.15) rgba(0, 0, 0, 0.15) rgba(0, 0, 0, 0.25);} .btn-primary{color:#ffffff;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);background-color:#006dcc;background-image:-moz-linear-gradient(top, #0088cc, #0044cc);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0044cc));background-image:-webkit-linear-gradient(top, #0088cc, #0044cc);background-image:-o-linear-gradient(top, #0088cc, #0044cc);background-image:linear-gradient(to bottom, #0088cc, #0044cc);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff0044cc', GradientType=0);border-color:#0044cc #0044cc #002a80;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);*background-color:#0044cc;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);}.btn-primary:hover,.btn-primary:active,.btn-primary.active,.btn-primary.disabled,.btn-primary[disabled]{color:#ffffff;background-color:#0044cc;*background-color:#003bb3;} .btn-primary:active,.btn-primary.active{background-color:#003399 \9;} .btn-warning{color:#ffffff;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);background-color:#faa732;background-image:-moz-linear-gradient(top, #fbb450, #f89406);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#fbb450), to(#f89406));background-image:-webkit-linear-gradient(top, #fbb450, #f89406);background-image:-o-linear-gradient(top, #fbb450, #f89406);background-image:linear-gradient(to bottom, #fbb450, #f89406);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffbb450', endColorstr='#fff89406', GradientType=0);border-color:#f89406 #f89406 #ad6704;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);*background-color:#f89406;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);}.btn-warning:hover,.btn-warning:active,.btn-warning.active,.btn-warning.disabled,.btn-warning[disabled]{color:#ffffff;background-color:#f89406;*background-color:#df8505;} .btn-warning:active,.btn-warning.active{background-color:#c67605 \9;} .btn-danger{color:#ffffff;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);background-color:#da4f49;background-image:-moz-linear-gradient(top, #ee5f5b, #bd362f);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#ee5f5b), to(#bd362f));background-image:-webkit-linear-gradient(top, #ee5f5b, #bd362f);background-image:-o-linear-gradient(top, #ee5f5b, #bd362f);background-image:linear-gradient(to bottom, #ee5f5b, #bd362f);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffee5f5b', endColorstr='#ffbd362f', GradientType=0);border-color:#bd362f #bd362f #802420;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);*background-color:#bd362f;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);}.btn-danger:hover,.btn-danger:active,.btn-danger.active,.btn-danger.disabled,.btn-danger[disabled]{color:#ffffff;background-color:#bd362f;*background-color:#a9302a;} .btn-danger:active,.btn-danger.active{background-color:#942a25 \9;} .btn-success{color:#ffffff;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);background-color:#5bb75b;background-image:-moz-linear-gradient(top, #62c462, #51a351);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#62c462), to(#51a351));background-image:-webkit-linear-gradient(top, #62c462, #51a351);background-image:-o-linear-gradient(top, #62c462, #51a351);background-image:linear-gradient(to bottom, #62c462, #51a351);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff62c462', endColorstr='#ff51a351', GradientType=0);border-color:#51a351 #51a351 #387038;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);*background-color:#51a351;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);}.btn-success:hover,.btn-success:active,.btn-success.active,.btn-success.disabled,.btn-success[disabled]{color:#ffffff;background-color:#51a351;*background-color:#499249;} .btn-success:active,.btn-success.active{background-color:#408140 \9;} .btn-info{color:#ffffff;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);background-color:#49afcd;background-image:-moz-linear-gradient(top, #5bc0de, #2f96b4);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#5bc0de), to(#2f96b4));background-image:-webkit-linear-gradient(top, #5bc0de, #2f96b4);background-image:-o-linear-gradient(top, #5bc0de, #2f96b4);background-image:linear-gradient(to bottom, #5bc0de, #2f96b4);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff2f96b4', GradientType=0);border-color:#2f96b4 #2f96b4 #1f6377;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);*background-color:#2f96b4;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);}.btn-info:hover,.btn-info:active,.btn-info.active,.btn-info.disabled,.btn-info[disabled]{color:#ffffff;background-color:#2f96b4;*background-color:#2a85a0;} .btn-info:active,.btn-info.active{background-color:#24748c \9;} .btn-inverse{color:#ffffff;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);background-color:#363636;background-image:-moz-linear-gradient(top, #444444, #222222);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#444444), to(#222222));background-image:-webkit-linear-gradient(top, #444444, #222222);background-image:-o-linear-gradient(top, #444444, #222222);background-image:linear-gradient(to bottom, #444444, #222222);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff444444', endColorstr='#ff222222', GradientType=0);border-color:#222222 #222222 #000000;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);*background-color:#222222;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);}.btn-inverse:hover,.btn-inverse:active,.btn-inverse.active,.btn-inverse.disabled,.btn-inverse[disabled]{color:#ffffff;background-color:#222222;*background-color:#151515;} .btn-inverse:active,.btn-inverse.active{background-color:#080808 \9;} button.btn,input[type="submit"].btn{*padding-top:3px;*padding-bottom:3px;}button.btn::-moz-focus-inner,input[type="submit"].btn::-moz-focus-inner{padding:0;border:0;} button.btn.btn-large,input[type="submit"].btn.btn-large{*padding-top:7px;*padding-bottom:7px;} button.btn.btn-small,input[type="submit"].btn.btn-small{*padding-top:3px;*padding-bottom:3px;} button.btn.btn-mini,input[type="submit"].btn.btn-mini{*padding-top:1px;*padding-bottom:1px;} .btn-link,.btn-link:active,.btn-link[disabled]{background-color:transparent;background-image:none;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;} .btn-link{border-color:transparent;cursor:pointer;color:#0088cc;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;} .btn-link:hover{color:#005580;text-decoration:underline;background-color:transparent;} .btn-link[disabled]:hover{color:#333333;text-decoration:none;} .btn-group{position:relative;display:inline-block;*display:inline;*zoom:1;font-size:0;vertical-align:middle;white-space:nowrap;*margin-left:.3em;}.btn-group:first-child{*margin-left:0;} .btn-group+.btn-group{margin-left:5px;} .btn-toolbar{font-size:0;margin-top:10px;margin-bottom:10px;}.btn-toolbar>.btn+.btn,.btn-toolbar>.btn-group+.btn,.btn-toolbar>.btn+.btn-group{margin-left:5px;} .btn-group>.btn{position:relative;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;} .btn-group>.btn+.btn{margin-left:-1px;} .btn-group>.btn,.btn-group>.dropdown-menu,.btn-group>.popover{font-size:14px;} .btn-group>.btn-mini{font-size:10.5px;} .btn-group>.btn-small{font-size:11.9px;} .btn-group>.btn-large{font-size:17.5px;} .btn-group>.btn:first-child{margin-left:0;-webkit-border-top-left-radius:4px;-moz-border-radius-topleft:4px;border-top-left-radius:4px;-webkit-border-bottom-left-radius:4px;-moz-border-radius-bottomleft:4px;border-bottom-left-radius:4px;} .btn-group>.btn:last-child,.btn-group>.dropdown-toggle{-webkit-border-top-right-radius:4px;-moz-border-radius-topright:4px;border-top-right-radius:4px;-webkit-border-bottom-right-radius:4px;-moz-border-radius-bottomright:4px;border-bottom-right-radius:4px;} .btn-group>.btn.large:first-child{margin-left:0;-webkit-border-top-left-radius:6px;-moz-border-radius-topleft:6px;border-top-left-radius:6px;-webkit-border-bottom-left-radius:6px;-moz-border-radius-bottomleft:6px;border-bottom-left-radius:6px;} .btn-group>.btn.large:last-child,.btn-group>.large.dropdown-toggle{-webkit-border-top-right-radius:6px;-moz-border-radius-topright:6px;border-top-right-radius:6px;-webkit-border-bottom-right-radius:6px;-moz-border-radius-bottomright:6px;border-bottom-right-radius:6px;} .btn-group>.btn:hover,.btn-group>.btn:focus,.btn-group>.btn:active,.btn-group>.btn.active{z-index:2;} .btn-group .dropdown-toggle:active,.btn-group.open .dropdown-toggle{outline:0;} .btn-group>.btn+.dropdown-toggle{padding-left:8px;padding-right:8px;-webkit-box-shadow:inset 1px 0 0 rgba(255,255,255,.125), inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);-moz-box-shadow:inset 1px 0 0 rgba(255,255,255,.125), inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);box-shadow:inset 1px 0 0 rgba(255,255,255,.125), inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);*padding-top:5px;*padding-bottom:5px;} .btn-group>.btn-mini+.dropdown-toggle{padding-left:5px;padding-right:5px;*padding-top:2px;*padding-bottom:2px;} .btn-group>.btn-small+.dropdown-toggle{*padding-top:5px;*padding-bottom:4px;} .btn-group>.btn-large+.dropdown-toggle{padding-left:12px;padding-right:12px;*padding-top:7px;*padding-bottom:7px;} .btn-group.open .dropdown-toggle{background-image:none;-webkit-box-shadow:inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);-moz-box-shadow:inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);box-shadow:inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);} .btn-group.open .btn.dropdown-toggle{background-color:#e6e6e6;} .btn-group.open .btn-primary.dropdown-toggle{background-color:#0044cc;} .btn-group.open .btn-warning.dropdown-toggle{background-color:#f89406;} .btn-group.open .btn-danger.dropdown-toggle{background-color:#bd362f;} .btn-group.open .btn-success.dropdown-toggle{background-color:#51a351;} .btn-group.open .btn-info.dropdown-toggle{background-color:#2f96b4;} .btn-group.open .btn-inverse.dropdown-toggle{background-color:#222222;} .btn .caret{margin-top:8px;margin-left:0;} .btn-mini .caret,.btn-small .caret,.btn-large .caret{margin-top:6px;} .btn-large .caret{border-left-width:5px;border-right-width:5px;border-top-width:5px;} .dropup .btn-large .caret{border-bottom-width:5px;} .btn-primary .caret,.btn-warning .caret,.btn-danger .caret,.btn-info .caret,.btn-success .caret,.btn-inverse .caret{border-top-color:#ffffff;border-bottom-color:#ffffff;} .btn-group-vertical{display:inline-block;*display:inline;*zoom:1;} .btn-group-vertical>.btn{display:block;float:none;max-width:100%;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;} .btn-group-vertical>.btn+.btn{margin-left:0;margin-top:-1px;} .btn-group-vertical>.btn:first-child{-webkit-border-radius:4px 4px 0 0;-moz-border-radius:4px 4px 0 0;border-radius:4px 4px 0 0;} .btn-group-vertical>.btn:last-child{-webkit-border-radius:0 0 4px 4px;-moz-border-radius:0 0 4px 4px;border-radius:0 0 4px 4px;} .btn-group-vertical>.btn-large:first-child{-webkit-border-radius:6px 6px 0 0;-moz-border-radius:6px 6px 0 0;border-radius:6px 6px 0 0;} .btn-group-vertical>.btn-large:last-child{-webkit-border-radius:0 0 6px 6px;-moz-border-radius:0 0 6px 6px;border-radius:0 0 6px 6px;} .nav{margin-left:0;margin-bottom:20px;list-style:none;} .nav>li>a{display:block;} .nav>li>a:hover{text-decoration:none;background-color:#eeeeee;} .nav>li>a>img{max-width:none;} .nav>.pull-right{float:right;} .nav-header{display:block;padding:3px 15px;font-size:11px;font-weight:bold;line-height:20px;color:#999999;text-shadow:0 1px 0 rgba(255, 255, 255, 0.5);text-transform:uppercase;} .nav li+.nav-header{margin-top:9px;} .nav-list{padding-left:15px;padding-right:15px;margin-bottom:0;} .nav-list>li>a,.nav-list .nav-header{margin-left:-15px;margin-right:-15px;text-shadow:0 1px 0 rgba(255, 255, 255, 0.5);} .nav-list>li>a{padding:3px 15px;} .nav-list>.active>a,.nav-list>.active>a:hover{color:#ffffff;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.2);background-color:#0088cc;} .nav-list [class^="icon-"],.nav-list [class*=" icon-"]{margin-right:2px;} .nav-list .divider{*width:100%;height:1px;margin:9px 1px;*margin:-5px 0 5px;overflow:hidden;background-color:#e5e5e5;border-bottom:1px solid #ffffff;} .nav-tabs,.nav-pills{*zoom:1;}.nav-tabs:before,.nav-pills:before,.nav-tabs:after,.nav-pills:after{display:table;content:"";line-height:0;} .nav-tabs:after,.nav-pills:after{clear:both;} .nav-tabs>li,.nav-pills>li{float:left;} .nav-tabs>li>a,.nav-pills>li>a{padding-right:12px;padding-left:12px;margin-right:2px;line-height:14px;} .nav-tabs{border-bottom:1px solid #ddd;} .nav-tabs>li{margin-bottom:-1px;} .nav-tabs>li>a{padding-top:8px;padding-bottom:8px;line-height:20px;border:1px solid transparent;-webkit-border-radius:4px 4px 0 0;-moz-border-radius:4px 4px 0 0;border-radius:4px 4px 0 0;}.nav-tabs>li>a:hover{border-color:#eeeeee #eeeeee #dddddd;} .nav-tabs>.active>a,.nav-tabs>.active>a:hover{color:#555555;background-color:#ffffff;border:1px solid #ddd;border-bottom-color:transparent;cursor:default;} .nav-pills>li>a{padding-top:8px;padding-bottom:8px;margin-top:2px;margin-bottom:2px;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;} .nav-pills>.active>a,.nav-pills>.active>a:hover{color:#ffffff;background-color:#0088cc;} .nav-stacked>li{float:none;} .nav-stacked>li>a{margin-right:0;} .nav-tabs.nav-stacked{border-bottom:0;} .nav-tabs.nav-stacked>li>a{border:1px solid #ddd;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;} .nav-tabs.nav-stacked>li:first-child>a{-webkit-border-top-right-radius:4px;-moz-border-radius-topright:4px;border-top-right-radius:4px;-webkit-border-top-left-radius:4px;-moz-border-radius-topleft:4px;border-top-left-radius:4px;} .nav-tabs.nav-stacked>li:last-child>a{-webkit-border-bottom-right-radius:4px;-moz-border-radius-bottomright:4px;border-bottom-right-radius:4px;-webkit-border-bottom-left-radius:4px;-moz-border-radius-bottomleft:4px;border-bottom-left-radius:4px;} .nav-tabs.nav-stacked>li>a:hover{border-color:#ddd;z-index:2;} .nav-pills.nav-stacked>li>a{margin-bottom:3px;} .nav-pills.nav-stacked>li:last-child>a{margin-bottom:1px;} .nav-tabs .dropdown-menu{-webkit-border-radius:0 0 6px 6px;-moz-border-radius:0 0 6px 6px;border-radius:0 0 6px 6px;} .nav-pills .dropdown-menu{-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;} .nav .dropdown-toggle .caret{border-top-color:#0088cc;border-bottom-color:#0088cc;margin-top:6px;} .nav .dropdown-toggle:hover .caret{border-top-color:#005580;border-bottom-color:#005580;} .nav-tabs .dropdown-toggle .caret{margin-top:8px;} .nav .active .dropdown-toggle .caret{border-top-color:#fff;border-bottom-color:#fff;} .nav-tabs .active .dropdown-toggle .caret{border-top-color:#555555;border-bottom-color:#555555;} .nav>.dropdown.active>a:hover{cursor:pointer;} .nav-tabs .open .dropdown-toggle,.nav-pills .open .dropdown-toggle,.nav>li.dropdown.open.active>a:hover{color:#ffffff;background-color:#999999;border-color:#999999;} .nav li.dropdown.open .caret,.nav li.dropdown.open.active .caret,.nav li.dropdown.open a:hover .caret{border-top-color:#ffffff;border-bottom-color:#ffffff;opacity:1;filter:alpha(opacity=100);} .tabs-stacked .open>a:hover{border-color:#999999;} .tabbable{*zoom:1;}.tabbable:before,.tabbable:after{display:table;content:"";line-height:0;} .tabbable:after{clear:both;} .tab-content{overflow:auto;} .tabs-below>.nav-tabs,.tabs-right>.nav-tabs,.tabs-left>.nav-tabs{border-bottom:0;} .tab-content>.tab-pane,.pill-content>.pill-pane{display:none;} .tab-content>.active,.pill-content>.active{display:block;} .tabs-below>.nav-tabs{border-top:1px solid #ddd;} .tabs-below>.nav-tabs>li{margin-top:-1px;margin-bottom:0;} .tabs-below>.nav-tabs>li>a{-webkit-border-radius:0 0 4px 4px;-moz-border-radius:0 0 4px 4px;border-radius:0 0 4px 4px;}.tabs-below>.nav-tabs>li>a:hover{border-bottom-color:transparent;border-top-color:#ddd;} .tabs-below>.nav-tabs>.active>a,.tabs-below>.nav-tabs>.active>a:hover{border-color:transparent #ddd #ddd #ddd;} .tabs-left>.nav-tabs>li,.tabs-right>.nav-tabs>li{float:none;} .tabs-left>.nav-tabs>li>a,.tabs-right>.nav-tabs>li>a{min-width:74px;margin-right:0;margin-bottom:3px;} .tabs-left>.nav-tabs{float:left;margin-right:19px;border-right:1px solid #ddd;} .tabs-left>.nav-tabs>li>a{margin-right:-1px;-webkit-border-radius:4px 0 0 4px;-moz-border-radius:4px 0 0 4px;border-radius:4px 0 0 4px;} .tabs-left>.nav-tabs>li>a:hover{border-color:#eeeeee #dddddd #eeeeee #eeeeee;} .tabs-left>.nav-tabs .active>a,.tabs-left>.nav-tabs .active>a:hover{border-color:#ddd transparent #ddd #ddd;*border-right-color:#ffffff;} .tabs-right>.nav-tabs{float:right;margin-left:19px;border-left:1px solid #ddd;} .tabs-right>.nav-tabs>li>a{margin-left:-1px;-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0;} .tabs-right>.nav-tabs>li>a:hover{border-color:#eeeeee #eeeeee #eeeeee #dddddd;} .tabs-right>.nav-tabs .active>a,.tabs-right>.nav-tabs .active>a:hover{border-color:#ddd #ddd #ddd transparent;*border-left-color:#ffffff;} .nav>.disabled>a{color:#999999;} .nav>.disabled>a:hover{text-decoration:none;background-color:transparent;cursor:default;} .navbar{overflow:visible;margin-bottom:20px;*position:relative;*z-index:2;} .navbar-inner{min-height:50px;padding-left:20px;padding-right:20px;background-color:#fafafa;background-image:-moz-linear-gradient(top, #ffffff, #f2f2f2);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#f2f2f2));background-image:-webkit-linear-gradient(top, #ffffff, #f2f2f2);background-image:-o-linear-gradient(top, #ffffff, #f2f2f2);background-image:linear-gradient(to bottom, #ffffff, #f2f2f2);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#fff2f2f2', GradientType=0);border:1px solid #d4d4d4;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:0 1px 4px rgba(0, 0, 0, 0.065);-moz-box-shadow:0 1px 4px rgba(0, 0, 0, 0.065);box-shadow:0 1px 4px rgba(0, 0, 0, 0.065);*zoom:1;}.navbar-inner:before,.navbar-inner:after{display:table;content:"";line-height:0;} .navbar-inner:after{clear:both;} .navbar .container{width:auto;} .nav-collapse.collapse{height:auto;overflow:visible;} .navbar .brand{float:left;display:block;padding:15px 20px 15px;margin-left:-20px;font-size:20px;font-weight:200;color:#777777;text-shadow:0 1px 0 #ffffff;}.navbar .brand:hover{text-decoration:none;} .navbar-text{margin-bottom:0;line-height:50px;color:#777777;} .navbar-link{color:#777777;}.navbar-link:hover{color:#333333;} .navbar .divider-vertical{height:50px;margin:0 9px;border-left:1px solid #f2f2f2;border-right:1px solid #ffffff;} .navbar .btn,.navbar .btn-group{margin-top:10px;} .navbar .btn-group .btn,.navbar .input-prepend .btn,.navbar .input-append .btn{margin-top:0;} .navbar-form{margin-bottom:0;*zoom:1;}.navbar-form:before,.navbar-form:after{display:table;content:"";line-height:0;} .navbar-form:after{clear:both;} .navbar-form input,.navbar-form select,.navbar-form .radio,.navbar-form .checkbox{margin-top:10px;} .navbar-form input,.navbar-form select,.navbar-form .btn{display:inline-block;margin-bottom:0;} .navbar-form input[type="image"],.navbar-form input[type="checkbox"],.navbar-form input[type="radio"]{margin-top:3px;} .navbar-form .input-append,.navbar-form .input-prepend{margin-top:5px;white-space:nowrap;}.navbar-form .input-append input,.navbar-form .input-prepend input{margin-top:0;} .navbar-search{position:relative;float:left;margin-top:10px;margin-bottom:0;}.navbar-search .search-query{margin-bottom:0;padding:4px 14px;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:13px;font-weight:normal;line-height:1;-webkit-border-radius:15px;-moz-border-radius:15px;border-radius:15px;} .navbar-static-top{position:static;margin-bottom:0;}.navbar-static-top .navbar-inner{-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;} .navbar-fixed-top,.navbar-fixed-bottom{position:fixed;right:0;left:0;z-index:1030;margin-bottom:0;} .navbar-fixed-top .navbar-inner,.navbar-static-top .navbar-inner{border-width:0 0 1px;} .navbar-fixed-bottom .navbar-inner{border-width:1px 0 0;} .navbar-fixed-top .navbar-inner,.navbar-fixed-bottom .navbar-inner{padding-left:0;padding-right:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;} .navbar-static-top .container,.navbar-fixed-top .container,.navbar-fixed-bottom .container{width:940px;} .navbar-fixed-top{top:0;} .navbar-fixed-top .navbar-inner,.navbar-static-top .navbar-inner{-webkit-box-shadow:0 1px 10px rgba(0,0,0,.1);-moz-box-shadow:0 1px 10px rgba(0,0,0,.1);box-shadow:0 1px 10px rgba(0,0,0,.1);} .navbar-fixed-bottom{bottom:0;}.navbar-fixed-bottom .navbar-inner{-webkit-box-shadow:0 -1px 10px rgba(0,0,0,.1);-moz-box-shadow:0 -1px 10px rgba(0,0,0,.1);box-shadow:0 -1px 10px rgba(0,0,0,.1);} .navbar .nav{position:relative;left:0;display:block;float:left;margin:0 10px 0 0;} .navbar .nav.pull-right{float:right;margin-right:0;} .navbar .nav>li{float:left;} .navbar .nav>li>a{float:none;padding:15px 15px 15px;color:#777777;text-decoration:none;text-shadow:0 1px 0 #ffffff;} .navbar .nav .dropdown-toggle .caret{margin-top:8px;} .navbar .nav>li>a:focus,.navbar .nav>li>a:hover{background-color:transparent;color:#333333;text-decoration:none;} .navbar .nav>.active>a,.navbar .nav>.active>a:hover,.navbar .nav>.active>a:focus{color:#555555;text-decoration:none;background-color:#e5e5e5;-webkit-box-shadow:inset 0 3px 8px rgba(0, 0, 0, 0.125);-moz-box-shadow:inset 0 3px 8px rgba(0, 0, 0, 0.125);box-shadow:inset 0 3px 8px rgba(0, 0, 0, 0.125);} .navbar .btn-navbar{display:none;float:right;padding:7px 10px;margin-left:5px;margin-right:5px;color:#ffffff;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);background-color:#ededed;background-image:-moz-linear-gradient(top, #f2f2f2, #e5e5e5);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#f2f2f2), to(#e5e5e5));background-image:-webkit-linear-gradient(top, #f2f2f2, #e5e5e5);background-image:-o-linear-gradient(top, #f2f2f2, #e5e5e5);background-image:linear-gradient(to bottom, #f2f2f2, #e5e5e5);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2f2f2', endColorstr='#ffe5e5e5', GradientType=0);border-color:#e5e5e5 #e5e5e5 #bfbfbf;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);*background-color:#e5e5e5;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.075);-moz-box-shadow:inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.075);box-shadow:inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.075);}.navbar .btn-navbar:hover,.navbar .btn-navbar:active,.navbar .btn-navbar.active,.navbar .btn-navbar.disabled,.navbar .btn-navbar[disabled]{color:#ffffff;background-color:#e5e5e5;*background-color:#d9d9d9;} .navbar .btn-navbar:active,.navbar .btn-navbar.active{background-color:#cccccc \9;} .navbar .btn-navbar .icon-bar{display:block;width:18px;height:2px;background-color:#f5f5f5;-webkit-border-radius:1px;-moz-border-radius:1px;border-radius:1px;-webkit-box-shadow:0 1px 0 rgba(0, 0, 0, 0.25);-moz-box-shadow:0 1px 0 rgba(0, 0, 0, 0.25);box-shadow:0 1px 0 rgba(0, 0, 0, 0.25);} .btn-navbar .icon-bar+.icon-bar{margin-top:3px;} .navbar .nav>li>.dropdown-menu:before{content:'';display:inline-block;border-left:7px solid transparent;border-right:7px solid transparent;border-bottom:7px solid #ccc;border-bottom-color:rgba(0, 0, 0, 0.2);position:absolute;top:-7px;left:9px;} .navbar .nav>li>.dropdown-menu:after{content:'';display:inline-block;border-left:6px solid transparent;border-right:6px solid transparent;border-bottom:6px solid #ffffff;position:absolute;top:-6px;left:10px;} .navbar-fixed-bottom .nav>li>.dropdown-menu:before{border-top:7px solid #ccc;border-top-color:rgba(0, 0, 0, 0.2);border-bottom:0;bottom:-7px;top:auto;} .navbar-fixed-bottom .nav>li>.dropdown-menu:after{border-top:6px solid #ffffff;border-bottom:0;bottom:-6px;top:auto;} .navbar .nav li.dropdown>a:hover .caret{border-top-color:#555555;border-bottom-color:#555555;} .navbar .nav li.dropdown.open>.dropdown-toggle,.navbar .nav li.dropdown.active>.dropdown-toggle,.navbar .nav li.dropdown.open.active>.dropdown-toggle{background-color:#e5e5e5;color:#555555;} .navbar .nav li.dropdown>.dropdown-toggle .caret{border-top-color:#777777;border-bottom-color:#777777;} .navbar .nav li.dropdown.open>.dropdown-toggle .caret,.navbar .nav li.dropdown.active>.dropdown-toggle .caret,.navbar .nav li.dropdown.open.active>.dropdown-toggle .caret{border-top-color:#555555;border-bottom-color:#555555;} .navbar .pull-right>li>.dropdown-menu,.navbar .nav>li>.dropdown-menu.pull-right{left:auto;right:0;}.navbar .pull-right>li>.dropdown-menu:before,.navbar .nav>li>.dropdown-menu.pull-right:before{left:auto;right:12px;} .navbar .pull-right>li>.dropdown-menu:after,.navbar .nav>li>.dropdown-menu.pull-right:after{left:auto;right:13px;} .navbar .pull-right>li>.dropdown-menu .dropdown-menu,.navbar .nav>li>.dropdown-menu.pull-right .dropdown-menu{left:auto;right:100%;margin-left:0;margin-right:-1px;-webkit-border-radius:6px 0 6px 6px;-moz-border-radius:6px 0 6px 6px;border-radius:6px 0 6px 6px;} .navbar-inverse .navbar-inner{background-color:#1b1b1b;background-image:-moz-linear-gradient(top, #222222, #111111);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#222222), to(#111111));background-image:-webkit-linear-gradient(top, #222222, #111111);background-image:-o-linear-gradient(top, #222222, #111111);background-image:linear-gradient(to bottom, #222222, #111111);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff222222', endColorstr='#ff111111', GradientType=0);border-color:#252525;} .navbar-inverse .brand,.navbar-inverse .nav>li>a{color:#999999;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);}.navbar-inverse .brand:hover,.navbar-inverse .nav>li>a:hover{color:#ffffff;} .navbar-inverse .brand{color:#999999;} .navbar-inverse .navbar-text{color:#999999;} .navbar-inverse .nav>li>a:focus,.navbar-inverse .nav>li>a:hover{background-color:transparent;color:#ffffff;} .navbar-inverse .nav .active>a,.navbar-inverse .nav .active>a:hover,.navbar-inverse .nav .active>a:focus{color:#ffffff;background-color:#111111;} .navbar-inverse .navbar-link{color:#999999;}.navbar-inverse .navbar-link:hover{color:#ffffff;} .navbar-inverse .divider-vertical{border-left-color:#111111;border-right-color:#222222;} .navbar-inverse .nav li.dropdown.open>.dropdown-toggle,.navbar-inverse .nav li.dropdown.active>.dropdown-toggle,.navbar-inverse .nav li.dropdown.open.active>.dropdown-toggle{background-color:#111111;color:#ffffff;} .navbar-inverse .nav li.dropdown>a:hover .caret{border-top-color:#ffffff;border-bottom-color:#ffffff;} .navbar-inverse .nav li.dropdown>.dropdown-toggle .caret{border-top-color:#999999;border-bottom-color:#999999;} .navbar-inverse .nav li.dropdown.open>.dropdown-toggle .caret,.navbar-inverse .nav li.dropdown.active>.dropdown-toggle .caret,.navbar-inverse .nav li.dropdown.open.active>.dropdown-toggle .caret{border-top-color:#ffffff;border-bottom-color:#ffffff;} .navbar-inverse .navbar-search .search-query{color:#ffffff;background-color:#515151;border-color:#111111;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.1), 0 1px 0 rgba(255,255,255,.15);-moz-box-shadow:inset 0 1px 2px rgba(0,0,0,.1), 0 1px 0 rgba(255,255,255,.15);box-shadow:inset 0 1px 2px rgba(0,0,0,.1), 0 1px 0 rgba(255,255,255,.15);-webkit-transition:none;-moz-transition:none;-o-transition:none;transition:none;}.navbar-inverse .navbar-search .search-query:-moz-placeholder{color:#cccccc;} .navbar-inverse .navbar-search .search-query:-ms-input-placeholder{color:#cccccc;} .navbar-inverse .navbar-search .search-query::-webkit-input-placeholder{color:#cccccc;} .navbar-inverse .navbar-search .search-query:focus,.navbar-inverse .navbar-search .search-query.focused{padding:5px 15px;color:#333333;text-shadow:0 1px 0 #ffffff;background-color:#ffffff;border:0;-webkit-box-shadow:0 0 3px rgba(0, 0, 0, 0.15);-moz-box-shadow:0 0 3px rgba(0, 0, 0, 0.15);box-shadow:0 0 3px rgba(0, 0, 0, 0.15);outline:0;} .navbar-inverse .btn-navbar{color:#ffffff;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);background-color:#0e0e0e;background-image:-moz-linear-gradient(top, #151515, #040404);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#151515), to(#040404));background-image:-webkit-linear-gradient(top, #151515, #040404);background-image:-o-linear-gradient(top, #151515, #040404);background-image:linear-gradient(to bottom, #151515, #040404);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff151515', endColorstr='#ff040404', GradientType=0);border-color:#040404 #040404 #000000;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);*background-color:#040404;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);}.navbar-inverse .btn-navbar:hover,.navbar-inverse .btn-navbar:active,.navbar-inverse .btn-navbar.active,.navbar-inverse .btn-navbar.disabled,.navbar-inverse .btn-navbar[disabled]{color:#ffffff;background-color:#040404;*background-color:#000000;} .navbar-inverse .btn-navbar:active,.navbar-inverse .btn-navbar.active{background-color:#000000 \9;} .breadcrumb{padding:8px 15px;margin:0 0 20px;list-style:none;background-color:#f5f5f5;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;}.breadcrumb>li{display:inline-block;*display:inline;*zoom:1;text-shadow:0 1px 0 #ffffff;}.breadcrumb>li>.divider{padding:0 5px;color:#ccc;} .breadcrumb>.active{color:#999999;} .pagination{margin:20px 0;} .pagination ul{display:inline-block;*display:inline;*zoom:1;margin-left:0;margin-bottom:0;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:0 1px 2px rgba(0, 0, 0, 0.05);-moz-box-shadow:0 1px 2px rgba(0, 0, 0, 0.05);box-shadow:0 1px 2px rgba(0, 0, 0, 0.05);} .pagination ul>li{display:inline;} .pagination ul>li>a,.pagination ul>li>span{float:left;padding:4px 12px;line-height:20px;text-decoration:none;background-color:#ffffff;border:1px solid #dddddd;border-left-width:0;} .pagination ul>li>a:hover,.pagination ul>.active>a,.pagination ul>.active>span{background-color:#f5f5f5;} .pagination ul>.active>a,.pagination ul>.active>span{color:#999999;cursor:default;} .pagination ul>.disabled>span,.pagination ul>.disabled>a,.pagination ul>.disabled>a:hover{color:#999999;background-color:transparent;cursor:default;} .pagination ul>li:first-child>a,.pagination ul>li:first-child>span{border-left-width:1px;-webkit-border-top-left-radius:4px;-moz-border-radius-topleft:4px;border-top-left-radius:4px;-webkit-border-bottom-left-radius:4px;-moz-border-radius-bottomleft:4px;border-bottom-left-radius:4px;} .pagination ul>li:last-child>a,.pagination ul>li:last-child>span{-webkit-border-top-right-radius:4px;-moz-border-radius-topright:4px;border-top-right-radius:4px;-webkit-border-bottom-right-radius:4px;-moz-border-radius-bottomright:4px;border-bottom-right-radius:4px;} .pagination-centered{text-align:center;} .pagination-right{text-align:right;} .pagination-large ul>li>a,.pagination-large ul>li>span{padding:11px 19px;font-size:17.5px;} .pagination-large ul>li:first-child>a,.pagination-large ul>li:first-child>span{-webkit-border-top-left-radius:6px;-moz-border-radius-topleft:6px;border-top-left-radius:6px;-webkit-border-bottom-left-radius:6px;-moz-border-radius-bottomleft:6px;border-bottom-left-radius:6px;} .pagination-large ul>li:last-child>a,.pagination-large ul>li:last-child>span{-webkit-border-top-right-radius:6px;-moz-border-radius-topright:6px;border-top-right-radius:6px;-webkit-border-bottom-right-radius:6px;-moz-border-radius-bottomright:6px;border-bottom-right-radius:6px;} .pagination-mini ul>li:first-child>a,.pagination-small ul>li:first-child>a,.pagination-mini ul>li:first-child>span,.pagination-small ul>li:first-child>span{-webkit-border-top-left-radius:3px;-moz-border-radius-topleft:3px;border-top-left-radius:3px;-webkit-border-bottom-left-radius:3px;-moz-border-radius-bottomleft:3px;border-bottom-left-radius:3px;} .pagination-mini ul>li:last-child>a,.pagination-small ul>li:last-child>a,.pagination-mini ul>li:last-child>span,.pagination-small ul>li:last-child>span{-webkit-border-top-right-radius:3px;-moz-border-radius-topright:3px;border-top-right-radius:3px;-webkit-border-bottom-right-radius:3px;-moz-border-radius-bottomright:3px;border-bottom-right-radius:3px;} .pagination-small ul>li>a,.pagination-small ul>li>span{padding:2px 10px;font-size:11.9px;} .pagination-mini ul>li>a,.pagination-mini ul>li>span{padding:0 6px;font-size:10.5px;} .pager{margin:20px 0;list-style:none;text-align:center;*zoom:1;}.pager:before,.pager:after{display:table;content:"";line-height:0;} .pager:after{clear:both;} .pager li{display:inline;} .pager li>a,.pager li>span{display:inline-block;padding:5px 14px;background-color:#fff;border:1px solid #ddd;-webkit-border-radius:15px;-moz-border-radius:15px;border-radius:15px;} .pager li>a:hover{text-decoration:none;background-color:#f5f5f5;} .pager .next>a,.pager .next>span{float:right;} .pager .previous>a,.pager .previous>span{float:left;} .pager .disabled>a,.pager .disabled>a:hover,.pager .disabled>span{color:#999999;background-color:#fff;cursor:default;} .thumbnails{margin-left:-20px;list-style:none;*zoom:1;}.thumbnails:before,.thumbnails:after{display:table;content:"";line-height:0;} .thumbnails:after{clear:both;} .row-fluid .thumbnails{margin-left:0;} .thumbnails>li{float:left;margin-bottom:20px;margin-left:20px;} .thumbnail{display:block;padding:4px;line-height:20px;border:1px solid #ddd;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:0 1px 3px rgba(0, 0, 0, 0.055);-moz-box-shadow:0 1px 3px rgba(0, 0, 0, 0.055);box-shadow:0 1px 3px rgba(0, 0, 0, 0.055);-webkit-transition:all 0.2s ease-in-out;-moz-transition:all 0.2s ease-in-out;-o-transition:all 0.2s ease-in-out;transition:all 0.2s ease-in-out;} a.thumbnail:hover{border-color:#0088cc;-webkit-box-shadow:0 1px 4px rgba(0, 105, 214, 0.25);-moz-box-shadow:0 1px 4px rgba(0, 105, 214, 0.25);box-shadow:0 1px 4px rgba(0, 105, 214, 0.25);} .thumbnail>img{display:block;max-width:100%;margin-left:auto;margin-right:auto;} .thumbnail .caption{padding:9px;color:#555555;} .alert{padding:8px 35px 8px 14px;margin-bottom:20px;text-shadow:0 1px 0 rgba(255, 255, 255, 0.5);background-color:#fcf8e3;border:1px solid #fbeed5;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;} .alert,.alert h4{color:#c09853;} .alert h4{margin:0;} .alert .close{position:relative;top:-2px;right:-21px;line-height:20px;} .alert-success{background-color:#dff0d8;border-color:#d6e9c6;color:#468847;} .alert-success h4{color:#468847;} .alert-danger,.alert-error{background-color:#f2dede;border-color:#eed3d7;color:#b94a48;} .alert-danger h4,.alert-error h4{color:#b94a48;} .alert-info{background-color:#d9edf7;border-color:#bce8f1;color:#3a87ad;} .alert-info h4{color:#3a87ad;} .alert-block{padding-top:14px;padding-bottom:14px;} .alert-block>p,.alert-block>ul{margin-bottom:0;} .alert-block p+p{margin-top:5px;} @-webkit-keyframes progress-bar-stripes{from{background-position:40px 0;} to{background-position:0 0;}}@-moz-keyframes progress-bar-stripes{from{background-position:40px 0;} to{background-position:0 0;}}@-ms-keyframes progress-bar-stripes{from{background-position:40px 0;} to{background-position:0 0;}}@-o-keyframes progress-bar-stripes{from{background-position:0 0;} to{background-position:40px 0;}}@keyframes progress-bar-stripes{from{background-position:40px 0;} to{background-position:0 0;}}.progress{overflow:hidden;height:20px;margin-bottom:20px;background-color:#f7f7f7;background-image:-moz-linear-gradient(top, #f5f5f5, #f9f9f9);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#f5f5f5), to(#f9f9f9));background-image:-webkit-linear-gradient(top, #f5f5f5, #f9f9f9);background-image:-o-linear-gradient(top, #f5f5f5, #f9f9f9);background-image:linear-gradient(to bottom, #f5f5f5, #f9f9f9);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#fff9f9f9', GradientType=0);-webkit-box-shadow:inset 0 1px 2px rgba(0, 0, 0, 0.1);-moz-box-shadow:inset 0 1px 2px rgba(0, 0, 0, 0.1);box-shadow:inset 0 1px 2px rgba(0, 0, 0, 0.1);-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;} .progress .bar{width:0%;height:100%;color:#ffffff;float:left;font-size:12px;text-align:center;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);background-color:#0e90d2;background-image:-moz-linear-gradient(top, #149bdf, #0480be);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#149bdf), to(#0480be));background-image:-webkit-linear-gradient(top, #149bdf, #0480be);background-image:-o-linear-gradient(top, #149bdf, #0480be);background-image:linear-gradient(to bottom, #149bdf, #0480be);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff149bdf', endColorstr='#ff0480be', GradientType=0);-webkit-box-shadow:inset 0 -1px 0 rgba(0, 0, 0, 0.15);-moz-box-shadow:inset 0 -1px 0 rgba(0, 0, 0, 0.15);box-shadow:inset 0 -1px 0 rgba(0, 0, 0, 0.15);-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;-webkit-transition:width 0.6s ease;-moz-transition:width 0.6s ease;-o-transition:width 0.6s ease;transition:width 0.6s ease;} .progress .bar+.bar{-webkit-box-shadow:inset 1px 0 0 rgba(0,0,0,.15), inset 0 -1px 0 rgba(0,0,0,.15);-moz-box-shadow:inset 1px 0 0 rgba(0,0,0,.15), inset 0 -1px 0 rgba(0,0,0,.15);box-shadow:inset 1px 0 0 rgba(0,0,0,.15), inset 0 -1px 0 rgba(0,0,0,.15);} .progress-striped .bar{background-color:#149bdf;background-image:-webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));background-image:-webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);-webkit-background-size:40px 40px;-moz-background-size:40px 40px;-o-background-size:40px 40px;background-size:40px 40px;} .progress.active .bar{-webkit-animation:progress-bar-stripes 2s linear infinite;-moz-animation:progress-bar-stripes 2s linear infinite;-ms-animation:progress-bar-stripes 2s linear infinite;-o-animation:progress-bar-stripes 2s linear infinite;animation:progress-bar-stripes 2s linear infinite;} .progress-danger .bar,.progress .bar-danger{background-color:#dd514c;background-image:-moz-linear-gradient(top, #ee5f5b, #c43c35);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#ee5f5b), to(#c43c35));background-image:-webkit-linear-gradient(top, #ee5f5b, #c43c35);background-image:-o-linear-gradient(top, #ee5f5b, #c43c35);background-image:linear-gradient(to bottom, #ee5f5b, #c43c35);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffee5f5b', endColorstr='#ffc43c35', GradientType=0);} .progress-danger.progress-striped .bar,.progress-striped .bar-danger{background-color:#ee5f5b;background-image:-webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));background-image:-webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);} .progress-success .bar,.progress .bar-success{background-color:#5eb95e;background-image:-moz-linear-gradient(top, #62c462, #57a957);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#62c462), to(#57a957));background-image:-webkit-linear-gradient(top, #62c462, #57a957);background-image:-o-linear-gradient(top, #62c462, #57a957);background-image:linear-gradient(to bottom, #62c462, #57a957);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff62c462', endColorstr='#ff57a957', GradientType=0);} .progress-success.progress-striped .bar,.progress-striped .bar-success{background-color:#62c462;background-image:-webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));background-image:-webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);} .progress-info .bar,.progress .bar-info{background-color:#4bb1cf;background-image:-moz-linear-gradient(top, #5bc0de, #339bb9);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#5bc0de), to(#339bb9));background-image:-webkit-linear-gradient(top, #5bc0de, #339bb9);background-image:-o-linear-gradient(top, #5bc0de, #339bb9);background-image:linear-gradient(to bottom, #5bc0de, #339bb9);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff339bb9', GradientType=0);} .progress-info.progress-striped .bar,.progress-striped .bar-info{background-color:#5bc0de;background-image:-webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));background-image:-webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);} .progress-warning .bar,.progress .bar-warning{background-color:#faa732;background-image:-moz-linear-gradient(top, #fbb450, #f89406);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#fbb450), to(#f89406));background-image:-webkit-linear-gradient(top, #fbb450, #f89406);background-image:-o-linear-gradient(top, #fbb450, #f89406);background-image:linear-gradient(to bottom, #fbb450, #f89406);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffbb450', endColorstr='#fff89406', GradientType=0);} .progress-warning.progress-striped .bar,.progress-striped .bar-warning{background-color:#fbb450;background-image:-webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));background-image:-webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);} .hero-unit{padding:60px;margin-bottom:30px;font-size:18px;font-weight:200;line-height:30px;color:inherit;background-color:#eeeeee;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;}.hero-unit h1{margin-bottom:0;font-size:60px;line-height:1;color:inherit;letter-spacing:-1px;} .hero-unit li{line-height:30px;} .media,.media-body{overflow:hidden;*overflow:visible;zoom:1;} .media,.media .media{margin-top:15px;} .media:first-child{margin-top:0;} .media-object{display:block;} .media-heading{margin:0 0 5px;} .media .pull-left{margin-right:10px;} .media .pull-right{margin-left:10px;} .media-list{margin-left:0;list-style:none;} .tooltip{position:absolute;z-index:1030;display:block;visibility:visible;padding:5px;font-size:11px;opacity:0;filter:alpha(opacity=0);}.tooltip.in{opacity:0.8;filter:alpha(opacity=80);} .tooltip.top{margin-top:-3px;} .tooltip.right{margin-left:3px;} .tooltip.bottom{margin-top:3px;} .tooltip.left{margin-left:-3px;} .tooltip-inner{max-width:200px;padding:3px 8px;color:#ffffff;text-align:center;text-decoration:none;background-color:#000000;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;} .tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid;} .tooltip.top .tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-width:5px 5px 0;border-top-color:#000000;} .tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#000000;} .tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-width:5px 0 5px 5px;border-left-color:#000000;} .tooltip.bottom .tooltip-arrow{top:0;left:50%;margin-left:-5px;border-width:0 5px 5px;border-bottom-color:#000000;} .popover{position:absolute;top:0;left:0;z-index:1010;display:none;width:236px;padding:1px;text-align:left;background-color:#ffffff;-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0, 0, 0, 0.2);-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0, 0, 0, 0.2);-moz-box-shadow:0 5px 10px rgba(0, 0, 0, 0.2);box-shadow:0 5px 10px rgba(0, 0, 0, 0.2);white-space:normal;}.popover.top{margin-top:-10px;} .popover.right{margin-left:10px;} .popover.bottom{margin-top:10px;} .popover.left{margin-left:-10px;} .popover-title{margin:0;padding:8px 14px;font-size:14px;font-weight:normal;line-height:18px;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;-webkit-border-radius:5px 5px 0 0;-moz-border-radius:5px 5px 0 0;border-radius:5px 5px 0 0;} .popover-content{padding:9px 14px;} .popover .arrow,.popover .arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid;} .popover .arrow{border-width:11px;} .popover .arrow:after{border-width:10px;content:"";} .popover.top .arrow{left:50%;margin-left:-11px;border-bottom-width:0;border-top-color:#999;border-top-color:rgba(0, 0, 0, 0.25);bottom:-11px;}.popover.top .arrow:after{bottom:1px;margin-left:-10px;border-bottom-width:0;border-top-color:#ffffff;} .popover.right .arrow{top:50%;left:-11px;margin-top:-11px;border-left-width:0;border-right-color:#999;border-right-color:rgba(0, 0, 0, 0.25);}.popover.right .arrow:after{left:1px;bottom:-10px;border-left-width:0;border-right-color:#ffffff;} .popover.bottom .arrow{left:50%;margin-left:-11px;border-top-width:0;border-bottom-color:#999;border-bottom-color:rgba(0, 0, 0, 0.25);top:-11px;}.popover.bottom .arrow:after{top:1px;margin-left:-10px;border-top-width:0;border-bottom-color:#ffffff;} .popover.left .arrow{top:50%;right:-11px;margin-top:-11px;border-right-width:0;border-left-color:#999;border-left-color:rgba(0, 0, 0, 0.25);}.popover.left .arrow:after{right:1px;border-right-width:0;border-left-color:#ffffff;bottom:-10px;} .modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040;background-color:#000000;}.modal-backdrop.fade{opacity:0;} .modal-backdrop,.modal-backdrop.fade.in{opacity:0.8;filter:alpha(opacity=80);} .modal{position:fixed;top:10%;left:50%;z-index:1050;width:560px;margin-left:-280px;background-color:#ffffff;border:1px solid #999;border:1px solid rgba(0, 0, 0, 0.3);*border:1px solid #999;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;-webkit-box-shadow:0 3px 7px rgba(0, 0, 0, 0.3);-moz-box-shadow:0 3px 7px rgba(0, 0, 0, 0.3);box-shadow:0 3px 7px rgba(0, 0, 0, 0.3);-webkit-background-clip:padding-box;-moz-background-clip:padding-box;background-clip:padding-box;outline:none;}.modal.fade{-webkit-transition:opacity .3s linear, top .3s ease-out;-moz-transition:opacity .3s linear, top .3s ease-out;-o-transition:opacity .3s linear, top .3s ease-out;transition:opacity .3s linear, top .3s ease-out;top:-25%;} .modal.fade.in{top:10%;} .modal-header{padding:9px 15px;border-bottom:1px solid #eee;}.modal-header .close{margin-top:2px;} .modal-header h3{margin:0;line-height:30px;} .modal-body{position:relative;overflow-y:auto;max-height:400px;padding:15px;} .modal-form{margin-bottom:0;} .modal-footer{padding:14px 15px 15px;margin-bottom:0;text-align:right;background-color:#f5f5f5;border-top:1px solid #ddd;-webkit-border-radius:0 0 6px 6px;-moz-border-radius:0 0 6px 6px;border-radius:0 0 6px 6px;-webkit-box-shadow:inset 0 1px 0 #ffffff;-moz-box-shadow:inset 0 1px 0 #ffffff;box-shadow:inset 0 1px 0 #ffffff;*zoom:1;}.modal-footer:before,.modal-footer:after{display:table;content:"";line-height:0;} .modal-footer:after{clear:both;} .modal-footer .btn+.btn{margin-left:5px;margin-bottom:0;} .modal-footer .btn-group .btn+.btn{margin-left:-1px;} .modal-footer .btn-block+.btn-block{margin-left:0;} .dropup,.dropdown{position:relative;} .dropdown-toggle{*margin-bottom:-3px;} .dropdown-toggle:active,.open .dropdown-toggle{outline:0;} .caret{display:inline-block;width:0;height:0;vertical-align:top;border-top:4px solid #000000;border-right:4px solid transparent;border-left:4px solid transparent;content:"";} .dropdown .caret{margin-top:8px;margin-left:2px;} .dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:160px;padding:5px 0;margin:2px 0 0;list-style:none;background-color:#ffffff;border:1px solid #ccc;border:1px solid rgba(0, 0, 0, 0.2);*border-right-width:2px;*border-bottom-width:2px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0, 0, 0, 0.2);-moz-box-shadow:0 5px 10px rgba(0, 0, 0, 0.2);box-shadow:0 5px 10px rgba(0, 0, 0, 0.2);-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box;}.dropdown-menu.pull-right{right:0;left:auto;} .dropdown-menu .divider{*width:100%;height:1px;margin:9px 1px;*margin:-5px 0 5px;overflow:hidden;background-color:#e5e5e5;border-bottom:1px solid #ffffff;} .dropdown-menu li>a{display:block;padding:3px 20px;clear:both;font-weight:normal;line-height:20px;color:#333333;white-space:nowrap;} .dropdown-menu li>a:hover,.dropdown-menu li>a:focus,.dropdown-submenu:hover>a{text-decoration:none;color:#ffffff;background-color:#0081c2;background-image:-moz-linear-gradient(top, #0088cc, #0077b3);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0077b3));background-image:-webkit-linear-gradient(top, #0088cc, #0077b3);background-image:-o-linear-gradient(top, #0088cc, #0077b3);background-image:linear-gradient(to bottom, #0088cc, #0077b3);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff0077b3', GradientType=0);} .dropdown-menu .active>a,.dropdown-menu .active>a:hover{color:#ffffff;text-decoration:none;outline:0;background-color:#0081c2;background-image:-moz-linear-gradient(top, #0088cc, #0077b3);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0077b3));background-image:-webkit-linear-gradient(top, #0088cc, #0077b3);background-image:-o-linear-gradient(top, #0088cc, #0077b3);background-image:linear-gradient(to bottom, #0088cc, #0077b3);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff0077b3', GradientType=0);} .dropdown-menu .disabled>a,.dropdown-menu .disabled>a:hover{color:#999999;} .dropdown-menu .disabled>a:hover{text-decoration:none;background-color:transparent;background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);cursor:default;} .open{*z-index:1000;}.open >.dropdown-menu{display:block;} .pull-right>.dropdown-menu{right:0;left:auto;} .dropup .caret,.navbar-fixed-bottom .dropdown .caret{border-top:0;border-bottom:4px solid #000000;content:"";} .dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:1px;} .dropdown-submenu{position:relative;} .dropdown-submenu>.dropdown-menu{top:0;left:100%;margin-top:-6px;margin-left:-1px;-webkit-border-radius:0 6px 6px 6px;-moz-border-radius:0 6px 6px 6px;border-radius:0 6px 6px 6px;} .dropdown-submenu:hover>.dropdown-menu{display:block;} .dropup .dropdown-submenu>.dropdown-menu{top:auto;bottom:0;margin-top:0;margin-bottom:-2px;-webkit-border-radius:5px 5px 5px 0;-moz-border-radius:5px 5px 5px 0;border-radius:5px 5px 5px 0;} .dropdown-submenu>a:after{display:block;content:" ";float:right;width:0;height:0;border-color:transparent;border-style:solid;border-width:5px 0 5px 5px;border-left-color:#cccccc;margin-top:5px;margin-right:-10px;} .dropdown-submenu:hover>a:after{border-left-color:#ffffff;} .dropdown-submenu.pull-left{float:none;}.dropdown-submenu.pull-left>.dropdown-menu{left:-100%;margin-left:10px;-webkit-border-radius:6px 0 6px 6px;-moz-border-radius:6px 0 6px 6px;border-radius:6px 0 6px 6px;} .dropdown .dropdown-menu .nav-header{padding-left:20px;padding-right:20px;} .typeahead{z-index:1051;margin-top:2px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;} .accordion{margin-bottom:20px;} .accordion-group{margin-bottom:2px;border:1px solid #e5e5e5;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;} .accordion-heading{border-bottom:0;} .accordion-heading .accordion-toggle{display:block;padding:8px 15px;} .accordion-toggle{cursor:pointer;} .accordion-inner{padding:9px 15px;border-top:1px solid #e5e5e5;} .carousel{position:relative;margin-bottom:20px;line-height:1;} .carousel-inner{overflow:hidden;width:100%;position:relative;} .carousel-inner>.item{display:none;position:relative;-webkit-transition:0.6s ease-in-out left;-moz-transition:0.6s ease-in-out left;-o-transition:0.6s ease-in-out left;transition:0.6s ease-in-out left;} .carousel-inner>.item>img{display:block;line-height:1;} .carousel-inner>.active,.carousel-inner>.next,.carousel-inner>.prev{display:block;} .carousel-inner>.active{left:0;} .carousel-inner>.next,.carousel-inner>.prev{position:absolute;top:0;width:100%;} .carousel-inner>.next{left:100%;} .carousel-inner>.prev{left:-100%;} .carousel-inner>.next.left,.carousel-inner>.prev.right{left:0;} .carousel-inner>.active.left{left:-100%;} .carousel-inner>.active.right{left:100%;} .carousel-control{position:absolute;top:40%;left:15px;width:40px;height:40px;margin-top:-20px;font-size:60px;font-weight:100;line-height:30px;color:#ffffff;text-align:center;background:#222222;border:3px solid #ffffff;-webkit-border-radius:23px;-moz-border-radius:23px;border-radius:23px;opacity:0.5;filter:alpha(opacity=50);}.carousel-control.right{left:auto;right:15px;} .carousel-control:hover{color:#ffffff;text-decoration:none;opacity:0.9;filter:alpha(opacity=90);} .carousel-caption{position:absolute;left:0;right:0;bottom:0;padding:15px;background:#333333;background:rgba(0, 0, 0, 0.75);} .carousel-caption h4,.carousel-caption p{color:#ffffff;line-height:20px;} .carousel-caption h4{margin:0 0 5px;} .carousel-caption p{margin-bottom:0;} .well{min-height:20px;padding:19px;margin-bottom:20px;background-color:#f5f5f5;border:1px solid #e3e3e3;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.05);-moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.05);box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.05);}.well blockquote{border-color:#ddd;border-color:rgba(0, 0, 0, 0.15);} .well-large{padding:24px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;} .well-small{padding:9px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;} .close{float:right;font-size:20px;font-weight:bold;line-height:20px;color:#000000;text-shadow:0 1px 0 #ffffff;opacity:0.2;filter:alpha(opacity=20);}.close:hover{color:#000000;text-decoration:none;cursor:pointer;opacity:0.4;filter:alpha(opacity=40);} button.close{padding:0;cursor:pointer;background:transparent;border:0;-webkit-appearance:none;} .pull-right{float:right;} .pull-left{float:left;} .hide{display:none;} .show{display:block;} .invisible{visibility:hidden;} .affix{position:fixed;} .fade{opacity:0;-webkit-transition:opacity 0.15s linear;-moz-transition:opacity 0.15s linear;-o-transition:opacity 0.15s linear;transition:opacity 0.15s linear;}.fade.in{opacity:1;} .collapse{position:relative;height:0;overflow:hidden;-webkit-transition:height 0.35s ease;-moz-transition:height 0.35s ease;-o-transition:height 0.35s ease;transition:height 0.35s ease;}.collapse.in{height:auto;} .hidden{display:none;visibility:hidden;} .visible-phone{display:none !important;} .visible-tablet{display:none !important;} .hidden-desktop{display:none !important;} .visible-desktop{display:inherit !important;} @media (min-width:768px) and (max-width:979px){.hidden-desktop{display:inherit !important;} .visible-desktop{display:none !important ;} .visible-tablet{display:inherit !important;} .hidden-tablet{display:none !important;}}@media (max-width:767px){.hidden-desktop{display:inherit !important;} .visible-desktop{display:none !important;} .visible-phone{display:inherit !important;} .hidden-phone{display:none !important;}}@media (max-width:767px){body{padding-left:20px;padding-right:20px;} .navbar-fixed-top,.navbar-fixed-bottom,.navbar-static-top{margin-left:-20px;margin-right:-20px;} .container-fluid{padding:0;} .dl-horizontal dt{float:none;clear:none;width:auto;text-align:left;} .dl-horizontal dd{margin-left:0;} .container{width:auto;} .row-fluid{width:100%;} .row,.thumbnails{margin-left:0;} .thumbnails>li{float:none;margin-left:0;} [class*="span"],.uneditable-input[class*="span"],.row-fluid [class*="span"]{float:none;display:block;width:100%;margin-left:0;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;} .span12,.row-fluid .span12{width:100%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;} .row-fluid [class*="offset"]:first-child{margin-left:0;} .input-large,.input-xlarge,.input-xxlarge,input[class*="span"],select[class*="span"],textarea[class*="span"],.uneditable-input{display:block;width:100%;min-height:30px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;} .input-prepend input,.input-append input,.input-prepend input[class*="span"],.input-append input[class*="span"]{display:inline-block;width:auto;} .controls-row [class*="span"]+[class*="span"]{margin-left:0;} .modal{position:fixed;top:20px;left:20px;right:20px;width:auto;margin:0;}.modal.fade{top:-100px;} .modal.fade.in{top:20px;}}@media (max-width:480px){.nav-collapse{-webkit-transform:translate3d(0, 0, 0);} .page-header h1 small{display:block;line-height:20px;} input[type="checkbox"],input[type="radio"]{border:1px solid #ccc;} .form-horizontal .control-label{float:none;width:auto;padding-top:0;text-align:left;} .form-horizontal .controls{margin-left:0;} .form-horizontal .control-list{padding-top:0;} .form-horizontal .form-actions{padding-left:10px;padding-right:10px;} .media .pull-left,.media .pull-right{float:none;display:block;margin-bottom:10px;} .media-object{margin-right:0;margin-left:0;} .modal{top:10px;left:10px;right:10px;} .modal-header .close{padding:10px;margin:-10px;} .carousel-caption{position:static;}}@media (min-width:768px) and (max-width:979px){.row{margin-left:-20px;*zoom:1;}.row:before,.row:after{display:table;content:"";line-height:0;} .row:after{clear:both;} [class*="span"]{float:left;min-height:1px;margin-left:20px;} .container,.navbar-static-top .container,.navbar-fixed-top .container,.navbar-fixed-bottom .container{width:724px;} .span12{width:724px;} .span11{width:662px;} .span10{width:600px;} .span9{width:538px;} .span8{width:476px;} .span7{width:414px;} .span6{width:352px;} .span5{width:290px;} .span4{width:228px;} .span3{width:166px;} .span2{width:104px;} .span1{width:42px;} .offset12{margin-left:764px;} .offset11{margin-left:702px;} .offset10{margin-left:640px;} .offset9{margin-left:578px;} .offset8{margin-left:516px;} .offset7{margin-left:454px;} .offset6{margin-left:392px;} .offset5{margin-left:330px;} .offset4{margin-left:268px;} .offset3{margin-left:206px;} .offset2{margin-left:144px;} .offset1{margin-left:82px;} .row-fluid{width:100%;*zoom:1;}.row-fluid:before,.row-fluid:after{display:table;content:"";line-height:0;} .row-fluid:after{clear:both;} .row-fluid [class*="span"]{display:block;width:100%;min-height:30px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;float:left;margin-left:2.7624309392265194%;*margin-left:2.709239449864817%;} .row-fluid [class*="span"]:first-child{margin-left:0;} .row-fluid .controls-row [class*="span"]+[class*="span"]{margin-left:2.7624309392265194%;} .row-fluid .span12{width:100%;*width:99.94680851063829%;} .row-fluid .span11{width:91.43646408839778%;*width:91.38327259903608%;} .row-fluid .span10{width:82.87292817679558%;*width:82.81973668743387%;} .row-fluid .span9{width:74.30939226519337%;*width:74.25620077583166%;} .row-fluid .span8{width:65.74585635359117%;*width:65.69266486422946%;} .row-fluid .span7{width:57.18232044198895%;*width:57.12912895262725%;} .row-fluid .span6{width:48.61878453038674%;*width:48.56559304102504%;} .row-fluid .span5{width:40.05524861878453%;*width:40.00205712942283%;} .row-fluid .span4{width:31.491712707182323%;*width:31.43852121782062%;} .row-fluid .span3{width:22.92817679558011%;*width:22.87498530621841%;} .row-fluid .span2{width:14.3646408839779%;*width:14.311449394616199%;} .row-fluid .span1{width:5.801104972375691%;*width:5.747913483013988%;} .row-fluid .offset12{margin-left:105.52486187845304%;*margin-left:105.41847889972962%;} .row-fluid .offset12:first-child{margin-left:102.76243093922652%;*margin-left:102.6560479605031%;} .row-fluid .offset11{margin-left:96.96132596685082%;*margin-left:96.8549429881274%;} .row-fluid .offset11:first-child{margin-left:94.1988950276243%;*margin-left:94.09251204890089%;} .row-fluid .offset10{margin-left:88.39779005524862%;*margin-left:88.2914070765252%;} .row-fluid .offset10:first-child{margin-left:85.6353591160221%;*margin-left:85.52897613729868%;} .row-fluid .offset9{margin-left:79.8342541436464%;*margin-left:79.72787116492299%;} .row-fluid .offset9:first-child{margin-left:77.07182320441989%;*margin-left:76.96544022569647%;} .row-fluid .offset8{margin-left:71.2707182320442%;*margin-left:71.16433525332079%;} .row-fluid .offset8:first-child{margin-left:68.50828729281768%;*margin-left:68.40190431409427%;} .row-fluid .offset7{margin-left:62.70718232044199%;*margin-left:62.600799341718584%;} .row-fluid .offset7:first-child{margin-left:59.94475138121547%;*margin-left:59.838368402492065%;} .row-fluid .offset6{margin-left:54.14364640883978%;*margin-left:54.037263430116376%;} .row-fluid .offset6:first-child{margin-left:51.38121546961326%;*margin-left:51.27483249088986%;} .row-fluid .offset5{margin-left:45.58011049723757%;*margin-left:45.47372751851417%;} .row-fluid .offset5:first-child{margin-left:42.81767955801105%;*margin-left:42.71129657928765%;} .row-fluid .offset4{margin-left:37.01657458563536%;*margin-left:36.91019160691196%;} .row-fluid .offset4:first-child{margin-left:34.25414364640884%;*margin-left:34.14776066768544%;} .row-fluid .offset3{margin-left:28.45303867403315%;*margin-left:28.346655695309746%;} .row-fluid .offset3:first-child{margin-left:25.69060773480663%;*margin-left:25.584224756083227%;} .row-fluid .offset2{margin-left:19.88950276243094%;*margin-left:19.783119783707537%;} .row-fluid .offset2:first-child{margin-left:17.12707182320442%;*margin-left:17.02068884448102%;} .row-fluid .offset1{margin-left:11.32596685082873%;*margin-left:11.219583872105325%;} .row-fluid .offset1:first-child{margin-left:8.56353591160221%;*margin-left:8.457152932878806%;} input,textarea,.uneditable-input{margin-left:0;} .controls-row [class*="span"]+[class*="span"]{margin-left:20px;} input.span12, textarea.span12, .uneditable-input.span12{width:710px;} input.span11, textarea.span11, .uneditable-input.span11{width:648px;} input.span10, textarea.span10, .uneditable-input.span10{width:586px;} input.span9, textarea.span9, .uneditable-input.span9{width:524px;} input.span8, textarea.span8, .uneditable-input.span8{width:462px;} input.span7, textarea.span7, .uneditable-input.span7{width:400px;} input.span6, textarea.span6, .uneditable-input.span6{width:338px;} input.span5, textarea.span5, .uneditable-input.span5{width:276px;} input.span4, textarea.span4, .uneditable-input.span4{width:214px;} input.span3, textarea.span3, .uneditable-input.span3{width:152px;} input.span2, textarea.span2, .uneditable-input.span2{width:90px;} input.span1, textarea.span1, .uneditable-input.span1{width:28px;}}@media (min-width:1200px){.row{margin-left:-30px;*zoom:1;}.row:before,.row:after{display:table;content:"";line-height:0;} .row:after{clear:both;} [class*="span"]{float:left;min-height:1px;margin-left:30px;} .container,.navbar-static-top .container,.navbar-fixed-top .container,.navbar-fixed-bottom .container{width:1170px;} .span12{width:1170px;} .span11{width:1070px;} .span10{width:970px;} .span9{width:870px;} .span8{width:770px;} .span7{width:670px;} .span6{width:570px;} .span5{width:470px;} .span4{width:370px;} .span3{width:270px;} .span2{width:170px;} .span1{width:70px;} .offset12{margin-left:1230px;} .offset11{margin-left:1130px;} .offset10{margin-left:1030px;} .offset9{margin-left:930px;} .offset8{margin-left:830px;} .offset7{margin-left:730px;} .offset6{margin-left:630px;} .offset5{margin-left:530px;} .offset4{margin-left:430px;} .offset3{margin-left:330px;} .offset2{margin-left:230px;} .offset1{margin-left:130px;} .row-fluid{width:100%;*zoom:1;}.row-fluid:before,.row-fluid:after{display:table;content:"";line-height:0;} .row-fluid:after{clear:both;} .row-fluid [class*="span"]{display:block;width:100%;min-height:30px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;float:left;margin-left:2.564102564102564%;*margin-left:2.5109110747408616%;} .row-fluid [class*="span"]:first-child{margin-left:0;} .row-fluid .controls-row [class*="span"]+[class*="span"]{margin-left:2.564102564102564%;} .row-fluid .span12{width:100%;*width:99.94680851063829%;} .row-fluid .span11{width:91.45299145299145%;*width:91.39979996362975%;} .row-fluid .span10{width:82.90598290598291%;*width:82.8527914166212%;} .row-fluid .span9{width:74.35897435897436%;*width:74.30578286961266%;} .row-fluid .span8{width:65.81196581196582%;*width:65.75877432260411%;} .row-fluid .span7{width:57.26495726495726%;*width:57.21176577559556%;} .row-fluid .span6{width:48.717948717948715%;*width:48.664757228587014%;} .row-fluid .span5{width:40.17094017094017%;*width:40.11774868157847%;} .row-fluid .span4{width:31.623931623931625%;*width:31.570740134569924%;} .row-fluid .span3{width:23.076923076923077%;*width:23.023731587561375%;} .row-fluid .span2{width:14.52991452991453%;*width:14.476723040552828%;} .row-fluid .span1{width:5.982905982905983%;*width:5.929714493544281%;} .row-fluid .offset12{margin-left:105.12820512820512%;*margin-left:105.02182214948171%;} .row-fluid .offset12:first-child{margin-left:102.56410256410257%;*margin-left:102.45771958537915%;} .row-fluid .offset11{margin-left:96.58119658119658%;*margin-left:96.47481360247316%;} .row-fluid .offset11:first-child{margin-left:94.01709401709402%;*margin-left:93.91071103837061%;} .row-fluid .offset10{margin-left:88.03418803418803%;*margin-left:87.92780505546462%;} .row-fluid .offset10:first-child{margin-left:85.47008547008548%;*margin-left:85.36370249136206%;} .row-fluid .offset9{margin-left:79.48717948717949%;*margin-left:79.38079650845607%;} .row-fluid .offset9:first-child{margin-left:76.92307692307693%;*margin-left:76.81669394435352%;} .row-fluid .offset8{margin-left:70.94017094017094%;*margin-left:70.83378796144753%;} .row-fluid .offset8:first-child{margin-left:68.37606837606839%;*margin-left:68.26968539734497%;} .row-fluid .offset7{margin-left:62.393162393162385%;*margin-left:62.28677941443899%;} .row-fluid .offset7:first-child{margin-left:59.82905982905982%;*margin-left:59.72267685033642%;} .row-fluid .offset6{margin-left:53.84615384615384%;*margin-left:53.739770867430444%;} .row-fluid .offset6:first-child{margin-left:51.28205128205128%;*margin-left:51.175668303327875%;} .row-fluid .offset5{margin-left:45.299145299145295%;*margin-left:45.1927623204219%;} .row-fluid .offset5:first-child{margin-left:42.73504273504273%;*margin-left:42.62865975631933%;} .row-fluid .offset4{margin-left:36.75213675213675%;*margin-left:36.645753773413354%;} .row-fluid .offset4:first-child{margin-left:34.18803418803419%;*margin-left:34.081651209310785%;} .row-fluid .offset3{margin-left:28.205128205128204%;*margin-left:28.0987452264048%;} .row-fluid .offset3:first-child{margin-left:25.641025641025642%;*margin-left:25.53464266230224%;} .row-fluid .offset2{margin-left:19.65811965811966%;*margin-left:19.551736679396257%;} .row-fluid .offset2:first-child{margin-left:17.094017094017094%;*margin-left:16.98763411529369%;} .row-fluid .offset1{margin-left:11.11111111111111%;*margin-left:11.004728132387708%;} .row-fluid .offset1:first-child{margin-left:8.547008547008547%;*margin-left:8.440625568285142%;} input,textarea,.uneditable-input{margin-left:0;} .controls-row [class*="span"]+[class*="span"]{margin-left:30px;} input.span12, textarea.span12, .uneditable-input.span12{width:1156px;} input.span11, textarea.span11, .uneditable-input.span11{width:1056px;} input.span10, textarea.span10, .uneditable-input.span10{width:956px;} input.span9, textarea.span9, .uneditable-input.span9{width:856px;} input.span8, textarea.span8, .uneditable-input.span8{width:756px;} input.span7, textarea.span7, .uneditable-input.span7{width:656px;} input.span6, textarea.span6, .uneditable-input.span6{width:556px;} input.span5, textarea.span5, .uneditable-input.span5{width:456px;} input.span4, textarea.span4, .uneditable-input.span4{width:356px;} input.span3, textarea.span3, .uneditable-input.span3{width:256px;} input.span2, textarea.span2, .uneditable-input.span2{width:156px;} input.span1, textarea.span1, .uneditable-input.span1{width:56px;} .thumbnails{margin-left:-30px;} .thumbnails>li{margin-left:30px;} .row-fluid .thumbnails{margin-left:0;}}@media (max-width:979px){body{padding-top:0;} .navbar-fixed-top,.navbar-fixed-bottom{position:static;} .navbar-fixed-top{margin-bottom:20px;} .navbar-fixed-bottom{margin-top:20px;} .navbar-fixed-top .navbar-inner,.navbar-fixed-bottom .navbar-inner{padding:5px;} .navbar .container{width:auto;padding:0;} .navbar .brand{padding-left:10px;padding-right:10px;margin:0 0 0 -5px;} .nav-collapse{clear:both;} .nav-collapse .nav{float:none;margin:0 0 10px;} .nav-collapse .nav>li{float:none;} .nav-collapse .nav>li>a{margin-bottom:2px;} .nav-collapse .nav>.divider-vertical{display:none;} .nav-collapse .nav .nav-header{color:#777777;text-shadow:none;} .nav-collapse .nav>li>a,.nav-collapse .dropdown-menu a{padding:9px 15px;font-weight:bold;color:#777777;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;} .nav-collapse .btn{padding:4px 10px 4px;font-weight:normal;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;} .nav-collapse .dropdown-menu li+li a{margin-bottom:2px;} .nav-collapse .nav>li>a:hover,.nav-collapse .dropdown-menu a:hover{background-color:#f2f2f2;} .navbar-inverse .nav-collapse .nav>li>a,.navbar-inverse .nav-collapse .dropdown-menu a{color:#999999;} .navbar-inverse .nav-collapse .nav>li>a:hover,.navbar-inverse .nav-collapse .dropdown-menu a:hover{background-color:#111111;} .nav-collapse.in .btn-group{margin-top:5px;padding:0;} .nav-collapse .dropdown-menu{position:static;top:auto;left:auto;float:none;display:none;max-width:none;margin:0 15px;padding:0;background-color:transparent;border:none;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;} .nav-collapse .open>.dropdown-menu{display:block;} .nav-collapse .dropdown-menu:before,.nav-collapse .dropdown-menu:after{display:none;} .nav-collapse .dropdown-menu .divider{display:none;} .nav-collapse .nav>li>.dropdown-menu:before,.nav-collapse .nav>li>.dropdown-menu:after{display:none;} .nav-collapse .navbar-form,.nav-collapse .navbar-search{float:none;padding:10px 15px;margin:10px 0;border-top:1px solid #f2f2f2;border-bottom:1px solid #f2f2f2;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.1);-moz-box-shadow:inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.1);box-shadow:inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.1);} .navbar-inverse .nav-collapse .navbar-form,.navbar-inverse .nav-collapse .navbar-search{border-top-color:#111111;border-bottom-color:#111111;} .navbar .nav-collapse .nav.pull-right{float:none;margin-left:0;} .nav-collapse,.nav-collapse.collapse{overflow:hidden;height:0;} .navbar .btn-navbar{display:block;} .navbar-static .navbar-inner{padding-left:10px;padding-right:10px;}}@media (min-width:980px){.nav-collapse.collapse{height:auto !important;overflow:visible !important;}} |
| URL | http://zero.webappsecurity.com/resources/css/font-awesome.css |
| Method | GET |
| Parameter | |
| Attack | TRACE, OPTIONS methods with 'Max-Forwards' header. TRACK method. |
| Evidence | |
| Request Header - size: 285 bytes. |
GET http://zero.webappsecurity.com/resources/css/font-awesome.css HTTP/1.1
Host: zero.webappsecurity.com User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0 Pragma: no-cache Cache-Control: no-cache Referer: http://zero.webappsecurity.com |
| Request Body - size: 0 bytes. |
|
| Response Header - size: 347 bytes. |
HTTP/1.1 200 OK
Date: Mon, 14 Mar 2022 07:13:41 GMT Server: Apache-Coyote/1.1 Access-Control-Allow-Origin: * Accept-Ranges: bytes ETag: W/"21752-1360580252000" Last-Modified: Mon, 11 Feb 2013 10:57:32 GMT Cache-Control: max-age=2678400 Expires: Thu, 14 Apr 2022 07:13:42 GMT Content-Type: text/css;charset=UTF-8 Content-Length: 21752 |
| Response Body - size: 21,752 bytes. |
/*!
* Font Awesome 3.0.2 * the iconic font designed for use with Twitter Bootstrap * ------------------------------------------------------- * The full suite of pictographic icons, examples, and documentation * can be found at: http://fortawesome.github.com/Font-Awesome/ * * License * ------------------------------------------------------- * - The Font Awesome font is licensed under the SIL Open Font License - http://scripts.sil.org/OFL * - Font Awesome CSS, LESS, and SASS files are licensed under the MIT License - * http://opensource.org/licenses/mit-license.html * - The Font Awesome pictograms are licensed under the CC BY 3.0 License - http://creativecommons.org/licenses/by/3.0/ * - Attribution is no longer required in Font Awesome 3.0, but much appreciated: * "Font Awesome by Dave Gandy - http://fortawesome.github.com/Font-Awesome" * Contact * ------------------------------------------------------- * Email: dave@davegandy.com * Twitter: http://twitter.com/fortaweso_me * Work: Lead Product Designer @ http://kyruus.com */ @font-face { font-family: 'FontAwesome'; src: url('../font/fontawesome-webfont.eot?v=3.0.1'); src: url('../font/fontawesome-webfont.eot?#iefix&v=3.0.1') format('embedded-opentype'), url('../font/fontawesome-webfont.woff?v=3.0.1') format('woff'), url('../font/fontawesome-webfont.ttf?v=3.0.1') format('truetype'); font-weight: normal; font-style: normal; } /* Font Awesome styles ------------------------------------------------------- */ [class^="icon-"], [class*=" icon-"] { font-family: FontAwesome; font-weight: normal; font-style: normal; text-decoration: inherit; -webkit-font-smoothing: antialiased; /* sprites.less reset */ display: inline; width: auto; height: auto; line-height: normal; vertical-align: baseline; background-image: none; background-position: 0% 0%; background-repeat: repeat; margin-top: 0; } /* more sprites.less reset */ .icon-white, .nav-pills > .active > a > [class^="icon-"], .nav-pills > .active > a > [class*=" icon-"], .nav-list > .active > a > [class^="icon-"], .nav-list > .active > a > [class*=" icon-"], .navbar-inverse .nav > .active > a > [class^="icon-"], .navbar-inverse .nav > .active > a > [class*=" icon-"], .dropdown-menu > li > a:hover > [class^="icon-"], .dropdown-menu > li > a:hover > [class*=" icon-"], .dropdown-menu > .active > a > [class^="icon-"], .dropdown-menu > .active > a > [class*=" icon-"], .dropdown-submenu:hover > a > [class^="icon-"], .dropdown-submenu:hover > a > [class*=" icon-"] { background-image: none; } [class^="icon-"]:before, [class*=" icon-"]:before { text-decoration: inherit; display: inline-block; speak: none; } /* makes sure icons active on rollover in links */ a [class^="icon-"], a [class*=" icon-"] { display: inline-block; } /* makes the font 33% larger relative to the icon container */ .icon-large:before { vertical-align: -10%; font-size: 1.3333333333333333em; } .btn [class^="icon-"], .nav [class^="icon-"], .btn [class*=" icon-"], .nav [class*=" icon-"] { display: inline; /* keeps button heights with and without icons the same */ } .btn [class^="icon-"].icon-large, .nav [class^="icon-"].icon-large, .btn [class*=" icon-"].icon-large, .nav [class*=" icon-"].icon-large { line-height: .9em; } .btn [class^="icon-"].icon-spin, .nav [class^="icon-"].icon-spin, .btn [class*=" icon-"].icon-spin, .nav [class*=" icon-"].icon-spin { display: inline-block; } .nav-tabs [class^="icon-"], .nav-pills [class^="icon-"], .nav-tabs [class*=" icon-"], .nav-pills [class*=" icon-"] { /* keeps button heights with and without icons the same */ } .nav-tabs [class^="icon-"], .nav-pills [class^="icon-"], .nav-tabs [class*=" icon-"], .nav-pills [class*=" icon-"], .nav-tabs [class^="icon-"].icon-large, .nav-pills [class^="icon-"].icon-large, .nav-tabs [class*=" icon-"].icon-large, .nav-pills [class*=" icon-"].icon-large { line-height: .9em; } li [class^="icon-"], .nav li [class^="icon-"], li [class*=" icon-"], .nav li [class*=" icon-"] { display: inline-block; width: 1.25em; text-align: center; } li [class^="icon-"].icon-large, .nav li [class^="icon-"].icon-large, li [class*=" icon-"].icon-large, .nav li [class*=" icon-"].icon-large { /* increased font size for icon-large */ width: 1.5625em; } ul.icons { list-style-type: none; text-indent: -0.75em; } ul.icons li [class^="icon-"], ul.icons li [class*=" icon-"] { width: .75em; } .icon-muted { color: #eeeeee; } .icon-border { border: solid 1px #eeeeee; padding: .2em .25em .15em; -webkit-border-radius: 3px; -moz-border-radius: 3px; border-radius: 3px; } .icon-2x { font-size: 2em; } .icon-2x.icon-border { border-width: 2px; -webkit-border-radius: 4px; -moz-border-radius: 4px; border-radius: 4px; } .icon-3x { font-size: 3em; } .icon-3x.icon-border { border-width: 3px; -webkit-border-radius: 5px; -moz-border-radius: 5px; border-radius: 5px; } .icon-4x { font-size: 4em; } .icon-4x.icon-border { border-width: 4px; -webkit-border-radius: 6px; -moz-border-radius: 6px; border-radius: 6px; } .pull-right { float: right; } .pull-left { float: left; } [class^="icon-"].pull-left, [class*=" icon-"].pull-left { margin-right: .3em; } [class^="icon-"].pull-right, [class*=" icon-"].pull-right { margin-left: .3em; } .btn [class^="icon-"].pull-left.icon-2x, .btn [class*=" icon-"].pull-left.icon-2x, .btn [class^="icon-"].pull-right.icon-2x, .btn [class*=" icon-"].pull-right.icon-2x { margin-top: .18em; } .btn [class^="icon-"].icon-spin.icon-large, .btn [class*=" icon-"].icon-spin.icon-large { line-height: .8em; } .btn.btn-small [class^="icon-"].pull-left.icon-2x, .btn.btn-small [class*=" icon-"].pull-left.icon-2x, .btn.btn-small [class^="icon-"].pull-right.icon-2x, .btn.btn-small [class*=" icon-"].pull-right.icon-2x { margin-top: .25em; } .btn.btn-large [class^="icon-"], .btn.btn-large [class*=" icon-"] { margin-top: 0; } .btn.btn-large [class^="icon-"].pull-left.icon-2x, .btn.btn-large [class*=" icon-"].pull-left.icon-2x, .btn.btn-large [class^="icon-"].pull-right.icon-2x, .btn.btn-large [class*=" icon-"].pull-right.icon-2x { margin-top: .05em; } .btn.btn-large [class^="icon-"].pull-left.icon-2x, .btn.btn-large [class*=" icon-"].pull-left.icon-2x { margin-right: .2em; } .btn.btn-large [class^="icon-"].pull-right.icon-2x, .btn.btn-large [class*=" icon-"].pull-right.icon-2x { margin-left: .2em; } .icon-spin { display: inline-block; -moz-animation: spin 2s infinite linear; -o-animation: spin 2s infinite linear; -webkit-animation: spin 2s infinite linear; animation: spin 2s infinite linear; } @-moz-keyframes spin { 0% { -moz-transform: rotate(0deg); } 100% { -moz-transform: rotate(359deg); } } @-webkit-keyframes spin { 0% { -webkit-transform: rotate(0deg); } 100% { -webkit-transform: rotate(359deg); } } @-o-keyframes spin { 0% { -o-transform: rotate(0deg); } 100% { -o-transform: rotate(359deg); } } @-ms-keyframes spin { 0% { -ms-transform: rotate(0deg); } 100% { -ms-transform: rotate(359deg); } } @keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(359deg); } } @-moz-document url-prefix() { .icon-spin { height: .9em; } .btn .icon-spin { height: auto; } .icon-spin.icon-large { height: 1.25em; } .btn .icon-spin.icon-large { height: .75em; } } /* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen readers do not read off random characters that represent icons */ .icon-glass:before { content: "\f000"; } .icon-music:before { content: "\f001"; } .icon-search:before { content: "\f002"; } .icon-envelope:before { content: "\f003"; } .icon-heart:before { content: "\f004"; } .icon-star:before { content: "\f005"; } .icon-star-empty:before { content: "\f006"; } .icon-user:before { content: "\f007"; } .icon-film:before { content: "\f008"; } .icon-th-large:before { content: "\f009"; } .icon-th:before { content: "\f00a"; } .icon-th-list:before { content: "\f00b"; } .icon-ok:before { content: "\f00c"; } .icon-remove:before { content: "\f00d"; } .icon-zoom-in:before { content: "\f00e"; } .icon-zoom-out:before { content: "\f010"; } .icon-off:before { content: "\f011"; } .icon-signal:before { content: "\f012"; } .icon-cog:before { content: "\f013"; } .icon-trash:before { content: "\f014"; } .icon-home:before { content: "\f015"; } .icon-file:before { content: "\f016"; } .icon-time:before { content: "\f017"; } .icon-road:before { content: "\f018"; } .icon-download-alt:before { content: "\f019"; } .icon-download:before { content: "\f01a"; } .icon-upload:before { content: "\f01b"; } .icon-inbox:before { content: "\f01c"; } .icon-play-circle:before { content: "\f01d"; } .icon-repeat:before { content: "\f01e"; } /* \f020 doesn't work in Safari. all shifted one down */ .icon-refresh:before { content: "\f021"; } .icon-list-alt:before { content: "\f022"; } .icon-lock:before { content: "\f023"; } .icon-flag:before { content: "\f024"; } .icon-headphones:before { content: "\f025"; } .icon-volume-off:before { content: "\f026"; } .icon-volume-down:before { content: "\f027"; } .icon-volume-up:before { content: "\f028"; } .icon-qrcode:before { content: "\f029"; } .icon-barcode:before { content: "\f02a"; } .icon-tag:before { content: "\f02b"; } .icon-tags:before { content: "\f02c"; } .icon-book:before { content: "\f02d"; } .icon-bookmark:before { content: "\f02e"; } .icon-print:before { content: "\f02f"; } .icon-camera:before { content: "\f030"; } .icon-font:before { content: "\f031"; } .icon-bold:before { content: "\f032"; } .icon-italic:before { content: "\f033"; } .icon-text-height:before { content: "\f034"; } .icon-text-width:before { content: "\f035"; } .icon-align-left:before { content: "\f036"; } .icon-align-center:before { content: "\f037"; } .icon-align-right:before { content: "\f038"; } .icon-align-justify:before { content: "\f039"; } .icon-list:before { content: "\f03a"; } .icon-indent-left:before { content: "\f03b"; } .icon-indent-right:before { content: "\f03c"; } .icon-facetime-video:before { content: "\f03d"; } .icon-picture:before { content: "\f03e"; } .icon-pencil:before { content: "\f040"; } .icon-map-marker:before { content: "\f041"; } .icon-adjust:before { content: "\f042"; } .icon-tint:before { content: "\f043"; } .icon-edit:before { content: "\f044"; } .icon-share:before { content: "\f045"; } .icon-check:before { content: "\f046"; } .icon-move:before { content: "\f047"; } .icon-step-backward:before { content: "\f048"; } .icon-fast-backward:before { content: "\f049"; } .icon-backward:before { content: "\f04a"; } .icon-play:before { content: "\f04b"; } .icon-pause:before { content: "\f04c"; } .icon-stop:before { content: "\f04d"; } .icon-forward:before { content: "\f04e"; } .icon-fast-forward:before { content: "\f050"; } .icon-step-forward:before { content: "\f051"; } .icon-eject:before { content: "\f052"; } .icon-chevron-left:before { content: "\f053"; } .icon-chevron-right:before { content: "\f054"; } .icon-plus-sign:before { content: "\f055"; } .icon-minus-sign:before { content: "\f056"; } .icon-remove-sign:before { content: "\f057"; } .icon-ok-sign:before { content: "\f058"; } .icon-question-sign:before { content: "\f059"; } .icon-info-sign:before { content: "\f05a"; } .icon-screenshot:before { content: "\f05b"; } .icon-remove-circle:before { content: "\f05c"; } .icon-ok-circle:before { content: "\f05d"; } .icon-ban-circle:before { content: "\f05e"; } .icon-arrow-left:before { content: "\f060"; } .icon-arrow-right:before { content: "\f061"; } .icon-arrow-up:before { content: "\f062"; } .icon-arrow-down:before { content: "\f063"; } .icon-share-alt:before { content: "\f064"; } .icon-resize-full:before { content: "\f065"; } .icon-resize-small:before { content: "\f066"; } .icon-plus:before { content: "\f067"; } .icon-minus:before { content: "\f068"; } .icon-asterisk:before { content: "\f069"; } .icon-exclamation-sign:before { content: "\f06a"; } .icon-gift:before { content: "\f06b"; } .icon-leaf:before { content: "\f06c"; } .icon-fire:before { content: "\f06d"; } .icon-eye-open:before { content: "\f06e"; } .icon-eye-close:before { content: "\f070"; } .icon-warning-sign:before { content: "\f071"; } .icon-plane:before { content: "\f072"; } .icon-calendar:before { content: "\f073"; } .icon-random:before { content: "\f074"; } .icon-comment:before { content: "\f075"; } .icon-magnet:before { content: "\f076"; } .icon-chevron-up:before { content: "\f077"; } .icon-chevron-down:before { content: "\f078"; } .icon-retweet:before { content: "\f079"; } .icon-shopping-cart:before { content: "\f07a"; } .icon-folder-close:before { content: "\f07b"; } .icon-folder-open:before { content: "\f07c"; } .icon-resize-vertical:before { content: "\f07d"; } .icon-resize-horizontal:before { content: "\f07e"; } .icon-bar-chart:before { content: "\f080"; } .icon-twitter-sign:before { content: "\f081"; } .icon-facebook-sign:before { content: "\f082"; } .icon-camera-retro:before { content: "\f083"; } .icon-key:before { content: "\f084"; } .icon-cogs:before { content: "\f085"; } .icon-comments:before { content: "\f086"; } .icon-thumbs-up:before { content: "\f087"; } .icon-thumbs-down:before { content: "\f088"; } .icon-star-half:before { content: "\f089"; } .icon-heart-empty:before { content: "\f08a"; } .icon-signout:before { content: "\f08b"; } .icon-linkedin-sign:before { content: "\f08c"; } .icon-pushpin:before { content: "\f08d"; } .icon-external-link:before { content: "\f08e"; } .icon-signin:before { content: "\f090"; } .icon-trophy:before { content: "\f091"; } .icon-github-sign:before { content: "\f092"; } .icon-upload-alt:before { content: "\f093"; } .icon-lemon:before { content: "\f094"; } .icon-phone:before { content: "\f095"; } .icon-check-empty:before { content: "\f096"; } .icon-bookmark-empty:before { content: "\f097"; } .icon-phone-sign:before { content: "\f098"; } .icon-twitter:before { content: "\f099"; } .icon-facebook:before { content: "\f09a"; } .icon-github:before { content: "\f09b"; } .icon-unlock:before { content: "\f09c"; } .icon-credit-card:before { content: "\f09d"; } .icon-rss:before { content: "\f09e"; } .icon-hdd:before { content: "\f0a0"; } .icon-bullhorn:before { content: "\f0a1"; } .icon-bell:before { content: "\f0a2"; } .icon-certificate:before { content: "\f0a3"; } .icon-hand-right:before { content: "\f0a4"; } .icon-hand-left:before { content: "\f0a5"; } .icon-hand-up:before { content: "\f0a6"; } .icon-hand-down:before { content: "\f0a7"; } .icon-circle-arrow-left:before { content: "\f0a8"; } .icon-circle-arrow-right:before { content: "\f0a9"; } .icon-circle-arrow-up:before { content: "\f0aa"; } .icon-circle-arrow-down:before { content: "\f0ab"; } .icon-globe:before { content: "\f0ac"; } .icon-wrench:before { content: "\f0ad"; } .icon-tasks:before { content: "\f0ae"; } .icon-filter:before { content: "\f0b0"; } .icon-briefcase:before { content: "\f0b1"; } .icon-fullscreen:before { content: "\f0b2"; } .icon-group:before { content: "\f0c0"; } .icon-link:before { content: "\f0c1"; } .icon-cloud:before { content: "\f0c2"; } .icon-beaker:before { content: "\f0c3"; } .icon-cut:before { content: "\f0c4"; } .icon-copy:before { content: "\f0c5"; } .icon-paper-clip:before { content: "\f0c6"; } .icon-save:before { content: "\f0c7"; } .icon-sign-blank:before { content: "\f0c8"; } .icon-reorder:before { content: "\f0c9"; } .icon-list-ul:before { content: "\f0ca"; } .icon-list-ol:before { content: "\f0cb"; } .icon-strikethrough:before { content: "\f0cc"; } .icon-underline:before { content: "\f0cd"; } .icon-table:before { content: "\f0ce"; } .icon-magic:before { content: "\f0d0"; } .icon-truck:before { content: "\f0d1"; } .icon-pinterest:before { content: "\f0d2"; } .icon-pinterest-sign:before { content: "\f0d3"; } .icon-google-plus-sign:before { content: "\f0d4"; } .icon-google-plus:before { content: "\f0d5"; } .icon-money:before { content: "\f0d6"; } .icon-caret-down:before { content: "\f0d7"; } .icon-caret-up:before { content: "\f0d8"; } .icon-caret-left:before { content: "\f0d9"; } .icon-caret-right:before { content: "\f0da"; } .icon-columns:before { content: "\f0db"; } .icon-sort:before { content: "\f0dc"; } .icon-sort-down:before { content: "\f0dd"; } .icon-sort-up:before { content: "\f0de"; } .icon-envelope-alt:before { content: "\f0e0"; } .icon-linkedin:before { content: "\f0e1"; } .icon-undo:before { content: "\f0e2"; } .icon-legal:before { content: "\f0e3"; } .icon-dashboard:before { content: "\f0e4"; } .icon-comment-alt:before { content: "\f0e5"; } .icon-comments-alt:before { content: "\f0e6"; } .icon-bolt:before { content: "\f0e7"; } .icon-sitemap:before { content: "\f0e8"; } .icon-umbrella:before { content: "\f0e9"; } .icon-paste:before { content: "\f0ea"; } .icon-lightbulb:before { content: "\f0eb"; } .icon-exchange:before { content: "\f0ec"; } .icon-cloud-download:before { content: "\f0ed"; } .icon-cloud-upload:before { content: "\f0ee"; } .icon-user-md:before { content: "\f0f0"; } .icon-stethoscope:before { content: "\f0f1"; } .icon-suitcase:before { content: "\f0f2"; } .icon-bell-alt:before { content: "\f0f3"; } .icon-coffee:before { content: "\f0f4"; } .icon-food:before { content: "\f0f5"; } .icon-file-alt:before { content: "\f0f6"; } .icon-building:before { content: "\f0f7"; } .icon-hospital:before { content: "\f0f8"; } .icon-ambulance:before { content: "\f0f9"; } .icon-medkit:before { content: "\f0fa"; } .icon-fighter-jet:before { content: "\f0fb"; } .icon-beer:before { content: "\f0fc"; } .icon-h-sign:before { content: "\f0fd"; } .icon-plus-sign-alt:before { content: "\f0fe"; } .icon-double-angle-left:before { content: "\f100"; } .icon-double-angle-right:before { content: "\f101"; } .icon-double-angle-up:before { content: "\f102"; } .icon-double-angle-down:before { content: "\f103"; } .icon-angle-left:before { content: "\f104"; } .icon-angle-right:before { content: "\f105"; } .icon-angle-up:before { content: "\f106"; } .icon-angle-down:before { content: "\f107"; } .icon-desktop:before { content: "\f108"; } .icon-laptop:before { content: "\f109"; } .icon-tablet:before { content: "\f10a"; } .icon-mobile-phone:before { content: "\f10b"; } .icon-circle-blank:before { content: "\f10c"; } .icon-quote-left:before { content: "\f10d"; } .icon-quote-right:before { content: "\f10e"; } .icon-spinner:before { content: "\f110"; } .icon-circle:before { content: "\f111"; } .icon-reply:before { content: "\f112"; } .icon-github-alt:before { content: "\f113"; } .icon-folder-close-alt:before { content: "\f114"; } .icon-folder-open-alt:before { content: "\f115"; } |
| URL | http://zero.webappsecurity.com/resources/css/main.css |
| Method | GET |
| Parameter | |
| Attack | TRACE, OPTIONS methods with 'Max-Forwards' header. TRACK method. |
| Evidence | |
| Request Header - size: 277 bytes. |
GET http://zero.webappsecurity.com/resources/css/main.css HTTP/1.1
Host: zero.webappsecurity.com User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0 Pragma: no-cache Cache-Control: no-cache Referer: http://zero.webappsecurity.com |
| Request Body - size: 0 bytes. |
|
| Response Header - size: 347 bytes. |
HTTP/1.1 200 OK
Date: Mon, 14 Mar 2022 07:13:42 GMT Server: Apache-Coyote/1.1 Access-Control-Allow-Origin: * Accept-Ranges: bytes ETag: W/"15037-1360116138000" Last-Modified: Wed, 06 Feb 2013 02:02:18 GMT Cache-Control: max-age=2678400 Expires: Thu, 14 Apr 2022 07:13:42 GMT Content-Type: text/css;charset=UTF-8 Content-Length: 15037 |
| Response Body - size: 15,037 bytes. |
.btn-info {
background-color: #0098D8 } /**************************************** Menu top ***************************************/ .top-menu divider-vertical { height: 57px; } .top-menu .navbar-search { margin-top: 14px; } .top-menu .label { margin-top: 14px; } .top-menu .nav > li > a { padding: 18px 10px; } .dropdown a.btn { color: #ffffff; } .dropdown .modal-footer { padding: 7px 15px; } .dropdown-menu .modal-body a { padding: 3px 0px; float: left; clear: none; } .dropdown-menu a.link-modal { padding: 3px 23px 3px 0; float: left; color: #4572a7; } .dropdown-menu a.link-modal:hover { color: #4572a7; text-decoration: none; } .navbar .bar-root { margin-top: 10px; } .navbar .bar-root .dropdown-menu a { color: #999; } .navbar .bar-root .dropdown-menu a:hover { background: #222; } .navbar .bar-root .dropdown-menu img { border: 1px solid #888; margin-right: 4px; } .navbar .bar-root .label { position: relative; top: -9px; } /*#####################################################################*/ body, html { height: 100%; } .wrapper { min-height: 100%; height: auto !important; margin: 0 auto -121px; } .push { height: 147px; } /*#####################################################################*/ div.item img { width: 940px; height: 401px; } /*#####################################################################*/ .content { padding: 40px 60px 40px 60px; min-height: 100%; } /*#####################################################################*/ .row.divider:last-child { margin-bottom: 40px; border: none; } .row-divider { border: none; margin: 10px 0 21px; border-bottom: 1px dotted #0098D8; } .content-divider { margin-bottom : 10px; margin-top : 10px; border: none; border-bottom: 1px solid #0098D8; -webkit-box-shadow: inset 0 16px 8px -20px rgba(0, 0, 0, 0.4); -moz-box-shadow: inset 0 15px 8px -20px rgba(0, 0, 0, 0.4); -webkit-mask-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0), black 20%, black 80%, rgba(0, 0, 0, 0) 100%); -moz-mask-image: -moz-linear-gradient(left, rgba(0, 0, 0, 0), black 20%, black 80%, rgba(0, 0, 0, 0) 100%); } /*#####################################################################*/ #nav { margin-bottom: .5em; } #nav > #pages-nav { padding: 0; margin: 0; border-top: 1px solid #A1A1A1; } #nav > #pages-nav > li { position: relative; top: -1px; float: left; padding: 0 40px 0 0; margin: 0; list-style: none; border-top: 1px solid #A1A1A1; } #nav > #pages-nav > li:last-child { padding-right: 0; } #nav > #pages-nav > li > a { position: relative; top: -1px; display: block; padding: 15px 5px 5px; color: #888; text-transform: uppercase; border-top: 1px solid transparent; cursor: pointer; } #nav > #pages-nav > li > a:hover, #nav > #pages-nav > li.dropdown.open > a { color: #0098D8; text-decoration: none; border-top-color: #0098D8; border-top-width: 1px; } #nav > #pages-nav > li.active a { padding-top: 12px; top: -2px; color: #0098D8; border-top-color: #0098D8; border-top-width: 4px; } #nav > #pages-nav > li > a > .caret { position: relative; top: -2px; margin-left: .5em; } #nav .dropdown-menu a:hover { background-color: #0098D8; } #nav .dropdown-menu > li > a { padding: 6px 12px; } #nav .dropdown-menu i { margin-right: .5em; font-size: 14px; } #nav .dropdown-menu::before { content: ''; display: inline-block; border-left: 7px solid transparent; border-right: 7px solid transparent; border-bottom: 7px solid #CCC; border-bottom-color: rgba(0, 0, 0, 0.2); position: absolute; top: -7px; left: 9px; } #nav .dropdown-menu::after { content: ''; display: inline-block; border-left: 6px solid transparent; border-right: 6px solid transparent; border-bottom: 6px solid white; position: absolute; top: -6px; left: 10px; } /*#####################################################################*/ #welcome { padding-left: 90px; text-align: center; } /*#####################################################################*/ i.icon, .slash, i.icon-middle { margin-right: 5px; color: #0098D8; font-size: 18px; line-height: 18px; } i.icon-middle { font-size: 20px; margin-right: 10px; line-height: 30px; } /**************************************** Footer ***************************************/ .footer { margin-top: 0; line-height: 12px; border-top: 1px solid #292929; } .footer-inner { padding: 15px 0; font-size: 12px; background: #111; color: #999; } .footer a { color: #999; } .footer a:hover { color: #FFF; text-decoration: none; } .extra { border-top: 1px solid #E5E5E5; background-color: whiteSmoke; } .extra-inner { padding: 20px 0; font-size: 11px; } .extra span { color: #666; cursor: pointer; } .extra h4 { margin-bottom: 1em; font-weight: 400; } .extra ul { padding: 0; margin: 0; } .extra li { margin-bottom: .6em; list-style: none; } /***********************************************************/ .hero-home { background: url('../img/online_banking_hero.jpg') no-repeat; color: #0082D8; position: relative; } .hero-home p { color: #0082D8; } .large-btn:hover, .large-btn:active, .large-btn.active { background-color: #5BB900; } .large-btn { font-size: 24px; padding: 12px 32px; font-weight: bold; margin-top: 15px; background: #65C31F; color: white; border-color: #57AF17; font-weight: bold; } .text-shadow { text-shadow: 1px 2px 5px black; } .btn.text-shadow { text-shadow: 2px 1px 1px black; } .feature-description { border-radius: 15px; padding: 15px; position: relative; background: #383838; } .margin15 { margin-bottom: 15px } .margin7top { margin-top: 7px } .margin20top { margin-top: 20px } a.actions { padding: 4px 9px!important; border: 2px solid #A1A1A1; border-radius: 4px; font-size: 11px; line-height: 1; margin-left: 20px; text-transform: uppercase; margin-top: 10px } .accordion-heading { background-color: whiteSmoke; } .footer.fixed { position: fixed; bottom: 0; right: 0; left: 0; } .carousel-caption.custom { top: 0; width: 200px; background-color: rgba(0, 0, 0, 0.8) } .item > img { margin-left: 230px; } .carousel-control.custom.left,.carousel-control.custom.right { font-family: 'Helvetica Neue', Helvetica,Arial, sans-serif; background: white; border: none; color: #2F96B4; top: 50%; } .carousel-control.custom.left { left: -50px; } .carousel-control.custom.right { right: -50px; } .button-large { font-size: 20px; padding: 20px 50px 20px 50px; } .carousel-btn,.hero-btn { position: absolute; border-radius: 15px } .carousel-btn { bottom: 80px; left: 27px; } .hero-btn { right: 130px; top:35%; } .signin-controls input { padding: 8px 15px 8px 50px; background-color: #FDFDFD; width: 255px; display: block; margin: 0; box-shadow: inset 0 0 2px rgba(47, 150, 252, 0.8) } input.login { background: url(../img/user_login.png) no-repeat; } input.password { background: url(../img/password_login.png) no-repeat; } .account_summary th { color: #AFAFAF; } .account_summary tbody tr:last-of-type{ background-color: rgba(3, 152, 252, 0.1); } .account_summary .activities { text-decoration: underline; } span.headers, span.link { cursor: pointer; color: #333; } span.link { color: #08C; text-decoration: underline; } #account_summary .accordion-toggle { text-decoration: none; } .top_offset { padding-top: 70px; padding-bottom: 20px; } div.pictured { position: relative; } div.pictured i { position: absolute; top: 1px; left: 1px; font-size: 18px; background-color: #E5F2FE; padding-left: 13px; padding-right: 13px; box-shadow: inset 0 0 2px rgba(47, 150, 252, 0.8); border-top-left-radius: 2px; border-bottom-left-radius: 2px; padding-bottom: 7px; padding-top: 7px; color: #2F96FC; width: 16px; height: 22px; } div.pictured textarea { box-shadow: inset 0 0 2px rgba(47, 150, 252, 0.8); } hr.wide { margin-bottom: 30px; margin-top: 30px; } /* Sidenav for Docs -------------------------------------------------- */ .bs-docs-sidenav { width: 228px; margin: 30px 0 0; padding: 0; background-color: #fff; -webkit-border-radius: 6px; -moz-border-radius: 6px; border-radius: 6px; -webkit-box-shadow: 0 1px 4px rgba(0,0,0,.065); -moz-box-shadow: 0 1px 4px rgba(0,0,0,.065); box-shadow: 0 1px 4px rgba(0,0,0,.065); } .bs-docs-sidenav > li > a { display: block; *width: 190px; margin: 0 0 -1px; padding: 8px 14px; border: 1px solid #e5e5e5; } .bs-docs-sidenav > li:first-child > a { -webkit-border-radius: 6px 6px 0 0; -moz-border-radius: 6px 6px 0 0; border-radius: 6px 6px 0 0; } .bs-docs-sidenav > li:last-child > a { -webkit-border-radius: 0 0 6px 6px; -moz-border-radius: 0 0 6px 6px; border-radius: 0 0 6px 6px; } .bs-docs-sidenav > .active > a { position: relative; z-index: 2; padding: 9px 15px; border: 0; text-shadow: 0 1px 0 rgba(0,0,0,.15); -webkit-box-shadow: inset 1px 0 0 rgba(0,0,0,.1), inset -1px 0 0 rgba(0,0,0,.1); -moz-box-shadow: inset 1px 0 0 rgba(0,0,0,.1), inset -1px 0 0 rgba(0,0,0,.1); box-shadow: inset 1px 0 0 rgba(0,0,0,.1), inset -1px 0 0 rgba(0,0,0,.1); } /* Chevrons */ .bs-docs-sidenav .icon-chevron-right { float: right; margin-top: 2px; margin-right: -6px; opacity: .25; } .bs-docs-sidenav > li > a:hover { background-color: #f5f5f5; } .bs-docs-sidenav.affix { top: 90px; } .bs-docs-sidenav.affix-bottom { position: absolute; top: auto; bottom: 270px; } /* Responsive -------------------------------------------------- */ /* Desktop large ------------------------- */ @media (min-width: 1200px) { .bs-docs-container { max-width: 970px; } .bs-docs-sidenav { width: 258px; } } hr.gray-dotted { border-bottom: 1px dotted #D9D9D9; } .blog { padding-right: 30px; } .blog > div { padding-left: 10px; } .blog p.date { text-align: right; padding-right: 10px; } button.signin { margin-right: 5px; border-radius: 20px } button.signin > i { padding-right: 10px; } .accordion-inner form { margin-bottom: 0px; } .board { background: white; padding: 3px; box-shadow: rgba(0, 0, 0, 0.3) 0 1px 3px; margin-bottom: 25px; -webkit-border-top-right-radius: 4px; -webkit-border-bottom-right-radius: 4px; -webkit-border-bottom-left-radius: 4px; -webkit-border-top-left-radius: 4px; moz-border-radius-topright: 4px; -moz-border-radius-bottomright: 4px; -moz-border-radius-bottomleft: 4px; -moz-border-radius-topleft: 4px; border-radius: 4px 4px 4px 4px; -moz-background-clip: padding; -webkit-background-clip: padding-box; background-clip: padding-box; } .board-content { display: block; height: 100%; -webkit-border-top-right-radius: 3px; -webkit-border-bottom-right-radius: 3px; -webkit-border-bottom-left-radius: 3px; -webkit-border-top-left-radius: 3px; moz-border-radius-topright: 3px; -moz-border-radius-bottomright: 3px; -moz-border-radius-bottomleft: 3px; -moz-border-radius-topleft: 3px; border-radius: 3px 3px 3px 3px; -moz-background-clip: padding; -webkit-background-clip: padding-box; background-clip: padding-box; background: #F3F3F3; background: #F3F3F3; background: -webkit-gradient(linear, left top, left bottom, from(#FBFBFB), to(#F3F3F3)); background: -moz-linear-gradient(top, #FBFBFB, #F3F3F3); } h2.board-header { font-weight: normal; letter-spacing: -1px; padding: 5px 10px; margin: 0; text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.2); font-size: 24px; line-height: 36px; } .board .table { margin-bottom: 0; border-collapse: collapse; border-spacing: 0; } .board .table th, .board .table td { font-size: 12px; padding: 5px 20px; font-weight: bold; border-bottom: 1px solid #DEDEDE; } .board .table thead th { vertical-align: bottom; } .board .table td { border-bottom: 1px solid #DEDEDE; border-top: 1px solid white; padding: 5px 20px; text-shadow: 0px 1px 1px white; } .board-content .control-group { margin: 0px; padding-top: 10px; padding-bottom: 10px; } .board-content hr { margin: 0; } article form { margin-bottom: 0 } #nav > #pages-nav > li.active div { padding-top: 12px; top: -2px; color: #0098D8; border-top-color: #0098D8; border-top-width: 4px; text-decoration: none; } #nav > #pages-nav > li > div { position: relative; top: -1px; display: block; padding: 15px 5px 5px; color: #888; text-transform: uppercase; border-top: 1px solid transparent; cursor: pointer; text-decoration: none; } .number { margin-top: 6px; width: 40px; height: 40px; font-size: 28px; font-weight: 600; text-align: center; line-height: 40px; color: white; background: #08C; border: 3px solid white; box-shadow: 1px 1px 3px rgba(0, 0, 0, .4); border-radius: 40px; text-shadow: 1px 1px 2px rgba(0, 0, 0, .4); } ol.questions > li { padding-bottom: 12px; font-size: 15px } div.disclaimer { border: 1px dashed #0098D8; margin-top: 10px; padding: 10px; } @media (max-width:979px) { button.signin { margin-left: 15px; border-radius: 20px!important; } } @media (max-width: 260px) { .nav.float-right { float: left!important; } } @media (min-width: 261px) { .nav.float-right { float: right!important; } } |
| URL | http://zero.webappsecurity.com/resources/img |
| Method | GET |
| Parameter | |
| Attack | TRACE, OPTIONS methods with 'Max-Forwards' header. TRACK method. |
| Evidence | |
| Request Header - size: 268 bytes. |
GET http://zero.webappsecurity.com/resources/img HTTP/1.1
Host: zero.webappsecurity.com User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0 Pragma: no-cache Cache-Control: no-cache Referer: http://zero.webappsecurity.com |
| Request Body - size: 0 bytes. |
|
| Response Header - size: 190 bytes. |
HTTP/1.1 302 Found
Date: Mon, 14 Mar 2022 07:21:02 GMT Server: Apache-Coyote/1.1 Access-Control-Allow-Origin: * Location: /resources/img/ Content-Length: 0 Content-Type: text/plain |
| Response Body - size: 0 bytes. |
|
| URL | http://zero.webappsecurity.com/resources/img/main_carousel_1.jpg |
| Method | GET |
| Parameter | |
| Attack | TRACE, OPTIONS methods with 'Max-Forwards' header. TRACK method. |
| Evidence | |
| Request Header - size: 288 bytes. |
GET http://zero.webappsecurity.com/resources/img/main_carousel_1.jpg HTTP/1.1
Host: zero.webappsecurity.com User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0 Pragma: no-cache Cache-Control: no-cache Referer: http://zero.webappsecurity.com |
| Request Body - size: 0 bytes. |
|
| Response Header - size: 349 bytes. |
HTTP/1.1 200 OK
Date: Mon, 14 Mar 2022 07:13:43 GMT Server: Apache-Coyote/1.1 Access-Control-Allow-Origin: * Accept-Ranges: bytes ETag: W/"78506-1358497020000" Last-Modified: Fri, 18 Jan 2013 08:17:00 GMT Cache-Control: max-age=2678400 Expires: Thu, 14 Apr 2022 07:13:43 GMT Content-Type: image/jpeg;charset=UTF-8 Content-Length: 78506 |
| Response Body - size: 78,506 bytes. |
����JFIFHH���ExifMM*V^(1f2x�i��HHPaint.NET v3.5.102013:01:16 15:54:06������(HH��XICC_PROFILEHLinomntrRGB XYZ � 1acspMSFTIEC sRGB���-HP cprtP3desc�lwtpt�bkptrXYZgXYZ,bXYZ@dmndTpdmdd��vuedL�view�$lumi�meas$tech0rTRC<gTRC<bTRC<textCopyright (c) 1998 Hewlett-Packard CompanydescsRGB IEC61966-2.1sRGB IEC61966-2.1XYZ �Q�XYZ XYZ o�8��XYZ b����XYZ $����descIEC http://www.iec.chIEC http://www.iec.chdesc.IEC 61966-2.1 Default RGB colour space - sRGB.IEC 61966-2.1 Default RGB colour space - sRGBdesc,Reference Viewing Condition in IEC61966-2.1,Reference Viewing Condition in IEC61966-2.1view��_.���\�XYZ L VPW�meas�sig CRT curv
#(-27;@EJOTY^chmrw|������������������������� %+28>ELRY`gnu|����������������&/8AKT]gqz������������!-8COZfr~���������� -;HUcq~��������� +:IXgw��������'7HYj{�������+=Oat�������2FZn������� % : O d y � � � � � � ' = T j � � � � � �"9Qi������*C\u����� & @ Z t � � � � �.Id���� %A^z���� &Ca~����1Om����&Ed����#Cc����'Ij����4Vx���&Il����Ae����@e���� Ek���*Qw���;c���*R{���Gp���@j���>i��� A l � � �!!H!u!�!�!�"'"U"�"�"�# #8#f#�#�#�$$M$|$�$�% %8%h%�%�%�&'&W&�&�&�''I'z'�'�( (?(q(�(�))8)k)�)�**5*h*�*�++6+i+�+�,,9,n,�,�--A-v-�-�..L.�.�.�/$/Z/�/�/�050l0�0�11J1�1�1�2*2c2�2�3 3F33�3�4+4e4�4�55M5�5�5�676r6�6�7$7`7�7�88P8�8�99B99�9�:6:t:�:�;-;k;�;�<'<e<�<�="=a=�=�> >`>�>�?!?a?�?�@#@d@�@�A)AjA�A�B0BrB�B�C:C}C�DDGD�D�EEUE�E�F"FgF�F�G5G{G�HHKH�H�IIcI�I�J7J}J�KKSK�K�L*LrL�MMJM�M�N%NnN�OOIO�O�P'PqP�QQPQ�Q�R1R|R�SS_S�S�TBT�T�U(UuU�VV\V�V�WDW�W�X/X}X�YYiY�ZZVZ�Z�[E[�[�\5\�\�]']x]�^^l^�__a_�``W`�`�aOa�a�bIb�b�cCc�c�d@d�d�e=e�e�f=f�f�g=g�g�h?h�h�iCi�i�jHj�j�kOk�k�lWl�mm`m�nnkn�ooxo�p+p�p�q:q�q�rKr�ss]s�ttpt�u(u�u�v>v�v�wVw�xxnx�y*y�y�zFz�{{c{�|!|�|�}A}�~~b~�#��G��� �k�͂0����W�������G����r�ׇ;����i�Ή3�����d�ʋ0�����c�ʍ1�����f�Ώ6����n�֑?����z��M��� �����_�ɖ4��� �u���L���$�����h�՛B��������d�Ҟ@��������i�ءG���&����v��V�ǥ8��������n��R�ĩ7�������u��\�ЭD���-�������u��`�ֲK�³8���%�������y��h��Y�ѹJ�º;���.���!������ �����z���p���g���_���X���Q���K���F���Aǿ�=ȼ�:ɹ�8ʷ�6˶�5̵�5͵�6ζ�7ϸ�9к�<Ѿ�?���D���I���N���U���\���d���l���v��ۀ�܊�ݖ�ޢ�)߯�6��D���S���c���s���� ����2��F���[���p������(��@���X���r������4���P���m��������8���W���w����)���K���m����C ��C ����"�� ���}!1AQa"q2���#B��R��$3br� %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz��������������������������������������������������������������������������� ���w!1AQaq"2�B���� #3R�br� $4�%�&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz��������������������������������������������������������������������������?�@! ���Zi,��Lch�N�p{�PNp[�<�+�>�B?�1?��N+��F@�����c��Ɯ �\CHcW$�<�p �����$�>a�zR�X9=x‸|���3ҜC)����<GjS�ۜ��qh!J�>`I>�����SK������q��ߚv��G��R(��>��?���B�Ӱ l$��4�@y�($�=x�.�r� �Ѡ b08 ޔ�6�������8\6y4#a ��s�5�8PKB)�m���@#;O$��i� �2#�-І�z��z�R��ќ����҅S�H��Q��F���Jh �����Ü�f��#'<�zU0�7$�;s�p�8��Ф�@�ا ����@ � |�\R��8��rT} I'q>�����4HF:�Ҳ��=s�֑�(���N�0i�p"�lz|ݿ�T�p;����F1��-ר)Î1�~��b<�?o��:Hb/#��I��oNh�l�=�i�㞹�: �RF�}Xz�t��:�S��zt�d�+��q֩�FN0;�)AVǠ�"@��iO ��=�c����H�?x�<�Ib� m��2N#���ov������ .{f��{�������A���$�P�&s���sA�Q�GR3(�N�9���8��ʒ��R�H�s�R�u���.�`g�#�Q`BH��M�ހ���w��z�S�p�P�=F�3בJ9���ў0{�E<�x��S����h>�<P�'��� �!z�)�9� �q֫��Q�ǽZn��֫���*����r:~��21�O8�*u��Қ�K?T�)�A9�L���G_ZIRNFOAH:���X}OZV�tn}1H��I��Zv�' ��[��+��4��O,� �t�$.y �J����������S���`.v知7,=z�W@p� ��X0<�t>b@휊]�����$d�\u�Rw��NO�曼c9ڇ��C$��=��z�݆H�nS��Mg,�,z�z�B��q���ub�c�x�}� ��ɎA��u�1���*��8�<u�~���.6�℅�f� �8�^j9�Xӊ�tS-�:����J������ԅ�\� ��݅�G�j����$��lVE��g��Z�r�q�֚�P���j���_���~�R�v�ޕF]P������X���ӕX���9>��_S��} =듸�P��CҠ:��y���J�W�G\u���{S�PR>�=돋Q�-�j�j8��Ga�%; �����%��\rh7Y\���ڹ�}��|��OK��v�9�ީO�-� �pv�O�$W�N�u�(��ޔ�y� 0'?��K��p�:X5�<���r��O�k���Vp3�v�Zг�P�C����m����r:�'�ֶ,��~��\���������J�FI$��Zɐ���V�9�$c�}��b�9<�ƴ ��n;�ֶM2.^PX��c�O#��l�������=����{�N��&8�՛uFp��N2Ek�I�w���H�r0:Ri3E#N���SK��=j��I��\ҩ�܀A㿭dՍ�Lv7b�ߜ3Bp��/cM�w ��=�!�`�V'g!{b�1�r2Ojq ���1O��*�ri8 ��s�qϷjk� �q�s�L�99S�4rs�8�ϥ-�������CҐ}nj�?����b�<u�魍ŏ������s��1�Qڐa������t���!v�Ӝt�H�t�~����1�;�H�3�G�1�{�����>� �#��Mn8�'-�!���d�ڍ��#*;��C��/�Fs�=(Pq�3�^���9��n��lҡIJi��$�4�����77N��� qܓޓ\�y�⇰��n�x��9�r� !@FGB)A88$��B�8�c� r�R��G$})O�=8�� ��g�Jw|�r8� ���4��+DZ�O�@wd��&�3�4�K>�=idž?/^�ҋ��B��ւG�?��+����)�u���$sM�p�H��I�r2��gh�ԛ�Ie�J6�����3#y��Ҝ����~=i��˞Grx���b ��)ÚnpNq�aG�!䀁�9�����}=)s��nH���n�V �88����rz��RrF1��@��}OaN�8��,{�9�8)��ǭ/ dsD&J���My�����B�.@bZT���j��/���֣ld�'�z�h�y�#8�:��@�h�'��+��ߍLQG^�y��9��1I�a�n�\�4���:ZU��@�✤�I����$ �=8�oL6I⃟^��)q끞M?QvF:���c���RP��Ӟ���OnƤ!A'�/]�#ʢ���'=�7t�2?<�*\�U���w����A���Wg�n�F~^�4�v0H#����r���r��J[�A����U|��RJkL�Ϲ�u��\��#�+�c����R2����<����j}����[9#v4��q��#�Us�pzdҬ�$u���� �a����$c'#��Y�pc�EX�� 21O�.串�i�N��?�z�_r���`Ա7<~4�QXp�e���9��Ո�N���Ӝ����S��e:1'(G�Ud����[�1�_�S��G�J���i!?)�#�{Pzᶞ:Ջ�0��9\pz�'���;U\v����q�9=�iT���#4�s�i�����}�K ���Z{�9�x�8,H횧��46x��:f��s�ǿz\��};�Ԁj��?�)8�o����I�qHa��"�����ps�c� ����g�I�� v8RyFO���)41�R��:h�$(\v��cr�j!t����sYsY�Cn@c��M]�;A����k��r����mPGL}*ԯ����%wm�1���g�O�Sk�����ڡ��R?��櫙6G�6��OJ�5K�Vtbx� ���x$�+����fÓ���\�diʺ���v�0x�`�:��F���j-j�pb��\��z��{��)&�:f����O�N�CY7:�%�y�לV%��6T9�3ҳn��q�>�!ݝ���<��2i �w��\�H�ZL��7�SqV���^�`c*=^��fq��N{�5��O e�v��Zذr�9���՜���3�#=;T���p��7OB~� µ,!ڤ����r���n�������*\���#��1Z��>���#�W��\A�?J��r�7͓���ZW�s��{w�t$�$��#��<q�ߠ��@��i��y�;Mt:f�0� �3���#MU�s�5�eⅆA��}8��6�"Qv=�O��1�Z��� ���:��9���7#>j�ӼihG�F� [�����=cD��Fя¸k/��0�u��VFO���ҴU������5� I���z�+�:�g�s��➗��`=*��z���'�=q֠��C)�lUv��P=*A8` b =0hn�,���s����<� �X�g��M �s��R�4�x��G�qN�9�G�!h7N}��J��?�R��1���P�#�a6O��8�R���v����@��� �X�'��H�#�J@ f`A�)�v�m9��ñ!H<�SX��S�ZB�.z��HGF=� 2�t�)�y<dz�'�����G�1�s�����<p8���A �#�8�n�/# 暤6�ӚZH��IR>���1�z{R���:�[C���7qp��<m4tA �C��0=i�rs��F���})T.:Κ~`}OO�8c'�*S�2�r:z�/���\�FpO~�~P8��Zjf8� �L9�<����ѻ�)�X�[�=F� �h' �H ��N$m��"�����X`��<��z88�on��r�H��4�*��g��8�Q��,y����O=}iۈ �A�����r���ZO��n��.тI�>��A`O���J\�`�4['�%���9�H98#�>�(��rI��9�x���N���ߡ�I�1���F =3�;�1�7 A���lT������y���R���(N;�����A��=1֗��O�52��?�<��t���Ln2�й���Ɵ�@������s�C*�$w��=3��sۮE6.��^���c��sMl!�e�����zVv��w����đ�@�w#�1��Q��(2q��������UFH=��O'ˀ@Ǡ�Ck��s������3ޠi��z~���8�$�*�D�(np~n��/��ǎ~��p'��D�(�du�u Q,�pq���4����G`j��nݸ����#78�Y:�娲y���ǧ�?ˀ:s�Z ��n�P�J�s1l���uIiW���L�>�?JF��2����m�\�@ �Ԃ+RM�Ѐ;�m�7�"�B�!}F+f*�4�EӶx5͜�9�$tǥm!&��8� |���L��s��8��f�O��n*�п�Tc#ҳuj�Z�i����I��� 9�^!��q9�i�e�W�}*f��\�dq�ږ;�V*��T<�g�H�sMVSb��H'�z֕��L���$�+g�Z6.p��\k܇L��^�1�5r�'�j³�rW�Z6gp�O��l�" $�~3������j��R7x�3�����'�5���RT5$�A3�f�\�6��4�0���N8�M�EْA9��T��8�����ppED�Crx�r�@���C8S��5.G(��� ��J������R���{��3�2ke+�Z>H���E�c�zps���&A8�q�~������P��u�?x��vy����r <�jZ��u ;���yu�F}�X�e�{�W=����F:b���RWu|�gc�qUS@9n=z�\���a�[�ֱ.u�V�ϡ��GU�A�X�;=O$|�ȭ�WvFH�Ҽ��Y��I_z贽P˸j�U��Gp���r뚂k���l�1'�b�8$dq��n��d>[��<v�C5{X�#�!�-q^#բ�~|Vf��0$>���rڞ��6<�`�=kI�CH���u s��:sڹ��%���g��w�N�$<�z������ta�9�Z&�#�O. ����&��c�G�z��]���*#3�9z�H�#��.vY�O�:0GJ�\���˭6�D��Tg��Y��!�)����9��p�9[R:�23��J��6H�=�Ixfe,���~ubѲ����T��;�o�cH�� ּD+`�\���@F�W�I�E�ʲ�І����Ε�U����y�CqӯJ�K�@�\�����s�L�[`l�y��/���=O��g��*r�<՛.��"PN};�U95�a����"�[�ӹo(na�������n���As�[��Y�$zVu��m���y9�R���}����'i�=ET�P��n]H� �^�=�������W����?���Y3PrA5�xs�I) r#�:f�=<��;����]�Ɇ��A��M�D:q�z����įᗞ�z�Wb�9��J�=,�Y�����2V��$l��.��\�tBVv;K]O��ןzճ�V!��au�b3��3��5��ީ�H�#�\g��*�a�����MY�q�'���K[�@���z�Q�nq���T�-#Y~���+~�9'��E�&3��J~�T�������`�m�چ�ۏ9�n0�~��q�с��N�'?@)�~l��� 1�0bs��Z^CCH����R�w-�'4r1Ȥ~sӧ^���Wzp9��H��Oa�J��8�!<g�꾔i�����i��8��� ��\�i?7aޒ�08��) z�oj:� ����ZN�`bN3�AH�끞��=�\ӆ��7~i0Þzf�5P�jq8B�4�[��lQmCr�y �>�ԣ"NXr8��bI�ܑ��Zr�pq�դ@2�pO�0)�9�c�10T�;�{w��+��~�/ �I#�_�@q�Fi�>Ps���R��N��@1C3�p��7)���ѷ�I�q���?��� �FrA��(t�B�b��ɥQ����� đ�qߧz\���S_s73�Әd��;`�^~�i�F3��J��1���ƀ�c�f�+�����8\��(e��qO�<�F^��c8�}:Q���OZQ�)_���0 �)��� �r3J��iF��)�z�8��r�s�L.�-����9ɤ$��s�>�6�bL�c�R���#���S0��#�=1B.�s�ƞ��BE���qۊq㩦�`.��Mvڤg��`$`��k�#��ب���=�#ˀ�'�z�Jð�|�=}Gj�wn���R�c���;㩧���� ��A�Us�����������U� �u���;w6y'�`+ U��N��{T.�v�Ǟj���N8� KH�'��v�%P��V���B2�d��[:b�6��"��m��eTt����@*3یQ�D�c"=&20���J��(T2����o�`�zV��@ v�2uˮ���⤏Oh�r����j)-�$�hpA����;� Ւ���ҵ�>��\S��r�s�ڧ�9��]i�[G务�!S��8��[sj���To�B�`篭e(#X�9 �G$�q֡6�I%>��tm�QԚ��%�yȬyQ��rKq��W9�U|�e �pO_A[s@P�O�:~5D�W� fᦃL�d�U���>��o�Q���O�Q�3�=}j�� �Oֲ��ZW6�ۨYD�pA���>��g��H ^;��VX�U��~F���C�98�ZF�V��6�ծѓ����'�[x��Es�\ʄ-�inu ��A�bj���N�������>+��zs����j�>c9S랕f;� �9Q�}*c�w�n����� �)��+�Ny��;�5��~fa�8�5?��w���j�Z�R�[i��H9���@�*pN�`)���I��T2p��X0/�iS��3֫���@�V{��z�Jw�5mi��$t�.����EYR�H�S�!�q��x�A�]Q��p �ָ�N� �{�W�1�á'��|JH����V]M��;ķ�+n�k�7�$�|��@�5����\��_3r��H�ef��w: >�#]��y��RI�\+9 ���L.03�1��+ �B�GN=)-:����eʜp{�u�����02:ֳ�i��c�2*��Y��\�g'��i���\�X_ݩ�G�:)����L��qҺ�:�;����H��.x���Rw�ᴋfE,~W2:~u�m �0����i�4XhrA�#�1���a�'��7t �S�Ԓ<�[V��U�f;���s[��~�V���[��@Rب��!=:V���rrIɩk����9t%����#b2�z��*��x�W��s��G+��ߊ�ul�Q*�ȩq9k�!FR8�MP��p������B�i#��x�W���8愣'b�Ι�u��ꎥr�w3v��k���@~�q'�Bh�S��z�5j�k}M;��/�\�ֳo��Ơ�As�9��I[���GJ�F�e;���pi�[M+�0X�ƺ=;C�t��O����QC�Y8��{T��7A��H�U9��Ҽ:c s���Y��v3��oF5���1eF8<�^Rv!���xp0�=+V���J�.v�Oм5�5���M.�~�c�济���ϡ�x9cP����=m�`S��W��(��Q�{W#�F�:�ڳ�O�R�.c��*U%��ҭi��I0���\,[���VZ�F�K�`��;i������r8�miWa��O=~��:^�$�j� ��C� P���Ш�fl��z ��b��ԓWbq��G<��t۰ʿ0q�k[�G�I�:v������&�$��敉��8��T��BaX.9�^�'�9�$���C�=y�y�,���Y��c#�ooƢk�;RuP�j����8���RN1�:���z�I��k�c�O�In5�e#>��cJ0N++�rF;�Tm�bBK�����,k�A8��Lc�uzVO������=��^��a���Yl�f�57ez�w��Y��lu�5N�xlS�S��mw�=�D����0`���(��#=�$r�/l�:Ո��>S���j���G\����kr~W =*�٣`Fz�8��8�����1s"�<s���� ũ���8<��zRJ�8''"��!N7Oh�Xs��>_�K&2�ךNI۟��V�ăړn�#�q�˓�Z[�� ����$�jdm���<S�$��ҝ�+�8�t�c��M �$�sK��<�ҁs�qڜ3�ױ���3� �7sC%�#��:�ql��=x���nj�8�X��P�1�� �~���?�5����: y�I�zP����9b~��c�i����8�)$�}����qc��8��#0�y����c�=sN�e?.=�Z����T@[��=(R ^��;rǥ@A�o�J��3�?R0����e` ���Q�!��`ݏ�@�d���9#�#���8'�)Tg���S-!���Tѫ�'�ӭ�?�'�CV�2w��Nk L,D0.^��I;r?K�x�� j{x�������J%arI#Js�1P;�:V��=3�r)Y&㎆�1��gp8�F�RL�� j�^C��ӽDВ���R���<G]�#?Z���n�q��M��`��+f�E��A>��cds�ݗ6$s�jUq�O�Uن�֫^Α�}+}-����y�j32n���Eަc��|��:�x;�Y�j���Wi �;Z���1�����#�TRꀜ�${Vni��3j��3Ԩ�U9dV ǩ�w��2;����w5�����b�o$t�j�� ��t"��^s��Pel z��\I�'#�8�i$e�뎽*�D��A�5���M2�N;��$���ћ��C�:u�qx�[�㚃W�t,eM��z�'��c~�#Ҹ''{#��;k+ĕb� ���וZx��;�1|���4mad(��n��i95�\�R� ��j��"2����E�DT�q�梑ö�I�V����2� ]�b��X�9��(�ӵ�\�c֭��(,����@�#��pz�U��r�Ϻ�g!�x�j�m�+���M������'ץXI���8��;i�lքNpT��ס��s�״�##'���_��!}��[b���d�h;��Z���i���9���U�L��t�z��`d�nj+�\)'8�v�*��;�:�����H�p#���=�����#�1X����I!����8�}����4�W<s��9���+!-�B��Z��G����m�;��S�ML��4��j�oR��E��,�`��5WP��`C�ˎ}A�Co jE��s�To�?��'Npy5<����6�D�Ha�w��+�c��'��xoXi �=�Ӵ��e�ԏn�|���4tX$� ��rq]&�h2��{~�am2��;� t1�" ���h�]L�Z `��B��VN��O�[i{ֆ�8�H`3��¹�nu.�*��bH�!��c���M�4�Y� �,k��gQ)S&H�ɬͬ��i�1��l�;I���#��S�Ce}5�c����m�s��(^8'֝����u�g.~`?�X�]a-ٺv�svw�GȕH�hԵy]v�\���݁[\���'�ps��#Z���`�9����G|��NՏ�@ +eO͚��ݜM�O�?�=�5!,����� t�5���9p���R�X���r:��h�?2^��:u�c�x��趸���Q+�;�VjU"�����ksM���Sv��²Z�(�{�:�Ӑ���Fzҍ6��]���B����]n�kH���{�ô�>\`�'���5x� �C�We8#�l� M��l��Q�J<'?�UV�S��H�Oz�}w ��|��+f݈�P ��<���Z�Ƅ�;��\F#%��ץyg���t�m峀=+����I#����eǙ���珮�IrDg OZ���5�]�������������a�֢�)�k��BQH�/���<��ӟ�Ú�u�95�Z6�s�<M�c����ZNc����5�VJ.撚h�}#S��ٵԷ�<�\e�Sā��g5� � +�9��c����:���F�=)�|���zW?-�T&#���TV����ܑ��K�]Վ��{���f� �3+��ұooYb,��w�5�����G��d�,,tk��&��)��e�X�u�Yy�j�؝�"��hgX���>c����1�P��T�Ĭ<�}��Q]��'-�����z\i<گά�����=���~c�q��� }LF>�`���T���?�3��?i+ ����l?7�S��˂7s��߽y����A�;�4 q��`/�jY���m�0e��g�.�_J�{?��*�9�kgLח$����4C�=_O�^��l��h�=��|9�+>D�ד]U��DX�S[�Ů�mXy�d�a��@ ���H����z�qϮA랢��1U�Q�)��Q�<``�R@m鎸�9�;�>��LCI �7\�B��I�����.I��8�1�x$��v�\����3��pzr8�����l��L�t�;89'�2=)���pۥ�{���� a��3�R��`�{�K�Gz�r�H�(@8`)�s�4�ـ�(\�6�JP2{n����|�tR�\�c��h?|��#+��9��� ���.3����h�.��9��2h�}zd}�SOp21N�[�^ԤrGO�S2O>��` YN;�J8�q�:��֜���D̓���d�*�͓�u#�K9��y<�k������fˊ#�?��5n�c��Vr6��=�oi�� �<g5�)ݚX�m21��8�(��;y8�S;AL��=�n�z�rz�t@aL�r9�p,9����x�Ud��?�jn4�4c��{�#�[����f늣`��9���c���AU9��Ҝ�23���Tў�����X�9�(�(��sZ8{Ws�x��0�)�s�^���J�2zc=�e\Z�\�����3T�,G{"�2��u���)��u��BI�cY�Gr3g�No�j���Mp�Y�s�Wf�E� ǵ4r�q��Y�HQ�r:Vm�5H�`!���4*}}qW�{��:w譲6���S˨�e��3`w"�X�N�r=kz+M�ALm=���'�>N��T��C�c��̖��9�֕m���Wۯ��6�'h���*���1m��>�r�ωH��8�M���'�����H9=�9Lj���99���<���%L��$W��$��oq^��@�H��θ[f*O�H��2��~�e)YXᡷ.0 '��[�Pc'4��/�i�+K]��)<�����,d$�Ԏ l��H==}Nk"*��;��KN_߀���Qz؉msb��#�S��J� �W�tD����We1�* ��I���S��UC�0@��r�\�Nx9>��x���@�CQ;� zڰ�lˋ�z w2��>�֤.J�3�?�bY��>�����eFx��f�KF9628�m8��x��q��1�<��~�~�Qcw �bR��2�ή�Q�l��Y�#dq�+���'���?�ڴc�P2��8�� ��խs?e�����r�LqS�l��ߊǵ���sܠNx�^��I�1��-随m�.:�I�XBye��u�"�p@Q����[��Ϟ��k9<chee�H���4���l��o�Y$��qҲ�4�$����Z�?��yH�Y���om�?�����H��Ze�4��A(�x'=��8�Y7�:���$r8�Ao�Ms�x$��/���}��:)$�Q�{U�*�A16��S[��L��.�x���e2�Dr3��s����#�6���}�*?�9�qz��&�c�L-����9�s)�whe� �z`~5J��%F��$in�Ȼx=2+J���k#�kk�Z�mt*�~Rɨ����g9=k��EQhsU�鲫[ȼ���*$�~G �s��=��0ǑT�0��&�Q��l��;p�q���b�9�8��� y��%S�������v�F%�J���"���>���:�<Vuź���8�*Fh�� e_Y[�N%/���b�9�-K�Ǘל�)5 �_�9�9���HT��0A�:�h�B��@�p)�X.�7K�J2��`�H�]����H�w��Y��KL�0 iA1++�zJ��Z�Fh��b�<S�5QT �X�uML�6C�G_zͺ���O��Zr�z '��g����U}s��X��M� �&��_/���9��WWFbl�c������=f��JF�s�Է!����l��>���$Ɍ�:⢻�V�z&�w�y�Zʺ�������8��=j�#��#�q�ָh~!i���kkJ���V7 d�j��E���t_�(�(Q�;t���N�D�+�1�P�|]�^H�+ȉ>��>���0<��}�����vg6���T��vc�&�)e]����]�� �!q��9<�F�n\?*r����*��s>�sev�������v6��+ԯP� S�zs��?Y�31t�Ã^n'���oJ��g*�?�X�Ӝ��K�c��֔�$@ ���g�H�0T��+ϕ9Eꎕ$�-_(̬H#�1X�`�S���sQ�jo8' ��ԙ��X�J��w�W���� ���5[�Ls�7V*^�ϒG9�K5ˑ�bG\��}j�-��.K�*\�)�n���syw1 �z�6�!|��H�֛�� �{M�oa�mM���H$p9�*�v��\6s�u��m?RVa�/�ٱ�C��'=)I4=�O<d7��_d�e�=*�2۴d���j9%�I�x��P�[���xgڠ���m3LUB@ �i�H�+�kZ�X�nNq��JSvW)���\�r�PqZ ��0��]�ET�D��<�{SnfE����"�4�d'��kp $��0p:R��@'��J�U��8�ђv����}a�aS��ӷj~v�E^O�M�x���o$u���@�R ��>���s��@�W�Jhm�g<t���A��3M��ȥ��ǿzQ�rr<qK�XR�H��ZO�I ӾE�ŏRA�c�dz�S�ʐ7�&��3�{Ҩ�˔�qN#-��0)� �v����A�I��4&9��<{SI$���9�M_c���Mb������Zi�`�g?JOa�wd���<ԉ�C�:�*$Uc�Ҥ���*��L@��'�>��r}ǿ_�����Bz��r8'�v��)�:��c���# �©�EI��@^k:�b[���к�8��f���\d���ןC�бa'�_�;z�E�1�=z��4�L����X#UB8�k�l�#b�GJ��P���bb�z}*��w��n�լ��������Ҫ��x+>�匸��I�0$>�ֹeQ7cU �H�U��5�铒����Y��ܧ<���A��(���[S���Jz\뭟 ����) {v��+�H����5BCg�+���Q5�J���X�̨J�}*��7'$t�P�d�^ry�ۻ���R��I�� �W�Z��� �Iu�� eN��Qv4�KC��XdgwLV��H��z�l&Q���=i��]g!}��j.��}I .>qש�@+� k��r0�r:Uv����O~��F͢N3��5n(A�o qX�W�0H'=�Z����T]̤�b]C��I����(X�N8��sX���yd������g^�(���zλբ(Ap1�U}R'ÞA�=���z�-J�lu�$ڭИ�Sׯ8�[�̇���*�q�����V�fm�<ם6��Έ�f[Z(��'�T�[�J�s�k2$+��Y�,�w=��PՑ�ԥ�hn�=��I����Ay,aO# s�⪵ϗ��s��PN�%���]:t�n.�c��k���,0�6��^ǭt��(�_j��F���k����� ��9j;>$�n���aF #�Vr��f����;'�G���0���s�X�2��֬[9�A$:��d�_-٣��ۤ�.H���r�6Ռ��wQ@#<@�Es�6�$��g�i��g@�(�rWv�8��RI�^��-��W;��^��ҙ� .U��¯��C����8�:�kɥ��'#j��ڥڨv�$u���\����(H�X��ާ�M��ȍ��/�fa��L�[r�we�8�*Ar���u���ڲ�|�%Ȓ@Kuԥ���:��dr)�=j���"H�9��2�Yd_����NO�j������`b��q8\�֭��#��'��}�R�zWmu�l�z��0̀��;S�{ J�5�[\'��)s"q������}�M��A�J˰��#����uJlVOBm3^���4ș7J���mP� �B8q�^yr�%�� I�-/I�8����a��ɣ)�n���Z"�i�")*2�^k��Ios��=����<+!�O�!�{ה�F�6ws:�*���ⶋt�E�dYU���E:���1��t�q�@�Ι0��p���)��g$��{p��x����x�3�������v��`��Ҙ֎e�y�Wmt�q�)$~�IY�N�5渇�J����������d����m�(��Fx���B�pX��CVav֥�3���ԛ G�x��D˳,A����7�p�3�+99�/֯«Nԗ� �z�N4�����~ ��䈘���V嶹p�6g�#�v�)�F��l'$+\��<��uR�$��8���������R��t���$�'9��?�)@7sҮ����-�nrA��[�]��sr[��1����ƛI�^�zV�����@��� �G��6;)����*E����x��(@�zV���yev��9zͼ�d��X�zR{��<�P���!$t��A��P_�rFk�m<,�1��� $g����#�J�4��v��R}u��4 уF ~�k�<8����̠����G��X��FT��T�nZ����J�^K[��Z;t�գ�8����_Ƴo~!�Z���n�x� ���������r;0�_�j��$hNpGC�V��8��j�%����.�1��[�^U��$^%��`�BI� ^��^�Ą%I8�O��J���?ҦmO[�(r�BY�Vn�dXe�Rs�+�𦷭�b�x�]�&��W��2��J�2�(�b��_V�q!Vlc��s ���]��b&��22+��ų�s��Ƽ괜� �s cĘ�4�"F '��Z���}�N��d{��?±�5HøO'�1���}�>���]A0��Zroʶ�`��!��|�zr5�m~�R�׃֫���s�LԂ�Ɲ����sV=T���q�j_��y��ְ�)��qޘ�B�L�n�ܤ·�Q�1��`���W��oPT���u88�����~��S��hβ��Q�����=p8y�|��"�v���q�d a�t'�J"��JTz+7J-頛���`}��鞴�rWvx�Ԃ0���گZB�=O<W�J��ͱJ4� ���S%��p>��ͭ�d���ո�@�>�V/��0��p!�Rǥ�m�1��ޕ����z��ݙ����&��f 觜�z�R'o<�3�l���(ܤd�A�f� �2���Sƒ��\n�\V�W��T��wqϭ)b�����C��<c�)�G��~keB�-��P� O���SX��]���6Ӏ0���ȋ��s��t��`u��i|�v��bX�g0�m�c��z��'E%�3J�#E'F'�J�q6A\�q�]j>c��S;�=���E�ޣ�5�O�@�ڣ��u� m�<V��E���T��w�i�C9#?�=̈́� �E:��yN ���鋸s"� �i&6���8��}���I��i1�Ol�N��%U�9i�w^�67R7���1�є!W�q��Q�cr��W%L�Z��'g�ݼ��X_\�+r���:v�qҷ"�Ce�t�R���9=��J9{�!�U���/��:�U�����drF��s���=���aT�.Z�$r��e�oJ��r(���zV��st1��;qҜ��yy(CcV-l�c�f$/��w�^�7X�m;�q�����c$z��2���j����6g%��1Q#b�7/�8G�\�s�?J��|-e}EO��?oM��G#H[��q�"*�qS-�Y ݐ} iZZn@3���s��)ԍ�%� t��m��ʩ�v���>���j������WM83���E�A,�ױ�zcz��#��M����s].���_n�c���E\�����_T@�����]���)����Vr$r=k��Rz�e����]�ʏJ���� KzV�!�f"�݊ӟC������Xr�{���}���-�|Մ�H����Y�n��PNTu�?J��E 㜏�j����TW��Gr0z�����O����Θ��{�ekwQ���s�k9�i��6ѡ�=�%�聀#=�����l�Ǧϵd���k�=+ϖ��M�^�mį�5�.��@y�qQ�$�/�p ���>�1pź��k���"n���O<Tr���pO����9�!���c5���/�����j���9�b�������,ڀx��8���Q�-�H�r��x?N���eݫI �G�f�!ę#�Z�u\)��PΈQ� �Vr�����.v�#�X�w"0F} ^hA�z��֎�%��N��Sz"'Q#�L�q����W-�V8���]妌�D7|�q��m12m�;+�a�`��<�S�#Xy608�s�+�Q��+�|F��ۊ���u(���7OZ�ٴ�Z���k`�8$�Ҵқf�]F���� @��*��&g+�9���q:�5��,�=J���*���+���i<�r��>��/F,C�,{��a�K։��3)Q�N+B{��s]?�a��Es>+Ԡ����=��L�"�V����YNN@�)��<�d'>ݫ����j�<18�Xr���D��=p���'$��)\�VH��������8j�kkv�,&أ��Gֻ��M�]-�Ĭ ������0�Z�K�e��P+��I-l�9�%���i�l�$�ѱ�9��R���H~˽�8=������qn4���S�CZ�� l�ی�e줤��MjS�hnl4=F�� yĕ��^_��;{)�n���:�J�[� -�NE ��d�a_*�מ-���cM}�n7�HG*�]*��V�5�p��R�7>9���f%�� �h�%h��p+��gm6J���2O8�����En ��8>���ӊW�� ��tb���>a@��V,4ԍ���GN9�n�T�ہ��V@���$Z��71�d-e��~uN�L���x?�L����w���ސjV�f7/�zMDf��n-��G((�`+�|-�ir�`I�8���'��&�T6�s��U��U~`�m��ZӫЙE���x� �+6��9�A�;���K��x=G�P�5�Q<�4��FZ���.����s�vC�Z�׆�Ց]T+`A]�z$"�r�ch$��ו���S�,�\]^��]R<C8[�Q��t�(l�����'�"�?yi�:���.���C��$�\�s�#�ҕ������|�Z��ּ=e��ӵgE�F����v��{�.[7��ܑK�#��T���Fd�t k�מ�ol�H99��Ceuu<��l6I�W<+��KZ�x`p�8,F҅�BrKvq�f]rܞEe���31 zװ�?5k[r�@��95�>#��ү���?(�{�uiN�Ju#-��Hm�B�h汼M{juX��_��i,sO����m�HW{�p�Ԛ����¯�Y�{$z/��m�;Lm�=1IQ��ib����ϵ` z�|=��3�U��+�ԣ����"WS�� ��W����:xgD��u� �������13���Qѹ��V>:�d�Pj�I2Hq\��yy}pg���u��M�=�{��{���x���ֲu�s�Ӯp:�/���|'���y0��k����ZHT�eQ�z��%�4�w#9��#9��W�l`pz���:�6�fq� -�̥x��w�x׳:��R�դ%T�S,4Y\d� q���S�h7��%s����[)����$(��{�O�Y �r�::�����Vu/��J��] ���� �R�O�m�P�2s��e*���y���J��n1Q��c;�������v��z��Y�Wr�N����)wf&��4`�sڨZ�I�[�L֦���A���f�.�.�,q�錢���Bk?�%88��z�A@2,2j�ݐ�#?(�Ȭ���Iv�� �IlTWs�O0+��w*Ŭ�c����zù�+.��{��,/@m���}�O�c>C��~��<���R���s0j�*����i�����Ұx��eL�&�A*��G��>_߽q���-�!���y�-�e8�Vr�0P�;�.���u�S��k����B��D�"��*��֧�{���U��R1��&�G8 �W�i�"��, >�֜:ޢ�p��~�����t��]�hN��⡒�p8�?��/��3��1ҳS����84}c���=<�^wx棷�C'\�S^w� �\�<��+�K�p# ���g4�Zrv�8(�zť�f��V���'>��x6=KPU�x�Hޠ��lm�?��:⽜>�Ev�*��aa���~Էq��c��Iw�E�E�k(��΅͌Far�⽪8A{ۜs�I����Y��< ���`o��Vmm�uM:[�X�H�j��]���έ4�s�v*q�C�.�n�I@/Ӑ1V���m�a�nDڞ�gk���`�= G�x��R8b����h�ݙ�;�Zs�j����>�Su -a����,~oQ\֣�k�*�[�'OLV>���va��v��'�p��d���V��X�g��5�id&�k(�"��R�^�m0iئG`b�K�fI2��@������S���Ӗ�!�0:��ޝ5�`dz� s^�Ʃutw]8sֵ���#�ViO\� �^�{6{���T2o�o��)҆�Y�,���^1�>�ki+�u<rV��/�A$M��N~ojn����3�����}��V��l���6t\�f�}_���V�� I�o�x�SeO0����5���X���=2}1�,��9�W�]�M��v�I�=Ѽtg�I.��C��v'�m�.w�a� ��J2�E��6�E�0�c!O5J+�m��:���]}�����dV��Q�e�zU�����d��4(U�d�E�7�A>��00�}kϮt�Fȉ�o����x,�(�R����5��ui*�H�T�2�_je��7����v5�6ӆ�#�U���ى�2K���g�,��v��k����c��Ză*r@���j��=zQ�M�;b�6�ˎ��v�"�g�=*K�1��s�Qj���L���O�.P��M�1�s\�x����W��Z�q�WwP3ɮ?Z�3�8��rԚH�cF]Tc>��_j��5#(����eڇy>g��3���?LY�̼���2��t\�pF3�Ҥ:m�S�&�+]"T������0�� 2�#���$��s�9t��[j��+R�ES��>����#�ҵ��Å���1["���2�Ubg$����{��0W�ch�Q� ��Ҷ$X�3c'��o�e�q�D���SB��QG�N+��ڸ#�H�,LM;�#�<RTbޣsf�qX|�@��W�<7�ڈ|�W]r�6R�`w�H7Ĺ&���ֱ<���~x�b�ÞÊ��f:}�[�!GBz�Y*�"�'=ꎻ��%��?�G�F\�N��d"��h�(�j��^==��ےG�e[�\�,�� �kZ)�M1�Ȩ��4��M=��w<�s��A�6Q{b��ڣ�|�UI�}5ם�bs�9�����Faq"������ 3u5�ujF1(Gip���iG<���)��L�Y>V\�f�u���ebx�Aǽy��_^M��嵴�;�L�һ�Qq����ksJ�C�𦞓�]\���?�m��i�Q\)PI$�����C�ӃcO�J��������x$���?+8�ʾ¸�-9b���'b�<I&�t�v���9��8�t>�J�Eo��ifc�Fz-t� �+����U_����ףiΉe�+�c�ޝ�=LjUiZ&���uH��B�M���mm�gE+9�^�]��͔�3�KW-�_���Mq�i6�'�I�L��F�П_jג��V��:�r{"���W������i�#Qֶ$��l���K�n�*�QW|aj<1��ڣ-�ޡ)���bx��9�W��+�Ul�g���b�@���v?Z!M)8NV��Jr�R��Lkm;�7���?p�������V6ڜ:�ŝƒ���ɑ�a��@����!1E���Ks'u$��,�J��{���� �]�C[�H��?����U(B2��� J�G������/iѯ��:�D��$ؒ�摻���ާ�|M�^�mB�+�%����#�sd�'�Vu��'���2]j�O������p1�<j�[�i��Nw7�W��e���Z�]<��x�X�p;��zб�#��n澐����f!�p=+��!�IWi!�k���m�v�l%f*1��4�Nh��)F�>�����<y�l�x�]���TV��#���8��4]f��E"C�^k�Ү�Q�#�\��:Ȏ��C,Ӻ�''��f�K`��8�b��8���5��t�ʏy=��d��Y��5�3gb��{��j���8�Z��<1{�ތBQr8#�zN��4� ʄ�=�kh)nK�g:�]�:� �u�Wg��A���Kɜ@\C��h�vH�d�1�h�*�!��J�nfʅ�"�x�+��W�ڱ���j�@���:�ܲF eDQ�bz}i�� K��-�� 9��H؆w۷#�5�}�$���+?<J��&��/0�mׯ-�)9� :k�Z����B��UojD��a}}�H�V=+?�z\?�m�'���P�����,���ŤFV1�`1�Z�M�y��C��/�m4k�,vJ��"����a�k7W�&���n(~����uq)yS�?���kJ���D����D1���)+3��6x�v��xH����M/U�ZM'������E|����:u�@��[�y\�"��&Uc���=�^�%��F,���:<2�����t/���s�<��#¿t�x���X���d>r����A�hҔ۷CwQEjy�džo.4Ė������Mc\�Vk� �Q⾎�g�|[�o�%���$��!J�Ӛ��~#i��g�<M����kF�q��XX�������ϑUX�<x$csb��K{���M�����Z���]�&��ѧ��d�=��I�j�u�+0������xǩ�{药kw�<���9/ݠ�X�h~)�T�..�_!�~u�|I�V��=JK��ٹ���v���c�7�g ]���XV�0�=K��9j{���E �4<�:�zVZH���y�?B֚E��'k��/�[tss�5���86u��ǸxN���h��{[��b(��<��*����@V��x{֣�W����H��7{\V�5�^Y����TrMrc �J�j�g$��+A�����0>����QF5�����MTm&y�s]]��d��}��1��8�%R�cL�UXoA�1늒x��MŰO"�o�U��ְ��K��b�����ޢ�:��H����eI�����rt��]����D��sӎ��md�У���[|(�����g��\��c�f����Q�= z:������j�4;6]�t�7Fr���p^��I��=���tl�<�n�Lv�h��J���d��px�赸�����/<�� ��V���\�� t&�5%�=zu���g�ST�Ps�C��*A8�lU�M�:�8���FP[1U�B�䊩Q� �<��Lx��c8�쬂��N}�Vц/7�G��(mcq�oOJQ��S��q7�{�O������;�6��@Ğ1]ư#1��4��5���I8K���#8#�^�)��w�sT�ƚ<��D�..6��#sm�^������f%���a�ڻOO����sB�Fde��덱�5��� ��S�����A_K���am}Y�T�β:�CHт�4�\���5X�j�����xcq��1N��}�P[�u�Y��gs�����o8h�o�����>��y7W ~�P��'8�_����E`4���.�t�'`�K}k�Ԯ$��6��2R)I��{�Z����1 X��ޕ��\jj��S�ʵm�+�6ܺ�8����~U�y�0¬P�9��Ф����"Gf����Ny!���ra�SW,�e���$�R�r(�N�u-�_"f5l����Y���]�+�{� �����rѶ�ʰ�J�+�Q�B�Qx�D�r�����u֙���E%����!�&K�H��"D���Ҩ�zd7���ݎA"�+�^�>���Di:(^��5�z>�wm}x|�;d#�j��i�Te{�.�R� �V���m��ԕ=N;�T}յ���a���x�Q7`Vr����E\z��u� HU~p7�T?.����2I����+B�>�Y���#h'�����fВ �P!*3�p+8sI�[�Q����l�H�L�݂q�5�ki c���k|P���aԣS�\�:�Y~u���>F1�5�S�+�ЂX��G�zTj3Cr}���1ZwVP�%��Տ��p2����T�.�Z�2��S�u�9ف+���oܕ�m�Fܓ��Ou��U�s�����P�ܡc!�:hU%S��_�֗�)�Dvn\��U�������c�׆��-T���[�u��d�5{_��q�XYl8���X�5fe:n:��x�W�6����6�9�[¾"���.�%RH��+#V�����Ioz�����J��(�� CᗎŕڻYLx� �q�������۞ͫN��� ᵽf���$Sҷ<a#���0�%Pp�z�v�'�r�;��}+��Eғ]_ �8����Tw�1<pj��/���`s\���Fʩ�>�*[ˆ�>0+��i����q�He�� ⣻R~e��"�%X"fw\�M����n�Da��X$�J�G�o �� �pqt���F�q[ZE�Ѕ�iב�n�Q�#ס * ����U��[��nj���0�VA'8���VRc����R��7Ev^��v��Il\�Ά����{�����[��O\�-�������}��v~����N+I&k$�4� $���� »�o@+&��V�5�2���۵6��K��(�5��'�fi-�I5�H���T�������ԡ�%���BҴ�O����ku����p�q�D(M��D�%�G���Yh�:��.�&���2eT���o��:<f8�!�d:��G�Q^��Y.e0�v�'̯c{T{XmMķ�d�j�&�5���t� .��l�1�[�W6���mnzs]n����Ӽ�x�G9�e�f����U���� ��3�į"�-,�7��F<=�x,��H�@�I����|E�[}~M;Wg��-��Rߠ�4o+69T���-�k�Cb��.�g�XW�5<��ѣA�L�������^��N��K)��G����fkz�ٴ����R���F��8Q��hu��_�*q����_�)��|Ҷ�NȜʠ����W�-$[���?+%��ݛ�� ���)��E�]#F�������5#�滿xj�N��M�������Hs�v�j�z��._ xz1����3��MS�c���j�9�E���>����n��t�X���C����[���.�X�v�@.}�JG�E�@~�j�)��8�c��i)�n.O��m��d�,�G�u�h�['�N�Wg%�zy�/N��V�ǫ\Oe4ҍ���G\�=? �3��V��^�������R�2QI�3ПnkX9����ԉrA{��ϳ�W�?���B�16B���[��-����m/&�������g��T��+�u8,�I�Yj6)0g�&��rdx�!o�X�!^���1��}�.��$��V�2�s��~[~%��xz�^�X���V��`�=�*�����ñ$�����Y.���h,.��m(��W���>��x������5y��0-�9Rz�G~ܚ�_�_u��d�akfO��cc����*^v駆m�I�γ�����kq�x�پG�����{g־[�N��7�4,�;����Zw��'���d!#p��r,v�6<��5��0QK�[��\��SVC&��a�6Cd1-ޢ��u'P8>�,ք]��v!T秭D�d�2�0���r<�Q�S���6�PmJѰf.��wZ˵�_,7PN8��*"dX�����1�Ù�N��/"H0I^�Wm�]�p鵏#<�?�� ���z �-�9 h�_�.>N^-M^�jz���.]dTe��[:����Ȓ=0�Î[�5�X�&�24Q�g'=q[�V��)��/200�9��5���C�?�_�c��i�\�h�'�g�֎�um��w|���?�q����>:^�c�j��&�^RVH�8z��o�� �n�4�(q,h�u��]npJɜ�3oTz�ݤ�u(�d9��z�͕���7��O�u�Ҽ�Y�W���&�im�a�����A� `���}B��Y2w<Ğy#�7Y����|mf>�k�����H�#�s�\�������]ۄg�~U�� ���i��$�T3��56�5��dҤLN�=@�a\����RIX���v�5���K,��H-��x�Mf�ė�N�<ħ X�Aiq+e�坠"��z��k�-��u�3��($��҇q�X����o�g�#WSu>�X�����5Z3��+?����V���%��a�S�[K-�rF��#<���>|W�uhmu�#�鏸�$[nLX��y$�끚�J��̇8G�皍���Q�"������X�Kwq��*�6F�_B�|5��oO�������Ce{o�y��UT��w�����?x^�����T|�YUs�A\�jU(Ξ����T*F{2��r���Q�9b��,�ev'�Mci�C6��݉�W��J�QNsӷ~��n��wY���Fm�/�[<�ViX�\��Vg��M� �=֟_����;B���7'�#��-t�N���l�v�8h��2y�Y�Ҵ�e�I�+�@�o����h�åZmj�-��]��[��KY��|d�E�{c*K����5?k�c ��|��>������b�C�G ����#�n1�'����w_H%r���PB��f<��4�Fޚ�F���~gO��ג����XYi%�ǫ��+ʼG��Ӷ$/#�[s���V|U�G0Qnv"�A\���<��ß�ִ�M�ޑ�(Ɗ�QZ�r�;~j�K��0q����.6%�#�k�I7�ׯG���"�nI5���ݮ��$W��>�'�Y�\�&��O�� >��k���88`ן�a]���%t�g�hУڇ\c�V��٤� ��"����)" ��rz�uX݂�ۘcoLW�N��&�=&�F�w���`�>�=�%㽖�Ώ!J�{�jȽ�~��\ﴩ#����A��Mέ��%`�/#�\�i�" ��08ɨ�#��)�� �, �r85r�×zO�"}@��~u9:�O�'�7Щ*Υ��s�[��PKv�}s]::�����h )�3ް��gЮC����p>a���>ga��=#J�P��_��+ڳ5?47e<��=s���ū�/dP��*z����u�ώ�˫�=��庂6�Ek:pQM3��fz�1H+��X�e�ej���v��ҹ-_ėA�@��=x�䢵!&�; B�%��q�@k�Q�2���pڦ�w#嘁�{�\�� Č���\Ӭ��i����m&œК}���c����\qN�;�M^��n\�,^��R�Gw���&�1�z�q�e�x�g��5.�*�'h�P-���� r��[�ȷ;MA�m�����W�w_��b&��z��5=a,,�����_o�J����q��]V�8��W��s_I�e�֕C��bR�<'� �=r�������6�cI�]�jR,�(�P�R{ךx�ƾ!������^�E���8i���h�3�Or�!?6J��^�9���+��y�=_���[�}OZω�e��A�+��'�+�t�"�I�e��ڵqoo� ����mV4���33l��E��Q�?zN��Ԕ�KB���J� #��3PG�C$�)C��s�T�YdFO$ǹ����jd��N�{;y�s�����3��V՚�N�9#5F�����w�Z<}��U�%Ӯ�'3�э����+���.�ɯ${���w��W>��6�f��6�iV<]��� ���&���Y�%�����,I� \��ox��Ǣi�����j�;����&�� =܍(<�%T���X{[�wR�4���o��)����9f<c�{�W?c�gY������,���8>��_�;�/ �:|�m��ߗ�jΛᐑ�mmɺ�8r:�j�U���$�.p��5[�/J�%w����b���q�~[ԙ��ϥv��< ��բ%~֪~�8$�j%����%�b�䁂}FhTuW�]*����M�I4��rX��G�"k����6~i=?����xr+��!i��HԺG!ۿ���U���Ɛm�In2���u4:r�|�2��Z[YY��Ƃ{�0Cr@�XCӮo�!���B�*�*濣�s��/n��ٱ�0~P�u�5�h�/t����z|���,��u��' T����� >s!�#�O�{E��][��]P����w���id-����q&Hc�W�M����-��������wN1QVJ���]D��G��}��1�("5n��ʱ��V ����G(%�q�ߏz��X��:]��4���� k�A��_�R�m�ֱ����@�rF��ukWI;}��T��_j����FԘ�ʧ�ڽH<�ּ�4�mč�.�[�/w�[x�I�,��pKI���Khu_ r#.�$@2Q���rJ�O�m{��"A�J�'�;�x<�w��O�:�QӓP�Jf3ܹ���}�kv��9̣�=���o��<�Ȩ��z�V���]_�kIn�]���C�r���v�*r����<�e2Z������1�S��i�^�������C�C���̨���5��h�X�齞ɞ�L?��%~��_�����Ϧ�I#���&ݾ������k�&��G��g9<��1^�Z�Kc�ܕS������7�� ŷ�7P�d�W��w�V�*Ik+F��{ ����t����0�)V^&S�GC�zW �T��>,kL��KrReFL�/\��f�|ƚ�����.�#�����ѫ����I�:��*����0Ea��1ּ���C���+��[K5�3)V'�|�RJ���%�?����"ߍ����o�i������種7�l|�^6�$�s[Z=���,[�� 3��UВR�&��=?Oif�����X���%��fp�09��']���2��z�����u<8���h�g_���=�mv�?9%���g��CP����ҫ�Q�<��F8=+��ci�Kis�r6��\u&�:"����}�H��<��5�-�p:��M+�1�zg��Diڪ�\@d�O#���)S�R��ѹ�[�k��!0�a�t����ZhGR����zc�k��5�5m<Z�ba*g�s��v�ƺ�4���Wj���5�B-�s����V:o�~&�/�eէ6�8�?���_����L�V7�-�l�,}��x,k"�c9^j�����Ӛ�U�J%�V����kW���n&3�~Q�ZRx+Q�� ުJAx�@n��qJg�j6�d��^�}�|6�ð����j1ۅ�!�F��$q�jt�:m���o����g{y��c�L��Q��z���_<�:�\jp5��Be����:��:͇�N�e�]���;' ?����x��߈-��֯��"�{����\��í��))i��u������Aw�i5���3�0����Lq^{u3>�>�5��=�bO����Vy�I�|�i�����7�~���e~�CXμ��}�Ŷ��o�t���E�x���uz��z%�-=�u�{�zW�iZ��[�u_0y���ijض�Q�+�m�k�ԼC������y�5o-��UN ��)|.���6��&�� �Co����=��R���������{"{K+kf|�̧5��ڶg�,��1Y,J�@��X��v�Z�> ��j�֕sq4���q�++�:͂x��@�\i�4(�Kj�{�-����u;���B�HTH�����*��ե�֝bn�O1.⺄�s���?�Z��5���t��m���g��u���ynJ��lq�4)�r���N��|�B��'��@�]B�t��l7�>���h���ɦk�i�S�<7�{W��ך���vrx\�J� �C���_���N7.�ZB|��QԥA��dz}�ޕ��ͩ��A�����&�N���v����b$}߽|zs^3�ω��d�8�i%�e�s��k�5�v��C��ܮr���Mj���U�Q����<�!�9�+5;#83�˿�\�ư�vfq;�U��6Ms���$��S� F�`��+�i�hҊ�9�kM�=�=Vt��g����{v�����>�WR�]�c���V��t�̓c�7A]��8���c�{D��u佷����)^ ~�%����.do��HT��֬�>�B!�_[^\i�"t��c�꤂?J��h߳����oj�:�Ϛ�Pӷ��Dlcߊ��5g�43�����_����u}N���O�G'��,["F�� c8�k���kt�s����t�_@�w��MOFkm3��[�K|R"�}��º�o���--�M�:e�k4wQȧ�s^mJ�*+F:.�����O_3��M��a[rg��Z�s�H,mp�0��g!��ڽ{�E����o����eޙ���{�YG�\釦�lm'�(�_>�%�Cd�/Դ�c�-'wX��̆VRX8zq]�Si�|0�&���$�asn�F�8��}���f�?��G�S����n?2'�֣�|�-��%��Z��r3�8<c���١���K�������A�i�{0H���$��*�[��u_�7����ſ��3(�6���l�rq������t�4H��6v��eH��0x$�2k�д�u� ��t�na�q�$��9��ݚO_��4q�����i^����}N���r\�8]���C�u��嵮�ykki%�ɑ�Qf��eG$�&�{�v����m-�����B-�x8�:����}Tҵx���]���PA*� -��v�S~��]��,5 �+y����߆����#��G�����sc�#��]w�_\�-����Е��$m ;?ƹk�E��Xn�x77!���}*[��%tR�R0����+`�}*ƒ��<��& 9xE<�@O=�ԑj��6r�#�ȓ=��d�^)�S��3�瓊Z��b��������1��P[ܴE��Ǧ~���&���UYo�o��iQ�ξK<����k �1�ǞX��|�E+���'�m��(���3�E�TjJ���ƨJzr���O�^?�M��y2=��@o4�-��h��a��ů�x�U��V���(�q���1�H<��5���/�Y$,�� Rk��Җ6��VB̫���-���0�OG��k��ť�Ms����X ���U�u���"����M�m�s��>������E-�͆<y���]^O<�͑����q�#�/"����jz��b�\�#~�K�e+��\���qw{��g����eqQߨf{�B��+6}@���$g%������m���V����#���1wbrnjV|w^dϾFڭ��n�+=NzU۸���3j, ���ҷ�q��J�m�脞E�,c*���b����e�Y��EP��L�:2��y�c?A\�<�ZG,ǹ�G�{�E����=_~��ג�Ld���c���T#99?JXz���zVIY'�����r�;@�y<U�:�@�{@�e��Kg��k:�R���Դ=G���ա��UD�@z���:����\�X��en1_2�n�#��Y2Q$˞�<��گ�|)wਓM�U�6�L,~tlt�^��Y� ´\o��ak)GSw�Α� �R��`�e\cw=A�����g�����j���V�J� ֛,���T�0�����cY�[��d�+�a�N��6:��f��O���?O�I��V��)����=k�<#�����K�"��;�q�WͰh�]G<ʱ*�����N��Q&����*�9�]R�����I=�Y�,�������@O���ڹ�x�mm��Q~�6Er�zƌ��2>r9Ϧk*�Ķ���lM�#����ݣXӖ�Mo<Ҩ\��<����*ӵ�V-�^��x�g"����6��b�8�����D� c�t����#����#�R��}��[�*y�3�]:��gl��v�Ĵ�\d�y5#vsFI4�䍱rGqVc����<�u�D�N�x@��W. ��ԒOJ:ǞZxm���c5�g���\dWT���y�����^�ST�%�l��M28��*0;⼷�������t3�w`%d<������>9��~0��^]|���W?��{�/�+D ���j$�zw�rT�c�{ױ��(������U�>Ǯxu|;������S����V<�����G�u��^;��t �4�l�S��h��������m�)t�����v��:��+��e��s��8�NBM�8��U�995B�����r��/kS��~G]�g��>ѭ��)#����B�T�`�� � �fn��T��F�[������F8�b�(э��T���#?�ZUޥqv��0?�����������u��5��ޛ$�[�8�&*�F"�K�`�zٲ�4��Պ\Fφ��A��W�>v�O��S������BY!r~y��Ҫ�7��s�X�!�0�N�ît�d�߭�i!%��ĭp�zg��5�m�ǩx�]�&��*�:$q/9$�q��L�)JϠ�0^��F*�$ǧ�@��3�K��+���u{H�x�ç@w��z��o�ې�/�=�z3�ȴ��D���Ԃ����i�1��e%�}a����v�M$�6���Z�z���w3�<��3�|�<H�nᶵ�[˻�0�r�s�H{WU���s�LQ�,Sr=��%�{�O�����|Os�K��X� ��Ƨn�=@8�o(��������;��铉���{��$����Q�J�+KK+���9V��ż�)O��5�%IoĈ�a�A�9����뺲�:l��"�K�P|�����8��:t����9��z�^�,uSJ��ݵ�"!�w������4Kk8�e�X�B�X���{SfҴ�{�[Gh�L���7�{�O$�͍��#�ǖ9�����JR�zo���)%c���y~!�jq��4�kUY�l1a�ޜ�M�=SH��S���6ܖ�#��*�ٻ�Fr�c=D����D�yg�#P�LD|�[pڦܳ�M�x�����wmc�;\��e��'�qgt�#��� Z�$����m$�S�9�� :�=��?�mB ,��y-f�y]�x뷽Vm"��1���;Y�w(a��Þ@��*�M���֖9{o�� ����֮c�4��]i�fՒ>�g��^� 3�>���ƞ�#ۀ���䋌3`����A�5��4�cc���>W1ܯ��_��-u��=6���s�}i�,�=�}iFxx�u������Y������5��5Uִu7����ݑ��A�J��I�4͗����q��%<ϥ.��u ⵃ��.��,�F"'����I��{�*[�U����s�P��Һc��}��>���1�{�O� 05-3K���^�چ�zŚ4�b��j�С��f�yp-Vk�&�����O»-/K6)s���Ӯ �2s����?M�� Q�Y�|�+��ڲx�nI��g�E�2�M�_�yn��Ht��6�����<qܻ�G8�}A�A�Q������ңC5с���7o�q�+�<I���X�ӧ�+m*�����/�^�<E�=T�Z6��Ms1t�g�{�4����v��:!NW\�.eZ�:M"�ь��ϰ�I[&6�r�I�����~����Q��HF�5�1<�۳��G�4�/P���F�tk�*e�*��Ϝ��gh�ҍh7d�*5�G]���]��Yn�s$���>��C�g[T�!��ܵ�b�o���8�k��Q�x�.����Paܑ��]�+���UdicfQ#a�Oa�㞵�a��7�qUW�o#�~ۍK���i�6�)�yʓ�=Ȭ?�~����f��y�ooo������~��|�_�-[V�6�i����;��~���'�4���^6�vI#�\B[���@��hލ����~'U7%98���~]������=�g'���V��SJ�3�$|��J�-s��f�f�5�oAe�ח����Y��kxЎp:�ֹ��h�6�+���9�8YG�i[� ��ֱ�t��o��2���-Ұ�����g�.�[��"Fڪs�]�6��m�F������J��G�iRF��l�.b���U��5-D�Z",�q��W=�cB�a��f��-��Q�k��b�g�>�c�]$���f�{��O�j�,ӎ���>�:]�\˫A4i��1�q���� {���^Q�r�/�?_z�R�Y�������D� ��9�s��py��f��\�O{�X��I�b)�s�c�z����ZM�1|���4]F��Iekq�s�ȅ�I�<��~�-�o.!������9߹��+Sg��Ϋl�,�-�����6����'���y�_^ej�\�Mb�cO��)��=FGs�B�t�-˖J�3����~�ݦ�ү��[�4$�����pdp��pO�Wm�뺤o�Xjj�? �J�ĭ��ǏS��~��̶Z<�X%����p�>s��Ѥn����T�1O�eÙ�y�ֳ\9�$�I��#��lP�;XI2������$EHb}��u�{���w��~J�K�(/���}��q�o���Ko<�C)�q.y��G��I(r���)9m�o�M�0����TZ�%Ub"@8'hϾ3]���C��|�����w� K���>�U�xG���-��ܖ�B��Q�'�C�*V�����^[� ��$�� �!�f8�X�r�L���1�����'����OZ]��UfH4����I=Z�|G�ξ�o%$�39n}�#d�����|7��d��?}��N�I��M�u��J�Ӣ���H�[g%N�3Ȯv�C�7�T��I?Z쵿�^ }�PE�� �?�Z|ˡ�\�M_�4~�A���X4 W±�2�.#��'_^ v~;��5��K�i�&�����'�|�x��:e��}B�!��@��nk���������1�_�1�k��:ա��۶ֲ�m��eR���Թ{߯ɻ~�~!�&i|I}m,���x}y�u �I0�m�'��j�����VG�;d#�+��� ���{��$sԳ]���5]�i��' K�_�c���H�ƋhK�<���Sӵy���P�2<�;'���k����2|�x�OZ�C�c#��>EF+�wg5L�KJq����.or VB���j��:��+=�ȇ8Rk2��I�B*�c�տ��!��d����{&$��<^3�}?2��y�O0���EX����������cm��FS���e^j�7Ǵ��;r�#*ؚ{���4/n�c�#�#�Ȼ��v=�늄��$���>����6xX�ƥoui��P=�K�(�3�ўzc��V!��C��n�td����Uf��y$G��Pq]&��^*m[��[�Y�qQ1' ��kJ�VR���#%sա^Jڞ��uR�R�*�%L��ii���2��oO��{aO�qZr�!�a����D���9� 3º��^1���ќ�����O��k��r����ϵC�<UL���7�|��4;�#e��s��V�t� nm�pq� r]����uF~����G�����]=��j^ �Ծ�w��t�g�*9�U�;;�r�N���hѓq�p��~ Kj3��5�����#��x��Q����l��f��H�l������79�$�'}���?�����j2ɂ���7x�������1ҕ&�cϖ)�9��r�az�<���Jm/q�8+�i�r���-��Q�9Lo�t�=���0��H��Ԋ�<2%s��N}*����DX����a|���Sׁ��j�8�Ҭ��;�_�-$V*k�k/\���G�Y�s���~�X�m��y�_{�����mU9�p}RQ��Ռ�c��k��e� $�2q�ͅ.�'dS�A�k��#�1�[�On>���kQJ����?�z�.մG-Z�ܩ�;x���y�\fG�8���t�8X<�G�#|��z������I,��w��f˦���doʽZTi��)��b%�xĻy�k��g B�7����{wuw1��i%f<��44n�2���� T�Q����_�&E�y��I���^F;�Tu��.�̅x8Ҟ�i�H>��m=:�.�3�����2DbǥX�fn6u���!8�S�1��{`VrN�D)�����ܺtR�G�:�]�x���Q*%�1#���^}�� � �~����ϴ4�ڼ<m7y��>� F.)B�Go��g��*忋ү�k�6�{T�'v9�ʪ�n�8�9��֔��v���j�j{�����]Y�����qq|�냀+*h.%q�I$$�z�W=�7�b����U�K(Dh��H�8b�+?B��O�ε��ߗ*��5��Y���Y'��]�X��p�����/�m�viT��WM*�r�\S����C�M V�^: ��A@a��w.�w�"����e�/�}Mz����-�A n%�V-���z�t<��p�_,W3>ȶ�H;O5ji�8�;�R�Lj�XTcӊ͖��,W��_5*rZ��U�+i�*�Y�ӡ�T/���?9��Ҟ'� -�g�P\�9�ڳjIX��w����$������bą���M$00�\���w&��Z�9�qjB������y��%iV1dԕ����i��G�;��ͧ۸TA��:w��ƻ� ~x{kE�Q8�]�A�w�\����r�^#��C���0��^��~�Z����}��o��j6ְ��"��=�澊�\����a5z����s�<���4���{œ}�rK�I� tg�c����-�`�d��6����_���A{��k�����Z 7ʘ?�}k饐�ۙ��/L�=y�����Q���sf��C%5kX�BZ�@ ����\���?�o�FB,�nO#�����agE�:x�����y��Z��7����i�Om����������ir�����~'�l�g�jwW��YI&8�q���5�[i5L�p+r�e��Nru�{�i��[��}������s�xE��fԯ/,�v�K{{�c�o�O&��]Ֆ��$ӻ����������� U��#��ݏ��$���������t.�`\�Od,8,88�V��^�Q4�M��a�73I>b+It�]7J�4KK{(G8 �܀0*jѕD�d����c��w��ڳ��:l�U䨟�F@@?�<�u��ͤ�o-����K���z���k�;m�Ք�E@�����)���'�j���I�D�X�~g���F�n����.У,�*m#$7�{�pmCG�O�yow$�8bᑏ˂>��1]�����_.�q�n��(�i ��yl�H"��+�����wS�>��;��rs��ҹ�Z�m�+��_�D56���C���A%��n�k6�Kt��ȡ]pC���4�kW(�.0���Pq���*��������f o������6�� ��ddw5ˈ̩+E��血���k��y��c@��Bc�s�А�˔`9Vۀ�Ұ��/�b� F<�3V�m����,���>Y�Ii�88GY�e1 ��,s�|��f��LHI,�I<�l�74�H��}�[���(.�1�w5�=W�e5J:#&�2�(��V�O�FR;P�8�sZ�}��6�=M6;�]��3�i�.k�)�\�T�z`{�V�s4bO1�rU:�ba�U9�Է��7#<�5%}H��z"�q�|��Z��d�%���۽BW]�ܑ�U��ʇ��M>d���F�ei��m���Z[~M��M�H��s�������i�;Ԫ�ԧE�ή���Ho�ݎ��F=qapw䎢�G�Q�֑��g:n����?�fh�d#�9�ڗ��˴ϔ�������t�L� ;���L@>��'M�Q��V��zZ]��Ē�a�k/�j�~&��2����2X�:}k��V\c��k�:+�˅#�:�O4�`�xTJm�G�ߴ'�G�?�WZl���d���'R~��t��5)���9�.���by'������߆�w���^&��=�x%��A�_��HG�wB��qb�S�#��Y���Rn2���u��|Ic�$�ڻ��7����b�A�q6ז�I����=�+����v�Z�'g��?zW��4�c�?�W����w%� !e˪����w�k�~��;)���A���R��wS�+��OI�^�]��rrG��>"xWP��͚ݻ��3�ZὌ��WI��ԝEO������ �mf��1\iL�G��HpRG#�5�i�x/S[e�״٣��4C�@�n���f�;�e���ң��xf��#!ᔑ���*p�M�N߉ڕ4U"~�x}cE�?���;��ġeC�5[�^+�.����"��R~��`4��H�����x�C�W��+YT�����k�����a�|�|UqtX�?hU|����I��9a5o��6����\�Z�x s���߶�J�Ԫ�0M�8��5�|Y��֯�l�;�ţC-h�Fd�';�r��=��?�������Ǥ�m�ndzc���Oڛ�6��?��)C���0���I��ע��Yp��)}��Q����J�Q%���2�n�2P{Wa6���S��+�Z���k\��G�zW�v���mu��SE��9�;`�� ���i/���ߛ{i�J$d(�9�O)�(��?��e��{�Kz_���>,�@�,t�/�䱆?i�D 8�'߭G�oä�q&��3�L[�`�Y��_'����튼+��Fa��5_���� a6��^���������cb���K��Ab������䏬O�mF�MmFY`X����K����YvW�v�r�Mi`�O4*�ξE��o�֘�~�� A�G������j��ԧ�7sLX�^Bs���=Y�eo����R���[�>�����X�L�j1MqԈ���W)q�$��lดG�Bp�=��������y�REwu�G������8�YjB�!{(_�{����\��������gb���(�uW���a���u����C�3��v?�9�S]�\�E�E~g-|ui���� qv�y$wn�c��5�wpz�ers���FF1^��J��)��=����;�݃ޓh�y�y� �\G�i��{���,�##�2h�w`9<u��.ݗ������z���ov���m>�!�}���C�*�����f���3T�G��U�%lμӍ켃%��4u�=;�;t&�G��n�R{s@�?� =�����A�4`�h� :Uc؏Ƃ6�0I�����$k�=�K�Z�HS����!��$t�4;y�'�O^8��x1�yQ��Oz�=���X����ו��S^�o ����?h�QXά�#�u:~���|�8&�����< �w���X)@;��x����=E�%[x�l��<��X��9��ƣ�k��1�[�sY�S�%zu�E�eh�e��W�<��j�k ��G�˿�E%��\B�H���}�������E; w3f�۴�\���q�H�.GrOJe��5ߝ���k���s� :�Sr��$�F�DU�:s���*���*�� �=����۸f�O5����:��v���%KS/L�ί ��T��j-b8F@Q�:c�U��@�]0;)=���Y6�>����K�����,6O�z�;���yQ�5+ġ����\�ͅ`02���S��k�-����Z>����F]����� F�9�B��2O��M��\f�/�[Z��nm�o^ա�h�1!�}�ǭrw2J]'�!��Ezw���gA��8���p�f�̖�I�;h�D���7���{U���:sDW��Å+�W<[".������Ӛ�4k���-u,�(�鷃���R��I�ʵO��LH���@��u����l�����?Ͻ{������u#o��Y����8��c[�}+��z��dD��䮏��� �l�;�ISo��+T��f�I���>լ]沄��Q�yg��f-?V����ٝ�!B�kц*�~8�y��tg�������)2 �*��?<_ᴒe�k�W$2&N+�5-6��v��'���#�GJ������1� ��ں�<~T�����*� ����9����x�'�z�A�MliZЅ����>��/Rs�(��I���xTVg]έ7�=7I�5�Pn㡧��(�q �F3^``�ӂ���aۻ���?�����h̅\�ڨj~=����<��k�17�� K*�g� R�p����i��읽�^ ��~���Ƶ>xn�Ş"K/5���ĝ�s�k���Z�c�a�m�����f���R�_@8Νi-M$̤��sU�e�k-@��N1���a����:�fX�a"��r�dק|U�Eҥ[�0��ׇ��;��]��A�yT9&ۘ�%����G�j�z�U�I>j�ߞ��W0֙���Ve�u�8;1���_5<\���=2��s��j�֣d����95��z��ya7\���i:���=Oz�۩l��em�ծ�n�*u5�������B �cF*q���@�J����?�g�����7um9��_)n �gw�5�`�t����p������I�]�Ho�g�ǿhm9?h)$�G�� S�s���,v�-�=;⻟�3[�=�N��RB[�k���4v}gI�z\S�H�d�� 3?�5�R|�n^��LM�����x�K�r˟/M�����e���r�C�#� ����(�ͽ���}cn�A���07}[��\�6�pw��9`W�:�v_Q{.��8�?l�r{�,d��4%�S4e����ҩ��jw�Լ��[�t̮��T�u�"m<m+M���W.�9l��8�]Nz��F 6_�$F���+���l�U&�Y�g�#���MbiC��y����O�����]��f�e�,p�jF�$u{�K��'����[Z��^��-���y��-.凙�|�(�CÃ�����G�� �L9%B�?��*��u�D�e�X����<��jpJ��,��z��?ʵ�b���_���'e�~�I��C(��y!�y0\9��Ѓ��ejϤ�Ti�#�݈F�����4�rivom�Z�;:�Ïñ�-ռS{���$�Pnj���+�Q�����ў�V����������Ė�}��!��B[�o����k�Ե۫��`G�ۀ�xcJ����yӝ�x��WI�xma f�o�;׃V�j����4h-5g/��DMw1bG�����5���P{�[Gɶ>]��f�P�%�v+���T*Q��:���;i�dC��z��ӿ����$0���U m��v�EIe��Q�$t5���#>X�w&��>Q&Lx튤51��l��5v�G���ӹ��lUI�t�S'$T�+͖#h�jU�B7�����,�c�HQ�4��ݰ��:g�O3/�%�r�ŋrz{TgTE?>3���y��$�8��F�A�3}�{��v�R����`�e��/�EV��r� �p:��Z&ѕ\�WhRq�9��_��7�Z�����������)�oJ�6��7�5g�I�f���ĕ��B�U��n��ٖ�v��N���i^yPc1�����Ɖ��U��+��kwÞ"�Y����ēG���:t�l��!p�J��)E���IA��t��;\�}{�E�kPM�p�����ޯ�����3t��W�Y�S ��n�1|G\W%�� /#ǔ#�MѼB�*�+�z���k������#'�H�Z����<C���&��Ht�zzW5g��h���u�v��EqPA�יx����lyBY��sԧ*R�6:�R5�g�S�>�<Kb���.NOW��^��|[��q=����,����½�������+ 猳}kѡ��|�ã��� ������&��y���hTj6���χ����6�%���ɂxLn��\F���N�\\Z���F��U��>��?� Q�N�{�"X�8��ǵ|e�7�_~;�ֶ~/�-�RK�2@�0H;�v&���z� 5���tӝ ��"����>m��/pc�J�c��]���)�b�˟�#��60�Lڃ������ƴLq�k`�����+�6:��ر�%�a.���sމ��:R�j��vQ�᷍H��s8h����#V8ێ�����%�`~\�zf��wY�d�[�a*�>Vc�y5SW�Ò=�]f�m��d�+=A�:�M9A���*�_,���\���pj+���x��]�ſ��W�ߩ)��I�K�Ҥ��.�������X�/���ͭ��_���o��玹�H�i�g���sm��L�� d�2��8k�6އ�i1�[�Rq�~ԍu��b�7-�=�ّ*��ԝc!�EO��wA����N~|��L2ɟ�}�I���ciE�j�Us9-ܓQ���A��Z�vsՉ�5����(T��%���Ļ5ʎz�y&r}�Ds�G4���E�:�ʲ�$�<���zю3�^��W&ެ@A㹠�<�4�y�4�=�Jb��� �K��L�K�4�Z0zR6'9�NU'�I��@U'��j���"{Ҩ;��Ҵm�������8۹���c,E8�Ϊx*�բ��j |�U����d��Z�<�T�`n��.���}1�|^���������Fc�����?QU<Com�k�7�zw�"�B� 3Ҽ ���-ջk����(S�{G^�N��y晤[���1����F� �6�ps��I���$� ��:�[�Q�dڸ]�7OK�Z����2�!O=i�C-��a"�#5��s�jIB_���YO���6����Q�F4���������kco����,H���7Cc9��+������T��:�r:�Y�9X��4՞�^N��;V-���ian3]7��Vm�C�ݿ��ݥ�ܬ�(�N߅-. ir�D��"P�G=� ���Q���q�ߊI�$g��~�V{�+��ڂ�,Mw _�CܞEK5�3a�� ��bX�2y㚇�;(>�Q@ѿw"aQF윒*�Ì��:S"�$[��������,�Y�� ��Va���ߌܜS%��=믻ѭ 2�Xb9=�բk��I^W��Ƽ�V�I8�P��;|��z~T�jU�``��]��'a��J��p*�TTk7x+�8�Sh�MLUIbp=El������߹5v�*�o^*[�9��ye`[&�� �h�[�at[O�c8>��{����Y3�i�u�3�ޒz�I���$�\��1���U����{X��P {��#���a��!�����j��ж��.��SWNⶖ=�@��u�;[�P���q�~���x�@�-����l� ѓ�¾R�u[Y .K������_iڛ�i��IS�w��x���1�3]��u�����ѕ�#ּ;�O��x�9n,m���zK�o��R�i�)o-���^���-*��Sӣ���9b�C#)�A֣K�߾��U��G������?�A���<�V���+ʮ��`A��~��E𭆱�Iͪ8e#����h�?�sK��1�2��UU\<�j�ǿoS� �%{���џ/���N=i��|b���f��x\��*����^�5�ƪ��9�E��D��?-=#��ƮCc$�V;��k����`s�cSNVoKR[# ���������W��kᮡv2��]��>Ip�>U������:�eKe��S�r�ɞ;�%`���WҟMݿ�m핏�$ J玝j?� �]��c� ����ۤ��n�sn�G�+��#�5�x�ǒ���~#Iwl��%В8�^q�]�-ѕbU.2���z狭��pRT�s��V̻����,* �{���?G�<-�O�����Y���R`Q��Ns�̓�f���d����$\G��{�M���fa���?���J�T�����QK<K1C�a��Z-kg#���1�x���KS�V��H�~��]_�Z���m���T,E<=f�g��a�� �5��2��=�������F��5�x�Ă/��ݝ��d�+���ޥ�\隅�*����P�($㸖 NWg1w��ï��M�ҵi<�y�*P�Q�+��%xO�ׁ�O�gD�a��F��].�� k�%/mu��g��ҳ�y��N�=\����{��&^��� Zp�2���3� l�%���M�U���[緱��A�F^A؊�� �Դ�����̡G���|������Iyͻ�1�Y��uu��E4�Q���o�0�?�M�>�*C���Q�,O����d�l������`�ɊR��6����KIףԣo"Edc����W�x� ��=Ez����4i���9r}��ޝ:�8�Y�'M��壘]�2����5)c� �cہ�+9�PW{���^����v#nz��Ox�����R)?{���)�(�4��Ga�j������-�29�>���bs)M�@�h`#�2-B{�n�/���������veg\.쌊��yUv��X��`� GLW=3�摥|R���-6-v�\��[�nŃp���8-�~<�My#��� �b�<�)�ȡҁ^�����'`n1�Jѱ��1�ZP�}�5�(�H�x��g���o��S�EQ�iUݴz ���H&��@s�XZ��l\��5�W%�gUd%�Z�l`[�R��=*���M�zq�jYA巖X��ҧ{U�@-��B��Z�r�s�}=A=�R�� �9�{��m��u��o0f9�b��K*��3)��5������� ��P8�����FpI��zT��H���e;kA$��x�Z������m��1��h2�j6����:�u1.�0r�=�UD�������Z:��� �'<}k���Q/�)���YO�3ZjM�i��=��TR�㎛�M��C<ds�z�;�'�H�Ғ�ay"��� U�9���n$���f�n%7`��+"��l�I�i[R���{t�}y�n`2j���,y��<�u��r�&�rx�+6�6I�Y'��.��8�]ׄ5M�F�WmlӸ`9�@3[�=��̯��ӵ:\�wDUJQ�=&�@����1f��� �A�D 8=kR�Kf+Բ�ɻ�P�`�L�4e[9T�o�H��F�MJ�K�{��E��������Q���^My�����4�6�顔^\7ޑ�g�>��N���c��R ��-�����Y�%������Ѷ��UuM�QY{dL��s�Tq�ipYĢ(a� Tn�W��"��Pu-ֽwQ8�/��(�����V����,�:}��xe�+c���^$����œ�i7���&�Lm�=M}���-$�p����'��d�s�[�4�� ��I�v�c�5���:c6�����f�x?P{v�l�W~-��!}N:W�����&s�\�z�'��#gk�h��ť�ul����Ϲʫ�ax{ƗW�k&<�l���Lz���n������j~mˤ^Dp�I��ۃUZ�x�k��}��}G�Δ����=�ңr����V�>x2��2�ms�т>��ަ���K A�FL�Ȕ�L�� �ʾհ�9�+=A�l�T�%��[�/��]g��b�u{�5k:M��������k‧$��/�~X���v������Zo��Z��k}�!�#���ʤ���x����A�q_Eh���/�.�>�BMk��?Nx�ݬ�K�ܜ�� �*9V���ℎ3H�{g�����~�^����R3#m�P+'ǟ���gk,�e�ۆv��j����pv�����ύ���fk��#�fկ�:�ȧ�:Ԓ�������^�қ���__����5��43�ڽ��??�!b�)���\��9��m�p��5T�\=GdɖQQ+�s� ��9T���Y��X��8�+sG�uqq��p99�� [����:X�s���������;��m�>@?֮y���?����`t�\S�i�h��lm�3���?}:q�ۭmi>���yd�^�x(�B�<��������c9��f�_á�pT#��M?���eGS�s�{V��F��ne9�u�T�-�K���=�i�<�4�� �q�VNґ�N���$��BUT8 ��k`�tT�� 뤱��<�$�:��Z)�<WifIe H�ު8��5t���3�>��������������b�JF����M�o=��C¾�����*c@��hi��bd����49��y�f�ܗS��k�0��t�\Ɲ��,n�N���rԴt���;�A�\��d��a������^���m �Wݱ�MmV�["d���Xw�;5�xTn1ڻ˽$�#�nj��P�iMm`��w�*o��f�k�Hn�IJ`1�$t5�I�v�n�7�Z��q���EIi��e� ���MrEh�L�]��'`#$����x��^(��H<����-�h�8$��±5+`"���M��Pg��,,�����5yzK�Pq�W����� s\6��?�ِ�t�L]����ƒg/�s���N�ذRH=OƧH.���8�sO���s�"����-���@Q��|'���앗�_�Gv��.������d-a�Esn��N ��qY=G��*�����=�d�P2�������+�Xc�Ú��#�J1bX��WVЈ��y���|���Oҙ ��+LZ:����9���\�h�i��ֱzZV�,c���+���Ek2�*�xr+�a�m���Ցh��H sS(��;=�`�����I��e�Zj�,:��)�~���yo�~��z�ya�A�[���`沷rZkc�խZ)U�s�KXZ�f2)��Cլ�p���_[0,��i� �1��%8�PX�sWt�N�襉98�;IКU��'��]���t��ʒOC�U&� ��9'iC�"�:}���{7�������Kk��i���W��Z�D�+���^{ai7��0�*y�ڦ3�_4tbn-r�}�e�Xx�F���A"J��v�▕����q�ǵy���K��0��Ѻ�+���v CO� !�=r+�U�V�L�t�)��>8���qm�Ksc��+�mlKJT�J�c�o�{X�!������I�v�Y1��8��J��'�n��$��</����W�\�+�6��7��W��}ڥ�����1��M{�d��Ed�>N6���R��ͫ�������N�-��$����u:=���yJ@\o�C�fm�~06�ᚽ�<���%�`�$��ܟª�l��9][^�}$�U9g m���~,>$�hD�ѳ��d�õ{�=�٤�e6�p ��9韭xW�}.I�M�I8�y�? *�5r�$��s��͕���Gs ��(���x6�b�F���a�,�1\F�d_������C&$p� ���N��Ty��N�������{xm�4��Pp����z��,��4���I����zv�y_�<��D�R6�o�ڏ��8��oP��[4?bp �4��b�o�N�W���Z'S�N�י����}V��H�}�1�Rq]�Z��\�2�FM��!�e��̝��j��Ѿx�QP�Di�e��ץq;�Z�J1\�Ŀ<3�_ZK}�x����y�W���[:��+���q��R���q�����x+�^�c��*�������`k��~/���sgy}���~奡"C����+��)�6T��sw�my/ԥ⩧���5="ɬ���3����sM�O�-�v��j�&kl�m��O��&��?h��c�i|=�/ O����E�y�� >����u��3V[�&eul�q^�]��ӄ�7��1�P|����ϼ�����7֒pH?2�s~1Ь�����h��h�����Zӣ���|��@'��Z�<O�i7@�X�5�}�[S�R��ݚ�3�� ��v�h���k��[yZG�F���'����|3�7U *6��=�돸���� J��c�n�8������*� i�* �ؘ�U���=~�V�H����N��r�&� )��[�㹒��?Q�֗C����I ʃ�u漜^>u_,t=,>4�٩�M:k��<���,XW�x[GH�YeQ�8���!��]�� .;�i���\�_["K0�p�wX�q��G�v��;U9$v;L}:f�\��5��q������+&]RC9]�pzӟ��c�?:����yH��k)�hޝ4��X�ew�*����{���I��#v�s�5����1�Nj�P��M��Y���u����&��a�Wq�^�5k�q���Uy5k��W�wH�2F[�=�K�Ev��w���֪^3�2��}j=����%-��h��qT�g ���&���Jy�=��V||���S���h��q�ߗn~\s�֣p��ٮu�y}��J��v�7^H�J�����qF�RƹRG�k/]���@�*����~�?�z�����NO^}jjT�l��I9]��u�d���'��j��?�'��i��5�4�x�+K�As����z�m�+A�o$d�7qWቘw��8����V=�U�x�0r9��0�EЩ5��_�X�դ�(~}k��%#p���o��P@��4քB���f��Ym��`�&�x�;���p���Y�s��u��f�}��Ҥ�54X�̓�=Ej����/m��<�������q�V��J�n�n�[���&d�t1\f>Nsǽp��ܙsֺ��� � �?v�%zi���V'wq��\�_Eg(�~��nx�����9�:�Ԁ���=�j�R���ޖ����I��W���}�k��I�"?6��Җ��;�/,`��k���ڻ��Vl��+YՒ����]�S��K�67Ӯ6͌�N5�?��$���%�9WC֦�6�g�D��/��P�A���Nw+����5���E��M^-��ki.]��"�+��͍��Ei���/Z>�<m5��[2����w�� �@�ɬ�S��K���ytq���^x\|ĸ�8����i�;���k����X��(�Xo����$�g,*Oz�NKaƢh�u�K;I!��FE[�/�z��$r}OҺ O��*�c���������;L��;��c�5�Z��,� b7�mx�W�ivZ�v��wA�^�k2XH<��@���=�WU��oom��q�;��^�8ݜ�iNn��]B-� �mrOP�U][FКTami2���7���Y%@s�:V?�ψ0��[��א�c��c)�㇟2Z��7��=CO�k,��c*�H�y��<�X^Imq3��s�V����m5�.=?T`Ӫ�e�x��Ś���l��z�+�ƅz*pv�e�^�G j�Bb�����-���r�wų�W�(�a�A�נ��P��%����oO�y�A������d\���:�Q��:`�w��x��[��KˍăҸyth�M�^�9�a���5���I��ARx{H��RÓ������N:��q4�� 죥nY�b8U���^���h%�P@<�V՞�]@T^OJ��OC7Qw<��B*���T�q�j��9P�n{W��xm�����q�K'�اt�_oʭ������֖&>�2�<c���� A ����^�y�Y����7��(m\r��t��+�=)�4i��.9�[�Vr�9#��^��ixX�'ۊ"� ������*}�N��Y#�+�`��'�/J�I�n��(���BV��ҾC{j>�D�%sX�-�3q�F�*��ݹ~��؈Ǚ� X�nV���h�/�n���#L��gz�Oʲ�(�\rMy����� �� ��~�j`D `���Uqn2fU��ow:Z St��y���Y6U[p�3����#, �I�ں=6�d��N1�k�Vj��2wG�x�C�,�A1���+��P�Y�?�ʂG����7�v��²�F y��<k3Iqj�\��Z��uGU:���C�DH�J8m�9�k3�v��1�zt�+j/��]��3�x5�&�lR{+��R��7��<��[��tu�}+|��ىN�urh�Oi��}k�J��B#oݾ~_JN�:��kr������[T��&(Tx�+Я�e�ԁ�sڽ�X�ǷJ�VE��/t�R�/C�Rxv�%���rs����B�,����$n����=*�en�:�L�j��Vt�B'p<V�jQ�[�w�=�k;T� ���i+�E�9C�X�Oj� WF��=j���ی�⬶|�����S����Ml�\�:���T����ϵuZ��������pr�Pn�q}I��Q��?ʭ B0H�i-� 7z�*O^}�Jm���`��R��w=�]n�3[J���1X�FE?*тL/�܁�5-�Ώ�A�1��ҹ�$� ��� !�e<����#�݅m�'��Q]N�@�h�ãO��ѣi�� W?g3iv�;��Tr�>P��c��E��W:�*["X]�Ƚ �+_g;x���� �p�k��M����FH����!�;�ܺ��{$��P����<�i$�Z d�#�vk�uK�v��#�Ҵ|7�Kok��v��\oP�Z������[��u�=���Oug���s�b�/�"�FO<渿�/���S��-N�3qz��v�-&ެ�`OOz�41"1h�j����w���V�pv�_���Y|e���� ��O�����]e��e����;? �|uoq���;��ls��;��=B)cT�l��t�g��KS�JqaS����\�ƌ�X��J��{��9�Ո�q� ����z�uݥc�A!�A����nܹ8�:Wiᯊzd����`�k���rr�74�>�['J���Q*A�{�B�+�H%���W��>�n�����kee.���O|�������~�y���`�mȵ]OR��V�w~,Es:����M���>=Ċ�[۠�Z�#���xR�X5}*�,�C�θ�Za�8��{�`�G�.���G�:ҋ���m��#�/�۞9�hƁ��Z0NY��{?>�Ҽ��>'x�U��Q�U�!�����Q��ؖY6�I�z�E�钅Vpv������0�#{}���8N���_#^�[�錷sI,�rZG,[�5ql �X�T�}�m:�\0�OwYԴ�E[����9�+͝IJ|�G�S�F�2dӉM�P}:�!�Kw��-�q[t��Ej^E�z��_Ox1�\w�l��%��fx�'':���K�O_h��,.˂<ש���Q�dQ"Cg�}���˄��˅nƶ- �*����ֳ�e�z�璳9�x��*;���?��e�F�ֽkO�`��?8`��5�G��!�#�{���Vfҙ����'�|�*����.��%��=��f�����<�o��8 #_/�7�[/6�8��k�<1h�7�8�ҹ���|�μ�U��xr ��Q��� �#�b��`��>��Y8e5�t�c����d�6���##4�Pc�rO���Y��wlў9ݪ�O��)��Ve+�>��ϥs��v?)oAںWw ���X��"��9�XTWGM7����H��=�+ɂ0Grj��(;���T8�E�:sְ�:��kp�&T�֮Yje�V?6{�U���#�j������~�����H��4@�8�] h��"�4K�p7=y�K�/ϸ���G3����1���黀*����T�8���Z7V��?1'�Ԗ�̠���\ֻ:��G?3�,�``T�]H��+{V�͊�9��:;z�����^�䃜q�T̒�Hr@\�ؾ�]WhQ�y�j��|���qRԯ��]��� �u�W���=�Q:t'�ϥ>?0ߞ)�h �7A��X�vVzƊv�<��$��P�����d�ɩ�\�#֢��ԐxG�rww��! ��Icv�bL�%Z��TR�ѽ�J��e��K|��@+RVPӓ�?Τ{$ld���7!�(��1�8�֮YY���Z��Dd�}�hZ[L���:��OP�[!�E��������y���qU�$`�OX�[{v�^���П*9���C�=����y<ח_�-���w�=kk⎮ XɌry�^)?�7j�W8$�y�Nu��_�=�H��mf���Uu�#��h��n��r�՚K L�p8��%�z�]њ�lx�̻��2�Ko#+�ps]��&��h�h�\~��k0�� ��9�=~����z�GLJ��;E���yFk�3�� (<v1Y:G�-�"�`�i������Б��?s�t~5���Iߩ��������ǘ(S֪�KP�5/2i�=3Ҽ��K�V%�r�W4��!wez�Y�bNW�~�%������5������{՛+[;���Dw�$�_>A�˵@�Vn>V�Y�G�,u��m�Z�X��G?�_F{G���8X�<�W�W��:V���D��A�O_����!Yf��1X��2��w�9�ֹ���MaFQZ�> iV���D<��x5�ɥ^j'��a��ٮ�[�gԋ4�N��Ri_e�X�k�E�n�⎏�]��u�sDA�q��c�iok�g =�k�%�b��H-���Y���s<7���^zڝGN<��P�����Z[YfhnU��s�Ҽ�Y����DE܄��4��&|��<�g����!�q$�3Y˚OcH�ĭ���1We�~Gz�9n�B��raTt�:8HbH�ekj�"�Q�Ҷ�I�S9�HسX��F=kFh2��A��r���_;F8<U�:� ���닳1q;������趍�t��]7S�����o���GnA���3)E�[]:��䞤r)�Z*�E�~:U�G^��l �(8#��0L�M�����ʶ-4k{U\D�=N*kf� ��ZM���;W]:P��Ӝ�,m!��T�j�� .+�gVbբ�F��g��. .v�ⶨ��k\�Nw��tC�yQ W���I����m`~`��}���a=3���~9�7W21�8������=�4�g��*��!�/U&��3PR��y�����4{�6"˴�]��� �r���@��Gڴ���U����{q�BC�����MJ"��9�D���+ =��K�Xa��W�������v:�����|{KNՓu�&�3�W5i�7�������[V^#��@D�8�qR� nW,�½��NW�J���2(U�09t���9#'��y�Z�եV̉ۦzTJ:h4�]N�U�;��W9���_ �?J��L���Edޤ%0Y�9�z咹�[G-}j�`|�0+���ǖ>خ�VT�܃�i���ݨ��:�\�CD�y��r� ��A���������'Б��.g��Esz߇�f�� �ڛN+`M=�����N~��bYv)���<m��*z�v!H���+�E~�T��z泄JA~�h:�_��1���E�۷ �� 2���c��K$?�\1`�Fj7�6C@E-��p��OOjtk�A9#�>��٦�x T�q��F$��R<��װ�����8�H�39�����2'�8^ǂh�p�ѥ�Wv�\���{�lzt� ͉�_vX�"���M�ZL�=(�r��IտvA�5D�0��gP;��ҫ�2���uqVEH�b�=�H�(A��`�sD���Tc�"D��q�qN��(�� �wܼ�9��AsĄ|���N !`GJ�t��<�1�z�r�ǣ��cQ��;�e^X�D���p�q�I�}���U�Oa���*��8�Cr��{з�I{���[�8�<���%RO�:���Lh�W���aֶ.������8<�+kH�!�ڊg���ؼ?�j̫ǿ��1��;(���y��<G>�t`��7ݽ+�t�D�JL���^A�]{;�aڧ��d[�V��`��X��Q���tU� j~�x��^ ���kw�<���#�|{�J��i>��Eۨ�cQ��_Jh'W���dۨ]Ɇ�����q�j�E2h��D��y��CSK�.d�[�U�͟�[�����k�����G·�֚�J���/�a���Sh �FFq_���w�����Ó�5�G1R�`��_����^�%���Ո���&�V��K��g�UZ��G�6�n�5�x�Z�f��(��ˏʳd�Y\��;�Գu�D*p�с�GZ��AZH�*�����1�АGzv�"���u�ڌx�]�U��dksú���bo�X��^��<����9�k�N 3���¬R�}S�=[H����pH���k��7�,:g���3h�\�3�_�bb�����]�/�20�d`�k��?�9^ǃ��� pz����h�6v��[a>�����1�ҵ��C����2A9=��@�)'��W�����̵;H����9����A\Ο��98�+b�|� <�^drN�.��-�R[Փ�hˁۚ�!`�$�Q�@2:����Wjy��c���Q�Y��uڞ�CQǡ��I�T����>pq�zt�)!�*�@����J˞��ZX�dps�:Ӧ��q���+��L�b|��y��k�91��=9�b� JA8���3��t�*+�]�y�p8�V�vL��،�4���P}�G ǥm�g<��0u�����I��M.)��@�*���U'8қ��'�\zq֡Gޱ|���-2�O~j&�]��C��հu��R4=x��F>��}5\`��<QͥE�^�y��c5 ���$R��k���f`���Z�uy% ��=����� ����b �O�5�({�T�+jeCj�ˁ�z�N@ I�+V�O���s�Z�X�hv���4�D�v2�� ��m��=�U��l��|Ҙ��:���g�P�(n��J��q�t�M(`���j�s2���h�BՍ��"]��\G����B��$�+K����&���^A�Ă(�s �1��M{{�s� A�vq<H�Z�L�c5�Ծ٭gsޢ���w��x"�19�5��*g���NA ]�l��[���H�SG�� �d0�`��1xW*k r5�+��NW�}�(mg�3��������d��*����'����KR?2@�������d %�g�J�?���b#�bz��և�ы���j0O��YA���B��`��\��>������U& ~���-����9{m���ޢ�x Rw����C�u *���V<�ph��r���J��h�tp0�.3R�~�TڷV�p}�U�NR���մ������dt��yt}D�DlT�9�^�c����(=q�s�Vb�J��:{�TpZ��M�<FO j3�2��^8�~�����G5���Ìt����pcC�]�WS'�g��xJV�;psЎ��x&@��0���������pK�|S��c90x��e�Kc?�3���:��z�v��~ qԑ�+���9�����T���x#9=)g�;X[g��xUT�xV�:P~@�8kГG��Oz���X��EWԣ���pGNp�֤M1�c����O�H�����s �x�R��*�!%���AO�#�����W[.�<�� ��K�7h����j�1m�N���H�Mz'��@��� ���vߺz�\DU��{�F���*��C���݀�W��U�mb �`�M��[��������q�]Q��rK��d��ߚ�;�b��s�'��P�U9�_Z��]Ho.�����QE�9nv�N��������c_.97���j��u�G;n8c�u`�~%�6giW��z����<9�k7��D���NOZ��^����8�?�P���(>A<�W����pB$&RH3���؎edwR��c|H���bz����uƷ�I��q��ɬx����ÎxZ�.5�r���t0�j��mE�Ꮚ[����,��=G�]L~;���̹?Ú��MH����*K}v�%+ߩ�Ň���~�L�!�J���OR&��)1Q��q^c�ɗ呹��c�u�$�=j]:�z���=�þ5�$��eV�'�b�&�r�U�s۸�����Hl�9���[_��%���S�Q�'����푇_��Q�]�����pk�?�+�d�>�����R�Ų��9�Sv�kS҄�bA�f�1ZVѪō������W*��$g��vi�?+d�G=*�+�N �dL�*8�zb�5��F���V��$�<��w�ʇ�;Q)��F�n� K(ۃҲg`A$��V��������`Kx��'#�g��'dXv�'<�lr�`��j�-�(w�ǵD�`)9'�+5��I|�p;v�U�q�p�#ӑ��j;�1�8�����+�=M; ŏ�+���?^i��ʐp;���^sW,-Fx`8��+�خ�+m~�����p�t��kf-4:�z�9��0��u��q۹��Ӽd�9�Z|�0,x]���G%T�x�Ikހw��C�m�Q�sf��$�_��5l�g������α���NEV�v�'=@�L�[��)6a��m���#�lvAs��_o�l�8�������8�1ӭsʻz�h$b_"ƾ���Q������a[^"�DDr���Ep���Fe'5ч��t��W{u�v0pr0z�ov�y��j�no��9�>��]���q^��_.����s���x��:�����,�K�I���Er ��y���I��g\*�w��Lw ��u�e�ݨA���t�D��'ԓ^��/.刿�?�x��4�$n���s�<_�xus(�>�W��1X_�E{���U� �1��Z7��M�g�"��u�R�Ma_�I�w5��$��5�> ��f�T�B�g�?Ƹ�]YI���|�&$My!�Y[��k��r���x�{����d̈́K�q�#^K�^|&�<C�i�K;H�F���u��[�D������n��D�42X^.�9:�q^�:�p����;�ѩ������'×�-��2��"��BǑ_c�؟����"ɕ�8���ྦྷ�#�R9�w�������4�E*���y;�ў9�$�NH���^��J�=pdx�b ��@�k����Hc�{x�ߛ ��oEl����Y#�e������4].�K�6PY�N}Qo�+KDGL���*����aqXm���r���{�穛�]"mCJ3O���"��c$��k�H�و��=Fk�<;v&��C��:��zׂ� �I�<W�b[u\�n�����O_�_��F��J������穮R��|�9�=�oL�وܑ�Ʈ��p�W:x�WE9�4�7<玕B�o�x#�����FGz���^[2�7@���u���\���1�S��(�yr=��m=馎�N�kE0�- �1P,q����~�k��G$y���.�X���5��r)FGC[��#��ʽR��{UUZ;��58^���-����=s�m�� HR�1<b���o��xv�s��V�ÿ�l����<RE.����ӌ��O�;�I`�#��Rַ.2R���d��v0GZ�@p ��4����q��+���YFOn���)+X¤Ze�����*cE��0[�qRr�O^�Ӈ�\�#�j�g�P`�,�G<s��J�,��G4g���4�t�c��k�'��ZYY0zqڨ��I���4���*y���D�_����S��̓�Nz*� ����Vb�A���M��k�q�lv��=?:C"����w�ߥZ]�۸��t�N�pw�i�$��沵F8Ԝ�TJqF��z�\"���=k��&������C�Enzy�^e����zU{�=+��b�Z�;oQ�5�(��m�p �+�o�~6WG�)���ߊ�;�8e�)��5�~#�&��i��8��f_:���6;�Ԇc�{��2F�c�WI��!�n{��\]��%��Prz �<#�H�!|�~C�}2�,y�Jrrg��Q����KVیg�����������g�^�ȶF7��:�ֺ�5���:��(5>d:�MY�c���t���ƍ�������4@��G8�����+���lV����hx�P�q�Ć�jڰ�Ǘ[Jz���2^�ȥ��Gֱ5���܄�>�ƾ$�6��p@뗭=?Ǟ!`�ڃ��I�Ww�gQk�a!M�#ڼE��[��&1�ڹ[����ۃ�\ޝ�^��{�+�{V�=��v,{�jڝ4��Lݺ�:v�*0�ƺ2�6�W>���� \�=k�ӭ���$+��C�Roqm��9��j:m{U�Pl<`T�z[�6�b�@��ҕ�@�z������}���fL�c9�&����µ��$ �3�LVrI�2��q�N=EQ��X����Y�_�0�T�ePF1���k'fZ��m\�>�� ������U�#����U?�n���Dw2��7m �*�!�c�j�DS���."F眎>��t���jT��U-R�8���1�Ҵ���:���x������R����i��iO�p��M,2�-��pe�o�U�wob@��UA$��:}��Ϲ�7�)�0&��8=�'R�P�F��Ҹ��(�XH�L~5�{tT�Xu�*)#h��6u�e�qC��`���~X�9���mM�j2,dn��<�\�&�@y'�יV���;iY-��L�d`Lט����HIi�������j&fb��yεɐ�g���n �㦥NX��/uw�RFG<�V�bA?�Vu��f�����W��T�I��/�6:���F2O�Y��0Ny���G����%�6"�'8=sV��]yV�X1J9�Y���s����5�c���eE�{sZ6����8�r0υ<�j�WXO�q�ç��Y���W�f�b�Z�����#��>)�l�~���;*���+�T:��wV!��X�i�w�����[[��ƼR;�3��n�����\�Ú�FJ��[�z;��/����R��^;��y-��<x +�<`�ȵK��������kA�:;�@�1-�rH����<���u ymÎy�=��c�G����>���w*<���\l$t��.I=3���#��W���'#�SG>O�O>��.��B�=�Z��A^x��`tv��zq��[:{���'orB� �=k^��o>�N1Y��`uP:;u2��t��;k�28��i˨��w�qך��J�7`T�=O֠�E�pz�e>��n���5V�P� �Ts�5�КU,r8�CM�Av;�= c�j0��A#���s��R}��Oc�R: �U�>N�J����0H`�<��`\�[��vry#��]SVg�q�=*��'���Y������Ӹ�_�����k:�l�xj��.N>��X/.���+"s��x8�j����}3U���52�:q�z�G��cJ�LG�~ُ�9�˶'��jY�`��8� �#��ɴ^B�Cd�ׅnd��J��b�!�*V��<��s�Z�+Yţѧt�{�Y����V���o=A=�+�j�)��$|�s�]妿��>���`�6o8sjz���#�&��qʯ\U�X�r#�a����Ήj�;}:��n�Z>X��W�J7<�{�^���uǨ��\��'�Y��y�T�T9���\f�N�n��9k�x�/ڢ��H/Td��>�W9��L{���!L�ȭԷֺ�*�N�� �|���Փ�Q�O �k�#���ֻpvx�}������k�Ot�pO����3Wt�K��fڊ��W^H��-�m���)w���BY!Aq�� ��6�k�P���nrz\������y,�yb2@���ןkj���#b7gzצH�h�I�ZM�m踮kX��v"|�~�#��SR K�*������8��3���'���:���RDa !OcRx�E�H�$��A��0O��\4W�am��q���Q^^&�kCӣ%4{���+���1��uVW��w��>���&�Ę�:W{�k�a�1+�y�^|y��0�H�;y�rX6��֮�rv����h��8�[����K��S���]����)��LJ:��t=zg5QK!���㊖9H|0��[ngckH�ʙH�]~�v���WgpU�={��i��rFG�mF�+9k��GI��w�n�����p�9ӥ�([��s���TTF���R�n#��TK����&���Fp+(Y�Y���m��߽R����Rv�kz�T�x�Eu9�u��I8�F�R8+�:Ky�QǠb�Yy������� {��t�Tt��WVv��ȵm9��9�qV�{UH�2�9Q�[���z�y\�@�I,� 8ϧ�E�$L�d��' �\����Ȉ�1�*�NI�U�o,\z�Ue�U<�sY�Y�(��߉?��� �rCg�ְ�ԓp� U��c���j}�E*M�������T7Z�h��>��j^ �G���5��+D.<Ìt�z�x�ټ0������b$ ;��o*Fʯ�� p^%�w<ߚ���;X����p�=+�U�U�,������x��+;<�3�^�W�NU㷗,r�������8���Fϵy����.^W,OPk���g&�V ��t��-k��֡)y\�OAӯ5[N���m���cB�%���fk�|/��U :zb��؈P�,"ӭ.z���߇J�>oS�k��t�*l�j�a`�����k�@�6�s���kƩU�we9$��t��@�J�3[�B�����U("lw?ʦ-��`d����yJ�6�-�s�K�q&_��Ms��$6��>ƢI�ˇbA�A��itF2}Ε5��g�kWG�~�=}�����F ���C@�*�8n�5�Os�o���~,���Wy�M�� ��#l>F~{�+��$�`&N#*vi\��iȑ���_Zֵ�j��aq���hYNH���uFV9�mE6A� N�Џ֨Z�힟֮ō�թ14_����3Oij��q�8����M_=��b핐� Y�O�0<R�8�5��\�lg���e;�i6w;����Q�� ��C]I<�*�s8�ɬ[4.C1��d���į>��6Ȱ� g'���g��U�,� ��9=� �������d��>�^�n�\���h9�qYZ��i�9��V��U���R=+P��~r@��ɻ+�����F0}kT����Ҵ� �F���MB���6x鎂����3n�z08\��qX�Gs0�����\�H�H�^��,�$:�#5�-MS���B�0��y�cX�$��J��Q$������Y�S��z�,���D&y������A�+��� b��J��V���N8�+��t�� �z���7M�P�u��z��ۊm|zW���BVFp���� �d����}+����+���Svn&1-��)��}i*y)s�zZ3��䝉����@3�J��^)YS��-$��9�Z�` ����z���֤ ���)�z4�&k�ps�q��V����+&9���Gb{��ƹ�B�},E���q��W8�Y�h��s�ֹ��xl�����tݑ�����D�@[��� ��3����@@ǭ]�Q\���s�r�4wү ��r=i�+�=+.�b@9p*Cv��ǁ�\Δ�;��E�a��Qڐ3��g�Sk��=s�L7 .T�{qMSc�4�=H�Ӗm����Ymw�Q�9��{�i{b��lM$nAtC�*j�������\|����/N*Ԝ0���z��G#9J(�]E:Sd�������~��ǡ�R��2��������wW#r�cl�����s>[�펦�!t�㧥*����s����X�U�,���,�s뚭6��r� ���Gh��$֙)�#8�Oj��`�֓4�@����� H�J��f���۞O5��<�����ti�VsԩRJȩ4��Ȧmn�q�փM���u&�]0�{��X�N9ajOs W���z|*Ĝq[�Jb8�1ӥM�?�q��K�H̱��c�95�a �>^�}������(m�d�W�_���Pø�#�T�Q��Ց�dzzT2���1����s�Fȵ�ߴ<��] ��G�v�s\�E+���Q������{���?A�t���1P_[��� ��]&����;����}���P]9�|��V�j���fRU~Nk���[�� pO_Z�M��T�r8��jb���6�����qm��H��VYŻ�n�0+��meg9��>���j���Rh��3�k��|Lt�ȢW�'�]XN��s�O���Z�Y+e�}kH�����LW��;�!��;���^�m�$�0\`����U��U)r�#F��6{f���|?j�;c�R�\l��S���'I��@� ��j�Z�5������ɗ���t�x���Z\9� ��Gbk߯�q ]��N:�'�o���K$jU�B+���څnF|���\*�a���q�{�S��#/�Мֿ�<,�(Ҫm ��[�.�0E5�V��g�J�j+3ܼ?�H}��#Y��_��J�? kK.%�H�]���X�c,?:�e A�)�=��Z���~�TF@C�v/�����kOK�*`!��V�N�<��Ayxa�Mk�Wȭ� �@�^Se�E���:sҵ�<H7����5�q1����X������d_�DpI�7��*2�Ϗaޭ�B������c�]����;�.�[,��|����0���/~OJ�[��������Z��+���~�X^+G�`T�̅x?J�'�*1���J�>#�����t��l�Ia5��_L�O�X�S���l�˼�`s'�d�k�'̬:VS�oN����?��*�����g���c�� ��j�ψc^L��Z��#��a�P���~5�ʨ'w^íy���WL7B3Ҳ�M2q�欥�KK��~���k�܉G�qY�~ E ��O~}��5/�C�Ф�Z��|_��e��篭`�RzD��[�G�� ��3\��⑴����W��2Nd�5r�ߎ��6��<瞕+�U��T0v=K\�NqׯZ�M�ȡs��J�����7�ץp:sp�c�_z���=J��*��F7g����39h�$���:��Ew}!V�ߥa\ܼ�3Tc�?����4���q9����DYgwl瞼WA�K��6��G��=6�z�$ga?��{G��3�(ف�X�1���70�.y�߇<5�F�� �5��i�L\�6�ю���Yik�W<t=M%���8���!�'��R�DV�J���qV#��3��튰c ��GP���H,G��t0��sr��H<q�e���)# !�j�wu�;�7r�4�q�`��<���!��,��:�=k[O��/�V�`bPs�N�Z��=�nv=o#v[�,�܌\�x����ö���l�y<��Yzu����9'8�4i�3�x�"��F2}�G �l 1[�R:��@�r:\�*T��]V��jeX�+�2�b��i�4��A�]&�a!a#t�G�W�Ɩ#P�7�J��zWTݜ�v�#DA��� �}��T���q��u���B#�=V�@s�ۚ.gؤ���wu�<���-��,�89sޱ�����~}*+�D(a���;VD�&R[vH�}�H���`�vd�ǽ'�*H�<�X�^�ޝ,�.I�c��Ӊ���M�屓�V\3�L})Z��z��AcE��j�qr1�rOJ�5���5�yy�.V���r1�;�Ⱦ�9���������q�͚������5��lז�y)� ��y�X���g�����b�����YW�6I�9�IhRZ���OBx�Yw��I+��zI���ɻ������Z����Ek�͌�9��ҞdVQ�έYc|�ÜRZ^b^A�̮SB��<a��9� `�[� m�ӭt���ڣ�}�I{f��(���JPR]�/�t��%2��?�f���G��z������+���̏�#���2pi�x�m�i�B�g<VK1�8�Y9f9�J�MV������+��bUEg���p���Q����I��b�z�O)h����OPG���ڤ�g9/c��oac瀣��~����Ջkp[p���<� �yf��Z0G�G*��fA�~4�9��Wk�R��H*����7�.�Fq\�0÷f�uK*ĥxjr~~� �➷G;��x5.���v,V{Y���2���:�\]9����,EiţN+ҧ�8�:U���8lV~���Ą�ʦXx�jY����Ϸ���ޜ�̓�~���=?� ��� �m��ՎI%�@�z�沣���}��J�督��C��uG�6,<��y��7$�yw�O�1��sR-���pG��bW4�D�s�z�����2}�J�kd̠�#�u�֚y�Ҽt�z�B�3c�cʯ�Z�Cf�9^G_O��mA�@�*�:\�9�)���70a�,A*9� a0�t���MՇ_aW�t�t'���i� �Au9ht���8�&�Ǥc�z�ֺ�m#�9�`i� �'s\�ƾ�QG#�6d�8��O}0�.<du��,p^y��)�`��>��֙|�G�i�c�:ӓO�x\�zWQ%�+��y����e��3�J>�Ñv��Pj�:{2���0=�*۲�W�)�����v�H%F�:���LE��G�T�HU��T�ӧ�T�#�W��b� ��3�U�����ӥLqM�<���X�sҚ�䜪�{WU�i�*;�����!F��Z�U%r\O�۸�Ǵ�cd[0}s�[Ƅ��4�u澂XDσU����x�1��q�;�㾅�G��qڽ�3�ι�3n��%������s�?�? �{�."��q�N���0��c�y� *��qֿBu�C<,6�z��<K�ky��s��&�y���,�KI#�"k� �@����~e�e=u�ZZ���apY`U猎I�Z/��-�_,6:b���g�c�X�T���b� v��l�:ҵ|=��+�I�]$��0���z�&�9V�ݜA�e|Lu�o�X��=8�G��G�C�@�_ ����`qZ{9�fG��C���&W�9�N��>-��]ϖp8Z��R��""���J��xj$�IA@�+���飋I�|���7ܻ *GRjώ�P�%]�Pz�W�x�C��P;��:�o��8^8<u������_C6/�N7H@�'5�a���}�5���yR��략��js��F''�kH�Ѫ�4x�G�=��Ń��#�OJֲ�X8������œ�~s�>�Ҵ�|m�&fS���+:�%E��hK��ŧ� �d=1��W2���_7[x�0�q�z�5�o�#Ù3��\���G��>��� L��5j?��� ��t_���z�$~4L����}e�����F��$R1p2f��;T^e�>���O�.��I�ژ�2^A����ZKX=����r ��#=j�Ǎ@��A���Rx�s'8��T.�b��_�^y��]Y�)S��}���D�s��+:���U�:}��K��<���T��2�H�Һ#�U{���Os��d��\w5�� ��r:ׯ�x�x�ys��I�wz��>i[���[C&w��J�=[Q�n$I�u'�s�����F���y�֠�d��U���ýw��`�"x�q��u/�\)c�<����!bҞ8ұ��!~��T-q�I&�:XCdpV�V�-\\3���U9Hc��ґ�.r8�_zo��:�ta�y�>Љ�np+K�c�Z�@9Rz�h �$ؼ�<q^���^Z�����b�v[��0�9��-��|;����<��w���p?��Z�ET�U�����ʾm]��֤�d�a3�J���ݾ���6����5����l������j���9�����QKue��g��^;�c��c���O;9l�q�� <�n#�w�U�q=�#���ۭo�:s�W�z ��X�uު���]Ƈj"�]͌���QW2l��h�T�g�Eh}���`}�_δm�X���MH���c��5Ԣ�1rm����a'��C�.;UT%���]^��}�2)��k� ��rZ��,&�u2�5�� �`ڹꇆ��{{UT@����� 9 0?uG�uS��l�s���,��4$������|�� ��+�Y��v)��RL�L�z���T�;�ʩ�!-Y�������=z�73m+��_j����Nq�&�n�%rܓҰ���ǘ��ǯn*%a���Uۄ�~�JD%w���)j*������zӕ�@����w#`a�������K�O�sR�ZF��?�Fx����� Pi����zT�<��P�>TKst0~lAڳ�� ��`�ң������ӎ��2�A!۟����\P�B�2�����Vlӱ\��<��bXU~i�y��K�R�}+�rՊW7 ��{�I�w�'���:�������;�1i���R�j7&�}���b������C��6�P�ON�ʩ�0l�B�뎕��Z��\6I��9�U���v,���g�U��rX�L�IM����O�t�2,����1��%vB>PO8n+����('�p��8��WF�8����\����8�]���b�ON:� ^�p�������'��fH�Q����1���f����+��=:W���GY�t I�+:5eJi�))Ǖ�<�)Y0ÿzf8��U`mo\��+�$c���Ӛ�SG�bh:shrpI��<c��\r2G��S�b�x�h�4�^��U�ֻX�`��d �4�3 �=��<"��9�s^b��ˣF���;��� ��9��FУ(2��g�dxY2����ƫ��G9���I��%���xB��W����\���:m�1�R`�Pq^�F0x�MT�#6�3�ڦ�.�)^h������ϑ�Q��Qә�Yp����i���Rh�_[x�N���E9��k�|S��Yn�Kd�_K��j;*�瑊�p���_���X�{�⅙��z��q!��+1�$��r}�܆cJkC���p��0��/�w�?Zӂİ���m����q�Z6֘c�5�[}��Q��+��>�օ���d���lNF@#�zճӎ��9�םS��PKs�N���jװҋ�����+;3�q��z�C�Y�Q���;��>�%��PHĴ�cW*с�������x�N+[���=E9Tg��1��qJ�}KE�Ǵ��y��V</>����ޣ��� (�?{���-[��h� ����Q�0F8�ң�!0T䚞f�&B���O� ��I9��������y���U+���?ݐq�p�DJ �@���A ��(����銽l= � 42n�8���C �c�_S\����T�=s]�x{%ېp �V���{��"�|�^����d���Z���,��s\���*���4���e���g�H�dU�ʃW�ўS��z �"a��ǵw���.��4:�w~��q|�~l��I�n�k�mBX�ӯj������!���0$ը���k���"O��x�n�@�����(+?gR��f���F�.3�Z�`r~�3��kw涴Z1M�p��B1��H���z:�6d�9"�K�eݞ >�X`�c��I\�U��z\c ɭXm���5%�� �8�"x�9���f�HlKՅ9�w#^D��.��憠�"���ԭ@B��V9���M�?1^�tѿ��]n�f���8�k ����R�S�o��e����b�?Ƿ�cv����π���Gv�\�+��5KD�x\���@�&�7�[C���"կ��.�t�!�'�sҹ}V�y�:Wy��jZ|� blw W�iW8c���K *zj,L��0��s�3�����j[�9#$m5U�����ڏ+ZD�$�'Ing۽H�R��$#=z�>����sM�/��^Kf^K�ps!�8�N�Ӄ�� ���R�>^�j=�_Cx��w4��VV ��K�ۓ̬}r՞[��sҞ��88��R�DZ��T�b�\�rK�>��p���ߚ����S�2:�4�<\�����r�T���N}�2Ӧ)�4B�I;�iu��?y�y�ZC��F�Oz^�,�In^��8�U�|��判�|V��Q�W2���4��F����*��ۊ�T�7��d�'9�Y�C��P��55��T�S(�:(�9���g�� ޥFx��<#b#��(1�k�~�dB���9��p����T������)���ذs��L��b�0@�G����h��)�SZ�P@�ʚ��F>��q�|.�I⼓������>cC�������R<F������szw��,^l��&��OBQZ�TP��%p �9��F��ig�+��A�����������v��T�fRi��1m�����u6��r�8�Mbiv�[L2�d������/0<�f����M���[�c�����q6���ҳl�F�����:�0éS�}+�&�^��}0U������Y� ����K�� � �Z���'9����Cz�և:�(#;zV�� ��'�ựv<����� a��]0��0��:I�7�Ӷ�O�+��uP7 JuD#p$���&����sr��<�]��!8�j���$@zSL�A� nw�2p6d�qY�����ל�W�e�#��U.YBc������d�G�玣��s�ձq��=�d����㟭d�R��l�H�ҩ�&�����Fu#�*��1����dٲZ f;���� �t�S&�z�߇�\�[�Y��O�K�i����{���/���5���1�U ��f����f �t�eZ�.�NH����LB������� L���Z��pq�ͦ�F�ŏ��O�QԴ�X��q�]�z|P������m!�;+*�Rp�jV��mR�i%Oӷ��`ܱBK�랕��0#�'��k�Գ��F}:W,���d�vc95Y������q�d��4�%p �>� Ϙ�t&f� 㜎�����F�3�U`�m�-��*���e)�S�)-�����<���\�ZWօ����g�й���d���w�D��}=}+�6�.c?vG�ُ,��z��Ob�����R֭�s�X�C��q�"�8O9�Z��7�#����?�#Hx�י�)Wa�E} �?N�fpUx��֡�o0x&�l����̱Թ������zf�~����kֽ�.��&��]g��Hm�X�>����\�!���R 9��B��#��b*������ �-�c]�)�Gz�"��3_h����:�2�#�x�Q�'��m���k��5X7(j�����b�ϱ�"ܮ ,}*���-�y+���Yk{x����S���[�q�5��)E٣������ֹ=mw��8<qZ��bF##>Օ~D�`s��]T��Z�7�[�o�O���jX6�pO���1�09��������Q�c7̄Ӂ\��zzU�k,H� ӊ27�㧭Mm F���7T\��H� I&��[��ܓ��U!NH�[�RT7�A\Ҩ�a�� t������G���`��k'yS���ֵ��I���s\��Q1��y�M1����ۑRN�'������A!���Eg��N ^~P3���=���M��� a����J��)�*ҹI�a�2)��{�ꊹc��9�:��l��8��*Ļ���q�Z��qC��<��y�=j䏻��T��ApHm�8R*y�3�ղ�G-��j9m�'����42(n^ ����x{_��%��#��n�\l���c�*&�A�#=�ʔf�L�֧�_O�)?)#���������88��Mf� #Qُ5e/Vf� ���@��� *99<qL�\�=9�N�a88�)m^#*9lU^Ȥ��"�%��n�:�I.A�;x�@ ����R�ņ=+�g��H� c�#��u��\mb8�X˵�85n v��ߵRZܖΖ�ue�9#��I�-Xv���<��6��Z�ٛE���<{�b��2橹m�����I��J��V�<�8lx9�H�˴�)�8 ����'�*���Gjn(JMQ^.>r>�4q��k�k�!$u�U�M��^k�n��&u+t$b��O�Ix�s�}���� �[\��ӻ�%l0Bm�?�\Ǎt�.�]J�w������μ�Z���Cg0;��'��g͞<��ij����8q��_� @�`p���b�\�3^k�hK6�̱�w>��:mlz���9��((dh�;`J��~�b"un��������G�U��ۏ��듎hu1�R-T��h����Դ��4d�xlV#�����z���6�7֬>Τ��5���Ճ~�i9�ڻ)����Җ�����ɓ�������j_ �����\rx�6� ..!0=qҺVkje�5ў*��d|� u��s�k�!�QA���L��a$Q�?��j^m��pi}��e���=��L�|��k�ȡ�B;�\��|-$q1����s8Iيx'ot����H�Z�{k%��6�=�����^�����N h�c���F9�jx��SOu�j�sΛ�����O4�q�qHzqA���䜌s� �(��g��V!�s[�7���PMds�s�+��Kb^�M��3���U�t$����5k�����ۢ��q�t5���x�s��UE���t�Ia���־N[��f�5,A 3��V�zm����H�-�j����1���79�A~��[����J��vrNv����̌��}��Ko���:��u��%�sOӭ[�O�h���Һ#�\�錪�-O=���N��{֕��l)A��ֶ.4VYN��Ջ+%�G��N┴9=KI`8BlsQZ#G�F@���P�@�X{��-�n~UlV���B9̴�H�eA��54S���9sD�$�^�����ޚM ��n�w@�,Ż ߷�J�y��;�d�˃�q]��.�7���_BY�k >F3ڶ,u�#�8��覍y�??֡���H��sZ'aZ�Qw�/�dg�q�J��U27,��5�����NA�}}�B��#�jM��A���g>Ƨ��x��뎵ԟ��q�z����yl�SZ)�d�c��� �=��J6�z�=���㹪��/^1ߚNcP��ut�O#����w0*�6~��=�s����T�f ����Ϲ��r��$�y����u���,�πs۵2A���j/�V+Z���-���jp��E���\[eaG^�P�% N���.�B�8�U�B[z�����![<c��db��c��*:3�� �0�溻==#�#��G�=+8�dH �?9Դ�����=ri+7�J�+��AW�8�W[;������3�+�G�r�ŷ�O��j&���j Yp8��O��m�XGޮ�Z ��z�¹�؝���5�4o��3�ߥS2�H%s�4�v�o����C&p ?�X�km�J�rpO�S�݃��qS�\����i�`�A���7'c��p�F�<�W����c#�v���4Κ� 9��z�kd �s����4Ee�f&�Nx�@���kv�R�N�ɮ�S��ܠ)�W5�ؒ�A�z��aM�G�m4��n[�+��m�:jo�2�+��wJBc�t⼫�^��`�O@:�5�F��N�J��Vx@��?�L�k>C�^�<,��� t⡸��.~L�/j�y��c��h�D/+�qҘm~nrsһ���?'g�5�y�l8����iz����A�(�=GzUܭ��=�b��Ӱ����<㧥uª�!�p���������5��>>��'9��p��?>�5�\%�M�c+A���� �1]m�(��5�����t�k��r�A�ں�2�u`�<�����No�����Z��2�H��N)S$6���M�۾2����(�܀�Ϧ+�Pq��rY88��:��4�A�<�ʑ�ǎ�ؘ�!�J���/\��zqZ02����uϭP�ǘI?�j�R�I�Q&H�~}nsO���2���<��Iއ�ڑ#B���8��4�$1 ���h�dt��GJ��W�:�^>�Ҡd������W���� �2rH�����;�ҙ<����qQ�8#�����z\��L��;u���1�3�ڪ�ɸ�g#�;~�|�ێ��ҕ��3�N@{t2ġT��U�y%�F:�����S'g��3o!�ң�5'8��*f<����099��ژ�)�Ca����6��\�{t�&����'�=i�����0q��jԬ;�2���d��Zu�|�<b�����G{d_���۞�� �jÜ�RD��۞s�*��6�#� �L�enT;t�9�x5�͌qL1`c9��!X��뤒��?�}É�ʓ3��:�?�[�&_�Ҕ�+��Z9,7!������i@����y���;��J�`��)(قe�\�r? �rTd�⧄�s�I4!��|յ�_R���?7�G1;z�ǭI<ArO �9�w,0rx���@ʗ� ��U_� ]N1�*I��!�sR@��I�¹*4tAX����匳c�����l��W�Z��!���:՛�1�S����tj����W�r�q,Lq��Ey�[�þ�0qW� >2���\���]�|*A���Ʊ�Bk�^9CE�� �vV�I�:��j���^}O�V[�1�e�T�4&�&��Īru�UN��.�g����Sv���֯ B�`a&{c���%��ѓ�iȐ���qXqhd$G����]��ݝ���r}kJ��4�G��R�I��iw7���ʅ-�Y>��������NM���:��DF7ƹ�G�bī��,|4���u�3��M�Ȟ6 bs�F+ӯ�8�L�����4�h�Uϯ�/��b�����x5X0G^+μY�Dh_1��⾧��� !;zW�x�D�Ċc�?�j�C��:ib.|S�;Ík3���zc���]���:澤�����:F23�:�͞$�6��\�{9^'�.tN.�iTFY.y����K��!nk�<�!�g�בK��{R����ٔ�4������F;�0�����Lϔ�ןj�?��"���H�^anH0F �h�AjJF�;q��Z�YڒG����R=_èLXQ�@�]���f`6�1��<7o�:sȮ�D�AF�z�`�������vc����u�;Rz�8wIX�h�J��)�v���ޯN��'�(�S+���ϽtV��h뎝듲��� @�����æF �m"Z�z�`���O��d,J�t�OwU�b�ݖ�Y7�7E<�ո�gԯz��!~a�u� 7AבO0�����N��H�ASf=�*���N���[�S�rzzѸB��∣,O@W��=I�_N�C�<բ�܌�EH���\�s�멢��)�zq���$&�I">R;� �]Ò9�)N8��NG��i��S[C�S�jE��8< Ў,�:�~t<aN:�9�]�,�7)���Jg!r ����F1�U9Ѓ����M��5� �AUnn�7率ޫݱ�H��|�M�ӮWr2}�9Y��^|�\�Oo.�$��V� �I�$�ѷ�霜�>Ս����G~+J�ݺC�yGE��L��:V����9�T���x��Ƕy�_ؖu*�<��V� ����r*�R�+����ES���;��lb���J��a����ZҿF����{��e���$���Kr�0:c8�0]��F�2:g�X�:�� ��0EWiٟvH��ܯ�v�h��e�pG��Y�)B��$�U-�ʈ��nSֲ/�G�y��Rzh#3Yϒ��מ���m�����W_�K��8F����> <����Oֹ*��7�����r�����з$nj���N���( ��3�Mdѭ�(ă��ҞIٖ�;�^7]��t�Zt� �Vt�+��(L��sӟa^�eX1��Ҽ��o�a=���\��q��D�pwҺ�/tʳ��1�!�m�{}+&��p;�H=���� A��������S�P9�02�s۽r^'�VYr"����0pW���� f�2�<�+�祇����� �v�5B�A�NP��j��`���W���X�3�����wƥ�!�<<����A�T���d�+�/�d`���=OE��l�`�c9��qgDj�sµ� �X���cT�3�c��5��Y}���x���\���k��-��h��!����`T����C�@�vZ��ۜl9>�N�D� h�s��z��A�S���+�h���[�6�� ��Si�yU�p8�[z~���R~��W����q� ���n�;��]�鎕5��FQ�=q���:�[M�=�<W�R���E�`� ��^�Buh��w���$~�R���V% `q�j#;;�h�' @R8��i X��'����$��#��Ur�Q)`��Zs�TIq$9,�u0OC�:�W��g-�ǥHA\O���]�BC~Xf`UOn��S�U� �4�� ���Tr0�W��z�We�YŰ�g�9�����]�����c�`t�o�d(Fӻ� ��$��1���pM"��� �@��Q�pZ�C�,r8�2�F ���;��zVrBd�'��js���ބ,1���4�����s����͠���S$�w,A���ґ�#�`��Lt��}C�ϕK6F��Q�g�J���O�Hb!Nѐ?ZӟPM!VU�=���qٽ�y`�F@�9��GR�0��ݷ�?QN?x~4Q_�t?8$����o�� (�{1���?r�Z(���<}�q��J(���Z���c^�?O�E���C��'�}j���ڊ+���M'���VO��?J(��������U���(���i�$_��N��T~�QK�Os.��y���>�E��^��c{M��O������]M[��z�?֏�V�c����֠O�� (�Տ�C�?����^y�?��O�ʾ��v<o��x��?ʾN���!��(����O�3�����W�=�B�P~�RF]��Q�QE_bz���Q^���<���E���D�2��H����WU�����֊+ƥ� ��Ɖ���Qx��=h��J{S��x~��S'���4QJ�C�5_����H�t�G�!������jh:��QE_�%|"���_��V��=�V��:����QE5���t_}��ҥ�����QMn���.[}���#����=袷��"z��uQ��������R{��}��6��?E�B�f��:ч�=���4QP�#C����yU����US�Q/����]��Z�C�袢}}JE����Z��'���E�P](>��WS�/��(�����.E]G�I�>��'�_��QED���?�O�+���ֿ��:(�>ѯC2O�~��UQտ�VOo�.;������w�� (�E���ٻ�E���U��ǹ�x�EwQ� �_�*jOҨI���(����!�G�Y:���Ί+ϟ��v;��A���*d���(���u-��ލYw_�?ϡ����� ��W�>��x��x�QEr�s������?�Z�m��� �+�u44��?Ӄ��ErT��bh��������}(��'�� ?u���[�E���?�ҩ��U��E�?������W��d�[�h���B)�������UC��ċ�i.��������n4V|�i���V李 ?��?����o��ܢ����,G����Js�S���Ee-���o�)�}����E���6?��T����?�E��=��*��ESٍ�� |
| URL | http://zero.webappsecurity.com/resources/img/main_carousel_2.jpg |
| Method | GET |
| Parameter | |
| Attack | TRACE, OPTIONS methods with 'Max-Forwards' header. TRACK method. |
| Evidence | |
| Request Header - size: 288 bytes. |
GET http://zero.webappsecurity.com/resources/img/main_carousel_2.jpg HTTP/1.1
Host: zero.webappsecurity.com User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0 Pragma: no-cache Cache-Control: no-cache Referer: http://zero.webappsecurity.com |
| Request Body - size: 0 bytes. |
|
| Response Header - size: 351 bytes. |
HTTP/1.1 200 OK
Date: Mon, 14 Mar 2022 07:13:43 GMT Server: Apache-Coyote/1.1 Access-Control-Allow-Origin: * Accept-Ranges: bytes ETag: W/"112646-1358497020000" Last-Modified: Fri, 18 Jan 2013 08:17:00 GMT Cache-Control: max-age=2678400 Expires: Thu, 14 Apr 2022 07:13:44 GMT Content-Type: image/jpeg;charset=UTF-8 Content-Length: 112646 |
| Response Body - size: 112,646 bytes. |
����JFIFHH���ExifMM*V^(1f2x�i��HHPaint.NET v3.5.102013:01:16 15:54:14������(HH��XICC_PROFILEHLinomntrRGB XYZ � 1acspMSFTIEC sRGB���-HP cprtP3desc�lwtpt�bkptrXYZgXYZ,bXYZ@dmndTpdmdd��vuedL�view�$lumi�meas$tech0rTRC<gTRC<bTRC<textCopyright (c) 1998 Hewlett-Packard CompanydescsRGB IEC61966-2.1sRGB IEC61966-2.1XYZ �Q�XYZ XYZ o�8��XYZ b����XYZ $����descIEC http://www.iec.chIEC http://www.iec.chdesc.IEC 61966-2.1 Default RGB colour space - sRGB.IEC 61966-2.1 Default RGB colour space - sRGBdesc,Reference Viewing Condition in IEC61966-2.1,Reference Viewing Condition in IEC61966-2.1view��_.���\�XYZ L VPW�meas�sig CRT curv
#(-27;@EJOTY^chmrw|������������������������� %+28>ELRY`gnu|����������������&/8AKT]gqz������������!-8COZfr~���������� -;HUcq~��������� +:IXgw��������'7HYj{�������+=Oat�������2FZn������� % : O d y � � � � � � ' = T j � � � � � �"9Qi������*C\u����� & @ Z t � � � � �.Id���� %A^z���� &Ca~����1Om����&Ed����#Cc����'Ij����4Vx���&Il����Ae����@e���� Ek���*Qw���;c���*R{���Gp���@j���>i��� A l � � �!!H!u!�!�!�"'"U"�"�"�# #8#f#�#�#�$$M$|$�$�% %8%h%�%�%�&'&W&�&�&�''I'z'�'�( (?(q(�(�))8)k)�)�**5*h*�*�++6+i+�+�,,9,n,�,�--A-v-�-�..L.�.�.�/$/Z/�/�/�050l0�0�11J1�1�1�2*2c2�2�3 3F33�3�4+4e4�4�55M5�5�5�676r6�6�7$7`7�7�88P8�8�99B99�9�:6:t:�:�;-;k;�;�<'<e<�<�="=a=�=�> >`>�>�?!?a?�?�@#@d@�@�A)AjA�A�B0BrB�B�C:C}C�DDGD�D�EEUE�E�F"FgF�F�G5G{G�HHKH�H�IIcI�I�J7J}J�KKSK�K�L*LrL�MMJM�M�N%NnN�OOIO�O�P'PqP�QQPQ�Q�R1R|R�SS_S�S�TBT�T�U(UuU�VV\V�V�WDW�W�X/X}X�YYiY�ZZVZ�Z�[E[�[�\5\�\�]']x]�^^l^�__a_�``W`�`�aOa�a�bIb�b�cCc�c�d@d�d�e=e�e�f=f�f�g=g�g�h?h�h�iCi�i�jHj�j�kOk�k�lWl�mm`m�nnkn�ooxo�p+p�p�q:q�q�rKr�ss]s�ttpt�u(u�u�v>v�v�wVw�xxnx�y*y�y�zFz�{{c{�|!|�|�}A}�~~b~�#��G��� �k�͂0����W�������G����r�ׇ;����i�Ή3�����d�ʋ0�����c�ʍ1�����f�Ώ6����n�֑?����z��M��� �����_�ɖ4��� �u���L���$�����h�՛B��������d�Ҟ@��������i�ءG���&����v��V�ǥ8��������n��R�ĩ7�������u��\�ЭD���-�������u��`�ֲK�³8���%�������y��h��Y�ѹJ�º;���.���!������ �����z���p���g���_���X���Q���K���F���Aǿ�=ȼ�:ɹ�8ʷ�6˶�5̵�5͵�6ζ�7ϸ�9к�<Ѿ�?���D���I���N���U���\���d���l���v��ۀ�܊�ݖ�ޢ�)߯�6��D���S���c���s���� ����2��F���[���p������(��@���X���r������4���P���m��������8���W���w����)���K���m����C ��C ����"�� ���}!1AQa"q2���#B��R��$3br� %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz��������������������������������������������������������������������������� ���w!1AQaq"2�B���� #3R�br� $4�%�&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz��������������������������������������������������������������������������?�.�f�Z�4��Q@���4�}h�����(��(P(����ih:Q�i?�JZ?:9����(�@v��P߭��K@9��S@jJ:�w���-'n����������4qG�����ʌҚ?J?J^}h����"� ��zP}9���P(�Rw��4�i�֗�w�(�����zP�t��4����*?�J?:�9�x���PG����Lњ?iz�@ ֔�=i)G4���ڊ 擊:�Q���z�g�)A���%�2hh4�ю(��Z)(�����u�w��w�Pi)�ܚZCGJS@ ���(i:R�A��i���h&�����>��ޔ� Z(�֎�rhM&h�Gj�Ҕ;���}h�i{PqA �JJZA�R�;b� �G��s�J8��zSހ��f�Gj3�Gn)i�^�i:h��x�&��Z(�)h;��Hz�G�h�������@'�KEZZY�*�X�;����1FW#�`V�G�iGkd�,]�3�b���Y�M�f�RqO���&q�@�Ն�ld�el���R-����z�i���x�x�V���Z(z�@��մU�?���֓��2��E�}?Z���R�@ GlR�@!�h�x� ��~|S��ʁ�U�c8 ���� ��� �g�Q`+�d��ir�� psQ:4g�O�����P(�S�-%-7�����E�-!4R�f�})E��Ԝ�R��FOJNԴ~~8��4Q���)�p9��h���v��?��x�PA���zӨ {R�QHiGҀ �? ? Nؠ��_Q@��G�'�(��4R�����}�M-%%-���f���3E(�����:��4���PsK�Rc��K�4u��@�i1�-�ڀ▒�O�G9��Ҍv�ރGjA@GQցG� � _jC@�1GzN�(�:����@�P�JN��i(���t��J;�ޗ4���A����4�Ҏ�){f�����Jh�i(�JI�(h�Pϥv�f����c�@j8��zs@ �(�Qޔ�P�_˺�\�#�[#���}E�[����Y�t �dS��R@A������ާu�Hl[|��;D��p��>�ތ�tg5���G���ʹ�w�߃ב�2&ѡ�w�!ך�?���k/��~�h�Y��V�#���h6 ���?9Ht6 �n �M�ς�N����4[�y��ѲO%��=;֮��#�>j�d����ñڃ��?:�$�ߖ����W�x�E���ba�^{����!v6�vCg����'{�R�- ��$ �xڭ#ˊ̽���,T�'9�����%�p�.��G�늡��RJq��Y��5�'�Z:U*�*A����A@��t����g�.9���~ �<I�Mw�����)�2J08L����ך�����7�a�XO�]�����@~��m���ln<9u����\3j&D��mWb�8���8�"��sg�����'KW���z*j6���ww�� zsZ��L�ݶ�ͫo)�$�t(P��N���y�:g_'�� }���o��Z�K�=�Mυ�JZ&��<���W�3�k�/X[���?-�k����Z��G�u��s�H�t��9��+q���˫R����<��ΨM�~�`���!nM>�iv �91�ލ�v� P�!F���{��[n�}����͔�����RmLo� :Qۥ�H���Rf���P:Q�((�b�):u�#4PT�ʏsrH#GuVr>�'��S4��dS@{G��g��Ѥ���5X� �k���=8�?�t7�Ǥ�k�OGt���jv��C]����=:��:F����mܯi\B���ѱ��#�W��Ң���n/4Fu@#G�d���G�z�:�QIhL5?=<K�c�φ�Z�ÿZ2u>He��s\�Ɖ���ݫ.rf��>�f�������Oo�Fe������ ���_!x��Z�7�I|�-���ZI��d��9yp��j��*$H�w;9�}GJ����s�*��Y�V��l��FTZ�pF}���0�P��O¡������RsP��sG&�Ζ� �?*Z(�����-%-�(�G�� �I��pSҚM�u�q�.>y��dSŔC�;}J|� "�ʴ%���g�����Gu��(�`S�������2�;w��ԩ��f�CKIE q�E&��@j=���Z? :�O8��ZO�����i����h�SG|Rs�ih�� J^�PzQ@�旷Z3�;w�G�A�- ��>�w��9��}i9J>� ^3Ҁ�4��P(i;��I���w��G�@�<���4P)G���ڀ=)(ϱ�� �=(=i>�dPx���ր�q� �@�� (�ހ�� -&;ө(�P1�"�1@IA�ހ�����PG�n����g��Ŝ�+%�l���Yd*x �Dנ��P��%��tmL �bIܼ�µ����^���A{x�L���d�X�f�O���o����4��鮺w�>'D�Qg�8\�o�2?O����&��ƛtdb>Ԟ)�ء����q��]k��[��е�CC��r�y=�Y�2��Gþ?�ԅ���Y���υ�{�GJ��I-��y$<�U?�����1agp��&�`�1�\��dJ�]n)#�ek� ���v}�f�fz$e�Kyd������#_--�=N[�⬬#���E�-$����۶���$�0"��n�-��^R�ʼn�Ozm+SsR�t�RP���4f�Ҁ=��Dԣ�ԯ�&h�;�)p��������+�7�o������z���imƯ���c������f�Au{|�c̫v�̌�VE�"���;����=#�_����3�6y�����Һ-x#8�L_�^��i�km'����Ɣ�c���6e�����C�Q����þ$�vJ� ��g����'j�\鳫��GԖ%�˪��e�� �=_#�T�ٌ���-�H�He}����6������,ҟ6K��U�>��{z��\�r<� �_�n�H�'�{�@�Nk"����K�tH�ʲh����O;� ,�s�_(��8���I !�s����I��I��&}i{Q�Ԅ'j? _ʓڀs��Η�E��>�R�ZN�R���ޕU݂"�v8P;��P����y���"��G���a 2�*��:`��W�΅i������������g} i�����mDK4�z��1F��>S�e�n��o�f�}&8��w�%wI%��;��+F�B��������CD���R������c?�O�Z��z���aL����17��zW��uM����o��i2Z��`� *�#��,o:\+��$K�0��p�p�)r<�X��|��G}zu�;�V$�3��K�Z����!w��X�X��θ��N?����2�H�(E��(�X��nr�8�*��}й�mƪ�{�1�����@�A����֖��@�g�攚%���p+ҭ>x�T�T�<���,�t��3���������$ifH��p��q_Z|�7�C�.�e�]��'������0�M����ޒN�3�j�>x�g�<e�K��<)�h�`��YI �p�6����>��bW�G��[M��H_xn ���n�d��[h��5�_|7� Mnf�Ҽ7s4��2�B�PI�J �)Yligk������Ԏ�l'F��W�����]�ˈt��A��l�ܚ���R?��vW�qC��-Na�w�,6�����^�$>x#�^֚$;V�v}�+b7�����jo��0����V`������AK@�@�ގii(�E���:�𥤠<�P:�Gz(�G�A���֎��c� J(Ԙ��(<�E�ƀG�QZN٢��G^�Cҗڂ3@){�ފJZZ(��E�G��K�K@ �E/zLPE�(�@QHx��I�4u��Z:R��AҔZO���z��撖�}�i;�Gj:�{R��h��u����@ZZm/"�ƻ����x�g�y`����>b��1�}95�q���g \h�;����jZЀ�7)�COʮ��L���(�+�˫|=dQ�m_O�&�]�>��������!m������t����I�?�~&��_,k�gbu]y9邱��u�Ɨcc��f�9pYP-&�pc\kY�ӵ���5��r��[��7�i�L�F{n9���<Cg>���Łn<�c��+��,����E��t��;��p;W�j��y�Q���vK`v��%���$�d�� �{T:�Dm�3M&�@���:�x1ϕ���SP�l������ϚĤc�.��B��j3O���#�֣?�&!ԟ�4�� ���N1@��[[���\���L/UVUP�nΌ��M}{�U����5-ǐ0u^�S�3�2G��Z�s�b��j��$�"Tā��w��T�j�_���ɢ�������"@WV����}��3����D��Ƚ��]�O��x�RF ����I�7�b+�O����Z�>S+1&ي��'����~#��M��M�ϋ�����֬L��7� ����|w6��,v��l.�q1�����S����,��n����f2��k�N�v���X(�1]�&���%�19�%���s���O��$��w��רv&�N��O���oƨ� �tʮvđ�N���˓�Ε���<��G�A��B�((��ր�4PtiM�����qI�|������[4�|i�YK����eh�YSvY������c�k[o��U��Զ�6v�h��VM�nGpz�T~$)l}��� ܇�i�-�(��ppy_�s��dz��������|�b{_*E�6(��\���>�8�o�L\d��s���W�v�J���>�̗^ ��G�����&+YL�ώ��6��F@�]֗��;�'�|��K]s�R;[ڠ�)0]�߯��:X�Z}�A��{$%��u5���~�+�? ��<7k�b������HR���X/|�fǦ�A���&���ܮO����Z��Le+��v��?�zȻ��� �H[�+����c���95W5$� �~���`��4~�~4�� 'zu'��9�h>���8��4sá[_�WP�nc�'�ý}e��U��:u�z^������$#�F g�����Q����[i�EPބ�3��ᧈo4먴�XY��Q��1�Ny��R+j{#��k��=1��7��0�0�l�ud��+�.1��5��|K���f�?iWWL�C]�G��Ry������Ť�(��֗�M.B t�����q�L[2Os^_��_�Y�Q��3�;uMc�wn>����Z�O#�.�4����O�HNҷ�b��gG��7;�o�,?�uZ�1$Җ�����僴D���k?g�����rē2{rj%q+X��>̊T][�m�<�γ.J��MZ���Udܿ�E�V{�NMK;��R�"E!ϭ-��sGz`ڊ?: ���R�@�<�@)��� 6�߭IJ2���MH- #��}��k�^��N�9����;�M��.V\^�dZp�s�G?�1�\���<,����)sN�>��i�ך %O �Ҧ����T�b��]�GP(��!�[6�,��b��\����r�Z�Փ��`i�s�N)� �AǭKqC��9�ޢ��N�sCR���X}ix�R���J3ޓ��)X�������G=�{�J�<R�b�O�Ҋ��4w��)?���4�s@� 8�>�dz�LP�z�=3GJ �Ps@x�����piq�Iב@G^��J@h����K�'O�������|R�n2� 9��W1[�t��[�PX+�����Y��R7c��L�}��Aѣ�����G�����7G��w��oi�`�-[������k�����J�� Դ��B��#��N���!��W�Z�I��O u��>V�0��?����[J)�A��<?�džd[����Ò/��C7�d0���.�r���pv;�\�}��P�<���$�n�&�,�!��>��>+����{R����?��C^�M�r��m��-�w���U[�i����F3(��5~�&,f�F�2����%�d�aq��I>T�-���?�b4r�+���� [�#H� '�l�S5"ZJC�Qۊ1�SX��s#�RDk���������q�]�$�$- ������ĸ�+��2iږ��}��=�̇��7����7��|!�,�>"�[;�x.|�xa����w�C?k�o���Ҁ����.�Z�O�M����D�?��5�ر^�γ����h35�Z�P��Z�b�Eok�x���)h�E$ҥ���H�22�t?)#��}�㩼Kg�ۈ��=:���u�c�0�?��7��4�da�������G&�-Xڥ�<f��;�BM���6���Yw��ˤ��2O��t��t�c��+�6�/'𬻈�T���C��9��Y��W��^�@��jGe����z��MX�l���T��(���ށ�!s����t���d8��tY���ӄNF�Ҵ���v @��2OO�]m�a��nG�ҝ����u����EE42�G�!=2+�����4���9@��:��/�Ȋ�$�E�qԽG4��$����L�j���Ҏ�~��S�j9~!��j�]��n���,k��e����c�z��i%ߌ�K|;q!��7��`2�ԎG#�]5y-��~ ���6~\?ĝ*�9�>�~bc�+�o�v�����{�#|14n0��9I2_����/�K�Y_[�7�'�f�`"�X���s�G�����<9��r��%�yP�?��A�dl3ZMj]=�_��I͕����I�Gנ`��u� �I�+�|�!.}~��_|6�}��:v�'h����o�xι �s�d�d���=>�����%�g_iSE���\d3?ʺ�*ż��[f�+���,���-�~f�g��;�W�٬JDW�Ċ �B~`��U��+��������9��v�H��)i1@n�b����F-��)�Db�����=������ai�X��d��ox�'o ך,^z�8�}�g\�����}>[y�C���y�n�9=T�y��_8�z�/��G��w�X̊3 �͍�?�_��j��L��b�|;,I:|>խ�#�/|-�}���o0������0 "���Ϳ��D�L^ �~Z��>���YH�W�|@,/���)��Oz�~2뷶L"d�HJ�Z֞Өn��Wh#ޯ�SK�S�|Q�ffm_K���� ��?1?�p���n��0:!��������V:s�Le ���/S��8G�C�"L�I2S]����ˎ�FN�U��؏����D���=���Ա�:?�*+7�R~�5*Z\7��#�I\D4U��.XH�Bj�Ү唜��y�?,M�t��U�g��ϻ���o.d�c#Њ.��4���ڒ�zb��t���y/oೋ���cRzN9���WI��+� ��\�\�7�i2@�I�*���'����A�v�����F�a,h�5��w��ݐ������4�E���Ҿ,j�r��&���p�}3���Z��%t��f�Ş&����R��x��I�;~�k�Gĺ�Z)k��Փa�/!�n�Y�O�[OM,�z�|@�����Ǻ�������ds�z��k������EŜ��6c���+�ύ~ �f�y/��L�&Xشc��K�^�}Q����Dp�@Q����ڊB{�q��{����8��?ʝ����1��1�W�S�*���0�e�rs4���0i��,��d�� �����l��>Dr�_/mgE#E:J��\����Gz��yf��F,s��~����}W���|�x�U�q���x].R����GV*~PW#={ק�_� k�³�-���O�� �^�z��u�V����dd�;�#a�9�I���J��%��R^�s�n� ��nq�֍ɕ�~ ~�>��O��#�pB���X�}�=#�#�'�{]>v�z��m�?A_X|a�:ls\?�5�8�0����������D"y����x8{F�䒢�'k�RQL���&$�n��!w��e_iw!K��p �!b?�k[�%Ԓ�jx�C*��ӭ`__<��ى��g���j�2[|I*�UVb=*y�}�W=��@�jv��v4����JҁҐ`��1@�ڒ��0�(��)Rs@4w&��!���'�x����ހ�SҊCӵ0 Q�R�QH84��ΐ�4������h�' �-�sGCE!�gڎ�P}(��?JQ�V�=SPѵH�.�Kk���D�=A���3J(N�{g�O�3⎕4vZc[\Ƞ�P�f�������������n��K9��������k����Cq��2��H�9��٥r�2#�8澯�K���@�I|9q�uW���z}�O�kx'%vE��^��}��I��i�vy'�* �?w=kμW��<��L0q�Քs��_n]x�X�M�<C=�ʧ���H�ă^�M:����<�X�-4Եb=Ǔ�j�l�����Z�$ƶ����{~u�qw?p�nHPv#��\���z��[p>�(�W�@7P/?���e%f[NP�-�+��S���<�]]��{B�hܨ�����\��FY��c?t���+b��iG�=�����n|d�{(�&�ɎicW�#5��{7�oqi'��/Q�������\`)<���}�ȫ��=����𦲮_C�R�8��n18}Q����J��<]��<;����=��a5����E�'�&}�¿�c����*��0n����_Y���RD��9�>-�~)���[^]�oĶ��ُS��:�Wq�>��\�����ً�⎃�ZKi�im@�g�+�&��PW�?��jRO��%�1�WQ�܃��S�Q��w��<#�ڇR��� ��JGZ�?�h�I�]U $�d �>��|+Be�R����>k���n��N*ɕ"�`N�h����?Ϋ!"�X�9�k;V��C��'m�˸�3X�F���l���w2\9��B����CἺ �Dv������6P�w��>���+�_����b�h�����Oi��b�bb����"x���W$pA�ֈ��[��|A�ƺ�O��K[� �VF{w�Źq�Jķe�1l�op��ps�&�M|)���7VM{�^x�A�@}�v�g�Tq�H�G�?�q��m���4��Hb�����\� sK�F�6�-��MV4$^HB��s߿"���,^����>���?tJEY�U�C�c1�M�p�����o�ZK�����g�:�vN)���a�V->*��d�ۜqY����œ�a1G�ߌ���^�F��c���pE��p�����V>�y&�e���y[%�]v������jn� ��}���g�4Է+��l�߭Gޛ$Zm�ΐ 9��ྥ�i�lA����10���*s�g�J�k�e]'L�|Oy6�cqqB5�KfİI�CG8�Ү �&[_�ּK{�o��i)\�Ϧ�y��,?J���"����xV�������9& :M�K��^�� �Sk����5�z��o-�i���H���i[�1�U��\��֝���#����2���Y]��7��m��a�W��7:{T�gR��#�ϯޯ��2�)��;�oar�]9P��Dc�^�:R�$vP$jO����:��n�!�s��H^S�%�<~�\u�Mg]�E9A�G���J��-�9�x �K��Jʾx�O��1-b�e\����<db��n�\�������18�斵�1��ir�m"��qG�1<�Ȧ�b2\�ϦkB�I�'æ�J�|���G�����A�SӅ���~i��#��pif�ة�ޝI5c⎑�c�r}�Zе8��|�O��=ə��V�.��kC�uѯ�y�G���jd��)��\�� � �}C�����,���{x`Ǥ@����\Υ���HP�q� ᣴ���>��T�`s�[��g��}��5nș��%����C �K��Rz����� Ym�u���]�T�����+�n�v�����cF-�M�F�T�����:խ"�H/���[q"���W9�E,s��ʬ0pz)4�!���Hу�ym���О�g�?���BS�x��̪A6z�=����N���W���� ����b��=@]D{��q�����i�j�0:WďnU��ؘ$s�Ԝ+��<��Y���j��U}�Lxo;B��Rx82���+{]�v��~&��K��w� �f�g��`۬h-�(=Z;pO��\���RɨĿݕQ��=�2�mBV ����}k)�h��[���,̷J�S�C��L���a\yq������|#C��5��r�]��0.�H�3���g�x[�Z��Phs��2j�pS��� QW@���[�#v�S��Gr1U��m�#�b�>��=7�_��i~�J��d�icS���Tz���~4�xC�$];�։l��A�*��'��N-��:rJ���7ko2K,���F��#ӭ>�ff���HP8\�ںms^��-t]*���@��(�9�j��C#��6�#8���Rj�DXYeo ���ZW�u8�k�צ3^\�n#{�Z���I9���5�|Ir �q���m ���)��@O4A�� C�z���/��hm'Ak���S����@���=?�w���"��E֫�Yĵ� {�xtc�G^�ך�|B{|�k�>Q7����6��i��TU=>_�<�+����Oy�Ig�7QE|�>���';�����~ ��E��6��闛��o/��207`��;�����h�jj^$��h����#�!W�#�\���"�������g��M�M��i�nߐl~�>(�t�G��N���~��z��h��Ć�� 33e��9a��'�Z��c��D�l�'��H����mL�R՚�G��k`��H���&�� 5�7�r�ˏ��F�!��S���@.{c85��갴&?-� ��l���3�ұe$s�.C��<Q�T���ne۞��b=��N���)4��4��� �9Sv:0#�Wڟ|:��$�M-v���Q�g,|'�/[�]�p>��[NLv��h����A>���+o�`�Z<��|�a�r�V�\��j;�w����m͕��/Ai���{����_0�D�4�G��Φ��L��<�r:��?S]}:�G�B�����|���V7m��q��H�����pi��4��Ɵ�4���|����fM�ڛG�%�DGb��8#���oN�^B��� 80>��d�D��IaS�?��b�OS�9Tx�;E��T9����^8����)��<��F��jU;s�͡�� :���9�:��o+H����2������h��4 )ڲs���L֖����uo ��v��+�O���~5j:\WG0-ԟ����3m.��*ґ�$�'Ў>���O��2�Q��Q�wV8��4���Tv��洚(]��t ��$��� p�A�(�-���+�:��*#[�� I�ʅ�u�c]0i��@�L�C#�A�GL�QҤ?OҎ�g�� ;��4���0 OjQ��'�@��gց��(�zQҐ�c@<H~����Z)(�ZJ9�8����z�JhLb��Gj^�Rb��R��NM���3� 2�p�0���'�|E;%Əgx_;��7R�uP��� ���Q�X�d�ծ����%���__|-:���q�:��m�?�H��g���E%��������>�c�K�2p��o�뷕W�S�:��d��5{�1殥�,l���'<w�d�l��m]Yit���&��;��c#1�W��e����$�U��6�~Y�<�[�)롷C�<[}w-��.�f�B �n3�W%������x�9�����Y�Os����+ϘH����a7�5٣[x�R�-�����?1JWؕkm��22���������:��V��%|��j��/�z#� ��� ���_Z�Ziq��۴ә�|��Z�be;ep����J@���}��Ž����w7�b]^�/6MSH���R��K��uO>{yI ���[^���ic��|Y�����U�7c�7J}�<��:�ֻ����{/�u;cD2�� ���s�qҽ.��wz��2��4�K9����F�9�(lwV���i�n��ׅ4��&y���Zs<|s�پl�o�jpVw Y�#�߀^*a�4�_U��h&��!hN!����K�CY�o��Hn�#���������� ����� ��&���5C"`�K���+�9��o�_�������W�������W&�ŞQ:y�s�sT✮� ڍ��?n&�o:��kp��;Ę9����� �.��\N�."^��v�W��q3l���'�-��3�@��W�x�B�w�Y�� ��j&E��vi��R�.���1��P֚7�[��E��ߏZ߇������39�������;�Or�1�1,x��̣��5��kT�k�D8O�F��s�b:�ڴ!����oL���l��pi��wZn�:˵��X�Щ�w��i�Y�KM��> x�,�Զ:��|���o�a��������<��Gm��|Π��>��^7��6��-���kk�Go��w��W��V�ĩ�]X���. �ڐj����?� ��3j6g�|WyF�+�ǵ��m0Ǹ���2���IJ���j�B��֫5�����H�B"����ȑs�;��na��X IH�by�E9�s\��"%,���*Ҝ�ʢ���F��>8m��Q�~�պ��<��6>����O��[g�;��0V�ۗ�����@7��s�''��t���!YVT�C��B�i�]�ʌ~�����O�v����1�B�9�����͇��L2�#��(� e�����rr��q*<dvpA�kw�|�E��[%�r1�c>�H����UGF'��g�-R�H�}KQ��G����c�,_|��a�SZ�C�&��4���G���q�q���n�<ֱYG�[�S30B��n�R��E�G{{�y��W�Q���9�̇=z�T�sZ{'|SѮ�5U�����2�井�z��<���'մ9���������n�1^��Y�V�y`�<:����HX0=�xƹx�Zt��X���յ��m�s��[�+�ڌ1�I�y#�X�v�H��k�ܽd�ɉ�Sda��K�]���s�ndq��s�2��F 9!���=*l������鍵�H������4���Z��B���UQ���P��|"�nɎ��mD`Uc��RI����w��Ƶw�=��:�O/�����?Q��ǰ5��1��l�P�g=9 W�|8���� �����Vy�u]P��Q�s\$c�kK�:�!K���<7)c<�r$��K���o?Z�WQ�n"+�[�l ���F�g���1^��@�Օ��]�|-�c��v�`e��R$s���5��]2�x�+ҿu�b�Dc�eُ��M%��&�w�gw�<΄�oe�rq��s,V�b�Aut���=j��Bt�Y��i0�mΨ_�$!��G1����C]�32�q$���\�#�A�{���٭�ŐZm��(���H��?�~k&����J��'��c;��Q�[;x�k����wvv�<J��\�������╻�s���D��A�f����(��7}��U��w\�;Fz6#�]}u�V??S�-/��s:��v퓀N~�i����դ�L�d��|�~�U9.�z�_�)o�O��7q�Am'����үX}�K9M���`-��T6��9�弹���"8�ۃ��nq_E|)���=�+�^Y� �����q�7q^!���w��]�2�����ӭ{���5e���j �.ؕ�m�=�88��� 9� �n��S��$ҼC�$b�9Cj����G;�=9�2���B����[��k�� ��Ns�] ��3��{�߄�Ì���&{)bO�5����r���OM���_WF�N�:�Q.k�j�{�5�$1�'�}�HБ�*u�L����#s�6�s���?!ֺ�{G�|�DK��I!z�����wY�m�^�گe���e{��mh��-ˆ� a���*˽�%���dJpώ��ֶ�c�i����-��I�1YZ��-�,)�n�+��ޥ��=��8�g���c%N�+�Pz������{c�����'�,uz'��ya�;��d�Ʃ/��8� �?{�=�v-�ܩ#p�2��������O�����i9��Q��'��۟��B[g�ִ70SV�a��HW#��^���#%�4Z����>~���.}Ƒ?�p�>"oX�����rl1jv&H�=��������w���#7�5-�kt�8'���?^��\U�.2������"����v���<?�;ڼ�X�4u���k���nZ��i��?СA�������¼���L�p�+�\�.?�?zRH�f�b-&Ԧ������� ]��pv��ק��kU�X9�ure����w#g{7=6����`J��KI����5�'"5������ƻ$�op�R��]�iu��-�Y�+�D,��9ǽ}���Z$�����}�"w�@Z�cJе����H�b>ceq��?���L���T���8��a�4�}���:֑��4�wgӿaK�y�D{�|��L=�寋6~&�f��02��c���ǵ{/�-]�1��S�ȑ�%h����}���'��Eԯ���|5�n�����Q�ܹM5���!�X7L$#=p���3Y�W̸�LI ��]�/�[2G�[D�x��OMԒ;���Xz�x�q�8���=�ѕ~Z[r�i% �Ȉ��i��#nߩ���z���>�Ԧ�>�*�� �1����R��p?���w���*�����@4r)FW!�sҾ����}U�I�M�*�1"i����``l�+���uΫ��>��;�4j�)8�W���3j%�ı0gK�kI��H�oƴ���Q�G��g�^���M�x7B���N�5?��#�z*g=��+�_�_D�KGnwmSit�= ������m�MZ���2�3�'v��C�u����� �\H��rr{瞴�;�T����:���,�$h�{� �t���cY v��PD\�ǔ�H9��#]g��,W�[+,9#��01\�i H|�v=U-K����0{��������0n�E��VS�<Vψm�n�[O[�^$�~=�Y&���=GJ��юs�3�4���`!�GJ^�ڀ�3ړ�/j �'8���J(��iN;�R�o�i?s}����ړ����ހ&h�����z)z�ځ�@ ����2��###�Ps�/ÿ�Z��F��j���As�x<{���t8�1jZO�5c���M=�^I%P~k�?g�3���ݺ�x��G3��J1�:�S�dw�_^x��r�]ݏ�u�ɂbԖ6��&/^��~H��幇aa�i�KMm����F������9�+�>,x�9 x�\�Z #���L��0<��^��S�^�t�<7 �\I=x�$a���=���\�zf����d�9���pGޥK��eis��u[����&#'w��Z�B�5[�GOռ4�72C�a)H���h���0H ��z���x,L���2��FO�KdW�|9�.eK����FH��[�es�����Ҕ_5�k�#����}O@��E���U��ٵ[2�o���`H��9"�X���&F����P����𖥧i�7�y����!�F����� Da��ָO�zF��X���~!�E�ҝ�9_�v���U7i�����%��>���f�F�I���m$dg�U�a��0E�۷��R~��?�����֤��1�@��zW�����H�=0�=�����t�}��r]��Ã&6��`d��g�ƽ�Rua��mR�*�P�όd��>��Ku."%�R��G��~�eK���Gl���j[li$[�N��>!�Z��}�HYn���kr�9���>��p�U�u *MK��r�#�^3��s9����+�Пl���P�i=H����>'��W�I�_E�K"#��p?*qk�m�����Z�K� ���4 6 ��r1�~�!��c{r�J7!N�����֛��ho�/�[Y"b��a�p�<P8S���k�o�^7Դ�����V�p:U�W8�1�# �ꢪZj���!n-�sM ��90璬��S�ZU�K\8������T�<?{,�����iI��YW'�;��\��ב\M ������@``#U,8҄��EUG�t�E�pce��t^���Q2���6s���=3����&�\�-$Ś<$J �q֒\,K-��Br�-�n��f�5�kcج5{:�|�KtR�`l���q�^E��p�ޙ��(��tK��{x�yh_��~0`Er�'�5�V�Z���7�%�����z�u;�d�����` ��rs���[nǮ�?�VY��d��<5χ����}����n`y�h� � (?��rv���o�Q�NJь�!n��7'��T�tE�z�K1y�S:�BĀg�x�uF�Ͽ���aA�����=:؏J���]�isp�$I01D�ߝzï[�������Yi��`��]�-�bs�~`��d�{�J�o���'��n��Bɸ��oNs��U�B� ��xm��;⽫^�k�SL���5k�@A������I�ƹ+٢���-'�%a�H ����UdK��hVV��˛'�*�[��Ӄ��sWe��VU�3kĕKU?9?���Ϲ����`�P��L`խ;�H��snC?���.}w�O�����Ym��i�)�9F�#�W�+ Bq����4���`�J���`�٣�4�EWP�I��[0�)>����;�mKƲY�<�|̆yd�o}��OQ��?��Ú�i�����g'��y�$_uߌ�}k�_��ŷ���~.�݂����6����/01����MF��U���F�i�/#���I�^���s��������Jׄ$����?�5+� ]=f����E-�ū=BWBZ=GBkwS���q�J�~di�����0a`1��߉~4�� m�(�] P.�c�u���2:~u�*��.��i�����S~�Kr�=���;�� 9vNG��]OI.�&��J�A$�����d������� ,�a����dx��V7�5 $��A����#�ћI�^�{Y"���ī���ڝ�xفP����}��/ xsĉk�x�Kҵ"#mu�Ѹ�ɸ\��!]Ρ�!|8���Ӵ/�Įb:f��<��,����ZIX��#�ͱ�+��1�2�"���`%;�p��֯r���=�$[��Uʱܷ�J��3�Y9={ �]OB����:�NG�l��M u�-xr��?�l�3�� �M��s]���Fd� �1D�cb�|ǹ?���F�jE:���cf�鞔�����P�[F~\�*{�M����:'���X�\�|�7�Kp�3����}�k�o����5��ȴ��� rڋ�p$��>�$��g�.��v��Z���Ё���?�օ2Z:���̒��,�R��8�f���l���mգ!��[��k1u9nn5 ؞������֬+��%�,�Ț�>�&�cH��)��r0nen�Bz~��-��x���H�TF�䞁Gzv�$��L���]���ٻM��~ �y/�����˧�����O(q�%s��R3K����]|-Ʊy� �a|ٱ�2O�5�� �/����sq�&�8�.�9r�)�k�<?���-������%�3�9�~\�pz���x���M��$���$�m�S8�f�9^�ܐ�<�_�g,�%�!K��������u���;M���[̙�ɽ=�?�]���Y$o�r|�1��1����ҹ�_�>V��K����38�:p��ѓщ�x�[�Km6(��������ȯY��hSY���6w�t��u=�?_-�������̳�� ��i1���kQ~!Yi�Ŭ-$�VP��Fqӓ��(�@�=��M������c,� ���v+�ː�ǡ�5�7�庻�!�-�]� ���d6=��������N�xŌ"v2��j���k����HY�!`�s��U�Y���^k�5�G�5�G�H�뛹����B���^����%�Iђ0H�'��x�����F?(\�~*���¶~'��#�����7�����2FH�#8#�ڧ��W�F]�?��m2� ؞�(}��5����5�[��a��_�Up�x$���_�7�&����V�� ����$�~F�:�^���~*�"�|6�D0�"S��PEbO�/YK��P�������+��x���4cA�m�9-��� gebk��)蚝��'���$����X�4Ջ��&�xt���9q�jX4{�KJR�prd�Z��-�|<ڡ�9��M��E��f�ܦUO-y)`=�I�T��E�� �S�@c��G���:~u�����ud2M4��Ð�y=�+cTm6<��L���YÀ÷?�j�5��oj ml�&+p~g>���MM�/�9j����[a���P��O�}�ߋ������'�e��Լ<a��GX�ߡ���K�>�t�ɴ::�B z��?��%��� :O�����t�?��-�hu�)�MB��I��6��p��+��{i2�=��v,��!��E��$�5�}��_ܻD� ������U�z/�����"���-���{��e#��#��6����x�rW~�n��baI2n$����W�?�����:S���_��"��K���'�����o�/����h��41��V� ?x#ˁY�sZ������Kq�+r�����54m��'�#�ץx���zl�SÓF�ă ȕB��d9��W wbѱ0�`�@`~�ꚱ��k»�v�8��1e��> h�V�$Q���2yp�/ʬF2���<ל_\I ������s��o��k�����+ȕǗ}KcM��4Y�����x��v�����ݎ?�Ԛ��]ˡ���ăך<Q��kʮ�K��$�UUI���ZӰ��{��Us�I32���O����Cg`#�����-�~F��2�y|��Ԯ�r(����.������1��������w.���B5�� �6�����J��5���o��D�T����־��]�ħO��]y�����6.�$N� Υ�b��=j��>�m�ԡ�i�Ztz&�' n��y��5)<6�� B |�-����9�_�����|Qiegysk�'���q���#�����_1t[��1'�������w��+uj$��dx��3���ѷ�q��*� ;3��^�u�m&R�b�e�l������j���.��}��a��,C�w�����1}ޔ֑���1Lɴ�k��|��ci�����_�`�sIuM���/X�RH3�*���(Sk�����=�m%�.��I����kp;��;���{��l���A�[�(���$֗�|Kܲ=���S s�m`��nQ6�9''�t�w.*�f-ߡ���M����BD8!���T��Vԏ#|ǎ��x��l�.��T6�wi��6�g�5�23pH�ݪ]�#�N��?ZN�)��%(��4��)h���g�(?C@/jOΔ~4���?V1���,�;zBs@(�(8����9�y��#PG��F9�=(�ȡ�h?Z����*xv�^إ͌��і� �89GJ�3�6������x���u 5��~RP~U�w���5�ı��}��k�4,@$��A㡯�>^�\[��ׅ�<�xy8���[�ֺ�Lչ��O�4�Ӛ��[�Tl�m�(.29貦���~�o�#�߹:�2<��JF3����>�ԬR��M� ���[���'�<w���oi(�i���#��9�Wh�Vz�v�s�>�^x�����d���;mOZ���#B�ʼnE�kT��̑�N��#��J��t�&�'�O�8���?��{{Wz�CI�t���Q��|x��t�G�9�҃�n��>��w'��=)�t�G�J�|�Ծ�i��A8��[↳�jVR�����0;uO�z�p�W��ıZ�d�.洑�u��&�z�֗�|U⫨�k�Y�S�7�p�:0����t��j���c�����h,�%? W��$m��`��;�u�Y��&e�-���<�Q��J�咽�@���q��;�5�r����ˆ�<�����ꆳf-b�;�fٝ�����>�U�3ħ�O�Xڥ�K;JD��r^���M�S��9o<����Y"�Yp�Ê�I�I'9�՛2����j�{O�;�b�O���Q��R��g��c�`��y�|>����Lm�q�k�f��̲��*��=~�k�?gk���V���&�n��!��'�$g v�3���<�O�*8��r� �d�״����]�F>ઔ��#���sſ�=Q�I����Lwr4~��8?�|��6�Jy�h�W'����p?�ʌ�����x"]9�-#��H~y�즵�p��Q|���)�D����rܕB}04��.�����Ip�y1�&Q��]m��Z�z\�3|�#�1����sO����it�d��g�XW�a���vw%���֤�2����{�n�N�2�z����r�n�+ �����5����Q��%-сy��r�Q-�H.��ڄ�X�( �z�5���#�e�g�;�ӊô�e?*o�b���v �R&���P#oTko���E�;xi&�Dz��ֽ������ӵMJxT���{`�}��r̸�a� W�(�m���:�����+ݾ^�ޗb/mf�kh�6��@7G�s�ׁ�z���F)t=����-�_l�o�K�2b��.����t�-�F�����'X��mg�}Kź�Y�. �������xk��L:jx�C��p<��yrǎ��u�}�7⾏zD�A�� LY��B�ev�Y�c��SE��W�|��wX�T�:i4�A��c���^y�꺃;���&G$+~dWs�m#cJR�OH�Ѿ� ���7�pZ���e��B9!�.G�1�ӒH��,��L�R��l�����P�r�"JaHJ�Ȏۙ��'?Ҭ�\�D���G1�Ǹ��ʨO����N�!��ݽ��)%�<�rO�]�f���M�ܮFNc#�����y7Os��5j��Td� =z�˲ӭ�����M���p�ة��VD�i��(�^�]��=k��]V��5m6� ��C{���[�W8H]2���U�]��c�[�˦H�v�!�]g����<[�;��`q��2J�Wx��s�/H�� �~��K�x��J�VY��+ɼ���9�T%�}��_�v~��Ԍ7V�o&��][�}��C�Z���O� ���U�|�^��@�I #�_���n�}oc O+D���\ƣ��p���k�x�}-_X�� �n1jz+�+�]ꠑ�Z�v��'s���#3m<C�ȿv=�X�:��k�������&�`/��E�'��s�}���7�eY��,�J���H�r���_2x��~����ڈまF8�ԏjJܻ�{��3|��Y/n��1Z�?< �wkF$0\��{q����)����$�!�W��HTc������(x�bV�e;��<�SZ%�0�`2������k Gj�����3�/���q'���$�f�Ñ�0+j̘���xɹ�Ҳ-!�C�8N:��h�j���$ �ΊG! ��M&2 FKf�����������N�o��JKO�x.m�42���Y-X>��ws��Tc�[?��n��~5�]i�=��ɔD�gr+���!��� �W�x��Z������ȸ���Ns��z�����?��ũjZLJ���4��[��^E!YA�*J���>���q[A?��=,��gܬ�1#��\?�S(�6�.�|@� ڹ[��%0͙����5����t��Df��9(�+9�z`^���$�1��ڄѸ C�Id���;ׁk���Vα���w����4Һ�S��0�?��DKm~��Ս`�ڂI�τ�Wvr=����mC��eW�b���'�<�sY7V6��yZ���lÞ:z;�(i���SHmc�f����� �Ga�;P�m�������1I�+��3Z6ڢ �h!#k4�b��u5��G[%y9%��7�a�N�kB��,��ft�ɪןny}F%8��.��M<Ʈ>q��7`V��Y������"��qE��ss��y-��М~���#�͆��z�Z���eK��A��9���%Ȏ����?�Pi��6��WV��"6r�qޚvbh���X��J������h�V�r{<�����IH%����� �̲�k 2��q�ݱ�xW����n��!���ge ��F��g9,�}��lz���e+���a��kL}>f��?u��)�ef|��/m{q�&�!RO7�Nx�z��V��^�O���~�bk��Z��j��j�!X�U�I���"�;�S�p\I�?�!#�ר��W����C�����nX�C��ƘC��t����-*��Z�Y�-#�G�h�s�?�kCsv'=)�!�_Q�ܣ=0qT�Cp��jѼr~K-:,�g�����@����i��Z�yL�$oC� ��I��Qn"���%��*�*_���9c�0S��|�����"b��\��J���qj�Y�{˙���|i-#��`W�t�/Z�6��Gqoum,��/h�7�B�j�j�\�1-�R�>l@�ۭ{�����G�[K Ķ�K��^rC'�{���ә�E$ϭ�_�����پ��j���� :Ki��� S#���)���Zҝ���� �s��,t���"�5;���M�(E!�9wl�ް�/�� ��i��k�+���-�I؇�{V_j�JK�C�_�L�\NG�.v)�>ͯ .z���W��y�iE��7e�6�$שx���Yjq�n<�T#�a���<ז�$,�08�u��\�NkI6�l��kH�9$h,t�YPaY{ 8�>^k�O4�e�9#��1�n����q�/쭟i�v�ϡ9���\������՝�� ���}�Ɛ������$88��d�Z���g�U2��rܓ�hX��3v�O����<7g���l<�*����}��mb��-64�#d+�u���V�I8��ɯY����Ś�wĶ�M&��hs�� ���s�i��4�]>�_.I�2�,�e���;��P��9d� -�w+3�*��Nk�=�w��@?��{��,O�sg?�+��VG������?ٿ�l0�枾/���&�H�� ��a<v��6�e8ͣ�Ƕ��<�&ew�٩m�ԕJ�9���ױx��/���t���w�l7��z�ǽq�އ�[�-����fK1M��ԃ�sZX�W������Ap0����^צG���H��%�F�\H�=X��z&�{M������^�u |�o���EU�v�}y3[��j��n�����E&�m�G�?� C�:���W�-o,Ts�kj��[�ȯ��\q�5�6�k����^��bI�K�FCו���W��w���d��{&B�=�]�&���F`�������� �|���b���A�7 �������寴�%�>~��1?��pP��R�����V�>����� =��*6Яg�������-�{���pm��"���#B���$�n����Oҹ[ۉe's�������m��P��ZɅ����U>���U�܁��}O45bO�H:t�#���@;ѓ����1A8�iy�?�ZN�Q�(�h�Iޖ�f�� (������i�R���zP���=�K@h⁚3@�"��c��~4��I�����3O�%f�>��;��I�s�[�%��FN~b���n��k�W�V+H�Ӽe�K�Zj�h���gl�~�t���y�lm͌څ���٬ġu�.��w�<M��X�=k������_ �N�C��i��5{3��.Ԟ�F��|� �������~�¼c�:���<~���Ǒs&��c^��:�a$V�~�_�{8e�p�썋�ڼ+\��]D@�c�1jD)��ZIhh� ���v>�a�'}��s)�߂� 6�K;���G��E²@�H��+˼[ap��XзV�Qr?�>��މ�^�5����DK�?{�z�R��a;#�����V�����U��.�u�u�T�k����?H�F�����3�L�g��z ����.ѡ��֕t@�����u8�\+��C�f�L�v��ɥ�Uv��j�'����I��.����Ǿ��f��5PS�����z����9H�M9wK�~Mzg�R�&��or�1e�}����S�k�Wd�vr��zRV2��6B�P&�mc�� ��f��� �@o����U��ɷ9Dn�!����t��Tr8;�9���2�C��z��)�!�r5H����M�D�=y����]��O��[�X�F���t��$��}���~�m.����|�.0�}oJ�-�c��!_�y�_#~�Ƒs��[ܕ�s���p��8##��~������ag�<l��)�i�<��<��x� �+��]H�&���J)7Í.&9t�L��)#'$���zW͟/�8.�=3�w�s�$�n��ˁ��U������R��\|��,�������#7��>V��U��sY�II��/e��i�E�]�_C�bMJ�qJ#X� ���W�G/��v�9ʃ#�g�*��h��@0C��h�J�3VD"�b�j�K+�7��O�i�?�t�:f����7 %����;����A�}+XѸ�ԗD�d#�?�MYh'܂�n�X��N+J#j>]�g�����m�wό{�V�Y��f����Nom���Z� �͌���g�;��a���-�bf���H�#r��'>��Er��)�A��-��V��V]?ǖ�gx�ۢg�����M4���o�߈MƆ��Ktch��Դ$�����z�?�| �i-q�\�dHs2=ͻ��M�@�\��I��x��m#_ҭI�o����f��r6��z_�>)�#�O�丟]��q��7�!�L�'����V�sH+���^;��kIm%�S�D���\&���Gf����8,|ٙ��+�~)k>�Ԥ�O���D����ё��� �mJ�LK�Hmt�S#z����tQ#.�L�g��1�-p �;���)�cr�s�q�y�[�=�-ι7�b���yQn��U�ͫ�\�M g&[������̽UUe � ��U�8�K{�wR�8�؉���R8c��T��[�:´!�-e�N]�~;*xE��߯E���P{dG��V�rkN�0����q"�3���!�E �f���d.���k����j6��k;��B.8S�ܜc5��Z���a yo6�����xn���9�����Skn`�w�$�)���x�F�U���v�s�0���?�����{曦��H�t=a! g��g��,�5�'��hs\Eso�j^�����ͻs�H����Ҿ��&��M/IYW����\��nl�e�Y"�s��k$�<s���trݙ�� B��ʭ��'?���� �~���*�&8@��'�><\�];�[����\�ȇq�q����+t�/$R]ʙ�++����T����8��މ��պ�+���̓��S6�ac2Z�*�ɹ��FG��\��G�̕��zf{�;�U��5�Z�،�8�#����p:��8�w{9.�0Y��g>K��8���为,���䓓U��V;T�zB4mА@�=d��[3��W��L���Tl� *\Ĝ�v�kX�[LD?ng���;d>��H62od�%8F'?zF�V��u�AQ��Mjk�YM��n�WN��u32aۿ��;4jY�Cm�<~di8!&�A:/q_f|.�:trx��:��;A�F������E��5�_����.|��z����i%�r(�b��s�r�Gz���,m�>��/�Xˎi⿀���*��oB`�c|_��i��^M̌��P2��"A�z����ugu��@�e;�@��c!� z����,�~0E<]��I�N+��?J�o� �I|�o�s���_�C�J1[��MhR����R=/�)�A,P�?�G5�q���#=��0F3��6b0l3f�u+Ek��"�]Ǔ� �횅��w�ēk�ܪ��q�:����ׯ�y�n��Cʙd-�ç�+���Yg/#e���kX��T0��*7ѷ3�k�� �N�� f6ʟph%�i�iA���QV���Yhf;{�0~N#p�������ʗo%}�A��P}��$(� �(�����;'ʬ���_z��;D���җKt[�][h�!�}�߾ ���� ���/PV<�]N"-�7���k�o/�4_$>$�W>أ 'ӵX��8��=�_|����-�,��4;�<n�ݢ�A�����Q���<9K��� �Z�EtdA�(�vH֔V��W�$�dW�4��ta��<�5�.���2��I�ͷ+��We�4�E$�e����-k�s�w�� /%��ܘl-�1��ҩh�"[�l�o.����ǜn��,q��E���Ӆ��p<��A��G~����c��������O=�K�KC:���<�+��܍��G9����Ĭq��<촆G<�Oz��U���)Y|�5��W��Z�u u ��k�O�>����k�y��ݣ�*�@lps���q�b!$�u�W�=b���C̊͝�fS��$n�8�x�V����6Pi1��$��;�����8�¿��1�ɥ^kV�,w��Fc�����\�< ���0"O1� G yfT�����R���O���o&m@��VXa�'`x$�U'?�-��k���|<�śE��*8�T���}+�������kh����/�+�p������B}���D�FՏRTU������g$�֛��%��YV���/?��&Ȟk{6&��|]ao9�O]�8����O,���� ��/W���{�<���[K�,�_�kzu����K�i������|c}j�-�\N�ߺ|�}p8��Q3�q�N=q�X�Z(ܲ����P������,�9��d�`{�Qf;��!`���r7F3^��Y�Ϫ�w�����(�����,��ס�Y�c���^��?���C�%Ɲ�����::y�vpd��@@>� r�>�$�E�ɞ3�&��ʂs����V����a.�b�K�)�!<�=�XI�����U��::���d��"L�#m�׀u�u,��U�Ė>R1^C�#��g�g%ijo���ߤ��ټw�I�����2D��^&�'Gf_�E2��X�N;���B�v�����]>�&M����'ӡ�mB��=��.�h͆M��T��Ҵ�Bi�8���I��5�V#V�c��Ӈ�\��-��"��U��}A���{i�����:���r@��fC����k��ڄ.����{v���#Tfұ�k���8�d�S�����:H']���C CTuY��q3��Q���=��u�yB��˃�ej]�V;U�7�Z-T���p�q�f�KW�4�+|��Wi�~F��L迾�.���A�n�r�Y��O��:q̲n��&����Q�c��x��F�H��t�'��1�W1unğ.)�z�˴�U�jz�Zi��q8`x ���ָ�X�wj�]�>�\m��u5Z��c0�##�Cӊ\{�c�����R��Z%�P1@O4 S�Rh{{�x����8ǽ��������?Z)�z�=��Ҋ>�c4uǵQ@y�GZ:�Iڀ�b�h(�)M-v��?�S�#IpVA���{e���_i��|���Z\k�-����wb��$��_ �5��M�D~tP� ��N%8��������g��6m��~)��UG�%��(�q����a$�fd�S�=_⇉4��d�W�o���%ދ�y���Ym�1�5�O��� �����A������WY���j��t�o�Fڐ�z,7{����^��K�P�6Rh�qq�_��#��O�o�jb�ͥf�嚗�4���D��Ws����t�P�N�����ۋkkd0M0+tޣ18�`�!u��l��, 'U����]�����W��m��3{ ���f. ==�g�Ʀ;�5��>�~"h���N}{Np!5(�GM� s� a|O�������M��W����]@���W�:�e��g�O�k;�v��[�5���/��6��M�X��x=�n��+�>e���y�V��V8/p'�;��V��,�xĒ�x5�~>�Idg�e a��m�=���dm�H�s Z�^�h�<�D1�hO@Oֱ�� )Ԟ�Nq�5�%�Xx��v,O�8�}I��n0zap? ���Z� ����7Zt[3��(B:��L'O��.���Շo�f���%����>-����_Z8��v�*O����B��Cl˽@l�+���zWן/uMxg�Uմ�d#e��. ���R�O^�?J����iu_����Yl4)��ƛ�7U�$������q���:U��y�V!7j^~��^k�mN[�WM�����?����V��ƾx��] ZW�� 9}��=�"�ovo;[c�SO�}�����|vw�����ko2�'C��������x��#�`ͧ�쏕N=���>�ip�g��ǡ ��uwt����e��/#>�q�떾\I�#�WZCEm#��5ۆ�y�7�n���[TUB�O~N=������!��>fߨȭ�1#u�m��wGҹ�!O9�|V��bk��ݴ����I�e�K�"���@��g�q��8�#ur���(!x9��� !|�<�oUT�*��A���wS�b��~cI�-���q�kp�{��Ox�F�6��k�p���#���=�5��ܾ'����'�uV�f����v�1�7�k��xz���X����Z�ͻ{�d�C�5�.��t�|��h�m;V;���:��SЪZ�=�_���0��xr���`q�W��zƖ�?�la#��o��������).#c6�W�x�}�ļIy��d�8��� )���(rv��ʝR�C��7X��C�U.��dAs+���z�Gζ$��-�!s ^q$�s� �]��%�erY�?�k;��k���nB�2�[.�_J�]��A� hk�d+�r��^՟20*H#ޘ���Tڌ6)��f^Nࠜ}s�*�w���Lqީ�6�q��k-J�K}�K}Yy���Gq�+����?��$���ǔ�i�����u���� �<� ,�����K>�����3���+�J���c+!�#��E_C�/��j:�N���4��ϧn�H���� �l�Ƈ$Ҩ2],B�$X܂q��k�_�o�Z���j�0Y�G��B�X0q���C�W����LJ�hu�Q�o���6mߋC'_���ɤ]$���:h���=��$j�T[_I����s�+�ub�i���62n[�}k�/��k�0mO��|9b��B����W��'6��0��KO��&)�Jwv�%}�<��a��V�6�?x|�S/%����}��|�����j?�-��X��]�qߥV�;��<֞��H�1/��Q���Q�:t9 N�`F"���Ƈ;~�J5b~������-����!��q��k(a���1��h~s#��,���H�����dZ�� ���o�k���wpUDا��^�n��#I*��&�����:�<�U��,��X$;~'�`:����d�%�`�ź��|-����5���:� �8�:�⾼� �����[��U�/9Fx���ƿ6e]kY���ȴ{������.�$���z�����n�� ���� �t!�r?S+X�w�[��^"�[��$�x��9�@�_3x��O�n�4�bp-�$��_W�hOM����5(\�{$� =��ھU�悳4r]x�q�#�"=%y�?��k4qz���,��Wgc�k�I�ю+��n��y��<�����}v�O���$�3�A≕Ng��A�ȟT���|E���y'��P� ;6sw���[�!h�T9�6ȇ=����%�"�p���n�.�Pd�7r�Z���딹�����3lElq��ҳg�(���J#4�jm4v�8S��zT�-����]�IW�#�G�|;�ޫ}}�xe�Gf�6�(��[�־���}ß����<z��v���H�5��5=F�5�Y���`�q����c�`��W�F�յ�a(����|�W'!B�^p M\�w����>!�5��m�΅��R�Q�s����0�O���O.��㏴\1=}Z��xb{WmCQ0jH��1�6���:�\ƫ��0j�i�B�1y��v��N(Sm�y�ze���D��]?j���$��������*�.t����RM�*R=A��2Z�;N�����3��H�❈8ټ'��#.����Ir?�����,&M.�s�� Ď۽~��E����)eg�=d�&���N�X�֣��7r4���w���Fޣӡ�};��Ҷ��)�$�v�Dex3��]�i��wS�=wL��\XL!���AW�A�'��%��y���C{{>�m����a�<������e�Qӭ����=)�������S��������[���U���q$ �c� G���>!k�k?xK_m� $��V�rH��Nk��u�/ 2;t��"�^`zi��]����c���K�h���X�O��|��x~�]A'!��^j���t����y��h,��Y� }��\���V���k�2����l�U��7���QQе����X�~ӭ�}��6c��x�}:��& �>���?"���p;�5>����]癎rO8"�W��{�}��:<��{t~���^ty\[����ߥE�b�ӚUm� 0>�>7qSZ��$���J$��e\,��7W]�*mP�M��J�Yn!�G*���G=k����zܨ9�C5����Ξ>'Ii�F�v�����~Y!u`U����1�]|�Kz�ei7O�#i ���� �<W�x���+�F[I?�-"���.�:n]���ָ���%��Y���(��ꖥ����ezu��^����:�5��x�S�]�P���w����sm3x$���O�j� ��3p��O�,&�:��hR+:�?�{�����h���#j����$9+}�g��8_�yF��iNŭ�J[�X� ��aZ�;nD�����>�ow��j��iօ�'�� ���L�j#V��1-��݂G��=\�n4����_ɵG?ٶ�9l�'��u[1%��!pZI5+�s����)�>�8�Q��xE�Q>2�.Ojv�sy��RL6��U�\E7�kk2y1u;v+�:��=MWѬ��ܶ3���:�.�S��rƬ�iZ{3��f�����0c�hZR���lO>ۍQ���FF/Iq�~�3ӷZ���+�!3qx�?%��Y�|A�4�[f��G*�m=5��R�4������溟�ntS��6?��Y���d�9�ڛx�epX�d'����Z�I���M��RHR���P@��G P�����)h���ޓ�/l�~������4������R�v�ފ(h��(��qG�E�GҌP�Y��Y�:�G�oQՔr@����>h��H����7`Zjmi(9�D��oĊ�����������c�Q_N|>��ũˤJ�s��r&x���������͞�e�/]X�=��[�BP%��wбQ�VX�ޯ4���[ݟ�ۛ���?���������U����5%����$ �}Ʃ�{%�?�y'��3S��� _��X��n�S�?4g�O]���csac��N�=���KGj�����^��k{�GԠԟM��%um��[i#m�jx���v5�W�z����m����Aӡnks��7Cm46ҭ�Ҫ��p���y`�#�z��{ӱ�>����]�̧�~ �jl��?|-��*<db��?���H4���|<�Ɲ VR����tc#����>5頼:�è/d^^�O�o<{����g���U|Q���Ikڦ�pA�7���<q�h���m�]�UiGs�|o��5 x���s��ar��gּ�R�*̱�����e��>7�g�/�&��,��%�S�*��z͘��$|�Tc�\Q)&�'��R�K�K7��l,��L�3}��Ċ���-�ԣ��R\�0��#3͓���M9�� ���#WIr6��W 7�=O�,H��s�R����T�f�RA׀F=�F��خ��*�1C,���E9b�¾��o�x��;w<g9�4�ĊPGP�I���_i:}�7��I�H9NT������^G�։�߱ _1y��� ���V�b~��^��h�Ƴ���5 $.}��[w�}��⡩�r���")Ķ�k��Oz����1{���xg�1D0�|��`T�N�^#�j���jS�����;��,�r/�1�51�zɦ�+�编�������Ǵ1�mҲ�%����?*����ܮ�4�6��q߾k!�ɅV )���.�vge�^�f���;���\Ψ"G��0�ސtϠ����]�ŀ^3��;W=m"Ά5'��c�P��gս9�$dU?�G�UyJ��:�ʒ�ځ���n �@�`5cD����VMw��y�gTL�`����T��'��V��#x���U�U���ʧ- a��G�4��}C�/C�P��-���b�xdI�R�9���}sc���mP�u{pc��[,�{�A��˟�7���sxo\ӥ��p�yD��A_�⾧�.|mg�#�xj�2f��\ �A��c�)�苤�Ϛ>4��7�K%ݺ2���b3q��ׄ�s�ֳ���N��pdgsϱ�}I��\�|�A�e^X��X�Hē�t������1;;B9�4��~���� ���lwZ�����n������P]h����Nv��O1��裁Z���|OzrIxQO�DX��{Y�n@�q2F�C�;}X�Mg�'���m!tU|��}�����e�*��� l�~��5O� �R!�N�B��M?|ki29�͍�?T��I)o�x���� ���كʡ��V0����r;n�1`wc�����waX�gb�dk([8�#�A��V��x7-'�P"jK���=�I�z�TL����ݴ����_5)������G�Z���Zd���h�d�y����m?P��u}nܴ{I��eN;����w��] ��Sx{ē���"���w����0�#Ҿ��A�k�=�E�^Z�v�7���b��r�:zӓ�QA��g|f��q`ӯ�'w�4W�rÏl�O־f�7����b�G�[��JF=��O־�����ڥ����#t��Hq�ۼ��P����}�1ҕ]� �<�x=?JK�-Md��_X�k�}�D�*�}��<���P�D��<�\��_>a�?���kF�B�D�n��u���="�<����2�H�!W�֕-#RK���g����r���˱�x�)���DUO-�k��JJ@<v>��ꖖ���Ks���$�l��ƹ@�\o�d�d��C�]�j�6���X���ޝ� ����W�j��+����t��Z�R�2�ťn����t�k��yW:�0�(H9��"��/16�����~u�i{ol�c��� ulO���sS�n�ms��8v����+�����d��t��j 2{褆�iI��)7m��+>��]Ǧ�F{VS�;��/L�^1ߐ+��{�K�o!��qo"����� �b����S��t�����Cl7~�3�T��<SoM�sn}!�K�.4wH�t+�SwUR��W��m!��&ңS�o���O^G�_Y����R�Ǚym�+-�!��d��W�|W���'���t��C;4M�az�De��I�s�}_M�y0�sGԓ-��>��Ph��Hy���M��C̗����x��ګG� �U�����G�� rW:��)���E����Ao�'�2O_«�#'r��I,��cUȖ���(�%~d 9s��>���4��[��F|�2�W뷏�k����S��[�p���q���,�i�~\m��ּ>�$ A#����CO:,H �b�r��M�G�H���յ�eL ����h��M�hӢ9�����(��]ɧjq\E"� ̭��������~,�ޫሯ��o��"� Z�x�g�GÑ��Ҿd��t��l��-e'�l���zt?�z���[��m����~���/gԮt�0x������J���8�O�����Ɵ�/�~��*�oe���������,|,�wu�M>��o�(\�/��� 0=��<��iYǦ-��w��2��XX�M��p#�Aۚ�+�b�H�j����!X���I+�� E(l��s�YJ��&���o�ֱ������\��i���H��G�yƷ��࿗�iv��L�m)P�W�_�mH�<%�+ˋ��xǒ�x�4-&[�#��+����Ms&���j����3�����|��|J�p� ���퓟�a\O��O����ˉ@d�Eb%����q[��H��YxX�$f�D۫1�Lb��,Loymfi���֥�\�=��{_x�Bͻ䳌���x��+�֧i�˙�V3$�J��^zb�[�.�?�zK���ڼc�8��f�'� �er� �~�/����5g��}��m��Mυ��_�>+æ�tMZ�؍�=��_!^�yN��wC(e �<�d���� ^H�8��ۯ�i+ �OF#��Я-ݖ��S��7��>Z˞�<�cXp:�Zw��N����W<�ڍ� ���ś��*Ͼ�|��Xj3�3�R̃�PҸ\�cb�D�i�;�۠�S����s�b���̒n���C�Af�l�[Zn�uw�F�M#J87���Edk�79I5Y��d��*�����!�9{��� :d�M�?ڧ�,{���nN 5 ��.B�|�Wm�R3o�cz�|��3 �3����p��]�R��i�^���];čy�yN�$��B?�S�S��g��n��i���- ���"-�#8<�#�5�>3��%���a�=��Kj��̚�:'�u�&;��\�ү6��B�{m�|}ѓL�����V�6�����1 ���S%yX�\�<����Z��䶩l2HD��^}pN+˵���*�eo�������j_C�)%d���� ��>���ס� Y5GU�>s-�cr�[Q!��փ^�$yU��m�'�r��=5��F�y�y%�LG_�p\���^j�6�L��u�d\m���%�>�8������-o�w5�~W9��SD�c��Q{��(�?xJ���t�״��c��l��h�W���J�[���9n ��-���M@;(�1!��5����U��s��=����^y����Ohl�<7`�H����ڹ�m&Ё��RP���'~kGѭ���!��'.N"ڡ=rY�������*�����%���<���1��y���\J���䞤�g��]'I�0}�\��jq�9*H�\m��)���ʠt���+(4v�Qց�R�@�h����<��b����(���Sҏ�'JB�u��s�t��{�/:n�u�"��|��빱��5����>;� �w�G��ܹ�IT�&���#ސR��������(�Q@���-&(=MQҊ8������PG�%� ����k$� �D��3&䍋7��+�/���!�\Xî�n�&����O�P�g�����l��hu �ӅIW��?>+�i7�9�߇��������eM��C x�"+h�����F��b�y�hbtA���M��Rb�^k�~*��sl���m�$�_H���p�5�6�6��I��N����-��Z�.�~S������ڮ�w# oI��Rq$�Xr~���IO����溔���$�.����@�*����!�m��9L��.>����9����!���s��u*y��c� ��d�ۢx�O��V����;��,�T^�D��g��\Yì�o��|�)Fh��f��z��}��SL�)�Oyf�L��wJ�@�'�Z��.�}��x��A7�Q�7Zd͞��X�{�����OX�������G�y���P�"��@��&��OYhx�/��W���f��r��o(=����y-�y�H�A��������K�+s���iM*�w��z��������]��ipٰ�S�wؕʧu�幍:�� #�YDs��Csl6o��O�}����a�ʭ��n��c�]�t��h�g���"n�C�c��f���j�CH�?��Ucp�\ւG;/��O��֪@H|�=������:1�1]'ýkW�n1ax#��>\˺&?C��\��6����k��ig �¡�%p�+0&7���Q�R>��g�x�V�"m�S+s̰'��@�ֶ�w��ƚ�9��{���ˬ�&�8�W~x#PӜ^XE�9�_��Ce���z��6:u5�x�Oca0_K�!>Ӧ=��{��MSJ�. ����7j�r�����0��rS���j���g�u�_/'yA���l�����,���4��Fy��)8�OQ�P�!�/C�R�a퓀*��%�hD�?@����J�[D��a��s��Y:���˹,C��e {��խ$��R6������V?+��Z���Z�0i"b�c؞���j;啨��OqR%v�m��{՛=GH���od�����=3��R����,.ۜ$����>���> j�zi��SE����$����Ѹ�y���-*�[�T�ɦ$� #u�٤f#8�0�|��/���:[��sZNO2!$M��B��<;�xoR�VG�t�$�G�m���Eq���$�ʢ��<�����_�+=�3�˹�*]�~w-x��]�y]\), ��a�E{�ƻ[�.��ȶ�T����h��9��<[��Xo��Ꮣ��}(卵*R�f&�s<ٹ��&b6�̰��8�g�[��xl�����$o^x�jܑ\��G���q��(�b�Dls5�(���~\I�[��Ӣ%���_Ukd���''o��6���J��F+s�6��"C�"(�'�?���V�A�_��u@������[K����w�φ�l�ٍ��GM����0��WӮ˩��'^y�*5���]c�wyU��rҡ�U�+�v�㈑�(=wM0>��kW�-�R-�`Q���)kq�'���������hL��>������<�>�N.�m�Hǧ��?����?�3c�[���K ���1U>�rW�5�~�c�b7~�4��l���wqmv��M��{Sr�����M[w�ʋ�4�J�+o�$�n�xG�ҭ��Ku<q�t�������~)־2i�-���9.�ȹ�m̈́1�^&�?:���8��O;U�y��/�{�j�����6��g�x��o)k����ړ�s�\D��+7����D��y�=����|KvJIz�r|˞}}ie�$ .��,��,m������Q��ͯ��ZW��0/����\ ��4�ۓ�kr�B�Q=ޣo6J���aX�Q,dR�X���Ļ�!1��V?CZ�p��E�leCo#�C'^���9�@���3��[\ +r�!l-�:��G��:��<`Gq4���"~}�:����H[�j�'ɉI�rj���4v���>:�?��q�C��v��������;� [��ȋ���V�3�����2F=��Y�M�ˌ ������t+φw���-�'����s<h�V_�M�<g�iݭEdݏ�~�X��F�=?'a���+ׅ;��+��h��zT�i���6o�Ē�$B;B���v����-4�f�e��Z�1�a��e|R�-�����5��È�<�c߆�=��+�|�g��%����H?���e�����V&-N�G���� ���kؾ![�\��$7z�ẇ��W=�����z�0����T��6�0�ו�cT�c�%��|K�Nm���t�g��_N�����v�N�;�h�3i��v���]Z#�C�) ��S�Ü�� �KA���3Mt�c\3q�� ~������֏�:Tz��%���R�yV+�Q�1�~4�'��5_�����a��@?��ٺ��� �#���~}?O��3^��'%�C��A�#���K} /��Omݢ-v��1�t�c��^g�_�J陴��<�"H���� =�OR�����/��cRM��P�{�����n�7f��C��=�zq�|���<G��~(o�0���ħ=z ��[�Z��̞����<H�mnt\v�R+ya �w�b�<��W<q��'I��Ŵ�0�(��4V�r�����T���_�}�x�ɲ�o,���\/�g���Ƨ��o��KՕ�>����GW��>�3I��7"?6��uR1�_f|*�:��Ơ��n��w�\���dg���ʿ�<O��U-�f"ْ�u%� ������{Q�x��ݕ��������ȃ�B���B�=g�σ��^+��iת I�E=F?Ԝ�Z��ź��D�m��o��)X�D����2:��m�߈?�q7�>��#܋l�q�W�x�Ok1,�_ ��q�p3X0zs��0�[��roE���k~�ݕ�Cy+���@w�>�^�[�� '�ׇ�I�A�ܘ����,�'�j�/��� g�$��F]�FG>�[Q�'�5� ��f�j�©$d�����r������%�����~��mF�;Hv����,Q���Q��z��>���GI��}�O�� �5���k`e����Ӓ�����|�o�S%���R`2 \�� �$ �ПT�?*��Y�8ɤBA�8�i ݧ��k29�F���K��AIۺ)�(��>�k���a�9��z� �M1dԭ��B�����B���c���Z�������(�PK`U�`�p� I���|+�0�0���|�]�չH5h��Yc��q�W�������G��t��c"m2�����b0)h��gk�ƥ%��y�qR,1�� ?��+�[�&hn�/m�~u����"�U�� �? �E�e(m�#`s���~��Z] �ib*w+����Vд=_T*�Z]���#�~0?�|=!k��8,Q�����ր��?��fv�]>�7����3�j$7�*7��\���|T�<K�Z<WV8ЗE �ɹ�'=wyk��5�7��R5�qj�-�$1�����C��sϮk��>%^�(�ּA`�@ ��<J�уB�n扴�wZ���潟B��?����~��sz��!p����r{�8�Sx�Y�����'^x{���x��5˵���V�utY�ȥ���l�]���is�e���r�K�XH�B�`�Ƽ����.dO���M�����u�k��Z�ª���X+���~U��� A>�ֺ|g$���u�NMBh�K�%,X����[H�/��m�m=}j�� �Kv�3��Y~��v&�`�2����P#��I֞3�i�n;.�)��E���;�@�q��Dr�j����4+-�[*�o��cW�m�3������#>�� ��n̿闺lg���O�E���d+4������2G=Ǜw�,����=0���a�Ey,�,�Z��A2��I��@�LTP@�&���(���@'Ҍ��*��4 ST��� Cf�yr�(��pO�������ϥlxC�����~͢i��m`$���E��9�}:�U���-!uMZ�H,I����`���F�HObq���� � b6����iZx��[�n;f6�lq�T=�EO��؟��_x�-J���=���!��>c��]���O�X�7�K���Ov��.O?J�J��O[��VӴ)go��?�z���J�9?�)|Q� +A�N���ǂ|��f�\�H}"�I9�P��yRA��u�j�WͶ��)�.T����N�b}V+(��%Ny�6�Lv��շ�_���ss�^i>,B�Uby��Trs�Ik�� �4=.=?N�Q"^I0+�������е�g��̍���c�%r�ZN�qҏ�Ҁ JS�84s@QE���RR�Tt���y�Ҁ:�PY]���.V���e�|��ݎ@#��_B�:��)hh���^xcS��Aw�M�y�;y��yk��bżem�q-�2Q,}Q���C�����w�������� ;�#Z:]���>Y?L����L�jD~0���"����$@/����?��?�yf��Z��_T��v!Y�[�c�^����ߊ-�7���D������!�s_=|K��n/��{�9��l�Z�ی�ᏽB��k'��v�w�<���a��lg�_��h�j�uۆ�Ծ߶ل�`>V̌���>���]Q��Ԝ6�;�},ˑ�ul�n��z���}��l��Y^�@!$�x\�8���R�������I���ot��OæV�m~٧I��v�����v��Z1��/�J�|�kx,�c����^U�A��t K|�q���B�����g�g�z��cڴ7~#��W�=o��$��~e9�vֵ-�T���_��!1����7�˴�/�xϮ v�u�u�A��uu��������v�\��FIX�0H��q��_?���%˫�B����)Ih ���x�����/9���أ����Xd�!h�D�y��]�Ԗ�՝+��H��y0e��Ny�����XC��q-������Y44�&��fc���OzXC��Ƥ��l$�3�?�«�>��:�y(W�5�|2����'�Y*\|��:N��z����Ų�Rk9��<~dM�R?���v)=x�'��Y��oÚ���u���l��V�����EԼ�xz@�*��Ԭ��F R%Q�Ҷ>��\� ����1�>�L�f��I��@�����u�ev����D �n. �^�煽�Q+�X֞�>G�恡���\�X�-b�瞄5��irڤ��C}8�z����o.N�wX�a[��b����&r-�$�F ��8��fA�N��8���.A�k/\����� ?Һ�k[P�Z�7H~��\���Hyb���v���'�jHJ��T�EFT�H�zT��! ��-'�F@�O֣�b(pA�*�`����J��'�T�V�0�߹@S���R{}J[�.o2�5F�����s�¾�𭯑�,PMms(;�g�s�r{u����xq$6��}�\[L>Smv"���Cو'N~����M?�:v��|@������[��F08̈�.��a���$�ɭ�d�����ϙi}�BxA����k�֎- ����?�:��㞝5�����.�����h�<q�@�ξT�ݏ�|����!-�,��c�9�����s�D�����yg��x��U��Pb��I�'+kW?^��ZI�Ǟ��v/�qR:��{����+�;T�>����,�9�aܻ$��c���}�d/ޭmnh�GkE=pI?�<�H���ï����&�,q�&c�n�>����pE ��t������Vw�ȭn������W��&��ƺ�LYY��iW�`�N�@�d��IhK0������H���+?]Qa<�m��";������-��=/FV�I��OӥA�����s�峵��#5�Z����5��_��0��e����K]@m����Tc��� ���76%�V� ����m�5t�I��뷊�;�Z!���KԸ* �2Fr~`?�}K�þ+���S��bF�/��6�ɔ��Ur�!�\�����w\���4�V�[��6��^��'�I�Z�tf�����+l��g�q_��|:�xe��.�[]��1��{21����f�n7<z�H��X�i��*#��MZ�>e�~An��*h�]�v�H�q��=��k��0ۯj���,�p3��k��u���.%�M��N2Ovw�k�V�u��蠃���a\u�pƝ���s��V~ϦCd1���d�i?��KS��9vr���c?A�]O�f����f����p��֮F�JK���H�61�w�t�%�rhY�FJl�b)��kSC�T}�����n��(x�<`��-@����i�:hkr�m��;�{T�Ԛ�!����t�٪]�\�$���#����^�#�g����oѬ��N���lo��y�9W^���+µ�kH��$oYh?�+�ٖ�A��U��rd�H�h�-���Y�!�84�� Z��O|6�t]CH�x��J�K�絝�$#�P9rEc|^�|?�X��MO�q�:��f��0��Z�Юm�o4K�Ț�����dz�Ey�ŝ:��;���3�f���� V�u�= Ji����D��2 Fo7ľ'Ev$���s��+����Ԯs}��רX��S���J�c��]~���d��R%by�-s��V��x5�Rď9� 9��)#+>�_i������I9��rF?һ�C������,����m���M�~�aʑ�㱮+��Oٴ��5�W��s�����e��[h��Q<���ui�6�C� ��B�{�J�� �3�υ��5�,c��V��0'�q��<��濴��"Ka�}L���.tb�3��l��~XYY����"�#��}���F2pB�ϯz��v��_�S�j�0��Tވ������/5�bۍ��<]��3O��%�P������3�8�z+Y����3��z�Q�Р��X<[���J���;�+�ucf�x�f��}�U���ұ���̈́vz��!�2����`��Mp�>Q-�k�,�;p1��tVWN�r����B���j� �����\cm���w�:��P�]58R��C_N��>��|?K�W�r�v� ��9���%̩$�� �f�g�F�"��E�Ѯ��[/�$�O�y����STN��/��x3M�"Դ�E�LTfM\��I� �@���ߍ~���:N�*��G�Yǰ��^k�<?�x����[�è���`��d�<Y���z�O�-����_�%s�,��ϼr��Φ6���� �Z����_`i���+�7�����v�mB����3���������4/Arl��I"R܃�F:��ڪ���}�� Zg���3��n*�2�WS[V}B�H[-C�S=��b;].�Ac�?!��,���v������������G��s�KZ��( ��v����-P�|?������k{v8��]������K��7R9��"����a�R�������!�/=ϭa�!�c@��ឍ6�{"�����'����־��[��K�E'��R��3(z6��y�L�Hާ�P�Gj�w�v��W�m��~�#��q��g�5��Z-�:i�#��u�v��Րc� V8Ϧ:��8����ς>�o���2�u�k�i =YU�s�(���g����d��'��Urz�� Ҍz1��,j|;h��#Z��Y����I$����yE�(��g��]���|W�d4:���B-(��5~��x��:���q�].�8�F����.;W)���Y�f�]ODVnO�b��A��]&��oP���,���o��-�A��X�>:�x�[[]�JSZ��*>�:~4�}Q:w!�I��M���ֳ|�:D�����b+μp��dMuu�*D0$�l���z����5�L��?bL��w��P�bEyޠ�b�ɹ�<���i2d�7�I���Ns�����^[�Q,��s�ְcM�p��Z�V�q#.�Y�s��J=c�עk1(�$�����_ `� ��/�/?N �� 'ڼ���v�c�պ7h�~D��Y�F��-�F� �?�(�ˋ�܆V���kw�v�V�1��c�Z�'��2�t� �����������3[�a$��f��2q�Q�dӌ�8&�/Gl%s�at����q�rq�M5��'����?%���e�A��X�ob���q���STr�{c_�GB3�����ys��}�M��E�k[�Z�I�:�?¤Mv`�=A�n��0=�;�O@2t���l�ң��� ����@��)!���f�K�K+]:�9���*`C��gڴuI����&��L� ˘r@l��L�7��f�|���}���~0�N��7<��+,@{`߀��{��j�|���~1u:N��jN�pR�������|9��ޯ��]/%��H����S�W�KM��}Q�𥜕PU|V��p��?���7���5����3�-����/��+��|�Y^�xtԹ�A�&�|Ƅz ����P)�����O��'s�%?�*O4ij���Un��㡻�]�*�$����:ƶ����W�����)�Gd!� ]c�Qj���͒7 Z_4Y���6��aY��wS��p�/�< :M7�1�����wi���Jz��a��Z� ��� �F{����͜dן��?�<K�[��%-���:�tmRT���u�T� �Mχ�x�>{�{q��?iQ�K�q`��ݗ���Yu9o���'����ԑ�p'Q̑/�1. �<Wu��KU���/����jr�^���X��{(S��=������I4��.& K��2qֳ ߍYT��NBG+�qϮ�BW`��|>�|�h����� �Q����hh��ڀ ?�Z=���QG4Q�;RP��W��9�F7c��}���F�-�մ9�m���͌�F0~��Μ�^��~YT��#�z������E��-��-�I�,퓏�°U�oKfg-�z��V�w�,���D����}����Ff��^g�&��:E܉&��;h�?�������_jcR��!��뱕�M�Ŕ�ܨ�,m��|Z�H�ܞ[�6ڡ�y��J�٣o�x����e�#��� R�ֿ��uݮ�k�Ļ�XnQ��c� �G��ֳ�o��z?�K���A��Em|:� �/��[{{uR��y� ј;m�x�;H[��_�����5���J�>f���dߩ��_ܓ��^ �V���� ��l�ϗy�-�m�4`��y��[M:��_[ٕGi�/�Q��fd�}W�U�m�s� l�<~$M�t�I?眮?,S�%�:I�����z��ȷƛv9��ţ���*e5��֫q��_'LR8��d��U��t���M&��T}��z�μC^����q%��s�|�6�l&��i4����J��#� �$��5���$Kl9'���~=�班_���B �V��5�ю{sU�7R�Ƨ;b]���J�G#2����>�F��2*]FP�a#�����Ϙ�؊C���|�J��s�^iZ�b����29��>��d����:"UI3Г�дWG��~%��ii���F.H�4,O����C�Oh���g��V2����������_5��g�4���P���G>������_���چ��۷R���R{ 7~&��C�<_�˸��5��������M��c����H(p;��^���=kJ��ِ��-��v�OM�"�Ҽ�_y��N�-��%�u����W@ՙ�w�)��H,W�����ֱo�m�2C��q�����o*�nȳ����� ���9��NK�1��eB�s��b��nIiy`O�JlG6�c�P�a6ʼnb�'�+�. \g����m�c�s������i<�;����֫�2�����c�<���Z`v�^o69b��>P�[a9�"9^k�/�:��F�l���շ8��V�&��BOOQ_#�uX!��J�,�7�%Ȍ�ǥ}W��/��D�:$� ��2Z6{aԄϾkEk�#��agw6�� d��K� mt,���;W�^/��9% �ˇ�Hy1�gۭ}7�D�:���_�h5���*=��|���;Y[����'9$��>�鯄s��n#R���a���8a�9g�Ywd���z��if�n�b�Ev˞IB?�9d����ϛ6��Y�b��#D�H����c�q�t7��ܱ��F����\���$�֤��ܪ��PM-��`��3�a����eӮ˶�����/N��+�4���Bu'�63��o�Bh ��Ǝ��$YF?�$ի ���o���c��`IUmkV���?������ă�ֲ��M�����4����o㌕\��"��t,n5?�A��B�Cm,�=� �= �W��e�5��C{�ۛpJ�d�����o��5��[�G 1H�������_l��>/��<;c�"_�*�O{�)9 =FzӋ�+�a�hxX���|����{�b�B��i�j2���A�b�pq�{f�Ѵ߉Z����G�ֲc�pK\XL�����*���7�>)�w;�����d��:\F��>S��RM#i+�� �4l&�QbNv� 1�{�=�C�d6�c�������a�Z����;�*��e9���0�ڹ��b�F�ҡ�b�m���.G$;�3�(o��H�<H�8,�)��ʣ�N�D.H����,c5�x�AU�f�<K��I�DQ����Ms�������3#�_�������E��m���J�PoC���1\�Hݑ�+��}�#[���$�VN~������SQ#7�w噡�άZ��m�l��4��.ه�d���o�l�AH䅢�mBs��@W?���&s�i-�-��9�>�H�w����P�-s�� ����{���n�l�W��Z��<UW�J��ٰ�q�@=�+�O�~�qp�ä�^-��#71�v�˓����ipoS��;�cž�����N 5_5��8��( `��Cּg���;T"(��w�6�&�v?�.���}3�������F���l(ޱ�pb\uǙ'�?�+� �=��=טK+]�ۻ�d�3;Q��6�������7��Ft��9�������l>'i'9�t�{It�����Z��F��N��Y�=6گ�����kS����S���`��\~���!I���&�u�\�1؈�B#D�,I� ���&�ei��2Oh7W��gGU����U@��I�08�+�π����[m2wK+���ծH`&B���{�1�_j�K�mis�����{9#3ٖ''a��r;�\,� [���>�ë�9-��E�l��բ ѱ�?�t�㞞.4ۙ��n��6�9��2ƽ�o xcU��c�~�����E�D���Sg�~=�7ᖜΚw��oLp�q�[�0?�:�}�R���j:�M]HM��G�T�"��ָ�*�d-5�p�9&i���@3]�t-��� iY�#�s����:\�]t�V�'~�6�͇�S�F��+]^�6V�滁���c� T\�9�m����R[���9I���K�֒�|3�Z89Q���r[?��/�4����I���U�v��Aԟz�.7{]��`ӓw��O��9ďt���{��:o�5���l�Ә�ق������¿�)��k�V�wQ��n�S�� O��/����\j.�g'���͝���<���y�k�߃�c�i{.�v��?o�h��rs�\ V4���9?��a�C,�/�۫M��kw�Z���$!��_5��Y�f �0�"����2z���C��í�5͆�fdb�M��=;�ooOJ���^�,�{x��C������4+[a�;�q����}1}O�����YL�n�Z�K��/����F������z�3@�U�Pz�A�Os�M��4]^C�]"S��V����M�}ݎ����Eo����;r{}�N�X��j���d����J~@Wj�~Uĸ;�{���?m>`�� ��@|���'��ּ��̗NČ��#���)+2{ 6�q⾶���m֝m�t��2���Uq،�G�}+�k& $A��y�R���ي��.W削��i�=Oҝ~�B����pE�d�w㪆;^+�ω�=���m�W�\���;���T�:���k�.��^{�B��f���ǝ_�+ɾ3x�>�^�����W~��[��!�qJ*��R�8�r�+�⛄8Sd���+X7Z-���_Z�� V%#�O�Yz߈�sk#%���H�Fߚ߰�#5��x��J�Wm�p<�ǯlӱ�2:h:E��x4���~�s9?�a��}�+��G$h��j��x���8��1b�C�<G��q�rbk^��n�5MBեV�%��\�����K9�����J���g+c+tT�MPԕ-���W4���Ex�VV<>9�[�TV��-UF0Bʇ���]D2jEH���� ��4����\�bO-t;�mwa���6��L�4�̻��p��b���D��yn�Z�)�q�&�@;��ؚ�����:�� ��ǚ�v�6�a=�Z@q��"N=w+��tǶ����2Ƚ�;�>�qLM�R��|���־���{�Q�A@k�b��{_1C ���I�jX�{�2ڊ�;��S��8k���*S ����Q�h�<<���k���x�R���,_�^o�+��H��~�ވ��y�ċ����͚�<���~%�����i 7I�jʄ/��-�{��~��q�uqi���'-s}eS�}��r}��t�-�qu5��iP�h�6�0#��Ҷ�>�fx��O�^Ӭa�o���d�XḍM�HOFڋ�zg'p���q��ÂFI8�Q�^�o�G5����z]��IKBK�z�p2q�M.���iO����%�M�,��0� ��q� kd�F�u�;J�o.t�*]v���h�e!(�n��FO�g� �5��/��ioyd"��%��$�Pyj��lş���<���]�`��k�~�2�?��ux�`��u��Gk�>�HV�,lT�p �t��]N�_�|?���i�䖗�1����_r�3~5�\����.��dn��?�y���Y�]kڞ��i�7�䴘G#x��mCP��#�89a]f��x��Ėַ��J����N+�� q�1ާ�@Fi�$iϥi������$��I��oҙ �ݶ�_��Nq �Y}6� ��x���!��m�Ƽx�ɞ+��-ٲ��%�'�q[z~��kֹ�/l5[h%Y��@'n;"�Mzكy67� �+B���F�B�q��Ƭ���ň# ��]џ��_֯O�"6�y^܁�I�"�O��v�w���B��������H�{kx29������8���wqHRj��������.��9��օ���,AC��"�}����.��>���4>?x����s��q!��zPJ? ZB1I�Ӊ��QEQ�A�@ K���G�@��=ֽ������}�gy��8��Jy���'�GҼ �^����쯴/O�_�`�y�$��*��#�U����7Љ�>��<Q�N�)��,צ*����$��c�Y ���;�q��B��F��#�r�i�у����`}Eki���W�Sþ�%��qu��R+�F:������~$k��қ��:ɀ�k;y�q�}���������_iv�\��M�/P%��)�s���Q�]j��B�I��0�V`� �F�ʾ����_�9si���@�?M�g�:����ɰ��{0#��{�����t�>��/�6�t#}b�FVo�éY�� O�.C~��\cw�����5�����}�V_�w�����_,2<�)�i�12ˡ���#����@Ǹ��rj��4�2ms��r�9���c���jG�z��] ��|��R�{_9G��3e����0{dH���>'յ�l���'��2{WП,-Vsh1�.<���:�zs����E�+1lE���\�&� =L�n�1�N�\�? ���-¾��㍋�����h��,�!Sԁ��Ar�^D|�f��|mA���j G7p�~�})a����}V��`h\��C�uN@�a}��W��"�fn�z*����o8,q�����H}�j)�G���쟳Ž�ͧ���xTnkl���=~�}k�O�>��[]�Z��&@k{�VO�B��5|�Bծ!0v�be����3�+v�x��>��~�.�ME��x[}WL����Þ�:f���-ͩc��my���-W�:�,��k1��*�zt5�G��5����!�B1����|p>���� x2�r���ld���%A��3i_i �b�3��q�c��ώ�+��4���:ƕsf�5�i�l0�ξC�Ӂ�ʱ漱1���lyءa���֨��-�F)��Ÿ前�~3D�ۭ̓� 1lac��G�ѓ������wR�h��ڡꄍ���X���n{���-���Y����������˹I���H�h�.D�NUɨ��T|����p��h]����+��s��O�"����汫�~.H����k�`c�n�f 0�:�k������Kx�ᅣ4k�^��ac�."(��[5��"k�[�>��Nq�ھ��+5�{0x��×rcx�:>�H$}7 �mh$�"���<}`�e���*P0�[jW(�$�Glךx�hV�"�z�e�8�F+��^�ŷ::�%����4�4��c�,�����xŔ�{�Z�ᶙ��Y���C����R�l�N�s����5�}r1���=�d4� V������_�����h,.|��!�O��/��M�=:�{�e��&����Rԍ���usz�uX�����O�k���a�WG�Gk&����Qe����I��\����ˀe�*F.�$q^#ȱ2�gi����� "]�6�L�o[[��b}�@G�q\'�!��[�i��E3��n��#����Y�<Kd?�4�4��C{9�`�W�bY�,3R���@�A�l���1��_�@������ӠO��RN�����qm �s��Rƌ�g����S! ��6⾢��Z����GY����@�����r㧽|��ؤ?�.D�{*׳��� �O١��iS�U�ba��Q����US�R�����K�: 9��HJ���A#qف���=���k�k[�,,����$W1̛�������v���I'�$�,�w��㞪���~Ժ6�gj�,���h��F��t�o~�B��>W�����MWV�lm!`�qד����-�?���JV����X���rB�U����]%� �'q����Z⤎00ܻ0=-m���4�u3rfEɼm� ��cّ빺�7y�,ŷy5���v��G�}��s-�ɞB}v�T~U�jR��3rs�v��RPz��/ �Q�$�y`��2 XӐ5҂���W O�h������գr�[l���Q�:Y9�Q|�mc�#�m����� Z$`0L��G�Z�U���}E�����M�S5|!go7��I-�eHز4��0p=FsҾ��)g{%�b���PaDO8��p����+�/#�x�Ֆ�X�ݴ<�vq����¸���r'Y�J��i��x=�eC~d��j�7z���K���R��<RK%�����s���_7|P�e����<S<�In�C`s��k�uu�I��U_��nm@g�P����u���u}<��(Ԧq���!��r�Y��G�j:�{��� =$#��52}W���O��ځ�������ՍK\ 6"�X�� ����q�ހ��ڭ��rb;A�A�e+�V���:��եj��[K9<�&k��z�Krp7c�1_�u-J��y��]2�S�)<�L�����~cx��Q����a�Dy6>�8��c�Vmo�m��O���X�@�Q��[';dM���:E+&�O[^���o>�Lii,�e�����|��s_:x�^��W��O%\Ckmp�;sׯ�z�ڧ�d�ѓ\�m/UPl�`�Or �q�^!�KU�`��{3l���A���\����/���RU3-d�|��{W�/ꓡy��6��]�p����|Qu�Ἥ?U�3��K����Z{���;�3){]>�<S�0�o�G+3r�A�j��ktW�b+L���x�y�̦��'/���ס���q���vэ��?"��Kc��}~����b�:z���ziY��s=+��U��3�ڛ���Ԗ� ~tq>8W��N+�`s����{��+�J���v��4" KL��K�Y�����D�/��ٓ�%������MU1>R�Z��g�8=����n<a����ƃ�h����i�k�s��BYz�"��k��!���o2�HW�MV�9:�`p: ���?<:���7zM˂V;�$$d�$]A���.�����>5x�N��z'���5���,.���_5��ő��;*�1� ���Q�d9�]G��- ����m F���7��9�}+���KMF�����@b�[�����{h9_���j�w2��^8bG�E䍷�M�~u�s��钷�ܱ?��c���K��y`?b���&�.���+���Z��&u �$3��Wlʹfx�]k�hB������s�$��V dF�#mQ�nߝF��pH�F���I(�&�G}���{�meoK�'I�U� v��[)�L��<�߀�����A4����,+�O����gԟ���WM��5v ֑}����Σ�*_��Y��A��K'�4Mӏ��ȯO�1��W������c8w��m:�[�Hڹ�Սr��o��+%���qsbFՋP��QB��(>�5�ln�ϟ�cW��#_�a��C �z�ο�p��1r:)�ҥ� ��.ek�B�B�6!���F1\����N�/N�^B>e�����Է�)�mOX���W�����c�z��E��w!�\^�aB��1��Me�^�Z>����$��h����zv�q�,�/�n�^�,�xڏ����SB�0�,�T�)b>��zT�V�"d)�����*wR��VloQ&Sݓ#���#��!� d��1�]F�=�n\[H�H�Ps�̾�`��k��,��T���F8�.>�U���c�5[)NzF5+��Z�E�f)�s4�+á�7�7^c?�K�c��+R�4��yұ8Qdn>����7්�F�>�C���7 �ģ���#8��Q�<����bp$�b�k���kr��V�z]�a�5zx?u>��+ؾ�5�燡�='J�ME�L����ς{�c��薚%���s,�s��U���Xn�9�{V��Պ�����5F��D����u6��.�ё�B���^�#��9W������e�x�?�&{� ;"�S������O��w��CϷ�/a��H�-��G}\7䎼�+d�=��C$�qq�e�_���?,��F` �9>�=~���> ���X5���9�� ����ZD^����� J��Zi7ЈXF���2�Y-�r��=�E�s� �R� �ޚ�ryhYs�G5�^�E���2?��������́b�#���~u�?�$�����/"D�6�2OW�@���L.t���������9�H\�����^��ũAe5�+�(l7^�����Ǡ����Y��<6y$�̹�+�X��(��s�ޒ���`�ei��utV��9�J��t�.<?q�_ߍ2����ܬ��!�$q�<�u��m%����l�Z5�гc���s�� [��OR�8O�}:K�Ȓ���X�ۆ�y��x��F�?�a�/�����\Ld�w1�!F࠱�Oj��4�k}J�N [M�A��F���]��s��4�+�Ƴ����H�3���L��j����ui��֧��A�Z���99!��O���+y����O���e�j����~�Bt�fg�S�q�7n�������i��Y�3y��ZFP��>S7 c'>�����mH�2<c�R�^�黠���o%�G��[I��G?����ʐg��RV}e-S�+t�nA�ޫ[vW�V�5��o$MʲH�� :T�Y1,y ���?�eM�/ O3�'��by"�1��u��y�@��������1Ei�b�� \�K�i�;R�j@%c�n�Z(�z\Pz����^���V�/R_�.� �Zj��{�02q�Bq�_Ҽ���Q�Z��œ(����^���Ic�9癔����Fl�LK����:�4�.H��D�}R�n�*;���=�_�j���Ů�s@I�|m��'�$���`.�n��[������f�/������ ���犳co���r�wL�8���0����s�z�ͺ]Bw$䖐�P���E��A��,͐2z��$�-7>��n�&��mo�I�ܺLJd��zy��������5֣��y1�/ZM�|z����8�Y%�u�g���4�#X_�F2?Ѥ��,�g��9�$^�nk�φ�ϊ�����TQ�� ��w8��;�Ns[T�S R|ǐ|[ӥ�;�u� �y�Wϱ*�y��f�N����l��U�ñŎr���&���������x�kZ"q꤀+�Aj&���܆��q�j��*[�i��� ��P?����!��[�)�=ry��+Q�%��[B ��̃��u�I�sz�?���1�v䏥CLH�5�);E���d���!�z����b]��;F?3ɪ'�K*J��`O��� ���8ȭ (�H��;y3�y ����-A�A�Cav�ۛ �(���F�$�A��W֟ot�=��[����-��Ќ�d���=x�멥k]�ZA̗v*/-�c�4D�~�}+�/�>#���$�Z�6�0�mr�?�F�S۽\�f���o����K�?�_]����������5�>*��\Is���r!�FG�ײ�Y�&�x\���^1�v����c1�1����އ$�����:��=~�$Ջ���5&�,z5�-����'5�wu,���z��a��<~U�6�}�x3"�Ě�s��h���� 0����0JW"�+��J��`hW�������7�?Z��F���0��z��V0�QH '�����k��o�R�E�� ��kx�h��.DV�� �g�;9��_X�5�t ���Ș���rTM�{|�3�_'� ������E,�G��7{1�g�<����ߊ��(�u}9T�$^X,�8�g�L}�R�Wgc��4�,S�>��~it]eb'�,W���ׁ|G�n~�.<��(����(�N�z��v� k�ŝ�����xp:��;/_j�Msƾ ����iyo��յ�8_�*��T�s���I�.�y��G�̿�$VjZI � ��[~m����u7���i"�c�@n?�ߥ`jR��������*d�.�<��Io�� zD�\*~��a\��̘㎘�=kQI\�Vc�n���),ۏ��q���`U�H<�+��D���*�l�&9�䉔�Xι�)R;�r��h�}=�f�\���}cQ�q�窱��UʗN���ԳsK�����?�$���B}�R�������s��l���Lh~��ܨ2����+��Q�8Y�I"�V+�e@�+��˱?λ��w����ܢ�KEt��A�=G#ֈ��w�|�n�h���i��ڳ�n�ģ�߅��y�O�~"����"���8U���\�B�����X� ��l��_A�X��R��ynFyܹ?ﺻ�{�."o��z�H����J���gE����K�]�f��2nf���9�8��'S�c��?=�?E���{�b&ҥc��h�W������<�n���T���표앙���[�'�k.�j�q.�ۛ&h��s�^0�0�q�l�I��b�!�B�1?�v�����[kO�q���S���&��,w�a>FQ����v��[8�'b3�� ݹkfϼ��5�n?�y�R،m@��qX�oR;���Z6�9�_J��\���A�d^[�Qj�,���9O��ˌI�]����h�]��6�;/�џ�1��o[ ]ϻ-a���s\�Цո�߈b��L�� g�+毋3��*\��x�%�R�`�{�+���v���&�{�����O�\�B�O�ּ��݆�e;�t{���Ykq]��AcU�m ٫�A��[��������?�}�Rop5���:�k���Χ��.�ϛ=F5e�����K��)�fi�۟�{VR���Nk[o�I ����&�Ϙ�O ~u�~����P�eb�Aa8�_���NEp�"�L�=��G/!��&�/ٜ��f�&�%��+��m��W� n�^Ԡ9`�,��Б�x����{K�D3���RA������M��o��lC�f�2#r|�~�W���|�C@Ԯ�f[_:m�Dm,�rz��Uϋ���|��ؚ��eP�h����<�z�E^�ї�s���:2[8MFnؿh�ك��]���J��WK��[h~�m�N˓ �����v1�{�`}n0��@�\�ޮ�R�����P�0�����5(�fU]_[����Fp-"1ƣ�,���/�_f�Fh�P8�sɽ����e�������/"��d�/��s�����\��ā�����iY �ffr͂MX�u�6�/4�m.c9I����Џ�U_���U���'�>���>7|Im6��bϕ �z�Y�p���5��ֳ�/\�{��a�g]��B}����f�a�=k�[�@�����7�Љ�d�$z�#��}�/U��i��GZg�,5w��^��!�qTҵ� 7>�ܛk�+DF-��BI�Я�\>��I��/� :~��G�$��^����� ��^��Y���4�t���b�^���G��ErH��|�i5�Nɔn�ċ���)�Gk��qX�Z>�m�G�[�pI��}�}v���K��RT;c�lcM���,?�W�Ѡ�>��6���1��[߿���ߙ1�]�bM����U���VƼb��3��<���nM4C.[m��J=�f�<.�� �V\����e��4���|Wm��G�|K��i�Z��ꄤ�{�`�0���#�}5����n����ʮ�Dz��`9���^k�<T�0i-$�N�x�d�Ɲ�O�=���\q�\/�O �%�>L�!����:C��p=�;�{�z�=WP�Lqw�x[]�G�G6�$z�U��5r��e����-u#���,[J�}�T:�u�yY����e��+H��.���3z.�������\n^��s�\��o3�Xw@�;rG��1$b�:.��$�����Mpc_�hι]h�:|�,4�u��I��rO�[z���{9ʏ�����7J�As=��E���?���CP�i.��f#�� ���X��$Ib9�dUK�i��-"���b�%.ŏ`S^����~���k6M��|�����H��T[������"������6F![�$ע�[�ֵ�Ƴ��Mgg��i�6Fp�}��| � N���䏚�R�I�����v�i2˩��`�������\�1ԁZF�ݕ������:.�k�E�!{�S�Q���۞pJ�t�+~�ЭƲ��!Qť̪#���|Q����Hѭ�14�M���+�d���=U�u+g� %\ya��h�m-W9���z�$�}M��K�.aT;���b�$rr�#��<�X&��H���[���ڐ���4��wx9>��9�H���^�Km�OL0��vw&�'ia�kME���v��zm.#*�V�%Q��9 '=zv��+�u캍����.����]2�2N:�D �<�u����l&�x,^�$pb�-M��H�[���g�sk=���s�߭��;�h&��2���s�Vt�u���5��xG<I}1F��9#��j��M�f�U6���y�1�a�ô���9Զr N���K�0��<3�Y����-�tQߵ7GM> >��=�L<�tK�*��$�23ڪ�t�w m}ym���͎ɡ��Ǒ��s�M!\��Xy�d�]�; ��Y�`�v2��#�^:Ӽ)��e�X���H%b��:��� �C.r��\�s�%��=.�]�'v��9��@9 };c�jW��"�[~Fd}2s �����=�Z ~�]���<A��h���C<`�����FrNp~���M��m��ĥ��x�G ��n8�Qү�6v�:�R��^E�UӖe\�H��q�'�K� -mD>��:���F��� �!A=�y��4Ҵ�i�.�J;�����+g�+��(c��1��B��.�g��H��bK(��f>c�hRP�l�U����K�'Y��ԤΔY����� �9皝t+h༁�#����ˇF�LRN��r��rrs@V������8K'��ڳ�$�ɹ=�i杧�3O�qq�j�t����������FT�$���W����ϫ���DEqnna���3&O9>ՁiVz��ޏ��z�ź����p�IE�G9��Ђ�L��*�8m���i{�Ǣ1\�F�~ƿڰ�@V�CJ�9�T;W���"�72�o�K� j@ i��P�!<*>�� ?��x�l�'��E�ƛ$M����5�@0��s�h)3�2,m�wt�����g��Xg��V:��Ū��4sB́$NOЊ��Me�zd��V?=X`��5�V?>1�*���0"X��"+j��d��r2|`����_���letyZCֽ���H��q���G���ڢ��ŏ�i�6^n���`d��W���.��H��E}7o�x���:��^�c�������uʑ�ϊLy�#�f#�S�ȁ��:J��?������� �z/�G�&�/� {�b�--��$��Ù!�C�&�Ĵ��>�o��>�r���h��֦��8~�o�Ŭx�Q��ܳ�#��"�MA�2>'�ޖ����G�+��7�|�j�]i�y���}r�mih�r}kß?g�G@�\�~kZΛ4FXo ��X�Q�T��wC�R�h��=�W�:��f�tq�X�)�U�[�q�24�F�|�l��1���m���> ���/�G����C Γ3�,�sڟ$��|#�1���Ad������� � O�� ��F���t�t�\�9���M���/}�]Oÿ �_�+\-�Z@�H���۹�:��h��~a�+0 rOa�[�ҵK��}2�`睳����o�[o�����}����n��b��U� �0zU?|d�����j0�.&�y-Ε4��<�G�QǕ,��(ρ|?��e߁��j�.6��g���r?+�~�?�Hxs��4u ~�;�>��ɯ�<!�;X�<m�O��=�ձ�i7��x�g�'�O|k��i�}֛>�� �����X��WHD��^GU�%�ĭ��Z�|F�5? x�M�K;�z��O��Y�|%��!�q��J�(���<g��k�߈����94��jV�2:���F��V� �=�y��?����������0��v@�����J�?PsE��n�<����8���\�J��E�NXV^��=|{��b�:��"8Wԡ�=��kپ6�O��m�i�� ��k��ip�u�V��xH��v$O\W�x���kM).�>'i.��&�i��@�C��K��W����<�2á[篙�����MiX~�% \����l�>?��\����⓹�> �J�~\Kc��?�b]|Z��u�G�x�����Ѐ��4��=r��!�C����g�Y��̊Ѷ��c�P�������^e�O__��^>�Y�dhn��Lzm.���U5��e�+_j�6��53"2u�ߏ�&�!]�V�_�U�χ����U����C]ƶt������J>=kV�JCJɫ[G���ۃ^!���_"Ks�W0�=>�͕����4�0q��z]����h���>�KC���o!�eKK8d�PH�͜����H��],Gm�hW���ɭʼ�#Cop��"!\f��N�U�������� �]t�����Q�e�ƽ]x��z}�>"ԓL����pZK �D��r��'��/��(�=ޚ|q� �Y�w�iv�m:ᣆw���M�7��FOl��ܙ溟��#�^.�nӷ���۾�V=���i�V�������?6?=�����x[ž�T�k�x�Wl�z~��&�+�QX6X�#h;�������N��?\���/�k���#����c���h���#yA�����z��+}n=.?x�T�n�Ik��O��v���R�y�ڽ��Ԭmb*���FT�GH���h��Z�> �zE宾�/���kY]�⑭��,����r q��u�Z�j���i�e���"�0��^�ٚ2)S��ɒks��!�O ���Gohv�[1wgsgq �W�� *#F8�c%����+S���5�x���Σ�i�.��Do��� �ar����{�_*\�sx�zo��=��-͍�]�Oo�_I(�� 2�9$_���C�����ϧ��5�w6^`�첌��t;�#�)N>���#�E��M�Y����N7�j���,�i��+��f�}6�tC�≁ �Ȫ?���f�m��Q���1��u0��rwF���B+ȆqQX�GS�m�.��[H�|z�.���î���O2���}��<]x�7.[W���w[io nzs�,<W��3��?ý;������n��Oeፕ���G9�R�� ��g�:���z;������da&�4�v�/�<U/�����c��r� ���Q����<T7�V���Aj������꽭�?�� �*���9ەf%`��noğ�Uxe�̸ϸ��V �3�n�3�#�Ϡ5�!��K��J� �˶Ԉ��9`+D�}�]g#H����E� O䤚��� ?w+8?8�0G���5�r4�8�s~���?x�����k�\���L����@�s]����[^�L�u������@@���ǥb�ܾ�r�L33�3��w�ZWF+��t�:�[�$�����&%X�+T㸮�� ���7V~���[��}B��Y��H�ں;�ه�Q�����2>˩���L)$�nw��E�u�� ��}�k���5d�"��Ϸ;��yk�|c�?�ך"Yj~8��a# �x��b���} ������8A��z��d$�O��c�~/ijV��^+�GS��+����Rm��{��iV��zb�%�.챎�%W��p��ՙ��t�:�(�M�dg���/S�����f�jGk�G����318/���]�U��<D\��A�8�?�\���*�l�Y�9� �Ҫp{�>�{T�+�9$�ހ)��,�AI��u�i=j����RI�i�t�!}���UN�)�`=����ĩe�j�/�ah��-Q�W � -�)���x�Ğ"���_��Vp�go<h20�m��O,C r��#"�m<CyTw����.�Czd~5��6-j�J��^!��{�=�5V Fq����W��n'vy/.�����N;����Vl�t�Sܾ�� h��O�#���5��fk�.o�c��hs�d�Fq�ֹk;���+(�c2L�C�3��d㷥w��h���"�-��`\$�N3�A��?����C�?�'�f�����F����.�.9���=�Z��^K� 鱶Ӊ�mZuB}|����c��Ѵv��u�g��:�)�_Y7��H�A�a�i��McU��d��{��!d��ln�>�����5S����>]ϛ��f�R��q������A����e$�j�HP��+��>��ۺ�6�bY�bՖP��0s���8�H����m'7�۽L�!&���XE�k�d�]���O3��B�F{�+��Us�b�U�b���.�;D�5�WI$W� �ҹ}c�vc&����4!�y�(�ܜ��g�D�v����i=����6�6붇j�=�$�?ޏ�����!��6�2j����q[�Ytېqд`?S_&���dX٤h��\S�3/�F�~����|y,ZH���R�2�������b�#���ik�2�3�$�����8�UU���kz#�3W�kwfQ�հS�ےz����~��9�:���Ηu$$�Jc�y���S�+e���V�#'�YMK���e��u$YaզS�Oz�i�s�������[,����<����I�+^�Mx�"�_��������;R��1iaZ���a�=z���Y�9����\��K�� �$����Z�!�X���O��_t���YNNr2I`M�����g�n��)�G��@�\��O�0�����zЙ�F Q���zSB{M�>�ݱ����>9��d`b� k�,��F;`1ǥv:��~9�hM+�����iڼr��9����?��?�b'�PĊ{�m�j�d�jݽp@�M�6���酭�� �q�y����}rl�4�.:����ZH��½bĨ`|� � ���5�[Y��z�o"d1�|��}���ac}o~����Ԁ���1���[H�.�}p&���{O0 �n�#8��֗+as�����h����L���BI�����[�F��*����c~�l��L=�I�W�>�ݕ�D�&�-�������>���Z��v�]�\4��� ����zn`8��<V����m���]��:��<!/�(���,RM'��� �.w��Ʊ�de�o1���O@>�L��G�Eg�[[��:(�~���G;�R)���]�F�=�9����mZxd�R��2�~�-�<�-�a�ư&��ַCz}�BK�I����r6�#�>�4>(��df�����ZK�5������?6j��k���g��c0.�eտ�q)a���@�n)�M���MO̚~��N�+�yfX��@�9=y8�ҡ�9�� [h�QM��V�d�,��� _����sH��N������{��OsX����g��7C��u�o/�o雔��yY�y�B������9ɠ��a4z]�k_ۖqJۊN��ٙ� Y�N~_A���gQS�鋪\[A�K�����{�p �������c=旦�se)_���v�*܌!#�g�}jοk�k�� ���)���X�bH�Eo���Nj+]�w:G�{@�Xc-s6��;p�2��;s�Gz��~�%��P[�Y[�r�z=�Si*r��v��^#��x���6+ֺ���b���H�q�A�=����3���K�̇�e^2H�LsLF[�c$�G�P��%C��m�p>pPF9�s��>��̹�]3Spq I8����囑�20 � ���{ŋL[�X��+Mm�F�V-� e�8��Q��A�d�[}'V�G[��VhT��s��g�AE�8��Kx��2Cք�4������\��U� Otu6�|�t�\G�,2�O�y�#���U+c.�C%����I��k��\D�7d��8����i2����-f���E�4r���"����y��ҝ�#���nm"K�9�,Z]>�+��$���wW�7�����դ��h�W2]��۫7PU���s�03Ӛ�����J�dW��Y~��C��>̀ ��Ywz��j�Z��yb��rj ��s�]����B��ƣh�����ϯL���U��8h��V���LcSk�NͼY�Y,���\OPO>�S�|+s��R�KX^4a��^�j'*����}*�� \Ok�j�Z�+/K��F0z���`�{P�2 Z+}I������Zi�Xܵ�0?1$0�@���g��V�m?T��8�v��UG�Q��uĄ�k4{z����i�%{k=n��ѤhF������"s��q�U� ��){;5 �� .���p�^:n�2(�vs[.� O}��� ��]�I8���?�x�^��w��_ϱ��dȚ��ݴ����{z�:^�z�r�l�F?�QE�T�M��G�ힹ���h��=�0k��fI�Hv�p$twitn7�4�]Y�[�lX�����1�+$����������z}�������Q��X'ʲ�Rrr9 �t)�����g�uH��0�t�Y��RFs��x��a�N����g�}=�g8ϧ=il4K�|A]_O�n/l��j1���S#�YD<�w�[�;�5��\A�X�w��|��� ��8##"���>6_|Rմ_�wz��Qi�� �f�|�1fS�q���9�i����(��-����W�<Q��{�9๖�I�dg���r3ҥm����<Ai�'\�e����e���#c�.�G��>`�v FG�tz����O���.��F�wq������^#����m</� �{R��xT[{�y$�pv����k����cQ���j��t�-����-B��X��t%����X�b[z�����[�hzw�n4 gdd��V�qS�Ls�x9��s�/I�6��ǁ�$�e�P�X̙]�B���r��Z���xWB�u��_�Wz���ľU1oa�>n~\�=*o���i�φ��]����������w��6�$4�P��Ԟ��}���Û���w�B����k5���jB"�D�gL���x��� ��m5��ciAs�ެ�:�I�)��rG�� [�_�5��w^��|�B�!�а�l����� 8���䎣��������q����Emk�k u�u�8�6��U�O��Cw�������~,�<'��xd��=���u���A�s�rq\Ν�m�_Ŷ��f�I�6�+3�Zk�H�.��&�eۜd�x��|"����SU��7�q����;w��!ʪ�;�;�S���~��_����]R�G��ݕ�B���!�V�1ކ�įf�3�X�W����L����2��4��oCʻ�e���3�S�_�_����*�R���<�3��m&�(+�'��kj_�dž�MB���,`���k�-���������69����׆|O�]#G��b�4E��ա�����Hb�O=I.I<��ܽ.r� ��m�{9�3��{O%��Ҟ����҄P@l����4�:6���h�T�����[�/N1%ã��a��X�տ'�[+�KmOU[�k;���K2b��v�Hw�8 ����%�a�A<Wz5̺U�V��� 3��rp8<��M�[jy��o��r�%����k���oX�~��/2�7j���3�Z=KU������o&�iv��[��$�D#�A�����'����ɫ�ی[����<�����kj��0�-�y7��[{�ְ~�8 ����^hyů�.�G�4�����.������X�R,~`]�N���=�#�I�O� �_i:ͧ���'�4��ڝB`&�O�"�Y�2&F;u�N������t{�.���8<�;;�`hm�s�S��$����MK���--�~;h����������(@��=�CSu�I=:�E���~\x�G�w��sk�-��wr<�o���'��\`�����M7O�G�x����o�=Q�����5���`�'gr���z����&�#���l �Q�|v!0�՛W�Ih�-bp7�&��>M���iw<����x�O�cP�U��|3�jZm�[Oa���^�\�������yN��U���Gm>xR�WY�-�Ӌp��u��c�+� Y| ��+u��br��Iu���Ѥ�=������ŗ��+�麭�݅����ܫ��ݵ\�9�=*\���������,�G�c��.�q�2�aiq� C�#]�~�&�ue"2��^!O/a+�93�rI�kgu-јG!K6�f ��*���>WK��Y6��2��ju�.���VT�I�?1���P��¶��8�[ڗ��8d��Z����$����t��6l��X�ѕ��X7+=��]��2,y���Q��v;A���inĎ��ii��ޫ�:s���O��c�]Uʧ ��A瓓��R��A��=Q0��y �>��H� ���9�=k�/|0����Cg��+�G���w(�e�1�����y>�ٞx4�k��(���+�-��עxr�'��3��V��øʼ�3��;*+���h����>'x'��-S�~3���5�.H`7N���#l�ȹ 8S� ��SP�����7��'�|m�x��O��n��O"�.c�FT#�\s�_8���Z������i"����v���PI:�%y#�J����q$����g�hn��ӡ�/�/��U�;��wT���$�lE�4�G0����� �L����)��zW�����xR�kw��-����e�A���dpM|���i\�v��Ͽ_�Cu*�b��6h�2pF �cҧ��G��a����������wo>���)p�>z��A�w|f�����}W���.�iqcy��;<֗vA����0`@;G� y�� �|��p��� ���(���!����"�&�ÕZǾ]��|wcmi}}��m���q �N&dD� ���W�~�&���<Z��?�^�)��[k�<�k'���9Q*�e\g��u��t��XIe���T1g�uC�?x'w�C�Z���X�������9�Il�)��!�d`���U�YX�3����5�v�6�ot�z���IB��ˇ��l7�y�0+�-��i��H������W��_�?�U|o<-�M��p��r��)'�=k�� �[M-�ĚN�yZ�����c�{0�l�6?�P�<�Q>��� i��Ҿ���<~��J�[I�4$���5�ٷ�� �K���\�[�|i>��zu����@U�-ّ����m�W��'��atd���Y��VǷ NrMj}�k��wv/����G>e��Z�p;�B��?���_���Z����h��+ėZU���b��2ӼC�]9�6:��*r���?,�k��7���:t�����B��4��8�Rlf��2�%9.�o�?��w�����!Ӑ&Y���jȧ�]�;W�k >��{?.L�V�g`���6���K����%p'���c9�a@�;���fS��zJ�ЈG4�"�m�5�oxCN��]o�V!cđ��x�kP��;g3B��C��ǚ�s{f�a{DU\ ��Fs�u�oė��Ku$�c>79x��Rq�5~���iP6Ԛܓ�&M6mj�[yh�I���ι`�X�G�ZMsp~_��ܜPQr�\�Y�A��+nB��2���_�^.��q��_j2=�3gpC�P���s_ ~]���+�o=ݙ;�p�Gi�cO R�v���+��ᧆn���?������K�~�E���#�5W��1��g�O_�����Wy��Ӂ��V�WI�~�>7��i�<=�����qߖ���|[�σ�{ 5_ ���ra�`��`|��W̿�=y�]}�_�7tu�w`�rÜnR0}�&�Pkm�lҿl�} �U�,r�q�;�ی��x���#�{Xu��!�)>n�i?Q���ҾM��y����ISZ6�`�𮧪XX\K��е�*f(c���'���֎k�%E�>���쑭Y���ø��1�mlO�2��ox��U�-'�ΰ��x5�b���+�/f�_�\�76'��_AT^I$��'oOj\�CH��i�'���K�<G`���[RI��KB?�s��,�I@�w*�.=��?�C�^��m�"ks�b1�Bz���E�e�W#9'����ӇUmJ�C.�Y\|��H�LV���)�R���.�#��6��.�Z[M9�Ci�wh��jxcºtZ���Ld;s ���A�� �W�x��-��t�6�m�����{�#�kV�K�GM��߇�&�h��X~j }���W��ߧ�}o8K��۶����p�@u>�8����|@�t�����Đ�I4q�:��>j���#�a���i"����h���O���i���j������O�(�k�O���z�G�4;i#����M#���ގ1>F�� b�����Ըh��hڋ���-�C~%A��G����?:01_mj~/����7_�����]���? ǻҿc L�k KL�77�/c�=:nT������\�s��'�;r+�~x�᮹<V�:��A��S�B��Lm�~���P��?쉮ɳJ��uc#�ʄ~�W#������[���Q���]���7Z �w.x3��%���~|x�b��ͮ��7'��H���ýdx�^֭���״_�.���4��i#�|�e�R_~�z�C~��6ɽ��^3����\Lj�cߌv � {A�}з�D���h�w�|ӵ�;���L���Z*�6��%\�*8�N���!N������@3ם� �5���㎙#,� ��U��e<S��|�J�u��t�����ځ�Ri���I�Wdz���#,����:,n�?���u��jWwL|�)�k�� ��X�ٹ[�;�fDв�Um˜�H�9=i4������s����;��O%��O ��H���8������me⻫t��|��r?1^@]:oZE�+G ø84�+�GS��~���qy�ho�(4E�0��[ɞ}�5��B�9�1qa:�0���T��-y�z��W�Y 7�i ����Y��#Rs� �4���o��D,����b?1YW:��@`�Z��=`��ڭ�����k����i�js����|�K[V? >)�,��<K(=ƛ*�� �A���ϗj�?�q&X�*ϔ���ҽ.����t/�55�x3<Q��N+cO��>2�(g����{\jp��1��s�z���~yf��=���,�3Ǹ��b�+�2A��WX�֛f��G����ixG�y��u����EռjYa�#��rW|�pq�*�ŰgW�j6�;i�ׄ cw��P[]�=Z?P��zΡ���S�H��(���=R(L�z [�v5���m4�%�¾����,�r�+�N� b1�k}�H��p��μ0��D>�����^Eԥ++m�&�F�q���� ��K1�o��S�9�X��,�#9��ڲu?�=��څ�]I!H�شP�yl|÷$S[x���O�j~�"l%�����I��C��K�'r�:���-sOt�U!��F����[�� O�{I�o5h��,P3����(9$�+��4�O�m�4m*�lBw���J�F���3�wS᥄���ίh�,�O �Ǖ�s��{Ղ�Usw���Q�A��a��ld}G\���mօ�Z�6���Q����VX��A|�秭r��B8./�,g���$�D�y-��1���u t�{�z^��������ZR�R�P�G3��\6�7`ۜ���߹�w`����W�:���s���!ݐr�'�Ҵo>ϩ[}���q*��6X�#��"��'�=y�z��#ԛL�4�+�T"�8p�?(��Cq���0N���� Z�=VȤ����L~�;T��1�בB��VPڮ��߮�$D-�h I��cdt���R����Q��C��d�Е�40���{�������E��&��`�J��3eq��rKzr:VF��h�E�����5˴q��d�2t�\��d�҅���#ե���Q�Z|��XO*O��3H�vIp1�5��ZǪ�O��|�A��R-ة��<ci����M�j�?�%��� P��j�d�OA�'��>����v��xn�̷�Z!',<zd���/WQ1C�_����w.~�p���ς��H���u ���=^�Z�{c���]��W���>��=+S�Mex�\�izF�,@+\�K9�F�#�z��W}uu�g���M ���<�";�b)���3�^�X.6��!-�j:^�g ��xL%L+2��e�s�8���m���T�nO���@�{6K�$��߁R�^k�{u[ nг��1��� �l�n�Q�X|-en$�u��*���Eʸ=�ª����u,��ٚ�����u��������=2�O@ �x��������- ؈�^m�������w�B-D�]i�v�.H�� ^#�K��<��b�k�1��_1I��NՄl���� ���1�Ҙ�)��F-#����H����r����9e<|�/��]���K�t����"/ *����c���N!���I�P���U����c������ium0>�>��{X�d���ͦ�y�����8GS���Lx��)%䍩>��\�!Kup%�U��"��Ǡ���D���"�X�C�Y�E�i��$�3��SIJ]�*t��_ٹ25����NF9 �î�5�W�Kj-�K$����Q�C��+�s��z�x�弙��;X/���#��L]����un��# q���������u�7!#�d�c�$��^�^x��K�ja��}V�J�.�b[bа=��w��qT�YS�R�\7�M�b;{�2�JX��$�GV `dP����֙��5��ilu5 Tɞ�������L���ޞ-;�S�c-ݵţ.����~S���ȭ)�s%��,�+���ʴ���\���� J謴뻫t[�%�0-�RҸ�L��^}�vFU��d���-�W��?t��$.2x��V��wwGκ�nRC�-����ɩ[U�4���t��{�/�K(�U���Fx�ޒ���<�柳����O�!�y��jY�����:�d�R~��2��e`Y|h��⫇��wH�v��v� � @>��]~���?���957��Z��a�t���l�\:���} ���z~�j.a�J dO��§!@��aP�ݜ�Kc��>?�0ڷ�.mī� ��/��s�*���?A,�M@(���Ӽ�[�߽$�ٚl�4YX�`n���V��Gs&s�������Q�^��ߏ�TF�7�F g��Y���X�ů����cM�.�,|+Z��G�y�Q_qN�!�Nv��?©�ڛ��\4O��J��@�ZV}��>C���Y�@�w�5�`^YZ_�}���^�������E���V���K�.C�ȲE�����k���%��w@�N��*G8�@aVb���í|�lfY$�����d���Rrkq��5����{%����h��� ��t�=�:���zw��O���P�Ʒa��0Kk:ɏ��ƿ(�=��~����{�N����f����Q�k��Ġ��^�w:~�� ���l,�T��K�)DZ ǟ��d�������?P@ ��NF9�zu��~�����w�`�o�|��F�I� 跖ǘ���ū���D�F�o�h���e:�9�}�=���ǚv������ c�"fP\�s�9��� �|�1Z:&��s��� �i=5)�x��>�n������Z��l��C�ݑ�����P�� �l���k������Z��q���Ҡ�d�o��:��#`��y��=��'�/Y"),Ѵ�3��� /��^�[�:�Y��/��WΊ��I��±�ګ�U��s���j�f��|I�^��u�gXuPͼ�œ�C�_�1�]7��_��i���T�n,n� �a�i8&Gr�n�}��|M����y4�R�9d��W1�nz�ف�G�O���}M����h۽�p��� a�����s�4�&���Z���H&�ѯc�͂�X �������H�J���~�5;�#�6�~���^\�GZ��*�G�Ӂ�7k�tO��0���;/\xC@ya�y!Ԗ��� ,��F/@ݎ���� _]k����"�ij/���1<&n���v�f�RQZ�덯j�c��Y�lU�(��TA�s�S���?xZx#U8"�}@�ƪ���kQ��̘�i2�R1� ��"��+��Gub��D���OO@8>���St�v�M��1���0�4�#���N=+W�Y�bq�1��t���]��U�ǧl ���42�/d�{p�ƕ�s&��ĚU� ���Y8����a�?vOQϧ��/��;�����Pk�d$7�$Ѱ��+s�Z��n<�kH��(�`����iI �2�`��p}k�մ������v�U�y+�'T�DԴ�;�F�?I�J���&E�Z�C�7����C�Ku��t����FA8�D�c>���|4MK���Qw}-�[�!�L�1=П|t��A/�`������4��O^�O^u?ц�i�}1����be�F�#o,}��j��]�G���ش�.��B�y�`�;>dn[�9$1W�-�� ��h�,I��_2I"���H+�q��6/ϭ�:{k{��i/-fd vA������ �Etzw��i4~5�m���s%��;B�GR�J�!� О�]�s[�c���%��8��r�K���q��r��Je�����a^���6���,���A�i��l�T��z�[צ�+� u�.5������Ӵn�B����$��JQlZa*FvH�r1��*���|��O@sɮ���� �Rnmb�2Iq�Z�u=>�HceA����j���X�a���PI!w��v�M�ȳ��B���5<vqC!v-�A����l$I!o-���a�Nkf�K�ԯ,-�mK۰ţ?*�� �rs� c�%���|L���n��+��e{p��v�ɛ������,�Y>���5��z��ٷ�^�go��CU���)>��of�@����G�-�/�- �N�g�Q��ɦL��s�����TjzO���g�K��4ϓL�-�59��@���^��?����u�U�t�n�j'@���2U��p�U���֧�i���2���D��x�fI��{��<[�/�ұDž"����K�?��_z��e�5�Q-��YUBg��=�ӮO&�o�g�[?��[ZA đ�]�@��d�D�$ښO��G��W?u������V2PI��]5߅�8��?�$�:j@��ͥ��GVeIK=G���.�J�jl�L�ݷ��U �5��^9�+�iF��"��4�CG�R5g?��6�r�,��Y�`v+��K����3[�;�-�����EH�����Fpv��VM��<Es;�����&d����gꚬ��� CQ��9�������5 �Vfx�H� ����gz�S}x>��o��-��A��E|�t�<��h��c���q�O����7�"� ��f����kq��~���&�L�����A�k�~ζv�\w�����,�����居^{���m�Ld�)�X'ߜ�V�q�䓟q_W�KD���D�+��m��Ѫ�9�gq\g��������=:X��Wg'����4���i�zt�(@��@�B�8s��ǰ��\��|�� i�7�����n$��D��@'�����l�YB�ך���Q[� �n]��+���ח�H��S֣��ԦҴ���ifb|���l��6��#o>¸�Zҗ���F ;/����~�xt�sU��n�IԌ��Cu7��j��^ߵμ���"s���� |�r =k��Z��_�3�2����WwP0��'Ns�T��jRiP̞a���c��`�<�FqӵzT�TkvqT��Gy�x���V=�ց��Y��J1B|]ۗP=�G�^��.�J��!���cF�5Ox��u-J��uQ$�����rY_�.U��_&Z�n��噎U\�C�w������x���y|=�^Y�����L��VH�(���J�{�y����$���=���;]_���αg��hl&�P�ʘ&?,��� �����~�<5�5�����WI��Llݲ����dW��'�]J�X xwZ]�V�c�N�O7H������!�K���:�J�i�kVv7J��d���z��F3��>���%%sD�R�Y#- �{I�w�0Ml��7 ۈ�z�zoƽ?��:�[�鋦�>W/�zn�l�� �J��t=FY��gY�!>��IGvB�z!��Ę� �N��sێ�J���p��Wj���?\���6X��9v�[�NI(U�s�_·�o��q#�ʶ�9k�������U��]�ƕF��o���i�����X��n`�˔�3�����ޗ���#T֯ẏFӴY���B1�>ygaB��G�a�+�p��lV� �" �7R2�c���t~����<�ڷ�"���w!�r�e���:ਗ਼�N�W;i��mY���@��$K�{�Y��R��2�� �`{s^O��_Ao��r�fV&��*`�##8���i7�I�-�?�i�[^����q���ц����@�� ����ݓ�6��o1�L�gÃ���qY�7mۓ�)���|���%ن��(�\�g�>�Z�:=�֤G| ���{�^�������ٴ��,�����r�x6����{Ɵ��$�P�=��p����d������쮦��>-��S�kT�$����ZK�q>� "�� 18c������-a�����Țs#p3����ɬ�i�V��Ei���md; �X��V�G�5px�B�|Wq�jr�iږ�� 婋8��-���]�d��s8��H�{���6���{#,�2^?�3�'�=�*�C�}�[Z��W(^�<��I%�{�+��5km5�+�����Y��fV�N����d����K�izh����3s"\]ܲ.IEW���{�������;o������v~8�.��M���,��f����\{��oi��E�,c�}� #������U�zωe��WMP[C!<+�q*�@�~��0��5�2�&e�.V��?Rs������>���_�<�����/0�%��"?\�*ʔ�#�s+���ܭ�<{�?� ��5�m��vX���^�gH��9/�����"yy�����C�C<Fo�_���Ձ�qPɤ|V*�G���+cn��A�ω$�t�e��\>"��}���>��U�.�W��0ip���l��G,���KE�nw��ӃT�X�ϫ��k]=�>����Pi1H�;eBU�o>A�A�hm��������/��Pn�+̾��P����/�-tmj��ʒ����J���`��:��ͷ���a������kK�,u�'˕0�$��,88���b��{�~x~[Cu�����PL��Ɍ�,W���SO��U���h�_�a��ԒH-o ��h��wD����N8��Ҽ/� Bj_�m^�U�{Y-����,bP���9\�"��#y�W��\��x�X�����_m��v_���~��)���w���=j�W�O�����/&�>�Bd�\��>%��L��D�z�>f������|�ܤ.q�$�N+�������_jau7��:���b���2�"���Z��R�D� Ҭ_1���t��>��nax���(��t���G�ks)���4����7��}rr8�5��������淀"�[�3����c�ˀG95���}� �j\�e�yA��qT�;�H�Z�v���pHT�г���j��\�Y�ge��l�� e�Y(��l� l���P+khA�&/�O�X�ذ}�Ğ!Kk��j�-n�IH������X|�NG�ⰵ�뉬��[Z���V�M�(�1�!������W`��Z��<�7�C2�G��e���e��8��F{��)��ng��]"��.�.��ʂGSۦz�$����qg�8�����~]�c�I�����k�QX�����u IY�5�|��dg�������И Ю��/,�mu+u���{����V��5[8DQ�:�����8m�&>Xa�<du�g�ż�� ��[[ڼ��"9��2�����A֣։���������2g�u(�,������N8�@���z���-ͽΟ�e#��[ݹ�5�#s��? =��[k=fYm%u���F29��c�x�N��j��젳��h�E��q:[��`[��0�pzzi���t�מ���Q�b,��?�dm* � ��Qq��o �xY`8�#�RD��)��A9����e���'Q�G�u���/��Я��s�O�?N��=���m}"j��]&X#�`��9#��K�z�+[��{�Wɺ�t��ʹ ,����}�\�8��\���Ju{y���ћ�'_����x��xcĞ�ֱ�?�n<7�����J���g�$��*0y�Z]�kډ���H�l�2_B�&I��������E(���DV~&�Al K+�,{IB��I ��=�5��o�9��4����He/-��>e�@�b}Z����_l����AȚ���X��2�q�s�1T<Iq-����v��Mi�{������|�~B����˪j���mWB�-�Cu�w�{�$���#h�R[#�`.u$�</q�Vz=��I'�+h�<�ǻ`0:�үE�ؠ�3kSK�YI�M�8v�K�Z�4+k���Ю_k��#\A>]����rOlս*_Y�.#��̓L�F��s*��DY �ʌ���[մ�]͞���-���Z}�sͅ��A8�*�2���c�k21�/1���E �����`���ฯ��.�um�d��4����]��Ō�9鞵���e��&�-�G7�ViL��\Qp��7.�|���OG�ܹX_F��w����'�{t��"n��H�k�Was��n�x \c�`��Zm#F��#���6��������X�����H�&��5=> ��,$��09V�I��ҁ5[��i�$� ��C�nR@��%X�����;V^�ss?�5��]Ӈ�Yc͏��ltO��Z7Z����b��R�dŧ�o" cS�̓�q�;t���FѢ���K���q<A�ٰr0s��i�I&��k��myISmcx��_P�y9�MCmy�Y�y0 W@���z�~�ps��6���K��-���;�:�p��o�H�\��Gu�:��Y��g��"�;K��|2��5��#;�I�8<{Q�;�ψ�!�[3ꖐij�/�jvR���L1 ��W^�H4�C�ZO�KnmRB�W=22I�=q���NӅ��x����y�`c���#ۥg�=���xv��S�<���R����h�f�3�-��wkZ�z���9-�,I�� �������-d���,�=2�g�[�f+�F����zT����~fn"?_���rj�Ճ�#�,�"(�[f9?('!���<��{�x,o��l���-"�R�2��*�PN3�p�o� �lEƯf�۲nK�0��=�c���?3�Κ�X������V���]��(3��� 5^k��;���w��[����(X������� )�2o�:��{y�麶�ko$�-�9�3�#����X�^��V�X�u&���m^�;�����ie.��,3��֖��_ "����Ѯ-�2Of�o�d� u�2;�Y��b������Y�;�ݠEYbC��b�g?�O�7�`�8������y1;lb �Wn_q9#���]�� �N���֮g�t�v�f��P�_�z��\����;��畉�8�{�;j[-�7L�埇u+�>V��,$��<���ؽ{����N�j������_*^Zi ��𗍥Զ�!#AO���|��y=��$��a�,X��hu��6s����?e�_i����y$w�l���o*葀C���#*8 �$�u�o��R�5��Q�:�'�F/}��OӮl,� $�۽�E'��Os�4��ګǺ�����]�0�:*�8�\��ׅq���դ�c@;�2O�\�Ƣ�ǹG�Jދq��,�ƪ�d�HC�X,� �x[]���-tå�ݱ�x�d�G'?)�9�TW��ǐ��ɿf�RĶq����ǣ�,�_��J�U�T"RA�9��O�Lm����-!Y�g�%��^�������cGӠ��y��X��� bߥy���h,䜐��R���8�犫��j�D��z���� �e�9}��GfM�C�o�߲O��닫�x��Zit��e2��w��M��������r�-�2�῍�u���[h��5LJ�� �����@��&���/Eh_������i,�eP���v׳�!���s���SŞ����}*�S���qʻ6�@c�'#�Z�FK����]�0�k�R���� 8�k����@�3ផ��a�7�5Wi�e�҅gb4��#L�I�����χ,����?D�J�2m� ��n�yS)����%�O5�~����(����oS�Z�[{Xt�{i��r��U��嚉o�A]y��6�����T��u�uX}��h���F�K�I曀G��<|�*���l�W2�+�7��f�����E+���qH'�x���� ���U���w����� �zr�y2�(R�[pF9�yW����{�52e��܉"�lG�����y$y��Vv����ek%���.`��ƕ����8��ϭG�o���j(.�Ј+��I�|�}��V���%��Y ��}�1�ާ[��c�o8�c+FW>�(�F>��|=��;q6��K��KG�M��srg�|0^z�Sߚ�t-/��Ua6��ߏ x��WJ��9����2<���u��?��1�B�]��w� ѢA����m��5x�%��d���y�-gh��;�`AF>� ��EG]��9o�߲�Ž!����MZ���q�N��P<��Яsɯ����"��E�Ol�y#*��#��^�����������x�M��(�o%��Z�Q����6��y3�]���\x�:k wJ6�H ��4d�L� ��~��/1�4|us�)�l��Q�w�F3P��u�HĖ�!a��lV���:����A��:E� �e��#��9+:���t�K=sO�����Q6s���)K�%$ݑቩx�+��v��D*�{���9Qޮ�S�Wm����x�be�Sl���^3��>'�:���m���8n|õ>e'�q�֮�,��`�Lgo�=�J-=PI[FzV�q)����ZF~I�R��E$;,k�wq��[��g�!d�Z ����A���p�L:��}��O@8�k���iJ���oa�)�xK�W�\��3oF$�\���;o��>��~ Ũ6�m�b�7q���9!�u�����~�ѿ�A��,<C����:�'�Y-�F R2@��?|���[e��R�,������ֶU�KY#,���7��d� ��B�}��n��{j���~~�6/s�kZ|����SlX��[�g�^I��~�9fn�����H����q8�s�x����z���Э����\�!W`�m��p�GZ�ud�홇��:���v:g���Q��R��W>����O�=����K�Վ���oR���=C<�n}���|����=q�4�a��2��|����2;��kS��ռ���3��s��OS��j��\�L���ܐ���g�eR�B�]DƤ���B����G�t�^�c�{�5a�ede!Xv��h�����VY7:��p�8�q��5�����(cRv�{gVNo��P�]�H�[[�$v��~�S^��o������kh�d�q��|�Kz8��U�]�A�j;Kf1y6~l����¯�]��?�k�j�w�4�u��~�[�����bw��T��\u��)�EjtS��j��<K����4�&��Z��}�h�s���=W�~�x��W�<��1�qk!'�$�A�+�x�S�Ӣ��/�d�fQ�-ӣ�q�!����p>xw�F�ws�|?�4�lSXұgs#z����H�����h����g���yV�Ҡf�(u{����ӾК�K-��Zb1#S.�}1�ֽ��^�?��~'xet�CM���NkFt"�QF6��F$������&�w�^��-��`��Mc���,�AI�7x#l�WN �����W��f�NК�,��-�%A2� o-���O<k��Ӡ�{]>�K�u8[��?�R7c>�Ump���Ŷ��5���c�{F�2w��*G �~��b�Mr���o��R@��A��s�����ZXɖH|��s�31��Җ+��@!�Nyf�+BM"�K��8Z8�y�:$s8�$30�*;k[�Oٖ��̐��w��������L�Qr-�X[j��O3^FB`8��y��&��7j�|0ͭ�@�n�T,��jv۱��[���W�[ <�R�фѶ�n�-�����V��.���D����#��ڳ|�)X�;Q������O��7�ώ��'���67�Uw���Ӹ��l����F�V��;g�Ť^��4�^&��7B+��:��_%�9�8'��@��ݜdy=�B��/�[=IZ�&�"��d�cУq�:W�,�;�M�~�|3��o ]�ZΫ��� �Aq8l�M.�L�?�'�<9i� ��F�{u�K5�����p7~���@���ŏxj t=ƺ�v1eZ�i7��0J����EV����k�O>x��� �^}�)�+))\�s�������+HӬg�K+�<�d��f����<q���W�Ij�,Ө�B�?�ܷ�;~���_���Z^�wiQ�^E��HEf�{�������x�kk�e��c �D���s�We.US���ֹ�V2T���M6�C{��Q���-��md'|z.��u_Y} RO�[��L��uh�1��,���z�A��09��Zv1@<�)�FB<���v8$r�ܵ�\=W햑�R/1�R�`s��ڴu��@�ƣ�r�w'��fl�r��",��n�$'��<דV����A�Vv!�O@��G3��V���麣�;���f�������<3�fn��]^(�Iw��E��:V�i���c���=��|�o��+��l��p;W�xo�4�Ҿ#i>����ĩr�N���λE� 9#��ݨ�ƛ\J�<�F�Ԭ���kZ��x+�aHF+��wt��k��e���w��Ͼ%�8Q����6���{I�_�xn�U��jzm��}��þ Q#�(T�k���:��5��� CI�6S�ZٝF�����y�{םV�2�s�Bܶ�D�Nj�x����Z�ir�o��xJɐ��Iw��N����7 �i�c��V~���,Y��H�2*�\�����r�<?i�x�-�K���KȢY np��J��>�����|;�My�xf+��'��_}�A+q$���f,1�q�1�+j)��{�3Mo�7�n-���F#���"O�F�;X��{�ב�k�j�WBm�]��m�Ge�P��JYԐ:��lW��]��nH��SKB�[r�T^W?"�,6�$g��|�Ok6Z~���^�l���ԯ��6V$La�r������iE���rjmk�>��V�^���~f�̳�us���J�&���=+����2O2���Ȍ(�`t��]�Ik+������tHQ���?�n�z��oj�]D��w:���Ͷ���}5����DH�p�)��ך�akjpN��O M{�[oiKnF�g�A"� �X� ���O���+A�M2��e�����B2~X��<�z+�Ѵ�5[����I>�s��U;����֓,�$S�ك��t:��w��4��fUS�wg�z�Gբ����Hج��fIt +�3ڽsS���Rmz�I{�[h�ɨ�Ϋ���A������_���W��6M�&��"���v�6lc(q�q�`v��_Q�g���?����6�� \�f�����/����]�0��l��$�q��'W��Ǵ����nk#[�o<'������x���l�[\k�x�,��� ���I.RU*�30;���8��ݤ��k�Jhm�9�,$-ݤ��=�&�eurga��²��Q#-�~}k:�F�bDFV���:Fԭ����sT�)��F,�G�?�}�0Y$c���7�ȹ���%���u��\0���VdFg2*?��!�F��l����WY��n���ڬ�����5�>�n.�0/%A���ۊ�Q�V��U�K�-\�lӳ��(,~��3�H�Y�,� ��om� �ᔌ{��:�}SP{!`ڕԖq�eHV�÷WN穭���3�>���Qpq#�@�?��#h��_F�&��,,�n|r�il�--�>^�le� l>}�jx��w�i�Ƶ�5�"(c;Go�w�ہ^�����y7�;��Q�C���&� �!*\��~k�t?xk@�F������A�QH�=x�P^ϡD~����d��z�ߢ:�Fõ�zn�sai����ehH��4Q�I�c��ZMk��!�����T|�7*�~��:�x�ڀ}2Gkf!H�g�߆֪�j6M��(�y#9�-�R�ﷰ�5`�>#� Gt"�oe�"���x_�A�#���8�ZȚyu 2KK�M7Q�LI�ܼR $tN a��Z'�t}~+�t;n"��o8 rs�~�Np85���M�-������R+h�F�����i����y�]2=�+&������n�éǯq�4[�m6�\��G��R ��n�2�r0�����c�Ҳ����e��x/�Jo��X���\2̹��3ߓ]F�����;v��m*w���A�e����ь�ҋl��E&� ���]���ÇqvB�@�~l�����,���%�I{�BKi~��tʁ���t�p��z n2���K�?�4�,��kk�X�����N)����}$�֗�\H�n'ԙ>f�pr#PX�=8���Hfo�uMI�Ye���g�E� I��������>�$dg)�v���^��]v�X�����R���&N �O@q��%��s�겾��C�F���}�r�%vg�:1ǽV�o ���Wz����9[d �}̼mt�p2s�Q�ͥ���O]�Ԣ���t�ѕR BN82 �ߑb-"�^��k8�t=fC�� �28����c$�k?W���N7���t�-OG�5�d�y�w>��t�x�ki~���/�v���d"g��:���J�kZ�G�-J� U<I ��=y��wb4xt�.�)��@�G��du@�����s�T�tmHE�io4;��k��ȭ$ .�Ɂ�p �@��-�u�i!V� v��C|�(�w�O^��b"��,,b���:^�,�*��c }� ®;d�ҭiWw��:}��F�mp�h�.%�+m8�z�g�����s}��O�X]2~�{��`�=I�W�!y�&��a�������>axR�L����A���*_[Xhw�a�ϯX��yd��H{�rNv�ӎǃL� J���s\�B w�����'��}{ի�N=Nk�B��dm 2U�@���v8�����.�R���'T��b8ЉCcf�#������l;�xN�k];TD�B��C���2��(��8�Xs^���m��>$����mw2*`�g=Fy�Q�׳�f CE�����6�K�؇��,���ҝa$��e�������,���,��{���'P+��wm>�k{�jZ&�;�{hg�]���ʪ�Y������ >Im��~�/Rh��*-�9%IR�x`�=6�@�ᶟ�~!�0 �\W� ��nm�I��V\�VvW�ke��W�#o��kR1�H���ǩՀ��'��`ږ�2jztҏ.��F����c컔�[��twi��#�Ѥ�����0���۷�)<"��mGM{��?j�u A\�<*�p�}kKTּ5�j��5՝�u!m^2�r�21�g=sHh.��?�۵�VV��.E�x9���}+7H���f�R�$�-�m�)���9��Q��J�uV���/�s#�G.-��w��8�4 R��9l�����Wo&+F��'i��*�J5 ���N�g�3�IK*��:{ߴ�Ț]���4���Mԟe��Qܠ`^�G����V>�G�'�=�Z���D�f�,i�3{z �s�(��c�݄����{��ۢec>�:(�i�>�3G}v������ȁ�$��O�c�|A�i�ҚU�� ��Ј1��-�����4�\��J�Vv��Z��G�8 =�ϥL��oG����D�,���$��:�#��k����$�5meD���J�0ڗ��|�z|Ű;�^���~��[(Eݥ���2�*4���"��o�'w^���s�M��Y��k�?� 'Ȯͻi`��cMqt]kR����U��l-��oq�y���s�8\ē]����!Z��-J(�ry�����Ó��^��ϥ�7�z��6�Q��;��YN�D�?y�I@�Nj��o� J��)��+`�\s-��ʐ���2H��@#`i�v6l������/o���ۀ��ĺu��۩o�l^A���G��C�x���Əm}tV��|@'�����$���j��;˗��8hl~-�s��x��O�In%`ǘ������|@��$�����-.���|��L��Ӄ�"���j}��|C����+�=��go��V����f�P����zzt?=s��a�=Y�}���a��K[}~)�y��I�����ǥoi��6�F�l@mFOC����dd����F9Mdž=H�_SE�O�/ė�f�X�ixk�T\�w�����˧�?ᆧ}j�=��2)����J�n;+�|�u�Mv8k�D�]�(c���矯�W} ��%b:.��+Ӽa���ѿÉm6��}i4�����z����5�������=��"�E���+��+>�쯦��῎�X.�%�1��2�8�+>���y$�'�BY�g,�ORX�I��c�kuas�����_��~�]fS�����{\[ �����\�q���c����d���:{��b�x�.��C{���@��8��A\�\�v�-,���`��k���ȭ��o�;����,���ڗV���� ���`ԩi�[��0��e�`_��Z�<�e��f�7j�8��J�`r9�A�5�/S���X��9�����Zm^_��}0�T���H�n��� v���%�h�{xs�ي�� I�`0D�{�ܫt*>���>����n��_��iwgq!D{C�8�IC�HR��ӎ��~��x{�� �u�wQ��II��^�#\�X�ݒ6�@,��1T���6v����H�O��Ʈؼ��-��'Ϙ��X��1�=+�o�h��9�#�X[��LT�e����r:�_�~��E害-�����G�R+��#�G*O��9�vC)�$pk�<Y����f? �K��f��[���4�u�m��V��y1�}k>�J�N'C���I.���d:B�uq��Q�[�z��C�i�Vd�2[��F�����V�+]���7>D�e'��G��'����E��A��ip ��49x��O-�A�pw9�*��bz.���kvѥ�����3�ar:+I�<g�k�O xz����� A�t�`Z�]2g�v�!\�̧�l��W���wz������M<e�+�ӭ���L��4���$�Fy���n��(ݓ\�5��_��Gi h�����&X �pCuJ ����]ں>�����G����ߊz����h����8ܷi�@���} y����[�v�*��ř�m���-�m��*�A�v{��^K�gZ�5x�$����4�]�%���4��ڧ�����|q-�çh�>����e�U-M�JD>P}�O�f��t�*S���|X�}��+O�]߈!��g��}�.���<�*�'�|�O��/%�kn�z*�;ᧂ|G�?ⅆ���l��PO:���ȉ} Ǯ+�o|!�I��D��{V�,\�څ�h�G_�s�P�Z�>dݑ�_� M&�-����q�)Qq�:� �q�r8 꿳m��c�V�q��wp�ݱ�>V���W���|[���'h��o�~����p>�������� ���e�-�p����Kt$dŁ\�u\Qq�ާϾ,� �{×��!�Kh�Ķї�1���/�|9���u� �}�c,��pz����������l�:T����\�'=��?3]5���Zr����?XI"�K�Cp���&��%�����s-�?���/5�N�Hך��e��4�nb}�#{>X�*s����_�< w� �4�7L�ա"-֗RC����1�m=y������^��^��"Vɚ}49�*�k��[���7��w� �M���H�膰�[�/S#RԮ��4��R�-OB�@-#HW�|0�>�>�on�Y�����HU�FT쌱� ��=k�M_��ɾݮ��[����<?�x�E�U�nWv�rjv:|�3]��."ڸ���L^b�&�得gF�ӽ���?��I�]]��;M�r֚�q��������/��ڀ�u{i�V�t���K`G־����U��vI��H-�3�]�K�VT���S�6�n�N{��M�o�S��[m[�|9:�Ɠ39�9�[�v�U�; ��j��8�8˽�~����t���M[�>!�.���>� �G�I��l1���1����G,e�����\}���ʛa1$Y3�pw�9�2q�=+ꏉ����8����4MR��I����l���x����czֲxn�W ��+$��n��8��m<�ӵU�i��իOތo��1��=$�q�W� ��w�%��I��X����V�8�Y@�5�h��m���TW0[X�r�^o�rd�!%�1,�'8k��o�<��ˢ�6�dU�9�����?) �]w���x4��.�?|�O�$�bIv����g�aW�rmT_z:)�뤓���{�-u�� 2����F15�H���Lq��Z�|yy6�����8�/��y#�y��5��X&�A��R���e�n3����3�����]o^�uҴ�cnF�?�|�ꣁ��\�z��*�H�Q�?� ��6���n%Ǜ����l�q�9�� �/X�[Ѵk��-tMkM�"Ӧ�Y��!P��6K����J�|o�n������ ^�c���f���|%u��s]�68���@9lw#��4����j����Q�NY��Yػ�-R��Tլg��UWA ʺ��`ÃǽGk-���c>RH��t 3g�v�^��MJ��]������-5F�\�a�@P�W����sѥ���h��$#ξҤx�HA�S�<��s�t-DZ���j������gŒ��Q^�t�.H��'��{՛>�e7zT7X�����9]�@ϥ{V��?�����Z;�V�0��N���'*=sN��[���f���iQ���,YG`��h���ing���]?�4��o=��Ьc�0�W��NJ3ml�q���5������}� "�#�tv�����n� 8�F3���O��������X[�;�Q# ��^2�]�i�O�O��WVE�8cB:�rG�Y<���m�_�k�-4_?���[����o�NO���{+_!Ϋ=�٭��˵�*�u���[�P�����V�$���&�ӯ?�q�|C�k[`|�O��7g��:���<�L+կ>XG�=���0�s�>iv_�+i�~��m@���د�|��*�)<�����]���NU};�6��ȖV��py `3�S~|�Njn4[<ni����$D���� �� x#^�e��d��<S�*��j��"#��{X��!��WZ����T��k�&T#NI����T��� �/����w�ߊ��S����ɹ�d3l#=c�A�z/��iml�~��[jM �f���ҩ������u�_|}Ѵ����tmcTX����AtTy�\NkO���7�|8�d�S_j3��Ӯw�%�?(�p��<o?<]J�����c���U/N��6�[���k=Y����.�s�,��}��P�"��y~����� �w�)����L˸���L�#$c�� ����Z���MY�m�|��1��s�pkv��:]�*�f�qc$�S�V�'L�)g8�2�E̿���C��)�hF�������˛�>{�����i��������sL�@�)M��T�M{��� ��]u{ >�8���KlI��==�]> �?VU{+�4Ր���$0$��n�\������̞M^;~:;�uu W�`�$\�,A��\q�U�.�wd��q��m��w�Ҹ� �c^ɬ~��R���}oC�*�m����3|3�{��Eɾ���U���1�MtS�pU����C e��}���_�f� Z�[�u2��[i8>��<�Դ{1��-���$�ȉ4l�H�� �3��p��}�9#H��.��J,�#���ٮ�������:$V�j��͟�/�r���뽤��2}k:��J*�uF�l=HO�n�I�����4{8���kQ�o���,6q�b�6G�u� ����N{X|'��RI�/& ���,A ������<'$�{,Z�"O5�4�X��S���Ev:G��tk[xl����r�=�er:�˷���O�y�Bڌ����a�M^m|��.|G�kͧx;Ph�'k\�G��3r8�+�<W��ź��m��?31ב��`�H�>�S�'��Ģ�it�*l�������֮]|]�(�W{�%m���qٰ�H!X�@�G85�G���e����7����7Mk�_X��-��r`<� �� ��^X4�,�S 휆{�#����_s[ߴ ���S~��~2�TH��:m�b��8L|�p}���O�oSs�yG��l���=+��ukR�[��Zߓ<<l�Fv�=;��e{����X�Ң�[�X�����`d��5�n�<�#��w���O�]֭��g h3�2C$��הR�]��>x��6W^�L�~��)����,r�!Y%U+���^����*�YM��i�,x��V��Ŭ�-��������;[��t��#=>|�k��m�#�4m>�?�,�SE3�7]�s����?�J���ힵ�3��|o��TZ�X����L�]��ќ�FI<+��M��]�:E�el]^it�`*�>�Z9�#�'�ڷ�{� Y�wĴ���� ���24��°c�D1�2�0v�w���_�q�Ǩ�{�hPOu$F9�.��@��W<���mz��mR�V���+jVS�"%�?�$��[�'5�"�ƒ]�����$;\YH �����*���R����/_k�5�~a9v �й�:7��m�Zix�d�Vx� d�2#~l`���:�Ɇ�Z�%�G�$��D_]Ϊ;�ϭu_>��f��w5��`�i�o$�(��n~��.�&xk��&�~�$�nn�Ҝʱ��3����{��OٳOӣ��|e{o�];����!\rC�e,F;`}kߥ�ż&���(eV8�AI�Rq�I�5WT��4�������p@1� �n\ �*��SP@�N�U� �<7� 7L��y'N��+q��h$��g<U�Ԣ�b� ��ԯލ%ߒ}����ǗU��t���(sc�,�Q(\�n0=�>���5D��;�� � �B��"�2������ԑ�I������;+���q)������ *��9?�*�Zm�Q�Q�_ýs�F��[��Z�;�1\ۿ���n@�N9<pz�g���ݧ����Zjpǝ�^�$�g������{��2h�Kvt>*��[�f�X��d��=��N��k&����<1���B�ns�ӓ����|s�NE��E�22,9U|6ߖF��s[����X4QAyo8d!�~G�Z��[�SQ������FM[M���7�{��t����5�=��\��d�7r�S�Y����a��+O\�dK��r�|�o�Y��o��c�aVX��2�:�����\3�G$�OQ��*.$���"4��c��U2Ecys�����Fz���MT�R;��ך��p��˔جvF�`��H�sWuɎ�l���uk�v��˸�Qʜ�<4����-uˋKegA�_�_5�~P�q���������̶��ڏ{�N��.!d�c�[p��H�g?�W�m4�7�m�Xx�[M@�pD��'�r0�8�͍wP�m!�]+R�-S��|�"c0���2O|U+]Z��FL�V�#,q�� �>\c<� ��h�DSl�����8A_����*Քz�ݿ�t��Y��{���`�������z�a��ii�;ۿ ��e����d��<`9��!MM#jog>�{�-��9�� \rTc�a�OLմ���P��sP�ܲ�<-4P�%��:�p*�E��UC=������ ���V�d#��O�+����?�a�.X�K]^�d��e;�0x�^�l���=>[kg����/<�#|�W���/�u�ͥ�I-���f����Ї�71N_��>�j6�{�����M6X�,�q�Н��1�qF�q��\����&��{I�\��x�#�==8��e����Ś"^[4d�9�U��(�)����5w�ȴ�Wv���1��� �'89�=�� ο��3���O�=�,S&�ʼ�NN0xaky�ӵ+{ݎ�se�D2�.q�� �Ѐ�����:��ڕ�o���N��<d��w�zp�4l+\�Ӯ..D�xg�#�Ui4�K�eq�r��q���=��h.`���u-�]��i����F�U<p���W"���P��6��Բ����i��e8r ���SX�c��������7�I�,��H#�`�|����L,�����㵻����Z��,pw4��9 1ר��{�P��4��gC�����2J���8���x��^�'�Vky�?Ӵ���$]��8<�ɫ�흗������ij2��fR��@8a�ߚY����koc���,y.m��?��B�c<���Q�����;�/[�6���q�# ���95F�/�D���Es�ݴ�'��bL� !w��=�9#�j/�&���um6=6�2�][�)���\����zPԂ�m��ӵ+��/�5���� B���#�'ۯ��X.��^x�HҚ�&�N�w W�6�!V4� n���&�c .�}�R?�@s�p8�zn�p����F��ޝ�/�-�# 9g�Z hk_��6��]J�^��9�D���'����U-CC�}�Z��&i���I���?�y7�:M��ڦ�f5و��/��G�l�m�U�8�1�/�h�sj:�ϖ�&鮮d�wcaO��K�e���."��u~H�|C�#W� �աk��ɊYŻ���q�Y�X��}v�\�����oas�Ɍ|���;��xUw4֢z�h�EƯ�q��5�JV;� �=@b3�X�,�5���h.R��k{O�"������=1�U�7�:]���Ckl�{�����H�#�{f�Ǩ[�6��dN7t�+�<����;4R�)��Q�k���ou�.�����?�s�K���̪����L���o�S��<���M3J�����ӭ湵ɷ�XC4D�|�1��rj�v�Yå�m���n#y1"��HV=�Nh]��� ծ59������eF��h��T`�xSb��8�+vh�iv���r�6�<�d; !9��m�QͧC.����㸑<��$�p��\��V������4E�ݸ�����G)�a�C�P�O��/��F���k7洶�X�� ��N@Ͻq���>���N���[u�e�{�A'�J����g������3[�J���n�!��R���JL�'#����4��-N��,3[��.!(��G#�����|�T�7����HQ�圳� X��~a�t#�ƹ�W�_�-VK�|�mE归���rP���*�����wzn���Y�":X�1���=ד�]����25��� ��fA�|�s��V.)����K�Muq���D� $�_W�����F�^>���O���em\ͬ�6M�s��HB�� �8�N��������%A~Y�dJ��c�s�>1����.���n��n��҅�W!I8���4�Kd6��}�� ���Owq5�E����[[���� �q�y���l_��A���'�!1��%��˫���!��aR�Ё�5�.��Tjך֛����A%ͬ�Wڗ�4�@�B�-��-��\��|p i� 4�pd�H� �>��+���8l~lg8*h�{�Mr��gP2�q$�U�p��i��W=��_���'�t���{�Zx�ɹ:s:Z�Q�������'�������_Ki�"�I���������VOpqiӮ-�%�`FT/�#��V��=�P@��iG�e_��~U�O�rk���&�Q�J�m-���mE�J��<qj"��}�;\dr3�WIz!�cy�x��B�>$�#;A�-����H�E�Cᔽo:� Tد�'<q�ہԓ��߈�7ks1�������H�'?{��2:���t���k8��#D�G�;�F��=��~0���9�Ɩ���s�����<'�&���qҾ���t�'���٤�O�u��.��fg�@Q�*2A��|9�;�i��h.�}N���F�Uf.[j�s�_gk�<�Z_�iW�Φ �(�T@9`ƍߩ8���� ���<o}�i�������]KI�ݓQY�I%� FCa�l(�Q�z�̟����l�����pV{yT���Gs�����6Ե-����U���4}9KG�d8��~��u�g��.��<g[��t�A�9��v����U_�ʌ��B�A���Y|>6����-���w*�ɕ#$<���C^��&��ZJ�Pf4��xۓ�$r{��N��.�����d�J}R^3�/gyF�O�'5��:&��h�Ҷ�}q�ź8���@��d䑂2�t�����9�8ܻN�8f\�O�H�y�<q��^��_�9��1ee����W�����%���np: r6�e����SФ���dP�k,nT��;�ڸ_�$~5���?F��{]>�Rկ""1o��4��#'��@o�}�h�&�ўпf�M���u��mmV�T�vzyR��+��Ŧ|9�_�G���iets��0 {���/`��鎽+���*��'o+�OmhE�u�죋��:��y����=��?�=_I��n�uɼC�h�d��#l��/���o%KlRrp�&��5cI-un��)9�����6����s�O�N���/�r� �z�!��GY�6���]ͽQZ���@#�1�vt�j3\o2y��$1@G�zWe����zM���~�����k�Yf:������*K ��y�ҹ]In�7Q��Zis��%����kF��C�H���W��mF�ImF;ۛX�B��m���5�������.���V� �orf�1m����9�9�T�m�|Qi�Ad�~�F8a�2,�@UD�I�sޓ��#L��&���!�ic��׆1���W,��8�:{ׯ|5�]*�m.�>�x�;�{;���sך��?��/.4[��1e���I��� �P�瓎�� i�5���5���hD�Vg��¡N8�:u��K}��E�y�K��$vv�x�Sr��B�\0���IbAd���*���xP�N��'��Qi h�@)8���F}Ef�K���m�LX��Lq��"�pK���`Q���|)=�1F�Dʻ/;~�<�+�E�I����-�;���7��/5� �K��+im�B��H9P���8*S�b���'��+m���O� �RKG�|,i+ ���A�#��aX�WԼ!y�K��,@��l��?�9�w��~ �|e�~#�Q��ʋmF˂ ��#�ǏUoz�ت9�=��g��p��)��>����)�)�&��k:E����m���;��ˑ���y��U�O|H����G�yeU�/�yB)�6���}��ȩ>j�.`�t�gG�j]a�V o{m>P�/.GO�ݹ�5ߍ~/��U|}��^�J��g5�Q�e�P``�}k�[����F��:`���Z��h-7����;������3��`��p��+�����f�M}� wN�PQ�������"�_=�.f��{��[����l`]W.UH\�������k�B��n%s#�r7�%��O,z�k�����νG$�6*�ׅ�iKW��H���?��{�����:"�H��c9=�\N����"�.�Oo�Āb+;Eg��I�OA^8�ߵ� ��������5�������U�8�9�B�G��F ���'=\�9k'���Mr�] c?�.nm���%hP>�C��_�5s��49�{�u8��fÈ7�$�0s^w���^��h�Mҳ� ���@����X�b��y������������Y"'�FV��H##q�N=�Z�,!Q*j��!GRPnn���t ᮉw?�$��I��Ԟ�e>�����k��}��o���ռa��L�{���y�*�����}CV��l|�]<��U�5��:1<��{�����)�ʸ��Vʓ�xɿ��ϖ�?�����|/�����[I�+ d�ɐ�c�<g��sX��kBԒmV�x�V�Jԛ�$�ɀN:{�;�E$�?�|:�����7x���4�5M5�'�.�DO�;��Pg9#*�k��B7�ϛ�����3��"�ݪ��kC���>4i�� ��)�&!����Ӑ��y��OŏGf����Է6k[˛9GЂ�ۺ�p���� ���9���q>���<�r�N���9Ջ?�z���N��Ϩ��$6v{��o�"� <��~�S�}�2������~�go=3N���]m��o���qo4���@��b�O�c^�s��<4�S��D�%����y-�`�}�e�u�=�όd�4�_���L�V��"� �Im��:�{կ����][Om�����mP���� �UxlEh�Q�j+�빝xQ�sm�_#���cS��#���ng�a�8BA��ҽ��^���>'���E���� �B��{��v�?���&���xfx�e!.4�^��P6H���9ݜw9��;��z���YxCI���O�,���7��퐶�p;��1�]X��J1�O/_#��=��z����[YF��f�F �Q�p7#A^]�-SR�?ٰ��gzH�T��!�;�N���B7ރ4�2+q%��w_��N+þ)�3�ܐ�tp�!� �Ÿ����N��5����7>�jZG���o�~�a��6�s{&�YAݍ�ˆ�=u���}úܶ�b�d��V����q�d�q'�p:d��,e���Xj^"�Ҭ�����)'�89i���}���c�k��ր��Z�U�K���E����*)���`����5�?R�Q��~ZÓF�����Ϫ�y����͠�����#i6��,9~H1���㏥p?~�1������e�� �� �?2.9,�}k�|�����`�|Q�����Y���%X�w(ifwQ0-��^#���c�[����Q[v�������P��6�q�U�/�����漇��;F;u�����Qͥ�i�go��L��h9��Kp��� ���GÚ����M���-�ҋ�@h.ZX���6�nO�yW͚���j,�8���ab� t'��XZ��/�#Ay�M8L�%����+�ޕ����BZ��?��q�Vm��:���V����C�ZG�o/l-���ߜ�*s�A������!x�M�Y�u��dQ�`�q�Ȭ�k\��:�^,�i�S"e�Wf-��rk�~|;���&�Y4MOSrm��x��V�sop.>�s�^��ӣA*�Rk}�y?Z�j��v^��j� �O����R�oo|�vy�HL�Oλχ�.�����jZ��ڄf�K6!$u=rq]&�����~ �K�����ޡ�:KI�s��r��<?5�x�C�ƥl͡�Oen�,:�M����8#��*��5J-F?$l�Κsi�_6u�m�)�%�-<Co�v��GSy�ܱi�*��1�sӥu�Ņ������m���&��3��6�]q�8ϧ�|��� IX��R�@��I�<���S��/� .K-j�O�^�F����>_�=�;�A,I�uc6Ȅ梖�N�������1��Ț�V�6Trʤ��I�*-wº$�L��w�!�����m-�B�̼�ע�W�~��<�z1|H�1��H��Ic��_�Z���RZX�[���n�.D8 >_�d�=�W%Ocy��loNU���:x�M{y���˂L��^7��:b��qq�M$xru���>|� �'�#�5��@�4��]��\�-��ݎ��"`3��c<PɵA�vG$�ߵz\U9.jN�9�Xj�������cO-���z:�J�ַA#On�rUJ�pI �Z��������E��^��G�F�(�`)ޫ��{w�2����'��Z�_���-��A�G[;UX��݉��i���V����>!�i����Lp[�9G$6�۟�rp*g_Qߙ��"�A[���x;O�<?�k������o�E���zn=k�~*�6Oy�̓3��9ٌ�q�r����}.�YImR��B���X�b0F�00y'���a���N�5+�g}���z��q��+�B�O��ww2�R�w<����.�S�#I�K�Ʋ�����5\�yWna^���+�X���ͯ�uv���/��ќ�6����5��D���O�źZ0<�����:c�i�Y�f��y6m{yy�%v�+z�N���W�O�����Օ� �3ugn�e��6M>�R�F��jԞ���k�#��o�['ڮ�>\+���=�H��lj����y1���b>Q���~��f�ZT�l��j7:i�N���P2O^�ؒF:�3�&��Й��s�>�U�\�t�H��^~����[�� ����bV34A�y ��9��:�]�~ӧL/<G��+�����7U��=�'�k>��[��k�.��X�v >��VTL�QW�In�NN��lt+�DǦ��dJ�o��L�-�(>�Y�z��\��2i��m�8-�DѲ��a���$��;�zU���W�LR� ��\�R�=����I�X���Z��H�ga��l��2��}:�� )�s>��xc^�g�s.��N�퓐���@��X�ѭ�X����^��Β�$��cn��a��:Zi$z���#�7�j�>�gs��H8�W���Ms�^��[kW �f}Rhݒ����ڹ��c ��ê�M&�]h�_%���cE,�*\|Ē9�s�����X<1�ij�$.�sdɴ�B�?($�����8=�k��\ͨh:�K�S$�e�r�Ɍ��-���G�VGӣ}cI�Q��ڎ�v��O�y�;��Кm ��g�1i�\���G��Q&��J�Ѱc�%���ӱ�5���[�&�na�R��ӟ�h<Ag�Gy��\k��6W���I'��H�:c����8�������K�nC��^A�I����ƙ�_�R�k�ymsuev~q4��=w��T���z4B���z���U�#ې=�O�P�������m���V��sku�h%��� :rzU�+� �Q�NK4��ڛ����M+�Us�<���0F��ײHt��*U&/��- 8��bsߟ�VM��~�.��xjX%�%��a+4$�r�Pl�k��o��э�a����B0�܉9g5T�&�/�4�� ��Q{�������+�l���/�4�B T:Ayi�ȇ?6#��Q�,�kO;�:6�kw��f��ތdu�Uq���J�^��:t�[��y��6L������ž՞/�ާ�jb2�8�G���X��^zB���,���E�M`�);����:�dqY��l[Q�t;�2wEO�黦�&<B1��z���vZ�����KK�:D,��Nz����Y>=�-*�oc�5K��q�i H؞11��1LV�A����Y5�7:^�!dMP�x`�\�LSAw�vڅ���Lp�����I�6\�J���H�\\i��r�z�'!���%ħdbAS�8��PxwP����Я����b+=NG��0��pNi�.� ԯ絖���mÂ֎�LȠ����'��v��",丛�1k{ۢ��f+l��?�ב��g[kx���=:}8�,������ �����;)�+? 0����RH�E&��� f�X�s�-L��K��g]o����[�)J1������Ԧ�K�C6��A�����v�k����븒08��C�Z�z=ܲ$�qaz7Gt�XF�Ł���NI�[�kI�ٮ�������7,�C�u99�H�I�G�Լ���2I�j���=������3�283�OJ�����(�:,�-��̷��O�0�>�(�9���y����B����"�)`FT���ڷtK�,�Q<�}� ,��M��`�c�c���m㴝��u����A(F0�� ����cZz<ׅe��Ŵ���#>㫞�x㠭;`[`��LeJ���'�����/���Mna����P1h@�RKl9��^1�Jڍ�b�<��meP;/j��h#!W#���-�W�]�qܥŬ��h��u�q�8����� �z�>���;�3T�a����#қe9�p;T*쩻`��s�*�ͬS�,�^)���N�S �<I���WV:~�i5��-�W=�L�t>՛�]x�N֍Ω��p6�,������yg��jҥ��}=��K5�H�ȣ�60��>r��u�}W�^�-j�r:�-�N��0�I?wnN㷧��R&�����u*��;��@R%a��Y�A�H����Dž����?UӶ� �b�����խue���-����yC�x�nX#���UC���Ʃyq��{֥�c��cs��-F�e��4�o�H���;��ʛ ��0xǚe����P��� �|Ns� �Ȯr���[�����{ ⸑-Y���` ��m�Q�sޫ�7�����������p/\��p;v����Mr�I�� �sEg�G��q�.Pz���P3�X6#U�{j"+S��θ��̪?�����$���V4mcNֵ�[\[��]�R�;3�m�s��Z���Ⱥ�Bmm����͞(叉lu[40N�F@�#��2q�2�����P�]��F����w ���w{-���e��O���t�Ox�m�x�55��zm�vwZ�3K��q*,�����v>��y6��3� <�(�2=1Q[�v+���=�|Ã��˕ �w�f�W·ͣ���� ,lq���m�5����Z|>)�R�K?��E�%��lg��U�$�B�����a�.K����|K�?��ǒ#k��1�ew�Q����Q���zKK�tՙ�'��?��ťi^0�5���H��m,�E0��+t�Y_?=�y5���~+���Ι��^�ቅ���r��t� �)�T����<� �O�F�;{���@�\3���6J�Cdyfu˟��,A�;V?��g_�� �M��&�����P�����I�\�ы)Ǫ7r)�KFDou��? �����W���x+��G ����\����� #pn��$g�]��uO�x:�������[R����M�R��q]a�� �ON���N��G,i�ۺ�]&����d�ɲ{}�Z*����FB�MB�~5j��{}� MaI�-/�E�W��+��l�߃���I�8�#������@�tz,��>�zN`�����X"��;W��O�y�[$�֩g�\1�Y>�$��G�>:v=8��t����W0����{O03ؤL����dV�~nG��� ��� �.Z�_��K�����+g��1т@��� 6V��&ϟ<9�[���;K};������-]6��N�T���� p+J��?í?���C��Bg`�]�}��ı[$�!��e�9��W]���;�8��$h�n-HO |$1��K�Ac����[��Y����[x��C�a�i��]�����k���`x)�����O�"���u��Β�����n�]=������v���,m��D��͙������I�)]�m�a���g�߇��4�nu��_ݟ2�V�ۏ�����|edR���V�ձ�s0��D��{�Z�Z�\��� �Z]����� ��)��Þ:Ծ0�P�R���n��n��@��e��u�q� ��RVg�~״�o����&��ꖺ���4�mVgӅ�ERE� �b%��!�~��0��?����]�I���2�R�&�M�7) K+�@b{קx7��߄4�mt%���>]֥5�w��C 8.�����us�߳w��kZ���b�SӢ�~�)"�ڶ�WD5��u�=�{�xcත���k�[ !��\Cf�>̪7� ?1Qך��g��?�o�/��Z��}�+�{H,��@F~ �,2�}3Z><��ŏ�>�������隄b;��1�(9d�rJ�Z��,�|:��M���ͦ�Y}��<8��۷b�\�h4�vz�~����W�G�4�W����#Y�O��ٮt����x�k0]�NP��]��Q���=i�3���rʶw�l�3"��W9U��y���>0�f�\z����*�N��ao�ہ,plم>y���߂�����ao��*Mm6�M��Bt��%H��ܥ$a���:�7 D%��^t�_�y�����d$1��J�e���<�-�>�Yk˼E�0��F�xoź=�k#��t{I�\�r��'�� ��Ú������^��R���m��k{�@����y<����Z��k�{�Zu�N�͍,eTQ�q��+�x|}h;���������%f|y���⎖��.�w~�����e`>b##�N*�?�"i�;E��fK�"]���(�(=w�zq�k��w�z_�K[S����{�Bv�8r��t�~`��\��K��W�*�U��C`��q��'Ҝkf_&T���L�4o��Z���y����H|�i.��w�.A�|��܌�/�/�7:DZv��\�������A�������^�W�<yk%�I���\�-InA*�y �+k�� ֩���Se���4�m��y����I|�^/�g�h��E���k�6XG.���#�;�^0�}��Ǻ�/��z�m�J��� �F�H�k�?g�^�c���9YZ6�E ����9������i��?���(�$�'�P|�&)�K���,9�SK 9k]���T��iN�6E����g&��I��UR�aH�@��$��'��I���kG�U�&��_�$���n�����C��ŏ��_���*)�H�|�#9D���2���g�.x����l���w<���mn�y(�9\�،��[���,�I��<D��?C4�~�xb�ׇ��~��1�~!�~��+���hN��u��u5O�x��'�����{f�>�k��F�����K��̮��n2�'n1����]/�ĝ#Q7z_��MbZM�-u��S��a[~�S%�SX���S�'I�����:��>#|3�e��r&��.-J�ۺ��Ӵd�zzf�q�������[����]Z�b���2��ޟm�I�����G%��m���U�{�,���VE�6H�i���B%�W�쮗d�Cp&d�wF͍˞���\��X�$��(���vK�ĥ�t���,�m�q�#��q]?��[%v��{dz}Err|W�m�A$ͧ�]b��"�c�>f����X|OT,f�g$��i#��-^��Rq�O=ԧi#�5�=�t�"�I�]2� ��,E�IQ�m����'�sZ�������Լ1q���U|����kx-����8y@�A�Ey>��d��-��2���xO�SKz��m�w������k S�N>�v��BP����C�7Z�'�4�/.{I����`��ڹ۫{���u :�+���x���.���\�}Flj� ��maI �A��c/�x~����]ZR�l}��#ד��qX���r�w���諀��I�z�[i��j[x�\K�"��`��=����Tw��qz.�h`Hd�R�<��<���ޮ6�ɢʶ�u��m1?��3���r�v��k:�K��5��}:ݤ-��9Y=r03�9滩�R����Lᜣ(�ľ(����AKIH�9 $a��fQ�1��ֺ�^���V<R����HY���������G�6Z|p;��i��sD��� V�H#��uC�vV�n�7J�+X<w d���<���)�h�v�" '���7��������wD�x� �����ֱ|K� �Y�D�-�!g���[�@lO9�y�*�/� լ>���ԂIe��Ƒ��C���dwҮXxoKoi�L��39���$4��!d�0������s�Z�ok'����j�i��T*0���xa��ƹ�n.�.��ต��K�0��p��I��f����H�|��Ʀ�b��V��8��+� ��:W�K���&�e��K����j �6� �d����t¤9|�g shd�jw1�jQ�e+��X�8RTBN�z����n��ĺ��s2K,�����d���J���i�j�LB��)�V�ܞkgCQEe>��v��Q�.��H��p��h�F���r��j»�Է��_Z�u-��nf�l�ٜ4r���w�W'��q�:�&�Im��E��j�e�fPH���>�kԼa�;�����"K���"�6� v��;� ���du���h�N�W&� ӌ[�k���K����<@�傀���e{gpG!�~U�C�Î �fEB�89�@���p>��I�fԲm9ޭ�}k�E�dq�]ܚYR,Z++�#b�h�s�#�{�T��s���||Ȭ���_]�d�t���0[�ڣ�NB���d-�iwPi���I�2�ٟ�U$n=��V��\�$�Zar����@~G�p����q�j;K����o�R&�6�W�G�8,��=1Z�$:n�%�ڬ�L/�o�K��� sXM���?���Y�����ϭ�x�ð�#\��P����Vh��&B+r��3x���[�OQ��N ��#bxP��'X�y�y>[m,�m����ʼ䏽��n5C4���Y$����lhz��==낦�W���c��"T��&�gԞ�i�[��uˈ��"$`�#��C~���_�7�uE�� |&��A�У�~�+��≴_���5]n�t�Y!��Nꠝ��� @�y;x���4�\��M?NѴ�Ñ�ܾՄ�:�0J����g�3�� �[�X�u�I-o��oV�g�Ț��L�]���1�~�t:�CǸ�[ľ�敡�Mq�]&->���������?�M�\��*�B�Isf�&�Q��*� �'!���d�\W��V����X_ص�4�"]�hp�09�c�E�Q�H\%V�V��c��>�k7�x������$���y�m���(0�`6�z����#Z��G�bI�g�]��)�������^�&��+����PH��un�<.���^+��.<P����Um�7պ�����JV����o���k�|�g�OP����V�s�|���DR��?� ��>�K}&�� X�-��Ũ��g�22���m-,m�:�����9�$�U/�G��5��p� ���</�_�ӂ\����9*b$ޚ#*�H����� ��1S�y�l�O�[=2Sm��22aJ�$�¯��+]���qW��O�{��?VǷ�����l-�:�υ�d`�����m��9�L����s9n��ys>�k}ous��9���� 7|z.=+��u�in��ԧ�4�-��Ha+yX��P�I9���7:��4�{��Gr��w�*1�FC3p1��׃I~�i�̲ͭx� ��pG�G�� 'q=:d��� x���I�j&MOvYn�*aE_�ܙwl���*��������t��-��]�6�e�c$�ۖ��,����1� �x�����V(�����A=��Fj-���RY.���S����P�$v?;~nJ�9�.���|e�겭���:�T=����������>�M�W&�`�65��bq��'=z�\��n�x��v�6W|��=�5���ir:I'oR9�_Ia�ٔ��氄��a!Uh�9C�3�� �`t�a��Ό�K�x/�aq�^#��Ԑ���p��=�>Ymf j��֮����IFȷ���Ԓ�ixs�z~�9��tK��4p�x�gQ�g��n�j���Ehk��F�q��V��{��F9� \�Gg�hw�[=f]#RTG�E���(,Q����8�Rx���i6�:է���� �LJp3�͌�{�U�n�Yc���/��4�%>b |�q������!6�>�W�o4������Ax#��'V%�V�wX�[�����H�\Ő@�8e��`*巇�"��P�o/<;H�y"�3�<��:�ӌU�oQ]:�[+�"�A�1�����ܰ�`�<�)�{k1�6{�(�EYSJ�2p�q�:���ҁ�/�m�[E�t��7�gӦ)n#9�F�ۀ?�/��Xi��iz�3�MG����B�IW�H�Fў�1[:����zH����I��#ay�������y�E{Τ��#�<D���a�X��zz�4_M�4�_�>[�fcwd�zr������nu}F//V�5��S�\��-�H)!T�p3ԓL��N��[$�φ�ە�Uy�ھ�zd����qZ��Z�R^X[���<�l�ʹcn�'�v㎴��|%a�ؙSP�4y�X�M*��J峵�g�A>�-����B-+T��e)���d�ڧL��f|p6�z�e�:k�ޝKU�/� ������� ��(� 8�R�iZ��+qs�i��d�{c.$�F��=:� �P�v?i:V������}J�5V�(%I��Ñ�p:�Һ��:6����^�l����/PT�1\7�-��ka}uis#{�<�|�j+ug�Fq[�֗��kq��O�_˺G����u�*��I�������oi&#g|���O~n&f�?���C�;�v�#A��:�á��g�1#����s�~e�������m�H"���Z��J�C�� �}@�呞i������;�"c��F�� 6�3��?O��5�����E�9�⌺�Q�5t,�B��A]���ͺ�YH�xgC����J|�����] ��o��C�E����<;m�jo�$�yw�p��#�=�pj��:��~5/n�٠��v�Z0�1Q�{�?QV���\�Mz������nGBW8'�V�uhK[���s���F��ߠ�~�XI�h���N�M&��[���>��Ҩ����(M:�+�/��d��b�)����=MT��Hb��<�O�,#p�q�9����ڣ�P�ծ��m쯴x��9M�Bɜ�5�s���I�;�Oou�i�ȵ��#����I+����q=�S�\U).��Kn�n���Mn��\��|��� ������z�P�tsi2��94�Z� ��eg���v�� ��ۙ����l�B�f��n� ��w ��0����|;s5��yն�q��'����r�{x�Y������|C�%�ٚ�ծ'FY�,�,�^���������5���\����J]�ݸ��ۮ��k�<:\Vv���@,��ui"�2H�s�r=��K��j��U���s�]�B������@P�W�u��5J��]=��ܲ[��mo������R3�~�=� ���\xf��H��(m�g��� 9U^9, �=��Ɠ�o<W�Aawm2�[a�Ĉ2���w�8���sj�]hd[mj�[�A��C'�����+Y.X�x��T�wg�GZ�4�=Ug���U:Η|��E,fGU(��N����zg���O4���֏*��6�=�,HeQA��<f��7��hW����7��:씁����:�\��&�P�H �<�_j失���[�CC����3������pI8� I.�=�os��Ay�CX�U����*�9QӜy� 7>��i&Ӯ�m�U�N��6���`d��U�,�#ҧ]��D$3�\K;����V<��$��RX�[�·��)&V������$1P�tnJ�Û�����y�rQ�?_P(ܛ����T�A�k1G�ZC���8�|�ylǻ�5xum7QEx�凜��q��T��q�b�[Դ��ó����V�';�*dc�a�=*�OJ�/n4I�[�*RWE>Z��px>�1j6�O���}ODռ�:���1����9O�*ƭ���{m�Mk%�z��؏$lV-�z��*�����{K������Ё�Ɗ�ؑ�`�sO���Z�b{�[K��y��ab��#�?Z^C:HD�� ��ğ*�0�v�a�:���.�4{y呾y6��qϽ`x{S�C�]-�E��^��O9�a�[=K` .4�2Y���Zs�:�;��h<(m0L�$���T�T����E=��Μ���QE&�?ZE�P�4QM���U7���-As���QSOb��?��_��u�?���\��ЅV�hq��t_�|%������5t���d���'�D�T-���������c��L3�����(��������W�����%h������~B����g������y���]-��}�ײQEy���uGg��3��5����+u����Q]��a�$�['���I��}G������c�������=�ϵS[0[���j'��5��p�h����G�_��%cU����Ы���T�Z(�h�(�_$��@�}O�5A袪;=ɴ����\d��M;U�����)���(����Ǿ~�{�_���U�����$�D��w�F�+���|�Sա������?���.�i���(��n�����������Ei� �#��i���B��t�h��$����O����T>�7�?����|q��<Y� �?����������s���W/�~�����!����Ŀ_�Q��:(��8������V-���V��q���*)�{�����ۯ���_����5������Vu���������?�J��u?�3\�O�&�����TQ\��]�����$y_���!/��:�����O�����)��o�D��(j?���C��x���~��7�4�Ere? ���Y�c���?TsG��:.����A���t0�ȿu���.�+*� ��e� �;��ֿͪ ���_��Z(��^F�s���]�ΰ�������Q\��*[�i���Z�W�{?��%t^�������E������=l�7�����\ ��u�_��%�t��EwῈ������?�$�W���X��~����$���8�(����n?��Y�Ȭ���h��;S�,��m�>���Vߎ��k���i���E7�P���C�"���{��וx7�J?���7��Eka���x��D;�����VW���@�����R�h��O�����ݿ�����+�����E[���_�w�E����Ut ��i�`��E��G/�|�����~-��ǭ�����QT9ã��=���K�k'�_������� (�B_�h�Lt���ה����m��kEK����?��?�����C����|C���(���ٞ��W�F���_�����u��w��FQE5�Dzݷ�����u��,V���eT��s���8o��A����_��x��I��qo�h��_ hO �.����Ƭ?����CE��k����� Q��D�_���S{!-�0���#���\���jתj��M����KE�TC������?��<I�%?� ��3E=�G���|I�?ּ@������i��-QؙK��������2J���=s�^�*�E�����sS����F�n�]�����`���T�B�ix�I������_����:��A4QM��������x����G�@�����d�������W����B������R��?�7��W1���>�_��E������,?��_�*k��*(������ |
| URL | http://zero.webappsecurity.com/resources/img/main_carousel_3.jpg |
| Method | GET |
| Parameter | |
| Attack | TRACE, OPTIONS methods with 'Max-Forwards' header. TRACK method. |
| Evidence | |
| Request Header - size: 288 bytes. |
GET http://zero.webappsecurity.com/resources/img/main_carousel_3.jpg HTTP/1.1
Host: zero.webappsecurity.com User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0 Pragma: no-cache Cache-Control: no-cache Referer: http://zero.webappsecurity.com |
| Request Body - size: 0 bytes. |
|
| Response Header - size: 351 bytes. |
HTTP/1.1 200 OK
Date: Mon, 14 Mar 2022 07:13:43 GMT Server: Apache-Coyote/1.1 Access-Control-Allow-Origin: * Accept-Ranges: bytes ETag: W/"101493-1358497020000" Last-Modified: Fri, 18 Jan 2013 08:17:00 GMT Cache-Control: max-age=2678400 Expires: Thu, 14 Apr 2022 07:13:44 GMT Content-Type: image/jpeg;charset=UTF-8 Content-Length: 101493 |
| Response Body - size: 101,493 bytes. |
����JFIFHH���ExifMM*V^(1f2x�i��HHPaint.NET v3.5.102013:01:16 15:53:54������(HH��XICC_PROFILEHLinomntrRGB XYZ � 1acspMSFTIEC sRGB���-HP cprtP3desc�lwtpt�bkptrXYZgXYZ,bXYZ@dmndTpdmdd��vuedL�view�$lumi�meas$tech0rTRC<gTRC<bTRC<textCopyright (c) 1998 Hewlett-Packard CompanydescsRGB IEC61966-2.1sRGB IEC61966-2.1XYZ �Q�XYZ XYZ o�8��XYZ b����XYZ $����descIEC http://www.iec.chIEC http://www.iec.chdesc.IEC 61966-2.1 Default RGB colour space - sRGB.IEC 61966-2.1 Default RGB colour space - sRGBdesc,Reference Viewing Condition in IEC61966-2.1,Reference Viewing Condition in IEC61966-2.1view��_.���\�XYZ L VPW�meas�sig CRT curv
#(-27;@EJOTY^chmrw|������������������������� %+28>ELRY`gnu|����������������&/8AKT]gqz������������!-8COZfr~���������� -;HUcq~��������� +:IXgw��������'7HYj{�������+=Oat�������2FZn������� % : O d y � � � � � � ' = T j � � � � � �"9Qi������*C\u����� & @ Z t � � � � �.Id���� %A^z���� &Ca~����1Om����&Ed����#Cc����'Ij����4Vx���&Il����Ae����@e���� Ek���*Qw���;c���*R{���Gp���@j���>i��� A l � � �!!H!u!�!�!�"'"U"�"�"�# #8#f#�#�#�$$M$|$�$�% %8%h%�%�%�&'&W&�&�&�''I'z'�'�( (?(q(�(�))8)k)�)�**5*h*�*�++6+i+�+�,,9,n,�,�--A-v-�-�..L.�.�.�/$/Z/�/�/�050l0�0�11J1�1�1�2*2c2�2�3 3F33�3�4+4e4�4�55M5�5�5�676r6�6�7$7`7�7�88P8�8�99B99�9�:6:t:�:�;-;k;�;�<'<e<�<�="=a=�=�> >`>�>�?!?a?�?�@#@d@�@�A)AjA�A�B0BrB�B�C:C}C�DDGD�D�EEUE�E�F"FgF�F�G5G{G�HHKH�H�IIcI�I�J7J}J�KKSK�K�L*LrL�MMJM�M�N%NnN�OOIO�O�P'PqP�QQPQ�Q�R1R|R�SS_S�S�TBT�T�U(UuU�VV\V�V�WDW�W�X/X}X�YYiY�ZZVZ�Z�[E[�[�\5\�\�]']x]�^^l^�__a_�``W`�`�aOa�a�bIb�b�cCc�c�d@d�d�e=e�e�f=f�f�g=g�g�h?h�h�iCi�i�jHj�j�kOk�k�lWl�mm`m�nnkn�ooxo�p+p�p�q:q�q�rKr�ss]s�ttpt�u(u�u�v>v�v�wVw�xxnx�y*y�y�zFz�{{c{�|!|�|�}A}�~~b~�#��G��� �k�͂0����W�������G����r�ׇ;����i�Ή3�����d�ʋ0�����c�ʍ1�����f�Ώ6����n�֑?����z��M��� �����_�ɖ4��� �u���L���$�����h�՛B��������d�Ҟ@��������i�ءG���&����v��V�ǥ8��������n��R�ĩ7�������u��\�ЭD���-�������u��`�ֲK�³8���%�������y��h��Y�ѹJ�º;���.���!������ �����z���p���g���_���X���Q���K���F���Aǿ�=ȼ�:ɹ�8ʷ�6˶�5̵�5͵�6ζ�7ϸ�9к�<Ѿ�?���D���I���N���U���\���d���l���v��ۀ�܊�ݖ�ޢ�)߯�6��D���S���c���s���� ����2��F���[���p������(��@���X���r������4���P���m��������8���W���w����)���K���m����C ��C ����"�� ���}!1AQa"q2���#B��R��$3br� %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz��������������������������������������������������������������������������� ���w!1AQaq"2�B���� #3R�br� $4�%�&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz��������������������������������������������������������������������������?�'j�#�:�\g`�ӥ�A�jL�b8}��R�ʎ܌��'8�l�)H\t_Ɠ?9��p~�Ұ�㑁��T�8���;Ғ?:\p>�R�aGJBr�&�g��� ���?JV�:(��[$��N<���0�@1��Pʧ�'�G��Sֲ�N2E)4ʷ6���9���F�p���#���:W��9\*Ŧ��>%��=���r����!+�9����0$�V�fT������l�xi9Ah}�-LcG#�Z�w�Fy#�l��wt�U ��q�j�����s���T��=+*[f��l�WYsn���j��H\q�PV+��N��r�95z��>x�kVtT�k:�'=�*j�ݛ)J�O~��s�Ɣ�'Q�U `>fB��RC�A��G?.�vE�[�v�Zъ]�d����X����j�#n��vK-�4�Ğ�ic�ўi]�=k)��4D����"c�O�0��I� b��:T��`-�1��H{�X(���ӲH�qZ{owQr�8���sHI' ���~�T�������E�n�b���:�Y���RFrW�Oz�����t�������Z8��k̲��?� ǿz�9�<��c=k>Y@����h� umC0�ZG��5�����~�t��F3���x��Mhk�Ny�ϥ4�z��Ȥ'������I�����s���"���<��;��UqvLv�b�}܅�U��h''���@��Yά��Ф�H�s�E;��d���P��8���1�Q���7RI��2O��b{�T.n�^�u�s\�ѕ�=+xR�Q{��ŝN���z�9���-'֛�_�H��9k�<W�U���l�9 ���YeZӳBsQG|���`�[�������^�_��L��-v�=�g��H+���z5rEL�Z���J1�aU�� c/��k��TRs�z��߃e#������YJ��jX�d�A\8>���Ͼx�s^}o���ql����z�3��VR�Tw5SL�����z��L.>c��rP\�y'��5#�/p@�sX��'`�:C��q�<s�G��8�ۯJ���r1U%�@�A�x�2��1�g-��}i˫���p}�]S2t8J�5 Xa�o,�`�;a���V�NMM�a�c����?�OO�Ў��yrc��S�7Z�o��`��k����g��V��YW�g�5�<������.*d�RF���\%�� ?xӭh[j��#ך���ѝ���:�&� Ͻs������z�n�>�*����p6U���4o$�<��Q�v��8�Z���9��Z���;�1��i�>߅9�lὩw����l�& �L�� 7 �O�OL{�ɓ�'�P4`c4Ir20~���q�@$/ ���n�2��`��$�J�XFp3��+�_�SZ£��:���%�k�:=غf�d��N�-w �N*��Nv�קO*j�q���铅/� ���`� �wq��#�X�J��)�4U�L���jc%=�Q&��$��٭�Y���۽bD��{zS���f���V:�`���]��q��5��������׀���84"�f�s�5�����O�E�df�N^��L˻]ā������e�*H>����Un :��8IǨ�V�I��z�-�i�.Hf��&�R��#h%�T�r I�����fD�s��K�{ͭ3c?) ��t�fH�+Ly<�y���rd��qް���9r�8(N1��aʖ&&I8���j��b\�u��M�N�wf��K�|�!I���ں�#[F*rk��c����=?L��[�=�t�F�������Q��s�ڰ�n ����q��՞�ա �S�l58�V��°��zq^i��̬�ǏZ鴭X8\�;W�/S�����1ysZ��W�>���t�qY�bB>n���"�9���p�� JR�ԛ=���㓎ޔ��lc���5ߦ���s�#ґ��N���;�b�y�z,�������x��zt�h$3�J�v��.�W�Rg�P#�M��<J�}��`=*~@������s�k �@އ�v ��3����'�7#��4qz�{��� �K�m�8�9�{��r )�pO_�4n���c�C�CK����i8��� ��Oʐg'�ZA�u�9�8�~(�ohR0A=(�8�r��@!F9�v��9�A9� B��9�@��#��CKߡ┢��i�E4[��S�Y�ց�������S$PG��|n_ �j�]C�8�JÒ@�=k�9�����0Ɂް5];� sۊ��;��Rn�%�>��SVg-"��hԾv�kJ�ݕ��TB;u�_f�g��otd�Z����Vt��$#��+����g�ҳ�# �9�QQ��HďO.ű��*�V@!�U��:p3��ĊRx�(��{��+�`298?�*F�:�p�����k�M��^����y�����2q�Z��㼓h-�������>�w�II̾�����u��F ���� ���Z�Qqvq���OS�O@*��\g�9������#>�$��c�?:�H�1H���ӄ�ev \sŸ`~����<�8�Ml@�r8��D��$zt�J���ތ�o�$%����z�A#�9�-~�� �Z�/�6Eys�{W�B4�@���uepK�95������}k�͢�F@�jK+�<})��)�Eb��z�v�Mj$����\ ���8���{N�Ī9�kĭ��=�[� ��{�r���-nמ��<�1�Ao~�brA�jk.,@��r�>���ڒ�An;V�����7")6�s�k3P�R��5��j���s�Ճ}��� Ny����M��lm5�2�x�l�'���5�c� Ҵc1����М���T��N�����r����k�|\f�Re�lϥ{n��d� � y��4�qx�19����]Zpg-D�9M0�H؟\�+�ѯ.`�"m̀go�ғH�&��x��㝹5-�v$���]U�)��1���4�<�^s��yeY�)����!�j3Eu�:�hڣ���r�P���؈�z�Ygh2�Et�;d]ñ�Z���I��8��F�f%�mϡ� J.V�6m���c��z�Tr�͝�:����J����$w��s�H�m���u��8[��s���H�6})�ܶ�9�����I�c(�q��?�ni6a%�H�jB��M�2��fo^�k���O$����lt����嵋m�k��b��5�JQڦ̅�)�n�~�_�5��r�;�w6�Aaɮ�.�*�tv��2F;g�s���qR� p��sE�ɟ�r}�����Y]&F�����$���h��S��ӊ�X��&�D� ��W�_��dE\�>���2G zU�I��^j}�+/wP�Gs��A�-�l[�+���;ןX�g�� *�6>��έ��'�Z3���$?:��`�k�}�p��е}�<�J�Fg(�J�g~�p9 #��~����N��������� �����C:䜞E �i'���h<�:Q�N?B:�A��J�+�+.*?�/~? �=z{Ҫ�>a�åh�t#>�\���+Pr����t�QC�g��խخޠ~UJ��h�o�o$�����ac,��%���@�\��V�G����{X<5*�i�g98�4~+�L��OJ�ҵ�.ݮ=�kɭ��\e�=s]��mI���X:0���Ӝ�=;J��� �d�q�2G���j�^a�ݐJ����7GG gޣ��A��R�����Q� �9���E <_)�gި]��nO��Z'��s��M���������\�n!FOz立�s�ν�]�m:饈�6L�]Z��vebzqYm�sGq�5����H���#]�2�R@���8\M:��9��F���0c���Mt�V�T�����3�9PK/`{V���If=}y�y<*E�! �vg��:�p��3�9��6����+��/������u�f�>a����upӼ7:ӌ֧����H�0��O���u��+��V�> ��+Vx������SW%N���v+.�Ex���� ���e\2}���uu�6۵�V��s_���,DSN��bpS��F�#?����I��_��J0G־�RWG�Ճw�N��<s��!8ϭ!�}MQ#�,ӆFq�3��/q��@�Ȫ��`2G�Ҭs�<�k�h���X�� �|ghs�g҃ӡ��`��iPsӵ�n1H�?�������899���8�px=(o�i�猜z� �<���x��v�19"�}�NFZ��ր��n����t��A������`�x�8�G^zzP���@ z��~�t��4�'>�����Hb�b)1�28��'�z�ԭpP���*�ժ�A��WO#������\8�jŦ���pg1�i��b]۴/�x����� �.�d��b�6��wz���������9Y���]E�ӿ�l�99�5��Z��|�V�=�������&�ȍ�eI��[��Ȫ&$�Ͼf�i$;�W;G��\�&�k1���{r�5 ��!�{�Xṕ������� Ƚ�����O�^�؎P <W5�[�m�s���W-<$��i̛-6���1�OJ�U���s^_�8bs�=�����P��� ��˪r�KY��=N9�EX���vw��X�<���_j�P�FN=k������R�=)s�H��NLd�s�*[�C/AӥM�� �)��֘T���Ҝ'(��h���H���z���?(Q��z��wnZ�6��0O�z�0���;�>� ��C���sK��IIv�5�叝���ֹ�SDܘ �z��,\9l(ǹ�@�\4�H�ֽ�����q�������ľ��Fk�ԯ ���z�Lh�������j�7q�jܚ8pּ~+����ը���'�-\��j'}��z���d�q�X����g�?�rwz��北s�v�{��䔗%��]�\����3���%v�D��>����iyb{�TO���{�M37�?��X�SZ�3n�QÂ��Z6����==:���(�rGC��-Fv�5�V�&�4١q{�ۑۧZ�H��FB�sT#�@�I�_ �ޙ^�Մ�F���b�c�<"��+���KB�J�����!��VS����tR�RV{額�m&�1pg�Z���d1�<���� ��rB͞稯M>�[�I�Y��c�8XB��+��{NT�!CԮ�WE�t� }�V�i��2sn*{h���#�i��q��־f�2i���\���4(����@?Z���-�����]���Q��+X֠Y6o O���b�Rk��F(������r �G5�m�(��t�Өe+�{Mtb����8�38��B%k+0�}x_n�bPlq�R�&�}8���ȸ�9�˜�����$��c�8�6����'�f�8 u�k+u�@s\��--���ʌ���+�+��p��z�ժ�@�x��.���WV]���%�4svڢ��i�9=k^�R.�+������^6-��V���<sm��#�M}4��է�{;�=����j��aI�,��2�R3B9�u��NGcָ�Qte�w��gq=����c�M*���T�I��zG5%����r6jڼcV: ZΗw��w?�oZ�����'��<���I��x�ɯ��S�r���ߍ�ǜ�;qA�a�T�r29�|���'�$���WW�6-���<с����v�J�p�穮�MH�X$E'''�3�����,pip{t��78�@㜟���)��Sߌ~�)� �{ɟ��Ow#�)7�v5�g�,`�r��#�q�"���X��{W�L��,:Vn������u�K:N�c�{�{�Kiu�x���?"�6A�=k��4��X�x�z��KV��t�ac&�z����4��^T�3N��`q��X��H��=*+��<g��}�������5T3=kwM�A`u�0�Xh������u�g��ֳ���� RG��"��ޔ��2:��H�ۧ�n�N�&^�k͜^�V�=ƒH���~�������bƌ��u8Q�W;���`Pc��j�J�8���6��ӧ��(Ք�=O�7�%�G?Z�tǷ������vմ�Az�+���3*q_E��ޑ���_Tp}���w��M�#$�'nq�{�?��Khİ��o���Oŷ݁�?:�e���W0����&�����WS��"�X~u��C43)vo�q��o ��2�Y�>�5�٦B�Q�G��\��t!�����$+��^a�껀;��o��\��^�˪^NƕhB��G�i��p>`x�h'>��5��V�$%���]f��G"�_z�/!��UҌ��c�1�S��:�9�9�z�x�*��ڶӜ�W�n��X|]:�Y�?R�����c8=A��'���^=)s������W�`%\�������ګ_�L���q��;n�3H{g8�t�CpGN��5�4�iTg�h��4�����T��c�)OL�)#��(6:zq��q�Jq�i�A��~t��zs����@1K�3��rZ0��R���NRH�>��B�:�aF�4����J�px��0����#<P�s�Fp ;��B>^���*'�T�* �z�7C�p����rL�H��Yw��F�^jʤ�߭K�C7%�P3��k3Q�B��J½��n��Z�Լ@�۷��Z���Jmu6�7\��fS���;�v#<����x����4�?RY[!����M��K٭O���xn�� E$'y#<~�E0�FMJ���Ӯk��c!�]�:\Z+�����ܑ$$("�Ϊx�zURX�y��W��S�����`0�ץq>"�g����GzW�^�ː;�k�$�����t�9��.��[�aW$E�w'�����,��J��m�g�cW��}�'9�j���}�H�64��"�aq��ZMS~r;f��3�26��"�Z0V-���(خS���A9�lT��C��Z�K��8f�S�jG$y河�+��<�g҉Wtg:�PA:<]z�Oݹs����-��;x���L�q������y�H�n����X����3�5,6I$;��H�P=}j�W��`�]�jY�D�`x�L�F1�y���3�?(q�#9��N�2�W���is���uS�N��Etg�6�*XD˞0D�q��.8����P���q`��&��fFq��b��*�q�4}�\�e44��b�⻃�Pv��ynFӁ�>՝LN#�#& )㚲�tH>���Z+q 3�i�OH8�]z�z���C�ґ��cET�nv�����6�[��Yb��͍��a�u++܉M%��5�)�$�R�jꏈ�>���2_�M�Hpy��ƺ���F�H�g��N�(�'v�1�ǪJɝ�����Ӽ֙��=sN��.$]�:��k��N\~�}|�j�i�D�#6�H�zJ��̤y|�u���(F /�Skzt-lF��5,B�+�Nǚj��Y>9#��cXW�ί�v��&5���$����~Q�3^[▽Kf��}�q����v�x�mY��8��W�f���8���q��u� ��Oj�֡���)����~������@�8�ڎ��y��:���-����5���O دS��h��r �&���\F7�&�f��(m��q_�g����E�(�G�9���.8�����sǥM��>ڸ����L'̀�`VXj[�ͳ4o��kKأ�ֽ��E�f���[9�����+-u>���5Lj�j-Pԓ=%���pF+3U�����;���ˁ�}k���s�.}+Ŕ*a�f����"`ύ�� s^}����I��5�f������Ҹ�h ſv:���_Q�g��䩱�����hs�n�k���z�(9�Ϣ�{��cw$�����9�zU�S��DqV$�Wɦ<#g�ac�O_�FLgcֹT��>��(dp:WI��T>����!�`w���7�k�ǻ�\M�\����Z9-��8�P�?�8�6�9��˕������z� jp9$z�z�$d ڝf�-.O^q�N�N�'����q� zt��� w0ʐ?Zkd�~E<Gk�d�0��'SS��0�)��n��Sf�H��?�+��p1JpW9��+�8�5&+�(�w��X�Ύ�]Wˀr9�Q\*�d3�kHJ���QTu�ڸ=N���PrQ�:t�9�mլ<��h ���x�@�ؿ�2G��1��婪3�Z��QL�+3�El[�,H@��5��Oe6�`<�����Al7:����3�� Q1]�4��B�1�V|����+����@�Ցq�W ^�O�ֹ��*�"���z�$)"� wr����˼?�O��A?J�t�P2�<t�ί��)Y��gC���Tn>� c�"��\�$�8��Y��j��3�իg���JVP���b�MŁ��!Вh�Ju�:�g�Ll�\$��?½���HOJ�5�-r�����9��;Κ�<1�e��p@�=֭i�]ZbH��Oc]���ّ8�}��'I.3��~_�{��C����4t-sj*H�Z��\�Ͼs^FӲLL@�rW������K{�r�t'���dʺ|��8��F��,�G u�kf���`ѹ�k�<#�n�S���U�L0�9�_���aj^:X�R����6����������:����9��pEj�j�@��k�����Jޝ�7�B��w=2 �p0rje!��\���$�p�սevcp�+��9���i�'��Γ��w8$�}CpR�C������PO\W�Y�N�= &vc�u(��������������x��zӗ;� h�~(^��s�9-�t�})q��� �=�*7d�t��ڀw<gօ�*E���K�r)�ׯ�B�8����`s�j�4��l��Sߎ��&Q��E,�8B��(?0��^(�M�./���TnuR}+SԕA篽sZο�+I���y�iǩ^�]���X@�o�Y7��F��w�Q[�^`9뻥p~&��go�~�J��f��*4g'd�h�|L�ϙ��[ƐF 2��Ϟ!��q0+j���W���Y�c��[���U���H���_R[�}�/�6p+n��F�\'�>,�f[m�G�z��f��K+1�9�4?��\3�V��#���w��.>#ks�E��i9ϵz�O����^�ǽx(rT���A"I��5�f6����E�J�ZhhZ�sƤ09�tVw"H���|����i��;MF\I��CĶ��#$����k��!���9�ӹ� �h�d�����j��F?���u꺀rA⦐�eq� �6aF�yf�"\Z)O �gw�q�V�a�3��U��N�����0o�*T�=�Y�h���Ƞ�c�tW1�8�5�t����Z��%��rچ����X�W1�j��o�z�K�mqlJ� �ב��B��dfܘ|���b� ��݉U$� _�0[�l-�����R�����k�D:�ZNrK��[+�AB�c��vק�t�iF�q��z>�u,�����=k}v��Vɮ'�w��@#�t){���k�%��ݐ���c�9?�3���8�l�E�{�r�i�}��X��Y�+�� ̅b��'��aA�=�Gu!�3�z�T��f���nA8�W�����}��5(ϒ@�<�ڼ��Xd�e=HS���ۖь��� ��/�̗l�b2x�j�����Íޣ��Sr�$�z7����g�s_��J�M#�NL�۽j�2)F@2py�h�4e����ٮ�ĺ*^�ʩ�b���<#4ڇB@=��}�'E��&sNU��Ӧ�Ʋ�7�/���4�jK���1�f�iZ����l���H�Aqas �bG ǰ�:kR\�Ս��dt��}�<�N�dUKo ���Pͻ9#<T�U�v�L��zֽ��Ot��q�^]Yע���q����v��q�uZN���!q�����͍[Ϡ����0>��X�uZ��l��,���%p��i�l��j�B�pJ��]����>i4Ũۛ��R8��wX��=*��5m��zמkz��M�ry��+�/�U����o�MBp\�Gn�N��q]�F�w� ^�(\Nk�<;�:�p��^�<T������㚧��'͂_%��fA���l�9��W���A$g�#�W���yy��+��fr����8��a�w��� ��SW���9�f�Z��@+���ʅr1�q_3������W�s�����OLf���NFP<������(�eT�1[�0B�>j�iY.JZ i=�o;Z����5� ���wgBY@�����4x��%@f����l͜�@ ��j�2��&��WL�J�/��ov�S�9�^��?�p�g�k�|A���9��v����f���Dr�FX{}k�<� ��Ε��*����t�M.PG=�Q��9#'jw¹c�u=�b�R�� ����L�ղ��EMn' �X�ܣ��Wo�����T���ȯgF��3p? IX�A!�"�S���5&���FS�+�D����a��![6��g����a �Ñ�1Z�Lj����bj&�h�j� ��Ҭ �N �=j���Ƿ?��d��J�Bs�\����������՜����q\ƙv�A$�݂]�g<~5��1X�bq���Fűԏ\�Τ`֖��Up��i ��c㞾�.�Bx�uڤ�~�M��}+У]KC7w;�s�sLp6㌃�� ܞ�J~�#'��t:����@�݇�>��W��5���Ut���Lc�jGl���H��q�n)NphC����Uu :)c9��*��Q��G�<�kH�G�h�;��U�^xy�ѽ�8 w�[����8�>���F}MwS�Ԧ��ɞY}�1���8�k��z���C�?Qڽ�}2���������o�;N7DN�2ўC�j���0������!�u]́��+�ִ�$���*��aqo6���׳��E;��c�c�t-JM����d�v�����- d���J贽z)�A��k��ag 6�:SM�R��#�OV��v�:�ȻY�=sW�`Wp��\r�PS�=��k�d|p9���@�E2U�)+�T ����`{�h~j2�s��z<ц=�B��d��Q�t��J�����y`#��}�:}ki�$��n9 {���,���a��WS�J�N;��_G�͓����ws��3iΤƥs��u��@�Wrb�w��v�ۮӴ����y)�q�9��5�J1�G�@���=�D��B��I��s]-��ȣ���ҵ��0e9^�t��Þ'�R���k�1�$��uB�^��K;��������5�0�J����j�̠����j�Ua����p`3,V]S�z.�W�N�m$zn�~�Fs��� ��M��q�df�K}h4*w�Z�K+�U���ٟ=[+p���\N~���Ӏ���#�|��k����z�q�n�Z���9�8�'�u�a�w�s���Ȧocߵ#K��*\�M�(��I�I5��5��O�x�'��z�Ɠe�N��F�FO8���Q��Ug�W'?:��t��駅��k=��{UI�Pw�}��S<����D�������;i��ܼ�UA� ��5lCVm�܍�����x���|�/����x-���s�S�$��W�mj�Vu�H�L�[{j$���MSM �+��9�2n��wS��]#��ِ���8�yƱaq�$$���s^��i<�3�j��I���ۣLs]�~o�d\�G��� ��jf{�m���3�)�`{��q#�Oz��uc8�ҋC3�rq���t�0��#>��{w��H%'��ױ�%�i�O������k��u�i�&�OB��9n��ֺ��?��$sH��g�+\m�c�z����rI�*�(b):uct�_m8J�>��k��Z��H.Ar3���K���1�9�_�>����������� �����W��-�Gr����82t��W��_ ��OvZ3�hϨ枠��c�Z�7.��0ܽ1ھC �ʌ��#�:eN�����=1T儆 �$�*�6F~��m�=E{������ɾy_���[�)o�Q����o#o���~��Q�ę���N��f݁h`^�J ,0��^}�](�r����F=+ۤ���ث|�����f��D�I�z��xzPM[���oS��s\�9�����m�fh���~�c@�т1�*�ո�zB�q���r��)��N���?���h��5J�.���RDKgi���Я������*��p?�N�ʄ���*A�ۃKT��F�ZXXt���'�6?h�&����|�b���X�Ū�l�A'kL<� �il���.,��M��`�8��V�l�#�t��h�it�ĘBr��k���B��>��k���צ��s�4�,M�y���-�Q�]x��Ӽ�1�I��u2��J�X( ��/��1,3dg��'/f�=���v;֏M���z����?�^+�UW��}������/&52��W��kY������`2A��j0Ta^h��g�뗓��"�q������ܗѤ��Q��w���- ��b͒]Ku�֎��izX$;F0?N+��R��N(�����Y \� �>��n� 2�c���<��)��Px�qZ3�@�x��O�_�b2c���c��A�=a�D�p�����kp��}�8�ڼ�~#�JJy���:�Yz��t(��è�f���ا4�-����=�D�c�MyV��;�- ;��� �[Ԥ�Rds��1\��o�N�ϥ~��e��F�9kUg��'��YUߜ9�UUI$:����k���M����?A^��}z��H�F�#��_Z���.�k�} e���bF�f���6�<���3�mJ9"\���5Q�w����jќj{6t��,�<8t*���D-�g�+ϞK�y�|��3Z/p���$8�zWjʝF�!JIz�����ؓRh�0�[>`�5�<C{�6q���\����Kx��B{{��\'�R���"<�>�����U���y�����:�p����_¼���E��Bx�%�=�j�ֲ�o�\3��1]^�B��9\%Y[C���{�]���#;~u�h6֖� `��c���'U���s���<�£�5k����&p���W�b(V� tH��e�=��e�6ɀ�=j��$gۓ\�b��9�GZގ'\�q�_)����;��,�� �����rX)�Ìg;���6�{�ZbG/�r9F��-m���e`��Z�6��B�ڥ��2�b�ml�H��ּ�F/�IXm�����֯G��rjKXI�a��M ��"�y��m��$��+̗<s�V�0���[l�`���5T�J02��D���(����~*�PG9Ϯx�yg���G-n+��\c?�X��� �� L6x��"T~���d���`n3T�v>�m�yg���~�UBn,V��㩩���C��:���JF���ST�.%�p�I����r�=Ȫ��p�yǭ\����z]��d5a��@�zRH����=��$j=�{t�UsX���)�>=H��N;K;���Ts��]�nK�9�H0� �(��QQ�') �!�qX~ �l�zV�� �Q�ʤ��$�ʒ��r��>,���Rg�'�OP��Tl���J���OV�̥�A�zW�hSF\� ���Z�\&aNqT�F3��v�T ���Z<v�y�wd���7�er��\�'�G�y�� w��3�k�1�l�tc�P�H=y��D�3�$=y�&kY�9����rs��u^ԚX�ҼlV6扴d�Dr]2��s�=�f�j�b�j���R��.O^x5�2��e?C�J�@89�21�ӣ#�n�)!ܭ5�Ex_±�M(0,��tx�!��M�^TQiE�.yw��8��c�<�����uar�|�$�C�+��>9���\���8�� }3�W���S��e�2�5-O�q$%Y���AZȾ�g��(�r���x�óZH�VQ�XW��\eݱy�X��+�_W��*��j�:�IYnw?�[4�b�|q�z��mZ�sdu�:ׂ趍��wێ�u����4l��J��_;�e4�N���U �Q��l��I7�b��Uu�����8�NJ!������u�S�eW�G˃���O_ S��U�-O��;����\�?Z�%���zzUYo�G$ ���*Z���JLВ^5μ��ֱ�5^r?�R}Kg��J������맃���^*�dUY��N5�\�|��+�� ��}���q$#�;�eϩ�\j`��`��)�0x��a<�7�';��1�j� �O��j%��MA-ӑSW���J��jc�����T�����1֗�����:�rk�ɽM,W��<cFg#�U��B�~��#c=r+�RԤ��/��qǿ�~l��zԨp�u5���ƿ�T�`q\������n��v�Uo-ׁ�zW<��X��xω<=��¼�ľ� X������5�(2��'ڸ�hK e)�ڽ,�5�r�r��>|���6 ���עx��;w4)�W���|�W��}� Ѻg�8��'�J3��i�[�S��u�;�c�����j�y��S� �qK�8��W3'���]��Zϒ{�:�nl�h�C��y�g$��mXR9���'wg��h�^'�|��\E���_*N�O��_J�w��(��m��)��� �ֿ6�z��s�ŭW�7�Y�=ņ�'���W�q/��ӕ|��w�+��˒���g�FEބT#�8����^;ӵ�6;�k��]s���B��(e�&� �LF[[��#��u�M^"�jW�U{�PF�'�J׆���(z�^e�p������� � �vg2���f�6��֙n�eU�eNI�n������Ed][�10G�^S���ɤh��Z�λ��w4�>S�s�ެ����f0s�va��5nK���(�V;��zR!HAc�@�&��/���#$㯭g�z��DɁ��z��i��$f��]�m���`�Y�)<V����)��ÒA�+]��̹�$�V���t��ө�vl��1�G���Q[�ۀy�ޙ�K�4Y`pzg�kB�5�>��g*z�r��I���=����c[1�$�A�W��jv�Ԟ:�5��i�a*��C��t��>Te�Ы\�}[I3����:o�fK�\�p����z��8��%���䯯�\us�[�Si8$�__�ͩՏ�#)R��~���GA���_�-j�%������"��܂6���L��v�(�H�NN�<^�r+jp��Ԟ�Bђ��V=֟$��{���W����`)���5#i�� �g F1���ׯǓK+�J�Y���7�$�&3�z�V�[8ÉH�S�G���Ro �mD�|q�u x����h� bwdu��gVw�9��>郡��A;��$��V// ��v�ǎ3��/Cd�8�r�S� ���jZΫ�[fp3�5�<+w��F�$�b�Ά���A �&��SJ:��3�1��4w�T\)~2��rK}6�b�i�C�ּ�ⓧ%Ktw�o�9ltzo����7L�w��Kkr�F9���+cJ֡��#���a�!v�N��+�'��s>s�F=i7�ۜ6��:ֲ�&�2yoN���x��j�`���c��*�+B�3Z��^���bA���oE��q���c�*嘑�ʮ���6��5�:s���%ٜ���_�� U�����3��ji�3��u�>��J� ����54>��HWE|}�e�k�˳J�Vz�i�_t��ú����ı�������ҽ���7z^� +�����6�m$[���'�|� �~�ֳuM_O��d�UP�r�k��q���,��9����=O �g�%�֥%�(o�O&���z��Wh��������w�7���}����4��Qx��5��Cg]�Hu#���o��<eZVc�J���Y�[���"�#��T**vc֯[��#sԊҳ�v���dW�W�-�記�{DR�I�Mji�O$���ּvj���W,m�r��W�_)��ɒ-��c��SD� ���ui��|���+=��~Y��k΄��؉�P�)� ���3�9��5H9ws����M !]�GAMU�zzU��p�ҡ��A8�~�.I�3{��>������#��x�����<�{ԩ;�į�A�^��,[��ք鞣���s� ���V�wz�n�-���Zx����x����_�TB]�l��;ӕ6�h"��;�sm�@w��)8�{�&�r�c����Dب﵈ �LT�Sd�x�pj)�1��bm�G~9��U�5e�l=�>�Yd$��zR�(�����A�����U�܇s��'�zT��� ǧcP� ��� �8���]I�B$;���)�G���8�y���[�����6��M�9��'�ŗ�H�(�=3�ӊx=䓓�m4��̓�j��t՝[`��i�#��]��=8ǭTC�'� z�FY��+���6�ʜ�@q�ϭ}we��<Q�t�61�Fs��\o(ST�j�%E7̎[N��w��q���0[�o���\�����|�Gsx��kpIU��dd���EJ3���tÙ-���Y�P40�y�Sh�&�W��+�z����XX�`��ֹ��I����Z7Z�t�9狄]��t�R9C8 �5�V\�:W���w�u���1685����]�}���e��J�:)�SWF�g�9*r)���4F ����64' cp��*�VE�^{~v���naӡ��K�[�x�C��6���^k���y"�ֽ�U$è��[N��{�p�ڔe�.*[�;�C>�>��;�_��)�m[���N�ڽOž�YT+�Ha�W���E����`�OB~W��5�\U*�_��e �3m�o-/L���� 9� w��M5��pp3\"Z��+)a���W �H�hF=�����U'$�(���ެ6�1��ԙ�����ENrǯ�=b�����j�- ��z�į������I�D������+͝j�~�7QKb#���L9jG�{f�lf��h`�zG�#ڤ�<�>���!PI�~�"�#ڜ�v������ �9��*�J���}钐W�+F#>��Ef��@��s�<+>Q��'�i�R#��V��~�ZDГ��R��P�\TA��"�Q��i�9<v�M�H�yhp;q�V��������ny�=�����Ұ�.b��yf��,�����\��,%S8��4���NNzW/� xbW Ҟ_=v4�e��>��\ZJŇ��IT� �'�z�?xy][�Z��ok+���.�ሊ�S��lr�0~�� ��A�:�&W#�G���^���b�2���>���N>��>�i��{��Vd�*H���I$���fMjT���u�v��H�ɬ}B���=�ֽ���_mK? �{�x3RI�������= }�#�&��8�\��� vé���H�gj��P�����q�i��C�s^N<�r\�:?�+�TþW�OֽR���E ���{3y���k�٫����K֥[{�~c����_XxG�V���/�� b�+��Y5o���{�%����v�kI���N�_��R��Y�S�c[�ƛ�2,؎���c�ʥJ�ȭ�)EsCX2�Q?S�Ԭ�"!�L�]��U���s�[r;�=k/R� �A�;�i��Y��ި��Z2���:�+\!l��i�.�lUdF��%kc���y� �˅H�3��v*ج]x���N��ct"�.�h�^Q��E�K�R���3�0��^�m�Z�[y�c��V>��-?N��2(^�M},��eH)c+Z=�����N�֦.��}>�>}@����Ȯ���ak*�5)�i�6������nf�L�E��ML��7N*��6�j�y�'�i���U2��)����_��qP��Gp؍�p:�+�f���v:QN����'�b�/t���e��Q����S0$|�?��BZ���=�J�V�]�]5<�V��A�o���܊��t����ك �W��^���y�S+������ ����:ׯG4��}Edx��Y6�NO´��V2[��`dq�����W9�7���Y�h1y�X�0;/z�qJ[hO�L�/e�Kb�9�Bs�Z�|]����73!<�-�}oƽZ}��y��r�����=�gR�H�^�=�eI$sT����Ûhɚ�F���}��� xb�5D�C��<�+��7iW�u�:M�i��xW�iV�;�ԅ��;��v��p�+�!������-v��2�)�v��Rh�.�L!E���$��Gy^h���q���M�|C�9��.-��1U�?�r6�/��;��/R2rK)��8GMJU*%�4�މE������?-ʎ�m'@�� ҩdS������;�=�i#������^���"EhX��G�7�ʂr�f��q���$�{�����%�:��y����K�f�e8;pzW#��Z�fF�#Pr3����*�xע�9$�-f_�&p 2� �OS���m.�9Yn6�쫜V���\��Gl�;�5q0�[�F!�1��]��"�l-�Б�sUgҿz0��$֦�c(E'�炼 䯉��Y�:��3Y�/`<��y��h�k�-ё�g�,�HDM+:�����=�Pv =}*���ob��������x���k��m�~&�m7EK^[�+i!(�f���5f d�q�\8�ƽk���%�^@b��qO��B��AVs�9�:���w�כI�q��j�������ۦ%��x�Gb�rR�@'��˟֏���s�j=�D<�=*��|��B[���y;�z��Q�#�8?Qڤ�������iYϕ��:;U$ �B��i��9+���H#2��>�b�!C8��З@#��AS�|TWH�,3��B����/��L�c4���=�8PNx<S�)�ps��( ��s���3��#�j���ЌDž���<_6W?_J��I�jI�� �'�OjҜ�����:��J��Q�@�m�cJ�)N�k@��b ���B��H�h�2 <w�I��S�f2 :�嘳�q������� �2�G�I�!��(AQB�yS�g�sPI!B����H!�'�]�z丗q�,?���oC�j��$g9��1#�zWe�"�6���q���D#=�Zb��rq�s�D�KV���b˔ ��q֡\��z�IA8baRyJ�l���r��&G �I�?J�l�6����21��@y*Jt�3�~��#�0I8�(�5˵�''9\���^��e��j�卼�C����a1�p��Tg(��3�CFԾы�gO*y�� xgK��gk<H'ֽ�ƾ�XT�I�A�^emuu�j��Kn��Y�7�+�h��Ҵ4h�xhBWz�Əl��@ٷ.s���/0��F�2;f���� ��`#�@==���.���6��_Z��Щ* w��9.g�GMiU�d�u�[J ����:W���X�O�B�QI��hxG����=x���TUD_�\ܧ�$t�)�n{���Ƴ�j�@GE ���W �����Λ��4ܶ���F�Y� �@���pv�l����������+�&�I��"�_xr���`�u���r8�j�qt�F+J]9y���{ ʃ �u���� �����S�㸉����%�h�+ͭr��Ͻ{q�NQI����I���t�J�lE�y^M/nO�yΚD\��ZV��9��)�� ��V2�a�:?¢u�ޭH0{��U�<������`�sLb���֙,�!*y��N�F���k �Hv4g�D'$q�N�x��s����R֝e�7˜ܱ���gp���rra8��G0��VY*O"��Ť����3��s�Z��teR������{4�길s����x�vgrC�qڪ���8�_��W)���yrQ��c�>��3��J��4jP���F��IN<�P�G�i�N}=ix���=�4��)$��u�� �Fр8�{��@Y@ ?�X����H����8�;U�.�c�J�Y���Ȥ~5y�=���g�q�����l�u�0c�ּ��������Bx�Ұu�$H� y�;W,=�\�٪��g�~+����##���a�&;����g��ާ|Y8����L��G+�k�r�����2�B���IەZ�܌߮{V��g5��Y1����c$�ǥ}$$���9'>���j���q�)�O֔I�#�j�N��٫3Q�ާ����{d�����Ԍ�Y�� ���]�q-h�*�[����[iVH����YN=���?g���z5�O�'f�!c�'���x�֜��8�����z ��.�f�wG���C ka�x���i��ZtN���"���<���A��-l����/�_��j)I%ƘXn��c����O��?���n�.��Xr3ʟB=k�<��p��_�0�ߪ_�?�~�ZX��%�����2c�)$un���w��k[MN�<x9���wTҦ�r�IL�R�CG�IsE����sW�� h��5CH��J���� �U�p�XH@0:sTntԹ�������^Lq5p�o ѷ*j�n���cme+!#��QX'MIZ�F��gl�O�J���̅�aЎ����$�a�;X ��fu1�1�|��F���KA��فө5�y�=���aOr+����#<�Q �z�=��u��<�s�s����*t#V+Fs,R��^��w]���eF���s�V��l��''���Wa�x�Z�+j,����r�{ ��|1oyڅ�L�����W*� �vo���v����=���#��+�3+BB�'�� \h�r�h��@���k�U�HHَ;����0s��]�n�c@�kx��xUV�xc���V�\�hN�98*娎4 ��Ҹ-(���I4Q�8�����ǻ����S=�i s��=ˋ~�#���[����� ͍�px��Si��%��=��m��FT��s�V,�� f�R��ؖr�%�#�/].��)�E��l��Gp��+���e�<�J��% ��~c�ZΥV������˿�-32��zUV�-�f � vSG��������$����\�9�5���Rl89��W%�6�5wH�d$nPz��t��Cg`�GEI�O�[�Ԝl�s6�ɤ;Af�N8�Zi�b%��V����}9���Bs�+*rv�fLzXvɄ*����H�Bb�,�Dl�' �a����Xc���M��pԥ ����<p�Z�G���Ҧ�v��h�b�𡐮�c����>V��C&���}��S�L0�ɩhc�Gz7��p��js��P�+M #�E��}���0G�e�wjI`䍀��s\��oI�T�eo�� [gm�X�ϭ8�Rzc؊��4���<`���^��{(?{̗$��z�����Ғ4@�scֹ�s�_ض�MA����+��G����Q4�2!����溨����Px����[E�gU�z��� >ؙ�X��e5ok�|V[C!�^Q������|<�u5C�j3̧ƿ"7��z�'������Z�M�����B��dQF|�f�����c���/,�I�,8�fiӴ�h�V��:���I��R�� ^@��ul$� 1~�j謗B&��~u;\ �P?¡��<䢶\ K���{f��$���1����j��N�@�灊Զ���ԃQ]���e�OOJ�kj�bp� �jq_h�'�zU��*��c�@�Q<K ��L���>��A�bi�̅���4���B}GL��Dȯ'�psɥ'���z�AS��p9��?ҩ:���G�K^}�uS��{?-wO�cP��ё��U�%8�[�5�?PhsR�#�@��4�����q֧�Dю0Gh�kv=�.T���Q�xw�Ӄ��@�zw��BG=��Nq�9�JQz�UQ��?p ��?Ҡ�\��j�Z7��!�3�vЫ%����F˓�G�G7+�A4�0�G!��Z��B�ƽ8��d�i-�;`����8-�Ԧ2 ��8�;����J�O[H����ңe�/��>H�9�}i��W���i�,$>}0i�G'�1�?C����*Ϟ��08����.�= �²�b�F1���@�b�B�E��� �����09�Z��(�*z�ލyҒ���ՙ��\�W�c�#c8r8a]�/tōLL�O8�H���/����f��W�{����J������V�~[�r����~$ 2�Ŋ2m!Nz���!�/��!���J���M_��'��gf��mf�k��=����"�s����nS����P|���F�Gͥ�_-n���]�<���r9�^�m�[�`;�^I����V�DvEI����K�!w3���^.[�Vl�-��R��� ��*g%c ��ןi�#\,bSϩ�]���C{�@n�Z�BQE&_��7^}(x��F;3M�2n��>9�������Q���# ���zܽ�2��:}Mo�+�~Y�U�C(%T|�J��pad�beʀ:���^8i.$�@��x��j��,0��@I'�OҘ.<���F�� �Y��d�09=�P�)��Z��3n�z��X}�X�)q���k����FK���˞�umb-�!c���p*���!���{ܴ1���Bۊ�k��-��8!P���S[��HYpy������R��+�w�_C���Nm6>N�n�8<`��� �\P��}Ȭ��oݼ|��1t5��A$�0:��W���#-���'uv�C�ߕ Е��� ty��V�Ϊ���y�j�s����j��7�u{x<ƶ0�8vC��5�e�����$�k��%J ��g�[��� ݼ���dY_����^O?����n.w��Է��_R����Z�V�W��:��Tz<res�=j\�ǽai:�H2y���pW=�\Q��)��'�8$�I%�\qL�`Sѫh�L� �'9�ޥ��b ��L@H�~�4i�Z�:�4 �go�F���ZU��zƐ���8��Eӑ�I�W �����w��z��Q�Va���4�1N��xu�W%{t�z{��|��[$�F��¥���'c���Spf��p�k˵�&{)\m�ӎ+�ohQJ���x��ƾ��m��cӥ{y^y�/gXs�����f03�5�� pk��g��l'mѐ��K��V#�y�)�.�W<��ޕ�#�SM��G48�=1�V��2H��$j�V$c��g<���j�u��5JMl'��-�.H�kc��"ռ�-��r���ȿ�O�����OQX���&p���{/�EӨ��f3�h������w��x�� ��a��bH�������X���Y�#=~������������x�RX�������R����|k8�BBC|N����ߥ|6c�x��r��>�=�O�GE,}O�WݗF}w�i3X]����*��E��Ñ��m�C��Q�o2L�r�sY�6�d;��2y�Q�+��X�>�ь'i�?�12�=��P�xI��N���n�$ �X�S)dSt'����'���itc���@�y�]�����f�Q֚��7˓�nq���T��s|������"�K�4:�*¹8����-Fu_*�} P����3��څ���l�2�ؽ����Dž>!��#�Iac�����_X�n���\��Kd�ǯ�����e�o���Ť�Q"�I 9l�E}�_SK ��Sz;�v�ʧ-�<���ݽ��WJ��i�vxj��WͶ�����H�@�֪�6�;i����z܍uxm�9*��^�,l��h�!�=3^N?6���B\˪kF����]���|<���ң��$�W�'��ݗt��>��i܄U��1�q��j��"Ep#U�X���W��Y�u5Dp$KB�{��ķ���sY���B8�_j�k���"L�Om�2��Y��%�,��[�2s����ȹ,�V��l�<,˅��"���ě��:t��Ӱ�жoC�.T�s�S.��С�� UYeh�ס��-Yng�3����m4�[���eg�d䓃K{|��j+1=��U+I0%��z� J�'�]A2���hs��lV���]d,d��{U��-�N�#c���X� ���6����ܕ����R�`�^�����x�� '��,ac?9%{��rK1\aOC���l�JI�@����Q��Q�E��t���l�"�d�$�5�I���H��"�G���t��+��jd���ꧭU�$pŎ���jX�o-�� �9�4��!�sS����B5S7�@�S^�t�6<���3 �Z��i!WpAlk2�D��,hZX� 7<�]���Ju�P ��z�7p�Xt �V�������ϧJ�é�Z���t�Ae"\��=}��|'��]ޛYeOF|g7Nk��;�+��e���ۏ)T�ETR��x?�_�R�D���E+����2BŃz���W�uN�[4 �y�o�M/�����_��V�9S����yh�-��sC�3�.�����l��K�I"w���k��<=ii5�B��rۺY�&x/eU[�=�WC(ӌd�5��� ��FA#�Sȉ�"��y��cV��@f�o+8A�X�ص��$'�p��׃V�t����kԺH�9����H�l���k~)�t˜�^E�k��'�m�����L�-���o��1��/goA9�;�Ԥ�[��<W3u�KI��t�p@k��Ǟ9���������1Z��w� ���'>Zb���J8t卨��wr%M��ä�����{g�j]���q�;��c���Ö�� d!~�3d���[Y��q>��+�ӣ�h�2̸��p���#H�,q�Ҥ��W! �=A�r�43+�` ݿ �P��B� #�Hw��<V{بfdl�:��v���@�d1Q�6�2 D����%V�W#�����nBwթj�Q+"��pGze�0K�@��GsZs$��mw=�2� Oz``�B3�j_=B4X�G�&�� +IQ|��0�r[��P;U�yc��y"��X�ц�u�-�*�br8j�� �̤�1烎��fU��=�%�9�,a�W�XX7Dh9����(�.:� �kr��y���H����z�T �\������}QMɥt%�a���ޡc!L�~OJ�ei3m�i����Lq�=�]*����&��{�ќ���֠�)$�d1�S�ӀW�+ХZ2Vd5f0Jd����Xd�(=�4���أ'���SԈF%9���>��'��N����"�Ov4��.�8��n�q��%(ى&GU �9����8#�Rf��(lg��M 0Gj�s_�:.r����K�r�w��D��V�=�Ւ��g�瞕��ut#ʿho��Fk�X��n|� ����z�o��j�[Xܟ.T�H'�}1_N�ZJ]F�����5�_>#�ږ�����Ὀ���s*P��՝����9�ӓ�<~h�O ��6���6R�H��8�j?�7)V���>��E���q������5*´��n���H�#�ڽ�O��J3���i�*w����A�C��:��u@v�ܙ������?���7��3��Ҹ�v��]Z[;g(\p:s���I��+8���U��-���SJ�^%ZO�"��sj��zׂ�x��*)������4j`�o"�};M�����P{qڴ4�z�y�-09��k⤣Q�SZ��sE�kHj�[��1�D�C2 ��8����O9�L^��ڽӢ�g>��I�!�q[Z�.�q��W�[2K�I8�[ԃ汊:k;�p �;�ՠ��z�%�_*���GJش��;9隨Yn��v����EY�<�J���dA�:u&��9"��Z�S���<Q[��ٕq����/���R3�#�VY�$`��;�P��c��=�kԩ�ל=������SO���|��{Ka���~�z<_�{����(�_gNT��{ݥ������*E`(g�� ����r`����N�`��%)?}+ߡ�¤ꤖ���zZ�:��B�He1�H��Z�:��z4�{Z]X��n68��߇j�6�a�����C�; 9��b�� �,�g~�Zۇ+�%��;]hן�qѨ���'������)��D�U��vA9�u�:���5�ʓ�@�z��?<3���h���qm���`nn��y��:]�Z�V���$�h6�����05�R�f���x ֵ��i�鎕]��<&p9Vt�B;�X���_ ��+Gs��:tUe?��O��r{�5���tH ��8�Yz�]ɧ��2��������d�[�Ոr3�s�U���±t>8�+�ޠ�{Ӊ�Һ��DXcI�g�K�s��"���I#aA�=�,��,4�@늭5�<qQ� ��Up��'�L�\i�A/s�Y:Ɛ%��zr+I$d#8�jF�p��< �8�jRmU�o %�,�B㌊��>kVy"^�r+�Mv��V;zW����$��ߗfu0sP��M%Qj|�so$-�R�8 �s���N��v� ;k�5n-ܬ�Þ�b�@��)ׂ��զ�ƹÞ����:�*���0�5$3�<�_+0RM��7/�lv�m^�F�ҷU��1�_Zk���US���MJ*j����)�Y~�Q���s^��1I��\iQ�w�^�sh�`%ѝ����_�{s��<��#0 䖒�{z��j����$�<e�Ũiwq\E*�VF�3�#���z��|Nj�s�^l_2�9�ܞ��>�>�� ��7��/g_)z�~y�`�����Wu��7p��`����H�k���1����/���>&h� �X��A���@�3��=�w�\B"�l}�G#��_�P�K���gZ�Mt���fz�7���)j����i��t5��[�m��A$|����y�c�ȸé���Y��Gn�n�x���x��ԡ.]≋}NO��N�8��ݹ$�ǿ5j�kg���!!~V@���qt�OH���Y�\����iڎ��g7�P�� G*;�k[� 2�ܸ/����*��$v�����;S���+��3pP���+i�Q2FB��J˒Uڕ{m绸���ZcZ��t�ev�q�I��k�xO����ʼ�����:�����I��6��a�\�� B݀���6C��e:|������L�^��;�jz��{ci2��_�9?C�T`�4��E��oTH�w��U���M?D�*x�9��v�k݃)��m���Ğ�o����KT!���]��`8�Z� ��/��.��w��x�w�[����[�k�/����V�i����6�����p�����V����o��h�6��?u��߽z�н����%G$�_=��U�Ut�h��=� cQI^$֓��pf(r~@8?�"�!��S�b*��)-�C���?N��۬k+��9A��i�2I_B�Z��9v���_J��e*����*cF�2q��*�ݫE ��8<u�Q�5�����Uv�?U�X�ћv�A��T(e��8�G���;��4�����ΩM5il��V`_BU��M�0L���:U���a��2+8�=sWeӘZ�yc�H��#ZjK`�+�n���p��4�D�#�70"�Ոj�8db;��+��ڟ�e45U���r k<�Wv���_�W/\�61���:pj��,"�q�� �5�6������-gP�hbP����TqZ�-h�mtkZ[��h�l��;�Ѿ�� 4��9-���2���;�y�ߋ<?kq9��8�����+�x�O kͤ�e.�[�]��~�(��<1ޡo�eC0�Z�� �V�S�U�d2��WA����/�XZ��c4V���ku$�L�l<g��~m�%���gҸ����:㬷�]L[�Ff@CZz�ͧ�çi�|�j6��Ib>�����+}KZ�ݵ{��}�~u�ڶU焅��J_e����-y�W��/-b}^��)B�2��[kIs�9���= y���ij�^[��(�4en�l�O�I��\]�WO��D�a���=�� �8T��a���z_R���Q٣o�ʪJ�d���jƏrQLs($wR��k*�f�⥷��7�DPzW��ۤ�&��ƥ�7��&De'<��>%�TԼ%t|7*�z���h��譮QgU$�l��$Ur�яZ�2l�xi�R��J�E+�?.�ʬn����|C�/��4�IJ뺋��1�X��a��/O�^��_�~��I6��;��?��j��wK���H���sܙn'��N��Q��c��n����UFr���k�����vV�IZ�O�ȚtaM]��rO�z~���т8�^ X��G�?x��a�y���/�W-oi:�>��Ͽ^��.���=m�m_b7~=������S�5�c�h�����-D�FY�^��+������\��l�i�mD�$��ph~'�D���U��A#�<W�� �s}�x���V۱�Ȥ���֘��-��n�G:�"���B2�'����^��K9�MJ�Kq/�-����Z2η�a��RO>ճ�H��;2�عB1��x����o�i�n���T�H烏C^m,� �_�*JkxK}<�c�� �-n��-3�K��H㚷4~dr�˔q�z�t����WV�� G~+R�a�R͕!s�L�ׄ��:�Y�͟r���+yM�������MAB1��?�I��#�8a��95^K��Ao��1��K}ll�y����>��1&/8�^�o&�[1Glg��²�o�}Am�Trp���UүU'l.T�4�b*�'�*+��[��u8��k����afG_�IɮZ��2��A�D�ݗ�����a*VNi�n�/�m�s��b��3��VfhR����}}���qey����C.��`�o�8�_� �"9��/3�R)bp�hM)�__'�����B��B@q�QKi2G8�� %��K� }���k9���@FNq�@Ὠ�Q�o�FK�B�L� ��ױ�-\E�0���3i��1�����o ��D�u�k�[uCL��N\�����ԟh�N�Q�~~�Ka$ѥ�!I��a�5^X�N�����W �Z'�h."ap���^�hܫ�iT~�CU�����8�g�ǟ�֟E{'A���uG�d�%�I�#������F�2}�>�~�G�9V�9�j�#�s�=k����c=��˵�P ��Z(� ]��"��t��8���I���gg�J�NIj&6kL#I���i�Qٱ��6��qZXK$/�`Y�C-�߱�X�Wv�^e˗�x���8<�m�R������Ef ���l�t�ks�{ҩTIY�+���gv��&�n�X6|>���Y��v2ь����J��;u�ڡH��3� ��"����� 4�A�=ј��mbIl�aI����;7D���㚞���6 c'��;�M��܍�����MsJu\��ߨլs�-ѧ�_�L�6VE�:q\��"W���� 8ʨ���^���e��io�D���#+� q���=k��2��N)�QТ�,�Y�*;��R?�\�S�����Ck9AL�ՙ�E���T������Q��JòG�\�u9ǥs����9g-t����ҡ�����]�Z��28]J�U��H�x�� ���#��=k�����p���^-dg=x�N] �����*�QSt`�M%�������]���`U.d�f{)8������H��WCn0�G,.sE��~�㹭�� ՟�$�B�����V��x��M����>T)©��5��>[�S��y�^Ev��\f#�6��o�ʖ�'̖�����Ia����_��D�YȊS��p m]x-��n����.Gj������0[ɤ��ۇ���Ϩ#�W�uqiקd��w�}���B��.��b���E�FrMZ�s�k~�]gQ�͉lQ����5�������!Ӣ�Im�D�9*���Wq��V�N�x.A��e*~�ن��,�a1��To���:lcR������I�x_��:{�.�l�\�v���W�����֟�<�!q��f���w���]=ũy���6���O�ɚ��wW���I c�]�J�S�'�+�vv'.UT�ͷ�W��o����K������b��"�`���!�Yu�X$ #ȣ���v����GJ�b�,Sl�9>T�#���vI]�~������T��jo��[���)P�e�YVw� �H���n�՝4��i s�懛�9�����*�U��o���O��s*�b�2�Q��)��&��jn�ڣ�7f�g� ���V#�ld)���L��횱�M�q�0*���qڈ������<����� ;JukZ+X����S�z{ �Q�%���R��j�w�W���y����I!@ǽK���se���� ���� ����f��-�3ǭ}Oqf�G�Q��s"��s�@ ��*1X �Qw]�TԴ��lj�9u��0�"N8��'�"���>!�+����^)��Md�������e��,T--$s��������x�QR��N�b��H���T|�G�^�q�����/�FA9�M>r� �j��~_����=�VOsx���u�v$*�GL��.�%%w`q^�so�w/8�O�D�zW�CF�u|�+�r��C��rWE������$�?;�c_r~ʟ����8m�7����*HN"�>�OC���3_%&�l�T�i#+ �������$���������%��5�o�����Gu��9��-e�ayeO"S�Iʧ|�u��`�堊v�|J���x��/� �����M�"�a� �<��~�����;Ho�$���|I�|��9w�z�{VKˀ��rݸ���v~�z�G������Fu�՝�Bt泸l������y!��H���J�CD2=�h�7F@�B"�� �X�;q�O�R �L����(TB�U�wc��J6�[����� 霆�� 'DmSC����Z�?����xz��U�� G�r�4�r.&��v�ϥt�[��-"�Iן���dq����X�&�m�.��B5��Vh�k�GM���?J��x�~��?�E6s_���t�쥺7R��l���Vg8i���^A����G�m9>�%ׯ��M�܊#�����������{-��x���ca�1%�}wJj�`�?���[R6��_��E�� ~�$e�{W�`�T���H%t��j�oF��~G<��a._D|��|<���^�/�g�Y�ڀ�"�^��^����b���`��.� $P���b�x�b����������a��]��д�R҃����M�:�Z|9��BO�Eu˫�ic{�=X���냱�rFW#���b�ڼai 4䮔Z�/V�{���~f4�уr�o���P���i��W[[@a]���e�by����W���[�Y �ܳ� y5����'x3��-�hڍό�L�^�([H�����d�=9�;ms���]d�S�,�XiWH����̌�ؓ�ڸh�LJ�������=m��/3I��,U���>���Ή���Zkq�R�B*�%@��z_"Y/��^䑹�����*����^�m-o��X���KL�FN[��zχ�G���s����o��ps_+��P�Y�����\d�S{�\�; U�#F���z՛;��i�o0�"Sz��Q���f���)�\)�u@[���w릺xg��A�(,�|��ָm(��b�cma����veH���__ґ�G��;'��ܼ}��O�����hd�&��G�K�H�p��F�w^u�;�H@�-xH��]�f�� v�J�ZN ��;T��"�7&KQ�1D��t���o�L�J�]��YO��'���.ʤ�~i,�vqQ&企�Ihm&������8������sŞ*{"�����fD�@���� ��BӮJxa��(��&ID�cW���;��{X<Ƶ6�5x�f�����3p��]�.x�A����M���R�@��?�� �NsZ>��� ;�ڏ�&�A;fH����=��J�Q��~��Q��vzv��e& ���]��'Ҽ��ƾ2�ĺ�����V������o�S���W�a�⾖�g�b0|�%ӷٽ��-].��u�����ŢxP�h>�<�咅Gȸ�< �Þ7�<E�O� ol���G�q�8��1ֲ����F�vm�їhFE �ێ+�����xB]?C��U%s$���B�'9F@��y0p�^ӝ�S�;�g��n�F�3��e�����{)�i��O8��}j���E��1r,x"C�k�?fmg^֧��t?���e�B�4v�'�zٵ��o��Y!��x�;)�ڼl������SH�eq�6B�̆4S�n#-�=��V��Z^ImkTۜm�֛-�=��d��A�60�2q�jh��Sky2�p�nT�s݇q^=�����jCqe$rY�$�d��'�皒mj��\y����d���"(�$8b���+ۜU�9���e$[�m B�!%�N1��i�i6 �{��k�ib��b���3��ȱJ�\)�2q�P���iա��$XZ$��è4Zj���-��:a�����)�8I5x�����^K�Gez���Ź������kSͥ�E�A=����{�{�-�$}��ОĞ����j��^,ik8�R��-���bgJΒ����Wg��)Eu>_���w�ZO��u�hwr��!|ϳ=��z'�~x7@�ǫ}�Ry���I��Np+�=:�][v{[�B0VU ����_"�V��-��ݥ��u�>��0G�5��h�Q�eJik���-$�>��Nqm�����m.�3�Ζ\F�`>Z��#����x��~�f��w�������|�����/�O�u� Χ~�0��d�$�Ϛ��������|_���y%^m��O}���T��7����אJu����y���3\���MZ�i��%,~_�]�X��'�^�O���={�O;0#2�)R�ڽ��گ��j�Z�ڵ��ƙ7�nu�?��f� /ĺ6�f�C�,5(�|��8QȪ�gUp)��t��RN�����j;�|�]>��Z����`�6<���d�-���op�Y\?�k��F����M�of�C[���H�*SӚ�� �/Ҧ�s�[� �wh�\�pG_��+楆��j��g�����7{��K4��U]�kn�L��߇� �X��)�M�$���������.�'��6�ď$�<�,W�h�a���k����u��v���#�cǠ�|^�Z��kfm'����W������I�����V|p?3^1�4�=ֱ�]x����%��֗.U��^��W��@�lL�F ��s�"�q���S��hMD��ռ�^�=:Wv[�a��*���v����W�~��N�sSOn��.��қ{��H�IY��#�����S��K�& �4� �7jK�ۂA?�h�� �����ڶ�ckq���D$0zz���s�|�\^Y�"�K{k!�B�a��l(�)�yi��->f�����lL��H�eۿ�1��o��Ɵ4�Oğd����ɍcm�����Q���їLmJ�p�g<W�]k:������� ��iV("�r� ?(f��ڽF�������xn�@>����ܜ�;V��T�B�6|��8��I�j�+�J|�N���Qs,v�[*�1���W`����lL�*��W�jz���i7����˵�.�|�� �����4�Y��Y������ ��x%N�e�Nj�{7�6�U;Ǫ�.f��a�4r#���|qQ�mm2�����UkSHot�G�p��Z�ep�G�c�,�Yv��}�ϔ�Q[f^�E{��k$L�7F��Y�,�yf��A��V5���WgF �dϖv{)�11�q�� t䖣E�{h� ���$<`�~ƣ�l�-?u:�bx�'�X[�Ɯ�G+�'��J}��-��^���cNU}�[s�kU�z���ZPȒ�J�$q��S�� Ў#rzU�R��[�w�$����k ���&³��S�Ӻ�VM��lnX��ڠ���)��)/�#��y��w�ޥ�P���YT����t+��[!�ږ仂�-�A�wƪǨ�Ӵ(ꧮ 6�UJp��2z�. ��X�Q�7^��mx�w�!�d�u�h?{�P�,����R�ǯZd�y*#�0RF%�*�<��#�R�L�ֲJJ��-�-m��G�_���k{�m�"m9QLO��\Π1���{~:�"�]]���oL�k�ݻ��E�Tt8�9�zE�`����jh��3�2����zT� V����Ϳ�ʔ��+�s,d�T�QՇ_ǡ�-<��]���֭9!�d���0��c��� oen�Ky2'd�늇~� 4G�:}��t� �>�W?�4=�-�o�8<��j<M�5�$�B�~wn��/�l�c�Y�n)��y�ש��NMID�O��#������V���L *��ZR�S@N_�u�r����3g8 �F���� ���>��9��2*{���I6_����!�9$���r�p:Sm��0���]��J�����O#��9��R�s�d�1%H�e��i�-n��0���Q�W����G���j(~��ǭy��#��ϵV����H8���y���#k=u�s��F�M�0�$��j^%7�m�&���Pk:��+���\>�ه8��%��̊���Px�c�ZЊ�F[�����31n.�l�|���#���I-��|��@Mqèj����O^+���g��9X���jK���q������Ie,�"(�9�>��L�-�h�M���o��Bn��<�I���*L�ԃ�z���omtԆU��W�ޯ/�<el��kLݶ��Y��x�S��[�z�a,]+�5�o�}�t�g�nt_<P�r�2�W�O���=�Y1��aE��ٖK�y<�һ� �KaH�AXέU.iue(�m&^~qOI@`0F Md�#'��*�V$�y5�����YE��3����7<�������cW<�O�85� vFm�T��p0:{R�t8�|F���=)�>H����|J���h�p0�q�ML9��涁�{h#���9a�zS�9P;��K�ݪ�q q��[U*N��O �~��.8����V�=�h�L�Z0~��9�LW��#v88�_�6ߙG<��D�tW)��r��6��;IB���o�/�k4���OOz�MZ��r$B1���`��Oݎ�q�x'�?��5�X�#��5��y�%C���fӌ*�MϟD�6�j��[�ǥ7Ěd�7��A8�P;*�_e�⤏6�Y� x�qQe뚬.�B*6�8'#�����*�4D���W���~c�����{�mP��>l����/{R'Y��Gy���q�+���Hk�������<?#b{~b��'��zn��z��B�;k-cvl$�v#%��ҡ���%�֏��^:�gt�~��:�>&xN/�7W�P� �<���y���+C7V��F�� 4k VePO;���8�~c��~x�xb�`@��rL7�甑{�~�������'�~0�bݢO�m��.������r���W�� ��j��F�p��5;�����p���cf�/��#[;Ֆ���PD��E/�}�'��=1�U�|�Aq5�0�2F�� ��r�eyaI��[�C�"�^??zx���h��~q��Qo��q=���M��L�6��Q�����c^}8үR�{>����:�N�|]k�x�K������O�˲Kf9f;���z�^+��Lje�\�c�R4���X_I��!�H�G�������}l���ʢ8�-NX��m�g玕WĚ,w��ԣ���i��F�;+!te�2�p�px��<ђ����F��k��U�-Պ^;�t��R�ݬ���ab����rGPs������!�D���pt�1-��P�VmG 8sܓ����j��Es�O%���s��1��YD� ���#0EI# N�PX��WC�k�U���=>x�p�,�Dm�˗��? a����z*�q�:o�I��NV�Y_{%�ϡ��g�X��&�ݬPCM�-��,���볢�!�0���I�{������m6��I}'K����G�c�C���c����R���iw��%�ѣ��巌�pG�M:��Ѵ�a�;a��I��q�ٰ�9�O��\��a�����u�t�� �FL�\XM"�fm�Qsn���y���#�;ֆ�"���oD���kx�}�f8*:��:L�,�[Eu�d��`�SׂOA���Q����g�Kf-$r��bX*���<d`��A�hk}��k���K�id����pT�'�֙;����Y��D8��I�_;�@=0*ͥ�bHn/<�R67����%�~�����Y�Cky�t�0D���A��B��^�G8���F��i����jf��ƛ��������Q�3��*�-��kv�&S.nsrGB)�*�\v��αL����X�ͽF�q����or"�[2[J�������?y�����Җ/��&\�R(�����t�o�x`~��s�)u��kr#l � ����`�1Ҫ���Z�o�%��Ei%��˅U��A8q�)�wP�I�S��A�#r�p� e���T}]����ȟ��D6q)g݀��<��;Ս:�Iy�[��� �IQ�C�(�9=j���k�O/����� F�� *���מ�S-�m�W2�����:,.�FJ���Ni�<˞����t7�| � ������l���3�}k����X|s��(��֭m��Z}�o�FRU9ݻ�q�t��7v��r�b"�#�6��Ē��q��zԏ�O=��[����8���dnnp ��߭u�k���n-�[�K?=V�Wv�ؙEJͫاo�]^i���C����^c�1��n"�G�^�jz�xg��,��Su���@*�>�\ú���4������0m$���i�q<i=��y1�o2X6�# 1Ϡ�� g^�WR�n??Ԩ����i� 8ŦCX�G�(�Uu8 �Юq�U���]$y�]����#(���p3���G���*A;���"<JN@�wU�з�]_*�����%X��hKGn�0 �^r۰s�X:Rs�w�ƞ�[kF�ӀY�II�hdi ���29�1�l��=(���7x���!ܶܯ��'ګ\�[�u�:��#���wDN�01 �q���8#�����q�ʲL6���.�p�pG8�֛�˫`��3��zlQ�e��_:�1�8'���{�v��+t��|% �8]�w���:M���-�Y����!������ps�Ѣ�Ac=�i�14P���A�|���m�8��7Br�İë�� ���d�vg[3�J���t#��w�Q\O+�nv�-��U}r:ԖWhЖ���X#��G���rN��u�,�[�{Ȏ�l�$��4���Ԑ9Rr8 �3MRӳ��oߨ���:��;��ZXA��e��J��3���o�N�6K<�r���!s�*yOU��U����[Z[(�a��&&l2���`s��S���Gu��M���`��q�$`g�Oҭ~���5濯/������K۷��7:\�����|��[����1p&����[ΉF����#�d^��wkk<w���f,�g��,��6�v.��-��Ko%��ct����#���:�x���)G�f�*��t�S��ݤ�B�t�;/�gXZJ���H��g?�~Q����W�%���m�k�w����O-�k��(�h��N �px���&�kIɳ��aq��w�H��ps��W3�'�V��n�Iv�&��.��[�e�����xe8�A�����k ^����.��m]?�;tR��Д�̝�o��_��#�|9����nԴK�m��;L��*�g�W�|Y�cm���x�������������|���a��J�t������ ��N�ke�2�VJ`��d��R����F�2�Ox��o�Ť�ۙ6������f��s��Ұ�����ߕ�G�NQ�G�oN�R�B��۶��_�9�/�i����'�r��Ev-�J)�$�����j��~%�xxlծlt�iiuB0S��X�w�=�]�˧xW�vb������F��Σw�zs�^ ����ڥܷ�u��'W>lP<�OBX�@���&�¬��L����՞ݴv/���M?[��}Ǟ~��|k,�?��o��:�[�n6yQ��{�O9�U����!�ugo}-��Z��*0̀���U��Ï;Zx�\��W��B�I�^��c�8.�8��|z��ivp%��B;A��,�8�Z۬�q��0?t��_����-�7����n�~��*��Z��<��h�{��R�-��E3ɷ�wpE2w��UY��"��r�|���� x���+��M��W���d���\��rƥס��������X�\�d�^X��o,��0`�l|х%]wV w�J�,FK��G��4��ӳ�wB�9;&i�����>��=~q ��Asܩe��Gː1�{אx'�~9�/���V�n�ln;�������� �ҽ��m����)ay�Dn�H &��8=�Ve��[�������Z��� �0>���#�^0���<4��I���k;��t)RR���]O��o��Z����߈����[L��b��̊�N2y��o|v��nm�|M.�i�S�������NM}!�i�G�2��y�n�0�.T���^�b;�������MWI�U擩Ga#̲K��$G�#��ds�⽬�7O�hӋ��J�/�n���~XU��������q�����ۻmi��c�3ž���m���z����e�����1�'��<���}k���|%�o���ow�x?[ӭR+��j�%$�>W��o�28��K��>��i�<M}d�Z�QjW �<`�d{( f��bq���T�����R�is������&�b�R�k��Z�>���y�x�f��xUc$�|�}�^x�_,4qF�g%Y>��}�c����l����P�"H�A�u���9�'۵{恤�x{N��"�=Ljn�#ڣ���8|�����ּ<�+��mS���W�����tQ��o��~�xn���$��1��0;�z�e�������2r:f��)"�u��#�7�0�ב����ӊ��)nubn��i7���$8$��l�+���^߉��T�@�XMmWܥB�q֫۴��:������c���+�����ml-�;2��v'@9����u4KL� �r��r ��_l�g����Td�[��5��Ck�` �̸�9�K��LnZ�y# 8��8ڝc �) nR�� DQ`� �\c�4�'pIApC=�@c��L��Qq��^�֣oQ�Il�ٛ������,zU$�Ia��K���ȿ�=�j�Ȱ�D���4EZ+}��K~ufO�/-���QqÇyP�*8�ޮ���B �K���ʊ~f'�w��=�5�GL��;C.:g�Y�40ζ'S{K��"�G�������~��k觳̓8bQ���85�I��sjf�z��|�$S�1G�d��H@���R�c7����ȹ���5����[}�ݰ$ ����� {�u}XB�]_EH�vB"Q� ����Q�Vܝ�(�\[ɲ*�,���Ǟ�}�k�Ky��tr�(zs�XV�%ӯb��������>-�A;]�A�z�+��_�])!H5�.��U�4���%s�$nq��8J�~ϑ�������g)�*���(��σ�e��ˁ����ah涳���X����ג'�{+o��L�_\������H���'�8��#�q�,�����F������E���ܦأ���,���<��P��җ�ڊv�����9猂^��u����z���ϸ?�X�2P�gi+�<���^u��D�/t�[Q�֔-����Ϲ��#�ۀ����f�ť�[�/�Y��m�����zk 6�;�ܣg�&�<3�i:?���O�j�xl���d��?���Rp����G5�R��h��ޚ��M�Y.�}�?kR������c��:��kϩ�˪X̿��rOG-\���?��.�o���6���2��*O,9�}�jf���k�V�}m�[�m�ͻ���U��*�$�g��O{���G.��tr�soa��v�{�:���ӡ �Q�4��t�z5kmta��[��m��.�B��&��z��(FڛϧQUe���8�_ 'c�-����q�«��3�3�H���L����}+9����˓��{Th��d�zf�yry?�$R�3��P��`=�Jt�H�9'@�g�s���#m��4��cd���ڑ�'���*"�$��V����\m!�&A�V4���g?�h껕O�Xa���+������������'ں�w��ޭ�jn�'N+����?J��Fw#S�r�^5�˖kf9�(��t�YԾ$h��y�Av���=���5�O�_�o��]J�v�8X��U{}k�^ex��>�DZ�$� ��y�c��ni/%�ˇ�ѣ.d�<����1�=t���������=kya��V23�RH�8=ϵ|���O�N����4���1�5��2���U턠ڀ��m�gbI�8�%b.2��fI�ⴢc 99�J��+�=MC4��I2�{�[Ӈ*�Mܹ V�@PG���k�䷞8�Bv��6�i�d�xܸʺ�A`�1���G�����>D�!�E8�=UI����P�"�� Օ�@Oj�n�ЎH�629�L��3��WAC��J��16�w�q\�o���H ����� \Q�b�j����.�>����ܽG'ץJcB��j��qh?n�2&�&;�H�'"��j��x����A>��l`�����@��"#b�ս$�A�������:W-xB��I�>4�3�h���J�*@ȯ�5k9���J����v�ݣ.�I��������o���g9 ��^�O����)�=��*��ٟ-I&N;��7�<��?�t�;�f��_0h[�����L�� dpO|��*ӭ:n��*Fp���|;��B@��ǽD�'�zsO�?��l�!>�W6�����T��~b�5�T�g���e�#�*�U�/�3���9۽Y`r�s�1L��W�iz���w-�ݬ�H'����0�T�������<ⲍ��l�z0� ��^��>R�}��(���?���wė�����V���ԏ`ݣ��� =0x�x����f ��<�&�A�U�s� ǿ�~OZ�w/ *v�A__��_����Y[xC��_i��+=p��[/@������x�?"�n�_RX�^/Y���������8�T\����>���-��@�%Ă��L��m�RX��3�z�����g{�d�7$���(���#�>����uc팿j��c�`kI�8*ѷ �y����{岎�S���E� �l����־c�����K��}��v~L���vf5��W��� -��c��9�&Eú��` �=>R>j�u�.���~#��"[iܾ��]O�2��_�N�j�ga���r�vS���kBn!��(�y�|�!�3�� ��Wa�h7Eo���b^L���� ���8�ON�T1�������R�g/�^i��+��rv���O��вƍ�&Fg��w)x$ T7̶;᷎4V�>��C��,���� Sx���^M&��[�ѵ��sp>x��T��X�2��p8�⦍��z��ŭ̍�k�$��G;F��y��beG_�x����%z:����5_Ցqo�r5�uy��Vʟ6�l�Cp�t�8>�U}J� ����h�0�"`��7�p�á��x.mZ���=�3�+��.B�����9�9��[Z�p��-��2$�H���B��*B�u���F.�V�h�3Ng������ ���)&0AbO��&�����u_� q�k�ݙ�� U�R ��9�KKk�7LD�ٚ�h٥����7�`g��l?*�v�2��[�<2�42YF9���n@��,�i:�H��� ��^E�6�&�Y�����66F9���H�D����𰼴�c�d�z�H� L���Ir�w��7��(�I��7К�`��� Cܮ%؎R#��p@�I�)����,1Ȑ���3i����S4l�Oݐ�?('#<�R�qr�d0��� E�6��V�ȹ�PÓ�=�͚\���p�3I��r�$��� ��ҪCsq��,ֻ�)�g.eu�O@��w=)��� ��$�a%���l}�)̳ ��I9T Cp��CK��T��g����]��Ʊyys��;6����郙b:u��y"Z���}�T���v�F�����ӥQ�6wOm$�Vl��H����G>�����ǯ���#GWKk�G}���$h�$h�z�v����:�k2'wӢeڶm^\�8fe',d';H�� �^C\Xl��ڔ���C0�3q��뚞�#��Ӵ�c�f�5YЖ;���9����tH�AZ����G��;�vd��!R�`0��3d�ӎ��)`��7��3��=���>2I$�6�~i!��[Hoa����_3���c��*B�H�1��ޡ�]�jP�5���yȶ�H�A���/�0:�״�Y�)]�"�o>��1n�:�����ݧv:����}�@�y��kG�ٞhب��Fz����5b���,���ky��@�b����0>�s�c�#����d���ы*ݾmĖAa���#&��Ճ��։X�� <�8���!*��+��0q�ޫ�t����<���M"ۺ�l$���;�s��8njh ��[��RҖ�D�Dgh����� �~���������m1v�2(.�Ŋ��}� (�J����3;ò�u�yH�6'ʍ�o����$�\��[��,�g�m&�[i����Up�H�r89�H�⡸yM�Ԧsqi�1"�������v3�w�Յ���Զ��\2��E��� }�1�0��5�}�ר�u�$��>� �{<�$q[��x]�����x�y�0����G*�����:���HV�H,3�>��.�SL����.�v+2�-����xϳZ��;K�$)l�ln�$���v�;����c�@#���I�ş� Kk;�X��8�F��'��$b���xym���ky�L�[60�^H�����]����sL��K��X\���q�sK�i=�1Eax!�e�]�pR �2T}�ȫQ��x�ܿ�^ɦ_� �b�m�/�����T$�=���~�5�Q#��Z[_�� ĹV���X`�֫�Kb-��Ī����q�6p�ǦH�7��p�M�B���!dc�� ��G��a�H���j�m� -nI�a/.��l��u�IV���߂.�=�J�W76q�W+V�G�]��Nq��y��k�FX���hͻ�R��8��<2|��L��IF��:iE�V�3��g� v@��r����y�c�)�6{>����g1�L�[G�V���7�t�楧CH|�_�:�7r:y=G5��-;W�5��;���<C"���#{��'u�Wm���%���ڑ�Cp�(��~YTm#i���Z~���w�E8����Lh��ׅܸ�9�<UO��uf�շ'k���(F? I��<M�c��f�r�&���vk���ۑk��d��R�ppy���Əx�^�%��l�@�Mg����<��1��Ƀ�6��/����]I�O j6�>���[� J�۴� ��є��r� �xP�:��]�4�Ɗ��&�rp�H�Y���la� ��_g��S�ìE8�_T�����[g���U�>G+_�s��t[�Ff���J�p�6-��3c-�}zW�|9�3��b�Z��q/~@�� ���Q���eӓ¾ �����X�a�D���{�]#��9�y�= 7ž5�ӡK�j�N�ݴ�� �K}�����&i$����8���\�xY>�~Z~���R����������^��Xh?�&�T���Y�@�''8�!������~ Դw�m�� �{�����]��l�UK9lÃ�g�<]��ʶ���x�,�UC�4�!F!��-Ӿk��<E����r�m�;}����\g%�<�S��\x,�F��:����_f�̓�K�]/k��WU���_k}�|���4k�:�אַ�6�j�L�7��0�ۻ�ʎ1��H�ΰ�W1[��������,�2��'*���#=�yg�o�ڧ�m����,�1,V�G(/o�����<�Zi!:ɾ�Hm�p�p��V�T����nOPד���,T��z�_�ꢧȔ�,隍���Tw/y<ۑT�#YAl.P��o=�{�k�������o��t��Hw��-d�FNk����;���d�M;"���u,0�y�yj��Ţ�t�ZD�We!�R�Bs�$���8�Ň�����I�O��G�8��4���&H��euWX��Ui�}����e=2Ny� u� <M����ia�\��+��k��E ���M�YpPc���:�m�R�'��塚["�yї%KIIR���:8�>v�[d>�FmGǺ�6mn����g�3�v�� ��=~����(V�*��Z� �ok����Q�R1��.�ROw���ϥ�U�ӯ-��9��<NQS��R2�rs�5�C�^"־�y?ǽnk+�A6�¥Yq�6�d2Ҵ5o���/ �W�_�� ���tMg��+�>.���Z��~kƇ�9�Y��/�W���I�j��w�-�1�V�fַ����6����z����_���E�o�e���-�~1��ԦM@�y����%yc�a��G\q^��mF������-��6�����(<�[�����A�Q�g�k�5?�z���C�B�������R�V�����K���I����i��6�LX�M�>^����� �6�3z����z�s%��F�:���W,Z����Iu4ê�r��螯���KmF=7G�����:�7%�7�����T{at�Ko-�~\L�x���n둌�܃��Z]����._0�K�9��H�+m�$���Z�f�س�gC�M�l�����d�+ƍ%������}���b%�=��qoE0:�q�8l�pA#��j��b�`��K3��F�Tʜ�E��A�UAv^����m��bb�mͱ۷A���f�I�����YL^��̑B�e\ʫ��0��xmT��/�X"�d�A�?ѡ~��)��� j�jb����e^��2�<|�'q ��O<c�����E���J��2j1�dž%��~�b����Mgx��r���M2�K�P�[Z�w~}ܛY����j�z7ȇ8�]T2��-� ��;���r��ή��P�Qy�Cn]�d])`0[%�$`}�H�Ⱦ#�k���f���A��.�n�����\��NN>l`���$��Fu_ �����K�����-5�����Դ���3��9���P��-���^ ��H���L�6��il��L0�8c����] {x>u��RJ��m�vջ]]5S��>0W���z�Bx��z�K20��/yt�b���o5 �l��2#�䏙܅�#�º����O>���]�'I�}≃,$��e�@P�9�Ҽ���/�L��w�:�����s\�̺���Z�6��x�c�7`���U� �YxZ�R�<}�oi���W-���/��c�݊)@�F�����ҽu�S�Bֳ�xɧ��GͲ��ֶٜ�X�O�_����;мZ���<c�E�}CO�f���:As��x�C*�T 1�v��#� �7+iw+�y��$[�͆N�8P6 $�8����u�����Ȳ��O�麟�^56�˛y�*��b9�#pFpf�>��K{mK�:��^9�m_ZЛ�>�o=��`��+� RT�}L+� ~�.�\�_��Yn�ns�电�y���R�����o ���m΅z%�,��F�hCo�`G�_ ��q�g�~"��9x��N��x�YӚK���isK�[�Y�&&@]��tY�O߉�O[x��zm�o�LQ�Ei�a�]�m�;m�e��dQ�> \K�47��^��:w��:��L��\,*I\�/�s�N�c&��꺻�t��vz�;�/}�ݫ��^��w���+���x�t��L��9����Ls�����_� �z;/��͠xz���T�cӖu�"�{��1��$�Wg��ᅾ����xwC�/^d����S����T|�B��@|�g9�6҄���˭��ƺ��D6�)��F�W����fy��Q����Z[K4��ͧc|>�n�������6ZN��M+���%�u����i>�[}97�}Ӏ���`�{��U���N�����z&�E�2C/�u!m�7<�l�du�x�hR+X���;�$;�+�vd��sX^.��jI�S��ڥ�(S�bSda�u���g^SJ�vZ~V_�~gz����h��qi�Wn{ �H�8�J����$���K>�;���(�۰���*'RGR2j�FY�$��W�'.��s�YJ7J�h�j�8P1��&��u�qKq*Z�L�Fy��+����6F�� q����ZW;�h�`1�ֽ����jn���>g�q^]���s��,���s0�#<��ڷ�O�k�֭v,lH�rq�m{�VY��Br�[���'�����)4��p��=�@'��p^��e�_\��'��� ��vҒ���W�?vr�gc� y�0G^M`\�VV�� �89����7i�w9&��{��-o%�N��\�(�m #n��?U�{���<�+yd�H28�cּ^u�V�&��*8���=5�ل�a���95��:Iu�r�z����I�[G)�Ă}j��\� �y��Oq����S���%��_��?:��O0�J�eU��R�+��~�f��Ok�;���0�c��^�2;`w��Z��#FVB1��j�M��l�|g������v�y/��S��ϋ1''���:Ѣ������M�D��[�#ݒX��Y��8궾��$�v������ūY��+oFF�_�k?�n���ב����O��.� ��.�0�Ҹ/x�[�4���H�ǩ�:��XƔ�ڒ�D�WݡB�775O]�g�c��c�'�=뻰��!�ux/��6Z���b,�� �}M{�$�E�He�N:�S�\�;��N�Uǎ���#�.O�&�{k5�1�3�4�0T1������f���9���[F��O>�hD�DGc�jl�aN@�jeM�p���Q�ȩ�g�]ch��''���4��I���Z���w�m�OzU,���;�[�����&4`�4[K�*�d�r=�i�U�x��2�T2�r �4�Rm����=j���h� '�r+����Up�$����K���Ģ�j���X��\u��Rи��$�������=�)�J�������� `��v�k�4���fU�`Gz�&xZ�R�*-��z��2����+�WT\�*�Y#��H9�ȸ��SE�8<z��i������yiy`�%��6��ʺ�=���y�m%:n�L+���,0���K$[��MN֤��n�ݏ�m�ں���#ꊦN�})�Z���O�Z1������N0Fz��w���Lʆ���9�� �1�kFKpc$s��?��Wp�U����[Q��.[����oc��g��?Q�U�&�|%�<1,���ݙ-�y�~��T��ǚ���z��<i�_�j�-KM��z<2��r���#����fv,Ē}k��f��+�=�}�K��2��t���7+�?��ta��q_)�\g�vX�1+埓�=�Ϻ�&h�.Z��~���7�9y�B�A�.%g<�c��GcYW%�T����ң<nOl㟥E�s�W��,�au��9�0դ�K�7=U��цA�]�o�Fm�kv��0)����_�S��9P��:����~�����=�ՓZ����uM;M���G#�b�4�9ا's�5��~,]hv~#:��[x. ���.��Gps������rZG�E(���%���@�wN �ּ�R���j�1k~���G�Seqon���v<���=���o F�ە�ke��ӭ��O]�c�ͫ��>7�l��Ađ��06W�2�C���g��Z�o�i��Ռ�)ȍ<�>�&e�cnB�F@�b��V�/�߇o|qwl��U�^+i �*~��ֵ�d���n��a�[H��C!o0�}8#�'�>��ZJj6�k�/������H�oD[Xմ� �\[�[������#d��F���ɥ��4� ��r�+�$!$��1��I�>��S���Y���tqڴb2֮rl����rL�����bP�� S�����yҭ�_�rҹgY������-����Ř8���<���Zf�e ��I� l��1$R��D�F�����W�i���om�'%3����sY�͕���Akb|�6S��J����~C���H%e�pA��!��'�Z��`�j���Ԛdvj3 _(����OT+b�^��Q�0[ۮE�z0'�#��g�Đ_$�n�Z�����څVI=nJ�;����cw,���E{c��$0�Z��dWZ�v6��N�M��N�2C0�8��{�^��Q�{yH�hFp;t��jv���\��È��o�X�;y?Z��W��o��\v��S�z�%�#�L����0y�di�1�Cմ�2JN�"�D�d� �F����]:�^\�6^�o�x6�È،`�3��Y�6��]O%��B9C����8�Nj�UFv�n��D�Ԋ�+�Vȥû�O5�"��I1�;�#��q��64�ZŨ͘���Td�yy�;u���X.�7��)�(IS���ǶG�6���4ցdتv4��)��ާ�8�7��ԗȻ����y7̈��y�v�A�O#�z��o3���!��G�ʅ�x99�SA�O-��Q�yxԮ���\��N���G��ݾ�4��Vcy �x* ��(u}�_���;y� A�3n���))�8����ug?j���.)������NWh�#�m��;�0ݲ�`���U���hT��k=���RG4���L�> �#��'4��j�5f^��GrO�]����d�`ONr9��ӵ1mj���O�+�� ��rFI=95�q�5��[m�R:c �zU{�m �k!�l��A���Ts�q�T��`��Y��h�qon��`�m���� ͐}�>��{�(a�ⵌH�'�&U�#��/�^�����4�;}� $b��&��3d����N�C,��1��W j�+��X�F�Uk$�Zt�����BK���K`�!�dI#�6�" ;��*=�{Ye�_2�J���E���u^Nх u�*���G�xoI�X�"��̟2m��L�����㠦x3W�|[��kd�^[�*� ��]�o|c��Q���W�{y\���_��f�5 ��R5�h��X�ci�~t9=�^�MK�����MHF�G�s��,xi!|�,Nӑ�~x^;;{��qp�Z;X�QJ�.�uQ�?SYwo�QH��H�%اj��v����gw�_�mG�˛����\#D�.�$�P�a�V8�23�S[�5��ܭ�Bo-�a9]�01%X��T�z�����J�K��#\A�)��y�rH�ڑ$��V�攣�6�E3��9VPO=OZj�~���gb��m�|&�v r�(T���ۃ��ܩ��ڬh��Y�M��y֠g�R�sU��[In�K�v�DbK�Rbnd�<q�j�ڵiY�-%�DX��6( �YGS��ץ)WQ��z�^����MX�_����<Q�c�{z�b�|g�`�yծ��&�KE%�T0r8c�z���%H�m���V�s����y� jkw�=���ڙm�K(f'�]����jp���Y�P�(����e�{>�(FRNJ���|��?ğ��@�zv�{�ج �~��6~P��~�n+?���u��Hj�v�b�=j��3( ��p7v����zkj�;[UÕ�{�ZW'9 ���X����t�O�F�i��"1�\*�#��}2����*4�]�������� &���Z��_���`R(�N��>l��{ץi��-岷�ң�|�M6�`n�gh'sc�'&�ҭ'��㼷��T�ݴry)�B�%wq���+[=M~�omug� {�21��ҐG9#ڼlNg��Ϛ�K���zۧ�Ɯc���.�1�u}���d��J� #lecPW'����h�XP�%��h�Oea,.�#�<�t�s�s�b�P����H-�}ш����q#iG��OĞ�.��%�����瀡6Iq�6����Z�ד���.�+�8��]Bso ċ"�'���vA�cj F�o��� �~��Y��"�8I��6A�0l�/'�{� ^�Xm��n��Q��x$�z͝/�}.X#��R�K�~8V8�����G��Rko���X����-��-��MbVݰ>w$�x=��Uu.��.��ٶxm�1�L���~���с�d���J����m�+N0� ���Ny�㚜\�Ϩ<�l�Ӻ~���$Tle����� �֪8�F�����j��i�w,�̂�A\�98�*� +M�O���q���6����BpH�dc=kr����*\ov�Yg*n[ ���sS�e� .�+��a�E��y�c��yd�(<y�%��4�����ܕ���h� Dd�� VT� ;���7��?�����Q�^f�ۼQ�ݖ���A�#F�~\�z�\��������y�%�Jd�����r�a�,����^ 8��c#����Lľ�M�� ���'�]#Z�V���o�� �+sz[k�i�n��+�EW{+�-��Ea�/=�1Y�u� Z[���ݥ��~����~H#��Kc���^Y��Z4-e-Lj�����gM���f;�n��_��8s��,�%��c��'IѼ+a�Mo����V-F�%�r�^] ��`�<pFq^�$ĵ�WD�}�[�m�q�����u=g�>2�,#�o�6�Q���-L�1�[����i�Eq�5�A���k��v�h4����9u ��];�& _��+�����C¾!�.u���R�_�[�P�uy2 �dC�1�U�� ��_��5���6)�GU��6�9��I�&�����095�8L�E�)^��VM]wO�_�8g^��ӭ���l2���������^�����#ZѴ�Kh^�����H�ث){��I��S�&����:֝��H��걉?�fHD���V�ۆA��������S^6�,�ȵ��������2n@s�t�ȭ+o����\h:ޝ��i����jG��X앉��� ���Y[�Z� x�h�t��'���&��z�1Uu�u�]����������Դ���Kqqet<�����cGY�S�%�n�˻5�-�OY�v����I��qJҩ��Au����w��3�;m/L��>xj��Y��"ԥ� �\u���Z2��\(^8��/�5���~�I�m�՚�gY�i��V�8���6�¯ �T��+��#-�}{7e�M�}�*�y�GV��\��/x���:6��!�&+iͬ��{��v0�1zkR�A�ML�|��:����$���o8��0#H�!�1x-�����|��/-o�����r]��V��R�)@K����}+�4χ�k�������ѣ�i�].����Cm�U^��3�5Ǎ�5'�^�z]_�]�}�)T��J�ק��ïj�H�u��+�]��ť���� PY8�~�y��d���s�?���{��+����M�x��̿3�[(�@���yz�W�[��~��Ӵ�>+kiwo� j��"���=yE�Ծ\�ia�.#�7�����rZ��GV�������ߋ����0���_�c ��Vۡo\�Z�Vm#=��Բ��[DQ�AV�q[�R�^���nap�V����c���z��)a��[g�g����+I�F���{U��Sv�\�J@6�b#iun�>�}kȞ:u����|��N1�m//xXڻG�nU�9`ɍ��t����y.J�eK�1\�dupe��Ku�x v�����M�&��B��6%d�Ab7n*���c҇���L�jD�2����)�J釐ߴ�2�ukw38���\7�e�p�����:}Է����$~H��U �͐� �{�1R�$�mbqa���Ōr�.�N00T�'�5J�U:����#0�`�͎�sɯK ��9h��?���a��������M�<���k&�X��F2̫��H5���Z �\���v7����������_� }73�ne�j�VK�U�U7�� ?Y~ӑ����1�L ������� �E�X�u�|��x�H��-, ���7�/����O{�����5�N5hϚq���P��=Oö�ߏ��uE����g���������4��(�[�G���6��v�\�6�[?Ν��G�lV��cC� ��W���e��WU� Y��]�����M'R�\d���<Ike�\X�z��R7"/&2WۑU���[ �2��͏#v]�Ҿ���]�E�R�[C)/�Xt��Xo<5j��9Õ{W$��w�X�J0O[��ײ���+A�٦�G ���ݟ���c���A�V���몸�āK=�+�^�6�I�A����X�`��w^U�����8b�,�{q����9<D��R<�o���:���p����J�4Dc:�F���QԀÒ;W��(�?���Kk�h��Z)&6�v��z״j�J���tGj�g����w����ms����&�d0�ư����f` ۑ�����IJm|�7v簬���i �I8ܹ�\p�jۖ����9���F1/�g�by�F�E��.y��f���f-�ʝ�ҹ��U� ��J����Ҝ ӷQ��="�0�v�@:Ո�Ӈ�89"��;�k�}�v�f�V�W3�4|�5�NQVq3w�_�� $�+���m1�/��O-�bN[�@y~��"kY�C',H�+Cű�\�m�;-b���E���ܧ��s��_A�b�P�:�i)�GM���C�Ns��emO���'�e���2�&h��.Tッߚ�i�=�j�y��m?;,}���ú.���%�a�v�w��{ �E��Ud�=k�Y�Qֲ�߭�C����Њ�:?�$�%�m$0��Yع��z��&|7��֛��E|�m�ݬ�������U�T�ʇz����J�4�:��<�<f(�<��@ϵN#0�!G�UR�g��q����%�uo̹{?���Xծ���]6��d�p��z��g��K������<��[��]o��=��-m4q���*1���0�=��Wp��Hۗ��T������d�?����nfg�:�ɮ�eC*��&��g�P�Ӛ�ehت�rO|U+B )����.e"�u=}*X�@In{梷�g�Hn���o��M�٪WM�"̄4d�95\B����;T奉U�g��1��OLcN�`��������⣾O-_���� ��4�E$ ���iOD4�f�Yp�q�:��[3�$�ڢ��.W�?x l���m����51�KPݔ�1pb'��O��W!w`t���{�$�H��jY�9�'��X�)_�C�/;�Q���i���*�ہ�J�h�غ���뛍�9P��ֲ�"I��KVE�M��euVܽ@�|��wᕵ���Yõ��\���������y�;m,-�(�uZ�K�����>��4����~}x�J��n�x�+КȆLK���q�_Z�^�c�ӪۆnH`9���q�k�Qth`<;W���R䞓ꈩA�z��X�?p��dqH֬�0���O��P���J�[]̔]�+0�7�oZ��Z��dh�z�Vז�+2��N�5��y�����qJ�2����gB����bf\��-�MBR?r�r+�d���s�i� tT��z�&���缮7���?��ƞ�T&��7�r�'t�z2���k��{����O��K(��_�@olta�q��B.�����`����SRе�mGH�������<M�=�DZ����O���Nѭ�ik����t�v+����9�K:I����*W��;�-�_�'�gb��c��c�9��v���x�tI���v�vq�3����f�gP�C)��܌�:��X�f�娭il�n��~�N�T����|?��^�M�b��U�Jm�T�,6��q�߇>$}:�t��/]ԣ�Mך��7�۾���c��j��MNBƊw���Oμ�Z��~$��ҍ:l�+QP��8�yc(֤�֊J��ѷ�����waF6w6V�&V�Я"����^�V/$,?�I�ӃZQܵ��sZJ$�q�91��\����S�����c�,@e�?�Ml_Op4�mCF`�JC�hARF9���u��(N�-F��M�{w�5�-tt�ᬯ�f�q1�o��x���pc�%��.lw��9}qߵT��}Va�,���l�u��V-mXY�̅�;���e��������u�������!����O��?:�q`��S�,ɰ�nI���J��]�X%�C����T��X�)����9�c�Է6ې�d%��b[���[c��h�g���{I�)<ϕ���+:k�7�hQw�6���ۋ����@�-xr���uɪRkϧ��L�K��mV�O*he>\�0�Gؐi��m ���۪� +m @����צ(�[6�I,b>c��!�����#S�)��$��8��������-q���hvKR���S�_pH�Փ��,r\@�鴦ؿ��Z�q ����ᐎ*aqo#�+32�͵��>��Tי�h-a��e�slpE�i��)nf��=�R��n�o��8���I°�ga����i$�xbkf`�BXq�3��ӌ�6��5C.�V(�FB]v������4ԎK�%��w�ѝ���gGrM���^K�ޯXC:F���c�dn9�8�)6�p���q���2~c ���=I=kƗ���X�Ou>�{8�B����<��k{O���+k��Dæ0��z]WN��&���&��ddq��O ��E�R�F�{�+uKf��"n֬�)ZDl�m`D �"ݾ࣌�玂�'��`�&�G�]���J�Z�� ��G\{Wm�Zi$�K�&���,0��s&I��=)>��zV����4���-���'��־Ν\��8�+TS��Q\����W�s�ƻ\�z�� ��7㏉z�wZ���y\��wGi�z�5���?�����H�>ؒ�1>D.�ѻ��9��{�R�3j��_�a�Z%��,��YP7�:��f��Lt~�N<��/�O��)PT���e��_,Z�o�� wo8��'������6�����X�Vh�Col������"���jz$1��d�|�_C�?'�J�/�I{k$S�[�܌; q�u�ʼ�VW��N5�R��^L�2M��h��q$,�O&`�'��Y��C�X��#v!�}�Eo��=�2Y�Z ֥��n%'��}�V�?:W`�����}k�M�}���j��p�I��D[��̪GL�ޚ"h�ˮ˅ هP�(��T����sϩ�*ͅ�gI&hwa��9'�g��j�����Gyy%�PGp��F��3�<u�;<���?=6?��XN���~�^yYeFUR��I?AW.�njK?�Y0��>�_Z�7{�J�`�F�4���)��4v�p�G�/����V�6�6�-Q����4���גy�~�+��>_�~5Q#mH��s�3W*�Z��QV�f��J��1���v��@�MBѓ[���>+�y��^��z��vM�$�+�������7��p��s|��� �8'y�Ha��ׅ���@�d���sқ�]�=��[�31����RǑ�{�0��+�&{`�ʫ��V�RA}r��Q���&<|�ߥ5{Y=���i�4W�siq���A�X�o��Y�mnM,�O26���|gh$�{U�f�{��o)��s����>��s��k����5ݲ5�?kXµH����7���Vo��q�-���!�Ew�F9 ``�6[�g��ս�*�I.' �?�O*:g���<D���f�G�DE����0����23��v���K��鲥�l�Z�陁9A������O�T���W}����d��9��z�5�t��KI�Mͣ���qr��@;�21ܣ�c���R�4=&8��O��<�d���C � �������S�oXj�<G���<{�2얷L�~^Ʋ�h7��i�zl���i�������8N�Q��������&��I_��S'/gMk����/x�V�{y� �K=DԮ�a�l�[�FE�3$��|�Џz��1ce�wW�Q� ��a2[/䍊�?�9 !��[�w���6�����U�֗<�:m�W $2�0ʞ����+��ߍ��o���$1Gom�i. �]v�������c;�����>o{��Gf�G%i�%*��_�4��ί�~��0i�x����I�d�.�#ݗ{��o�a��Y�F��\X�{'����(M��]_f��a8I�✌w��9��G�γy%��j��,ż@z�v���Uz߂c��;[� xK���W7ږ�ų��2��<��Ҹ�V#�����[���r��Km���m��:�R���m��?�M�2ʹk�5�VPD��kڬ/l��~l��W?y��zغ�^��;捠X���ƃT`/�J�Z�g'�5�7��fׄ���B��q,<�8<�ףx�����������hD^N�n��V����5�.(�a��8�k��J�ӗ���`*�m�nϝt�x�T�u���h�����g���۴qd��qϸ��¿ ,��n.�|K�[��\��СS��#���=+���4k�O�-Į��s�I��~�8�[3H��1��c*���J��gbdҥ����k�����)-Z���x�V��^�twD���,N�3��'�q��]M���e����O�3�5Qo)<ne�\�O�Ij�����6A�O �����v���f�2�����W�S_���^�=|��A+M���^�-����!���}�C{mf�!�n-��|�x\�B����Sӽ%�%�#m��T�q�Q�7�-�O>k� sJ3K�Z��^E˻8��t�Edw�����2Ɍ��|~V���O��D�K5�#��.bG'�?0�J_j�b����12q��q�ۧ�k]�r4e,DPۃ;���0����.�9+c�P_��;V���O�K��)vA�_�I<�p=b�x�M�5Ye��'���d����y'�k����g�dY-��B�X�꘏��l/�]^��P��K��Qٖ���d�#������O�I�_��_{���s�����/�'9������ˌ� �Y\�%���01�Ph���>��\\G��"8�8��� {f�����"���S�+5��J�P�?]+� rx����p]:vx������<:��E�Zv��y���S�u�e#�&�ߌ�1�/�]�o����/q+����$�t�֎����)8�������L5R��7��,2�MN���D�2��>i�p�[������PG���� �M�w��~�4���pO���_������1'/��ȓ���_�e�HB�ZCb:�_�O��b}�6�季���t�S�]Y�g���ەE�q���}�:�����3^Z��)�r�����!�����e���n��r&c,�����k���'x?�:|�h���]$� ���(�XSr��g�o�ݯ�ueE;Fq�o���O�� ����|�g������r����� �����Q�i5�� �p�DH=W��ۥ}?�=xk���E�̓�c��C�l���m(U�y�������i�pJ�C���Wy�/�?x�}2�nH �PǕϵym���Y'�Ino�~�<�#�^�����\�7~���Vt��6�m_QѮ53*��+P���>��ϧ*W���^q��N���苼�*q\�%s�����m�\�c<D������Ҽ5��\�k`��8@3���������n��ӭ������}H�t�>+_�W��� �8�9�14rZS\�%SϿ�x���%�=#Q����f\�.�6=�'�:�:r�]��G�1�\L�_u}[l��*��� 둎j����ĺ�����o��/�q�rx��[.qq�k�l�p�R��H�mX��b`�I;�3\6��1�~��| �S}a��.�~o�<҅H�<2k���m+Ŀ��,7E������P�8�RU����ބ:���"�9�X�B5>s���W����[{x$��)vs�����.�m���T�Nz���s���^f�Q3��3��>q�=�a$��1_M�M���n7bP���㰯I���o}lv�-ᙆ+���7~#U#@�v9;S��^O�k����u{;�u{~F���J�\&����>V����y$�}��$���彝l|݅�Z��*҈��ȼZV�V�8�bRW%x5� r�-��fM�ȵ$��ޱ.�\�"�<5��F��tڍ��Ẉ���n{�Is՝��-�xٸ�W�m�d�Y� ;�@yZ#[������h��&Q���v�GM��>������-!fI��@�@=I�_|R���뚋[XB�D ���g���<Y�;vGK�B��S��d;q�+�_�^�\Zi�4�����f�Z٢�M(�-�4��K�3�F4�s�����5�B��x�w��N3�u����l4�ag�Ѩ�9�<��#�H�<��y���|�~�~��w� ��Y:y7p���ή2?��5�0*w�&�:}����+bmnX6���2�ŏ��ʗ���W8�M���x�f���$�gur)=�ֺ����X�4�'R%�!�p�X�{�����z�bo|Ae.�"T��������E;�C�5����aӯF_��zg�'���w>� �����q�@���?C��y�mBE[��y�b+K_�ʵ��f���2��Q� xf���^��,������<� �lc�=+Ξ/��?�PT��~/�)�i(ɴ��}��<�e�Pt��T��&1&�F{W'�Q�����<v�<1��}~��wd+�ڧ9��l��ӹ;J��D�{4,���Y�9��͆���qT�U�1�1�6l��"�wOM��2�e.x��>��qjM����(*Ŵ�ṋ(���֬5�mT����$�j3|�X{�y2H@1��+f�̮��ҝ��c%wa��ƨ�=�,Uc,?�K�'����� i�]����Q�VOp�`�y8^�Z�%���YQ�°s�T��ݪ�4p�W#r��\jIǖhVꉤ���8o��g�T�:�Ī�@�8���+���(����I&��� F#�;q�j���u��KV��}ʑ�8b:�W��H�(�^edG+� {q���.�AN@��ԓ�iq��|0_�O�s</�XJ�]K�G��<{��P�n$�$/%� ��49epq�־��7���J���#�hny�W��~�Y^>��Âyh�z��<�:�������Fj�(���.�I��`�TQ]K��#�V&�{C��tN0{�|�K+��)�������9�w-MpKg�X��{t�U�gc���)ӻ#��p v�t�3U��k_[���pG9��&6Z�C�)�$�����u�U��ް�G�G��HP���������qnR��=L7�f��"{c亶�d8*GBb+�O����MC��o�{�K��;NN~�$=���?^���\��y3D��q֕,/X�Z��O����s���"���n�t�5��p���j_~��{e� 3�J�g��9�ڳ���\����k������<0��[�7�KKk�_2[����J�:���[Ӓ��h�IP2�rNk��7ʱ�=���/ޥ�d�����hՅzjp8[���|� �֦�&16W+�pk\���X��`.2�����α%S���j&�ʹVX�h�zc�]����gNM�ku�Bw��7��9!�U����d�©i��G�]����Xw���Lgu�6��1ɬ�[HK��m�&Rv�g�z��T���KEa����o�A9����M42�}�"o��S���U��c ��L� ���l Q"ڤl�GQ����>mG��Kv�D�Xd�%pE3Ij_s������D� �� �Z���fP�@9ɨ��>�h�.>T���^���R�[JL�z��V�Kx���ǩ{>�J-%x���8#�*�������ܓ�eU#�֡��9n���������[���s�7���}���9%�� Q��hD�:����z �d�HPp������L(������UB:}�~'�Cqm�r�*�nF'�1JU�~R\��V8��^*k��5���P�NӚM2�'�Q��g���J"��H4B��c"o�6��}��[��[)vD�e��v��U͝���d��e�K9���:�g�l�M;ꅹ����pn�� m��q�U�{N��A�Z���J"& ���j�b����.�c�9���lɫ]���|�K�H����~�-&��j��>�u&Vz3���5k_�s]�HbQ�+H@GS^��'�G�[L�u�,�^�@�A����6I&���]�k}�DlTs�u�ᇃt� �AV�?1���ws�_Q��2�t�[��t��O��U��ƣ��9|�P�Ẹ�ٳ�Q��Nj�_�a<B��bRI���z�����Llr�������p�\>Cg9S��k˭��e�H�>�::���E܉,�ps��zU���bK��;q�{Ԗ��,&'wnq��xbi"h,����x�y6���~��G+��z�Z�Y��x�%�b7��8=��5^h���Nݪ8��jYmh�?�8��R�k���墄(�}��?�ڍ7P�f�)w:�Ic!?����M�+�ާ��T��i�� +\w����@hx��}�'��s�03�~��x�Z�.y�OO_ƴ�C,IW>b����g��w�X�`�3����ZR��c�� ����+x��1��N�Y��K��B�9dݒEs�������^2��^%Py�%�5�i"�5X�kw�y$$��|�/<�J�p�>&�e%%�.�V���{┒�Dџ�FB��8�ɮC��$�)��{�u.��?�����t;P�;�u�� ]�T��q���ۜן��!����6Mou@҉>g=y<���j������7�ȯ����92�-���� �c�����L�َ��PGF����qU| �6�S��R��S��5��bG<�'<��'Һ_�K����Ŭ B/8H� ��#���|��+��� f%���Q���x=��r���^K]����t���+U�^6�4}4R��j>� ��!쎪�9��('���#�����_i�&wf�H���j���t�9�]i��suusx�pPđ��Glt�8�]���B��m������rCn�E<��W=L JU]� ���W۾��5H�f��M/�F�m=���5)fi!ͻ��1HO=���Z���=O������팶ن[e�HG��ix������ta6�y}<�!}��4�*9l���[�v|P�tQF���{�9=�ם��!'Znr[[D���<b��k�'��!�|c㛫M2���ѢO)f�l��X�v}�¯����|� �;��֧�S� ����1 ������Ǘw�@�I=}��iѵ��2&����y�'�X�O�am�����KI˞z�3����L�h��+G�"�0s�P�5�[�oÖ�<r�y� ���H#��ٹ2\L�1*` �*�xd��|�l�^W�7���E[CJ�+94��B !�_���-� ��E �qޖ�`������#8�M��\<��Qc�k�Ϛ6z�D%�3�_2�B ?0q��������ʏ�/����s�i�s�l͟�\�M`k^(�H8�]����==�5�Q�N�=�k��¥xS�r�:+��!�2Y06�G_��ڍżV�-ܨ���hn�s\|z� �/#�� �����֮������>�r S�Y��W��%��[��߱�b��Қ�k�-�A�٪�" :~�����,����X�¯2ƽA�u��<��F�r/yNG�Һ�h!��˷�#Q�(�~���$b������z/��q�&���U�|,�nJɫ^Gm9Q�7�Wo�x�:YY�ڦ^�\��>�t��$�?��c�}�$�a5�O^�W������d��M����3֙������^�\�)y������9�)sϭ?��'�g_���@��5�8�\�9�=j%^�g�W6-^����S������k�rЄ���SY�]%������D>\�6�fD����h�u��=�-�R������&2;W�(a�Մ�C���jվj���Ri3�|{�b��Z�^�.��ifˆ�q��i�g�g�����fWd�o3�S��A]�C��&�rL�<���s�TX���O�Ʋd)a�����YJ��۵����)J�KH-T5�����!Il�#w�b�����[<��n��V��z��)Y^�_���۰����gg(&Ց7����;3 �h#�����8������$�䂙���I!g=��_����>�����I�t�kr�u*9�����4�87���Ķ��;�����wc��ͽ�eKfI��'��6�O2���X�oO�UmF�����h��$��ub;��+E�wm|���s�-Ny'����Ir�m�qW|#�_x�J�����RIUl~�j�n�K���d�`G�Si>1���d��ޗ�R0%����?��H�ӭy���|Ekq��آ*|譬 |��'x��e4��s�i�\�j�+�6՚�;Ն"�q�V �WO�~-����2��]���#ʸ s�9��+þ)�t�|Q�x5+{����.r��N:|�����ğ�6��V���o5Ӝ� �N2�_������mM��F�Zki���@�!:����ڵ�T�ۛ���3��]�{�RM7k�-N������,&�Dd�W�~�ϵn��go>�d-4j]���?�\��{z��Y���L�n���kx�l�G#���.�r/�{mJ�#�c��0��7�mx��ЯQ߱���8֢��jQM��������,�����a�.��STy��$̸ ��`�gH�{��/�܅Wi`�2�p�,�6w1��2y�,r����d�N�-uܚh�K9nJM%�!�����Sss��Ր:���$�ewo�s1��r4r�ǦOLs֧�|2��U�YI�%o�alg#�WTy����h�Ԓk�z�mIl�(+�>�����2��9^00[��c�C�|4���z�71Y/�-1\���kxZ�\s����e��zJ���iX�i�6%_2'�V��`x�Mk�Ԗ�RX#%�n�2��6���c ���C����n�zTw`�l�m�d�.#��|����(T�A*�W}}�e�<����u��k�E��Nݶ[2r��~�+�5 m<#��[�9� � �Dt=8�o���K�{�ь�L�f�0q���O���,�|Wy�V��E���b1��<�Nkѩ��S�ܪ[�i�����ȗ����O����_kw0hn�o%M+/)����^����F����5�m�Ocƻ��:|��pH鞵ͯ�u�m�/]XhVsO�-4�4�#��x� 무�OF:��łT���JI?1=X�'�槎���~�'MCD��w�m*�����8�x��=Σe�+������p��<���5�}h�%��R�J�(ٵ���|�����SRՓKh��e��n|�!��wu�����c�j)�[��������c��0~�0�,]�ί2}W~�E�˒���s|U�������=����L��kg��l���Z��nf�h�!="���[X�#x�WM�R2�M2*�� �.B�ԓ�Jm�����ֶ�ֺ�j��/yNv�#ljF=ֳ�Q��'%������+y]�C-��Zv�k�2y��Fy�}).L�7��)A�l�3��^?�?�2Al�+0�.��[�����py b������K�T��Qm,ca#��GZ�T�G���jێ�.�Gkv F��7��Umf�/�W�V�����(㺒>[ȐK�&����* l��;kg��KE܃��w;����?zশ�"/�f��a���&�b�T�,p�J��WL���?Zt�ϧjP.�9�)N�v��}�;[�[rב�b}�1��&�����ʽ��I��Ю��ܕb�#a���S����Z�0�� R��������4�s���NMD�y]Zۛs �y�a�U��}s��[�ik�_p�DA���"!t�$zU�=E�XH�@����5�4��$G�������\��ʅa�i�)"�B�s���Mg�Oo��_.�f�Q �_pq��d��i������Ll�3"�G�����ln-��3np�g�Ջ���V+�%@I'q�H��ۥ/eet��pl��#Y<18��q(!��U}^��]�{{�YnY�����}�J���QX �V1*̸�����^zTZ��I:܉e�o0I*���sҳ�#4ﶋ_�i����?�%�i�4�L�F7��|��I��g2���N�����g�6*�̪"w�ubAe=��U�?��~<�h�FYPP{�x=+�/���Z�Y����䪭=ώ�Ӽ�¤����Rz�I��(7A�˟�1�����z���W7��E����o<�s\�"��#|�`����J��5�Z p�h�>Wk34y0me=P���%�����W9 ֤p�v�� ���c��ޫ���� �UۼiӏZ�L��kTT6ius�V5*[�U}a��#�pm�6>�n����G,��8ʖ�Q��Uuky��K�������ְw��ь��֑���)�� �rk��gO� ~�I��]�q���10%�y����^#�]�G�f�x �ɏ�ޱU�B1�\ ����� *5�4%�|������D�~��/���?o�i7��V�d�'�א�P�Dƿ2�g���%�]�,�2Iq�����f;Xwd��>���_�w�~"�^KK�I��p�ua؊���W0�έ燗^�O����>� ����iv7��a*��E�����{�^3Z�V�e�z�*��h�g����S���A�ӱ��Z�����Q��>��_�y��&<��>�y�C9Q������G{���w���]R�r��{k�ʬ��n���|�rI�UE�P3�¦���c��h��!���#&�Ry���i�q���I��8��8�<��S!w��������S�l-!o����6�;IЫ��0� g������ �R��S��h<�����Ηl�d���M�X�����䤕���X3�ۣ|�r�����Im�j~�r�/ *r�\�X��T&�q���a���R�(�!��֎[�2��7F>BN?Z��F!H�����ǀ>�- V��A�>�6�:>F;���f��p����[�g�E�$,B�7�?:�|��i���lc�U�sqB�����P[��S~*�9�V�ͅ��qÝ�xS����UMR@f*���W�P%�x� ���m��[��H9'����b��d��zs��!��g�8-��+���"��E%����C�'-FP�V�u�g����+63�9lg��տ"+yy01߭Qկ!��� ���UN�vJ�xɺ�;GU늴��.�J�����b���[3+\6Nx�����7�g_���Gj��� w�z�|�[�Q�ɓKs��T14��#pvm��s��cK 1f^Fp�:��W���u��d�l�E8��@�>��Me�A{�+�j��}�.����*9��+�0�>�������3��vG[�?���$F��p!M�Ol�A��=㋯��&�j�E�f������A���ti����2F�ɴ���[��uo^յ�-�ݯ��60�����?1#ӜG B�H�O]o�^�nm�͡O�^ס���n��\8�ir_hn3��Ju߀.쬭u}Q��q&H�qԧ<s\��u KG]7�2�2���|���;֏��o�x氟h�%�R�:(�zW����T�y(����_��<jQ���3���Z��ھ����mq-K�Ϧ?�} nxWC���n�����V'�u8�A�֪ˣ��U����t ���*�>�����_.9:�I>��=����S��Z���1;2����%h�!�qZB"��,f���PqT|5�n�O��kk���l�j�^y8q���1[��y�2jѶ���@v�����|W^�c�IEt�>f�<�ß!�Pw�d�)�!>��k�xJ�m�0!�QC�N}�j%28��c��!���b�ABx�ҼJ��'�������J��Y��Uv��I� �XϘ0u�id��3�RK����ڸ��-��˲YYdl>R�C��7�5 �*��t�3�òy>�����p&7�!���X:�4Q"U#[7����ʑ��k^��nZ�$����J�.|Sqp�h��t5Z ;X��4��'ӑ^���5����s�5 �ٯ�kV�c��$�<I��F ����~�9�Z�7�-b`�?�?��º�>���qC��}�W����go���Wר�ODqo���a��NcC������kB�\���??8��e v�)(�$��5�]�e�k8����jW�U�r�=�����P5p5R�@O^jm�u������L��( � ��7~���V������R�O�Q�Gnԣ�c$�x9�*.��N ��L)�Ͻ<��})�~l��Q(<��?ۉux�/Kp8�y���:�ڳ��V[�c��`s�5ˋv�s��T�q���"���0�,>V�x(z�A��cU4�<�X���۳�F�`{��ʭ�\4i $���6�I:������08?2��e��,�%�hb� ���d��М���?(��6�+��H�����-?�锶q$�\�tp�B�ל�;�ޕ|���v��N�Vn6(��0A�����H2��Gm0H�_��̹ �b~P}G�D�m^�����$hbW�!��NIPv���̼�Q�+s������������H�a�UT�B��q����JU�-�{��I���Ia�U�-��f���*Ɓ�LDFFa�����2A�%�^[B��x��I���1)�ff]�� g�1�N�\�_���o�=���2�M<$",g ����}އ�*����C���'�\��f��P�9�^��k�v맸��k���l���m�pA8�H qU�I>�$ȳK*��w� �U[�`8q�2|��}?�������[_F-�sn��pP�����8��m��pH��F��,B�k;?*�:d����i7�Es4��qs(��|�&��)V����s���j��Wz}�zm��4�R��������k8�=.���j+]�xkZ�-tH��s]��ѳ��I���o�玾���t?l��۹�%rc���Zl��Uz�3�z�?�t\��h/�젚V�j�\(�BT�#|+��_��"zWE��.��3�+�-��y7ml�Gm��\��,���:��cy�ʹ��2��]]�^��{����C�����zE�>2�^��N����������Z�ǫ����w�|�˛�T�.F# ��A#%[���7���L��j���5��p�[8�@_,dGu�#�5�]|<�c��.���[υDVW�2K��g !˖�_�rF1^��X%&��O���ҘF�zɷ�v<���o�uH�I�i�F�����f��+��#8n��[Ǻ�ŏ�:��<W���E�o�[+1mO�R�����t����� .�m��wdO�� ��`����b����lQj֗p[j6����$��B��X��������63J8����*~�T�o�I?��ce˯K����^0��r��K?���DV͘�`0pz1��ā�6���kE�+(�A���{$�߶k"=B�Ȃ����JVE���f��z�$��1��m�jn�����y�<��y������z�Z�S�+���4��KW{���o##�b�9,eYH㑑��\r y�ƭ\uk�|o�Z��}��&���,��3T�'q�Ev��7��i�\:�Y#�I�Nxʓ�z ɞ�� �� e-�˧f)4D,�( ������8��x�$�������G�jzx��B�?�'����]X Y�J���EohG��q]�9<W��?�ω��2M[Ŷ>���&;-=���nU�!�lŔ��7�A�ȮgǞ ��V��7��ٮ���B��y)�k���!aI C ��j���Z�o�e�Z՛>,�\[�(h^��;�0��1��9)� �8�糿���{��C��I��ot9��..-C�y�GRA8T1���A�O�f+u��ZVx�J�:1�#��x�GZ�K�Z��O�Xľ!�Ӡ��? �r���&MF���)��%������)����xj�{�k�FkigYC�Q�h�� ��9��1�LF�v��ۭ�7��d��nZkXnl�t�A�'��I�n����䎜U�/���F�I�F�^L����pxe�>��]C �x�����h�%�6GM��9�5jݧ��;KK4h]VO�[��,[@$ʐ{d���:�r�]���טܕ���\�7�Ä]XʂT�W� �c�=��jM&���Y�;v[�Օ`��.el&ޠ�[�� ��5�"m��mv]m��9Vm���2�OJ�_�{��~&����BԮ��}�L��W���ytLn�*rq��t�-��#R��獮�V����߿a�5������Y����&��u}��(�F��Fn2��c���Z�e=g�~<���g�.�{��X��1s�z����k�|-���Ŝ�*���9hYVHل����!T�'��/�Xv��>�S�~���y3�9̷7d���A���s���[�V/�倣�W��g����;l�~�T��������������o�M�z��m�h>A��PN�r0@�O=3����^.6ojI���t�/ne�:��9j�|M�F=G�������i�x�ӏ�J�����'W��j�_X��K�R �!���$�r'���u��g�ҊI�ߕ��[ )AZ�g;�?�� 4K��K�F��bK�B_6P[�+�y�;�ڻ-F=B1-��&�XTDm�(bp0F��TV���=֗#<���C�0��`,1��p��t�,�Ih�o�m /��\��+aN�cn_Ƽ�T�U�;�/���)9s]�"\�WYK6����c-�����杝M��&(�KG��6���>Hnp9�D���"�W���ye-�6�J���jȒH좹{�[��L�*�Ѭv ��䪁�3��8�A������+|Ɲ�V��K{T�u#�&� ��c;�S���Ӽ� nme��2*ߔX���A������=����e�+8��ʰ�����*pxͻ[��Y]i�� ۫4�*2c`¹^Wa��pzt�w���OV;�=��ڲ9eKHȚ9M��:n�q����RF���wC�b��Hـ p�c8��Ux��V[d�O��x>ϴ�pK)S�l�W���s�;�gp��a�f�$�O�в�`3���29u�f��7�����l4��j_�\[�m팓��袵���@vm��'ל��i�|��I�|��� ����J��=�)f����Kqn�q����jHc�n��d�*�V:}�m���VH�S��̲`�p0Tc���8¤f����=��ho�MQ����IBF�(9��r�09�E �ޤw�=�9�u4m�#�<�٬ۍRk�k���E.d����,�Npvl�����xռI>��-<�"��ޠ9S�f��������{l�~�zU�zĽ�-�~ؖ�1k{#��a�b2~a��$���6�En-�XOk��Wy�g,�g}�3�j��ܷ�un����>ZG�w/%�lm���^A�zpj��k�X�&�%"#�D�7vI;�|���qC��tV����:mNkK�*�rDL{Q~u!K��p��������L��M?�p7#ػF0�!�q��Ea[-���R:?�� /d?�6,��`�Q�8�3������x��۰y��=�mC�2�a��FJ�zg:R��2V��"�<�uvx� K���eڥ�Q�;�7pv�+埉?u�j`�..#����]̀'������}�auP���H�����#2'����l �`c���\��Ŭhz}���Rdu��aŻ�.�X�OL䃃�Nk������=W��jW���Qy�̴c"mr�c�7Ӧ�5���L:y���:�y<vS^���|�Mq�� ��$�>[�UU�bg8st5�W:DI*<�utB�(� ��}ھ�����4t�9ꪑ�ܒK�s��s<(��e`1��<۶k+T���*B�A*`�Ȟ� Ncs/ �F����K��>��m��ED��1��I¨��X�a��G�y�5�B�b�rԜ���f��^�8�[��N�����1�"�r��+F�;��۷�j5�(D��a�@�s�M=�.��`P˸ތ��L����j�SW1r�!�[G"�Da��˝��w��~j��k�x#\MWA�4j���$��t�#�z{��!s6�V�Hc��߾:�O���Y���p3ۓ�$���S�B�Zn�U��OTc�˚4}���&�� '�\ !�me?O�^�r�\Z��W�W�ׅ�K�xWR[��I�|6�뻜����{���_��tE�yr ��Px/�%9�~����V+)���f���������u҄ݤ{TД���&� ���QV�7�W,3�k>����y�k��Y�k�G����(X���� �=wt�oR�1�e�&9 ���^�^������ �mjzݲb�kK�<����(���NA>�r}9c�xy$t�۽�Hk2����(+��bȳ� ���S�i b��늎�@� s�Ì~5$A�B��砨����G����֧����>��҂���j��u�DVF$��<⪝މn5�p;�q�z�0�q�Lb��Ԡw�����i9C��l�8��b�k4��^{�6�$y�<u5@����Z67{Ss84��L���[�R1�t�^th���������J�Y��n���.nb_�y��֓���S���7l�i�W+��iC)l����sm�� �L�*��oY��{�[�=3����b+K�n���XX��+���? ȹ�!VhњBǀ�b����]��|��Q.�8�fϡ�L�u %����0,�� ױK!���V%M=��R��Y q�29f��z�����'�D��܌j`��������� ?� ���j��Ua�l��I9�g(�эOz)/��MV�j"���6��6��e�=�q]_�t����{�(f���g.W�_n�kD��N����,Q��7��=꾨f��[�XͪȄ���t��կ�/N�Q���L!k'vP�lj��(%{ �}���p1ߚ��[�o�?Mux��g����Mj[�9��Q��>�,����26 �|��Q�'�����n�n~����Y�[��:r�4��ZuT��)�9�`kk{x�#%�A���j�t�ʹV��fh���(���Vp��/0g=?�t�D��<�|El�f�%v��^�xO�}���kxa,��.=��OZ�]�|.-�`���%�e�TQ���j�X����^f'5�c*Zsvc�KDcͦ�[�jcV��ћ�k���Oa�*{�H�%�����[۔�'��5�U�N�h��:���w� �M�l`�c��m�n/S�����6��`:�䃊�JS����Zb��:�k����t���j�'BYc�'$����Q�rPyjy%�J���EYk-��L.~�J�m>� �g,2FI'���F��@��?��sb��!���$g�v��8�l\(��ԣ����ݟ/��ȿv�~a4���)1�S�<��a�#0k�]���S�ʬ�FPqV�u&��%JO����f��C��]����U�.��c�Ӆ�0�VT3d�v�ZI9���_K��E/t��osV9OcX�S�#�8���!Fz㡫1�>��^�h����߭O�8>����㊳�����j�)3H�ՆQ�S�'�e�/�0����z��W4N�>G��R#c����ɒ:T�^��B)Cs�x8��U����H� u�Z�Hd���x��@�~���Jz�� Pǜ�9�!�p9�ᚉO"�<��ց�x�������n������8<���4�;�Rq���������kP�yuk3����1 �y�����ڸ<��O2�ۢ�b(@dw#j��G���-6�y~�-ʼ���J4��ލW�* ��~��ߵ��[y6�d���t`B[��L���m����c*�F���G��@���� q����*�*�����#q4�<J"I-+cp��ap9猲��ZIs\!�d!�6¨nz��~�yo5XB#�1�WS��2͔�)���h�I#�'�5np�����d>E�Gzc�p��w2��!��+q����� 1ȶ���pFNŷ�c�,���p�n茶d���u!u4 ��(��卿��@�]�϶OQ���f[�'��Q�0!C�GB�ԀOL`O��]ӽ�������:_��I.�Dv�,�o�*�˅�;�\00��<rF�!���ɵ�e�XM۰Hn'�sVOK{x�����>坃!�\���_��g'�n��4�|�T[�24�fP�1�3�Hd�'�S���P�܊��a`�ZY�d�;���pU9?6�q�Nk�~���H�r�庢�*��Rx.۳�����ſ�^��.ӿ�\�Si�ݷ��1�w@a��*�Tn�u�a-݉r.�*~`=�t�T���������0�S��N��,CSӭ���&�[k}��������*ņ����y��K��ܼ>k���u�%��a��* v��ym%�%�� b>t#�����q�<t���Mn�O����n_dhQ�������)f��1q�����ũ+Y��"ڬVf8��� ���q�E��e�!��@?tവ����D�X���8�̎�s�$F�3ul}�`d��q�=.+i�<3HP4� ��2��%A�k��X��j�[N@*^��H$T���vVL����)Տ-�N,MWJ��kK�&Kk����I�`���6X��@�G�em� �5K]-d�[w��67�L�I���0�������i�Y&K��-K#y�Y�E�F�ʂ�f8�''�V���g���z�v��Y;Imp��:a�����Yy݁��Δ�����,����]S^��ɛJ�W_���|s�k��g,m��� [��m�ؠ� �[ �eARG's�A�����-�=�N�ԱbX�1����S�$�����&��%�|!e�h��J���f�`,YK�Bw�y#���M��?Y��&�cl�&9������P �I�c�B+٫Bi��S�-��zjJ����g�_���7:ı�Go�7SYK2��o�.w��m��q���N�Wj�y��B�fE�$��8�����������5����1�;�ao�����p1ߥy���=z��+��ۨ�� g����02H�#9>���~ҋ�N2I=�m|����_��'v�k�}/aX.a�%���� ����9�s���;x��+���|a��|@�f� �f���&Q�W[ir!�vn;OZ��*��2\=����.�*�2|�˸�$����b�b�o<=ս�NQ~�(��eC30R[��Fp��sQ�R�������I)hy}����âo��-���ز���t��p�$�"AO�F��^�?��4�Z���Ҭi)�6�Q�R73"�*HS��'�u�+�����>��֩�w����;In�Ձ%���䏔pv�د%������қ�> ��ѕ$1�[E���Z���gv2�nW �n��oB�j���OH��+i��_������ ަ��Ǩ����."�nt���햯�*�F����1�#X ��&������G)2�m������#�<f�#�!��^�I���5핂^I��NXc�<�I���������^���Zo����V�?X�/� F�K��H�1*b�G�*v�F@8=�F�r�W����ߓۥ�L����,�>է�H]bkhq�*2 l�dne��M@%��[���ȱ0�dH��������2U����9:wB�M2��� Dw��q_%�(;wI�8�Ԋ�=��[���B�\�X��.H�u��u������I������$��fH�3c�A����mu�A+�ji�P-��c-�H��8b�zyC!C`q��N+z >��-�����`�$i���NM�FFXm��5Bܬ���_i�<�>��b�bp@$�3���X�k�_������4�.f�cHܐ�%��ٓq FrF�z��9��T��O�k;�~���w1�ke��s�+� �����-1�$�@g�\�����S��:�(�Z��ء�I�v����Y2q�d������ j�����1=�9�n��r��;�sdca������ӂ8�������5X�es H]e���/�>�����uu������>sn��x<e{㝫�ީGf�Io�F����+�+>�A�<rk7U'o��>�[In�����D��2Ko&�� 'i d���#����,�D�������W 9��`j).�nQ�6�{���rS�꼒ʀ���2H�9_Q����o2in�T�ͨL3|��G�8��b��Ke��q��i2�p҅�8I"ȱW?&�P�ĥs���1���l����xg�r��(&Da��q�B/C�}?~�*�����V;F*�0�!�0;[p�s��uV���2-��u��"��0�O�� vW��z�*�baZ��'t���zz���fO-������$�n.ʖA���u��Q�g���"[�,~t_�'����ӌ�l�cu����f�I�����p|���T�Z�5�Kkueiuqi!�1$J�%��Ӏy^��G��RW�����e�G%�S�r�Wm�m�2�팜,y�@�N�$�N%�g���o�I��*J����3�������oy�_Z�Inf��E��lp��W��^HSЍ�5v�+,�:���K;�LO�*�O*H �g�$Ҍ�����������]�[Z��ِEm�Pp��)b�w����M����Xo-Z�g��]�.�{���]-�Zm�6�<q���b\<Ь�LeN���s�u$�8�ՒF�eI���=Ēā�\�����s�R��w������R��`l�O��`�^Hd�dA�Y��#F��jƉ=����P3Eù�eWWwt!�t빲sVSQ-��ƞ`}�f �1��ː=�2�#�&�oi5��[#G#rU�vn�F7A껿 &.<�ֿ����e���[�KSA�����ےx,FF ��gj��u�E<\7���#+ �Pw�Pp��1��U�{�.�u�� [ݿ�%��b9另1�x${[���p��n�9�b�p�2I�q��(��yW����e�JVf[{Evk�%�+�u,_h�<3S�K��~��t�H.��{{���D�'*��O;N�3�Òz֦�Bq�=�\Ƴ9��l &�V��G�aֳm���Ö� �M�DXɜ6��`�:}i<C����b�{�� ���^;�.'��[6�\��hq岰��Ra� ��_�����N��k�h��C�l�d$�-�,�A�g���60}�I�D0ܲ��)��|s�rZ6����qM�&�,�Ku�i�T&y$�\�%P��*���(�����(O���є�ٟ����q��&�y[D�F�%I$�c���V]��Nҥ�i�#�`x���K�����n��ZC�F1r�VB�Tr�m*�������!{�]I���g��JN[nHH'�=+���-Y�>��rV�Y^�۳F���as�O8�;����R ���Y7`�ml�zdv��ri��$D���������i�l�V�_H�������85���dSx��\C�nT�'�Gѱ�AL����UT[��1� �g�����l�ڲ:��ۃ�F~����˸��6�g��(<�������jK���ᵋ{�.?�9$���$p)�E�C�i�2[][�x����Wc�X��̶{L�p�8�@q��Yqh�fIR�nr��i�#�j�&��i���<<�+����H��$��^�+lԣ$�a'���W��7V���pA�����Ӯ�O=����3�5\:c�O���fo�j� �W�g$w ��OC�5���:����an�+�_�}�N����Ϫ.�^"F7ޠ1��w5sF��Utuua뚒��(_�~o�̥{O��g|��Td�@% xϽfj��d@z�ٸ�!��s�W1]���9�RWn�G7�$����=�ռ���H�뚽�Y� �`�۽bH�Eq��擊��eې �1�?:��J�4R,J08�9��+��v8;�r9���y�N��iJJM8(t�A.�����#9�hP��U��G�q�R����}������;[|F����ף��|RID4: �#F �h=U+��X��@=W�q�!��f�����S\����#%�^�v��u5�$�4���#�����䀒���&�y��;=����z�¹K9d���|�zm�s�W�P���@U�L�1�~��<�4�!)\���,�2C�������0i�4Ѩ��1A�t�+c@�ʿi�mYF3��������Қ�v�~�����t��kDCWL��I{�{�kp����c�^��=^K^���6H'�TzO����9�7�1�W��+ �E�W*����3\-���B��e6�n�[�n��� �;;��!��B���0����E�m�F�"p1�WQ�h6��P2{�6�uB��bu$��zo��Ei�� ���]��|�ƙkq#�9��\��D���*�r�O݀�x�slV!�)���klP�<7mi"Q�9�[@R5�-��Ic�UKnp� ��Ք[MjR�,G��?Ju�G���U�.R4 7'�V]��Q���rMJ���U�3R+����< u��H����k������:*�rwW������cƷ>k�C���y&3nX�cV�:z�����p�"�g9�X��aY,�7��5�'�>/_]��=�¤�����/|_K-em5��X���ހ����~U�tx���MZ�x8� �IЃ�G��#�n%a����RF��}�7,Ğ �cwo{d�V���J��H�*F;ƭ#.xc=G5��ӣ�cf����|U�b�J\�Ȟ(�A��=I�J���}��*���I�^x��J�3���52M�x���'r�0 �݀����$z�2�c�4�'n3�Gs�V2�i�����pjx� r0>¨+�$�9�Ԫ�1�Ӿk=b�tFf�3��j ��9<��dr_��X�^}�GJ����ћ)0���9&�E!���!������1M�Q�5�a��p�?�� 8��Đ9T�H�u�w�j�+��HՉ���jx�'��z�I>oN��f)W=G�ҽ������g�V"�����TR�oj��p �Q�i����Ա���)=rN�q�W�N�e�U�=��x�z�����{Ա����]1�ƙaX����'�5 1���9�Wq����W-㫓����M]2�y��\w�@?�����e���j���u���N�Q��ۋYl�����M��?)���R�j֚A�Fh�}��o\�,,y,r���Y�����&Gf@7F�!2r`k;\ ��ċ8�d��8��_�J0��������Țe��]#�0�<��!a�wd�6�guf��)��$��Y-�l���˒�����o�$�/�^VlDn����2�z�֞R��̈�A�u.�l�_�(ϼ�y-&{cW2ʰ<H3��c���rzf��8~!�,%(�.Y��V!��;�\c�Z�b��Ķ奔��� \s����#Q������!H�lX�͚��z6�����VeK;מ�I �k¯�[�Ut<pArH�p8"��f����I#� �� '�nU�z`u��IZE��٬&�1�%I�P~��2D����L�2�`*K��$t��b��������=��n��+}?Mxm����lE*��X�[k�;�Vs�W0Z�#Gwko�32� i���c���?�cޮ]E�id���I�*�|����^��6hchm[e�`�p�R};c����������+Z�4���od�2̫���Fa�pI�H�K�$��[���-�ќg���L���;[�o8��H8F8��K�!6W�Go�'i�ל���7������ȷ}�Zj�\�j�WS̛^i�&�`�����#�\忂4��D���ؒ�8�,�'<z�;���b���M���$,��\�|}�;�j��?�%{�R�,����C���t����� n;3���-��jP��Uf��N��ʌ���P1�����&�f��O�)����)bx|�k�ݷmea�県�ֺ�d�~�ɖ�#i8�ϯ�]�uk��b�Č�{@*ܖ抔*I%��*S��Z����+5$�g����)��>xI���-ٷTu����&�?TҾ%x�V[���ܱ�x���؎�q����|W6���s�X[�Еx�h�����⋝C@�"��vb���Csӷ�{��HQ�U9=qI��O�B�/g����ݏ��~�~4�n��_���Y�����������p~n��{��|?ៃ��b�Mմ+[�9��n$�\�y��$�:O�a���_����|q~������*��#�v����Ū5݆��I���Q���w�jT��Z���u{rzY5/���Ir5o+�����y{�_�ڗ�|7��M���-��W�,�>�����Fqڼ����3� ������U��ȨA��xǥt>Ѵ?|��WZd����Ǿ�CV|���� �~Š�;#�.'����ҼJ��`��(�]9^�wiݧ�� ��n�z|��v���è[�I~��e����`EP� ��5��Saa�^@��ƣ`��ňe*U���5= ����d�~y^x��K�J��frZ2�?v��ӭq?�E�������w<{�Vv�n�}e�jZ^����x�%��m���%��T�NW����ҵ{[����?[��t���8���FӇ�`�s��q]���m/!k�v%9�$�'#�28�ҹ}{U�5��6�u%��4�m�.�9�䩏��#�\��崣����z|�_�]"����S���y��\jז�y3 .a�ϖ����|���jӝ���'��H��ndS���\r=���?��-�էק�d�k���-�0G8Br3��y���>0��f���ѵ�L0�N�D���sמGsֱU*�EE�����mޡ(-�D�!��e��]��a�~2�OΒ+y�D��f�iD�P�o�O�V%Ƴ>�'�ַ�8��|�C��^�I��±K�8c�>�.�#d��fO,���.��6��S�m�Ʊ��!Gu퓞? Ž�N����kK�R�#��5�ۑwTz`��J��j7���A!c7)�C�O�W��6SYk��^ڥ�J�.��sc���+��4��/����.\a)E�=?I]P{v���,�KM�(�9���T�v�&�f[��;��j`����@p:���5{] ?���ԴBd�k�2 ���Q֮��vq�}�S����,�-�7��vbpX�t[�?z۵�;����s(ԃ�����x���w���.�����K�tzr8���@�%���w �"���)�+�����5���M1��{��ՠo1nY�a�q�ٯ<�ǽO�!Ӵ�(�\f7�/�I���R ��Q��)�.�R_z���3Y�_MOm�Dzki�$������npO��W�|I�Jxkím��Y�i��~�&=H��������Oj�}�O���xʈ���z�Ҳ4����U�}J[y I���g���ya�q���AKUի5K��G��+�)O�����o�Cx��K�Q��|�+c�=�Mw�wm&��o���eX��=��G�k�>�;O�>�.��Rj:��/�w4�Ѕ�q����mk}��z��wgc+�3�XBx�K@=8'�g����*PM�]lڿv����⤣}K���9/�7�E��.�m����>���2F����1@�L�O �px�kI-�����)�����n�5�ƣ��-]�s���zt���5� ѧ$�������� ���%d2�YG��꧰�c��U���)�VH� � ��"��2t�eu$=���MM{4ot�\D�IX0�ߎ 7V���z����sl�������'���7O�SCs~�J~����6}���ޙ{^F�ܔ�V�]s��?I-��bSu `��3��~u���4�U�����j�<nA��-�H�y��}Ҡ�NjΧ:��4��W��J�9�r��jȎi�Kr�$@M��?�Zm䖐lC3��7�M�c���\��P�n���_�+��%�Q�c��d�rW.�:�0:qY��4:�Cnm�)6�Y�l�?\j������\ؽ���`P�w�G^��)�����u��WC�;��QUU�7ˢ������*;�6��2Om�_1[���{�8=z�Ҥ��Yl��2V3��@��$����F�s�C��β��T��FSԷ���*�j�|W/��[�lr1��ׅ������o!8��Kmyk�K�sEn�v�3�i���\W���j�}���S�����U���}k���i%�wrY|���sӜ�B�R;8է�k�܆x�����UI�J�[]������>7���^�nn.l즹������99����י�~���HWg��eFy�����o��j7|3�#�'���=>�?�����[�59��#f� e�1�c���5��?*�t�>�®IsC~njI'R"%Ԍ��������fKiKcj�z�֮�14SbX�JF ����������eIp������w<�EE� ��C�e�eVl�� �}�-n7��B3��0�ԓ�Z,k����������������Z%��ͽn�+��T��J�̼`��r�,��n������N�G<"��u�#����Rm��bB���F��Ƿ~�e�/��u�]m����� _^xS����sE*:�m9W�q&�]�2gq�{���_�/j>��OԦ�m06�Ųa��u�θ��)c��85j�WO3��c��U3�K�q*��{��q���f�Ŷ:�յ�H�( ���O,iqA��_�R��0=�e�������Õ��=�ݜsm8�z֍���v����둃���fU�� Q��s����E����O��ƌYY��`zW��� Fzt�o�::�.�pq��R4j/h4��O����h��`"�ߍr�!��9�" �3<נx��r0| *�$2�>��ׂ�)%+ H�R�f�G�+`'�H¤g�.|Enn��,G�_ӵA?�����@�'��銂�ᾮn�4�7ǧ�+����$���rܐwb19f<Υ�2J��4���/��oă�x+���G�����$� ���[c�;b� 'A�4c������o�A n�:�E����D���֭����W'=MvqX${F�>���#����_5_4��KCD`�� ���Gs�Զ��C�c��n%Q+�� ���A=�:�=Z���#��ܪ1���4`'{zT�h�$ ����+�Z�`d{�JVj�rG�H'ރ*G���zW9�x����.�q�$���i���{m�5�C,��]�������-cU��H�\ޥ� V�2�_Z��o�B�b<�3����şuK�[̺}���l �\��1�u�<���zE��Mx���d�E��Ns^S�_������b/f'$ׅ^�7��z�<�J��ɯ���;��q��<���"���N�Ğ>�5Y���L����r�쭆s����7=)�>O���_OK F��by�r����++��rO<��;�0�T�ezc�N�����5��fN ���/��U��αv̖��>��k�x�I�>�.���X/�a<2L~�z��6 q������GA�#�ӮLr��g����#��Nq�}���e�Ƶ�Q�������}��$����8���r{q�s\�?��%�[]m��@7#�=�wa�WwL��_��up�:���G� �MZKu��!�~$N��m���]I#���pb�<�\m�E��\�'�?z��2??��UW�pq�Ԫ����5��:#2�lv�21�5"I���j�d�X�}*Bǒp�eM�PЊQ����9�\��$sϵd$�n��X�L�'NkZU�tFf�Lx<sϵY�Q�U�k9J�ry5n@ �E{Xlbf���K��ҬG(u����$�OJ���g�{�1F�F�2��J���YI'o�5f)P;r=+���sE#R)09�*�R{�\R�A�V"�����^�Jf����=852>x����=j�r���{zשJ��w/���w�# �R'�j�7�H����&Z����ڹ�`6��{�����#�zW)��u�����MS�~�׃�!�7^Z?�ʫaK1+�}��4��?g�(�VL=�=���)RF?�W�M�,��p�;�c5�ci�ş{n�����ʎ���a��oҫ��Ag�#Ʊ�6�o=?�%�ф� B�GT2^�v[�nn���VJ��_�Ȼ�I=�7�\��ǭCy*ц������\S�F��;�q��A֒�ф�HU�>\s�f������4oa$ASi\`���Il�QF�ʃ/"+s�^�V��I�@����.Z����:i$�� ?v�s��������ݐۅd���,�@1���Ԓ$�%�-1 �'a� zƠ����%�����j[���xa�CƑaH#�ۥKi���5LM>2��-�����O�U�Hl��k��i�#��I ��柪$�g�(;;�О��q����*"��8�Pړ���{kq�e���7)T� ��,�mG��3�Ϸ�S[<�\�2 �Ө'�T��X�2G)f�`z���qu�"6��� �*G9������������O���}?1V.����=[�*!��<h~e�V��qObn�%��d�I*$�k`r��Ҵ|-ᵈ�����f*�B_1`J��������2$!�G�5�'��J0�A�+5f���l�Q|���F|>����%��$K0��3s!S�v���w�߳lv�Cw�.�����۔��~�z��6��=J=ua��lIa7^0@���o|S��A��Ak =��d���`+��b���B�Z�Qv�i�ה��勲�|ދ�5��{]>�(lckx�HX�8 ���� ��K`�H��n��q^\֟�K��]Co��� >� ���?�����\�>E����b���S�i�K��p�5~���z%_>D�p~�Z�����7��G�ˉb�e���r���fev��\n9�~y5�Ꮓ6�����I5�����qְ��b��q^n���;B�_<��X�sx�������L晩XZ<QEx�qH�����LJ�-M�.ke�yc|����g��h�dutN���[<<�*�����1��5x=4�<;��-%�!��Mr�q�s��XkMOĚ��p��i�7� �E³0���ϰ�<W�9��Yv;���5���i�����w7l\v�=��u��nn�>����_a�����;�8�@�;z�B�ks��x�1�Gןΰ�O��Hl-��r��RH犁u�Z?��,!��K���<�;cޣ�M�ˠ���c�KC"�� �1�ު>���H�rs��>nj��ͩ��vV ���=��p��r�ִ�������q}Ĥ�����2���Ί_��Q�>�+�i��$�Q�i������1?N+Ԭ�7��I+�����jD���n��9��۟Ό,V_�T0�ɸ���I����/K��ӝgR�4�ϒ��q(�S��([��I����_J�/��������\��g̱8������5��-���4�4�9M�S�eN6������^�\�+���+�Wrce'��c]P�[٤��/��y�_�Ҥ�.X���Wƾ�D�J��WW L��=�AY|a�[e��C��N�n�#�ޭ|B�<��s~f�[¿�#�[����\*匒'�N��%9�j�y������e�Z���<#�v��<c�X=ߛ�U�.���9��W־$xF]6����\Ŷ\FP�ߎ�Ͼ��xFؔ��=� O�zW�O��&Ye�jg*8�k��ͤ�<���kG�[��|�� ���2[�o�e�ۄ�]����@z��^����W�D~\�&�9$!���}k��W^"��[H%����HМ��ֽ����u/ ��ʑ)�9�O��a�)Gnw����k-N�M� �ޡqbG?*�`7'�ַ���{d��Ѱ��'����f��hc�g�d���~�Z��xr�+�$7H ��k��I;��%�lkV�\�����ݧ��x��K���ZI&R��B�������z?jMs����9�'_cT�����I���n �=�D�K�Q����jz&u�i�Y�0 ��1�����[�N��v�D���z3XsZk�1$dF�d�/��u��o�K�|n*J��W�-8�R��3��m�7H�9��� n���=�J/�ހ���^��b�zg�n��U�s�jė�io��c�~��1K����/��D�92�� ��������uS����'�oʪ�^#�K�X�F8��d���Zn�m%��52�O�Z�N6�D٭�p�R�Ļcs�^�3�S��o<v�\}�9�۴�1����5�ղ]����r?ýW���]��P���sӞG*�Z?��m�aqk=���)��s�}�:��xn�S�e��Yx!@FI�{�?�m��y�y#B�=�Z�m �^4�Yb�H����U����]���?�E"I%�2}��wĹ�=ǯ_����$Ѧ�o�Wl�G]ˌs_��L�-�8��Q�:��^Q�O����^LB��8篾k��N$��J�%�wFU���|v��3�I=*A��B}�����4I�B�U'��s.〬��S�_�R�ӭ8;�x�(J��d�S�+=�llۥJ�%�0�I���)��D�� �پ�n����1I^�I���2z��I���'"��w!�;R[���[�T�*�oS���M���G<�Z{7��Tz���'ĝ+�:DWVw*ᗑ�A�>���1`w�=���s��S���w�t�"c�ع����_ļ%�ͩ��\�{���3��c�7�?��?I#�+��9����@~���(i�%�"�9��<d��~��e�w9�6�,nM��9���=�EM]��w�� �N��Xry�WK-����+>��L|�c�ֽ<=|>27�������*9��\�G��]pTc�J�-''�z �+ ���cF�^�� K�����eq��jѶ�!G�сZ�(��Α�T�����N����*�H���b�۳�N���w/�.�H�9�F����V���m̓��0pH�_��8�� ���c]�Ť��z�꧃��v�X����5Kx�F}�T�,0e����x>0ivFM�>c琵�^2���^����T�M}>[���M�Ց�[B��-O��C�"��X��;��/��x��e�=s�|�x���V2O#��Շu}<�[��.�|J��<����5c�<W�kW���hǢ�k�ռKyw)w�ܞ�sXD�����>]�ëS�G�V�Z�ߕɧ��bK��$�'�/j:WjIld/J(�)8��N\�z �&����*1�9��m#�;piT�ұ6,`�����jnp M��ҥ�M-3P���Iᙣ�3�u8"���_ŏ1��u���*M� ��Ҽ��4~dm�O�5�cp1p䨏3���G��Kf�_�<����w�B�F��rj��FWp�N��<WΟ ~$�iGi���[��HܲC�^�j�Z�����Hu�5��e����]c���N�|�������~f�=NG=�y���v2{�{~�Z6\m99?�= ǦF9�Ę̲���P�qS+�s��}*��n��1�}�@�0ea�����o��gb�N01��SDHL�NI�T��=s���i���9�ұ� �2�R�x��X�r�ߥg�=}zԈ�Q���L\��s�36`�����U�f9'5��0xU��\�q�A�9�^��f�F�R�=��Hs�s�MeC(�8ϭY�^�8=+�0����jG&:�Y�^1�ҲⓏ��X��f���X�ԎC����֬�'���\r�ۑ��� s�N+ڡ�O������< ��ݺ�L2��=*���<w�Z�3U+�H���k���gV���`?�&��_>���<jO��x#�o���+T�3��S�o�F�'i���5��q&K ��u��2��BW���Y�M��:W��luuZ���}��+��#Uu`dF<���Ck��G9<栞�InT�y#�_z0�ϓ���]MF��ɚ8F��pW��LD��p�Ny��R\�\8ʧL���Җ�UVY<��J�~�5ewk �")�%%u=�A)��_�}�A秱55��I3��u�Z?)���Tu���N�a�����P��ׯj���^nTܘ�O�H�n�����/{F�cp�$ܖ��}�n�@9Xԃ���5�es#+��b�Iu*�^s��P�L�6\`�:�4�%=���.��������Ԟp7BS����j�Vq�)wv`=��Z���%H�8ɨ�)5� �H�k{�0e`à?Ҧ����E[$��S��d�,�{�^� ��������}����er��2��%��"����n�^����8�RM:���wL��kHI��-X,�[�R ?Q��MG��r�矔g8��|�a��84�D���b3�G���M�E�ɦ�"��� n��]����䟥V4�$non�5����!q~��78]�©W��Q�"|�ow�����U�c_�փ-����<�u�� >���ZO�<'�[��}v"��v��L��ֽ?ƿ<;�D �K!U����|��[��:�gXi�oh[�QQ�Ӂɮ���E�by��\ZV���:q��j��]nt�?h��B��m��]\��$�ߡ�ҟ�=x����Y�2��������8��R�5}~��[�����<�^����6z�Z2��D�DEpq��N�3R�ӗ�IY[��_������_#i�cݽH Z��{���&蘭�Y�ik]G;B7y�t��k�k�udpA9#<�V�\4�9�v*5cQsD��Aᘅ�ç;$m�0�� �+��4}~�yc�X-� a�e�z����۫aS�NH��;�1^]��T�ǭx�0���Z�B�����5�=6�t�p�����I��'�w6� $xm�;����@��e�F�Y�-�)�z�Gon$X�)Ek\3t����be�3�v1!���SX��#��tҪC{��n��x�����>�뽻��3�ԴYm��.7��?tצ|?�<3��k�>����ʳ(fC����i��z����6->M)�,b]���=;V92�`�: 5(�6�7k>�v��-)�Wm>��O�\�|��o��#F�IJ�#'�sҼ#�5��Yl�㼜$(s�O�+ڼY�'P�Z�P���I9"��߀�+d�$v�ѱ��js�N�IT��%�ɫ/���GU(҄�������<P�)�kkv�grX�\����>Mz�˪^���Ux��^���ڈ!�^�>�ˋ�K(�3r;X�\CvRQ_�_������^���ᾇ�`b���2H\�+���Dr� �G�ָ�x���YE�p���,��l-�[�&Ǯ��VJ7mA6�Ϳ�6����z��co8Pʌ��I�e���7C9ɯ�e�/��P�t�6w ���;G�}k�~i>-C�[�4Q��$���sҺ�k���_��-Ҵos�Xy0mRrG��j��RH7v���Z@�E�rw�55�ܩ�c=zS�.md�3��q5ʣ$�#'L�֘�A,;^2 kCP̌m�֘Ȣ���l` ӕF6�+����>��݂H�=i�z��Z1��:��Z�6����K�{N�5�n�,+��Ir�%s>�+u�)���P��{{ⰵ\��,2�����5�]�*��\w�iVY�L���aS N���*5$�?M�+q���'%�{b��i:��bv�����ze�1Gb���UFQ��wn��K+ܥU����T�\�����?�A���oe��_�T��;�z��)H���Z��-01�9�9�A�X�*���W=���aCKjͼ�s<�j8�4ה��23���1^��h�OI$AC��{t�:����ơ�N���xJ���ԍ�x��o����p�r� ��}� ���w�/t���a��0k��� +�D~XQ��k��?Ý3R��e��P������d��#�Q7T�*Ǖ�It��ct$��4зB�^��c�uż��i�J����^#��U�Gq����3�`��R�={&#^�K�䋷�>�S$U�>��f��.0w� #�r�{!�gٜ��tiL���P1֣.��֨���������Sd���!�m[Ú�_�7F��z�����?�q�ݿ�x���J��;��1���X����+��-'he��:b���p�����3���.�T~�hzŽݺ�r�h��˜�1_�$��o����_ $kǟ_�W��S㿇�XŪA��Wṯf� �� ǣG���P�� �v�c< κtQ�r+���.�p�K�Xc�Tw>6�e�^��W-Y�5�����s���ULn��=OY��&1�\o�|weD���Z��K �yT��9�w/�1��'R�JQ��=w_l�Nz���?�-U�.C78Pk�|[�k��}�L=�+����F}�I�_�e�B :��V#5�t���-��sp]-O����8�����e썞��K��e���U7[�ך�\O�ëB(�+c�U��\��g��X�<�ǖ4���Bzьb�G܊ ₸4b��<��;R�I�h�4��\P�8�A������ SUMM�x,�|��y�"BO9��Fo�*�(��Mc)��!�����Yh��8���@ʎi댁�FzV�ށ�,v�. 6+��m�S×;=Ŧrb���_�N�6�'��K��R�,01���1��q���R����8�#� �:6����G � ��Z��G<t�q_��iS-��,@.�8?�{����ӔH�dۃ��W��# ���9]~G���U4�a����r�H__aOV�P:t&��t��>�d�h�;d�G�UWR29�}*"�R*QwL���t��5f�2±'�¦�رQ��~�N7=�:�5">��5��&���O'#�L�?��R�`~��A�T��<�u�SDā�'���S�ΈT-��cwA��ju�`����J�#��ڤW���s�V../C�5 (fn9���r)x�q�X�˂O�1S�.�N9�]Tq2���36�qU���==��_\�����J�G#�Oƽ�.2��H�Iz�銳����㐑��Y�B[{C��)�����P�=k&)xO�Y�\+���T�h%8�5����c��~���/;�c��E�ЏwB:�s^���;�2�Tk�5��������^������u7n����^ p�%8����ֺ���m��"��;���ܗly�z{��t������`����Z?F�Z5R����Ixd�R���:r*[p&.�^�f���d<���}@7�����2�� ���)?U� q�]�������M*[��Q���V+���$p;S&S9 &��Ek�I��ie�� �T(�4��<�֮ (T0��"��]��x��j�ùZU�11d��8K2Ās�qWc@#P�T����}� ���u�q��.Il!{RҜ��9�*�r�b��3�u��$8���>��3.���֎2qHZ�3�PO�wu��18��ۣ�m ��}���y�.��9�j�ME��e�$����9�����*F=��V\�������>�EJ�QܘNe!NAG�I��1�ð�s�ʠ�dc✲���y���KK�;��:ԭ2y@�U�z�^:i�c�=kMR�V'��㛌�ϯjѹ����3�ySިۺ�~N9sRG!����zӧ.D��%r������!�z`W)5���j���5�$ci5?�< �Cn'�dVp�ڵ��ã�,w1� &@��� Up�4����c/���k�O�O�Qr��t5�|O�g k�Zuьo�����e$���4ѥ��}3PCql匊pS=� _��w�&��Z�4�2�*�����MKT�[Q�f,���_�y�}M{��N5熧5R�Zߵ֟=0�8*��Xߋ�u�`G�Y]���[��:}H����kC��A_fX{���?�l��tWcoo�#Px���%R�*j�]-�v�����9`�)|�?{ڝ!(���9�c˶ң�Xo�>x�� �������.|�/�1�*���/�CJ�3|�\Wn��g"�V�-��c�iA�Ms;��-&��RYħ�F0+u����9���Q�084����xQǯ�N/�6[���D`Oʠd��錙;Q��>O�4����5�4��C���� ���0�u��})�%�@V'm��Fǡ�� !�r2G�]�$:�R�xq�/�.y�+��Iaqs�59n�K�Ynp�����K�Z��On���*���W��x���%�h��:�H����k�bz��R�{\D�o66#��b�f�n��E�_=�#ۥ܂8 �¾�<�h����Թ���}ۣ��������7Ή5���]y(���ݲ@�5��7ঃf�I,��@?��|͟^k�n�,,��@|V]����b%�D#���䮫TӲ�~�����h�Z�KH�b*"�508�7ֶ�S�B��>2��a� ��+��5����\զō��@���gN���J]ޟ��'-ϧ<5��k��n�$X�����x�F���b.�?,�����~5�~��3��tqo�i��<28ܣ�]w��O�m��gk�kݧW!�a�#^K��ٯC�k �q�L�VۼFp�[C"��;�ɮO@�lS8�X��A=+�K�4`���s^*�o�uY�/4Y9�l��2�?Ғ��e�;R�<���]�����E`�����i%������zgz��O��B���֊م�ZY@��7q�P5��ޤ�_Z�x�4��n�{���M��pps\uirI������ c�Tk�\�����4,"??~�����a"��IE��R��H���Uq�ry�E�Nq�g\��}i��d�V�6�ݚ`�-�f�B�J�qf#tl�0@54�cr��Q�Z\��!���(�=��j 멗�iV���8�W�|Y�W�l�;_��/Z��l.��n��;�.K�����+�T������_�5���C�x+Q�o+�RS��(�>���XƋ�+�Χf�<ѷ��s�|��;�ƹ�H�G�$_s�q1V�U�϶�q�l$$���y4�D��z�{h� `���Zw6�$�f��N��l��d&��U�V<�R��s�DT��{TQi�S�}�֭�o�'�WT�{b��Wm��+�siA�*��Dۢ�ԏC��f����6��O�j�RIjf�A�%���5o����xx�Ő.�z��S����q��c�lqֱ�(�g�F���{�h���\�%�|w��]֫�M�6G$���0�*x��ѷl�mO���FU#U�+�S\JĖ,O|�fC�ke�cc�7�}=pN?*�U`s:rF[K��zc�nZ��wn}�U�t=?*�J=qh��3M&��0'�aC��j�<�F�F�0 P@ӟZ{�`�@ �NS��J�"8�݀�ccڜ�1lU��dU�"��n+9T��l���������ŵ�g���F�(�G|qXKR�ٍ�b:�S����N{֒[l�x���S�0Xaf9���g��R�E��h�x�oo��� �xU��~�� ��Q��;5��7r1�j�A���Z�Բ���dx%���]/�-����xC�f���{�Z0�8�Z�_B�w��Z�0����� &� ��F@�?Ʋ~�}��R�(�Y;�)Ꮓ�VH��l��Xt���^��TG �������T�� ��U�*�D ����f��Cq�;��8�+�V���H�����+-�q��)-�p���;g�&��P��(�ߚ���Л�SR���e��R�0GZ���n����q�����a+�>��;?����iR�V�楷c�3��f浧�h[$�8+��5&�rOq�z��5�;���I��9�ֹi�h%)2`7/�k �����c��-��*�V_>����A\rs�ҟݑ��#��9�zf����I��l�rFe����l�>'��@-���q�����9#s1���ֲqGDf[F��t#����b~��ؚ����(|�ǜ���XJL&^�PQ��[����d��X�sc��㓒G<�uT�Λ7���y�3�s�*�Sp9�����8�8犻m?t�z�\ovl�lE 8��֭C!���Ʋb���= �PJ �������hd�r={�G�f#PLc�P�f�C!�}y�J��3�����x���_� ��0=����u��K$V��[K|Ѹ� x��C�<��Y�?^k���2_4����.!;W�����C�e���VK}z_U�B��_��������9-uKC�;���S�+�mn�~V�8a_'��(�Ȗ�eS�p9�߁����@��KC�@?w�q2��Ӹ���r���,�*����w�~���a�*iQ����! �Gw��(`��tˈ�P�y4��}�H��z�NgO0�������ppv*���*h�E-��Ңep����� �[��I�~�:��� ?��r)�A�E>r6T����G�0 �{1�2~��KpP�9�M�O�����N�c-�:�u�����YHN��zX��~a��{����dT�t�L%;�˷9�`8��A$l܃��j�����䓎�� 2a�<T��T�\��U k��bE�r =�4�}�)�Ia��T�Dv��ʺ�r6(�p�O28��r9�u�p:Tq'�p?:��'f2drc�OS�j[k�%��\�LE*�r;�)%�rx��p��ܗ���ೞs$��{�O�@* ��Gjk��i��{�!�Ѧ���.6�rj)>\ay�B)RNI��nb�%��\��R�$.��+�<�R�YF6��T�9�)�`�J�q�I�x>��V��$��|�u�MQ�F��\� ��(���z-�U08�,y`3�i��^q�y�T�5���c�H3L�(c��PB���֦`���`��U9�Fⵙ�Y�d*L��b;ict���{Q*!<q�e�����14�s[Eq'�"�P7��W6����`����nI.A�ʩj� <��Z��ख�Z�=��^;ֵL�6Q�<�'5�E����13Z����#?L�_U|(���q�=�rt�d�J��GL���6�V���ь��{�I<���MFN�k�����c��#�ϊ�5��2��n����s�Wy��_J�`P�ě}��|Y�xoU��GP"����8�-�<y�j�y:m�����_j��N���Q��{�D�I�7Z�u�iT,��+˾$�E�&H�4� "�I� �_��^;�o�@�y#$g�5�x[�}����A�����~��*8x�~��+�4K�j�?ጾ!��0�6�Ej�����4�,���:c5GD��(�T;V�IhT`c�k�S��u%^�2�["ݱh��pz�OK�I�G|U5�U+����;pF{ �I؞��o9��ު����#��Tb���{b��YI"�@��YK�Jz�a�l��U*AQ�t����;�,sZ1iѠ�H�z���)Q�ҷ�r���7] V�|�}@\{ՅӢq��OO�Cu�C�ι�γ�<Ok��~�St� &�qi`�Ͽ4�\+(E :W;�4뉌i@�-��7�|Ay��5�V��~�^Joz�P�UI�Oo3EJM]���qu�s���ո|��u�?��_-�*u���O�Q�Bb��Nkٌ1K��"��l�V��Ѐ�E���6�o��H���W�0�n����y��n� N� =ӊ��c%/�2[�V��f�[MF(wʸ�x:�R���R\-y���G���霊�4��:uտ�s������z�k�*��Y�?��O4�v�H�x��ỻ)�e���Ҿ��u�-F=�*8�<�W�|E����yj =T]yFu��?a_�]��.�yj|�{������T�%H��H�H�]��+�D;�=+�OGS��5�4�|�6p���X��-�A��q���+b�I;�كϺ�xg�W� ��Ǜ*3��A��CI��g���~�A�^�գH�\P 9 �2|ܩ ��S��|��zz?.>��n�X��@��ǭ1��:�u�\�,��ۭD�K�'"�2�� 2���D���zwzH���Z��z�21��$ �4�j��Im��A?�H��~��{+������)�`�[��=)RG����{t�-�ԃK8�kb82q��Vb�lr�G�g,K]JX{������d������;|7��ZZ�8* ����F����:+�a��52iS)ڪI��w�?�oop�[1����_�e���VPFpZ�q9�* �$�����{m"��R6l�5���#]ԥ ��I^������X��T�ܯZ��x�������;���x�_�g�+,���(�o�Ʒp�Yԅ#��k���� ����y�<gھ��A����U��m����^\�3�_�����M{�<�Þ��5_��w������0�1]ٰ�q�t튭u�B��F+íB�Is�vm�9Hu���P������9�n_�HC�=��-4Y1���ָ�R��V�L���x�W�&�����cҴ��ОWٸ��%�^5�g�T��^���=#�8ܳ�Tq�s��p���J��2�U����1�_��}}�U%f��6h����s2(ry�j��s�6qҪb�%����:ջ; D�Eڧ���Y���L��ǧQ���$�Ι1P��C��ֲ�P�����v]CIӨ�s��q`�- �09Ʃ']��{�i<�ܩ��#1\����e��N��;���1���]�&wõ�9����3�`�s�T��PI�Np Uw܍��x��F��۸ǥw��9ٖć�����K|ߎ; ���������99�x"��N�O�l1�9���*I���֪$�& ��nޕ$m�=OaYJ7�B�rl��0b)y���G<����R����׃X��T��m1�9� ��+)@�$���V��0���zX|c���27 �����Y���]�y����i�LN9�U/M��q��N;��h���z8����O����������G�E6�z�+�8��E��S��xG�x��k��p�G���7���W�`?���_��?�C�f�+�<#�v�k�����E~Yß�1�}#dT����W��p���G!i��ƣ��߅Uu���1TG��E��>�K/�����QZC�b�-?�N���QY��������&�+J[�?��ޤo��O�E�B�O� 2.��R��} �4��}h���I�����T����Eb2���W�Ҋ+>���b?���)/>�������z�*��_�O���=���["�,]V����QEl�Jܒ��)��4QR���?�ҧo��E�1��Xjo�g��E�� o�_�0����w���'���QE}��Ȯ��x���ס��ş�.���:���E��o��_�ϥ�������*�-z���E͕�Or���J�����(��ko-�i>�:O�Ɗ*�Ģ��J�F��(���K7������Z(��$r��W�J�5����h�����֙�^��q?�����ȵ�n��QEx�A��:h�ϕ5��M���U�s����4Q_�a>�]o�������� n��c��h��a�:�2t_�/��i�����E݈�G.dz߁��>����~4Q_ W���z���������g/����E}e/ᣥnʷ�p�kS�~��+���p�1�����S���Q^�����B�A�����QYȸ�Mq��� Q_��4QS �����i��h��! |� )�h�� z������h���*�5yՏ��4QXϡ�"h:7Ҷ4/��_��tQ\uv;h|g���=����k�|)�#�t#E���_3�{ލ�~�������J(�0��-Ʒ��*���袷��.�m���G���h��?�*\���Ӡ�ޢ���H�?w�_�Ɗ+g�"��ֲ�~���Ep�����7}G�QED����� �����m��}7�E�S�p�?��UjO��_Ɗ+˯�Dx����9-s�CR��G����ٍW�R�O���~��o����,?��?�QEWQ-�GU��VOc�=I���O�� ���G�¦���H���xU��ק��h��u�C���ު����r��Ez�>��z�� |
| URL | http://zero.webappsecurity.com/resources/js |
| Method | GET |
| Parameter | |
| Attack | TRACE, OPTIONS methods with 'Max-Forwards' header. TRACK method. |
| Evidence | |
| Request Header - size: 267 bytes. |
GET http://zero.webappsecurity.com/resources/js HTTP/1.1
Host: zero.webappsecurity.com User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0 Pragma: no-cache Cache-Control: no-cache Referer: http://zero.webappsecurity.com |
| Request Body - size: 0 bytes. |
|
| Response Header - size: 189 bytes. |
HTTP/1.1 302 Found
Date: Mon, 14 Mar 2022 07:21:07 GMT Server: Apache-Coyote/1.1 Access-Control-Allow-Origin: * Location: /resources/js/ Content-Length: 0 Content-Type: text/plain |
| Response Body - size: 0 bytes. |
|
| URL | http://zero.webappsecurity.com/resources/js/bootstrap.min.js |
| Method | GET |
| Parameter | |
| Attack | TRACE, OPTIONS methods with 'Max-Forwards' header. TRACK method. |
| Evidence | |
| Request Header - size: 284 bytes. |
GET http://zero.webappsecurity.com/resources/js/bootstrap.min.js HTTP/1.1
Host: zero.webappsecurity.com User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0 Pragma: no-cache Cache-Control: no-cache Referer: http://zero.webappsecurity.com |
| Request Body - size: 0 bytes. |
|
| Response Header - size: 361 bytes. |
HTTP/1.1 200 OK
Date: Mon, 14 Mar 2022 07:13:42 GMT Server: Apache-Coyote/1.1 Access-Control-Allow-Origin: * Accept-Ranges: bytes ETag: W/"26898-1358437290000" Last-Modified: Thu, 17 Jan 2013 15:41:30 GMT Cache-Control: max-age=2678400 Expires: Thu, 14 Apr 2022 07:13:43 GMT Content-Type: application/javascript;charset=UTF-8 Content-Length: 26898 |
| Response Body - size: 26,898 bytes. |
/**
* Bootstrap.js by @fat & @mdo * plugins: bootstrap-transition.js, bootstrap-modal.js, bootstrap-dropdown.js, bootstrap-scrollspy.js, bootstrap-tab.js, bootstrap-tooltip.js, bootstrap-popover.js, bootstrap-affix.js, bootstrap-alert.js, bootstrap-button.js, bootstrap-collapse.js, bootstrap-carousel.js, bootstrap-typeahead.js * Copyright 2012 Twitter, Inc. * http://www.apache.org/licenses/LICENSE-2.0.txt */ !function(a){a(function(){a.support.transition=function(){var a=function(){var a=document.createElement("bootstrap"),b={WebkitTransition:"webkitTransitionEnd",MozTransition:"transitionend",OTransition:"oTransitionEnd otransitionend",transition:"transitionend"},c;for(c in b)if(a.style[c]!==undefined)return b[c]}();return a&&{end:a}}()})}(window.jQuery),!function(a){var b=function(b,c){this.options=c,this.$element=a(b).delegate('[data-dismiss="modal"]',"click.dismiss.modal",a.proxy(this.hide,this)),this.options.remote&&this.$element.find(".modal-body").load(this.options.remote)};b.prototype={constructor:b,toggle:function(){return this[this.isShown?"hide":"show"]()},show:function(){var b=this,c=a.Event("show");this.$element.trigger(c);if(this.isShown||c.isDefaultPrevented())return;this.isShown=!0,this.escape(),this.backdrop(function(){var c=a.support.transition&&b.$element.hasClass("fade");b.$element.parent().length||b.$element.appendTo(document.body),b.$element.show(),c&&b.$element[0].offsetWidth,b.$element.addClass("in").attr("aria-hidden",!1),b.enforceFocus(),c?b.$element.one(a.support.transition.end,function(){b.$element.focus().trigger("shown")}):b.$element.focus().trigger("shown")})},hide:function(b){b&&b.preventDefault();var c=this;b=a.Event("hide"),this.$element.trigger(b);if(!this.isShown||b.isDefaultPrevented())return;this.isShown=!1,this.escape(),a(document).off("focusin.modal"),this.$element.removeClass("in").attr("aria-hidden",!0),a.support.transition&&this.$element.hasClass("fade")?this.hideWithTransition():this.hideModal()},enforceFocus:function(){var b=this;a(document).on("focusin.modal",function(a){b.$element[0]!==a.target&&!b.$element.has(a.target).length&&b.$element.focus()})},escape:function(){var a=this;this.isShown&&this.options.keyboard?this.$element.on("keyup.dismiss.modal",function(b){b.which==27&&a.hide()}):this.isShown||this.$element.off("keyup.dismiss.modal")},hideWithTransition:function(){var b=this,c=setTimeout(function(){b.$element.off(a.support.transition.end),b.hideModal()},500);this.$element.one(a.support.transition.end,function(){clearTimeout(c),b.hideModal()})},hideModal:function(a){this.$element.hide().trigger("hidden"),this.backdrop()},removeBackdrop:function(){this.$backdrop.remove(),this.$backdrop=null},backdrop:function(b){var c=this,d=this.$element.hasClass("fade")?"fade":"";if(this.isShown&&this.options.backdrop){var e=a.support.transition&&d;this.$backdrop=a('<div class="modal-backdrop '+d+'" />').appendTo(document.body),this.$backdrop.click(this.options.backdrop=="static"?a.proxy(this.$element[0].focus,this.$element[0]):a.proxy(this.hide,this)),e&&this.$backdrop[0].offsetWidth,this.$backdrop.addClass("in"),e?this.$backdrop.one(a.support.transition.end,b):b()}else!this.isShown&&this.$backdrop?(this.$backdrop.removeClass("in"),a.support.transition&&this.$element.hasClass("fade")?this.$backdrop.one(a.support.transition.end,a.proxy(this.removeBackdrop,this)):this.removeBackdrop()):b&&b()}};var c=a.fn.modal;a.fn.modal=function(c){return this.each(function(){var d=a(this),e=d.data("modal"),f=a.extend({},a.fn.modal.defaults,d.data(),typeof c=="object"&&c);e||d.data("modal",e=new b(this,f)),typeof c=="string"?e[c]():f.show&&e.show()})},a.fn.modal.defaults={backdrop:!0,keyboard:!0,show:!0},a.fn.modal.Constructor=b,a.fn.modal.noConflict=function(){return a.fn.modal=c,this},a(document).on("click.modal.data-api",'[data-toggle="modal"]',function(b){var c=a(this),d=c.attr("href"),e=a(c.attr("data-target")||d&&d.replace(/.*(?=#[^\s]+$)/,"")),f=e.data("modal")?"toggle":a.extend({remote:!/#/.test(d)&&d},e.data(),c.data());b.preventDefault(),e.modal(f).one("hide",function(){c.focus()})})}(window.jQuery),!function(a){function d(){a(b).each(function(){e(a(this)).removeClass("open")})}function e(b){var c=b.attr("data-target"),d;return c||(c=b.attr("href"),c=c&&/#/.test(c)&&c.replace(/.*(?=#[^\s]*$)/,"")),d=a(c),d.length||(d=b.parent()),d}var b="[data-toggle=dropdown]",c=function(b){var c=a(b).on("click.dropdown.data-api",this.toggle);a("html").on("click.dropdown.data-api",function(){c.parent().removeClass("open")})};c.prototype={constructor:c,toggle:function(b){var c=a(this),f,g;if(c.is(".disabled, :disabled"))return;return f=e(c),g=f.hasClass("open"),d(),g||f.toggleClass("open"),c.focus(),!1},keydown:function(b){var c,d,f,g,h,i;if(!/(38|40|27)/.test(b.keyCode))return;c=a(this),b.preventDefault(),b.stopPropagation();if(c.is(".disabled, :disabled"))return;g=e(c),h=g.hasClass("open");if(!h||h&&b.keyCode==27)return c.click();d=a("[role=menu] li:not(.divider):visible a",g);if(!d.length)return;i=d.index(d.filter(":focus")),b.keyCode==38&&i>0&&i--,b.keyCode==40&&i<d.length-1&&i++,~i||(i=0),d.eq(i).focus()}};var f=a.fn.dropdown;a.fn.dropdown=function(b){return this.each(function(){var d=a(this),e=d.data("dropdown");e||d.data("dropdown",e=new c(this)),typeof b=="string"&&e[b].call(d)})},a.fn.dropdown.Constructor=c,a.fn.dropdown.noConflict=function(){return a.fn.dropdown=f,this},a(document).on("click.dropdown.data-api touchstart.dropdown.data-api",d).on("click.dropdown touchstart.dropdown.data-api",".dropdown form",function(a){a.stopPropagation()}).on("touchstart.dropdown.data-api",".dropdown-menu",function(a){a.stopPropagation()}).on("click.dropdown.data-api touchstart.dropdown.data-api",b,c.prototype.toggle).on("keydown.dropdown.data-api touchstart.dropdown.data-api",b+", [role=menu]",c.prototype.keydown)}(window.jQuery),!function(a){function b(b,c){var d=a.proxy(this.process,this),e=a(b).is("body")?a(window):a(b),f;this.options=a.extend({},a.fn.scrollspy.defaults,c),this.$scrollElement=e.on("scroll.scroll-spy.data-api",d),this.selector=(this.options.target||(f=a(b).attr("href"))&&f.replace(/.*(?=#[^\s]+$)/,"")||"")+" .nav li > a",this.$body=a("body"),this.refresh(),this.process()}b.prototype={constructor:b,refresh:function(){var b=this,c;this.offsets=a([]),this.targets=a([]),c=this.$body.find(this.selector).map(function(){var c=a(this),d=c.data("target")||c.attr("href"),e=/^#\w/.test(d)&&a(d);return e&&e.length&&[[e.position().top+b.$scrollElement.scrollTop(),d]]||null}).sort(function(a,b){return a[0]-b[0]}).each(function(){b.offsets.push(this[0]),b.targets.push(this[1])})},process:function(){var a=this.$scrollElement.scrollTop()+this.options.offset,b=this.$scrollElement[0].scrollHeight||this.$body[0].scrollHeight,c=b-this.$scrollElement.height(),d=this.offsets,e=this.targets,f=this.activeTarget,g;if(a>=c)return f!=(g=e.last()[0])&&this.activate(g);for(g=d.length;g--;)f!=e[g]&&a>=d[g]&&(!d[g+1]||a<=d[g+1])&&this.activate(e[g])},activate:function(b){var c,d;this.activeTarget=b,a(this.selector).parent(".active").removeClass("active"),d=this.selector+'[data-target="'+b+'"],'+this.selector+'[href="'+b+'"]',c=a(d).parent("li").addClass("active"),c.parent(".dropdown-menu").length&&(c=c.closest("li.dropdown").addClass("active")),c.trigger("activate")}};var c=a.fn.scrollspy;a.fn.scrollspy=function(c){return this.each(function(){var d=a(this),e=d.data("scrollspy"),f=typeof c=="object"&&c;e||d.data("scrollspy",e=new b(this,f)),typeof c=="string"&&e[c]()})},a.fn.scrollspy.Constructor=b,a.fn.scrollspy.defaults={offset:10},a.fn.scrollspy.noConflict=function(){return a.fn.scrollspy=c,this},a(window).on("load",function(){a('[data-spy="scroll"]').each(function(){var b=a(this);b.scrollspy(b.data())})})}(window.jQuery),!function(a){var b=function(b){this.element=a(b)};b.prototype={constructor:b,show:function(){var b=this.element,c=b.closest("ul:not(.dropdown-menu)"),d=b.attr("data-target"),e,f,g;d||(d=b.attr("href"),d=d&&d.replace(/.*(?=#[^\s]*$)/,""));if(b.parent("li").hasClass("active"))return;e=c.find(".active:last a")[0],g=a.Event("show",{relatedTarget:e}),b.trigger(g);if(g.isDefaultPrevented())return;f=a(d),this.activate(b.parent("li"),c),this.activate(f,f.parent(),function(){b.trigger({type:"shown",relatedTarget:e})})},activate:function(b,c,d){function g(){e.removeClass("active").find("> .dropdown-menu > .active").removeClass("active"),b.addClass("active"),f?(b[0].offsetWidth,b.addClass("in")):b.removeClass("fade"),b.parent(".dropdown-menu")&&b.closest("li.dropdown").addClass("active"),d&&d()}var e=c.find("> .active"),f=d&&a.support.transition&&e.hasClass("fade");f?e.one(a.support.transition.end,g):g(),e.removeClass("in")}};var c=a.fn.tab;a.fn.tab=function(c){return this.each(function(){var d=a(this),e=d.data("tab");e||d.data("tab",e=new b(this)),typeof c=="string"&&e[c]()})},a.fn.tab.Constructor=b,a.fn.tab.noConflict=function(){return a.fn.tab=c,this},a(document).on("click.tab.data-api",'[data-toggle="tab"], [data-toggle="pill"]',function(b){b.preventDefault(),a(this).tab("show")})}(window.jQuery),!function(a){var b=function(a,b){this.init("tooltip",a,b)};b.prototype={constructor:b,init:function(b,c,d){var e,f;this.type=b,this.$element=a(c),this.options=this.getOptions(d),this.enabled=!0,this.options.trigger=="click"?this.$element.on("click."+this.type,this.options.selector,a.proxy(this.toggle,this)):this.options.trigger!="manual"&&(e=this.options.trigger=="hover"?"mouseenter":"focus",f=this.options.trigger=="hover"?"mouseleave":"blur",this.$element.on(e+"."+this.type,this.options.selector,a.proxy(this.enter,this)),this.$element.on(f+"."+this.type,this.options.selector,a.proxy(this.leave,this))),this.options.selector?this._options=a.extend({},this.options,{trigger:"manual",selector:""}):this.fixTitle()},getOptions:function(b){return b=a.extend({},a.fn[this.type].defaults,b,this.$element.data()),b.delay&&typeof b.delay=="number"&&(b.delay={show:b.delay,hide:b.delay}),b},enter:function(b){var c=a(b.currentTarget)[this.type](this._options).data(this.type);if(!c.options.delay||!c.options.delay.show)return c.show();clearTimeout(this.timeout),c.hoverState="in",this.timeout=setTimeout(function(){c.hoverState=="in"&&c.show()},c.options.delay.show)},leave:function(b){var c=a(b.currentTarget)[this.type](this._options).data(this.type);this.timeout&&clearTimeout(this.timeout);if(!c.options.delay||!c.options.delay.hide)return c.hide();c.hoverState="out",this.timeout=setTimeout(function(){c.hoverState=="out"&&c.hide()},c.options.delay.hide)},show:function(){var a,b,c,d,e,f,g;if(this.hasContent()&&this.enabled){a=this.tip(),this.setContent(),this.options.animation&&a.addClass("fade"),f=typeof this.options.placement=="function"?this.options.placement.call(this,a[0],this.$element[0]):this.options.placement,b=/in/.test(f),a.detach().css({top:0,left:0,display:"block"}).insertAfter(this.$element),c=this.getPosition(b),d=a[0].offsetWidth,e=a[0].offsetHeight;switch(b?f.split(" ")[1]:f){case"bottom":g={top:c.top+c.height,left:c.left+c.width/2-d/2};break;case"top":g={top:c.top-e,left:c.left+c.width/2-d/2};break;case"left":g={top:c.top+c.height/2-e/2,left:c.left-d};break;case"right":g={top:c.top+c.height/2-e/2,left:c.left+c.width}}a.offset(g).addClass(f).addClass("in")}},setContent:function(){var a=this.tip(),b=this.getTitle();a.find(".tooltip-inner")[this.options.html?"html":"text"](b),a.removeClass("fade in top bottom left right")},hide:function(){function d(){var b=setTimeout(function(){c.off(a.support.transition.end).detach()},500);c.one(a.support.transition.end,function(){clearTimeout(b),c.detach()})}var b=this,c=this.tip();return c.removeClass("in"),a.support.transition&&this.$tip.hasClass("fade")?d():c.detach(),this},fixTitle:function(){var a=this.$element;(a.attr("title")||typeof a.attr("data-original-title")!="string")&&a.attr("data-original-title",a.attr("title")||"").removeAttr("title")},hasContent:function(){return this.getTitle()},getPosition:function(b){return a.extend({},b?{top:0,left:0}:this.$element.offset(),{width:this.$element[0].offsetWidth,height:this.$element[0].offsetHeight})},getTitle:function(){var a,b=this.$element,c=this.options;return a=b.attr("data-original-title")||(typeof c.title=="function"?c.title.call(b[0]):c.title),a},tip:function(){return this.$tip=this.$tip||a(this.options.template)},validate:function(){this.$element[0].parentNode||(this.hide(),this.$element=null,this.options=null)},enable:function(){this.enabled=!0},disable:function(){this.enabled=!1},toggleEnabled:function(){this.enabled=!this.enabled},toggle:function(b){var c=a(b.currentTarget)[this.type](this._options).data(this.type);c[c.tip().hasClass("in")?"hide":"show"]()},destroy:function(){this.hide().$element.off("."+this.type).removeData(this.type)}};var c=a.fn.tooltip;a.fn.tooltip=function(c){return this.each(function(){var d=a(this),e=d.data("tooltip"),f=typeof c=="object"&&c;e||d.data("tooltip",e=new b(this,f)),typeof c=="string"&&e[c]()})},a.fn.tooltip.Constructor=b,a.fn.tooltip.defaults={animation:!0,placement:"top",selector:!1,template:'<div class="tooltip"><div class="tooltip-arrow"></div><div class="tooltip-inner"></div></div>',trigger:"hover",title:"",delay:0,html:!1},a.fn.tooltip.noConflict=function(){return a.fn.tooltip=c,this}}(window.jQuery),!function(a){var b=function(a,b){this.init("popover",a,b)};b.prototype=a.extend({},a.fn.tooltip.Constructor.prototype,{constructor:b,setContent:function(){var a=this.tip(),b=this.getTitle(),c=this.getContent();a.find(".popover-title")[this.options.html?"html":"text"](b),a.find(".popover-content")[this.options.html?"html":"text"](c),a.removeClass("fade top bottom left right in")},hasContent:function(){return this.getTitle()||this.getContent()},getContent:function(){var a,b=this.$element,c=this.options;return a=b.attr("data-content")||(typeof c.content=="function"?c.content.call(b[0]):c.content),a},tip:function(){return this.$tip||(this.$tip=a(this.options.template)),this.$tip},destroy:function(){this.hide().$element.off("."+this.type).removeData(this.type)}});var c=a.fn.popover;a.fn.popover=function(c){return this.each(function(){var d=a(this),e=d.data("popover"),f=typeof c=="object"&&c;e||d.data("popover",e=new b(this,f)),typeof c=="string"&&e[c]()})},a.fn.popover.Constructor=b,a.fn.popover.defaults=a.extend({},a.fn.tooltip.defaults,{placement:"right",trigger:"click",content:"",template:'<div class="popover"><div class="arrow"></div><div class="popover-inner"><h3 class="popover-title"></h3><div class="popover-content"></div></div></div>'}),a.fn.popover.noConflict=function(){return a.fn.popover=c,this}}(window.jQuery),!function(a){var b=function(b,c){this.options=a.extend({},a.fn.affix.defaults,c),this.$window=a(window).on("scroll.affix.data-api",a.proxy(this.checkPosition,this)).on("click.affix.data-api",a.proxy(function(){setTimeout(a.proxy(this.checkPosition,this),1)},this)),this.$element=a(b),this.checkPosition()};b.prototype.checkPosition=function(){if(!this.$element.is(":visible"))return;var b=a(document).height(),c=this.$window.scrollTop(),d=this.$element.offset(),e=this.options.offset,f=e.bottom,g=e.top,h="affix affix-top affix-bottom",i;typeof e!="object"&&(f=g=e),typeof g=="function"&&(g=e.top()),typeof f=="function"&&(f=e.bottom()),i=this.unpin!=null&&c+this.unpin<=d.top?!1:f!=null&&d.top+this.$element.height()>=b-f?"bottom":g!=null&&c<=g?"top":!1;if(this.affixed===i)return;this.affixed=i,this.unpin=i=="bottom"?d.top-c:null,this.$element.removeClass(h).addClass("affix"+(i?"-"+i:""))};var c=a.fn.affix;a.fn.affix=function(c){return this.each(function(){var d=a(this),e=d.data("affix"),f=typeof c=="object"&&c;e||d.data("affix",e=new b(this,f)),typeof c=="string"&&e[c]()})},a.fn.affix.Constructor=b,a.fn.affix.defaults={offset:0},a.fn.affix.noConflict=function(){return a.fn.affix=c,this},a(window).on("load",function(){a('[data-spy="affix"]').each(function(){var b=a(this),c=b.data();c.offset=c.offset||{},c.offsetBottom&&(c.offset.bottom=c.offsetBottom),c.offsetTop&&(c.offset.top=c.offsetTop),b.affix(c)})})}(window.jQuery),!function(a){var b='[data-dismiss="alert"]',c=function(c){a(c).on("click",b,this.close)};c.prototype.close=function(b){function f(){e.trigger("closed").remove()}var c=a(this),d=c.attr("data-target"),e;d||(d=c.attr("href"),d=d&&d.replace(/.*(?=#[^\s]*$)/,"")),e=a(d),b&&b.preventDefault(),e.length||(e=c.hasClass("alert")?c:c.parent()),e.trigger(b=a.Event("close"));if(b.isDefaultPrevented())return;e.removeClass("in"),a.support.transition&&e.hasClass("fade")?e.on(a.support.transition.end,f):f()};var d=a.fn.alert;a.fn.alert=function(b){return this.each(function(){var d=a(this),e=d.data("alert");e||d.data("alert",e=new c(this)),typeof b=="string"&&e[b].call(d)})},a.fn.alert.Constructor=c,a.fn.alert.noConflict=function(){return a.fn.alert=d,this},a(document).on("click.alert.data-api",b,c.prototype.close)}(window.jQuery),!function(a){var b=function(b,c){this.$element=a(b),this.options=a.extend({},a.fn.button.defaults,c)};b.prototype.setState=function(a){var b="disabled",c=this.$element,d=c.data(),e=c.is("input")?"val":"html";a+="Text",d.resetText||c.data("resetText",c[e]()),c[e](d[a]||this.options[a]),setTimeout(function(){a=="loadingText"?c.addClass(b).attr(b,b):c.removeClass(b).removeAttr(b)},0)},b.prototype.toggle=function(){var a=this.$element.closest('[data-toggle="buttons-radio"]');a&&a.find(".active").removeClass("active"),this.$element.toggleClass("active")};var c=a.fn.button;a.fn.button=function(c){return this.each(function(){var d=a(this),e=d.data("button"),f=typeof c=="object"&&c;e||d.data("button",e=new b(this,f)),c=="toggle"?e.toggle():c&&e.setState(c)})},a.fn.button.defaults={loadingText:"loading..."},a.fn.button.Constructor=b,a.fn.button.noConflict=function(){return a.fn.button=c,this},a(document).on("click.button.data-api","[data-toggle^=button]",function(b){var c=a(b.target);c.hasClass("btn")||(c=c.closest(".btn")),c.button("toggle")})}(window.jQuery),!function(a){var b=function(b,c){this.$element=a(b),this.options=a.extend({},a.fn.collapse.defaults,c),this.options.parent&&(this.$parent=a(this.options.parent)),this.options.toggle&&this.toggle()};b.prototype={constructor:b,dimension:function(){var a=this.$element.hasClass("width");return a?"width":"height"},show:function(){var b,c,d,e;if(this.transitioning)return;b=this.dimension(),c=a.camelCase(["scroll",b].join("-")),d=this.$parent&&this.$parent.find("> .accordion-group > .in");if(d&&d.length){e=d.data("collapse");if(e&&e.transitioning)return;d.collapse("hide"),e||d.data("collapse",null)}this.$element[b](0),this.transition("addClass",a.Event("show"),"shown"),a.support.transition&&this.$element[b](this.$element[0][c])},hide:function(){var b;if(this.transitioning)return;b=this.dimension(),this.reset(this.$element[b]()),this.transition("removeClass",a.Event("hide"),"hidden"),this.$element[b](0)},reset:function(a){var b=this.dimension();return this.$element.removeClass("collapse")[b](a||"auto")[0].offsetWidth,this.$element[a!==null?"addClass":"removeClass"]("collapse"),this},transition:function(b,c,d){var e=this,f=function(){c.type=="show"&&e.reset(),e.transitioning=0,e.$element.trigger(d)};this.$element.trigger(c);if(c.isDefaultPrevented())return;this.transitioning=1,this.$element[b]("in"),a.support.transition&&this.$element.hasClass("collapse")?this.$element.one(a.support.transition.end,f):f()},toggle:function(){this[this.$element.hasClass("in")?"hide":"show"]()}};var c=a.fn.collapse;a.fn.collapse=function(c){return this.each(function(){var d=a(this),e=d.data("collapse"),f=typeof c=="object"&&c;e||d.data("collapse",e=new b(this,f)),typeof c=="string"&&e[c]()})},a.fn.collapse.defaults={toggle:!0},a.fn.collapse.Constructor=b,a.fn.collapse.noConflict=function(){return a.fn.collapse=c,this},a(document).on("click.collapse.data-api","[data-toggle=collapse]",function(b){var c=a(this),d,e=c.attr("data-target")||b.preventDefault()||(d=c.attr("href"))&&d.replace(/.*(?=#[^\s]+$)/,""),f=a(e).data("collapse")?"toggle":c.data();c[a(e).hasClass("in")?"addClass":"removeClass"]("collapsed"),a(e).collapse(f)})}(window.jQuery),!function(a){var b=function(b,c){this.$element=a(b),this.options=c,this.options.pause=="hover"&&this.$element.on("mouseenter",a.proxy(this.pause,this)).on("mouseleave",a.proxy(this.cycle,this))};b.prototype={cycle:function(b){return b||(this.paused=!1),this.options.interval&&!this.paused&&(this.interval=setInterval(a.proxy(this.next,this),this.options.interval)),this},to:function(b){var c=this.$element.find(".item.active"),d=c.parent().children(),e=d.index(c),f=this;if(b>d.length-1||b<0)return;return this.sliding?this.$element.one("slid",function(){f.to(b)}):e==b?this.pause().cycle():this.slide(b>e?"next":"prev",a(d[b]))},pause:function(b){return b||(this.paused=!0),this.$element.find(".next, .prev").length&&a.support.transition.end&&(this.$element.trigger(a.support.transition.end),this.cycle()),clearInterval(this.interval),this.interval=null,this},next:function(){if(this.sliding)return;return this.slide("next")},prev:function(){if(this.sliding)return;return this.slide("prev")},slide:function(b,c){var d=this.$element.find(".item.active"),e=c||d[b](),f=this.interval,g=b=="next"?"left":"right",h=b=="next"?"first":"last",i=this,j;this.sliding=!0,f&&this.pause(),e=e.length?e:this.$element.find(".item")[h](),j=a.Event("slide",{relatedTarget:e[0]});if(e.hasClass("active"))return;if(a.support.transition&&this.$element.hasClass("slide")){this.$element.trigger(j);if(j.isDefaultPrevented())return;e.addClass(b),e[0].offsetWidth,d.addClass(g),e.addClass(g),this.$element.one(a.support.transition.end,function(){e.removeClass([b,g].join(" ")).addClass("active"),d.removeClass(["active",g].join(" ")),i.sliding=!1,setTimeout(function(){i.$element.trigger("slid")},0)})}else{this.$element.trigger(j);if(j.isDefaultPrevented())return;d.removeClass("active"),e.addClass("active"),this.sliding=!1,this.$element.trigger("slid")}return f&&this.cycle(),this}};var c=a.fn.carousel;a.fn.carousel=function(c){return this.each(function(){var d=a(this),e=d.data("carousel"),f=a.extend({},a.fn.carousel.defaults,typeof c=="object"&&c),g=typeof c=="string"?c:f.slide;e||d.data("carousel",e=new b(this,f)),typeof c=="number"?e.to(c):g?e[g]():f.interval&&e.cycle()})},a.fn.carousel.defaults={interval:5e3,pause:"hover"},a.fn.carousel.Constructor=b,a.fn.carousel.noConflict=function(){return a.fn.carousel=c,this},a(document).on("click.carousel.data-api","[data-slide]",function(b){var c=a(this),d,e=a(c.attr("data-target")||(d=c.attr("href"))&&d.replace(/.*(?=#[^\s]+$)/,"")),f=a.extend({},e.data(),c.data());e.carousel(f),b.preventDefault()})}(window.jQuery),!function(a){var b=function(b,c){this.$element=a(b),this.options=a.extend({},a.fn.typeahead.defaults,c),this.matcher=this.options.matcher||this.matcher,this.sorter=this.options.sorter||this.sorter,this.highlighter=this.options.highlighter||this.highlighter,this.updater=this.options.updater||this.updater,this.source=this.options.source,this.$menu=a(this.options.menu),this.shown=!1,this.listen()};b.prototype={constructor:b,select:function(){var a=this.$menu.find(".active").attr("data-value");return this.$element.val(this.updater(a)).change(),this.hide()},updater:function(a){return a},show:function(){var b=a.extend({},this.$element.position(),{height:this.$element[0].offsetHeight});return this.$menu.insertAfter(this.$element).css({top:b.top+b.height,left:b.left}).show(),this.shown=!0,this},hide:function(){return this.$menu.hide(),this.shown=!1,this},lookup:function(b){var c;return this.query=this.$element.val(),!this.query||this.query.length<this.options.minLength?this.shown?this.hide():this:(c=a.isFunction(this.source)?this.source(this.query,a.proxy(this.process,this)):this.source,c?this.process(c):this)},process:function(b){var c=this;return b=a.grep(b,function(a){return c.matcher(a)}),b=this.sorter(b),b.length?this.render(b.slice(0,this.options.items)).show():this.shown?this.hide():this},matcher:function(a){return~a.toLowerCase().indexOf(this.query.toLowerCase())},sorter:function(a){var b=[],c=[],d=[],e;while(e=a.shift())e.toLowerCase().indexOf(this.query.toLowerCase())?~e.indexOf(this.query)?c.push(e):d.push(e):b.push(e);return b.concat(c,d)},highlighter:function(a){var b=this.query.replace(/[\-\[\]{}()*+?.,\\\^$|#\s]/g,"\\$&");return a.replace(new RegExp("("+b+")","ig"),function(a,b){return"<strong>"+b+"</strong>"})},render:function(b){var c=this;return b=a(b).map(function(b,d){return b=a(c.options.item).attr("data-value",d),b.find("a").html(c.highlighter(d)),b[0]}),b.first().addClass("active"),this.$menu.html(b),this},next:function(b){var c=this.$menu.find(".active").removeClass("active"),d=c.next();d.length||(d=a(this.$menu.find("li")[0])),d.addClass("active")},prev:function(a){var b=this.$menu.find(".active").removeClass("active"),c=b.prev();c.length||(c=this.$menu.find("li").last()),c.addClass("active")},listen:function(){this.$element.on("blur",a.proxy(this.blur,this)).on("keypress",a.proxy(this.keypress,this)).on("keyup",a.proxy(this.keyup,this)),this.eventSupported("keydown")&&this.$element.on("keydown",a.proxy(this.keydown,this)),this.$menu.on("click",a.proxy(this.click,this)).on("mouseenter","li",a.proxy(this.mouseenter,this))},eventSupported:function(a){var b=a in this.$element;return b||(this.$element.setAttribute(a,"return;"),b=typeof this.$element[a]=="function"),b},move:function(a){if(!this.shown)return;switch(a.keyCode){case 9:case 13:case 27:a.preventDefault();break;case 38:a.preventDefault(),this.prev();break;case 40:a.preventDefault(),this.next()}a.stopPropagation()},keydown:function(b){this.suppressKeyPressRepeat=~a.inArray(b.keyCode,[40,38,9,13,27]),this.move(b)},keypress:function(a){if(this.suppressKeyPressRepeat)return;this.move(a)},keyup:function(a){switch(a.keyCode){case 40:case 38:case 16:case 17:case 18:break;case 9:case 13:if(!this.shown)return;this.select();break;case 27:if(!this.shown)return;this.hide();break;default:this.lookup()}a.stopPropagation(),a.preventDefault()},blur:function(a){var b=this;setTimeout(function(){b.hide()},150)},click:function(a){a.stopPropagation(),a.preventDefault(),this.select()},mouseenter:function(b){this.$menu.find(".active").removeClass("active"),a(b.currentTarget).addClass("active")}};var c=a.fn.typeahead;a.fn.typeahead=function(c){return this.each(function(){var d=a(this),e=d.data("typeahead"),f=typeof c=="object"&&c;e||d.data("typeahead",e=new b(this,f)),typeof c=="string"&&e[c]()})},a.fn.typeahead.defaults={source:[],items:8,menu:'<ul class="typeahead dropdown-menu"></ul>',item:'<li><a href="#"></a></li>',minLength:1},a.fn.typeahead.Constructor=b,a.fn.typeahead.noConflict=function(){return a.fn.typeahead=c,this},a(document).on("focus.typeahead.data-api",'[data-provide="typeahead"]',function(b){var c=a(this);if(c.data("typeahead"))return;b.preventDefault(),c.typeahead(c.data())})}(window.jQuery) |
| URL | http://zero.webappsecurity.com/resources/js/jquery-1.8.2.min.js |
| Method | GET |
| Parameter | |
| Attack | TRACE, OPTIONS methods with 'Max-Forwards' header. TRACK method. |
| Evidence | |
| Request Header - size: 287 bytes. |
GET http://zero.webappsecurity.com/resources/js/jquery-1.8.2.min.js HTTP/1.1
Host: zero.webappsecurity.com User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0 Pragma: no-cache Cache-Control: no-cache Referer: http://zero.webappsecurity.com |
| Request Body - size: 0 bytes. |
|
| Response Header - size: 361 bytes. |
HTTP/1.1 200 OK
Date: Mon, 14 Mar 2022 07:13:42 GMT Server: Apache-Coyote/1.1 Access-Control-Allow-Origin: * Accept-Ranges: bytes ETag: W/"93436-1358437290000" Last-Modified: Thu, 17 Jan 2013 15:41:30 GMT Cache-Control: max-age=2678400 Expires: Thu, 14 Apr 2022 07:13:43 GMT Content-Type: application/javascript;charset=UTF-8 Content-Length: 93436 |
| Response Body - size: 93,436 bytes. |
/*! jQuery v1.8.2 jquery.com | jquery.org/license */
(function(a,b){function G(a){var b=F[a]={};return p.each(a.split(s),function(a,c){b[c]=!0}),b}function J(a,c,d){if(d===b&&a.nodeType===1){var e="data-"+c.replace(I,"-$1").toLowerCase();d=a.getAttribute(e);if(typeof d=="string"){try{d=d==="true"?!0:d==="false"?!1:d==="null"?null:+d+""===d?+d:H.test(d)?p.parseJSON(d):d}catch(f){}p.data(a,c,d)}else d=b}return d}function K(a){var b;for(b in a){if(b==="data"&&p.isEmptyObject(a[b]))continue;if(b!=="toJSON")return!1}return!0}function ba(){return!1}function bb(){return!0}function bh(a){return!a||!a.parentNode||a.parentNode.nodeType===11}function bi(a,b){do a=a[b];while(a&&a.nodeType!==1);return a}function bj(a,b,c){b=b||0;if(p.isFunction(b))return p.grep(a,function(a,d){var e=!!b.call(a,d,a);return e===c});if(b.nodeType)return p.grep(a,function(a,d){return a===b===c});if(typeof b=="string"){var d=p.grep(a,function(a){return a.nodeType===1});if(be.test(b))return p.filter(b,d,!c);b=p.filter(b,d)}return p.grep(a,function(a,d){return p.inArray(a,b)>=0===c})}function bk(a){var b=bl.split("|"),c=a.createDocumentFragment();if(c.createElement)while(b.length)c.createElement(b.pop());return c}function bC(a,b){return a.getElementsByTagName(b)[0]||a.appendChild(a.ownerDocument.createElement(b))}function bD(a,b){if(b.nodeType!==1||!p.hasData(a))return;var c,d,e,f=p._data(a),g=p._data(b,f),h=f.events;if(h){delete g.handle,g.events={};for(c in h)for(d=0,e=h[c].length;d<e;d++)p.event.add(b,c,h[c][d])}g.data&&(g.data=p.extend({},g.data))}function bE(a,b){var c;if(b.nodeType!==1)return;b.clearAttributes&&b.clearAttributes(),b.mergeAttributes&&b.mergeAttributes(a),c=b.nodeName.toLowerCase(),c==="object"?(b.parentNode&&(b.outerHTML=a.outerHTML),p.support.html5Clone&&a.innerHTML&&!p.trim(b.innerHTML)&&(b.innerHTML=a.innerHTML)):c==="input"&&bv.test(a.type)?(b.defaultChecked=b.checked=a.checked,b.value!==a.value&&(b.value=a.value)):c==="option"?b.selected=a.defaultSelected:c==="input"||c==="textarea"?b.defaultValue=a.defaultValue:c==="script"&&b.text!==a.text&&(b.text=a.text),b.removeAttribute(p.expando)}function bF(a){return typeof a.getElementsByTagName!="undefined"?a.getElementsByTagName("*"):typeof a.querySelectorAll!="undefined"?a.querySelectorAll("*"):[]}function bG(a){bv.test(a.type)&&(a.defaultChecked=a.checked)}function bY(a,b){if(b in a)return b;var c=b.charAt(0).toUpperCase()+b.slice(1),d=b,e=bW.length;while(e--){b=bW[e]+c;if(b in a)return b}return d}function bZ(a,b){return a=b||a,p.css(a,"display")==="none"||!p.contains(a.ownerDocument,a)}function b$(a,b){var c,d,e=[],f=0,g=a.length;for(;f<g;f++){c=a[f];if(!c.style)continue;e[f]=p._data(c,"olddisplay"),b?(!e[f]&&c.style.display==="none"&&(c.style.display=""),c.style.display===""&&bZ(c)&&(e[f]=p._data(c,"olddisplay",cc(c.nodeName)))):(d=bH(c,"display"),!e[f]&&d!=="none"&&p._data(c,"olddisplay",d))}for(f=0;f<g;f++){c=a[f];if(!c.style)continue;if(!b||c.style.display==="none"||c.style.display==="")c.style.display=b?e[f]||"":"none"}return a}function b_(a,b,c){var d=bP.exec(b);return d?Math.max(0,d[1]-(c||0))+(d[2]||"px"):b}function ca(a,b,c,d){var e=c===(d?"border":"content")?4:b==="width"?1:0,f=0;for(;e<4;e+=2)c==="margin"&&(f+=p.css(a,c+bV[e],!0)),d?(c==="content"&&(f-=parseFloat(bH(a,"padding"+bV[e]))||0),c!=="margin"&&(f-=parseFloat(bH(a,"border"+bV[e]+"Width"))||0)):(f+=parseFloat(bH(a,"padding"+bV[e]))||0,c!=="padding"&&(f+=parseFloat(bH(a,"border"+bV[e]+"Width"))||0));return f}function cb(a,b,c){var d=b==="width"?a.offsetWidth:a.offsetHeight,e=!0,f=p.support.boxSizing&&p.css(a,"boxSizing")==="border-box";if(d<=0||d==null){d=bH(a,b);if(d<0||d==null)d=a.style[b];if(bQ.test(d))return d;e=f&&(p.support.boxSizingReliable||d===a.style[b]),d=parseFloat(d)||0}return d+ca(a,b,c||(f?"border":"content"),e)+"px"}function cc(a){if(bS[a])return bS[a];var b=p("<"+a+">").appendTo(e.body),c=b.css("display");b.remove();if(c==="none"||c===""){bI=e.body.appendChild(bI||p.extend(e.createElement("iframe"),{frameBorder:0,width:0,height:0}));if(!bJ||!bI.createElement)bJ=(bI.contentWindow||bI.contentDocument).document,bJ.write("<!doctype html><html><body>"),bJ.close();b=bJ.body.appendChild(bJ.createElement(a)),c=bH(b,"display"),e.body.removeChild(bI)}return bS[a]=c,c}function ci(a,b,c,d){var e;if(p.isArray(b))p.each(b,function(b,e){c||ce.test(a)?d(a,e):ci(a+"["+(typeof e=="object"?b:"")+"]",e,c,d)});else if(!c&&p.type(b)==="object")for(e in b)ci(a+"["+e+"]",b[e],c,d);else d(a,b)}function cz(a){return function(b,c){typeof b!="string"&&(c=b,b="*");var d,e,f,g=b.toLowerCase().split(s),h=0,i=g.length;if(p.isFunction(c))for(;h<i;h++)d=g[h],f=/^\+/.test(d),f&&(d=d.substr(1)||"*"),e=a[d]=a[d]||[],e[f?"unshift":"push"](c)}}function cA(a,c,d,e,f,g){f=f||c.dataTypes[0],g=g||{},g[f]=!0;var h,i=a[f],j=0,k=i?i.length:0,l=a===cv;for(;j<k&&(l||!h);j++)h=i[j](c,d,e),typeof h=="string"&&(!l||g[h]?h=b:(c.dataTypes.unshift(h),h=cA(a,c,d,e,h,g)));return(l||!h)&&!g["*"]&&(h=cA(a,c,d,e,"*",g)),h}function cB(a,c){var d,e,f=p.ajaxSettings.flatOptions||{};for(d in c)c[d]!==b&&((f[d]?a:e||(e={}))[d]=c[d]);e&&p.extend(!0,a,e)}function cC(a,c,d){var e,f,g,h,i=a.contents,j=a.dataTypes,k=a.responseFields;for(f in k)f in d&&(c[k[f]]=d[f]);while(j[0]==="*")j.shift(),e===b&&(e=a.mimeType||c.getResponseHeader("content-type"));if(e)for(f in i)if(i[f]&&i[f].test(e)){j.unshift(f);break}if(j[0]in d)g=j[0];else{for(f in d){if(!j[0]||a.converters[f+" "+j[0]]){g=f;break}h||(h=f)}g=g||h}if(g)return g!==j[0]&&j.unshift(g),d[g]}function cD(a,b){var c,d,e,f,g=a.dataTypes.slice(),h=g[0],i={},j=0;a.dataFilter&&(b=a.dataFilter(b,a.dataType));if(g[1])for(c in a.converters)i[c.toLowerCase()]=a.converters[c];for(;e=g[++j];)if(e!=="*"){if(h!=="*"&&h!==e){c=i[h+" "+e]||i["* "+e];if(!c)for(d in i){f=d.split(" ");if(f[1]===e){c=i[h+" "+f[0]]||i["* "+f[0]];if(c){c===!0?c=i[d]:i[d]!==!0&&(e=f[0],g.splice(j--,0,e));break}}}if(c!==!0)if(c&&a["throws"])b=c(b);else try{b=c(b)}catch(k){return{state:"parsererror",error:c?k:"No conversion from "+h+" to "+e}}}h=e}return{state:"success",data:b}}function cL(){try{return new a.XMLHttpRequest}catch(b){}}function cM(){try{return new a.ActiveXObject("Microsoft.XMLHTTP")}catch(b){}}function cU(){return setTimeout(function(){cN=b},0),cN=p.now()}function cV(a,b){p.each(b,function(b,c){var d=(cT[b]||[]).concat(cT["*"]),e=0,f=d.length;for(;e<f;e++)if(d[e].call(a,b,c))return})}function cW(a,b,c){var d,e=0,f=0,g=cS.length,h=p.Deferred().always(function(){delete i.elem}),i=function(){var b=cN||cU(),c=Math.max(0,j.startTime+j.duration-b),d=1-(c/j.duration||0),e=0,f=j.tweens.length;for(;e<f;e++)j.tweens[e].run(d);return h.notifyWith(a,[j,d,c]),d<1&&f?c:(h.resolveWith(a,[j]),!1)},j=h.promise({elem:a,props:p.extend({},b),opts:p.extend(!0,{specialEasing:{}},c),originalProperties:b,originalOptions:c,startTime:cN||cU(),duration:c.duration,tweens:[],createTween:function(b,c,d){var e=p.Tween(a,j.opts,b,c,j.opts.specialEasing[b]||j.opts.easing);return j.tweens.push(e),e},stop:function(b){var c=0,d=b?j.tweens.length:0;for(;c<d;c++)j.tweens[c].run(1);return b?h.resolveWith(a,[j,b]):h.rejectWith(a,[j,b]),this}}),k=j.props;cX(k,j.opts.specialEasing);for(;e<g;e++){d=cS[e].call(j,a,k,j.opts);if(d)return d}return cV(j,k),p.isFunction(j.opts.start)&&j.opts.start.call(a,j),p.fx.timer(p.extend(i,{anim:j,queue:j.opts.queue,elem:a})),j.progress(j.opts.progress).done(j.opts.done,j.opts.complete).fail(j.opts.fail).always(j.opts.always)}function cX(a,b){var c,d,e,f,g;for(c in a){d=p.camelCase(c),e=b[d],f=a[c],p.isArray(f)&&(e=f[1],f=a[c]=f[0]),c!==d&&(a[d]=f,delete a[c]),g=p.cssHooks[d];if(g&&"expand"in g){f=g.expand(f),delete a[d];for(c in f)c in a||(a[c]=f[c],b[c]=e)}else b[d]=e}}function cY(a,b,c){var d,e,f,g,h,i,j,k,l=this,m=a.style,n={},o=[],q=a.nodeType&&bZ(a);c.queue||(j=p._queueHooks(a,"fx"),j.unqueued==null&&(j.unqueued=0,k=j.empty.fire,j.empty.fire=function(){j.unqueued||k()}),j.unqueued++,l.always(function(){l.always(function(){j.unqueued--,p.queue(a,"fx").length||j.empty.fire()})})),a.nodeType===1&&("height"in b||"width"in b)&&(c.overflow=[m.overflow,m.overflowX,m.overflowY],p.css(a,"display")==="inline"&&p.css(a,"float")==="none"&&(!p.support.inlineBlockNeedsLayout||cc(a.nodeName)==="inline"?m.display="inline-block":m.zoom=1)),c.overflow&&(m.overflow="hidden",p.support.shrinkWrapBlocks||l.done(function(){m.overflow=c.overflow[0],m.overflowX=c.overflow[1],m.overflowY=c.overflow[2]}));for(d in b){f=b[d];if(cP.exec(f)){delete b[d];if(f===(q?"hide":"show"))continue;o.push(d)}}g=o.length;if(g){h=p._data(a,"fxshow")||p._data(a,"fxshow",{}),q?p(a).show():l.done(function(){p(a).hide()}),l.done(function(){var b;p.removeData(a,"fxshow",!0);for(b in n)p.style(a,b,n[b])});for(d=0;d<g;d++)e=o[d],i=l.createTween(e,q?h[e]:0),n[e]=h[e]||p.style(a,e),e in h||(h[e]=i.start,q&&(i.end=i.start,i.start=e==="width"||e==="height"?1:0))}}function cZ(a,b,c,d,e){return new cZ.prototype.init(a,b,c,d,e)}function c$(a,b){var c,d={height:a},e=0;b=b?1:0;for(;e<4;e+=2-b)c=bV[e],d["margin"+c]=d["padding"+c]=a;return b&&(d.opacity=d.width=a),d}function da(a){return p.isWindow(a)?a:a.nodeType===9?a.defaultView||a.parentWindow:!1}var c,d,e=a.document,f=a.location,g=a.navigator,h=a.jQuery,i=a.$,j=Array.prototype.push,k=Array.prototype.slice,l=Array.prototype.indexOf,m=Object.prototype.toString,n=Object.prototype.hasOwnProperty,o=String.prototype.trim,p=function(a,b){return new p.fn.init(a,b,c)},q=/[\-+]?(?:\d*\.|)\d+(?:[eE][\-+]?\d+|)/.source,r=/\S/,s=/\s+/,t=/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,u=/^(?:[^#<]*(<[\w\W]+>)[^>]*$|#([\w\-]*)$)/,v=/^<(\w+)\s*\/?>(?:<\/\1>|)$/,w=/^[\],:{}\s]*$/,x=/(?:^|:|,)(?:\s*\[)+/g,y=/\\(?:["\\\/bfnrt]|u[\da-fA-F]{4})/g,z=/"[^"\\\r\n]*"|true|false|null|-?(?:\d\d*\.|)\d+(?:[eE][\-+]?\d+|)/g,A=/^-ms-/,B=/-([\da-z])/gi,C=function(a,b){return(b+"").toUpperCase()},D=function(){e.addEventListener?(e.removeEventListener("DOMContentLoaded",D,!1),p.ready()):e.readyState==="complete"&&(e.detachEvent("onreadystatechange",D),p.ready())},E={};p.fn=p.prototype={constructor:p,init:function(a,c,d){var f,g,h,i;if(!a)return this;if(a.nodeType)return this.context=this[0]=a,this.length=1,this;if(typeof a=="string"){a.charAt(0)==="<"&&a.charAt(a.length-1)===">"&&a.length>=3?f=[null,a,null]:f=u.exec(a);if(f&&(f[1]||!c)){if(f[1])return c=c instanceof p?c[0]:c,i=c&&c.nodeType?c.ownerDocument||c:e,a=p.parseHTML(f[1],i,!0),v.test(f[1])&&p.isPlainObject(c)&&this.attr.call(a,c,!0),p.merge(this,a);g=e.getElementById(f[2]);if(g&&g.parentNode){if(g.id!==f[2])return d.find(a);this.length=1,this[0]=g}return this.context=e,this.selector=a,this}return!c||c.jquery?(c||d).find(a):this.constructor(c).find(a)}return p.isFunction(a)?d.ready(a):(a.selector!==b&&(this.selector=a.selector,this.context=a.context),p.makeArray(a,this))},selector:"",jquery:"1.8.2",length:0,size:function(){return this.length},toArray:function(){return k.call(this)},get:function(a){return a==null?this.toArray():a<0?this[this.length+a]:this[a]},pushStack:function(a,b,c){var d=p.merge(this.constructor(),a);return d.prevObject=this,d.context=this.context,b==="find"?d.selector=this.selector+(this.selector?" ":"")+c:b&&(d.selector=this.selector+"."+b+"("+c+")"),d},each:function(a,b){return p.each(this,a,b)},ready:function(a){return p.ready.promise().done(a),this},eq:function(a){return a=+a,a===-1?this.slice(a):this.slice(a,a+1)},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},slice:function(){return this.pushStack(k.apply(this,arguments),"slice",k.call(arguments).join(","))},map:function(a){return this.pushStack(p.map(this,function(b,c){return a.call(b,c,b)}))},end:function(){return this.prevObject||this.constructor(null)},push:j,sort:[].sort,splice:[].splice},p.fn.init.prototype=p.fn,p.extend=p.fn.extend=function(){var a,c,d,e,f,g,h=arguments[0]||{},i=1,j=arguments.length,k=!1;typeof h=="boolean"&&(k=h,h=arguments[1]||{},i=2),typeof h!="object"&&!p.isFunction(h)&&(h={}),j===i&&(h=this,--i);for(;i<j;i++)if((a=arguments[i])!=null)for(c in a){d=h[c],e=a[c];if(h===e)continue;k&&e&&(p.isPlainObject(e)||(f=p.isArray(e)))?(f?(f=!1,g=d&&p.isArray(d)?d:[]):g=d&&p.isPlainObject(d)?d:{},h[c]=p.extend(k,g,e)):e!==b&&(h[c]=e)}return h},p.extend({noConflict:function(b){return a.$===p&&(a.$=i),b&&a.jQuery===p&&(a.jQuery=h),p},isReady:!1,readyWait:1,holdReady:function(a){a?p.readyWait++:p.ready(!0)},ready:function(a){if(a===!0?--p.readyWait:p.isReady)return;if(!e.body)return setTimeout(p.ready,1);p.isReady=!0;if(a!==!0&&--p.readyWait>0)return;d.resolveWith(e,[p]),p.fn.trigger&&p(e).trigger("ready").off("ready")},isFunction:function(a){return p.type(a)==="function"},isArray:Array.isArray||function(a){return p.type(a)==="array"},isWindow:function(a){return a!=null&&a==a.window},isNumeric:function(a){return!isNaN(parseFloat(a))&&isFinite(a)},type:function(a){return a==null?String(a):E[m.call(a)]||"object"},isPlainObject:function(a){if(!a||p.type(a)!=="object"||a.nodeType||p.isWindow(a))return!1;try{if(a.constructor&&!n.call(a,"constructor")&&!n.call(a.constructor.prototype,"isPrototypeOf"))return!1}catch(c){return!1}var d;for(d in a);return d===b||n.call(a,d)},isEmptyObject:function(a){var b;for(b in a)return!1;return!0},error:function(a){throw new Error(a)},parseHTML:function(a,b,c){var d;return!a||typeof a!="string"?null:(typeof b=="boolean"&&(c=b,b=0),b=b||e,(d=v.exec(a))?[b.createElement(d[1])]:(d=p.buildFragment([a],b,c?null:[]),p.merge([],(d.cacheable?p.clone(d.fragment):d.fragment).childNodes)))},parseJSON:function(b){if(!b||typeof b!="string")return null;b=p.trim(b);if(a.JSON&&a.JSON.parse)return a.JSON.parse(b);if(w.test(b.replace(y,"@").replace(z,"]").replace(x,"")))return(new Function("return "+b))();p.error("Invalid JSON: "+b)},parseXML:function(c){var d,e;if(!c||typeof c!="string")return null;try{a.DOMParser?(e=new DOMParser,d=e.parseFromString(c,"text/xml")):(d=new ActiveXObject("Microsoft.XMLDOM"),d.async="false",d.loadXML(c))}catch(f){d=b}return(!d||!d.documentElement||d.getElementsByTagName("parsererror").length)&&p.error("Invalid XML: "+c),d},noop:function(){},globalEval:function(b){b&&r.test(b)&&(a.execScript||function(b){a.eval.call(a,b)})(b)},camelCase:function(a){return a.replace(A,"ms-").replace(B,C)},nodeName:function(a,b){return a.nodeName&&a.nodeName.toLowerCase()===b.toLowerCase()},each:function(a,c,d){var e,f=0,g=a.length,h=g===b||p.isFunction(a);if(d){if(h){for(e in a)if(c.apply(a[e],d)===!1)break}else for(;f<g;)if(c.apply(a[f++],d)===!1)break}else if(h){for(e in a)if(c.call(a[e],e,a[e])===!1)break}else for(;f<g;)if(c.call(a[f],f,a[f++])===!1)break;return a},trim:o&&!o.call(" ")?function(a){return a==null?"":o.call(a)}:function(a){return a==null?"":(a+"").replace(t,"")},makeArray:function(a,b){var c,d=b||[];return a!=null&&(c=p.type(a),a.length==null||c==="string"||c==="function"||c==="regexp"||p.isWindow(a)?j.call(d,a):p.merge(d,a)),d},inArray:function(a,b,c){var d;if(b){if(l)return l.call(b,a,c);d=b.length,c=c?c<0?Math.max(0,d+c):c:0;for(;c<d;c++)if(c in b&&b[c]===a)return c}return-1},merge:function(a,c){var d=c.length,e=a.length,f=0;if(typeof d=="number")for(;f<d;f++)a[e++]=c[f];else while(c[f]!==b)a[e++]=c[f++];return a.length=e,a},grep:function(a,b,c){var d,e=[],f=0,g=a.length;c=!!c;for(;f<g;f++)d=!!b(a[f],f),c!==d&&e.push(a[f]);return e},map:function(a,c,d){var e,f,g=[],h=0,i=a.length,j=a instanceof p||i!==b&&typeof i=="number"&&(i>0&&a[0]&&a[i-1]||i===0||p.isArray(a));if(j)for(;h<i;h++)e=c(a[h],h,d),e!=null&&(g[g.length]=e);else for(f in a)e=c(a[f],f,d),e!=null&&(g[g.length]=e);return g.concat.apply([],g)},guid:1,proxy:function(a,c){var d,e,f;return typeof c=="string"&&(d=a[c],c=a,a=d),p.isFunction(a)?(e=k.call(arguments,2),f=function(){return a.apply(c,e.concat(k.call(arguments)))},f.guid=a.guid=a.guid||p.guid++,f):b},access:function(a,c,d,e,f,g,h){var i,j=d==null,k=0,l=a.length;if(d&&typeof d=="object"){for(k in d)p.access(a,c,k,d[k],1,g,e);f=1}else if(e!==b){i=h===b&&p.isFunction(e),j&&(i?(i=c,c=function(a,b,c){return i.call(p(a),c)}):(c.call(a,e),c=null));if(c)for(;k<l;k++)c(a[k],d,i?e.call(a[k],k,c(a[k],d)):e,h);f=1}return f?a:j?c.call(a):l?c(a[0],d):g},now:function(){return(new Date).getTime()}}),p.ready.promise=function(b){if(!d){d=p.Deferred();if(e.readyState==="complete")setTimeout(p.ready,1);else if(e.addEventListener)e.addEventListener("DOMContentLoaded",D,!1),a.addEventListener("load",p.ready,!1);else{e.attachEvent("onreadystatechange",D),a.attachEvent("onload",p.ready);var c=!1;try{c=a.frameElement==null&&e.documentElement}catch(f){}c&&c.doScroll&&function g(){if(!p.isReady){try{c.doScroll("left")}catch(a){return setTimeout(g,50)}p.ready()}}()}}return d.promise(b)},p.each("Boolean Number String Function Array Date RegExp Object".split(" "),function(a,b){E["[object "+b+"]"]=b.toLowerCase()}),c=p(e);var F={};p.Callbacks=function(a){a=typeof a=="string"?F[a]||G(a):p.extend({},a);var c,d,e,f,g,h,i=[],j=!a.once&&[],k=function(b){c=a.memory&&b,d=!0,h=f||0,f=0,g=i.length,e=!0;for(;i&&h<g;h++)if(i[h].apply(b[0],b[1])===!1&&a.stopOnFalse){c=!1;break}e=!1,i&&(j?j.length&&k(j.shift()):c?i=[]:l.disable())},l={add:function(){if(i){var b=i.length;(function d(b){p.each(b,function(b,c){var e=p.type(c);e==="function"&&(!a.unique||!l.has(c))?i.push(c):c&&c.length&&e!=="string"&&d(c)})})(arguments),e?g=i.length:c&&(f=b,k(c))}return this},remove:function(){return i&&p.each(arguments,function(a,b){var c;while((c=p.inArray(b,i,c))>-1)i.splice(c,1),e&&(c<=g&&g--,c<=h&&h--)}),this},has:function(a){return p.inArray(a,i)>-1},empty:function(){return i=[],this},disable:function(){return i=j=c=b,this},disabled:function(){return!i},lock:function(){return j=b,c||l.disable(),this},locked:function(){return!j},fireWith:function(a,b){return b=b||[],b=[a,b.slice?b.slice():b],i&&(!d||j)&&(e?j.push(b):k(b)),this},fire:function(){return l.fireWith(this,arguments),this},fired:function(){return!!d}};return l},p.extend({Deferred:function(a){var b=[["resolve","done",p.Callbacks("once memory"),"resolved"],["reject","fail",p.Callbacks("once memory"),"rejected"],["notify","progress",p.Callbacks("memory")]],c="pending",d={state:function(){return c},always:function(){return e.done(arguments).fail(arguments),this},then:function(){var a=arguments;return p.Deferred(function(c){p.each(b,function(b,d){var f=d[0],g=a[b];e[d[1]](p.isFunction(g)?function(){var a=g.apply(this,arguments);a&&p.isFunction(a.promise)?a.promise().done(c.resolve).fail(c.reject).progress(c.notify):c[f+"With"](this===e?c:this,[a])}:c[f])}),a=null}).promise()},promise:function(a){return a!=null?p.extend(a,d):d}},e={};return d.pipe=d.then,p.each(b,function(a,f){var g=f[2],h=f[3];d[f[1]]=g.add,h&&g.add(function(){c=h},b[a^1][2].disable,b[2][2].lock),e[f[0]]=g.fire,e[f[0]+"With"]=g.fireWith}),d.promise(e),a&&a.call(e,e),e},when:function(a){var b=0,c=k.call(arguments),d=c.length,e=d!==1||a&&p.isFunction(a.promise)?d:0,f=e===1?a:p.Deferred(),g=function(a,b,c){return function(d){b[a]=this,c[a]=arguments.length>1?k.call(arguments):d,c===h?f.notifyWith(b,c):--e||f.resolveWith(b,c)}},h,i,j;if(d>1){h=new Array(d),i=new Array(d),j=new Array(d);for(;b<d;b++)c[b]&&p.isFunction(c[b].promise)?c[b].promise().done(g(b,j,c)).fail(f.reject).progress(g(b,i,h)):--e}return e||f.resolveWith(j,c),f.promise()}}),p.support=function(){var b,c,d,f,g,h,i,j,k,l,m,n=e.createElement("div");n.setAttribute("className","t"),n.innerHTML=" <link/><table></table><a href='/a'>a</a><input type='checkbox'/>",c=n.getElementsByTagName("*"),d=n.getElementsByTagName("a")[0],d.style.cssText="top:1px;float:left;opacity:.5";if(!c||!c.length)return{};f=e.createElement("select"),g=f.appendChild(e.createElement("option")),h=n.getElementsByTagName("input")[0],b={leadingWhitespace:n.firstChild.nodeType===3,tbody:!n.getElementsByTagName("tbody").length,htmlSerialize:!!n.getElementsByTagName("link").length,style:/top/.test(d.getAttribute("style")),hrefNormalized:d.getAttribute("href")==="/a",opacity:/^0.5/.test(d.style.opacity),cssFloat:!!d.style.cssFloat,checkOn:h.value==="on",optSelected:g.selected,getSetAttribute:n.className!=="t",enctype:!!e.createElement("form").enctype,html5Clone:e.createElement("nav").cloneNode(!0).outerHTML!=="<:nav></:nav>",boxModel:e.compatMode==="CSS1Compat",submitBubbles:!0,changeBubbles:!0,focusinBubbles:!1,deleteExpando:!0,noCloneEvent:!0,inlineBlockNeedsLayout:!1,shrinkWrapBlocks:!1,reliableMarginRight:!0,boxSizingReliable:!0,pixelPosition:!1},h.checked=!0,b.noCloneChecked=h.cloneNode(!0).checked,f.disabled=!0,b.optDisabled=!g.disabled;try{delete n.test}catch(o){b.deleteExpando=!1}!n.addEventListener&&n.attachEvent&&n.fireEvent&&(n.attachEvent("onclick",m=function(){b.noCloneEvent=!1}),n.cloneNode(!0).fireEvent("onclick"),n.detachEvent("onclick",m)),h=e.createElement("input"),h.value="t",h.setAttribute("type","radio"),b.radioValue=h.value==="t",h.setAttribute("checked","checked"),h.setAttribute("name","t"),n.appendChild(h),i=e.createDocumentFragment(),i.appendChild(n.lastChild),b.checkClone=i.cloneNode(!0).cloneNode(!0).lastChild.checked,b.appendChecked=h.checked,i.removeChild(h),i.appendChild(n);if(n.attachEvent)for(k in{submit:!0,change:!0,focusin:!0})j="on"+k,l=j in n,l||(n.setAttribute(j,"return;"),l=typeof n[j]=="function"),b[k+"Bubbles"]=l;return p(function(){var c,d,f,g,h="padding:0;margin:0;border:0;display:block;overflow:hidden;",i=e.getElementsByTagName("body")[0];if(!i)return;c=e.createElement("div"),c.style.cssText="visibility:hidden;border:0;width:0;height:0;position:static;top:0;margin-top:1px",i.insertBefore(c,i.firstChild),d=e.createElement("div"),c.appendChild(d),d.innerHTML="<table><tr><td></td><td>t</td></tr></table>",f=d.getElementsByTagName("td"),f[0].style.cssText="padding:0;margin:0;border:0;display:none",l=f[0].offsetHeight===0,f[0].style.display="",f[1].style.display="none",b.reliableHiddenOffsets=l&&f[0].offsetHeight===0,d.innerHTML="",d.style.cssText="box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;padding:1px;border:1px;display:block;width:4px;margin-top:1%;position:absolute;top:1%;",b.boxSizing=d.offsetWidth===4,b.doesNotIncludeMarginInBodyOffset=i.offsetTop!==1,a.getComputedStyle&&(b.pixelPosition=(a.getComputedStyle(d,null)||{}).top!=="1%",b.boxSizingReliable=(a.getComputedStyle(d,null)||{width:"4px"}).width==="4px",g=e.createElement("div"),g.style.cssText=d.style.cssText=h,g.style.marginRight=g.style.width="0",d.style.width="1px",d.appendChild(g),b.reliableMarginRight=!parseFloat((a.getComputedStyle(g,null)||{}).marginRight)),typeof d.style.zoom!="undefined"&&(d.innerHTML="",d.style.cssText=h+"width:1px;padding:1px;display:inline;zoom:1",b.inlineBlockNeedsLayout=d.offsetWidth===3,d.style.display="block",d.style.overflow="visible",d.innerHTML="<div></div>",d.firstChild.style.width="5px",b.shrinkWrapBlocks=d.offsetWidth!==3,c.style.zoom=1),i.removeChild(c),c=d=f=g=null}),i.removeChild(n),c=d=f=g=h=i=n=null,b}();var H=/(?:\{[\s\S]*\}|\[[\s\S]*\])$/,I=/([A-Z])/g;p.extend({cache:{},deletedIds:[],uuid:0,expando:"jQuery"+(p.fn.jquery+Math.random()).replace(/\D/g,""),noData:{embed:!0,object:"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000",applet:!0},hasData:function(a){return a=a.nodeType?p.cache[a[p.expando]]:a[p.expando],!!a&&!K(a)},data:function(a,c,d,e){if(!p.acceptData(a))return;var f,g,h=p.expando,i=typeof c=="string",j=a.nodeType,k=j?p.cache:a,l=j?a[h]:a[h]&&h;if((!l||!k[l]||!e&&!k[l].data)&&i&&d===b)return;l||(j?a[h]=l=p.deletedIds.pop()||p.guid++:l=h),k[l]||(k[l]={},j||(k[l].toJSON=p.noop));if(typeof c=="object"||typeof c=="function")e?k[l]=p.extend(k[l],c):k[l].data=p.extend(k[l].data,c);return f=k[l],e||(f.data||(f.data={}),f=f.data),d!==b&&(f[p.camelCase(c)]=d),i?(g=f[c],g==null&&(g=f[p.camelCase(c)])):g=f,g},removeData:function(a,b,c){if(!p.acceptData(a))return;var d,e,f,g=a.nodeType,h=g?p.cache:a,i=g?a[p.expando]:p.expando;if(!h[i])return;if(b){d=c?h[i]:h[i].data;if(d){p.isArray(b)||(b in d?b=[b]:(b=p.camelCase(b),b in d?b=[b]:b=b.split(" ")));for(e=0,f=b.length;e<f;e++)delete d[b[e]];if(!(c?K:p.isEmptyObject)(d))return}}if(!c){delete h[i].data;if(!K(h[i]))return}g?p.cleanData([a],!0):p.support.deleteExpando||h!=h.window?delete h[i]:h[i]=null},_data:function(a,b,c){return p.data(a,b,c,!0)},acceptData:function(a){var b=a.nodeName&&p.noData[a.nodeName.toLowerCase()];return!b||b!==!0&&a.getAttribute("classid")===b}}),p.fn.extend({data:function(a,c){var d,e,f,g,h,i=this[0],j=0,k=null;if(a===b){if(this.length){k=p.data(i);if(i.nodeType===1&&!p._data(i,"parsedAttrs")){f=i.attributes;for(h=f.length;j<h;j++)g=f[j].name,g.indexOf("data-")||(g=p.camelCase(g.substring(5)),J(i,g,k[g]));p._data(i,"parsedAttrs",!0)}}return k}return typeof a=="object"?this.each(function(){p.data(this,a)}):(d=a.split(".",2),d[1]=d[1]?"."+d[1]:"",e=d[1]+"!",p.access(this,function(c){if(c===b)return k=this.triggerHandler("getData"+e,[d[0]]),k===b&&i&&(k=p.data(i,a),k=J(i,a,k)),k===b&&d[1]?this.data(d[0]):k;d[1]=c,this.each(function(){var b=p(this);b.triggerHandler("setData"+e,d),p.data(this,a,c),b.triggerHandler("changeData"+e,d)})},null,c,arguments.length>1,null,!1))},removeData:function(a){return this.each(function(){p.removeData(this,a)})}}),p.extend({queue:function(a,b,c){var d;if(a)return b=(b||"fx")+"queue",d=p._data(a,b),c&&(!d||p.isArray(c)?d=p._data(a,b,p.makeArray(c)):d.push(c)),d||[]},dequeue:function(a,b){b=b||"fx";var c=p.queue(a,b),d=c.length,e=c.shift(),f=p._queueHooks(a,b),g=function(){p.dequeue(a,b)};e==="inprogress"&&(e=c.shift(),d--),e&&(b==="fx"&&c.unshift("inprogress"),delete f.stop,e.call(a,g,f)),!d&&f&&f.empty.fire()},_queueHooks:function(a,b){var c=b+"queueHooks";return p._data(a,c)||p._data(a,c,{empty:p.Callbacks("once memory").add(function(){p.removeData(a,b+"queue",!0),p.removeData(a,c,!0)})})}}),p.fn.extend({queue:function(a,c){var d=2;return typeof a!="string"&&(c=a,a="fx",d--),arguments.length<d?p.queue(this[0],a):c===b?this:this.each(function(){var b=p.queue(this,a,c);p._queueHooks(this,a),a==="fx"&&b[0]!=="inprogress"&&p.dequeue(this,a)})},dequeue:function(a){return this.each(function(){p.dequeue(this,a)})},delay:function(a,b){return a=p.fx?p.fx.speeds[a]||a:a,b=b||"fx",this.queue(b,function(b,c){var d=setTimeout(b,a);c.stop=function(){clearTimeout(d)}})},clearQueue:function(a){return this.queue(a||"fx",[])},promise:function(a,c){var d,e=1,f=p.Deferred(),g=this,h=this.length,i=function(){--e||f.resolveWith(g,[g])};typeof a!="string"&&(c=a,a=b),a=a||"fx";while(h--)d=p._data(g[h],a+"queueHooks"),d&&d.empty&&(e++,d.empty.add(i));return i(),f.promise(c)}});var L,M,N,O=/[\t\r\n]/g,P=/\r/g,Q=/^(?:button|input)$/i,R=/^(?:button|input|object|select|textarea)$/i,S=/^a(?:rea|)$/i,T=/^(?:autofocus|autoplay|async|checked|controls|defer|disabled|hidden|loop|multiple|open|readonly|required|scoped|selected)$/i,U=p.support.getSetAttribute;p.fn.extend({attr:function(a,b){return p.access(this,p.attr,a,b,arguments.length>1)},removeAttr:function(a){return this.each(function(){p.removeAttr(this,a)})},prop:function(a,b){return p.access(this,p.prop,a,b,arguments.length>1)},removeProp:function(a){return a=p.propFix[a]||a,this.each(function(){try{this[a]=b,delete this[a]}catch(c){}})},addClass:function(a){var b,c,d,e,f,g,h;if(p.isFunction(a))return this.each(function(b){p(this).addClass(a.call(this,b,this.className))});if(a&&typeof a=="string"){b=a.split(s);for(c=0,d=this.length;c<d;c++){e=this[c];if(e.nodeType===1)if(!e.className&&b.length===1)e.className=a;else{f=" "+e.className+" ";for(g=0,h=b.length;g<h;g++)f.indexOf(" "+b[g]+" ")<0&&(f+=b[g]+" ");e.className=p.trim(f)}}}return this},removeClass:function(a){var c,d,e,f,g,h,i;if(p.isFunction(a))return this.each(function(b){p(this).removeClass(a.call(this,b,this.className))});if(a&&typeof a=="string"||a===b){c=(a||"").split(s);for(h=0,i=this.length;h<i;h++){e=this[h];if(e.nodeType===1&&e.className){d=(" "+e.className+" ").replace(O," ");for(f=0,g=c.length;f<g;f++)while(d.indexOf(" "+c[f]+" ")>=0)d=d.replace(" "+c[f]+" "," ");e.className=a?p.trim(d):""}}}return this},toggleClass:function(a,b){var c=typeof a,d=typeof b=="boolean";return p.isFunction(a)?this.each(function(c){p(this).toggleClass(a.call(this,c,this.className,b),b)}):this.each(function(){if(c==="string"){var e,f=0,g=p(this),h=b,i=a.split(s);while(e=i[f++])h=d?h:!g.hasClass(e),g[h?"addClass":"removeClass"](e)}else if(c==="undefined"||c==="boolean")this.className&&p._data(this,"__className__",this.className),this.className=this.className||a===!1?"":p._data(this,"__className__")||""})},hasClass:function(a){var b=" "+a+" ",c=0,d=this.length;for(;c<d;c++)if(this[c].nodeType===1&&(" "+this[c].className+" ").replace(O," ").indexOf(b)>=0)return!0;return!1},val:function(a){var c,d,e,f=this[0];if(!arguments.length){if(f)return c=p.valHooks[f.type]||p.valHooks[f.nodeName.toLowerCase()],c&&"get"in c&&(d=c.get(f,"value"))!==b?d:(d=f.value,typeof d=="string"?d.replace(P,""):d==null?"":d);return}return e=p.isFunction(a),this.each(function(d){var f,g=p(this);if(this.nodeType!==1)return;e?f=a.call(this,d,g.val()):f=a,f==null?f="":typeof f=="number"?f+="":p.isArray(f)&&(f=p.map(f,function(a){return a==null?"":a+""})),c=p.valHooks[this.type]||p.valHooks[this.nodeName.toLowerCase()];if(!c||!("set"in c)||c.set(this,f,"value")===b)this.value=f})}}),p.extend({valHooks:{option:{get:function(a){var b=a.attributes.value;return!b||b.specified?a.value:a.text}},select:{get:function(a){var b,c,d,e,f=a.selectedIndex,g=[],h=a.options,i=a.type==="select-one";if(f<0)return null;c=i?f:0,d=i?f+1:h.length;for(;c<d;c++){e=h[c];if(e.selected&&(p.support.optDisabled?!e.disabled:e.getAttribute("disabled")===null)&&(!e.parentNode.disabled||!p.nodeName(e.parentNode,"optgroup"))){b=p(e).val();if(i)return b;g.push(b)}}return i&&!g.length&&h.length?p(h[f]).val():g},set:function(a,b){var c=p.makeArray(b);return p(a).find("option").each(function(){this.selected=p.inArray(p(this).val(),c)>=0}),c.length||(a.selectedIndex=-1),c}}},attrFn:{},attr:function(a,c,d,e){var f,g,h,i=a.nodeType;if(!a||i===3||i===8||i===2)return;if(e&&p.isFunction(p.fn[c]))return p(a)[c](d);if(typeof a.getAttribute=="undefined")return p.prop(a,c,d);h=i!==1||!p.isXMLDoc(a),h&&(c=c.toLowerCase(),g=p.attrHooks[c]||(T.test(c)?M:L));if(d!==b){if(d===null){p.removeAttr(a,c);return}return g&&"set"in g&&h&&(f=g.set(a,d,c))!==b?f:(a.setAttribute(c,d+""),d)}return g&&"get"in g&&h&&(f=g.get(a,c))!==null?f:(f=a.getAttribute(c),f===null?b:f)},removeAttr:function(a,b){var c,d,e,f,g=0;if(b&&a.nodeType===1){d=b.split(s);for(;g<d.length;g++)e=d[g],e&&(c=p.propFix[e]||e,f=T.test(e),f||p.attr(a,e,""),a.removeAttribute(U?e:c),f&&c in a&&(a[c]=!1))}},attrHooks:{type:{set:function(a,b){if(Q.test(a.nodeName)&&a.parentNode)p.error("type property can't be changed");else if(!p.support.radioValue&&b==="radio"&&p.nodeName(a,"input")){var c=a.value;return a.setAttribute("type",b),c&&(a.value=c),b}}},value:{get:function(a,b){return L&&p.nodeName(a,"button")?L.get(a,b):b in a?a.value:null},set:function(a,b,c){if(L&&p.nodeName(a,"button"))return L.set(a,b,c);a.value=b}}},propFix:{tabindex:"tabIndex",readonly:"readOnly","for":"htmlFor","class":"className",maxlength:"maxLength",cellspacing:"cellSpacing",cellpadding:"cellPadding",rowspan:"rowSpan",colspan:"colSpan",usemap:"useMap",frameborder:"frameBorder",contenteditable:"contentEditable"},prop:function(a,c,d){var e,f,g,h=a.nodeType;if(!a||h===3||h===8||h===2)return;return g=h!==1||!p.isXMLDoc(a),g&&(c=p.propFix[c]||c,f=p.propHooks[c]),d!==b?f&&"set"in f&&(e=f.set(a,d,c))!==b?e:a[c]=d:f&&"get"in f&&(e=f.get(a,c))!==null?e:a[c]},propHooks:{tabIndex:{get:function(a){var c=a.getAttributeNode("tabindex");return c&&c.specified?parseInt(c.value,10):R.test(a.nodeName)||S.test(a.nodeName)&&a.href?0:b}}}}),M={get:function(a,c){var d,e=p.prop(a,c);return e===!0||typeof e!="boolean"&&(d=a.getAttributeNode(c))&&d.nodeValue!==!1?c.toLowerCase():b},set:function(a,b,c){var d;return b===!1?p.removeAttr(a,c):(d=p.propFix[c]||c,d in a&&(a[d]=!0),a.setAttribute(c,c.toLowerCase())),c}},U||(N={name:!0,id:!0,coords:!0},L=p.valHooks.button={get:function(a,c){var d;return d=a.getAttributeNode(c),d&&(N[c]?d.value!=="":d.specified)?d.value:b},set:function(a,b,c){var d=a.getAttributeNode(c);return d||(d=e.createAttribute(c),a.setAttributeNode(d)),d.value=b+""}},p.each(["width","height"],function(a,b){p.attrHooks[b]=p.extend(p.attrHooks[b],{set:function(a,c){if(c==="")return a.setAttribute(b,"auto"),c}})}),p.attrHooks.contenteditable={get:L.get,set:function(a,b,c){b===""&&(b="false"),L.set(a,b,c)}}),p.support.hrefNormalized||p.each(["href","src","width","height"],function(a,c){p.attrHooks[c]=p.extend(p.attrHooks[c],{get:function(a){var d=a.getAttribute(c,2);return d===null?b:d}})}),p.support.style||(p.attrHooks.style={get:function(a){return a.style.cssText.toLowerCase()||b},set:function(a,b){return a.style.cssText=b+""}}),p.support.optSelected||(p.propHooks.selected=p.extend(p.propHooks.selected,{get:function(a){var b=a.parentNode;return b&&(b.selectedIndex,b.parentNode&&b.parentNode.selectedIndex),null}})),p.support.enctype||(p.propFix.enctype="encoding"),p.support.checkOn||p.each(["radio","checkbox"],function(){p.valHooks[this]={get:function(a){return a.getAttribute("value")===null?"on":a.value}}}),p.each(["radio","checkbox"],function(){p.valHooks[this]=p.extend(p.valHooks[this],{set:function(a,b){if(p.isArray(b))return a.checked=p.inArray(p(a).val(),b)>=0}})});var V=/^(?:textarea|input|select)$/i,W=/^([^\.]*|)(?:\.(.+)|)$/,X=/(?:^|\s)hover(\.\S+|)\b/,Y=/^key/,Z=/^(?:mouse|contextmenu)|click/,$=/^(?:focusinfocus|focusoutblur)$/,_=function(a){return p.event.special.hover?a:a.replace(X,"mouseenter$1 mouseleave$1")};p.event={add:function(a,c,d,e,f){var g,h,i,j,k,l,m,n,o,q,r;if(a.nodeType===3||a.nodeType===8||!c||!d||!(g=p._data(a)))return;d.handler&&(o=d,d=o.handler,f=o.selector),d.guid||(d.guid=p.guid++),i=g.events,i||(g.events=i={}),h=g.handle,h||(g.handle=h=function(a){return typeof p!="undefined"&&(!a||p.event.triggered!==a.type)?p.event.dispatch.apply(h.elem,arguments):b},h.elem=a),c=p.trim(_(c)).split(" ");for(j=0;j<c.length;j++){k=W.exec(c[j])||[],l=k[1],m=(k[2]||"").split(".").sort(),r=p.event.special[l]||{},l=(f?r.delegateType:r.bindType)||l,r=p.event.special[l]||{},n=p.extend({type:l,origType:k[1],data:e,handler:d,guid:d.guid,selector:f,needsContext:f&&p.expr.match.needsContext.test(f),namespace:m.join(".")},o),q=i[l];if(!q){q=i[l]=[],q.delegateCount=0;if(!r.setup||r.setup.call(a,e,m,h)===!1)a.addEventListener?a.addEventListener(l,h,!1):a.attachEvent&&a.attachEvent("on"+l,h)}r.add&&(r.add.call(a,n),n.handler.guid||(n.handler.guid=d.guid)),f?q.splice(q.delegateCount++,0,n):q.push(n),p.event.global[l]=!0}a=null},global:{},remove:function(a,b,c,d,e){var f,g,h,i,j,k,l,m,n,o,q,r=p.hasData(a)&&p._data(a);if(!r||!(m=r.events))return;b=p.trim(_(b||"")).split(" ");for(f=0;f<b.length;f++){g=W.exec(b[f])||[],h=i=g[1],j=g[2];if(!h){for(h in m)p.event.remove(a,h+b[f],c,d,!0);continue}n=p.event.special[h]||{},h=(d?n.delegateType:n.bindType)||h,o=m[h]||[],k=o.length,j=j?new RegExp("(^|\\.)"+j.split(".").sort().join("\\.(?:.*\\.|)")+"(\\.|$)"):null;for(l=0;l<o.length;l++)q=o[l],(e||i===q.origType)&&(!c||c.guid===q.guid)&&(!j||j.test(q.namespace))&&(!d||d===q.selector||d==="**"&&q.selector)&&(o.splice(l--,1),q.selector&&o.delegateCount--,n.remove&&n.remove.call(a,q));o.length===0&&k!==o.length&&((!n.teardown||n.teardown.call(a,j,r.handle)===!1)&&p.removeEvent(a,h,r.handle),delete m[h])}p.isEmptyObject(m)&&(delete r.handle,p.removeData(a,"events",!0))},customEvent:{getData:!0,setData:!0,changeData:!0},trigger:function(c,d,f,g){if(!f||f.nodeType!==3&&f.nodeType!==8){var h,i,j,k,l,m,n,o,q,r,s=c.type||c,t=[];if($.test(s+p.event.triggered))return;s.indexOf("!")>=0&&(s=s.slice(0,-1),i=!0),s.indexOf(".")>=0&&(t=s.split("."),s=t.shift(),t.sort());if((!f||p.event.customEvent[s])&&!p.event.global[s])return;c=typeof c=="object"?c[p.expando]?c:new p.Event(s,c):new p.Event(s),c.type=s,c.isTrigger=!0,c.exclusive=i,c.namespace=t.join("."),c.namespace_re=c.namespace?new RegExp("(^|\\.)"+t.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,m=s.indexOf(":")<0?"on"+s:"";if(!f){h=p.cache;for(j in h)h[j].events&&h[j].events[s]&&p.event.trigger(c,d,h[j].handle.elem,!0);return}c.result=b,c.target||(c.target=f),d=d!=null?p.makeArray(d):[],d.unshift(c),n=p.event.special[s]||{};if(n.trigger&&n.trigger.apply(f,d)===!1)return;q=[[f,n.bindType||s]];if(!g&&!n.noBubble&&!p.isWindow(f)){r=n.delegateType||s,k=$.test(r+s)?f:f.parentNode;for(l=f;k;k=k.parentNode)q.push([k,r]),l=k;l===(f.ownerDocument||e)&&q.push([l.defaultView||l.parentWindow||a,r])}for(j=0;j<q.length&&!c.isPropagationStopped();j++)k=q[j][0],c.type=q[j][1],o=(p._data(k,"events")||{})[c.type]&&p._data(k,"handle"),o&&o.apply(k,d),o=m&&k[m],o&&p.acceptData(k)&&o.apply&&o.apply(k,d)===!1&&c.preventDefault();return c.type=s,!g&&!c.isDefaultPrevented()&&(!n._default||n._default.apply(f.ownerDocument,d)===!1)&&(s!=="click"||!p.nodeName(f,"a"))&&p.acceptData(f)&&m&&f[s]&&(s!=="focus"&&s!=="blur"||c.target.offsetWidth!==0)&&!p.isWindow(f)&&(l=f[m],l&&(f[m]=null),p.event.triggered=s,f[s](),p.event.triggered=b,l&&(f[m]=l)),c.result}return},dispatch:function(c){c=p.event.fix(c||a.event);var d,e,f,g,h,i,j,l,m,n,o=(p._data(this,"events")||{})[c.type]||[],q=o.delegateCount,r=k.call(arguments),s=!c.exclusive&&!c.namespace,t=p.event.special[c.type]||{},u=[];r[0]=c,c.delegateTarget=this;if(t.preDispatch&&t.preDispatch.call(this,c)===!1)return;if(q&&(!c.button||c.type!=="click"))for(f=c.target;f!=this;f=f.parentNode||this)if(f.disabled!==!0||c.type!=="click"){h={},j=[];for(d=0;d<q;d++)l=o[d],m=l.selector,h[m]===b&&(h[m]=l.needsContext?p(m,this).index(f)>=0:p.find(m,this,null,[f]).length),h[m]&&j.push(l);j.length&&u.push({elem:f,matches:j})}o.length>q&&u.push({elem:this,matches:o.slice(q)});for(d=0;d<u.length&&!c.isPropagationStopped();d++){i=u[d],c.currentTarget=i.elem;for(e=0;e<i.matches.length&&!c.isImmediatePropagationStopped();e++){l=i.matches[e];if(s||!c.namespace&&!l.namespace||c.namespace_re&&c.namespace_re.test(l.namespace))c.data=l.data,c.handleObj=l,g=((p.event.special[l.origType]||{}).handle||l.handler).apply(i.elem,r),g!==b&&(c.result=g,g===!1&&(c.preventDefault(),c.stopPropagation()))}}return t.postDispatch&&t.postDispatch.call(this,c),c.result},props:"attrChange attrName relatedNode srcElement altKey bubbles cancelable ctrlKey currentTarget eventPhase metaKey relatedTarget shiftKey target timeStamp view which".split(" "),fixHooks:{},keyHooks:{props:"char charCode key keyCode".split(" "),filter:function(a,b){return a.which==null&&(a.which=b.charCode!=null?b.charCode:b.keyCode),a}},mouseHooks:{props:"button buttons clientX clientY fromElement offsetX offsetY pageX pageY screenX screenY toElement".split(" "),filter:function(a,c){var d,f,g,h=c.button,i=c.fromElement;return a.pageX==null&&c.clientX!=null&&(d=a.target.ownerDocument||e,f=d.documentElement,g=d.body,a.pageX=c.clientX+(f&&f.scrollLeft||g&&g.scrollLeft||0)-(f&&f.clientLeft||g&&g.clientLeft||0),a.pageY=c.clientY+(f&&f.scrollTop||g&&g.scrollTop||0)-(f&&f.clientTop||g&&g.clientTop||0)),!a.relatedTarget&&i&&(a.relatedTarget=i===a.target?c.toElement:i),!a.which&&h!==b&&(a.which=h&1?1:h&2?3:h&4?2:0),a}},fix:function(a){if(a[p.expando])return a;var b,c,d=a,f=p.event.fixHooks[a.type]||{},g=f.props?this.props.concat(f.props):this.props;a=p.Event(d);for(b=g.length;b;)c=g[--b],a[c]=d[c];return a.target||(a.target=d.srcElement||e),a.target.nodeType===3&&(a.target=a.target.parentNode),a.metaKey=!!a.metaKey,f.filter?f.filter(a,d):a},special:{load:{noBubble:!0},focus:{delegateType:"focusin"},blur:{delegateType:"focusout"},beforeunload:{setup:function(a,b,c){p.isWindow(this)&&(this.onbeforeunload=c)},teardown:function(a,b){this.onbeforeunload===b&&(this.onbeforeunload=null)}}},simulate:function(a,b,c,d){var e=p.extend(new p.Event,c,{type:a,isSimulated:!0,originalEvent:{}});d?p.event.trigger(e,null,b):p.event.dispatch.call(b,e),e.isDefaultPrevented()&&c.preventDefault()}},p.event.handle=p.event.dispatch,p.removeEvent=e.removeEventListener?function(a,b,c){a.removeEventListener&&a.removeEventListener(b,c,!1)}:function(a,b,c){var d="on"+b;a.detachEvent&&(typeof a[d]=="undefined"&&(a[d]=null),a.detachEvent(d,c))},p.Event=function(a,b){if(this instanceof p.Event)a&&a.type?(this.originalEvent=a,this.type=a.type,this.isDefaultPrevented=a.defaultPrevented||a.returnValue===!1||a.getPreventDefault&&a.getPreventDefault()?bb:ba):this.type=a,b&&p.extend(this,b),this.timeStamp=a&&a.timeStamp||p.now(),this[p.expando]=!0;else return new p.Event(a,b)},p.Event.prototype={preventDefault:function(){this.isDefaultPrevented=bb;var a=this.originalEvent;if(!a)return;a.preventDefault?a.preventDefault():a.returnValue=!1},stopPropagation:function(){this.isPropagationStopped=bb;var a=this.originalEvent;if(!a)return;a.stopPropagation&&a.stopPropagation(),a.cancelBubble=!0},stopImmediatePropagation:function(){this.isImmediatePropagationStopped=bb,this.stopPropagation()},isDefaultPrevented:ba,isPropagationStopped:ba,isImmediatePropagationStopped:ba},p.each({mouseenter:"mouseover",mouseleave:"mouseout"},function(a,b){p.event.special[a]={delegateType:b,bindType:b,handle:function(a){var c,d=this,e=a.relatedTarget,f=a.handleObj,g=f.selector;if(!e||e!==d&&!p.contains(d,e))a.type=f.origType,c=f.handler.apply(this,arguments),a.type=b;return c}}}),p.support.submitBubbles||(p.event.special.submit={setup:function(){if(p.nodeName(this,"form"))return!1;p.event.add(this,"click._submit keypress._submit",function(a){var c=a.target,d=p.nodeName(c,"input")||p.nodeName(c,"button")?c.form:b;d&&!p._data(d,"_submit_attached")&&(p.event.add(d,"submit._submit",function(a){a._submit_bubble=!0}),p._data(d,"_submit_attached",!0))})},postDispatch:function(a){a._submit_bubble&&(delete a._submit_bubble,this.parentNode&&!a.isTrigger&&p.event.simulate("submit",this.parentNode,a,!0))},teardown:function(){if(p.nodeName(this,"form"))return!1;p.event.remove(this,"._submit")}}),p.support.changeBubbles||(p.event.special.change={setup:function(){if(V.test(this.nodeName)){if(this.type==="checkbox"||this.type==="radio")p.event.add(this,"propertychange._change",function(a){a.originalEvent.propertyName==="checked"&&(this._just_changed=!0)}),p.event.add(this,"click._change",function(a){this._just_changed&&!a.isTrigger&&(this._just_changed=!1),p.event.simulate("change",this,a,!0)});return!1}p.event.add(this,"beforeactivate._change",function(a){var b=a.target;V.test(b.nodeName)&&!p._data(b,"_change_attached")&&(p.event.add(b,"change._change",function(a){this.parentNode&&!a.isSimulated&&!a.isTrigger&&p.event.simulate("change",this.parentNode,a,!0)}),p._data(b,"_change_attached",!0))})},handle:function(a){var b=a.target;if(this!==b||a.isSimulated||a.isTrigger||b.type!=="radio"&&b.type!=="checkbox")return a.handleObj.handler.apply(this,arguments)},teardown:function(){return p.event.remove(this,"._change"),!V.test(this.nodeName)}}),p.support.focusinBubbles||p.each({focus:"focusin",blur:"focusout"},function(a,b){var c=0,d=function(a){p.event.simulate(b,a.target,p.event.fix(a),!0)};p.event.special[b]={setup:function(){c++===0&&e.addEventListener(a,d,!0)},teardown:function(){--c===0&&e.removeEventListener(a,d,!0)}}}),p.fn.extend({on:function(a,c,d,e,f){var g,h;if(typeof a=="object"){typeof c!="string"&&(d=d||c,c=b);for(h in a)this.on(h,c,d,a[h],f);return this}d==null&&e==null?(e=c,d=c=b):e==null&&(typeof c=="string"?(e=d,d=b):(e=d,d=c,c=b));if(e===!1)e=ba;else if(!e)return this;return f===1&&(g=e,e=function(a){return p().off(a),g.apply(this,arguments)},e.guid=g.guid||(g.guid=p.guid++)),this.each(function(){p.event.add(this,a,e,d,c)})},one:function(a,b,c,d){return this.on(a,b,c,d,1)},off:function(a,c,d){var e,f;if(a&&a.preventDefault&&a.handleObj)return e=a.handleObj,p(a.delegateTarget).off(e.namespace?e.origType+"."+e.namespace:e.origType,e.selector,e.handler),this;if(typeof a=="object"){for(f in a)this.off(f,c,a[f]);return this}if(c===!1||typeof c=="function")d=c,c=b;return d===!1&&(d=ba),this.each(function(){p.event.remove(this,a,d,c)})},bind:function(a,b,c){return this.on(a,null,b,c)},unbind:function(a,b){return this.off(a,null,b)},live:function(a,b,c){return p(this.context).on(a,this.selector,b,c),this},die:function(a,b){return p(this.context).off(a,this.selector||"**",b),this},delegate:function(a,b,c,d){return this.on(b,a,c,d)},undelegate:function(a,b,c){return arguments.length===1?this.off(a,"**"):this.off(b,a||"**",c)},trigger:function(a,b){return this.each(function(){p.event.trigger(a,b,this)})},triggerHandler:function(a,b){if(this[0])return p.event.trigger(a,b,this[0],!0)},toggle:function(a){var b=arguments,c=a.guid||p.guid++,d=0,e=function(c){var e=(p._data(this,"lastToggle"+a.guid)||0)%d;return p._data(this,"lastToggle"+a.guid,e+1),c.preventDefault(),b[e].apply(this,arguments)||!1};e.guid=c;while(d<b.length)b[d++].guid=c;return this.click(e)},hover:function(a,b){return this.mouseenter(a).mouseleave(b||a)}}),p.each("blur focus focusin focusout load resize scroll unload click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup error contextmenu".split(" "),function(a,b){p.fn[b]=function(a,c){return c==null&&(c=a,a=null),arguments.length>0?this.on(b,null,a,c):this.trigger(b)},Y.test(b)&&(p.event.fixHooks[b]=p.event.keyHooks),Z.test(b)&&(p.event.fixHooks[b]=p.event.mouseHooks)}),function(a,b){function bc(a,b,c,d){c=c||[],b=b||r;var e,f,i,j,k=b.nodeType;if(!a||typeof a!="string")return c;if(k!==1&&k!==9)return[];i=g(b);if(!i&&!d)if(e=P.exec(a))if(j=e[1]){if(k===9){f=b.getElementById(j);if(!f||!f.parentNode)return c;if(f.id===j)return c.push(f),c}else if(b.ownerDocument&&(f=b.ownerDocument.getElementById(j))&&h(b,f)&&f.id===j)return c.push(f),c}else{if(e[2])return w.apply(c,x.call(b.getElementsByTagName(a),0)),c;if((j=e[3])&&_&&b.getElementsByClassName)return w.apply(c,x.call(b.getElementsByClassName(j),0)),c}return bp(a.replace(L,"$1"),b,c,d,i)}function bd(a){return function(b){var c=b.nodeName.toLowerCase();return c==="input"&&b.type===a}}function be(a){return function(b){var c=b.nodeName.toLowerCase();return(c==="input"||c==="button")&&b.type===a}}function bf(a){return z(function(b){return b=+b,z(function(c,d){var e,f=a([],c.length,b),g=f.length;while(g--)c[e=f[g]]&&(c[e]=!(d[e]=c[e]))})})}function bg(a,b,c){if(a===b)return c;var d=a.nextSibling;while(d){if(d===b)return-1;d=d.nextSibling}return 1}function bh(a,b){var c,d,f,g,h,i,j,k=C[o][a];if(k)return b?0:k.slice(0);h=a,i=[],j=e.preFilter;while(h){if(!c||(d=M.exec(h)))d&&(h=h.slice(d[0].length)),i.push(f=[]);c=!1;if(d=N.exec(h))f.push(c=new q(d.shift())),h=h.slice(c.length),c.type=d[0].replace(L," ");for(g in e.filter)(d=W[g].exec(h))&&(!j[g]||(d=j[g](d,r,!0)))&&(f.push(c=new q(d.shift())),h=h.slice(c.length),c.type=g,c.matches=d);if(!c)break}return b?h.length:h?bc.error(a):C(a,i).slice(0)}function bi(a,b,d){var e=b.dir,f=d&&b.dir==="parentNode",g=u++;return b.first?function(b,c,d){while(b=b[e])if(f||b.nodeType===1)return a(b,c,d)}:function(b,d,h){if(!h){var i,j=t+" "+g+" ",k=j+c;while(b=b[e])if(f||b.nodeType===1){if((i=b[o])===k)return b.sizset;if(typeof i=="string"&&i.indexOf(j)===0){if(b.sizset)return b}else{b[o]=k;if(a(b,d,h))return b.sizset=!0,b;b.sizset=!1}}}else while(b=b[e])if(f||b.nodeType===1)if(a(b,d,h))return b}}function bj(a){return a.length>1?function(b,c,d){var e=a.length;while(e--)if(!a[e](b,c,d))return!1;return!0}:a[0]}function bk(a,b,c,d,e){var f,g=[],h=0,i=a.length,j=b!=null;for(;h<i;h++)if(f=a[h])if(!c||c(f,d,e))g.push(f),j&&b.push(h);return g}function bl(a,b,c,d,e,f){return d&&!d[o]&&(d=bl(d)),e&&!e[o]&&(e=bl(e,f)),z(function(f,g,h,i){if(f&&e)return;var j,k,l,m=[],n=[],o=g.length,p=f||bo(b||"*",h.nodeType?[h]:h,[],f),q=a&&(f||!b)?bk(p,m,a,h,i):p,r=c?e||(f?a:o||d)?[]:g:q;c&&c(q,r,h,i);if(d){l=bk(r,n),d(l,[],h,i),j=l.length;while(j--)if(k=l[j])r[n[j]]=!(q[n[j]]=k)}if(f){j=a&&r.length;while(j--)if(k=r[j])f[m[j]]=!(g[m[j]]=k)}else r=bk(r===g?r.splice(o,r.length):r),e?e(null,g,r,i):w.apply(g,r)})}function bm(a){var b,c,d,f=a.length,g=e.relative[a[0].type],h=g||e.relative[" "],i=g?1:0,j=bi(function(a){return a===b},h,!0),k=bi(function(a){return y.call(b,a)>-1},h,!0),m=[function(a,c,d){return!g&&(d||c!==l)||((b=c).nodeType?j(a,c,d):k(a,c,d))}];for(;i<f;i++)if(c=e.relative[a[i].type])m=[bi(bj(m),c)];else{c=e.filter[a[i].type].apply(null,a[i].matches);if(c[o]){d=++i;for(;d<f;d++)if(e.relative[a[d].type])break;return bl(i>1&&bj(m),i>1&&a.slice(0,i-1).join("").replace(L,"$1"),c,i<d&&bm(a.slice(i,d)),d<f&&bm(a=a.slice(d)),d<f&&a.join(""))}m.push(c)}return bj(m)}function bn(a,b){var d=b.length>0,f=a.length>0,g=function(h,i,j,k,m){var n,o,p,q=[],s=0,u="0",x=h&&[],y=m!=null,z=l,A=h||f&&e.find.TAG("*",m&&i.parentNode||i),B=t+=z==null?1:Math.E;y&&(l=i!==r&&i,c=g.el);for(;(n=A[u])!=null;u++){if(f&&n){for(o=0;p=a[o];o++)if(p(n,i,j)){k.push(n);break}y&&(t=B,c=++g.el)}d&&((n=!p&&n)&&s--,h&&x.push(n))}s+=u;if(d&&u!==s){for(o=0;p=b[o];o++)p(x,q,i,j);if(h){if(s>0)while(u--)!x[u]&&!q[u]&&(q[u]=v.call(k));q=bk(q)}w.apply(k,q),y&&!h&&q.length>0&&s+b.length>1&&bc.uniqueSort(k)}return y&&(t=B,l=z),x};return g.el=0,d?z(g):g}function bo(a,b,c,d){var e=0,f=b.length;for(;e<f;e++)bc(a,b[e],c,d);return c}function bp(a,b,c,d,f){var g,h,j,k,l,m=bh(a),n=m.length;if(!d&&m.length===1){h=m[0]=m[0].slice(0);if(h.length>2&&(j=h[0]).type==="ID"&&b.nodeType===9&&!f&&e.relative[h[1].type]){b=e.find.ID(j.matches[0].replace(V,""),b,f)[0];if(!b)return c;a=a.slice(h.shift().length)}for(g=W.POS.test(a)?-1:h.length-1;g>=0;g--){j=h[g];if(e.relative[k=j.type])break;if(l=e.find[k])if(d=l(j.matches[0].replace(V,""),R.test(h[0].type)&&b.parentNode||b,f)){h.splice(g,1),a=d.length&&h.join("");if(!a)return w.apply(c,x.call(d,0)),c;break}}}return i(a,m)(d,b,f,c,R.test(a)),c}function bq(){}var c,d,e,f,g,h,i,j,k,l,m=!0,n="undefined",o=("sizcache"+Math.random()).replace(".",""),q=String,r=a.document,s=r.documentElement,t=0,u=0,v=[].pop,w=[].push,x=[].slice,y=[].indexOf||function(a){var b=0,c=this.length;for(;b<c;b++)if(this[b]===a)return b;return-1},z=function(a,b){return a[o]=b==null||b,a},A=function(){var a={},b=[];return z(function(c,d){return b.push(c)>e.cacheLength&&delete a[b.shift()],a[c]=d},a)},B=A(),C=A(),D=A(),E="[\\x20\\t\\r\\n\\f]",F="(?:\\\\.|[-\\w]|[^\\x00-\\xa0])+",G=F.replace("w","w#"),H="([*^$|!~]?=)",I="\\["+E+"*("+F+")"+E+"*(?:"+H+E+"*(?:(['\"])((?:\\\\.|[^\\\\])*?)\\3|("+G+")|)|)"+E+"*\\]",J=":("+F+")(?:\\((?:(['\"])((?:\\\\.|[^\\\\])*?)\\2|([^()[\\]]*|(?:(?:"+I+")|[^:]|\\\\.)*|.*))\\)|)",K=":(even|odd|eq|gt|lt|nth|first|last)(?:\\("+E+"*((?:-\\d)?\\d*)"+E+"*\\)|)(?=[^-]|$)",L=new RegExp("^"+E+"+|((?:^|[^\\\\])(?:\\\\.)*)"+E+"+$","g"),M=new RegExp("^"+E+"*,"+E+"*"),N=new RegExp("^"+E+"*([\\x20\\t\\r\\n\\f>+~])"+E+"*"),O=new RegExp(J),P=/^(?:#([\w\-]+)|(\w+)|\.([\w\-]+))$/,Q=/^:not/,R=/[\x20\t\r\n\f]*[+~]/,S=/:not\($/,T=/h\d/i,U=/input|select|textarea|button/i,V=/\\(?!\\)/g,W={ID:new RegExp("^#("+F+")"),CLASS:new RegExp("^\\.("+F+")"),NAME:new RegExp("^\\[name=['\"]?("+F+")['\"]?\\]"),TAG:new RegExp("^("+F.replace("w","w*")+")"),ATTR:new RegExp("^"+I),PSEUDO:new RegExp("^"+J),POS:new RegExp(K,"i"),CHILD:new RegExp("^:(only|nth|first|last)-child(?:\\("+E+"*(even|odd|(([+-]|)(\\d*)n|)"+E+"*(?:([+-]|)"+E+"*(\\d+)|))"+E+"*\\)|)","i"),needsContext:new RegExp("^"+E+"*[>+~]|"+K,"i")},X=function(a){var b=r.createElement("div");try{return a(b)}catch(c){return!1}finally{b=null}},Y=X(function(a){return a.appendChild(r.createComment("")),!a.getElementsByTagName("*").length}),Z=X(function(a){return a.innerHTML="<a href='#'></a>",a.firstChild&&typeof a.firstChild.getAttribute!==n&&a.firstChild.getAttribute("href")==="#"}),$=X(function(a){a.innerHTML="<select></select>";var b=typeof a.lastChild.getAttribute("multiple");return b!=="boolean"&&b!=="string"}),_=X(function(a){return a.innerHTML="<div class='hidden e'></div><div class='hidden'></div>",!a.getElementsByClassName||!a.getElementsByClassName("e").length?!1:(a.lastChild.className="e",a.getElementsByClassName("e").length===2)}),ba=X(function(a){a.id=o+0,a.innerHTML="<a name='"+o+"'></a><div name='"+o+"'></div>",s.insertBefore(a,s.firstChild);var b=r.getElementsByName&&r.getElementsByName(o).length===2+r.getElementsByName(o+0).length;return d=!r.getElementById(o),s.removeChild(a),b});try{x.call(s.childNodes,0)[0].nodeType}catch(bb){x=function(a){var b,c=[];for(;b=this[a];a++)c.push(b);return c}}bc.matches=function(a,b){return bc(a,null,null,b)},bc.matchesSelector=function(a,b){return bc(b,null,null,[a]).length>0},f=bc.getText=function(a){var b,c="",d=0,e=a.nodeType;if(e){if(e===1||e===9||e===11){if(typeof a.textContent=="string")return a.textContent;for(a=a.firstChild;a;a=a.nextSibling)c+=f(a)}else if(e===3||e===4)return a.nodeValue}else for(;b=a[d];d++)c+=f(b);return c},g=bc.isXML=function(a){var b=a&&(a.ownerDocument||a).documentElement;return b?b.nodeName!=="HTML":!1},h=bc.contains=s.contains?function(a,b){var c=a.nodeType===9?a.documentElement:a,d=b&&b.parentNode;return a===d||!!(d&&d.nodeType===1&&c.contains&&c.contains(d))}:s.compareDocumentPosition?function(a,b){return b&&!!(a.compareDocumentPosition(b)&16)}:function(a,b){while(b=b.parentNode)if(b===a)return!0;return!1},bc.attr=function(a,b){var c,d=g(a);return d||(b=b.toLowerCase()),(c=e.attrHandle[b])?c(a):d||$?a.getAttribute(b):(c=a.getAttributeNode(b),c?typeof a[b]=="boolean"?a[b]?b:null:c.specified?c.value:null:null)},e=bc.selectors={cacheLength:50,createPseudo:z,match:W,attrHandle:Z?{}:{href:function(a){return a.getAttribute("href",2)},type:function(a){return a.getAttribute("type")}},find:{ID:d?function(a,b,c){if(typeof b.getElementById!==n&&!c){var d=b.getElementById(a);return d&&d.parentNode?[d]:[]}}:function(a,c,d){if(typeof c.getElementById!==n&&!d){var e=c.getElementById(a);return e?e.id===a||typeof e.getAttributeNode!==n&&e.getAttributeNode("id").value===a?[e]:b:[]}},TAG:Y?function(a,b){if(typeof b.getElementsByTagName!==n)return b.getElementsByTagName(a)}:function(a,b){var c=b.getElementsByTagName(a);if(a==="*"){var d,e=[],f=0;for(;d=c[f];f++)d.nodeType===1&&e.push(d);return e}return c},NAME:ba&&function(a,b){if(typeof b.getElementsByName!==n)return b.getElementsByName(name)},CLASS:_&&function(a,b,c){if(typeof b.getElementsByClassName!==n&&!c)return b.getElementsByClassName(a)}},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(a){return a[1]=a[1].replace(V,""),a[3]=(a[4]||a[5]||"").replace(V,""),a[2]==="~="&&(a[3]=" "+a[3]+" "),a.slice(0,4)},CHILD:function(a){return a[1]=a[1].toLowerCase(),a[1]==="nth"?(a[2]||bc.error(a[0]),a[3]=+(a[3]?a[4]+(a[5]||1):2*(a[2]==="even"||a[2]==="odd")),a[4]=+(a[6]+a[7]||a[2]==="odd")):a[2]&&bc.error(a[0]),a},PSEUDO:function(a){var b,c;if(W.CHILD.test(a[0]))return null;if(a[3])a[2]=a[3];else if(b=a[4])O.test(b)&&(c=bh(b,!0))&&(c=b.indexOf(")",b.length-c)-b.length)&&(b=b.slice(0,c),a[0]=a[0].slice(0,c)),a[2]=b;return a.slice(0,3)}},filter:{ID:d?function(a){return a=a.replace(V,""),function(b){return b.getAttribute("id")===a}}:function(a){return a=a.replace(V,""),function(b){var c=typeof b.getAttributeNode!==n&&b.getAttributeNode("id");return c&&c.value===a}},TAG:function(a){return a==="*"?function(){return!0}:(a=a.replace(V,"").toLowerCase(),function(b){return b.nodeName&&b.nodeName.toLowerCase()===a})},CLASS:function(a){var b=B[o][a];return b||(b=B(a,new RegExp("(^|"+E+")"+a+"("+E+"|$)"))),function(a){return b.test(a.className||typeof a.getAttribute!==n&&a.getAttribute("class")||"")}},ATTR:function(a,b,c){return function(d,e){var f=bc.attr(d,a);return f==null?b==="!=":b?(f+="",b==="="?f===c:b==="!="?f!==c:b==="^="?c&&f.indexOf(c)===0:b==="*="?c&&f.indexOf(c)>-1:b==="$="?c&&f.substr(f.length-c.length)===c:b==="~="?(" "+f+" ").indexOf(c)>-1:b==="|="?f===c||f.substr(0,c.length+1)===c+"-":!1):!0}},CHILD:function(a,b,c,d){return a==="nth"?function(a){var b,e,f=a.parentNode;if(c===1&&d===0)return!0;if(f){e=0;for(b=f.firstChild;b;b=b.nextSibling)if(b.nodeType===1){e++;if(a===b)break}}return e-=d,e===c||e%c===0&&e/c>=0}:function(b){var c=b;switch(a){case"only":case"first":while(c=c.previousSibling)if(c.nodeType===1)return!1;if(a==="first")return!0;c=b;case"last":while(c=c.nextSibling)if(c.nodeType===1)return!1;return!0}}},PSEUDO:function(a,b){var c,d=e.pseudos[a]||e.setFilters[a.toLowerCase()]||bc.error("unsupported pseudo: "+a);return d[o]?d(b):d.length>1?(c=[a,a,"",b],e.setFilters.hasOwnProperty(a.toLowerCase())?z(function(a,c){var e,f=d(a,b),g=f.length;while(g--)e=y.call(a,f[g]),a[e]=!(c[e]=f[g])}):function(a){return d(a,0,c)}):d}},pseudos:{not:z(function(a){var b=[],c=[],d=i(a.replace(L,"$1"));return d[o]?z(function(a,b,c,e){var f,g=d(a,null,e,[]),h=a.length;while(h--)if(f=g[h])a[h]=!(b[h]=f)}):function(a,e,f){return b[0]=a,d(b,null,f,c),!c.pop()}}),has:z(function(a){return function(b){return bc(a,b).length>0}}),contains:z(function(a){return function(b){return(b.textContent||b.innerText||f(b)).indexOf(a)>-1}}),enabled:function(a){return a.disabled===!1},disabled:function(a){return a.disabled===!0},checked:function(a){var b=a.nodeName.toLowerCase();return b==="input"&&!!a.checked||b==="option"&&!!a.selected},selected:function(a){return a.parentNode&&a.parentNode.selectedIndex,a.selected===!0},parent:function(a){return!e.pseudos.empty(a)},empty:function(a){var b;a=a.firstChild;while(a){if(a.nodeName>"@"||(b=a.nodeType)===3||b===4)return!1;a=a.nextSibling}return!0},header:function(a){return T.test(a.nodeName)},text:function(a){var b,c;return a.nodeName.toLowerCase()==="input"&&(b=a.type)==="text"&&((c=a.getAttribute("type"))==null||c.toLowerCase()===b)},radio:bd("radio"),checkbox:bd("checkbox"),file:bd("file"),password:bd("password"),image:bd("image"),submit:be("submit"),reset:be("reset"),button:function(a){var b=a.nodeName.toLowerCase();return b==="input"&&a.type==="button"||b==="button"},input:function(a){return U.test(a.nodeName)},focus:function(a){var b=a.ownerDocument;return a===b.activeElement&&(!b.hasFocus||b.hasFocus())&&(!!a.type||!!a.href)},active:function(a){return a===a.ownerDocument.activeElement},first:bf(function(a,b,c){return[0]}),last:bf(function(a,b,c){return[b-1]}),eq:bf(function(a,b,c){return[c<0?c+b:c]}),even:bf(function(a,b,c){for(var d=0;d<b;d+=2)a.push(d);return a}),odd:bf(function(a,b,c){for(var d=1;d<b;d+=2)a.push(d);return a}),lt:bf(function(a,b,c){for(var d=c<0?c+b:c;--d>=0;)a.push(d);return a}),gt:bf(function(a,b,c){for(var d=c<0?c+b:c;++d<b;)a.push(d);return a})}},j=s.compareDocumentPosition?function(a,b){return a===b?(k=!0,0):(!a.compareDocumentPosition||!b.compareDocumentPosition?a.compareDocumentPosition:a.compareDocumentPosition(b)&4)?-1:1}:function(a,b){if(a===b)return k=!0,0;if(a.sourceIndex&&b.sourceIndex)return a.sourceIndex-b.sourceIndex;var c,d,e=[],f=[],g=a.parentNode,h=b.parentNode,i=g;if(g===h)return bg(a,b);if(!g)return-1;if(!h)return 1;while(i)e.unshift(i),i=i.parentNode;i=h;while(i)f.unshift(i),i=i.parentNode;c=e.length,d=f.length;for(var j=0;j<c&&j<d;j++)if(e[j]!==f[j])return bg(e[j],f[j]);return j===c?bg(a,f[j],-1):bg(e[j],b,1)},[0,0].sort(j),m=!k,bc.uniqueSort=function(a){var b,c=1;k=m,a.sort(j);if(k)for(;b=a[c];c++)b===a[c-1]&&a.splice(c--,1);return a},bc.error=function(a){throw new Error("Syntax error, unrecognized expression: "+a)},i=bc.compile=function(a,b){var c,d=[],e=[],f=D[o][a];if(!f){b||(b=bh(a)),c=b.length;while(c--)f=bm(b[c]),f[o]?d.push(f):e.push(f);f=D(a,bn(e,d))}return f},r.querySelectorAll&&function(){var a,b=bp,c=/'|\\/g,d=/\=[\x20\t\r\n\f]*([^'"\]]*)[\x20\t\r\n\f]*\]/g,e=[":focus"],f=[":active",":focus"],h=s.matchesSelector||s.mozMatchesSelector||s.webkitMatchesSelector||s.oMatchesSelector||s.msMatchesSelector;X(function(a){a.innerHTML="<select><option selected=''></option></select>",a.querySelectorAll("[selected]").length||e.push("\\["+E+"*(?:checked|disabled|ismap|multiple|readonly|selected|value)"),a.querySelectorAll(":checked").length||e.push(":checked")}),X(function(a){a.innerHTML="<p test=''></p>",a.querySelectorAll("[test^='']").length&&e.push("[*^$]="+E+"*(?:\"\"|'')"),a.innerHTML="<input type='hidden'/>",a.querySelectorAll(":enabled").length||e.push(":enabled",":disabled")}),e=new RegExp(e.join("|")),bp=function(a,d,f,g,h){if(!g&&!h&&(!e||!e.test(a))){var i,j,k=!0,l=o,m=d,n=d.nodeType===9&&a;if(d.nodeType===1&&d.nodeName.toLowerCase()!=="object"){i=bh(a),(k=d.getAttribute("id"))?l=k.replace(c,"\\$&"):d.setAttribute("id",l),l="[id='"+l+"'] ",j=i.length;while(j--)i[j]=l+i[j].join("");m=R.test(a)&&d.parentNode||d,n=i.join(",")}if(n)try{return w.apply(f,x.call(m.querySelectorAll(n),0)),f}catch(p){}finally{k||d.removeAttribute("id")}}return b(a,d,f,g,h)},h&&(X(function(b){a=h.call(b,"div");try{h.call(b,"[test!='']:sizzle"),f.push("!=",J)}catch(c){}}),f=new RegExp(f.join("|")),bc.matchesSelector=function(b,c){c=c.replace(d,"='$1']");if(!g(b)&&!f.test(c)&&(!e||!e.test(c)))try{var i=h.call(b,c);if(i||a||b.document&&b.document.nodeType!==11)return i}catch(j){}return bc(c,null,null,[b]).length>0})}(),e.pseudos.nth=e.pseudos.eq,e.filters=bq.prototype=e.pseudos,e.setFilters=new bq,bc.attr=p.attr,p.find=bc,p.expr=bc.selectors,p.expr[":"]=p.expr.pseudos,p.unique=bc.uniqueSort,p.text=bc.getText,p.isXMLDoc=bc.isXML,p.contains=bc.contains}(a);var bc=/Until$/,bd=/^(?:parents|prev(?:Until|All))/,be=/^.[^:#\[\.,]*$/,bf=p.expr.match.needsContext,bg={children:!0,contents:!0,next:!0,prev:!0};p.fn.extend({find:function(a){var b,c,d,e,f,g,h=this;if(typeof a!="string")return p(a).filter(function(){for(b=0,c=h.length;b<c;b++)if(p.contains(h[b],this))return!0});g=this.pushStack("","find",a);for(b=0,c=this.length;b<c;b++){d=g.length,p.find(a,this[b],g);if(b>0)for(e=d;e<g.length;e++)for(f=0;f<d;f++)if(g[f]===g[e]){g.splice(e--,1);break}}return g},has:function(a){var b,c=p(a,this),d=c.length;return this.filter(function(){for(b=0;b<d;b++)if(p.contains(this,c[b]))return!0})},not:function(a){return this.pushStack(bj(this,a,!1),"not",a)},filter:function(a){return this.pushStack(bj(this,a,!0),"filter",a)},is:function(a){return!!a&&(typeof a=="string"?bf.test(a)?p(a,this.context).index(this[0])>=0:p.filter(a,this).length>0:this.filter(a).length>0)},closest:function(a,b){var c,d=0,e=this.length,f=[],g=bf.test(a)||typeof a!="string"?p(a,b||this.context):0;for(;d<e;d++){c=this[d];while(c&&c.ownerDocument&&c!==b&&c.nodeType!==11){if(g?g.index(c)>-1:p.find.matchesSelector(c,a)){f.push(c);break}c=c.parentNode}}return f=f.length>1?p.unique(f):f,this.pushStack(f,"closest",a)},index:function(a){return a?typeof a=="string"?p.inArray(this[0],p(a)):p.inArray(a.jquery?a[0]:a,this):this[0]&&this[0].parentNode?this.prevAll().length:-1},add:function(a,b){var c=typeof a=="string"?p(a,b):p.makeArray(a&&a.nodeType?[a]:a),d=p.merge(this.get(),c);return this.pushStack(bh(c[0])||bh(d[0])?d:p.unique(d))},addBack:function(a){return this.add(a==null?this.prevObject:this.prevObject.filter(a))}}),p.fn.andSelf=p.fn.addBack,p.each({parent:function(a){var b=a.parentNode;return b&&b.nodeType!==11?b:null},parents:function(a){return p.dir(a,"parentNode")},parentsUntil:function(a,b,c){return p.dir(a,"parentNode",c)},next:function(a){return bi(a,"nextSibling")},prev:function(a){return bi(a,"previousSibling")},nextAll:function(a){return p.dir(a,"nextSibling")},prevAll:function(a){return p.dir(a,"previousSibling")},nextUntil:function(a,b,c){return p.dir(a,"nextSibling",c)},prevUntil:function(a,b,c){return p.dir(a,"previousSibling",c)},siblings:function(a){return p.sibling((a.parentNode||{}).firstChild,a)},children:function(a){return p.sibling(a.firstChild)},contents:function(a){return p.nodeName(a,"iframe")?a.contentDocument||a.contentWindow.document:p.merge([],a.childNodes)}},function(a,b){p.fn[a]=function(c,d){var e=p.map(this,b,c);return bc.test(a)||(d=c),d&&typeof d=="string"&&(e=p.filter(d,e)),e=this.length>1&&!bg[a]?p.unique(e):e,this.length>1&&bd.test(a)&&(e=e.reverse()),this.pushStack(e,a,k.call(arguments).join(","))}}),p.extend({filter:function(a,b,c){return c&&(a=":not("+a+")"),b.length===1?p.find.matchesSelector(b[0],a)?[b[0]]:[]:p.find.matches(a,b)},dir:function(a,c,d){var e=[],f=a[c];while(f&&f.nodeType!==9&&(d===b||f.nodeType!==1||!p(f).is(d)))f.nodeType===1&&e.push(f),f=f[c];return e},sibling:function(a,b){var c=[];for(;a;a=a.nextSibling)a.nodeType===1&&a!==b&&c.push(a);return c}});var bl="abbr|article|aside|audio|bdi|canvas|data|datalist|details|figcaption|figure|footer|header|hgroup|mark|meter|nav|output|progress|section|summary|time|video",bm=/ jQuery\d+="(?:null|\d+)"/g,bn=/^\s+/,bo=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/gi,bp=/<([\w:]+)/,bq=/<tbody/i,br=/<|&#?\w+;/,bs=/<(?:script|style|link)/i,bt=/<(?:script|object|embed|option|style)/i,bu=new RegExp("<(?:"+bl+")[\\s/>]","i"),bv=/^(?:checkbox|radio)$/,bw=/checked\s*(?:[^=]|=\s*.checked.)/i,bx=/\/(java|ecma)script/i,by=/^\s*<!(?:\[CDATA\[|\-\-)|[\]\-]{2}>\s*$/g,bz={option:[1,"<select multiple='multiple'>","</select>"],legend:[1,"<fieldset>","</fieldset>"],thead:[1,"<table>","</table>"],tr:[2,"<table><tbody>","</tbody></table>"],td:[3,"<table><tbody><tr>","</tr></tbody></table>"],col:[2,"<table><tbody></tbody><colgroup>","</colgroup></table>"],area:[1,"<map>","</map>"],_default:[0,"",""]},bA=bk(e),bB=bA.appendChild(e.createElement("div"));bz.optgroup=bz.option,bz.tbody=bz.tfoot=bz.colgroup=bz.caption=bz.thead,bz.th=bz.td,p.support.htmlSerialize||(bz._default=[1,"X<div>","</div>"]),p.fn.extend({text:function(a){return p.access(this,function(a){return a===b?p.text(this):this.empty().append((this[0]&&this[0].ownerDocument||e).createTextNode(a))},null,a,arguments.length)},wrapAll:function(a){if(p.isFunction(a))return this.each(function(b){p(this).wrapAll(a.call(this,b))});if(this[0]){var b=p(a,this[0].ownerDocument).eq(0).clone(!0);this[0].parentNode&&b.insertBefore(this[0]),b.map(function(){var a=this;while(a.firstChild&&a.firstChild.nodeType===1)a=a.firstChild;return a}).append(this)}return this},wrapInner:function(a){return p.isFunction(a)?this.each(function(b){p(this).wrapInner(a.call(this,b))}):this.each(function(){var b=p(this),c=b.contents();c.length?c.wrapAll(a):b.append(a)})},wrap:function(a){var b=p.isFunction(a);return this.each(function(c){p(this).wrapAll(b?a.call(this,c):a)})},unwrap:function(){return this.parent().each(function(){p.nodeName(this,"body")||p(this).replaceWith(this.childNodes)}).end()},append:function(){return this.domManip(arguments,!0,function(a){(this.nodeType===1||this.nodeType===11)&&this.appendChild(a)})},prepend:function(){return this.domManip(arguments,!0,function(a){(this.nodeType===1||this.nodeType===11)&&this.insertBefore(a,this.firstChild)})},before:function(){if(!bh(this[0]))return this.domManip(arguments,!1,function(a){this.parentNode.insertBefore(a,this)});if(arguments.length){var a=p.clean(arguments);return this.pushStack(p.merge(a,this),"before",this.selector)}},after:function(){if(!bh(this[0]))return this.domManip(arguments,!1,function(a){this.parentNode.insertBefore(a,this.nextSibling)});if(arguments.length){var a=p.clean(arguments);return this.pushStack(p.merge(this,a),"after",this.selector)}},remove:function(a,b){var c,d=0;for(;(c=this[d])!=null;d++)if(!a||p.filter(a,[c]).length)!b&&c.nodeType===1&&(p.cleanData(c.getElementsByTagName("*")),p.cleanData([c])),c.parentNode&&c.parentNode.removeChild(c);return this},empty:function(){var a,b=0;for(;(a=this[b])!=null;b++){a.nodeType===1&&p.cleanData(a.getElementsByTagName("*"));while(a.firstChild)a.removeChild(a.firstChild)}return this},clone:function(a,b){return a=a==null?!1:a,b=b==null?a:b,this.map(function(){return p.clone(this,a,b)})},html:function(a){return p.access(this,function(a){var c=this[0]||{},d=0,e=this.length;if(a===b)return c.nodeType===1?c.innerHTML.replace(bm,""):b;if(typeof a=="string"&&!bs.test(a)&&(p.support.htmlSerialize||!bu.test(a))&&(p.support.leadingWhitespace||!bn.test(a))&&!bz[(bp.exec(a)||["",""])[1].toLowerCase()]){a=a.replace(bo,"<$1></$2>");try{for(;d<e;d++)c=this[d]||{},c.nodeType===1&&(p.cleanData(c.getElementsByTagName("*")),c.innerHTML=a);c=0}catch(f){}}c&&this.empty().append(a)},null,a,arguments.length)},replaceWith:function(a){return bh(this[0])?this.length?this.pushStack(p(p.isFunction(a)?a():a),"replaceWith",a):this:p.isFunction(a)?this.each(function(b){var c=p(this),d=c.html();c.replaceWith(a.call(this,b,d))}):(typeof a!="string"&&(a=p(a).detach()),this.each(function(){var b=this.nextSibling,c=this.parentNode;p(this).remove(),b?p(b).before(a):p(c).append(a)}))},detach:function(a){return this.remove(a,!0)},domManip:function(a,c,d){a=[].concat.apply([],a);var e,f,g,h,i=0,j=a[0],k=[],l=this.length;if(!p.support.checkClone&&l>1&&typeof j=="string"&&bw.test(j))return this.each(function(){p(this).domManip(a,c,d)});if(p.isFunction(j))return this.each(function(e){var f=p(this);a[0]=j.call(this,e,c?f.html():b),f.domManip(a,c,d)});if(this[0]){e=p.buildFragment(a,this,k),g=e.fragment,f=g.firstChild,g.childNodes.length===1&&(g=f);if(f){c=c&&p.nodeName(f,"tr");for(h=e.cacheable||l-1;i<l;i++)d.call(c&&p.nodeName(this[i],"table")?bC(this[i],"tbody"):this[i],i===h?g:p.clone(g,!0,!0))}g=f=null,k.length&&p.each(k,function(a,b){b.src?p.ajax?p.ajax({url:b.src,type:"GET",dataType:"script",async:!1,global:!1,"throws":!0}):p.error("no ajax"):p.globalEval((b.text||b.textContent||b.innerHTML||"").replace(by,"")),b.parentNode&&b.parentNode.removeChild(b)})}return this}}),p.buildFragment=function(a,c,d){var f,g,h,i=a[0];return c=c||e,c=!c.nodeType&&c[0]||c,c=c.ownerDocument||c,a.length===1&&typeof i=="string"&&i.length<512&&c===e&&i.charAt(0)==="<"&&!bt.test(i)&&(p.support.checkClone||!bw.test(i))&&(p.support.html5Clone||!bu.test(i))&&(g=!0,f=p.fragments[i],h=f!==b),f||(f=c.createDocumentFragment(),p.clean(a,c,f,d),g&&(p.fragments[i]=h&&f)),{fragment:f,cacheable:g}},p.fragments={},p.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(a,b){p.fn[a]=function(c){var d,e=0,f=[],g=p(c),h=g.length,i=this.length===1&&this[0].parentNode;if((i==null||i&&i.nodeType===11&&i.childNodes.length===1)&&h===1)return g[b](this[0]),this;for(;e<h;e++)d=(e>0?this.clone(!0):this).get(),p(g[e])[b](d),f=f.concat(d);return this.pushStack(f,a,g.selector)}}),p.extend({clone:function(a,b,c){var d,e,f,g;p.support.html5Clone||p.isXMLDoc(a)||!bu.test("<"+a.nodeName+">")?g=a.cloneNode(!0):(bB.innerHTML=a.outerHTML,bB.removeChild(g=bB.firstChild));if((!p.support.noCloneEvent||!p.support.noCloneChecked)&&(a.nodeType===1||a.nodeType===11)&&!p.isXMLDoc(a)){bE(a,g),d=bF(a),e=bF(g);for(f=0;d[f];++f)e[f]&&bE(d[f],e[f])}if(b){bD(a,g);if(c){d=bF(a),e=bF(g);for(f=0;d[f];++f)bD(d[f],e[f])}}return d=e=null,g},clean:function(a,b,c,d){var f,g,h,i,j,k,l,m,n,o,q,r,s=b===e&&bA,t=[];if(!b||typeof b.createDocumentFragment=="undefined")b=e;for(f=0;(h=a[f])!=null;f++){typeof h=="number"&&(h+="");if(!h)continue;if(typeof h=="string")if(!br.test(h))h=b.createTextNode(h);else{s=s||bk(b),l=b.createElement("div"),s.appendChild(l),h=h.replace(bo,"<$1></$2>"),i=(bp.exec(h)||["",""])[1].toLowerCase(),j=bz[i]||bz._default,k=j[0],l.innerHTML=j[1]+h+j[2];while(k--)l=l.lastChild;if(!p.support.tbody){m=bq.test(h),n=i==="table"&&!m?l.firstChild&&l.firstChild.childNodes:j[1]==="<table>"&&!m?l.childNodes:[];for(g=n.length-1;g>=0;--g)p.nodeName(n[g],"tbody")&&!n[g].childNodes.length&&n[g].parentNode.removeChild(n[g])}!p.support.leadingWhitespace&&bn.test(h)&&l.insertBefore(b.createTextNode(bn.exec(h)[0]),l.firstChild),h=l.childNodes,l.parentNode.removeChild(l)}h.nodeType?t.push(h):p.merge(t,h)}l&&(h=l=s=null);if(!p.support.appendChecked)for(f=0;(h=t[f])!=null;f++)p.nodeName(h,"input")?bG(h):typeof h.getElementsByTagName!="undefined"&&p.grep(h.getElementsByTagName("input"),bG);if(c){q=function(a){if(!a.type||bx.test(a.type))return d?d.push(a.parentNode?a.parentNode.removeChild(a):a):c.appendChild(a)};for(f=0;(h=t[f])!=null;f++)if(!p.nodeName(h,"script")||!q(h))c.appendChild(h),typeof h.getElementsByTagName!="undefined"&&(r=p.grep(p.merge([],h.getElementsByTagName("script")),q),t.splice.apply(t,[f+1,0].concat(r)),f+=r.length)}return t},cleanData:function(a,b){var c,d,e,f,g=0,h=p.expando,i=p.cache,j=p.support.deleteExpando,k=p.event.special;for(;(e=a[g])!=null;g++)if(b||p.acceptData(e)){d=e[h],c=d&&i[d];if(c){if(c.events)for(f in c.events)k[f]?p.event.remove(e,f):p.removeEvent(e,f,c.handle);i[d]&&(delete i[d],j?delete e[h]:e.removeAttribute?e.removeAttribute(h):e[h]=null,p.deletedIds.push(d))}}}}),function(){var a,b;p.uaMatch=function(a){a=a.toLowerCase();var b=/(chrome)[ \/]([\w.]+)/.exec(a)||/(webkit)[ \/]([\w.]+)/.exec(a)||/(opera)(?:.*version|)[ \/]([\w.]+)/.exec(a)||/(msie) ([\w.]+)/.exec(a)||a.indexOf("compatible")<0&&/(mozilla)(?:.*? rv:([\w.]+)|)/.exec(a)||[];return{browser:b[1]||"",version:b[2]||"0"}},a=p.uaMatch(g.userAgent),b={},a.browser&&(b[a.browser]=!0,b.version=a.version),b.chrome?b.webkit=!0:b.webkit&&(b.safari=!0),p.browser=b,p.sub=function(){function a(b,c){return new a.fn.init(b,c)}p.extend(!0,a,this),a.superclass=this,a.fn=a.prototype=this(),a.fn.constructor=a,a.sub=this.sub,a.fn.init=function c(c,d){return d&&d instanceof p&&!(d instanceof a)&&(d=a(d)),p.fn.init.call(this,c,d,b)},a.fn.init.prototype=a.fn;var b=a(e);return a}}();var bH,bI,bJ,bK=/alpha\([^)]*\)/i,bL=/opacity=([^)]*)/,bM=/^(top|right|bottom|left)$/,bN=/^(none|table(?!-c[ea]).+)/,bO=/^margin/,bP=new RegExp("^("+q+")(.*)$","i"),bQ=new RegExp("^("+q+")(?!px)[a-z%]+$","i"),bR=new RegExp("^([-+])=("+q+")","i"),bS={},bT={position:"absolute",visibility:"hidden",display:"block"},bU={letterSpacing:0,fontWeight:400},bV=["Top","Right","Bottom","Left"],bW=["Webkit","O","Moz","ms"],bX=p.fn.toggle;p.fn.extend({css:function(a,c){return p.access(this,function(a,c,d){return d!==b?p.style(a,c,d):p.css(a,c)},a,c,arguments.length>1)},show:function(){return b$(this,!0)},hide:function(){return b$(this)},toggle:function(a,b){var c=typeof a=="boolean";return p.isFunction(a)&&p.isFunction(b)?bX.apply(this,arguments):this.each(function(){(c?a:bZ(this))?p(this).show():p(this).hide()})}}),p.extend({cssHooks:{opacity:{get:function(a,b){if(b){var c=bH(a,"opacity");return c===""?"1":c}}}},cssNumber:{fillOpacity:!0,fontWeight:!0,lineHeight:!0,opacity:!0,orphans:!0,widows:!0,zIndex:!0,zoom:!0},cssProps:{"float":p.support.cssFloat?"cssFloat":"styleFloat"},style:function(a,c,d,e){if(!a||a.nodeType===3||a.nodeType===8||!a.style)return;var f,g,h,i=p.camelCase(c),j=a.style;c=p.cssProps[i]||(p.cssProps[i]=bY(j,i)),h=p.cssHooks[c]||p.cssHooks[i];if(d===b)return h&&"get"in h&&(f=h.get(a,!1,e))!==b?f:j[c];g=typeof d,g==="string"&&(f=bR.exec(d))&&(d=(f[1]+1)*f[2]+parseFloat(p.css(a,c)),g="number");if(d==null||g==="number"&&isNaN(d))return;g==="number"&&!p.cssNumber[i]&&(d+="px");if(!h||!("set"in h)||(d=h.set(a,d,e))!==b)try{j[c]=d}catch(k){}},css:function(a,c,d,e){var f,g,h,i=p.camelCase(c);return c=p.cssProps[i]||(p.cssProps[i]=bY(a.style,i)),h=p.cssHooks[c]||p.cssHooks[i],h&&"get"in h&&(f=h.get(a,!0,e)),f===b&&(f=bH(a,c)),f==="normal"&&c in bU&&(f=bU[c]),d||e!==b?(g=parseFloat(f),d||p.isNumeric(g)?g||0:f):f},swap:function(a,b,c){var d,e,f={};for(e in b)f[e]=a.style[e],a.style[e]=b[e];d=c.call(a);for(e in b)a.style[e]=f[e];return d}}),a.getComputedStyle?bH=function(b,c){var d,e,f,g,h=a.getComputedStyle(b,null),i=b.style;return h&&(d=h[c],d===""&&!p.contains(b.ownerDocument,b)&&(d=p.style(b,c)),bQ.test(d)&&bO.test(c)&&(e=i.width,f=i.minWidth,g=i.maxWidth,i.minWidth=i.maxWidth=i.width=d,d=h.width,i.width=e,i.minWidth=f,i.maxWidth=g)),d}:e.documentElement.currentStyle&&(bH=function(a,b){var c,d,e=a.currentStyle&&a.currentStyle[b],f=a.style;return e==null&&f&&f[b]&&(e=f[b]),bQ.test(e)&&!bM.test(b)&&(c=f.left,d=a.runtimeStyle&&a.runtimeStyle.left,d&&(a.runtimeStyle.left=a.currentStyle.left),f.left=b==="fontSize"?"1em":e,e=f.pixelLeft+"px",f.left=c,d&&(a.runtimeStyle.left=d)),e===""?"auto":e}),p.each(["height","width"],function(a,b){p.cssHooks[b]={get:function(a,c,d){if(c)return a.offsetWidth===0&&bN.test(bH(a,"display"))?p.swap(a,bT,function(){return cb(a,b,d)}):cb(a,b,d)},set:function(a,c,d){return b_(a,c,d?ca(a,b,d,p.support.boxSizing&&p.css(a,"boxSizing")==="border-box"):0)}}}),p.support.opacity||(p.cssHooks.opacity={get:function(a,b){return bL.test((b&&a.currentStyle?a.currentStyle.filter:a.style.filter)||"")?.01*parseFloat(RegExp.$1)+"":b?"1":""},set:function(a,b){var c=a.style,d=a.currentStyle,e=p.isNumeric(b)?"alpha(opacity="+b*100+")":"",f=d&&d.filter||c.filter||"";c.zoom=1;if(b>=1&&p.trim(f.replace(bK,""))===""&&c.removeAttribute){c.removeAttribute("filter");if(d&&!d.filter)return}c.filter=bK.test(f)?f.replace(bK,e):f+" "+e}}),p(function(){p.support.reliableMarginRight||(p.cssHooks.marginRight={get:function(a,b){return p.swap(a,{display:"inline-block"},function(){if(b)return bH(a,"marginRight")})}}),!p.support.pixelPosition&&p.fn.position&&p.each(["top","left"],function(a,b){p.cssHooks[b]={get:function(a,c){if(c){var d=bH(a,b);return bQ.test(d)?p(a).position()[b]+"px":d}}}})}),p.expr&&p.expr.filters&&(p.expr.filters.hidden=function(a){return a.offsetWidth===0&&a.offsetHeight===0||!p.support.reliableHiddenOffsets&&(a.style&&a.style.display||bH(a,"display"))==="none"},p.expr.filters.visible=function(a){return!p.expr.filters.hidden(a)}),p.each({margin:"",padding:"",border:"Width"},function(a,b){p.cssHooks[a+b]={expand:function(c){var d,e=typeof c=="string"?c.split(" "):[c],f={};for(d=0;d<4;d++)f[a+bV[d]+b]=e[d]||e[d-2]||e[0];return f}},bO.test(a)||(p.cssHooks[a+b].set=b_)});var cd=/%20/g,ce=/\[\]$/,cf=/\r?\n/g,cg=/^(?:color|date|datetime|datetime-local|email|hidden|month|number|password|range|search|tel|text|time|url|week)$/i,ch=/^(?:select|textarea)/i;p.fn.extend({serialize:function(){return p.param(this.serializeArray())},serializeArray:function(){return this.map(function(){return this.elements?p.makeArray(this.elements):this}).filter(function(){return this.name&&!this.disabled&&(this.checked||ch.test(this.nodeName)||cg.test(this.type))}).map(function(a,b){var c=p(this).val();return c==null?null:p.isArray(c)?p.map(c,function(a,c){return{name:b.name,value:a.replace(cf,"\r\n")}}):{name:b.name,value:c.replace(cf,"\r\n")}}).get()}}),p.param=function(a,c){var d,e=[],f=function(a,b){b=p.isFunction(b)?b():b==null?"":b,e[e.length]=encodeURIComponent(a)+"="+encodeURIComponent(b)};c===b&&(c=p.ajaxSettings&&p.ajaxSettings.traditional);if(p.isArray(a)||a.jquery&&!p.isPlainObject(a))p.each(a,function(){f(this.name,this.value)});else for(d in a)ci(d,a[d],c,f);return e.join("&").replace(cd,"+")};var cj,ck,cl=/#.*$/,cm=/^(.*?):[ \t]*([^\r\n]*)\r?$/mg,cn=/^(?:about|app|app\-storage|.+\-extension|file|res|widget):$/,co=/^(?:GET|HEAD)$/,cp=/^\/\//,cq=/\?/,cr=/<script\b[^<]*(?:(?!<\/script>)<[^<]*)*<\/script>/gi,cs=/([?&])_=[^&]*/,ct=/^([\w\+\.\-]+:)(?:\/\/([^\/?#:]*)(?::(\d+)|)|)/,cu=p.fn.load,cv={},cw={},cx=["*/"]+["*"];try{ck=f.href}catch(cy){ck=e.createElement("a"),ck.href="",ck=ck.href}cj=ct.exec(ck.toLowerCase())||[],p.fn.load=function(a,c,d){if(typeof a!="string"&&cu)return cu.apply(this,arguments);if(!this.length)return this;var e,f,g,h=this,i=a.indexOf(" ");return i>=0&&(e=a.slice(i,a.length),a=a.slice(0,i)),p.isFunction(c)?(d=c,c=b):c&&typeof c=="object"&&(f="POST"),p.ajax({url:a,type:f,dataType:"html",data:c,complete:function(a,b){d&&h.each(d,g||[a.responseText,b,a])}}).done(function(a){g=arguments,h.html(e?p("<div>").append(a.replace(cr,"")).find(e):a)}),this},p.each("ajaxStart ajaxStop ajaxComplete ajaxError ajaxSuccess ajaxSend".split(" "),function(a,b){p.fn[b]=function(a){return this.on(b,a)}}),p.each(["get","post"],function(a,c){p[c]=function(a,d,e,f){return p.isFunction(d)&&(f=f||e,e=d,d=b),p.ajax({type:c,url:a,data:d,success:e,dataType:f})}}),p.extend({getScript:function(a,c){return p.get(a,b,c,"script")},getJSON:function(a,b,c){return p.get(a,b,c,"json")},ajaxSetup:function(a,b){return b?cB(a,p.ajaxSettings):(b=a,a=p.ajaxSettings),cB(a,b),a},ajaxSettings:{url:ck,isLocal:cn.test(cj[1]),global:!0,type:"GET",contentType:"application/x-www-form-urlencoded; charset=UTF-8",processData:!0,async:!0,accepts:{xml:"application/xml, text/xml",html:"text/html",text:"text/plain",json:"application/json, text/javascript","*":cx},contents:{xml:/xml/,html:/html/,json:/json/},responseFields:{xml:"responseXML",text:"responseText"},converters:{"* text":a.String,"text html":!0,"text json":p.parseJSON,"text xml":p.parseXML},flatOptions:{context:!0,url:!0}},ajaxPrefilter:cz(cv),ajaxTransport:cz(cw),ajax:function(a,c){function y(a,c,f,i){var k,s,t,u,w,y=c;if(v===2)return;v=2,h&&clearTimeout(h),g=b,e=i||"",x.readyState=a>0?4:0,f&&(u=cC(l,x,f));if(a>=200&&a<300||a===304)l.ifModified&&(w=x.getResponseHeader("Last-Modified"),w&&(p.lastModified[d]=w),w=x.getResponseHeader("Etag"),w&&(p.etag[d]=w)),a===304?(y="notmodified",k=!0):(k=cD(l,u),y=k.state,s=k.data,t=k.error,k=!t);else{t=y;if(!y||a)y="error",a<0&&(a=0)}x.status=a,x.statusText=(c||y)+"",k?o.resolveWith(m,[s,y,x]):o.rejectWith(m,[x,y,t]),x.statusCode(r),r=b,j&&n.trigger("ajax"+(k?"Success":"Error"),[x,l,k?s:t]),q.fireWith(m,[x,y]),j&&(n.trigger("ajaxComplete",[x,l]),--p.active||p.event.trigger("ajaxStop"))}typeof a=="object"&&(c=a,a=b),c=c||{};var d,e,f,g,h,i,j,k,l=p.ajaxSetup({},c),m=l.context||l,n=m!==l&&(m.nodeType||m instanceof p)?p(m):p.event,o=p.Deferred(),q=p.Callbacks("once memory"),r=l.statusCode||{},t={},u={},v=0,w="canceled",x={readyState:0,setRequestHeader:function(a,b){if(!v){var c=a.toLowerCase();a=u[c]=u[c]||a,t[a]=b}return this},getAllResponseHeaders:function(){return v===2?e:null},getResponseHeader:function(a){var c;if(v===2){if(!f){f={};while(c=cm.exec(e))f[c[1].toLowerCase()]=c[2]}c=f[a.toLowerCase()]}return c===b?null:c},overrideMimeType:function(a){return v||(l.mimeType=a),this},abort:function(a){return a=a||w,g&&g.abort(a),y(0,a),this}};o.promise(x),x.success=x.done,x.error=x.fail,x.complete=q.add,x.statusCode=function(a){if(a){var b;if(v<2)for(b in a)r[b]=[r[b],a[b]];else b=a[x.status],x.always(b)}return this},l.url=((a||l.url)+"").replace(cl,"").replace(cp,cj[1]+"//"),l.dataTypes=p.trim(l.dataType||"*").toLowerCase().split(s),l.crossDomain==null&&(i=ct.exec(l.url.toLowerCase())||!1,l.crossDomain=i&&i.join(":")+(i[3]?"":i[1]==="http:"?80:443)!==cj.join(":")+(cj[3]?"":cj[1]==="http:"?80:443)),l.data&&l.processData&&typeof l.data!="string"&&(l.data=p.param(l.data,l.traditional)),cA(cv,l,c,x);if(v===2)return x;j=l.global,l.type=l.type.toUpperCase(),l.hasContent=!co.test(l.type),j&&p.active++===0&&p.event.trigger("ajaxStart");if(!l.hasContent){l.data&&(l.url+=(cq.test(l.url)?"&":"?")+l.data,delete l.data),d=l.url;if(l.cache===!1){var z=p.now(),A=l.url.replace(cs,"$1_="+z);l.url=A+(A===l.url?(cq.test(l.url)?"&":"?")+"_="+z:"")}}(l.data&&l.hasContent&&l.contentType!==!1||c.contentType)&&x.setRequestHeader("Content-Type",l.contentType),l.ifModified&&(d=d||l.url,p.lastModified[d]&&x.setRequestHeader("If-Modified-Since",p.lastModified[d]),p.etag[d]&&x.setRequestHeader("If-None-Match",p.etag[d])),x.setRequestHeader("Accept",l.dataTypes[0]&&l.accepts[l.dataTypes[0]]?l.accepts[l.dataTypes[0]]+(l.dataTypes[0]!=="*"?", "+cx+"; q=0.01":""):l.accepts["*"]);for(k in l.headers)x.setRequestHeader(k,l.headers[k]);if(!l.beforeSend||l.beforeSend.call(m,x,l)!==!1&&v!==2){w="abort";for(k in{success:1,error:1,complete:1})x[k](l[k]);g=cA(cw,l,c,x);if(!g)y(-1,"No Transport");else{x.readyState=1,j&&n.trigger("ajaxSend",[x,l]),l.async&&l.timeout>0&&(h=setTimeout(function(){x.abort("timeout")},l.timeout));try{v=1,g.send(t,y)}catch(B){if(v<2)y(-1,B);else throw B}}return x}return x.abort()},active:0,lastModified:{},etag:{}});var cE=[],cF=/\?/,cG=/(=)\?(?=&|$)|\?\?/,cH=p.now();p.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var a=cE.pop()||p.expando+"_"+cH++;return this[a]=!0,a}}),p.ajaxPrefilter("json jsonp",function(c,d,e){var f,g,h,i=c.data,j=c.url,k=c.jsonp!==!1,l=k&&cG.test(j),m=k&&!l&&typeof i=="string"&&!(c.contentType||"").indexOf("application/x-www-form-urlencoded")&&cG.test(i);if(c.dataTypes[0]==="jsonp"||l||m)return f=c.jsonpCallback=p.isFunction(c.jsonpCallback)?c.jsonpCallback():c.jsonpCallback,g=a[f],l?c.url=j.replace(cG,"$1"+f):m?c.data=i.replace(cG,"$1"+f):k&&(c.url+=(cF.test(j)?"&":"?")+c.jsonp+"="+f),c.converters["script json"]=function(){return h||p.error(f+" was not called"),h[0]},c.dataTypes[0]="json",a[f]=function(){h=arguments},e.always(function(){a[f]=g,c[f]&&(c.jsonpCallback=d.jsonpCallback,cE.push(f)),h&&p.isFunction(g)&&g(h[0]),h=g=b}),"script"}),p.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/javascript|ecmascript/},converters:{"text script":function(a){return p.globalEval(a),a}}}),p.ajaxPrefilter("script",function(a){a.cache===b&&(a.cache=!1),a.crossDomain&&(a.type="GET",a.global=!1)}),p.ajaxTransport("script",function(a){if(a.crossDomain){var c,d=e.head||e.getElementsByTagName("head")[0]||e.documentElement;return{send:function(f,g){c=e.createElement("script"),c.async="async",a.scriptCharset&&(c.charset=a.scriptCharset),c.src=a.url,c.onload=c.onreadystatechange=function(a,e){if(e||!c.readyState||/loaded|complete/.test(c.readyState))c.onload=c.onreadystatechange=null,d&&c.parentNode&&d.removeChild(c),c=b,e||g(200,"success")},d.insertBefore(c,d.firstChild)},abort:function(){c&&c.onload(0,1)}}}});var cI,cJ=a.ActiveXObject?function(){for(var a in cI)cI[a](0,1)}:!1,cK=0;p.ajaxSettings.xhr=a.ActiveXObject?function(){return!this.isLocal&&cL()||cM()}:cL,function(a){p.extend(p.support,{ajax:!!a,cors:!!a&&"withCredentials"in a})}(p.ajaxSettings.xhr()),p.support.ajax&&p.ajaxTransport(function(c){if(!c.crossDomain||p.support.cors){var d;return{send:function(e,f){var g,h,i=c.xhr();c.username?i.open(c.type,c.url,c.async,c.username,c.password):i.open(c.type,c.url,c.async);if(c.xhrFields)for(h in c.xhrFields)i[h]=c.xhrFields[h];c.mimeType&&i.overrideMimeType&&i.overrideMimeType(c.mimeType),!c.crossDomain&&!e["X-Requested-With"]&&(e["X-Requested-With"]="XMLHttpRequest");try{for(h in e)i.setRequestHeader(h,e[h])}catch(j){}i.send(c.hasContent&&c.data||null),d=function(a,e){var h,j,k,l,m;try{if(d&&(e||i.readyState===4)){d=b,g&&(i.onreadystatechange=p.noop,cJ&&delete cI[g]);if(e)i.readyState!==4&&i.abort();else{h=i.status,k=i.getAllResponseHeaders(),l={},m=i.responseXML,m&&m.documentElement&&(l.xml=m);try{l.text=i.responseText}catch(a){}try{j=i.statusText}catch(n){j=""}!h&&c.isLocal&&!c.crossDomain?h=l.text?200:404:h===1223&&(h=204)}}}catch(o){e||f(-1,o)}l&&f(h,j,l,k)},c.async?i.readyState===4?setTimeout(d,0):(g=++cK,cJ&&(cI||(cI={},p(a).unload(cJ)),cI[g]=d),i.onreadystatechange=d):d()},abort:function(){d&&d(0,1)}}}});var cN,cO,cP=/^(?:toggle|show|hide)$/,cQ=new RegExp("^(?:([-+])=|)("+q+")([a-z%]*)$","i"),cR=/queueHooks$/,cS=[cY],cT={"*":[function(a,b){var c,d,e=this.createTween(a,b),f=cQ.exec(b),g=e.cur(),h=+g||0,i=1,j=20;if(f){c=+f[2],d=f[3]||(p.cssNumber[a]?"":"px");if(d!=="px"&&h){h=p.css(e.elem,a,!0)||c||1;do i=i||".5",h=h/i,p.style(e.elem,a,h+d);while(i!==(i=e.cur()/g)&&i!==1&&--j)}e.unit=d,e.start=h,e.end=f[1]?h+(f[1]+1)*c:c}return e}]};p.Animation=p.extend(cW,{tweener:function(a,b){p.isFunction(a)?(b=a,a=["*"]):a=a.split(" ");var c,d=0,e=a.length;for(;d<e;d++)c=a[d],cT[c]=cT[c]||[],cT[c].unshift(b)},prefilter:function(a,b){b?cS.unshift(a):cS.push(a)}}),p.Tween=cZ,cZ.prototype={constructor:cZ,init:function(a,b,c,d,e,f){this.elem=a,this.prop=c,this.easing=e||"swing",this.options=b,this.start=this.now=this.cur(),this.end=d,this.unit=f||(p.cssNumber[c]?"":"px")},cur:function(){var a=cZ.propHooks[this.prop];return a&&a.get?a.get(this):cZ.propHooks._default.get(this)},run:function(a){var b,c=cZ.propHooks[this.prop];return this.options.duration?this.pos=b=p.easing[this.easing](a,this.options.duration*a,0,1,this.options.duration):this.pos=b=a,this.now=(this.end-this.start)*b+this.start,this.options.step&&this.options.step.call(this.elem,this.now,this),c&&c.set?c.set(this):cZ.propHooks._default.set(this),this}},cZ.prototype.init.prototype=cZ.prototype,cZ.propHooks={_default:{get:function(a){var b;return a.elem[a.prop]==null||!!a.elem.style&&a.elem.style[a.prop]!=null?(b=p.css(a.elem,a.prop,!1,""),!b||b==="auto"?0:b):a.elem[a.prop]},set:function(a){p.fx.step[a.prop]?p.fx.step[a.prop](a):a.elem.style&&(a.elem.style[p.cssProps[a.prop]]!=null||p.cssHooks[a.prop])?p.style(a.elem,a.prop,a.now+a.unit):a.elem[a.prop]=a.now}}},cZ.propHooks.scrollTop=cZ.propHooks.scrollLeft={set:function(a){a.elem.nodeType&&a.elem.parentNode&&(a.elem[a.prop]=a.now)}},p.each(["toggle","show","hide"],function(a,b){var c=p.fn[b];p.fn[b]=function(d,e,f){return d==null||typeof d=="boolean"||!a&&p.isFunction(d)&&p.isFunction(e)?c.apply(this,arguments):this.animate(c$(b,!0),d,e,f)}}),p.fn.extend({fadeTo:function(a,b,c,d){return this.filter(bZ).css("opacity",0).show().end().animate({opacity:b},a,c,d)},animate:function(a,b,c,d){var e=p.isEmptyObject(a),f=p.speed(b,c,d),g=function(){var b=cW(this,p.extend({},a),f);e&&b.stop(!0)};return e||f.queue===!1?this.each(g):this.queue(f.queue,g)},stop:function(a,c,d){var e=function(a){var b=a.stop;delete a.stop,b(d)};return typeof a!="string"&&(d=c,c=a,a=b),c&&a!==!1&&this.queue(a||"fx",[]),this.each(function(){var b=!0,c=a!=null&&a+"queueHooks",f=p.timers,g=p._data(this);if(c)g[c]&&g[c].stop&&e(g[c]);else for(c in g)g[c]&&g[c].stop&&cR.test(c)&&e(g[c]);for(c=f.length;c--;)f[c].elem===this&&(a==null||f[c].queue===a)&&(f[c].anim.stop(d),b=!1,f.splice(c,1));(b||!d)&&p.dequeue(this,a)})}}),p.each({slideDown:c$("show"),slideUp:c$("hide"),slideToggle:c$("toggle"),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"},fadeToggle:{opacity:"toggle"}},function(a,b){p.fn[a]=function(a,c,d){return this.animate(b,a,c,d)}}),p.speed=function(a,b,c){var d=a&&typeof a=="object"?p.extend({},a):{complete:c||!c&&b||p.isFunction(a)&&a,duration:a,easing:c&&b||b&&!p.isFunction(b)&&b};d.duration=p.fx.off?0:typeof d.duration=="number"?d.duration:d.duration in p.fx.speeds?p.fx.speeds[d.duration]:p.fx.speeds._default;if(d.queue==null||d.queue===!0)d.queue="fx";return d.old=d.complete,d.complete=function(){p.isFunction(d.old)&&d.old.call(this),d.queue&&p.dequeue(this,d.queue)},d},p.easing={linear:function(a){return a},swing:function(a){return.5-Math.cos(a*Math.PI)/2}},p.timers=[],p.fx=cZ.prototype.init,p.fx.tick=function(){var a,b=p.timers,c=0;for(;c<b.length;c++)a=b[c],!a()&&b[c]===a&&b.splice(c--,1);b.length||p.fx.stop()},p.fx.timer=function(a){a()&&p.timers.push(a)&&!cO&&(cO=setInterval(p.fx.tick,p.fx.interval))},p.fx.interval=13,p.fx.stop=function(){clearInterval(cO),cO=null},p.fx.speeds={slow:600,fast:200,_default:400},p.fx.step={},p.expr&&p.expr.filters&&(p.expr.filters.animated=function(a){return p.grep(p.timers,function(b){return a===b.elem}).length});var c_=/^(?:body|html)$/i;p.fn.offset=function(a){if(arguments.length)return a===b?this:this.each(function(b){p.offset.setOffset(this,a,b)});var c,d,e,f,g,h,i,j={top:0,left:0},k=this[0],l=k&&k.ownerDocument;if(!l)return;return(d=l.body)===k?p.offset.bodyOffset(k):(c=l.documentElement,p.contains(c,k)?(typeof k.getBoundingClientRect!="undefined"&&(j=k.getBoundingClientRect()),e=da(l),f=c.clientTop||d.clientTop||0,g=c.clientLeft||d.clientLeft||0,h=e.pageYOffset||c.scrollTop,i=e.pageXOffset||c.scrollLeft,{top:j.top+h-f,left:j.left+i-g}):j)},p.offset={bodyOffset:function(a){var b=a.offsetTop,c=a.offsetLeft;return p.support.doesNotIncludeMarginInBodyOffset&&(b+=parseFloat(p.css(a,"marginTop"))||0,c+=parseFloat(p.css(a,"marginLeft"))||0),{top:b,left:c}},setOffset:function(a,b,c){var d=p.css(a,"position");d==="static"&&(a.style.position="relative");var e=p(a),f=e.offset(),g=p.css(a,"top"),h=p.css(a,"left"),i=(d==="absolute"||d==="fixed")&&p.inArray("auto",[g,h])>-1,j={},k={},l,m;i?(k=e.position(),l=k.top,m=k.left):(l=parseFloat(g)||0,m=parseFloat(h)||0),p.isFunction(b)&&(b=b.call(a,c,f)),b.top!=null&&(j.top=b.top-f.top+l),b.left!=null&&(j.left=b.left-f.left+m),"using"in b?b.using.call(a,j):e.css(j)}},p.fn.extend({position:function(){if(!this[0])return;var a=this[0],b=this.offsetParent(),c=this.offset(),d=c_.test(b[0].nodeName)?{top:0,left:0}:b.offset();return c.top-=parseFloat(p.css(a,"marginTop"))||0,c.left-=parseFloat(p.css(a,"marginLeft"))||0,d.top+=parseFloat(p.css(b[0],"borderTopWidth"))||0,d.left+=parseFloat(p.css(b[0],"borderLeftWidth"))||0,{top:c.top-d.top,left:c.left-d.left}},offsetParent:function(){return this.map(function(){var a=this.offsetParent||e.body;while(a&&!c_.test(a.nodeName)&&p.css(a,"position")==="static")a=a.offsetParent;return a||e.body})}}),p.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(a,c){var d=/Y/.test(c);p.fn[a]=function(e){return p.access(this,function(a,e,f){var g=da(a);if(f===b)return g?c in g?g[c]:g.document.documentElement[e]:a[e];g?g.scrollTo(d?p(g).scrollLeft():f,d?f:p(g).scrollTop()):a[e]=f},a,e,arguments.length,null)}}),p.each({Height:"height",Width:"width"},function(a,c){p.each({padding:"inner"+a,content:c,"":"outer"+a},function(d,e){p.fn[e]=function(e,f){var g=arguments.length&&(d||typeof e!="boolean"),h=d||(e===!0||f===!0?"margin":"border");return p.access(this,function(c,d,e){var f;return p.isWindow(c)?c.document.documentElement["client"+a]:c.nodeType===9?(f=c.documentElement,Math.max(c.body["scroll"+a],f["scroll"+a],c.body["offset"+a],f["offset"+a],f["client"+a])):e===b?p.css(c,d,e,h):p.style(c,d,e,h)},c,g?e:b,g,null)}})}),a.jQuery=a.$=p,typeof define=="function"&&define.amd&&define.amd.jQuery&&define("jquery",[],function(){return p})})(window); |
| URL | http://zero.webappsecurity.com/resources/js/placeholders.min.js |
| Method | GET |
| Parameter | |
| Attack | TRACE, OPTIONS methods with 'Max-Forwards' header. TRACK method. |
| Evidence | |
| Request Header - size: 287 bytes. |
GET http://zero.webappsecurity.com/resources/js/placeholders.min.js HTTP/1.1
Host: zero.webappsecurity.com User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0 Pragma: no-cache Cache-Control: no-cache Referer: http://zero.webappsecurity.com |
| Request Body - size: 0 bytes. |
|
| Response Header - size: 359 bytes. |
HTTP/1.1 200 OK
Date: Mon, 14 Mar 2022 07:13:42 GMT Server: Apache-Coyote/1.1 Access-Control-Allow-Origin: * Accept-Ranges: bytes ETag: W/"5615-1360116138000" Last-Modified: Wed, 06 Feb 2013 02:02:18 GMT Cache-Control: max-age=2678400 Expires: Thu, 14 Apr 2022 07:13:43 GMT Content-Type: application/javascript;charset=UTF-8 Content-Length: 5615 |
| Response Body - size: 5,615 bytes. |
var Placeholders=function(){var validTypes=["text","search","url","tel","email","password","number","textarea"],settings={live:false,hideOnFocus:false,className:"placeholderspolyfill",textColor:"#999",styleImportant:true},badKeys=[37,38,39,40],interval,valueKeyDown,classNameRegExp=new RegExp("\\b"+settings.className+"\\b");function cursorToStart(elem){var range;if(elem.createTextRange){range=elem.createTextRange();range.move("character",0);range.select()}else if(elem.selectionStart){elem.focus();
elem.setSelectionRange(0,0)}}function focusHandler(){var type;if(this.value===this.getAttribute("placeholder"))if(!settings.hideOnFocus)cursorToStart(this);else{this.className=this.className.replace(classNameRegExp,"");this.value="";type=this.getAttribute("data-placeholdertype");if(type)this.type=type}}function blurHandler(){var type;if(this.value===""){this.className=this.className+" "+settings.className;this.value=this.getAttribute("placeholder");type=this.getAttribute("data-placeholdertype");if(type)this.type= "text"}}function submitHandler(){var inputs=this.getElementsByTagName("input"),textareas=this.getElementsByTagName("textarea"),numInputs=inputs.length,num=numInputs+textareas.length,element,placeholder,i;for(i=0;i<num;i+=1){element=i<numInputs?inputs[i]:textareas[i-numInputs];placeholder=element.getAttribute("placeholder");if(element.value===placeholder)element.value=""}}function keydownHandler(event){valueKeyDown=this.value;return!(valueKeyDown===this.getAttribute("placeholder")&&badKeys.indexOf(event.keyCode)> -1)}function keyupHandler(){var type;if(this.value!==valueKeyDown){this.className=this.className.replace(classNameRegExp,"");this.value=this.value.replace(this.getAttribute("placeholder"),"");type=this.getAttribute("data-placeholdertype");if(type)this.type=type}if(this.value===""){blurHandler.call(this);cursorToStart(this)}}function addEventListener(element,event,fn){if(element.addEventListener)return element.addEventListener(event,fn.bind(element),false);if(element.attachEvent)return element.attachEvent("on"+ event,fn.bind(element))}function addEventListeners(element){if(!settings.hideOnFocus){addEventListener(element,"keydown",keydownHandler);addEventListener(element,"keyup",keyupHandler)}addEventListener(element,"focus",focusHandler);addEventListener(element,"blur",blurHandler)}function updatePlaceholders(){var inputs=document.getElementsByTagName("input"),textareas=document.getElementsByTagName("textarea"),numInputs=inputs.length,num=numInputs+textareas.length,i,form,element,oldPlaceholder,newPlaceholder; for(i=0;i<num;i+=1){element=i<numInputs?inputs[i]:textareas[i-numInputs];newPlaceholder=element.getAttribute("placeholder");if(validTypes.indexOf(element.type)>-1)if(newPlaceholder){oldPlaceholder=element.getAttribute("data-currentplaceholder");if(newPlaceholder!==oldPlaceholder){if(element.value===oldPlaceholder||element.value===newPlaceholder||!element.value){element.value=newPlaceholder;element.className=element.className+" "+settings.className}if(!oldPlaceholder){if(element.form){form=element.form; if(!form.getAttribute("data-placeholdersubmit")){addEventListener(form,"submit",submitHandler);form.setAttribute("data-placeholdersubmit","true")}}addEventListeners(element)}element.setAttribute("data-currentplaceholder",newPlaceholder)}}}}function createPlaceholders(){var inputs=document.getElementsByTagName("input"),textareas=document.getElementsByTagName("textarea"),numInputs=inputs.length,num=numInputs+textareas.length,i,element,form,placeholder;for(i=0;i<num;i+=1){element=i<numInputs?inputs[i]: textareas[i-numInputs];placeholder=element.getAttribute("placeholder");if(validTypes.indexOf(element.type)>-1)if(placeholder){if(element.type==="password")try{element.type="text";element.setAttribute("data-placeholdertype","password")}catch(e){}element.setAttribute("data-currentplaceholder",placeholder);if(element.value===""||element.value===placeholder){element.className=element.className+" "+settings.className;element.value=placeholder}if(element.form){form=element.form;if(!form.getAttribute("data-placeholdersubmit")){addEventListener(form, "submit",submitHandler);form.setAttribute("data-placeholdersubmit","true")}}addEventListeners(element)}}}function init(opts){var test=document.createElement("input"),opt,styleElem,styleRules,i,j;if(typeof test.placeholder==="undefined"){for(opt in opts)if(opts.hasOwnProperty(opt))settings[opt]=opts[opt];styleElem=document.createElement("style");styleElem.type="text/css";var importantValue=settings.styleImportant?"!important":"";styleRules=document.createTextNode("."+settings.className+" { color:"+ settings.textColor+importantValue+"; }");if(styleElem.styleSheet)styleElem.styleSheet.cssText=styleRules.nodeValue;else styleElem.appendChild(styleRules);document.getElementsByTagName("head")[0].appendChild(styleElem);if(!Array.prototype.indexOf)Array.prototype.indexOf=function(obj,start){for(i=start||0,j=this.length;i<j;i+=1)if(this[i]===obj)return i;return-1};if(!Function.prototype.bind)Function.prototype.bind=function(oThis){if(typeof this!=="function")throw new TypeError("Function.prototype.bind - what is trying to be bound is not callable"); var aArgs=Array.prototype.slice.call(arguments,1),fToBind=this,FNop=function(){},fBound=function(){return fToBind.apply(this instanceof FNop?this:oThis,aArgs.concat(Array.prototype.slice.call(arguments)))};FNop.prototype=this.prototype;fBound.prototype=new FNop;return fBound};createPlaceholders();if(settings.live)interval=setInterval(updatePlaceholders,100);return true}return false}return{init:init,refresh:updatePlaceholders}}(); |
| URL | http://zero.webappsecurity.com/robots.txt |
| Method | GET |
| Parameter | |
| Attack | TRACE, OPTIONS methods with 'Max-Forwards' header. TRACK method. |
| Evidence | |
| Request Header - size: 224 bytes. |
GET http://zero.webappsecurity.com/robots.txt HTTP/1.1
Host: zero.webappsecurity.com User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0 Pragma: no-cache Cache-Control: no-cache |
| Request Body - size: 0 bytes. |
|
| Response Header - size: 204 bytes. |
HTTP/1.1 404 Not Found
Date: Mon, 14 Mar 2022 07:13:40 GMT Server: Apache-Coyote/1.1 Access-Control-Allow-Origin: * Content-Type: text/html;charset=utf-8 Content-Language: en Content-Length: 971 |
| Response Body - size: 971 bytes. |
<html><head><title>Apache Tomcat/7.0.70 - Error report</title><style><!--H1 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:22px;} H2 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:16px;} H3 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:14px;} BODY {font-family:Tahoma,Arial,sans-serif;color:black;background-color:white;} B {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;} P {font-family:Tahoma,Arial,sans-serif;background:white;color:black;font-size:12px;}A {color : black;}A.name {color : black;}HR {color : #525D76;}--></style> </head><body><h1>HTTP Status 404 - /robots.txt</h1><HR size="1" noshade="noshade"><p><b>type</b> Status report</p><p><b>message</b> <u>/robots.txt</u></p><p><b>description</b> <u>The requested resource is not available.</u></p><HR size="1" noshade="noshade"><h3>Apache Tomcat/7.0.70</h3></body></html>
|
| URL | http://zero.webappsecurity.com/search.html?searchTerm=ZAP |
| Method | GET |
| Parameter | |
| Attack | TRACE, OPTIONS methods with 'Max-Forwards' header. TRACK method. |
| Evidence | |
| Request Header - size: 281 bytes. |
GET http://zero.webappsecurity.com/search.html?searchTerm=ZAP HTTP/1.1
Host: zero.webappsecurity.com User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0 Pragma: no-cache Cache-Control: no-cache Referer: http://zero.webappsecurity.com |
| Request Body - size: 0 bytes. |
|
| Response Header - size: 242 bytes. |
HTTP/1.1 200 OK
Date: Mon, 14 Mar 2022 07:13:43 GMT Server: Apache-Coyote/1.1 Access-Control-Allow-Origin: * Cache-Control: no-cache, max-age=0, must-revalidate, no-store Content-Type: text/html;charset=UTF-8 Content-Language: en-US |
| Response Body - size: 7,723 bytes. |
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Zero - Search Tips</title> <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"> <meta http-equiv="X-UA-Compatible" content="IE=Edge"> <link type="text/css" rel="stylesheet" href="/resources/css/bootstrap.min.css"/> <link type="text/css" rel="stylesheet" href="/resources/css/font-awesome.css"/> <link type="text/css" rel="stylesheet" href="/resources/css/main.css"/> <script src="/resources/js/jquery-1.8.2.min.js"></script> <script src="/resources/js/bootstrap.min.js"></script> <script src="/resources/js/placeholders.min.js"></script> <script type="text/javascript"> Placeholders.init({ live: true, // Apply to future and modified elements too hideOnFocus: true // Hide the placeholder when the element receives focus }); </script> <script type="text/javascript"> $(document).ajaxError(function errorHandler(event, xhr, ajaxOptions, thrownError) { if (xhr.status == 403) { window.location.reload(); } }); </script> </head> <body> <div class="wrapper"> <div class="navbar navbar-fixed-top"> <div class="navbar-inner"> <div class="container"> <a href="/index.html" class="brand">Zero Bank</a> <div> <ul class="nav float-right"> <li> <form action="/search.html" class="navbar-search pull-right" style="padding-right: 20px"> <input type="text" id="searchTerm" name="searchTerm" class="search-query" placeholder="Search"/> </form> </li> <li> <button id="signin_button" type="button" class="signin btn btn-info"> <i class="icon-signin"></i>Signin </button> </li> </ul> </div> </div> </div> </div> <script type="text/javascript"> $(function() { var path = "/"; $("#signin_button").click(function(event) { event.preventDefault(); window.location.href = path + "login" + ".html"; }); }); </script> <div class="container"> <div class="top_offset"> <div class="row"> <div class="span12"> <div id="nav" class="clearfix"> <ul id="pages-nav"> <li id="homeMenu"><div><strong>Home</strong></div></li> <li id="onlineBankingMenu"><div><strong>Online Banking</strong></div></li> <li id="feedback"><div><strong>Feedback</strong></div></li> </ul> </div> </div> <script type="text/javascript"> $(function () { var path = "/"; var featureIdToName = { "index": "homeMenu", "online-banking": "onlineBankingMenu", "feedback": "feedback" }; if (document.location.href.match(".*" + path + "$") != null) { $("#homeMenu").addClass("active"); } else { $.each(featureIdToName, function(featureId, featureName) { if (document.location.href.indexOf(featureId + ".html") >= 0) { $("#" + featureName).addClass("active"); } }); } $.each(featureIdToName, function(featureId, featureName) { $("#nav").on("click", "li[id='" + featureName + "']", function(event) { event.preventDefault(); window.location.href = path + featureId + ".html"; }); }); }); </script> </div> <hr class="row-divider"/> <h2>Search Results:</h2> No results were found for the query: ZAP </div> </div> <div class="clearfix push"></div> </div> <div class="extra"> <div class="extra-inner"> <div class="container"> <div class="row"> <div class="span4"> <ul> <li><span id="download_webinspect_link">Download WebInspect</span></li> </ul> </div> <div class="span4"> <ul> <li><span id="terms_of_use_link">Terms of Use</span></li> </ul> </div> <div class="span4"> <ul> <li><span id="contact_hp_link">Contact Micro Focus</span></li> <li><span id="privacy_statement_link">Privacy Statement</span></li> </ul> </div> </div> <div class="row"> <div class="disclaimer span12"> The Free Online Bank Web site is published by Micro Focus Fortify for the sole purpose of demonstrating the functionality and effectiveness of Micro Focus Fortify’s WebInspect products in detecting and reporting Web application vulnerabilities. This site is not a real banking site and any similarities to third party products and/or Web sites are purely coincidental. This site is provided "as is" without warranty of any kind, either express or implied. Micro Focus Fortify does not assume any risk in relation to your use of this Web site. Use of this Web site indicates that you have read and agree to Micro Focus Fortify’s Terms of Use found at <a href="https://www.microfocus.com/about/legal/#privacy" target="_blank">https://www.microfocus.com/about/legal/#privacy</a> and Micro Focus Fortify’s Online Privacy Statement found at <a href="https://www.microfocus.com/about/legal/#privacy" target="_blank">https://www.microfocus.com/about/legal/#privacy</a>. <br/><br/> Copyright © 2012-2018, Micro Focus Development Company. All rights reserved. </div> </div> </div> </div> </div> <script type="text/javascript"> $(function () { var path = "/"; var attachClickHandler = function(selector, handler) { $(".extra").on('click', selector, handler); } var footerLinks = { "download_webinspect_link": { absolute: true, page: "https://software.microfocus.com/en-us/products/webinspect-dynamic-analysis-dast/overview" }, "contact_hp_link" : { absolute: true, page: "https://support.fortify.com" }, "privacy_statement_link": { absolute: true, page: "https://www.microfocus.com/about/legal/#privacy" }, "terms_of_use_link": { absolute: true, page: "https://www.microfocus.com/about/legal/" } }; $.each(footerLinks, function(linkId, link) { attachClickHandler('span[id="' + linkId + '"]', function(event) { event.preventDefault(); if (link.absolute) { window.location.href = link.page; } else { window.location.href = path + link.page + ".html"; } }); }); }); </script> </body> </html> |
| URL | http://zero.webappsecurity.com/sitemap.xml |
| Method | GET |
| Parameter | |
| Attack | TRACE, OPTIONS methods with 'Max-Forwards' header. TRACK method. |
| Evidence | |
| Request Header - size: 225 bytes. |
GET http://zero.webappsecurity.com/sitemap.xml HTTP/1.1
Host: zero.webappsecurity.com User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0 Pragma: no-cache Cache-Control: no-cache |
| Request Body - size: 0 bytes. |
|
| Response Header - size: 204 bytes. |
HTTP/1.1 404 Not Found
Date: Mon, 14 Mar 2022 07:13:40 GMT Server: Apache-Coyote/1.1 Access-Control-Allow-Origin: * Content-Type: text/html;charset=utf-8 Content-Language: en Content-Length: 973 |
| Response Body - size: 973 bytes. |
<html><head><title>Apache Tomcat/7.0.70 - Error report</title><style><!--H1 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:22px;} H2 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:16px;} H3 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:14px;} BODY {font-family:Tahoma,Arial,sans-serif;color:black;background-color:white;} B {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;} P {font-family:Tahoma,Arial,sans-serif;background:white;color:black;font-size:12px;}A {color : black;}A.name {color : black;}HR {color : #525D76;}--></style> </head><body><h1>HTTP Status 404 - /sitemap.xml</h1><HR size="1" noshade="noshade"><p><b>type</b> Status report</p><p><b>message</b> <u>/sitemap.xml</u></p><p><b>description</b> <u>The requested resource is not available.</u></p><HR size="1" noshade="noshade"><h3>Apache Tomcat/7.0.70</h3></body></html>
|
| Instances | 19 |
| Solution |
Disable the 'TRACE' method on the proxy servers, as well as the origin web/application server.
Disable the 'OPTIONS' method on the proxy servers, as well as the origin web/application server, if it is not required for other purposes, such as 'CORS' (Cross Origin Resource Sharing).
Configure the web and application servers with custom error pages, to prevent 'fingerprintable' product-specific error pages being leaked to the user in the event of HTTP errors, such as 'TRACK' requests for non-existent pages.
Configure all proxies, application servers, and web servers to prevent disclosure of the technology and version information in the 'Server' and 'X-Powered-By' HTTP response headers.
|
| Reference | https://tools.ietf.org/html/rfc7231#section-5.1.2 |
| Tags |
OWASP_2021_A05
OWASP_2017_A06 |
| CWE Id | 200 |
| WASC Id | 45 |
| Plugin Id | 40025 |
|
Medium |
Absence of Anti-CSRF Tokens |
|---|---|
| Description |
No Anti-CSRF tokens were found in a HTML submission form.
A cross-site request forgery is an attack that involves forcing a victim to send an HTTP request to a target destination without their knowledge or intent in order to perform an action as the victim. The underlying cause is application functionality using predictable URL/form actions in a repeatable way. The nature of the attack is that CSRF exploits the trust that a web site has for a user. By contrast, cross-site scripting (XSS) exploits the trust that a user has for a web site. Like XSS, CSRF attacks are not necessarily cross-site, but they can be. Cross-site request forgery is also known as CSRF, XSRF, one-click attack, session riding, confused deputy, and sea surf.
CSRF attacks are effective in a number of situations, including:
* The victim has an active session on the target site.
* The victim is authenticated via HTTP auth on the target site.
* The victim is on the same local network as the target site.
CSRF has primarily been used to perform an action against a target site using the victim's privileges, but recent techniques have been discovered to disclose information by gaining access to the response. The risk of information disclosure is dramatically increased when the target site is vulnerable to XSS, because XSS can be used as a platform for CSRF, allowing the attack to operate within the bounds of the same-origin policy.
|
| URL | http://zero.webappsecurity.com |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | <form action="/search.html" class="navbar-search pull-right" style="padding-right: 20px"> |
| Request Header - size: 213 bytes. |
GET http://zero.webappsecurity.com HTTP/1.1
Host: zero.webappsecurity.com User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0 Pragma: no-cache Cache-Control: no-cache |
| Request Body - size: 0 bytes. |
|
| Response Header - size: 242 bytes. |
HTTP/1.1 200 OK
Date: Mon, 14 Mar 2022 07:13:40 GMT Server: Apache-Coyote/1.1 Access-Control-Allow-Origin: * Cache-Control: no-cache, max-age=0, must-revalidate, no-store Content-Type: text/html;charset=UTF-8 Content-Language: en-US |
| Response Body - size: 12,471 bytes. |
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Zero - Personal Banking - Loans - Credit Cards</title> <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"> <meta http-equiv="X-UA-Compatible" content="IE=Edge"> <link type="text/css" rel="stylesheet" href="/resources/css/bootstrap.min.css"/> <link type="text/css" rel="stylesheet" href="/resources/css/font-awesome.css"/> <link type="text/css" rel="stylesheet" href="/resources/css/main.css"/> <script src="/resources/js/jquery-1.8.2.min.js"></script> <script src="/resources/js/bootstrap.min.js"></script> <script src="/resources/js/placeholders.min.js"></script> <script type="text/javascript"> Placeholders.init({ live: true, // Apply to future and modified elements too hideOnFocus: true // Hide the placeholder when the element receives focus }); </script> <script type="text/javascript"> $(document).ajaxError(function errorHandler(event, xhr, ajaxOptions, thrownError) { if (xhr.status == 403) { window.location.reload(); } }); </script> </head> <body> <div class="wrapper"> <div class="navbar navbar-fixed-top"> <div class="navbar-inner"> <div class="container"> <a href="/index.html" class="brand">Zero Bank</a> <div> <ul class="nav float-right"> <li> <form action="/search.html" class="navbar-search pull-right" style="padding-right: 20px"> <input type="text" id="searchTerm" name="searchTerm" class="search-query" placeholder="Search"/> </form> </li> <li> <button id="signin_button" type="button" class="signin btn btn-info"> <i class="icon-signin"></i>Signin </button> </li> </ul> </div> </div> </div> </div> <script type="text/javascript"> $(function() { var path = "/"; $("#signin_button").click(function(event) { event.preventDefault(); window.location.href = path + "login" + ".html"; }); }); </script> <div class="container"> <div class="top_offset"> <div class="row"> <div class="span12"> <div id="nav" class="clearfix"> <ul id="pages-nav"> <li id="homeMenu"><div><strong>Home</strong></div></li> <li id="onlineBankingMenu"><div><strong>Online Banking</strong></div></li> <li id="feedback"><div><strong>Feedback</strong></div></li> </ul> </div> </div> <script type="text/javascript"> $(function () { var path = "/"; var featureIdToName = { "index": "homeMenu", "online-banking": "onlineBankingMenu", "feedback": "feedback" }; if (document.location.href.match(".*" + path + "$") != null) { $("#homeMenu").addClass("active"); } else { $.each(featureIdToName, function(featureId, featureName) { if (document.location.href.indexOf(featureId + ".html") >= 0) { $("#" + featureName).addClass("active"); } }); } $.each(featureIdToName, function(featureId, featureName) { $("#nav").on("click", "li[id='" + featureName + "']", function(event) { event.preventDefault(); window.location.href = path + featureId + ".html"; }); }); }); </script> </div> <div class="row"> <div class="span12"> <div id="carousel" class="carousel slide"> <div class="carousel-inner"> <div class="active item"> <img src="/resources/img/main_carousel_1.jpg" width="940" height="401" alt=""/> <div class="custom carousel-caption"> <h4>Online Banking</h4> <p>Welcome to Zero Online Banking. Zero provides a greener and more convenient way to manage your money. Zero enables you to check your account balances, pay your bills, transfer money, and keep detailed records of your transactions, wherever there is an internet connection.</p> </div> </div> <div class="item"> <img src="/resources/img/main_carousel_2.jpg" width="940" height="401" alt=""/> <div class="custom carousel-caption"> <h4>Online Banking</h4> <p>Welcome to Zero Online Banking. Zero provides a greener and more convenient way to manage your money. Zero enables you to check your account balances, pay your bills, transfer money, and keep detailed records of your transactions, wherever there is an internet connection.</p> </div> </div> <div class="item"> <img src="/resources/img/main_carousel_3.jpg" width="940" height="401" alt=""/> <div class="custom carousel-caption"> <h4>Online Banking</h4> <p>Welcome to Zero Online Banking. Zero provides a greener and more convenient way to manage your money. Zero enables you to check your account balances, pay your bills, transfer money, and keep detailed records of your transactions, wherever there is an internet connection.</p> </div> </div> </div> <a class="carousel-control custom left" href="#carousel" data-slide="prev">‹</a> <a class="carousel-control custom right" href="#carousel" data-slide="next">›</a> </div> </div> </div> <hr class="row-divider"/> <div id="online_banking_features" class="row divider"> <div class="span3"> <h4><i class="icon icon-bookmark"></i> Online Banking</h4> <p>Click the button below to view online banking features.</p> <a id="online-banking" class="btn btn-small btn-info">More Services</a> </div> <div class="span3"> <div> <h4><span class="headers" id="account_activity_link"><i class="icon icon-user"></i>Checking Account Activity</span></h4> <p>Use Zero to view the most up-to-date listings of your deposits, withdrawals, interest payments, and a number of other useful transactions. </p> </div> </div> <div class="span3"> <div> <h4><span class="headers" id="transfer_funds_link"><i class="icon icon-random"></i>Transfer Funds</span></h4> <p>Use Zero to safely and securely transfer funds between accounts. There is no hold placed on online money transfers, so your funds are available when you need them. </p> </div> </div> <div class="span3"> <div> <h4><span class="headers" id="money_map_link"><i class="icon icon-list-alt"></i>My Money Map</span></h4> <p>Use Zero to set up and monitor your personalized money map. A money map is an easy-to-use online tool that helps you manage your finances efficiently. With Money Map, you can create a budget, sort your finances into spending and savings categories, check the interest your accounts are earning, and gain new understanding of your patterns with the help of Zero’s clear charts and graphs. </p> </div> </div> </div> <script type="text/javascript"> $(function() { $("#carousel").carousel({ interval: false }); $("div").on("click", "a[id='online-banking']", function(event){ event.preventDefault(); window.location.href = "/" + "online-banking" + ".html"; }); var path = "/bank/"; var featureIdToName = { "account_activity_link": "account-activity", "transfer_funds_link": "transfer-funds", "money_map_link": "money-map" } $.each(featureIdToName, function(featureId, featureName) { $("#online_banking_features").on("click", "span[id='" + featureId + "']", function(event) { event.preventDefault(); window.location.href = path + featureName +".html"; }); }); }); </script> </div> </div> <div class="clearfix push"></div> </div> <div class="extra"> <div class="extra-inner"> <div class="container"> <div class="row"> <div class="span4"> <ul> <li><span id="download_webinspect_link">Download WebInspect</span></li> </ul> </div> <div class="span4"> <ul> <li><span id="terms_of_use_link">Terms of Use</span></li> </ul> </div> <div class="span4"> <ul> <li><span id="contact_hp_link">Contact Micro Focus</span></li> <li><span id="privacy_statement_link">Privacy Statement</span></li> </ul> </div> </div> <div class="row"> <div class="disclaimer span12"> The Free Online Bank Web site is published by Micro Focus Fortify for the sole purpose of demonstrating the functionality and effectiveness of Micro Focus Fortify’s WebInspect products in detecting and reporting Web application vulnerabilities. This site is not a real banking site and any similarities to third party products and/or Web sites are purely coincidental. This site is provided "as is" without warranty of any kind, either express or implied. Micro Focus Fortify does not assume any risk in relation to your use of this Web site. Use of this Web site indicates that you have read and agree to Micro Focus Fortify’s Terms of Use found at <a href="https://www.microfocus.com/about/legal/#privacy" target="_blank">https://www.microfocus.com/about/legal/#privacy</a> and Micro Focus Fortify’s Online Privacy Statement found at <a href="https://www.microfocus.com/about/legal/#privacy" target="_blank">https://www.microfocus.com/about/legal/#privacy</a>. <br/><br/> Copyright © 2012-2018, Micro Focus Development Company. All rights reserved. </div> </div> </div> </div> </div> <script type="text/javascript"> $(function () { var path = "/"; var attachClickHandler = function(selector, handler) { $(".extra").on('click', selector, handler); } var footerLinks = { "download_webinspect_link": { absolute: true, page: "https://software.microfocus.com/en-us/products/webinspect-dynamic-analysis-dast/overview" }, "contact_hp_link" : { absolute: true, page: "https://support.fortify.com" }, "privacy_statement_link": { absolute: true, page: "https://www.microfocus.com/about/legal/#privacy" }, "terms_of_use_link": { absolute: true, page: "https://www.microfocus.com/about/legal/" } }; $.each(footerLinks, function(linkId, link) { attachClickHandler('span[id="' + linkId + '"]', function(event) { event.preventDefault(); if (link.absolute) { window.location.href = link.page; } else { window.location.href = path + link.page + ".html"; } }); }); }); </script> </body> </html> |
| URL | http://zero.webappsecurity.com/ |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | <form action="/search.html" class="navbar-search pull-right" style="padding-right: 20px"> |
| Request Header - size: 214 bytes. |
GET http://zero.webappsecurity.com/ HTTP/1.1
Host: zero.webappsecurity.com User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0 Pragma: no-cache Cache-Control: no-cache |
| Request Body - size: 0 bytes. |
|
| Response Header - size: 242 bytes. |
HTTP/1.1 200 OK
Date: Mon, 14 Mar 2022 07:13:39 GMT Server: Apache-Coyote/1.1 Access-Control-Allow-Origin: * Cache-Control: no-cache, max-age=0, must-revalidate, no-store Content-Type: text/html;charset=UTF-8 Content-Language: en-US |
| Response Body - size: 12,471 bytes. |
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Zero - Personal Banking - Loans - Credit Cards</title> <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"> <meta http-equiv="X-UA-Compatible" content="IE=Edge"> <link type="text/css" rel="stylesheet" href="/resources/css/bootstrap.min.css"/> <link type="text/css" rel="stylesheet" href="/resources/css/font-awesome.css"/> <link type="text/css" rel="stylesheet" href="/resources/css/main.css"/> <script src="/resources/js/jquery-1.8.2.min.js"></script> <script src="/resources/js/bootstrap.min.js"></script> <script src="/resources/js/placeholders.min.js"></script> <script type="text/javascript"> Placeholders.init({ live: true, // Apply to future and modified elements too hideOnFocus: true // Hide the placeholder when the element receives focus }); </script> <script type="text/javascript"> $(document).ajaxError(function errorHandler(event, xhr, ajaxOptions, thrownError) { if (xhr.status == 403) { window.location.reload(); } }); </script> </head> <body> <div class="wrapper"> <div class="navbar navbar-fixed-top"> <div class="navbar-inner"> <div class="container"> <a href="/index.html" class="brand">Zero Bank</a> <div> <ul class="nav float-right"> <li> <form action="/search.html" class="navbar-search pull-right" style="padding-right: 20px"> <input type="text" id="searchTerm" name="searchTerm" class="search-query" placeholder="Search"/> </form> </li> <li> <button id="signin_button" type="button" class="signin btn btn-info"> <i class="icon-signin"></i>Signin </button> </li> </ul> </div> </div> </div> </div> <script type="text/javascript"> $(function() { var path = "/"; $("#signin_button").click(function(event) { event.preventDefault(); window.location.href = path + "login" + ".html"; }); }); </script> <div class="container"> <div class="top_offset"> <div class="row"> <div class="span12"> <div id="nav" class="clearfix"> <ul id="pages-nav"> <li id="homeMenu"><div><strong>Home</strong></div></li> <li id="onlineBankingMenu"><div><strong>Online Banking</strong></div></li> <li id="feedback"><div><strong>Feedback</strong></div></li> </ul> </div> </div> <script type="text/javascript"> $(function () { var path = "/"; var featureIdToName = { "index": "homeMenu", "online-banking": "onlineBankingMenu", "feedback": "feedback" }; if (document.location.href.match(".*" + path + "$") != null) { $("#homeMenu").addClass("active"); } else { $.each(featureIdToName, function(featureId, featureName) { if (document.location.href.indexOf(featureId + ".html") >= 0) { $("#" + featureName).addClass("active"); } }); } $.each(featureIdToName, function(featureId, featureName) { $("#nav").on("click", "li[id='" + featureName + "']", function(event) { event.preventDefault(); window.location.href = path + featureId + ".html"; }); }); }); </script> </div> <div class="row"> <div class="span12"> <div id="carousel" class="carousel slide"> <div class="carousel-inner"> <div class="active item"> <img src="/resources/img/main_carousel_1.jpg" width="940" height="401" alt=""/> <div class="custom carousel-caption"> <h4>Online Banking</h4> <p>Welcome to Zero Online Banking. Zero provides a greener and more convenient way to manage your money. Zero enables you to check your account balances, pay your bills, transfer money, and keep detailed records of your transactions, wherever there is an internet connection.</p> </div> </div> <div class="item"> <img src="/resources/img/main_carousel_2.jpg" width="940" height="401" alt=""/> <div class="custom carousel-caption"> <h4>Online Banking</h4> <p>Welcome to Zero Online Banking. Zero provides a greener and more convenient way to manage your money. Zero enables you to check your account balances, pay your bills, transfer money, and keep detailed records of your transactions, wherever there is an internet connection.</p> </div> </div> <div class="item"> <img src="/resources/img/main_carousel_3.jpg" width="940" height="401" alt=""/> <div class="custom carousel-caption"> <h4>Online Banking</h4> <p>Welcome to Zero Online Banking. Zero provides a greener and more convenient way to manage your money. Zero enables you to check your account balances, pay your bills, transfer money, and keep detailed records of your transactions, wherever there is an internet connection.</p> </div> </div> </div> <a class="carousel-control custom left" href="#carousel" data-slide="prev">‹</a> <a class="carousel-control custom right" href="#carousel" data-slide="next">›</a> </div> </div> </div> <hr class="row-divider"/> <div id="online_banking_features" class="row divider"> <div class="span3"> <h4><i class="icon icon-bookmark"></i> Online Banking</h4> <p>Click the button below to view online banking features.</p> <a id="online-banking" class="btn btn-small btn-info">More Services</a> </div> <div class="span3"> <div> <h4><span class="headers" id="account_activity_link"><i class="icon icon-user"></i>Checking Account Activity</span></h4> <p>Use Zero to view the most up-to-date listings of your deposits, withdrawals, interest payments, and a number of other useful transactions. </p> </div> </div> <div class="span3"> <div> <h4><span class="headers" id="transfer_funds_link"><i class="icon icon-random"></i>Transfer Funds</span></h4> <p>Use Zero to safely and securely transfer funds between accounts. There is no hold placed on online money transfers, so your funds are available when you need them. </p> </div> </div> <div class="span3"> <div> <h4><span class="headers" id="money_map_link"><i class="icon icon-list-alt"></i>My Money Map</span></h4> <p>Use Zero to set up and monitor your personalized money map. A money map is an easy-to-use online tool that helps you manage your finances efficiently. With Money Map, you can create a budget, sort your finances into spending and savings categories, check the interest your accounts are earning, and gain new understanding of your patterns with the help of Zero’s clear charts and graphs. </p> </div> </div> </div> <script type="text/javascript"> $(function() { $("#carousel").carousel({ interval: false }); $("div").on("click", "a[id='online-banking']", function(event){ event.preventDefault(); window.location.href = "/" + "online-banking" + ".html"; }); var path = "/bank/"; var featureIdToName = { "account_activity_link": "account-activity", "transfer_funds_link": "transfer-funds", "money_map_link": "money-map" } $.each(featureIdToName, function(featureId, featureName) { $("#online_banking_features").on("click", "span[id='" + featureId + "']", function(event) { event.preventDefault(); window.location.href = path + featureName +".html"; }); }); }); </script> </div> </div> <div class="clearfix push"></div> </div> <div class="extra"> <div class="extra-inner"> <div class="container"> <div class="row"> <div class="span4"> <ul> <li><span id="download_webinspect_link">Download WebInspect</span></li> </ul> </div> <div class="span4"> <ul> <li><span id="terms_of_use_link">Terms of Use</span></li> </ul> </div> <div class="span4"> <ul> <li><span id="contact_hp_link">Contact Micro Focus</span></li> <li><span id="privacy_statement_link">Privacy Statement</span></li> </ul> </div> </div> <div class="row"> <div class="disclaimer span12"> The Free Online Bank Web site is published by Micro Focus Fortify for the sole purpose of demonstrating the functionality and effectiveness of Micro Focus Fortify’s WebInspect products in detecting and reporting Web application vulnerabilities. This site is not a real banking site and any similarities to third party products and/or Web sites are purely coincidental. This site is provided "as is" without warranty of any kind, either express or implied. Micro Focus Fortify does not assume any risk in relation to your use of this Web site. Use of this Web site indicates that you have read and agree to Micro Focus Fortify’s Terms of Use found at <a href="https://www.microfocus.com/about/legal/#privacy" target="_blank">https://www.microfocus.com/about/legal/#privacy</a> and Micro Focus Fortify’s Online Privacy Statement found at <a href="https://www.microfocus.com/about/legal/#privacy" target="_blank">https://www.microfocus.com/about/legal/#privacy</a>. <br/><br/> Copyright © 2012-2018, Micro Focus Development Company. All rights reserved. </div> </div> </div> </div> </div> <script type="text/javascript"> $(function () { var path = "/"; var attachClickHandler = function(selector, handler) { $(".extra").on('click', selector, handler); } var footerLinks = { "download_webinspect_link": { absolute: true, page: "https://software.microfocus.com/en-us/products/webinspect-dynamic-analysis-dast/overview" }, "contact_hp_link" : { absolute: true, page: "https://support.fortify.com" }, "privacy_statement_link": { absolute: true, page: "https://www.microfocus.com/about/legal/#privacy" }, "terms_of_use_link": { absolute: true, page: "https://www.microfocus.com/about/legal/" } }; $.each(footerLinks, function(linkId, link) { attachClickHandler('span[id="' + linkId + '"]', function(event) { event.preventDefault(); if (link.absolute) { window.location.href = link.page; } else { window.location.href = path + link.page + ".html"; } }); }); }); </script> </body> </html> |
| URL | http://zero.webappsecurity.com/index.html |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | <form action="/search.html" class="navbar-search pull-right" style="padding-right: 20px"> |
| Request Header - size: 265 bytes. |
GET http://zero.webappsecurity.com/index.html HTTP/1.1
Host: zero.webappsecurity.com User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0 Pragma: no-cache Cache-Control: no-cache Referer: http://zero.webappsecurity.com |
| Request Body - size: 0 bytes. |
|
| Response Header - size: 242 bytes. |
HTTP/1.1 200 OK
Date: Mon, 14 Mar 2022 07:13:41 GMT Server: Apache-Coyote/1.1 Access-Control-Allow-Origin: * Cache-Control: no-cache, max-age=0, must-revalidate, no-store Content-Type: text/html;charset=UTF-8 Content-Language: en-US |
| Response Body - size: 12,471 bytes. |
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Zero - Personal Banking - Loans - Credit Cards</title> <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"> <meta http-equiv="X-UA-Compatible" content="IE=Edge"> <link type="text/css" rel="stylesheet" href="/resources/css/bootstrap.min.css"/> <link type="text/css" rel="stylesheet" href="/resources/css/font-awesome.css"/> <link type="text/css" rel="stylesheet" href="/resources/css/main.css"/> <script src="/resources/js/jquery-1.8.2.min.js"></script> <script src="/resources/js/bootstrap.min.js"></script> <script src="/resources/js/placeholders.min.js"></script> <script type="text/javascript"> Placeholders.init({ live: true, // Apply to future and modified elements too hideOnFocus: true // Hide the placeholder when the element receives focus }); </script> <script type="text/javascript"> $(document).ajaxError(function errorHandler(event, xhr, ajaxOptions, thrownError) { if (xhr.status == 403) { window.location.reload(); } }); </script> </head> <body> <div class="wrapper"> <div class="navbar navbar-fixed-top"> <div class="navbar-inner"> <div class="container"> <a href="/index.html" class="brand">Zero Bank</a> <div> <ul class="nav float-right"> <li> <form action="/search.html" class="navbar-search pull-right" style="padding-right: 20px"> <input type="text" id="searchTerm" name="searchTerm" class="search-query" placeholder="Search"/> </form> </li> <li> <button id="signin_button" type="button" class="signin btn btn-info"> <i class="icon-signin"></i>Signin </button> </li> </ul> </div> </div> </div> </div> <script type="text/javascript"> $(function() { var path = "/"; $("#signin_button").click(function(event) { event.preventDefault(); window.location.href = path + "login" + ".html"; }); }); </script> <div class="container"> <div class="top_offset"> <div class="row"> <div class="span12"> <div id="nav" class="clearfix"> <ul id="pages-nav"> <li id="homeMenu"><div><strong>Home</strong></div></li> <li id="onlineBankingMenu"><div><strong>Online Banking</strong></div></li> <li id="feedback"><div><strong>Feedback</strong></div></li> </ul> </div> </div> <script type="text/javascript"> $(function () { var path = "/"; var featureIdToName = { "index": "homeMenu", "online-banking": "onlineBankingMenu", "feedback": "feedback" }; if (document.location.href.match(".*" + path + "$") != null) { $("#homeMenu").addClass("active"); } else { $.each(featureIdToName, function(featureId, featureName) { if (document.location.href.indexOf(featureId + ".html") >= 0) { $("#" + featureName).addClass("active"); } }); } $.each(featureIdToName, function(featureId, featureName) { $("#nav").on("click", "li[id='" + featureName + "']", function(event) { event.preventDefault(); window.location.href = path + featureId + ".html"; }); }); }); </script> </div> <div class="row"> <div class="span12"> <div id="carousel" class="carousel slide"> <div class="carousel-inner"> <div class="active item"> <img src="/resources/img/main_carousel_1.jpg" width="940" height="401" alt=""/> <div class="custom carousel-caption"> <h4>Online Banking</h4> <p>Welcome to Zero Online Banking. Zero provides a greener and more convenient way to manage your money. Zero enables you to check your account balances, pay your bills, transfer money, and keep detailed records of your transactions, wherever there is an internet connection.</p> </div> </div> <div class="item"> <img src="/resources/img/main_carousel_2.jpg" width="940" height="401" alt=""/> <div class="custom carousel-caption"> <h4>Online Banking</h4> <p>Welcome to Zero Online Banking. Zero provides a greener and more convenient way to manage your money. Zero enables you to check your account balances, pay your bills, transfer money, and keep detailed records of your transactions, wherever there is an internet connection.</p> </div> </div> <div class="item"> <img src="/resources/img/main_carousel_3.jpg" width="940" height="401" alt=""/> <div class="custom carousel-caption"> <h4>Online Banking</h4> <p>Welcome to Zero Online Banking. Zero provides a greener and more convenient way to manage your money. Zero enables you to check your account balances, pay your bills, transfer money, and keep detailed records of your transactions, wherever there is an internet connection.</p> </div> </div> </div> <a class="carousel-control custom left" href="#carousel" data-slide="prev">‹</a> <a class="carousel-control custom right" href="#carousel" data-slide="next">›</a> </div> </div> </div> <hr class="row-divider"/> <div id="online_banking_features" class="row divider"> <div class="span3"> <h4><i class="icon icon-bookmark"></i> Online Banking</h4> <p>Click the button below to view online banking features.</p> <a id="online-banking" class="btn btn-small btn-info">More Services</a> </div> <div class="span3"> <div> <h4><span class="headers" id="account_activity_link"><i class="icon icon-user"></i>Checking Account Activity</span></h4> <p>Use Zero to view the most up-to-date listings of your deposits, withdrawals, interest payments, and a number of other useful transactions. </p> </div> </div> <div class="span3"> <div> <h4><span class="headers" id="transfer_funds_link"><i class="icon icon-random"></i>Transfer Funds</span></h4> <p>Use Zero to safely and securely transfer funds between accounts. There is no hold placed on online money transfers, so your funds are available when you need them. </p> </div> </div> <div class="span3"> <div> <h4><span class="headers" id="money_map_link"><i class="icon icon-list-alt"></i>My Money Map</span></h4> <p>Use Zero to set up and monitor your personalized money map. A money map is an easy-to-use online tool that helps you manage your finances efficiently. With Money Map, you can create a budget, sort your finances into spending and savings categories, check the interest your accounts are earning, and gain new understanding of your patterns with the help of Zero’s clear charts and graphs. </p> </div> </div> </div> <script type="text/javascript"> $(function() { $("#carousel").carousel({ interval: false }); $("div").on("click", "a[id='online-banking']", function(event){ event.preventDefault(); window.location.href = "/" + "online-banking" + ".html"; }); var path = "/bank/"; var featureIdToName = { "account_activity_link": "account-activity", "transfer_funds_link": "transfer-funds", "money_map_link": "money-map" } $.each(featureIdToName, function(featureId, featureName) { $("#online_banking_features").on("click", "span[id='" + featureId + "']", function(event) { event.preventDefault(); window.location.href = path + featureName +".html"; }); }); }); </script> </div> </div> <div class="clearfix push"></div> </div> <div class="extra"> <div class="extra-inner"> <div class="container"> <div class="row"> <div class="span4"> <ul> <li><span id="download_webinspect_link">Download WebInspect</span></li> </ul> </div> <div class="span4"> <ul> <li><span id="terms_of_use_link">Terms of Use</span></li> </ul> </div> <div class="span4"> <ul> <li><span id="contact_hp_link">Contact Micro Focus</span></li> <li><span id="privacy_statement_link">Privacy Statement</span></li> </ul> </div> </div> <div class="row"> <div class="disclaimer span12"> The Free Online Bank Web site is published by Micro Focus Fortify for the sole purpose of demonstrating the functionality and effectiveness of Micro Focus Fortify’s WebInspect products in detecting and reporting Web application vulnerabilities. This site is not a real banking site and any similarities to third party products and/or Web sites are purely coincidental. This site is provided "as is" without warranty of any kind, either express or implied. Micro Focus Fortify does not assume any risk in relation to your use of this Web site. Use of this Web site indicates that you have read and agree to Micro Focus Fortify’s Terms of Use found at <a href="https://www.microfocus.com/about/legal/#privacy" target="_blank">https://www.microfocus.com/about/legal/#privacy</a> and Micro Focus Fortify’s Online Privacy Statement found at <a href="https://www.microfocus.com/about/legal/#privacy" target="_blank">https://www.microfocus.com/about/legal/#privacy</a>. <br/><br/> Copyright © 2012-2018, Micro Focus Development Company. All rights reserved. </div> </div> </div> </div> </div> <script type="text/javascript"> $(function () { var path = "/"; var attachClickHandler = function(selector, handler) { $(".extra").on('click', selector, handler); } var footerLinks = { "download_webinspect_link": { absolute: true, page: "https://software.microfocus.com/en-us/products/webinspect-dynamic-analysis-dast/overview" }, "contact_hp_link" : { absolute: true, page: "https://support.fortify.com" }, "privacy_statement_link": { absolute: true, page: "https://www.microfocus.com/about/legal/#privacy" }, "terms_of_use_link": { absolute: true, page: "https://www.microfocus.com/about/legal/" } }; $.each(footerLinks, function(linkId, link) { attachClickHandler('span[id="' + linkId + '"]', function(event) { event.preventDefault(); if (link.absolute) { window.location.href = link.page; } else { window.location.href = path + link.page + ".html"; } }); }); }); </script> </body> </html> |
| URL | http://zero.webappsecurity.com/search.html?searchTerm=ZAP |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | <form action="/search.html" class="navbar-search pull-right" style="padding-right: 20px"> |
| Request Header - size: 281 bytes. |
GET http://zero.webappsecurity.com/search.html?searchTerm=ZAP HTTP/1.1
Host: zero.webappsecurity.com User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0 Pragma: no-cache Cache-Control: no-cache Referer: http://zero.webappsecurity.com |
| Request Body - size: 0 bytes. |
|
| Response Header - size: 242 bytes. |
HTTP/1.1 200 OK
Date: Mon, 14 Mar 2022 07:13:43 GMT Server: Apache-Coyote/1.1 Access-Control-Allow-Origin: * Cache-Control: no-cache, max-age=0, must-revalidate, no-store Content-Type: text/html;charset=UTF-8 Content-Language: en-US |
| Response Body - size: 7,723 bytes. |
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Zero - Search Tips</title> <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"> <meta http-equiv="X-UA-Compatible" content="IE=Edge"> <link type="text/css" rel="stylesheet" href="/resources/css/bootstrap.min.css"/> <link type="text/css" rel="stylesheet" href="/resources/css/font-awesome.css"/> <link type="text/css" rel="stylesheet" href="/resources/css/main.css"/> <script src="/resources/js/jquery-1.8.2.min.js"></script> <script src="/resources/js/bootstrap.min.js"></script> <script src="/resources/js/placeholders.min.js"></script> <script type="text/javascript"> Placeholders.init({ live: true, // Apply to future and modified elements too hideOnFocus: true // Hide the placeholder when the element receives focus }); </script> <script type="text/javascript"> $(document).ajaxError(function errorHandler(event, xhr, ajaxOptions, thrownError) { if (xhr.status == 403) { window.location.reload(); } }); </script> </head> <body> <div class="wrapper"> <div class="navbar navbar-fixed-top"> <div class="navbar-inner"> <div class="container"> <a href="/index.html" class="brand">Zero Bank</a> <div> <ul class="nav float-right"> <li> <form action="/search.html" class="navbar-search pull-right" style="padding-right: 20px"> <input type="text" id="searchTerm" name="searchTerm" class="search-query" placeholder="Search"/> </form> </li> <li> <button id="signin_button" type="button" class="signin btn btn-info"> <i class="icon-signin"></i>Signin </button> </li> </ul> </div> </div> </div> </div> <script type="text/javascript"> $(function() { var path = "/"; $("#signin_button").click(function(event) { event.preventDefault(); window.location.href = path + "login" + ".html"; }); }); </script> <div class="container"> <div class="top_offset"> <div class="row"> <div class="span12"> <div id="nav" class="clearfix"> <ul id="pages-nav"> <li id="homeMenu"><div><strong>Home</strong></div></li> <li id="onlineBankingMenu"><div><strong>Online Banking</strong></div></li> <li id="feedback"><div><strong>Feedback</strong></div></li> </ul> </div> </div> <script type="text/javascript"> $(function () { var path = "/"; var featureIdToName = { "index": "homeMenu", "online-banking": "onlineBankingMenu", "feedback": "feedback" }; if (document.location.href.match(".*" + path + "$") != null) { $("#homeMenu").addClass("active"); } else { $.each(featureIdToName, function(featureId, featureName) { if (document.location.href.indexOf(featureId + ".html") >= 0) { $("#" + featureName).addClass("active"); } }); } $.each(featureIdToName, function(featureId, featureName) { $("#nav").on("click", "li[id='" + featureName + "']", function(event) { event.preventDefault(); window.location.href = path + featureId + ".html"; }); }); }); </script> </div> <hr class="row-divider"/> <h2>Search Results:</h2> No results were found for the query: ZAP </div> </div> <div class="clearfix push"></div> </div> <div class="extra"> <div class="extra-inner"> <div class="container"> <div class="row"> <div class="span4"> <ul> <li><span id="download_webinspect_link">Download WebInspect</span></li> </ul> </div> <div class="span4"> <ul> <li><span id="terms_of_use_link">Terms of Use</span></li> </ul> </div> <div class="span4"> <ul> <li><span id="contact_hp_link">Contact Micro Focus</span></li> <li><span id="privacy_statement_link">Privacy Statement</span></li> </ul> </div> </div> <div class="row"> <div class="disclaimer span12"> The Free Online Bank Web site is published by Micro Focus Fortify for the sole purpose of demonstrating the functionality and effectiveness of Micro Focus Fortify’s WebInspect products in detecting and reporting Web application vulnerabilities. This site is not a real banking site and any similarities to third party products and/or Web sites are purely coincidental. This site is provided "as is" without warranty of any kind, either express or implied. Micro Focus Fortify does not assume any risk in relation to your use of this Web site. Use of this Web site indicates that you have read and agree to Micro Focus Fortify’s Terms of Use found at <a href="https://www.microfocus.com/about/legal/#privacy" target="_blank">https://www.microfocus.com/about/legal/#privacy</a> and Micro Focus Fortify’s Online Privacy Statement found at <a href="https://www.microfocus.com/about/legal/#privacy" target="_blank">https://www.microfocus.com/about/legal/#privacy</a>. <br/><br/> Copyright © 2012-2018, Micro Focus Development Company. All rights reserved. </div> </div> </div> </div> </div> <script type="text/javascript"> $(function () { var path = "/"; var attachClickHandler = function(selector, handler) { $(".extra").on('click', selector, handler); } var footerLinks = { "download_webinspect_link": { absolute: true, page: "https://software.microfocus.com/en-us/products/webinspect-dynamic-analysis-dast/overview" }, "contact_hp_link" : { absolute: true, page: "https://support.fortify.com" }, "privacy_statement_link": { absolute: true, page: "https://www.microfocus.com/about/legal/#privacy" }, "terms_of_use_link": { absolute: true, page: "https://www.microfocus.com/about/legal/" } }; $.each(footerLinks, function(linkId, link) { attachClickHandler('span[id="' + linkId + '"]', function(event) { event.preventDefault(); if (link.absolute) { window.location.href = link.page; } else { window.location.href = path + link.page + ".html"; } }); }); }); </script> </body> </html> |
| Instances | 4 |
| Solution |
Phase: Architecture and Design
Use a vetted library or framework that does not allow this weakness to occur or provides constructs that make this weakness easier to avoid.
For example, use anti-CSRF packages such as the OWASP CSRFGuard.
Phase: Implementation
Ensure that your application is free of cross-site scripting issues, because most CSRF defenses can be bypassed using attacker-controlled script.
Phase: Architecture and Design
Generate a unique nonce for each form, place the nonce into the form, and verify the nonce upon receipt of the form. Be sure that the nonce is not predictable (CWE-330).
Note that this can be bypassed using XSS.
Identify especially dangerous operations. When the user performs a dangerous operation, send a separate confirmation request to ensure that the user intended to perform that operation.
Note that this can be bypassed using XSS.
Use the ESAPI Session Management control.
This control includes a component for CSRF.
Do not use the GET method for any request that triggers a state change.
Phase: Implementation
Check the HTTP Referer header to see if the request originated from an expected page. This could break legitimate functionality, because users or proxies may have disabled sending the Referer for privacy reasons.
|
| Reference |
http://projects.webappsec.org/Cross-Site-Request-Forgery
http://cwe.mitre.org/data/definitions/352.html |
| Tags |
OWASP_2021_A01
WSTG-v42-SESS-05 OWASP_2017_A05 |
| CWE Id | 352 |
| WASC Id | 9 |
| Plugin Id | 10202 |
|
Medium |
Backup File Disclosure |
|---|---|
| Description |
A backup of the file was disclosed by the web server
|
| URL | http://zero.webappsecurity.com/index.html.old |
| Method | GET |
| Parameter | |
| Attack | http://zero.webappsecurity.com/index.html.old |
| Evidence | A backup of [http://zero.webappsecurity.com/index.html] is available at [http://zero.webappsecurity.com/index.html.old] |
| Request Header - size: 247 bytes. |
GET http://zero.webappsecurity.com/index.html.old HTTP/1.1
Host: zero.webappsecurity.com User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0 Pragma: no-cache Cache-Control: no-cache Content-Length: 0 |
| Request Body - size: 0 bytes. |
|
| Response Header - size: 289 bytes. |
HTTP/1.1 200 OK
Date: Mon, 14 Mar 2022 07:19:57 GMT Server: Apache-Coyote/1.1 Access-Control-Allow-Origin: * Accept-Ranges: bytes ETag: W/"3691-1368929102000" Last-Modified: Sun, 19 May 2013 02:05:02 GMT Content-Type: application/octet-stream;charset=UTF-8 Content-Length: 3691 |
| Response Body - size: 3,691 bytes. |
<!DOCTYPE html>
<html lang="en"> <head> <meta charset="utf-8"> <title>Free Bank Online</title> <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"> <link type="text/css" rel="stylesheet" href="<@spring.url '/resources/css/jquery-ui-1.8.16.custom.css'/>"/> <link type="text/css" rel="stylesheet" href="<@spring.url '/resources/css/bootstrap.css'/>"/> <link type="text/css" rel="stylesheet" href="<@spring.url '/resources/css/main.css'/>"/> <link type="text/css" rel="stylesheet" href="<@spring.url '/resources/css/font-awesome.css'/>"/> <script src="<@spring.url '/resources/js/jquery-${jqueryVersion}.min.js'/>"></script> <script src="<@spring.url '/resources/js/bootstrap.js'/>"></script> <script src="<@spring.url '/resources/js/jquery-ui.min.js'/>"></script> <!--[if lt IE 9]> <script src="<@spring.url '/resources/js/html5.js'/>"></script> <![endif]--> <script type="text/javascript"> $(document).ajaxError(function errorHandler(event, xhr, ajaxOptions, thrownError) { if (xhr.status == 403) { window.location.reload(); } }); </script> </head> <body> <div class="row"> <div class="span12"> <div id="carousel" class="carousel slide"> <div class="carousel-inner"> <div class="active item"><img src="<@spring.url '/resources/img/1.jpg'/>" alt=""/> <div class="custom carousel-caption"> <h4>Online Banking</h4> <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod.</p> <p>Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit. </p> </div> </div> <div class="item"><img src="<@spring.url '/resources/img/3.jpg'/>" alt=""/> <div class="custom carousel-caption"><h4>Title goes right here!</h4> <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod.</p> <p>Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit. </p> </div> </div> <div class="item"><img src="<@spring.url '/resources/img/6.jpg'/>" alt=""/> <div class="custom carousel-caption"><h4>Title goes right here!</h4> <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod.</p> <p>Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit. </p> </div> </div> </div> <a class="carousel-control custom left" href="#carousel" data-slide="prev">‹</a> <a class="carousel-control custom right" href="#carousel" data-slide="next">›</a> <script> $(function () { $('#carousel').carousel({ interval:false }); }); </script> </div> </div> </div> </body> </html> |
| URL | http://zero.webappsecurity.com/index.old |
| Method | GET |
| Parameter | |
| Attack | http://zero.webappsecurity.com/index.old |
| Evidence | A backup of [http://zero.webappsecurity.com/index.html] is available at [http://zero.webappsecurity.com/index.old] |
| Request Header - size: 242 bytes. |
GET http://zero.webappsecurity.com/index.old HTTP/1.1
Host: zero.webappsecurity.com User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0 Pragma: no-cache Cache-Control: no-cache Content-Length: 0 |
| Request Body - size: 0 bytes. |
|
| Response Header - size: 289 bytes. |
HTTP/1.1 200 OK
Date: Mon, 14 Mar 2022 07:19:57 GMT Server: Apache-Coyote/1.1 Access-Control-Allow-Origin: * Accept-Ranges: bytes ETag: W/"3691-1368929102000" Last-Modified: Sun, 19 May 2013 02:05:02 GMT Content-Type: application/octet-stream;charset=UTF-8 Content-Length: 3691 |
| Response Body - size: 3,691 bytes. |
<!DOCTYPE html>
<html lang="en"> <head> <meta charset="utf-8"> <title>Free Bank Online</title> <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"> <link type="text/css" rel="stylesheet" href="<@spring.url '/resources/css/jquery-ui-1.8.16.custom.css'/>"/> <link type="text/css" rel="stylesheet" href="<@spring.url '/resources/css/bootstrap.css'/>"/> <link type="text/css" rel="stylesheet" href="<@spring.url '/resources/css/main.css'/>"/> <link type="text/css" rel="stylesheet" href="<@spring.url '/resources/css/font-awesome.css'/>"/> <script src="<@spring.url '/resources/js/jquery-${jqueryVersion}.min.js'/>"></script> <script src="<@spring.url '/resources/js/bootstrap.js'/>"></script> <script src="<@spring.url '/resources/js/jquery-ui.min.js'/>"></script> <!--[if lt IE 9]> <script src="<@spring.url '/resources/js/html5.js'/>"></script> <![endif]--> <script type="text/javascript"> $(document).ajaxError(function errorHandler(event, xhr, ajaxOptions, thrownError) { if (xhr.status == 403) { window.location.reload(); } }); </script> </head> <body> <div class="row"> <div class="span12"> <div id="carousel" class="carousel slide"> <div class="carousel-inner"> <div class="active item"><img src="<@spring.url '/resources/img/1.jpg'/>" alt=""/> <div class="custom carousel-caption"> <h4>Online Banking</h4> <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod.</p> <p>Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit. </p> </div> </div> <div class="item"><img src="<@spring.url '/resources/img/3.jpg'/>" alt=""/> <div class="custom carousel-caption"><h4>Title goes right here!</h4> <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod.</p> <p>Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit. </p> </div> </div> <div class="item"><img src="<@spring.url '/resources/img/6.jpg'/>" alt=""/> <div class="custom carousel-caption"><h4>Title goes right here!</h4> <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod.</p> <p>Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit. </p> </div> </div> </div> <a class="carousel-control custom left" href="#carousel" data-slide="prev">‹</a> <a class="carousel-control custom right" href="#carousel" data-slide="next">›</a> <script> $(function () { $('#carousel').carousel({ interval:false }); }); </script> </div> </div> </div> </body> </html> |
| Instances | 2 |
| Solution |
Do not edit files in-situ on the web server, and ensure that un-necessary files (including hidden files) are removed from the web server.
|
| Reference |
https://cwe.mitre.org/data/definitions/530.html
https://owasp.org/www-project-web-security-testing-guide/v41/4-Web_Application_Security_Testing/02-Configuration_and_Deployment_Management_Testing/04-Review_Old_Backup_and_Unreferenced_Files_for_Sensitive_Information.html |
| Tags |
OWASP_2021_A05
WSTG-v42-CONF-04 OWASP_2017_A03 |
| CWE Id | 530 |
| WASC Id | 34 |
| Plugin Id | 10095 |
|
Medium |
CORS Misconfiguration |
|---|---|
| Description |
This CORS misconfiguration could allow an attacker to perform AJAX queries to the vulnerable website from a malicious page loaded by the victim's user agent.
In order to perform authenticated AJAX queries, the server must specify the header "Access-Control-Allow-Credentials: true" and the "Access-Control-Allow-Origin" header must be set to null or the malicious page's domain. Even if this misconfiguration doesn't allow authenticated AJAX requests, unauthenticated sensitive content can still be accessed (e.g intranet websites).
A malicious page can belong to a malicious website but also a trusted website with flaws (e.g XSS, support of HTTP without TLS allowing code injection through MITM, etc).
|
| URL | http://zero.webappsecurity.com |
| Method | GET |
| Parameter | |
| Attack | Origin: http://4qCMHsQq.com |
| Evidence | Access-Control-Allow-Origin: * |
| Request Header - size: 261 bytes. |
GET http://zero.webappsecurity.com HTTP/1.1
Host: zero.webappsecurity.com User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0 Pragma: no-cache Cache-Control: no-cache Origin: http://4qCMHsQq.com Content-Length: 0 |
| Request Body - size: 0 bytes. |
|
| Response Header - size: 242 bytes. |
HTTP/1.1 200 OK
Date: Mon, 14 Mar 2022 07:23:13 GMT Server: Apache-Coyote/1.1 Access-Control-Allow-Origin: * Cache-Control: no-cache, max-age=0, must-revalidate, no-store Content-Type: text/html;charset=UTF-8 Content-Language: en-US |
| Response Body - size: 12,471 bytes. |
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Zero - Personal Banking - Loans - Credit Cards</title> <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"> <meta http-equiv="X-UA-Compatible" content="IE=Edge"> <link type="text/css" rel="stylesheet" href="/resources/css/bootstrap.min.css"/> <link type="text/css" rel="stylesheet" href="/resources/css/font-awesome.css"/> <link type="text/css" rel="stylesheet" href="/resources/css/main.css"/> <script src="/resources/js/jquery-1.8.2.min.js"></script> <script src="/resources/js/bootstrap.min.js"></script> <script src="/resources/js/placeholders.min.js"></script> <script type="text/javascript"> Placeholders.init({ live: true, // Apply to future and modified elements too hideOnFocus: true // Hide the placeholder when the element receives focus }); </script> <script type="text/javascript"> $(document).ajaxError(function errorHandler(event, xhr, ajaxOptions, thrownError) { if (xhr.status == 403) { window.location.reload(); } }); </script> </head> <body> <div class="wrapper"> <div class="navbar navbar-fixed-top"> <div class="navbar-inner"> <div class="container"> <a href="/index.html" class="brand">Zero Bank</a> <div> <ul class="nav float-right"> <li> <form action="/search.html" class="navbar-search pull-right" style="padding-right: 20px"> <input type="text" id="searchTerm" name="searchTerm" class="search-query" placeholder="Search"/> </form> </li> <li> <button id="signin_button" type="button" class="signin btn btn-info"> <i class="icon-signin"></i>Signin </button> </li> </ul> </div> </div> </div> </div> <script type="text/javascript"> $(function() { var path = "/"; $("#signin_button").click(function(event) { event.preventDefault(); window.location.href = path + "login" + ".html"; }); }); </script> <div class="container"> <div class="top_offset"> <div class="row"> <div class="span12"> <div id="nav" class="clearfix"> <ul id="pages-nav"> <li id="homeMenu"><div><strong>Home</strong></div></li> <li id="onlineBankingMenu"><div><strong>Online Banking</strong></div></li> <li id="feedback"><div><strong>Feedback</strong></div></li> </ul> </div> </div> <script type="text/javascript"> $(function () { var path = "/"; var featureIdToName = { "index": "homeMenu", "online-banking": "onlineBankingMenu", "feedback": "feedback" }; if (document.location.href.match(".*" + path + "$") != null) { $("#homeMenu").addClass("active"); } else { $.each(featureIdToName, function(featureId, featureName) { if (document.location.href.indexOf(featureId + ".html") >= 0) { $("#" + featureName).addClass("active"); } }); } $.each(featureIdToName, function(featureId, featureName) { $("#nav").on("click", "li[id='" + featureName + "']", function(event) { event.preventDefault(); window.location.href = path + featureId + ".html"; }); }); }); </script> </div> <div class="row"> <div class="span12"> <div id="carousel" class="carousel slide"> <div class="carousel-inner"> <div class="active item"> <img src="/resources/img/main_carousel_1.jpg" width="940" height="401" alt=""/> <div class="custom carousel-caption"> <h4>Online Banking</h4> <p>Welcome to Zero Online Banking. Zero provides a greener and more convenient way to manage your money. Zero enables you to check your account balances, pay your bills, transfer money, and keep detailed records of your transactions, wherever there is an internet connection.</p> </div> </div> <div class="item"> <img src="/resources/img/main_carousel_2.jpg" width="940" height="401" alt=""/> <div class="custom carousel-caption"> <h4>Online Banking</h4> <p>Welcome to Zero Online Banking. Zero provides a greener and more convenient way to manage your money. Zero enables you to check your account balances, pay your bills, transfer money, and keep detailed records of your transactions, wherever there is an internet connection.</p> </div> </div> <div class="item"> <img src="/resources/img/main_carousel_3.jpg" width="940" height="401" alt=""/> <div class="custom carousel-caption"> <h4>Online Banking</h4> <p>Welcome to Zero Online Banking. Zero provides a greener and more convenient way to manage your money. Zero enables you to check your account balances, pay your bills, transfer money, and keep detailed records of your transactions, wherever there is an internet connection.</p> </div> </div> </div> <a class="carousel-control custom left" href="#carousel" data-slide="prev">‹</a> <a class="carousel-control custom right" href="#carousel" data-slide="next">›</a> </div> </div> </div> <hr class="row-divider"/> <div id="online_banking_features" class="row divider"> <div class="span3"> <h4><i class="icon icon-bookmark"></i> Online Banking</h4> <p>Click the button below to view online banking features.</p> <a id="online-banking" class="btn btn-small btn-info">More Services</a> </div> <div class="span3"> <div> <h4><span class="headers" id="account_activity_link"><i class="icon icon-user"></i>Checking Account Activity</span></h4> <p>Use Zero to view the most up-to-date listings of your deposits, withdrawals, interest payments, and a number of other useful transactions. </p> </div> </div> <div class="span3"> <div> <h4><span class="headers" id="transfer_funds_link"><i class="icon icon-random"></i>Transfer Funds</span></h4> <p>Use Zero to safely and securely transfer funds between accounts. There is no hold placed on online money transfers, so your funds are available when you need them. </p> </div> </div> <div class="span3"> <div> <h4><span class="headers" id="money_map_link"><i class="icon icon-list-alt"></i>My Money Map</span></h4> <p>Use Zero to set up and monitor your personalized money map. A money map is an easy-to-use online tool that helps you manage your finances efficiently. With Money Map, you can create a budget, sort your finances into spending and savings categories, check the interest your accounts are earning, and gain new understanding of your patterns with the help of Zero’s clear charts and graphs. </p> </div> </div> </div> <script type="text/javascript"> $(function() { $("#carousel").carousel({ interval: false }); $("div").on("click", "a[id='online-banking']", function(event){ event.preventDefault(); window.location.href = "/" + "online-banking" + ".html"; }); var path = "/bank/"; var featureIdToName = { "account_activity_link": "account-activity", "transfer_funds_link": "transfer-funds", "money_map_link": "money-map" } $.each(featureIdToName, function(featureId, featureName) { $("#online_banking_features").on("click", "span[id='" + featureId + "']", function(event) { event.preventDefault(); window.location.href = path + featureName +".html"; }); }); }); </script> </div> </div> <div class="clearfix push"></div> </div> <div class="extra"> <div class="extra-inner"> <div class="container"> <div class="row"> <div class="span4"> <ul> <li><span id="download_webinspect_link">Download WebInspect</span></li> </ul> </div> <div class="span4"> <ul> <li><span id="terms_of_use_link">Terms of Use</span></li> </ul> </div> <div class="span4"> <ul> <li><span id="contact_hp_link">Contact Micro Focus</span></li> <li><span id="privacy_statement_link">Privacy Statement</span></li> </ul> </div> </div> <div class="row"> <div class="disclaimer span12"> The Free Online Bank Web site is published by Micro Focus Fortify for the sole purpose of demonstrating the functionality and effectiveness of Micro Focus Fortify’s WebInspect products in detecting and reporting Web application vulnerabilities. This site is not a real banking site and any similarities to third party products and/or Web sites are purely coincidental. This site is provided "as is" without warranty of any kind, either express or implied. Micro Focus Fortify does not assume any risk in relation to your use of this Web site. Use of this Web site indicates that you have read and agree to Micro Focus Fortify’s Terms of Use found at <a href="https://www.microfocus.com/about/legal/#privacy" target="_blank">https://www.microfocus.com/about/legal/#privacy</a> and Micro Focus Fortify’s Online Privacy Statement found at <a href="https://www.microfocus.com/about/legal/#privacy" target="_blank">https://www.microfocus.com/about/legal/#privacy</a>. <br/><br/> Copyright © 2012-2018, Micro Focus Development Company. All rights reserved. </div> </div> </div> </div> </div> <script type="text/javascript"> $(function () { var path = "/"; var attachClickHandler = function(selector, handler) { $(".extra").on('click', selector, handler); } var footerLinks = { "download_webinspect_link": { absolute: true, page: "https://software.microfocus.com/en-us/products/webinspect-dynamic-analysis-dast/overview" }, "contact_hp_link" : { absolute: true, page: "https://support.fortify.com" }, "privacy_statement_link": { absolute: true, page: "https://www.microfocus.com/about/legal/#privacy" }, "terms_of_use_link": { absolute: true, page: "https://www.microfocus.com/about/legal/" } }; $.each(footerLinks, function(linkId, link) { attachClickHandler('span[id="' + linkId + '"]', function(event) { event.preventDefault(); if (link.absolute) { window.location.href = link.page; } else { window.location.href = path + link.page + ".html"; } }); }); }); </script> </body> </html> |
| URL | http://zero.webappsecurity.com/ |
| Method | GET |
| Parameter | |
| Attack | Origin: http://4qCMHsQq.com |
| Evidence | Access-Control-Allow-Origin: * |
| Request Header - size: 262 bytes. |
GET http://zero.webappsecurity.com/ HTTP/1.1
Host: zero.webappsecurity.com User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0 Pragma: no-cache Cache-Control: no-cache Origin: http://4qCMHsQq.com Content-Length: 0 |
| Request Body - size: 0 bytes. |
|
| Response Header - size: 242 bytes. |
HTTP/1.1 200 OK
Date: Mon, 14 Mar 2022 07:23:13 GMT Server: Apache-Coyote/1.1 Access-Control-Allow-Origin: * Cache-Control: no-cache, max-age=0, must-revalidate, no-store Content-Type: text/html;charset=UTF-8 Content-Language: en-US |
| Response Body - size: 12,471 bytes. |
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Zero - Personal Banking - Loans - Credit Cards</title> <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"> <meta http-equiv="X-UA-Compatible" content="IE=Edge"> <link type="text/css" rel="stylesheet" href="/resources/css/bootstrap.min.css"/> <link type="text/css" rel="stylesheet" href="/resources/css/font-awesome.css"/> <link type="text/css" rel="stylesheet" href="/resources/css/main.css"/> <script src="/resources/js/jquery-1.8.2.min.js"></script> <script src="/resources/js/bootstrap.min.js"></script> <script src="/resources/js/placeholders.min.js"></script> <script type="text/javascript"> Placeholders.init({ live: true, // Apply to future and modified elements too hideOnFocus: true // Hide the placeholder when the element receives focus }); </script> <script type="text/javascript"> $(document).ajaxError(function errorHandler(event, xhr, ajaxOptions, thrownError) { if (xhr.status == 403) { window.location.reload(); } }); </script> </head> <body> <div class="wrapper"> <div class="navbar navbar-fixed-top"> <div class="navbar-inner"> <div class="container"> <a href="/index.html" class="brand">Zero Bank</a> <div> <ul class="nav float-right"> <li> <form action="/search.html" class="navbar-search pull-right" style="padding-right: 20px"> <input type="text" id="searchTerm" name="searchTerm" class="search-query" placeholder="Search"/> </form> </li> <li> <button id="signin_button" type="button" class="signin btn btn-info"> <i class="icon-signin"></i>Signin </button> </li> </ul> </div> </div> </div> </div> <script type="text/javascript"> $(function() { var path = "/"; $("#signin_button").click(function(event) { event.preventDefault(); window.location.href = path + "login" + ".html"; }); }); </script> <div class="container"> <div class="top_offset"> <div class="row"> <div class="span12"> <div id="nav" class="clearfix"> <ul id="pages-nav"> <li id="homeMenu"><div><strong>Home</strong></div></li> <li id="onlineBankingMenu"><div><strong>Online Banking</strong></div></li> <li id="feedback"><div><strong>Feedback</strong></div></li> </ul> </div> </div> <script type="text/javascript"> $(function () { var path = "/"; var featureIdToName = { "index": "homeMenu", "online-banking": "onlineBankingMenu", "feedback": "feedback" }; if (document.location.href.match(".*" + path + "$") != null) { $("#homeMenu").addClass("active"); } else { $.each(featureIdToName, function(featureId, featureName) { if (document.location.href.indexOf(featureId + ".html") >= 0) { $("#" + featureName).addClass("active"); } }); } $.each(featureIdToName, function(featureId, featureName) { $("#nav").on("click", "li[id='" + featureName + "']", function(event) { event.preventDefault(); window.location.href = path + featureId + ".html"; }); }); }); </script> </div> <div class="row"> <div class="span12"> <div id="carousel" class="carousel slide"> <div class="carousel-inner"> <div class="active item"> <img src="/resources/img/main_carousel_1.jpg" width="940" height="401" alt=""/> <div class="custom carousel-caption"> <h4>Online Banking</h4> <p>Welcome to Zero Online Banking. Zero provides a greener and more convenient way to manage your money. Zero enables you to check your account balances, pay your bills, transfer money, and keep detailed records of your transactions, wherever there is an internet connection.</p> </div> </div> <div class="item"> <img src="/resources/img/main_carousel_2.jpg" width="940" height="401" alt=""/> <div class="custom carousel-caption"> <h4>Online Banking</h4> <p>Welcome to Zero Online Banking. Zero provides a greener and more convenient way to manage your money. Zero enables you to check your account balances, pay your bills, transfer money, and keep detailed records of your transactions, wherever there is an internet connection.</p> </div> </div> <div class="item"> <img src="/resources/img/main_carousel_3.jpg" width="940" height="401" alt=""/> <div class="custom carousel-caption"> <h4>Online Banking</h4> <p>Welcome to Zero Online Banking. Zero provides a greener and more convenient way to manage your money. Zero enables you to check your account balances, pay your bills, transfer money, and keep detailed records of your transactions, wherever there is an internet connection.</p> </div> </div> </div> <a class="carousel-control custom left" href="#carousel" data-slide="prev">‹</a> <a class="carousel-control custom right" href="#carousel" data-slide="next">›</a> </div> </div> </div> <hr class="row-divider"/> <div id="online_banking_features" class="row divider"> <div class="span3"> <h4><i class="icon icon-bookmark"></i> Online Banking</h4> <p>Click the button below to view online banking features.</p> <a id="online-banking" class="btn btn-small btn-info">More Services</a> </div> <div class="span3"> <div> <h4><span class="headers" id="account_activity_link"><i class="icon icon-user"></i>Checking Account Activity</span></h4> <p>Use Zero to view the most up-to-date listings of your deposits, withdrawals, interest payments, and a number of other useful transactions. </p> </div> </div> <div class="span3"> <div> <h4><span class="headers" id="transfer_funds_link"><i class="icon icon-random"></i>Transfer Funds</span></h4> <p>Use Zero to safely and securely transfer funds between accounts. There is no hold placed on online money transfers, so your funds are available when you need them. </p> </div> </div> <div class="span3"> <div> <h4><span class="headers" id="money_map_link"><i class="icon icon-list-alt"></i>My Money Map</span></h4> <p>Use Zero to set up and monitor your personalized money map. A money map is an easy-to-use online tool that helps you manage your finances efficiently. With Money Map, you can create a budget, sort your finances into spending and savings categories, check the interest your accounts are earning, and gain new understanding of your patterns with the help of Zero’s clear charts and graphs. </p> </div> </div> </div> <script type="text/javascript"> $(function() { $("#carousel").carousel({ interval: false }); $("div").on("click", "a[id='online-banking']", function(event){ event.preventDefault(); window.location.href = "/" + "online-banking" + ".html"; }); var path = "/bank/"; var featureIdToName = { "account_activity_link": "account-activity", "transfer_funds_link": "transfer-funds", "money_map_link": "money-map" } $.each(featureIdToName, function(featureId, featureName) { $("#online_banking_features").on("click", "span[id='" + featureId + "']", function(event) { event.preventDefault(); window.location.href = path + featureName +".html"; }); }); }); </script> </div> </div> <div class="clearfix push"></div> </div> <div class="extra"> <div class="extra-inner"> <div class="container"> <div class="row"> <div class="span4"> <ul> <li><span id="download_webinspect_link">Download WebInspect</span></li> </ul> </div> <div class="span4"> <ul> <li><span id="terms_of_use_link">Terms of Use</span></li> </ul> </div> <div class="span4"> <ul> <li><span id="contact_hp_link">Contact Micro Focus</span></li> <li><span id="privacy_statement_link">Privacy Statement</span></li> </ul> </div> </div> <div class="row"> <div class="disclaimer span12"> The Free Online Bank Web site is published by Micro Focus Fortify for the sole purpose of demonstrating the functionality and effectiveness of Micro Focus Fortify’s WebInspect products in detecting and reporting Web application vulnerabilities. This site is not a real banking site and any similarities to third party products and/or Web sites are purely coincidental. This site is provided "as is" without warranty of any kind, either express or implied. Micro Focus Fortify does not assume any risk in relation to your use of this Web site. Use of this Web site indicates that you have read and agree to Micro Focus Fortify’s Terms of Use found at <a href="https://www.microfocus.com/about/legal/#privacy" target="_blank">https://www.microfocus.com/about/legal/#privacy</a> and Micro Focus Fortify’s Online Privacy Statement found at <a href="https://www.microfocus.com/about/legal/#privacy" target="_blank">https://www.microfocus.com/about/legal/#privacy</a>. <br/><br/> Copyright © 2012-2018, Micro Focus Development Company. All rights reserved. </div> </div> </div> </div> </div> <script type="text/javascript"> $(function () { var path = "/"; var attachClickHandler = function(selector, handler) { $(".extra").on('click', selector, handler); } var footerLinks = { "download_webinspect_link": { absolute: true, page: "https://software.microfocus.com/en-us/products/webinspect-dynamic-analysis-dast/overview" }, "contact_hp_link" : { absolute: true, page: "https://support.fortify.com" }, "privacy_statement_link": { absolute: true, page: "https://www.microfocus.com/about/legal/#privacy" }, "terms_of_use_link": { absolute: true, page: "https://www.microfocus.com/about/legal/" } }; $.each(footerLinks, function(linkId, link) { attachClickHandler('span[id="' + linkId + '"]', function(event) { event.preventDefault(); if (link.absolute) { window.location.href = link.page; } else { window.location.href = path + link.page + ".html"; } }); }); }); </script> </body> </html> |
| URL | http://zero.webappsecurity.com/index.html |
| Method | GET |
| Parameter | |
| Attack | Origin: http://4qCMHsQq.com |
| Evidence | Access-Control-Allow-Origin: * |
| Request Header - size: 313 bytes. |
GET http://zero.webappsecurity.com/index.html HTTP/1.1
Host: zero.webappsecurity.com User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0 Pragma: no-cache Cache-Control: no-cache Referer: http://zero.webappsecurity.com Origin: http://4qCMHsQq.com Content-Length: 0 |
| Request Body - size: 0 bytes. |
|
| Response Header - size: 242 bytes. |
HTTP/1.1 200 OK
Date: Mon, 14 Mar 2022 07:23:13 GMT Server: Apache-Coyote/1.1 Access-Control-Allow-Origin: * Cache-Control: no-cache, max-age=0, must-revalidate, no-store Content-Type: text/html;charset=UTF-8 Content-Language: en-US |
| Response Body - size: 12,471 bytes. |
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Zero - Personal Banking - Loans - Credit Cards</title> <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"> <meta http-equiv="X-UA-Compatible" content="IE=Edge"> <link type="text/css" rel="stylesheet" href="/resources/css/bootstrap.min.css"/> <link type="text/css" rel="stylesheet" href="/resources/css/font-awesome.css"/> <link type="text/css" rel="stylesheet" href="/resources/css/main.css"/> <script src="/resources/js/jquery-1.8.2.min.js"></script> <script src="/resources/js/bootstrap.min.js"></script> <script src="/resources/js/placeholders.min.js"></script> <script type="text/javascript"> Placeholders.init({ live: true, // Apply to future and modified elements too hideOnFocus: true // Hide the placeholder when the element receives focus }); </script> <script type="text/javascript"> $(document).ajaxError(function errorHandler(event, xhr, ajaxOptions, thrownError) { if (xhr.status == 403) { window.location.reload(); } }); </script> </head> <body> <div class="wrapper"> <div class="navbar navbar-fixed-top"> <div class="navbar-inner"> <div class="container"> <a href="/index.html" class="brand">Zero Bank</a> <div> <ul class="nav float-right"> <li> <form action="/search.html" class="navbar-search pull-right" style="padding-right: 20px"> <input type="text" id="searchTerm" name="searchTerm" class="search-query" placeholder="Search"/> </form> </li> <li> <button id="signin_button" type="button" class="signin btn btn-info"> <i class="icon-signin"></i>Signin </button> </li> </ul> </div> </div> </div> </div> <script type="text/javascript"> $(function() { var path = "/"; $("#signin_button").click(function(event) { event.preventDefault(); window.location.href = path + "login" + ".html"; }); }); </script> <div class="container"> <div class="top_offset"> <div class="row"> <div class="span12"> <div id="nav" class="clearfix"> <ul id="pages-nav"> <li id="homeMenu"><div><strong>Home</strong></div></li> <li id="onlineBankingMenu"><div><strong>Online Banking</strong></div></li> <li id="feedback"><div><strong>Feedback</strong></div></li> </ul> </div> </div> <script type="text/javascript"> $(function () { var path = "/"; var featureIdToName = { "index": "homeMenu", "online-banking": "onlineBankingMenu", "feedback": "feedback" }; if (document.location.href.match(".*" + path + "$") != null) { $("#homeMenu").addClass("active"); } else { $.each(featureIdToName, function(featureId, featureName) { if (document.location.href.indexOf(featureId + ".html") >= 0) { $("#" + featureName).addClass("active"); } }); } $.each(featureIdToName, function(featureId, featureName) { $("#nav").on("click", "li[id='" + featureName + "']", function(event) { event.preventDefault(); window.location.href = path + featureId + ".html"; }); }); }); </script> </div> <div class="row"> <div class="span12"> <div id="carousel" class="carousel slide"> <div class="carousel-inner"> <div class="active item"> <img src="/resources/img/main_carousel_1.jpg" width="940" height="401" alt=""/> <div class="custom carousel-caption"> <h4>Online Banking</h4> <p>Welcome to Zero Online Banking. Zero provides a greener and more convenient way to manage your money. Zero enables you to check your account balances, pay your bills, transfer money, and keep detailed records of your transactions, wherever there is an internet connection.</p> </div> </div> <div class="item"> <img src="/resources/img/main_carousel_2.jpg" width="940" height="401" alt=""/> <div class="custom carousel-caption"> <h4>Online Banking</h4> <p>Welcome to Zero Online Banking. Zero provides a greener and more convenient way to manage your money. Zero enables you to check your account balances, pay your bills, transfer money, and keep detailed records of your transactions, wherever there is an internet connection.</p> </div> </div> <div class="item"> <img src="/resources/img/main_carousel_3.jpg" width="940" height="401" alt=""/> <div class="custom carousel-caption"> <h4>Online Banking</h4> <p>Welcome to Zero Online Banking. Zero provides a greener and more convenient way to manage your money. Zero enables you to check your account balances, pay your bills, transfer money, and keep detailed records of your transactions, wherever there is an internet connection.</p> </div> </div> </div> <a class="carousel-control custom left" href="#carousel" data-slide="prev">‹</a> <a class="carousel-control custom right" href="#carousel" data-slide="next">›</a> </div> </div> </div> <hr class="row-divider"/> <div id="online_banking_features" class="row divider"> <div class="span3"> <h4><i class="icon icon-bookmark"></i> Online Banking</h4> <p>Click the button below to view online banking features.</p> <a id="online-banking" class="btn btn-small btn-info">More Services</a> </div> <div class="span3"> <div> <h4><span class="headers" id="account_activity_link"><i class="icon icon-user"></i>Checking Account Activity</span></h4> <p>Use Zero to view the most up-to-date listings of your deposits, withdrawals, interest payments, and a number of other useful transactions. </p> </div> </div> <div class="span3"> <div> <h4><span class="headers" id="transfer_funds_link"><i class="icon icon-random"></i>Transfer Funds</span></h4> <p>Use Zero to safely and securely transfer funds between accounts. There is no hold placed on online money transfers, so your funds are available when you need them. </p> </div> </div> <div class="span3"> <div> <h4><span class="headers" id="money_map_link"><i class="icon icon-list-alt"></i>My Money Map</span></h4> <p>Use Zero to set up and monitor your personalized money map. A money map is an easy-to-use online tool that helps you manage your finances efficiently. With Money Map, you can create a budget, sort your finances into spending and savings categories, check the interest your accounts are earning, and gain new understanding of your patterns with the help of Zero’s clear charts and graphs. </p> </div> </div> </div> <script type="text/javascript"> $(function() { $("#carousel").carousel({ interval: false }); $("div").on("click", "a[id='online-banking']", function(event){ event.preventDefault(); window.location.href = "/" + "online-banking" + ".html"; }); var path = "/bank/"; var featureIdToName = { "account_activity_link": "account-activity", "transfer_funds_link": "transfer-funds", "money_map_link": "money-map" } $.each(featureIdToName, function(featureId, featureName) { $("#online_banking_features").on("click", "span[id='" + featureId + "']", function(event) { event.preventDefault(); window.location.href = path + featureName +".html"; }); }); }); </script> </div> </div> <div class="clearfix push"></div> </div> <div class="extra"> <div class="extra-inner"> <div class="container"> <div class="row"> <div class="span4"> <ul> <li><span id="download_webinspect_link">Download WebInspect</span></li> </ul> </div> <div class="span4"> <ul> <li><span id="terms_of_use_link">Terms of Use</span></li> </ul> </div> <div class="span4"> <ul> <li><span id="contact_hp_link">Contact Micro Focus</span></li> <li><span id="privacy_statement_link">Privacy Statement</span></li> </ul> </div> </div> <div class="row"> <div class="disclaimer span12"> The Free Online Bank Web site is published by Micro Focus Fortify for the sole purpose of demonstrating the functionality and effectiveness of Micro Focus Fortify’s WebInspect products in detecting and reporting Web application vulnerabilities. This site is not a real banking site and any similarities to third party products and/or Web sites are purely coincidental. This site is provided "as is" without warranty of any kind, either express or implied. Micro Focus Fortify does not assume any risk in relation to your use of this Web site. Use of this Web site indicates that you have read and agree to Micro Focus Fortify’s Terms of Use found at <a href="https://www.microfocus.com/about/legal/#privacy" target="_blank">https://www.microfocus.com/about/legal/#privacy</a> and Micro Focus Fortify’s Online Privacy Statement found at <a href="https://www.microfocus.com/about/legal/#privacy" target="_blank">https://www.microfocus.com/about/legal/#privacy</a>. <br/><br/> Copyright © 2012-2018, Micro Focus Development Company. All rights reserved. </div> </div> </div> </div> </div> <script type="text/javascript"> $(function () { var path = "/"; var attachClickHandler = function(selector, handler) { $(".extra").on('click', selector, handler); } var footerLinks = { "download_webinspect_link": { absolute: true, page: "https://software.microfocus.com/en-us/products/webinspect-dynamic-analysis-dast/overview" }, "contact_hp_link" : { absolute: true, page: "https://support.fortify.com" }, "privacy_statement_link": { absolute: true, page: "https://www.microfocus.com/about/legal/#privacy" }, "terms_of_use_link": { absolute: true, page: "https://www.microfocus.com/about/legal/" } }; $.each(footerLinks, function(linkId, link) { attachClickHandler('span[id="' + linkId + '"]', function(event) { event.preventDefault(); if (link.absolute) { window.location.href = link.page; } else { window.location.href = path + link.page + ".html"; } }); }); }); </script> </body> </html> |
| URL | http://zero.webappsecurity.com/resources |
| Method | GET |
| Parameter | |
| Attack | Origin: http://4qCMHsQq.com |
| Evidence | Access-Control-Allow-Origin: * |
| Request Header - size: 312 bytes. |
GET http://zero.webappsecurity.com/resources HTTP/1.1
Host: zero.webappsecurity.com User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0 Pragma: no-cache Cache-Control: no-cache Referer: http://zero.webappsecurity.com Origin: http://4qCMHsQq.com Content-Length: 0 |
| Request Body - size: 0 bytes. |
|
| Response Header - size: 267 bytes. |
HTTP/1.1 404 Not Found
Date: Mon, 14 Mar 2022 07:23:14 GMT Server: Apache-Coyote/1.1 Access-Control-Allow-Origin: * Cache-Control: no-cache, max-age=0, must-revalidate, no-store Content-Type: text/html;charset=utf-8 Content-Language: en Content-Length: 949 |
| Response Body - size: 949 bytes. |
<html><head><title>Apache Tomcat/7.0.70 - Error report</title><style><!--H1 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:22px;} H2 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:16px;} H3 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:14px;} BODY {font-family:Tahoma,Arial,sans-serif;color:black;background-color:white;} B {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;} P {font-family:Tahoma,Arial,sans-serif;background:white;color:black;font-size:12px;}A {color : black;}A.name {color : black;}HR {color : #525D76;}--></style> </head><body><h1>HTTP Status 404 - </h1><HR size="1" noshade="noshade"><p><b>type</b> Status report</p><p><b>message</b> <u></u></p><p><b>description</b> <u>The requested resource is not available.</u></p><HR size="1" noshade="noshade"><h3>Apache Tomcat/7.0.70</h3></body></html>
|
| URL | http://zero.webappsecurity.com/resources/css |
| Method | GET |
| Parameter | |
| Attack | Origin: http://4qCMHsQq.com |
| Evidence | Access-Control-Allow-Origin: * |
| Request Header - size: 316 bytes. |
GET http://zero.webappsecurity.com/resources/css HTTP/1.1
Host: zero.webappsecurity.com User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0 Pragma: no-cache Cache-Control: no-cache Referer: http://zero.webappsecurity.com Origin: http://4qCMHsQq.com Content-Length: 0 |
| Request Body - size: 0 bytes. |
|
| Response Header - size: 267 bytes. |
HTTP/1.1 404 Not Found
Date: Mon, 14 Mar 2022 07:23:14 GMT Server: Apache-Coyote/1.1 Access-Control-Allow-Origin: * Cache-Control: no-cache, max-age=0, must-revalidate, no-store Content-Type: text/html;charset=utf-8 Content-Language: en Content-Length: 949 |
| Response Body - size: 949 bytes. |
<html><head><title>Apache Tomcat/7.0.70 - Error report</title><style><!--H1 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:22px;} H2 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:16px;} H3 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:14px;} BODY {font-family:Tahoma,Arial,sans-serif;color:black;background-color:white;} B {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;} P {font-family:Tahoma,Arial,sans-serif;background:white;color:black;font-size:12px;}A {color : black;}A.name {color : black;}HR {color : #525D76;}--></style> </head><body><h1>HTTP Status 404 - </h1><HR size="1" noshade="noshade"><p><b>type</b> Status report</p><p><b>message</b> <u></u></p><p><b>description</b> <u>The requested resource is not available.</u></p><HR size="1" noshade="noshade"><h3>Apache Tomcat/7.0.70</h3></body></html>
|
| URL | http://zero.webappsecurity.com/resources/css/bootstrap.min.css |
| Method | GET |
| Parameter | |
| Attack | Origin: http://4qCMHsQq.com |
| Evidence | Access-Control-Allow-Origin: * |
| Request Header - size: 334 bytes. |
GET http://zero.webappsecurity.com/resources/css/bootstrap.min.css HTTP/1.1
Host: zero.webappsecurity.com User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0 Pragma: no-cache Cache-Control: no-cache Referer: http://zero.webappsecurity.com Origin: http://4qCMHsQq.com Content-Length: 0 |
| Request Body - size: 0 bytes. |
|
| Response Header - size: 349 bytes. |
HTTP/1.1 200 OK
Date: Mon, 14 Mar 2022 07:23:14 GMT Server: Apache-Coyote/1.1 Access-Control-Allow-Origin: * Accept-Ranges: bytes ETag: W/"115795-1358437290000" Last-Modified: Thu, 17 Jan 2013 15:41:30 GMT Cache-Control: max-age=2678400 Expires: Thu, 14 Apr 2022 07:23:15 GMT Content-Type: text/css;charset=UTF-8 Content-Length: 115795 |
| Response Body - size: 115,795 bytes. |
/*!
* Bootstrap v2.2.2 * * Copyright 2012 Twitter, Inc * Licensed under the Apache License v2.0 * http://www.apache.org/licenses/LICENSE-2.0 * * Designed and built with all the love in the world @twitter by @mdo and @fat. */ .clearfix{*zoom:1;}.clearfix:before,.clearfix:after{display:table;content:"";line-height:0;} .clearfix:after{clear:both;} .hide-text{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0;} .input-block-level{display:block;width:100%;min-height:30px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;} article,aside,details,figcaption,figure,footer,header,hgroup,nav,section{display:block;} audio,canvas,video{display:inline-block;*display:inline;*zoom:1;} audio:not([controls]){display:none;} html{font-size:100%;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%;} a:focus{outline:thin dotted #333;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px;} a:hover,a:active{outline:0;} sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline;} sup{top:-0.5em;} sub{bottom:-0.25em;} img{max-width:100%;width:auto\9;height:auto;vertical-align:middle;border:0;-ms-interpolation-mode:bicubic;} #map_canvas img,.google-maps img{max-width:none;} button,input,select,textarea{margin:0;font-size:100%;vertical-align:middle;} button,input{*overflow:visible;line-height:normal;} button::-moz-focus-inner,input::-moz-focus-inner{padding:0;border:0;} button,html input[type="button"],input[type="reset"],input[type="submit"]{-webkit-appearance:button;cursor:pointer;} label,select,button,input[type="button"],input[type="reset"],input[type="submit"],input[type="radio"],input[type="checkbox"]{cursor:pointer;} input[type="search"]{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;-webkit-appearance:textfield;} input[type="search"]::-webkit-search-decoration,input[type="search"]::-webkit-search-cancel-button{-webkit-appearance:none;} textarea{overflow:auto;vertical-align:top;} @media print{*{text-shadow:none !important;color:#000 !important;background:transparent !important;box-shadow:none !important;} a,a:visited{text-decoration:underline;} a[href]:after{content:" (" attr(href) ")";} abbr[title]:after{content:" (" attr(title) ")";} .ir a:after,a[href^="javascript:"]:after,a[href^="#"]:after{content:"";} pre,blockquote{border:1px solid #999;page-break-inside:avoid;} thead{display:table-header-group;} tr,img{page-break-inside:avoid;} img{max-width:100% !important;} @page {margin:0.5cm;}p,h2,h3{orphans:3;widows:3;} h2,h3{page-break-after:avoid;}}body{margin:0;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;line-height:20px;color:#333333;background-color:#ffffff;} a{color:#0088cc;text-decoration:none;} a:hover{color:#005580;text-decoration:underline;} .img-rounded{-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;} .img-polaroid{padding:4px;background-color:#fff;border:1px solid #ccc;border:1px solid rgba(0, 0, 0, 0.2);-webkit-box-shadow:0 1px 3px rgba(0, 0, 0, 0.1);-moz-box-shadow:0 1px 3px rgba(0, 0, 0, 0.1);box-shadow:0 1px 3px rgba(0, 0, 0, 0.1);} .img-circle{-webkit-border-radius:500px;-moz-border-radius:500px;border-radius:500px;} .row{margin-left:-20px;*zoom:1;}.row:before,.row:after{display:table;content:"";line-height:0;} .row:after{clear:both;} [class*="span"]{float:left;min-height:1px;margin-left:20px;} .container,.navbar-static-top .container,.navbar-fixed-top .container,.navbar-fixed-bottom .container{width:940px;} .span12{width:940px;} .span11{width:860px;} .span10{width:780px;} .span9{width:700px;} .span8{width:620px;} .span7{width:540px;} .span6{width:460px;} .span5{width:380px;} .span4{width:300px;} .span3{width:220px;} .span2{width:140px;} .span1{width:60px;} .offset12{margin-left:980px;} .offset11{margin-left:900px;} .offset10{margin-left:820px;} .offset9{margin-left:740px;} .offset8{margin-left:660px;} .offset7{margin-left:580px;} .offset6{margin-left:500px;} .offset5{margin-left:420px;} .offset4{margin-left:340px;} .offset3{margin-left:260px;} .offset2{margin-left:180px;} .offset1{margin-left:100px;} .row-fluid{width:100%;*zoom:1;}.row-fluid:before,.row-fluid:after{display:table;content:"";line-height:0;} .row-fluid:after{clear:both;} .row-fluid [class*="span"]{display:block;width:100%;min-height:30px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;float:left;margin-left:2.127659574468085%;*margin-left:2.074468085106383%;} .row-fluid [class*="span"]:first-child{margin-left:0;} .row-fluid .controls-row [class*="span"]+[class*="span"]{margin-left:2.127659574468085%;} .row-fluid .span12{width:100%;*width:99.94680851063829%;} .row-fluid .span11{width:91.48936170212765%;*width:91.43617021276594%;} .row-fluid .span10{width:82.97872340425532%;*width:82.92553191489361%;} .row-fluid .span9{width:74.46808510638297%;*width:74.41489361702126%;} .row-fluid .span8{width:65.95744680851064%;*width:65.90425531914893%;} .row-fluid .span7{width:57.44680851063829%;*width:57.39361702127659%;} .row-fluid .span6{width:48.93617021276595%;*width:48.88297872340425%;} .row-fluid .span5{width:40.42553191489362%;*width:40.37234042553192%;} .row-fluid .span4{width:31.914893617021278%;*width:31.861702127659576%;} .row-fluid .span3{width:23.404255319148934%;*width:23.351063829787233%;} .row-fluid .span2{width:14.893617021276595%;*width:14.840425531914894%;} .row-fluid .span1{width:6.382978723404255%;*width:6.329787234042553%;} .row-fluid .offset12{margin-left:104.25531914893617%;*margin-left:104.14893617021275%;} .row-fluid .offset12:first-child{margin-left:102.12765957446808%;*margin-left:102.02127659574467%;} .row-fluid .offset11{margin-left:95.74468085106382%;*margin-left:95.6382978723404%;} .row-fluid .offset11:first-child{margin-left:93.61702127659574%;*margin-left:93.51063829787232%;} .row-fluid .offset10{margin-left:87.23404255319149%;*margin-left:87.12765957446807%;} .row-fluid .offset10:first-child{margin-left:85.1063829787234%;*margin-left:84.99999999999999%;} .row-fluid .offset9{margin-left:78.72340425531914%;*margin-left:78.61702127659572%;} .row-fluid .offset9:first-child{margin-left:76.59574468085106%;*margin-left:76.48936170212764%;} .row-fluid .offset8{margin-left:70.2127659574468%;*margin-left:70.10638297872339%;} .row-fluid .offset8:first-child{margin-left:68.08510638297872%;*margin-left:67.9787234042553%;} .row-fluid .offset7{margin-left:61.70212765957446%;*margin-left:61.59574468085106%;} .row-fluid .offset7:first-child{margin-left:59.574468085106375%;*margin-left:59.46808510638297%;} .row-fluid .offset6{margin-left:53.191489361702125%;*margin-left:53.085106382978715%;} .row-fluid .offset6:first-child{margin-left:51.063829787234035%;*margin-left:50.95744680851063%;} .row-fluid .offset5{margin-left:44.68085106382979%;*margin-left:44.57446808510638%;} .row-fluid .offset5:first-child{margin-left:42.5531914893617%;*margin-left:42.4468085106383%;} .row-fluid .offset4{margin-left:36.170212765957444%;*margin-left:36.06382978723405%;} .row-fluid .offset4:first-child{margin-left:34.04255319148936%;*margin-left:33.93617021276596%;} .row-fluid .offset3{margin-left:27.659574468085104%;*margin-left:27.5531914893617%;} .row-fluid .offset3:first-child{margin-left:25.53191489361702%;*margin-left:25.425531914893618%;} .row-fluid .offset2{margin-left:19.148936170212764%;*margin-left:19.04255319148936%;} .row-fluid .offset2:first-child{margin-left:17.02127659574468%;*margin-left:16.914893617021278%;} .row-fluid .offset1{margin-left:10.638297872340425%;*margin-left:10.53191489361702%;} .row-fluid .offset1:first-child{margin-left:8.51063829787234%;*margin-left:8.404255319148938%;} [class*="span"].hide,.row-fluid [class*="span"].hide{display:none;} [class*="span"].pull-right,.row-fluid [class*="span"].pull-right{float:right;} .container{margin-right:auto;margin-left:auto;*zoom:1;}.container:before,.container:after{display:table;content:"";line-height:0;} .container:after{clear:both;} .container-fluid{padding-right:20px;padding-left:20px;*zoom:1;}.container-fluid:before,.container-fluid:after{display:table;content:"";line-height:0;} .container-fluid:after{clear:both;} p{margin:0 0 10px;} .lead{margin-bottom:20px;font-size:21px;font-weight:200;line-height:30px;} small{font-size:85%;} strong{font-weight:bold;} em{font-style:italic;} cite{font-style:normal;} .muted{color:#999999;} a.muted:hover{color:#808080;} .text-warning{color:#c09853;} a.text-warning:hover{color:#a47e3c;} .text-error{color:#b94a48;} a.text-error:hover{color:#953b39;} .text-info{color:#3a87ad;} a.text-info:hover{color:#2d6987;} .text-success{color:#468847;} a.text-success:hover{color:#356635;} h1,h2,h3,h4,h5,h6{margin:10px 0;font-family:inherit;font-weight:bold;line-height:20px;color:inherit;text-rendering:optimizelegibility;}h1 small,h2 small,h3 small,h4 small,h5 small,h6 small{font-weight:normal;line-height:1;color:#999999;} h1,h2,h3{line-height:40px;} h1{font-size:38.5px;} h2{font-size:31.5px;} h3{font-size:24.5px;} h4{font-size:17.5px;} h5{font-size:14px;} h6{font-size:11.9px;} h1 small{font-size:24.5px;} h2 small{font-size:17.5px;} h3 small{font-size:14px;} h4 small{font-size:14px;} .page-header{padding-bottom:9px;margin:20px 0 30px;border-bottom:1px solid #eeeeee;} ul,ol{padding:0;margin:0 0 10px 25px;} ul ul,ul ol,ol ol,ol ul{margin-bottom:0;} li{line-height:20px;} ul.unstyled,ol.unstyled{margin-left:0;list-style:none;} ul.inline,ol.inline{margin-left:0;list-style:none;}ul.inline >li,ol.inline >li{display:inline-block;padding-left:5px;padding-right:5px;} dl{margin-bottom:20px;} dt,dd{line-height:20px;} dt{font-weight:bold;} dd{margin-left:10px;} .dl-horizontal{*zoom:1;}.dl-horizontal:before,.dl-horizontal:after{display:table;content:"";line-height:0;} .dl-horizontal:after{clear:both;} .dl-horizontal dt{float:left;width:160px;clear:left;text-align:right;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;} .dl-horizontal dd{margin-left:180px;} hr{margin:20px 0;border:0;border-top:1px solid #eeeeee;border-bottom:1px solid #ffffff;} abbr[title],abbr[data-original-title]{cursor:help;border-bottom:1px dotted #999999;} abbr.initialism{font-size:90%;text-transform:uppercase;} blockquote{padding:0 0 0 15px;margin:0 0 20px;border-left:5px solid #eeeeee;}blockquote p{margin-bottom:0;font-size:16px;font-weight:300;line-height:25px;} blockquote small{display:block;line-height:20px;color:#999999;}blockquote small:before{content:'\2014 \00A0';} blockquote.pull-right{float:right;padding-right:15px;padding-left:0;border-right:5px solid #eeeeee;border-left:0;}blockquote.pull-right p,blockquote.pull-right small{text-align:right;} blockquote.pull-right small:before{content:'';} blockquote.pull-right small:after{content:'\00A0 \2014';} q:before,q:after,blockquote:before,blockquote:after{content:"";} address{display:block;margin-bottom:20px;font-style:normal;line-height:20px;} code,pre{padding:0 3px 2px;font-family:Monaco,Menlo,Consolas,"Courier New",monospace;font-size:12px;color:#333333;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;} code{padding:2px 4px;color:#d14;background-color:#f7f7f9;border:1px solid #e1e1e8;white-space:nowrap;} pre{display:block;padding:9.5px;margin:0 0 10px;font-size:13px;line-height:20px;word-break:break-all;word-wrap:break-word;white-space:pre;white-space:pre-wrap;background-color:#f5f5f5;border:1px solid #ccc;border:1px solid rgba(0, 0, 0, 0.15);-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;}pre.prettyprint{margin-bottom:20px;} pre code{padding:0;color:inherit;white-space:pre;white-space:pre-wrap;background-color:transparent;border:0;} .pre-scrollable{max-height:340px;overflow-y:scroll;} .label,.badge{display:inline-block;padding:2px 4px;font-size:11.844px;font-weight:bold;line-height:14px;color:#ffffff;vertical-align:baseline;white-space:nowrap;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);background-color:#999999;} .label{-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;} .badge{padding-left:9px;padding-right:9px;-webkit-border-radius:9px;-moz-border-radius:9px;border-radius:9px;} .label:empty,.badge:empty{display:none;} a.label:hover,a.badge:hover{color:#ffffff;text-decoration:none;cursor:pointer;} .label-important,.badge-important{background-color:#b94a48;} .label-important[href],.badge-important[href]{background-color:#953b39;} .label-warning,.badge-warning{background-color:#f89406;} .label-warning[href],.badge-warning[href]{background-color:#c67605;} .label-success,.badge-success{background-color:#468847;} .label-success[href],.badge-success[href]{background-color:#356635;} .label-info,.badge-info{background-color:#3a87ad;} .label-info[href],.badge-info[href]{background-color:#2d6987;} .label-inverse,.badge-inverse{background-color:#333333;} .label-inverse[href],.badge-inverse[href]{background-color:#1a1a1a;} .btn .label,.btn .badge{position:relative;top:-1px;} .btn-mini .label,.btn-mini .badge{top:0;} table{max-width:100%;background-color:transparent;border-collapse:collapse;border-spacing:0;} .table{width:100%;margin-bottom:20px;}.table th,.table td{padding:8px;line-height:20px;text-align:left;vertical-align:top;border-top:1px solid #dddddd;} .table th{font-weight:bold;} .table thead th{vertical-align:bottom;} .table caption+thead tr:first-child th,.table caption+thead tr:first-child td,.table colgroup+thead tr:first-child th,.table colgroup+thead tr:first-child td,.table thead:first-child tr:first-child th,.table thead:first-child tr:first-child td{border-top:0;} .table tbody+tbody{border-top:2px solid #dddddd;} .table .table{background-color:#ffffff;} .table-condensed th,.table-condensed td{padding:4px 5px;} .table-bordered{border:1px solid #dddddd;border-collapse:separate;*border-collapse:collapse;border-left:0;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;}.table-bordered th,.table-bordered td{border-left:1px solid #dddddd;} .table-bordered caption+thead tr:first-child th,.table-bordered caption+tbody tr:first-child th,.table-bordered caption+tbody tr:first-child td,.table-bordered colgroup+thead tr:first-child th,.table-bordered colgroup+tbody tr:first-child th,.table-bordered colgroup+tbody tr:first-child td,.table-bordered thead:first-child tr:first-child th,.table-bordered tbody:first-child tr:first-child th,.table-bordered tbody:first-child tr:first-child td{border-top:0;} .table-bordered thead:first-child tr:first-child>th:first-child,.table-bordered tbody:first-child tr:first-child>td:first-child{-webkit-border-top-left-radius:4px;-moz-border-radius-topleft:4px;border-top-left-radius:4px;} .table-bordered thead:first-child tr:first-child>th:last-child,.table-bordered tbody:first-child tr:first-child>td:last-child{-webkit-border-top-right-radius:4px;-moz-border-radius-topright:4px;border-top-right-radius:4px;} .table-bordered thead:last-child tr:last-child>th:first-child,.table-bordered tbody:last-child tr:last-child>td:first-child,.table-bordered tfoot:last-child tr:last-child>td:first-child{-webkit-border-bottom-left-radius:4px;-moz-border-radius-bottomleft:4px;border-bottom-left-radius:4px;} .table-bordered thead:last-child tr:last-child>th:last-child,.table-bordered tbody:last-child tr:last-child>td:last-child,.table-bordered tfoot:last-child tr:last-child>td:last-child{-webkit-border-bottom-right-radius:4px;-moz-border-radius-bottomright:4px;border-bottom-right-radius:4px;} .table-bordered tfoot+tbody:last-child tr:last-child td:first-child{-webkit-border-bottom-left-radius:0;-moz-border-radius-bottomleft:0;border-bottom-left-radius:0;} .table-bordered tfoot+tbody:last-child tr:last-child td:last-child{-webkit-border-bottom-right-radius:0;-moz-border-radius-bottomright:0;border-bottom-right-radius:0;} .table-bordered caption+thead tr:first-child th:first-child,.table-bordered caption+tbody tr:first-child td:first-child,.table-bordered colgroup+thead tr:first-child th:first-child,.table-bordered colgroup+tbody tr:first-child td:first-child{-webkit-border-top-left-radius:4px;-moz-border-radius-topleft:4px;border-top-left-radius:4px;} .table-bordered caption+thead tr:first-child th:last-child,.table-bordered caption+tbody tr:first-child td:last-child,.table-bordered colgroup+thead tr:first-child th:last-child,.table-bordered colgroup+tbody tr:first-child td:last-child{-webkit-border-top-right-radius:4px;-moz-border-radius-topright:4px;border-top-right-radius:4px;} .table-striped tbody>tr:nth-child(odd)>td,.table-striped tbody>tr:nth-child(odd)>th{background-color:#f9f9f9;} .table-hover tbody tr:hover td,.table-hover tbody tr:hover th{background-color:#f5f5f5;} table td[class*="span"],table th[class*="span"],.row-fluid table td[class*="span"],.row-fluid table th[class*="span"]{display:table-cell;float:none;margin-left:0;} .table td.span1,.table th.span1{float:none;width:44px;margin-left:0;} .table td.span2,.table th.span2{float:none;width:124px;margin-left:0;} .table td.span3,.table th.span3{float:none;width:204px;margin-left:0;} .table td.span4,.table th.span4{float:none;width:284px;margin-left:0;} .table td.span5,.table th.span5{float:none;width:364px;margin-left:0;} .table td.span6,.table th.span6{float:none;width:444px;margin-left:0;} .table td.span7,.table th.span7{float:none;width:524px;margin-left:0;} .table td.span8,.table th.span8{float:none;width:604px;margin-left:0;} .table td.span9,.table th.span9{float:none;width:684px;margin-left:0;} .table td.span10,.table th.span10{float:none;width:764px;margin-left:0;} .table td.span11,.table th.span11{float:none;width:844px;margin-left:0;} .table td.span12,.table th.span12{float:none;width:924px;margin-left:0;} .table tbody tr.success td{background-color:#dff0d8;} .table tbody tr.error td{background-color:#f2dede;} .table tbody tr.warning td{background-color:#fcf8e3;} .table tbody tr.info td{background-color:#d9edf7;} .table-hover tbody tr.success:hover td{background-color:#d0e9c6;} .table-hover tbody tr.error:hover td{background-color:#ebcccc;} .table-hover tbody tr.warning:hover td{background-color:#faf2cc;} .table-hover tbody tr.info:hover td{background-color:#c4e3f3;} form{margin:0 0 20px;} fieldset{padding:0;margin:0;border:0;} legend{display:block;width:100%;padding:0;margin-bottom:20px;font-size:21px;line-height:40px;color:#333333;border:0;border-bottom:1px solid #e5e5e5;}legend small{font-size:15px;color:#999999;} label,input,button,select,textarea{font-size:14px;font-weight:normal;line-height:20px;} input,button,select,textarea{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;} label{display:block;margin-bottom:5px;} select,textarea,input[type="text"],input[type="password"],input[type="datetime"],input[type="datetime-local"],input[type="date"],input[type="month"],input[type="time"],input[type="week"],input[type="number"],input[type="email"],input[type="url"],input[type="search"],input[type="tel"],input[type="color"],.uneditable-input{display:inline-block;height:20px;padding:4px 6px;margin-bottom:10px;font-size:14px;line-height:20px;color:#555555;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;vertical-align:middle;} input,textarea,.uneditable-input{width:206px;} textarea{height:auto;} textarea,input[type="text"],input[type="password"],input[type="datetime"],input[type="datetime-local"],input[type="date"],input[type="month"],input[type="time"],input[type="week"],input[type="number"],input[type="email"],input[type="url"],input[type="search"],input[type="tel"],input[type="color"],.uneditable-input{background-color:#ffffff;border:1px solid #cccccc;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);-moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);-webkit-transition:border linear .2s, box-shadow linear .2s;-moz-transition:border linear .2s, box-shadow linear .2s;-o-transition:border linear .2s, box-shadow linear .2s;transition:border linear .2s, box-shadow linear .2s;}textarea:focus,input[type="text"]:focus,input[type="password"]:focus,input[type="datetime"]:focus,input[type="datetime-local"]:focus,input[type="date"]:focus,input[type="month"]:focus,input[type="time"]:focus,input[type="week"]:focus,input[type="number"]:focus,input[type="email"]:focus,input[type="url"]:focus,input[type="search"]:focus,input[type="tel"]:focus,input[type="color"]:focus,.uneditable-input:focus{border-color:rgba(82, 168, 236, 0.8);outline:0;outline:thin dotted \9;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(82,168,236,.6);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(82,168,236,.6);box-shadow:inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(82,168,236,.6);} input[type="radio"],input[type="checkbox"]{margin:4px 0 0;*margin-top:0;margin-top:1px \9;line-height:normal;} input[type="file"],input[type="image"],input[type="submit"],input[type="reset"],input[type="button"],input[type="radio"],input[type="checkbox"]{width:auto;} select,input[type="file"]{height:30px;*margin-top:4px;line-height:30px;} select{width:220px;border:1px solid #cccccc;background-color:#ffffff;} select[multiple],select[size]{height:auto;} select:focus,input[type="file"]:focus,input[type="radio"]:focus,input[type="checkbox"]:focus{outline:thin dotted #333;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px;} .uneditable-input,.uneditable-textarea{color:#999999;background-color:#fcfcfc;border-color:#cccccc;-webkit-box-shadow:inset 0 1px 2px rgba(0, 0, 0, 0.025);-moz-box-shadow:inset 0 1px 2px rgba(0, 0, 0, 0.025);box-shadow:inset 0 1px 2px rgba(0, 0, 0, 0.025);cursor:not-allowed;} .uneditable-input{overflow:hidden;white-space:nowrap;} .uneditable-textarea{width:auto;height:auto;} input:-moz-placeholder,textarea:-moz-placeholder{color:#999999;} input:-ms-input-placeholder,textarea:-ms-input-placeholder{color:#999999;} input::-webkit-input-placeholder,textarea::-webkit-input-placeholder{color:#999999;} .radio,.checkbox{min-height:20px;padding-left:20px;} .radio input[type="radio"],.checkbox input[type="checkbox"]{float:left;margin-left:-20px;} .controls>.radio:first-child,.controls>.checkbox:first-child{padding-top:5px;} .radio.inline,.checkbox.inline{display:inline-block;padding-top:5px;margin-bottom:0;vertical-align:middle;} .radio.inline+.radio.inline,.checkbox.inline+.checkbox.inline{margin-left:10px;} .input-mini{width:60px;} .input-small{width:90px;} .input-medium{width:150px;} .input-large{width:210px;} .input-xlarge{width:270px;} .input-xxlarge{width:530px;} input[class*="span"],select[class*="span"],textarea[class*="span"],.uneditable-input[class*="span"],.row-fluid input[class*="span"],.row-fluid select[class*="span"],.row-fluid textarea[class*="span"],.row-fluid .uneditable-input[class*="span"]{float:none;margin-left:0;} .input-append input[class*="span"],.input-append .uneditable-input[class*="span"],.input-prepend input[class*="span"],.input-prepend .uneditable-input[class*="span"],.row-fluid input[class*="span"],.row-fluid select[class*="span"],.row-fluid textarea[class*="span"],.row-fluid .uneditable-input[class*="span"],.row-fluid .input-prepend [class*="span"],.row-fluid .input-append [class*="span"]{display:inline-block;} input,textarea,.uneditable-input{margin-left:0;} .controls-row [class*="span"]+[class*="span"]{margin-left:20px;} input.span12, textarea.span12, .uneditable-input.span12{width:926px;} input.span11, textarea.span11, .uneditable-input.span11{width:846px;} input.span10, textarea.span10, .uneditable-input.span10{width:766px;} input.span9, textarea.span9, .uneditable-input.span9{width:686px;} input.span8, textarea.span8, .uneditable-input.span8{width:606px;} input.span7, textarea.span7, .uneditable-input.span7{width:526px;} input.span6, textarea.span6, .uneditable-input.span6{width:446px;} input.span5, textarea.span5, .uneditable-input.span5{width:366px;} input.span4, textarea.span4, .uneditable-input.span4{width:286px;} input.span3, textarea.span3, .uneditable-input.span3{width:206px;} input.span2, textarea.span2, .uneditable-input.span2{width:126px;} input.span1, textarea.span1, .uneditable-input.span1{width:46px;} .controls-row{*zoom:1;}.controls-row:before,.controls-row:after{display:table;content:"";line-height:0;} .controls-row:after{clear:both;} .controls-row [class*="span"],.row-fluid .controls-row [class*="span"]{float:left;} .controls-row .checkbox[class*="span"],.controls-row .radio[class*="span"]{padding-top:5px;} input[disabled],select[disabled],textarea[disabled],input[readonly],select[readonly],textarea[readonly]{cursor:not-allowed;background-color:#eeeeee;} input[type="radio"][disabled],input[type="checkbox"][disabled],input[type="radio"][readonly],input[type="checkbox"][readonly]{background-color:transparent;} .control-group.warning .control-label,.control-group.warning .help-block,.control-group.warning .help-inline{color:#c09853;} .control-group.warning .checkbox,.control-group.warning .radio,.control-group.warning input,.control-group.warning select,.control-group.warning textarea{color:#c09853;} .control-group.warning input,.control-group.warning select,.control-group.warning textarea{border-color:#c09853;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);-moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);}.control-group.warning input:focus,.control-group.warning select:focus,.control-group.warning textarea:focus{border-color:#a47e3c;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 6px #dbc59e;-moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 6px #dbc59e;box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 6px #dbc59e;} .control-group.warning .input-prepend .add-on,.control-group.warning .input-append .add-on{color:#c09853;background-color:#fcf8e3;border-color:#c09853;} .control-group.error .control-label,.control-group.error .help-block,.control-group.error .help-inline{color:#b94a48;} .control-group.error .checkbox,.control-group.error .radio,.control-group.error input,.control-group.error select,.control-group.error textarea{color:#b94a48;} .control-group.error input,.control-group.error select,.control-group.error textarea{border-color:#b94a48;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);-moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);}.control-group.error input:focus,.control-group.error select:focus,.control-group.error textarea:focus{border-color:#953b39;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 6px #d59392;-moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 6px #d59392;box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 6px #d59392;} .control-group.error .input-prepend .add-on,.control-group.error .input-append .add-on{color:#b94a48;background-color:#f2dede;border-color:#b94a48;} .control-group.success .control-label,.control-group.success .help-block,.control-group.success .help-inline{color:#468847;} .control-group.success .checkbox,.control-group.success .radio,.control-group.success input,.control-group.success select,.control-group.success textarea{color:#468847;} .control-group.success input,.control-group.success select,.control-group.success textarea{border-color:#468847;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);-moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);}.control-group.success input:focus,.control-group.success select:focus,.control-group.success textarea:focus{border-color:#356635;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 6px #7aba7b;-moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 6px #7aba7b;box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 6px #7aba7b;} .control-group.success .input-prepend .add-on,.control-group.success .input-append .add-on{color:#468847;background-color:#dff0d8;border-color:#468847;} .control-group.info .control-label,.control-group.info .help-block,.control-group.info .help-inline{color:#3a87ad;} .control-group.info .checkbox,.control-group.info .radio,.control-group.info input,.control-group.info select,.control-group.info textarea{color:#3a87ad;} .control-group.info input,.control-group.info select,.control-group.info textarea{border-color:#3a87ad;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);-moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);}.control-group.info input:focus,.control-group.info select:focus,.control-group.info textarea:focus{border-color:#2d6987;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 6px #7ab5d3;-moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 6px #7ab5d3;box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 6px #7ab5d3;} .control-group.info .input-prepend .add-on,.control-group.info .input-append .add-on{color:#3a87ad;background-color:#d9edf7;border-color:#3a87ad;} input:focus:invalid,textarea:focus:invalid,select:focus:invalid{color:#b94a48;border-color:#ee5f5b;}input:focus:invalid:focus,textarea:focus:invalid:focus,select:focus:invalid:focus{border-color:#e9322d;-webkit-box-shadow:0 0 6px #f8b9b7;-moz-box-shadow:0 0 6px #f8b9b7;box-shadow:0 0 6px #f8b9b7;} .form-actions{padding:19px 20px 20px;margin-top:20px;margin-bottom:20px;background-color:#f5f5f5;border-top:1px solid #e5e5e5;*zoom:1;}.form-actions:before,.form-actions:after{display:table;content:"";line-height:0;} .form-actions:after{clear:both;} .help-block,.help-inline{color:#595959;} .help-block{display:block;margin-bottom:10px;} .help-inline{display:inline-block;*display:inline;*zoom:1;vertical-align:middle;padding-left:5px;} .input-append,.input-prepend{margin-bottom:5px;font-size:0;white-space:nowrap;}.input-append input,.input-prepend input,.input-append select,.input-prepend select,.input-append .uneditable-input,.input-prepend .uneditable-input,.input-append .dropdown-menu,.input-prepend .dropdown-menu{font-size:14px;} .input-append input,.input-prepend input,.input-append select,.input-prepend select,.input-append .uneditable-input,.input-prepend .uneditable-input{position:relative;margin-bottom:0;*margin-left:0;vertical-align:top;-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0;}.input-append input:focus,.input-prepend input:focus,.input-append select:focus,.input-prepend select:focus,.input-append .uneditable-input:focus,.input-prepend .uneditable-input:focus{z-index:2;} .input-append .add-on,.input-prepend .add-on{display:inline-block;width:auto;height:20px;min-width:16px;padding:4px 5px;font-size:14px;font-weight:normal;line-height:20px;text-align:center;text-shadow:0 1px 0 #ffffff;background-color:#eeeeee;border:1px solid #ccc;} .input-append .add-on,.input-prepend .add-on,.input-append .btn,.input-prepend .btn,.input-append .btn-group>.dropdown-toggle,.input-prepend .btn-group>.dropdown-toggle{vertical-align:top;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;} .input-append .active,.input-prepend .active{background-color:#a9dba9;border-color:#46a546;} .input-prepend .add-on,.input-prepend .btn{margin-right:-1px;} .input-prepend .add-on:first-child,.input-prepend .btn:first-child{-webkit-border-radius:4px 0 0 4px;-moz-border-radius:4px 0 0 4px;border-radius:4px 0 0 4px;} .input-append input,.input-append select,.input-append .uneditable-input{-webkit-border-radius:4px 0 0 4px;-moz-border-radius:4px 0 0 4px;border-radius:4px 0 0 4px;}.input-append input+.btn-group .btn:last-child,.input-append select+.btn-group .btn:last-child,.input-append .uneditable-input+.btn-group .btn:last-child{-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0;} .input-append .add-on,.input-append .btn,.input-append .btn-group{margin-left:-1px;} .input-append .add-on:last-child,.input-append .btn:last-child,.input-append .btn-group:last-child>.dropdown-toggle{-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0;} .input-prepend.input-append input,.input-prepend.input-append select,.input-prepend.input-append .uneditable-input{-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;}.input-prepend.input-append input+.btn-group .btn,.input-prepend.input-append select+.btn-group .btn,.input-prepend.input-append .uneditable-input+.btn-group .btn{-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0;} .input-prepend.input-append .add-on:first-child,.input-prepend.input-append .btn:first-child{margin-right:-1px;-webkit-border-radius:4px 0 0 4px;-moz-border-radius:4px 0 0 4px;border-radius:4px 0 0 4px;} .input-prepend.input-append .add-on:last-child,.input-prepend.input-append .btn:last-child{margin-left:-1px;-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0;} .input-prepend.input-append .btn-group:first-child{margin-left:0;} input.search-query{padding-right:14px;padding-right:4px \9;padding-left:14px;padding-left:4px \9;margin-bottom:0;-webkit-border-radius:15px;-moz-border-radius:15px;border-radius:15px;} .form-search .input-append .search-query,.form-search .input-prepend .search-query{-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;} .form-search .input-append .search-query{-webkit-border-radius:14px 0 0 14px;-moz-border-radius:14px 0 0 14px;border-radius:14px 0 0 14px;} .form-search .input-append .btn{-webkit-border-radius:0 14px 14px 0;-moz-border-radius:0 14px 14px 0;border-radius:0 14px 14px 0;} .form-search .input-prepend .search-query{-webkit-border-radius:0 14px 14px 0;-moz-border-radius:0 14px 14px 0;border-radius:0 14px 14px 0;} .form-search .input-prepend .btn{-webkit-border-radius:14px 0 0 14px;-moz-border-radius:14px 0 0 14px;border-radius:14px 0 0 14px;} .form-search input,.form-inline input,.form-horizontal input,.form-search textarea,.form-inline textarea,.form-horizontal textarea,.form-search select,.form-inline select,.form-horizontal select,.form-search .help-inline,.form-inline .help-inline,.form-horizontal .help-inline,.form-search .uneditable-input,.form-inline .uneditable-input,.form-horizontal .uneditable-input,.form-search .input-prepend,.form-inline .input-prepend,.form-horizontal .input-prepend,.form-search .input-append,.form-inline .input-append,.form-horizontal .input-append{display:inline-block;*display:inline;*zoom:1;margin-bottom:0;vertical-align:middle;} .form-search .hide,.form-inline .hide,.form-horizontal .hide{display:none;} .form-search label,.form-inline label,.form-search .btn-group,.form-inline .btn-group{display:inline-block;} .form-search .input-append,.form-inline .input-append,.form-search .input-prepend,.form-inline .input-prepend{margin-bottom:0;} .form-search .radio,.form-search .checkbox,.form-inline .radio,.form-inline .checkbox{padding-left:0;margin-bottom:0;vertical-align:middle;} .form-search .radio input[type="radio"],.form-search .checkbox input[type="checkbox"],.form-inline .radio input[type="radio"],.form-inline .checkbox input[type="checkbox"]{float:left;margin-right:3px;margin-left:0;} .control-group{margin-bottom:10px;} legend+.control-group{margin-top:20px;-webkit-margin-top-collapse:separate;} .form-horizontal .control-group{margin-bottom:20px;*zoom:1;}.form-horizontal .control-group:before,.form-horizontal .control-group:after{display:table;content:"";line-height:0;} .form-horizontal .control-group:after{clear:both;} .form-horizontal .control-label{float:left;width:160px;padding-top:5px;text-align:right;} .form-horizontal .controls{*display:inline-block;*padding-left:20px;margin-left:180px;*margin-left:0;}.form-horizontal .controls:first-child{*padding-left:180px;} .form-horizontal .help-block{margin-bottom:0;} .form-horizontal input+.help-block,.form-horizontal select+.help-block,.form-horizontal textarea+.help-block,.form-horizontal .uneditable-input+.help-block,.form-horizontal .input-prepend+.help-block,.form-horizontal .input-append+.help-block{margin-top:10px;} .form-horizontal .form-actions{padding-left:180px;} .btn{display:inline-block;*display:inline;*zoom:1;padding:4px 12px;margin-bottom:0;font-size:14px;line-height:20px;text-align:center;vertical-align:middle;cursor:pointer;color:#333333;text-shadow:0 1px 1px rgba(255, 255, 255, 0.75);background-color:#f5f5f5;background-image:-moz-linear-gradient(top, #ffffff, #e6e6e6);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#e6e6e6));background-image:-webkit-linear-gradient(top, #ffffff, #e6e6e6);background-image:-o-linear-gradient(top, #ffffff, #e6e6e6);background-image:linear-gradient(to bottom, #ffffff, #e6e6e6);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe6e6e6', GradientType=0);border-color:#e6e6e6 #e6e6e6 #bfbfbf;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);*background-color:#e6e6e6;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);border:1px solid #bbbbbb;*border:0;border-bottom-color:#a2a2a2;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;*margin-left:.3em;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);-moz-box-shadow:inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);box-shadow:inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);}.btn:hover,.btn:active,.btn.active,.btn.disabled,.btn[disabled]{color:#333333;background-color:#e6e6e6;*background-color:#d9d9d9;} .btn:active,.btn.active{background-color:#cccccc \9;} .btn:first-child{*margin-left:0;} .btn:hover{color:#333333;text-decoration:none;background-position:0 -15px;-webkit-transition:background-position 0.1s linear;-moz-transition:background-position 0.1s linear;-o-transition:background-position 0.1s linear;transition:background-position 0.1s linear;} .btn:focus{outline:thin dotted #333;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px;} .btn.active,.btn:active{background-image:none;outline:0;-webkit-box-shadow:inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);-moz-box-shadow:inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);box-shadow:inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);} .btn.disabled,.btn[disabled]{cursor:default;background-image:none;opacity:0.65;filter:alpha(opacity=65);-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;} .btn-large{padding:11px 19px;font-size:17.5px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;} .btn-large [class^="icon-"],.btn-large [class*=" icon-"]{margin-top:4px;} .btn-small{padding:2px 10px;font-size:11.9px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;} .btn-small [class^="icon-"],.btn-small [class*=" icon-"]{margin-top:0;} .btn-mini [class^="icon-"],.btn-mini [class*=" icon-"]{margin-top:-1px;} .btn-mini{padding:0 6px;font-size:10.5px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;} .btn-block{display:block;width:100%;padding-left:0;padding-right:0;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;} .btn-block+.btn-block{margin-top:5px;} input[type="submit"].btn-block,input[type="reset"].btn-block,input[type="button"].btn-block{width:100%;} .btn-primary.active,.btn-warning.active,.btn-danger.active,.btn-success.active,.btn-info.active,.btn-inverse.active{color:rgba(255, 255, 255, 0.75);} .btn{border-color:#c5c5c5;border-color:rgba(0, 0, 0, 0.15) rgba(0, 0, 0, 0.15) rgba(0, 0, 0, 0.25);} .btn-primary{color:#ffffff;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);background-color:#006dcc;background-image:-moz-linear-gradient(top, #0088cc, #0044cc);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0044cc));background-image:-webkit-linear-gradient(top, #0088cc, #0044cc);background-image:-o-linear-gradient(top, #0088cc, #0044cc);background-image:linear-gradient(to bottom, #0088cc, #0044cc);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff0044cc', GradientType=0);border-color:#0044cc #0044cc #002a80;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);*background-color:#0044cc;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);}.btn-primary:hover,.btn-primary:active,.btn-primary.active,.btn-primary.disabled,.btn-primary[disabled]{color:#ffffff;background-color:#0044cc;*background-color:#003bb3;} .btn-primary:active,.btn-primary.active{background-color:#003399 \9;} .btn-warning{color:#ffffff;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);background-color:#faa732;background-image:-moz-linear-gradient(top, #fbb450, #f89406);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#fbb450), to(#f89406));background-image:-webkit-linear-gradient(top, #fbb450, #f89406);background-image:-o-linear-gradient(top, #fbb450, #f89406);background-image:linear-gradient(to bottom, #fbb450, #f89406);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffbb450', endColorstr='#fff89406', GradientType=0);border-color:#f89406 #f89406 #ad6704;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);*background-color:#f89406;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);}.btn-warning:hover,.btn-warning:active,.btn-warning.active,.btn-warning.disabled,.btn-warning[disabled]{color:#ffffff;background-color:#f89406;*background-color:#df8505;} .btn-warning:active,.btn-warning.active{background-color:#c67605 \9;} .btn-danger{color:#ffffff;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);background-color:#da4f49;background-image:-moz-linear-gradient(top, #ee5f5b, #bd362f);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#ee5f5b), to(#bd362f));background-image:-webkit-linear-gradient(top, #ee5f5b, #bd362f);background-image:-o-linear-gradient(top, #ee5f5b, #bd362f);background-image:linear-gradient(to bottom, #ee5f5b, #bd362f);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffee5f5b', endColorstr='#ffbd362f', GradientType=0);border-color:#bd362f #bd362f #802420;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);*background-color:#bd362f;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);}.btn-danger:hover,.btn-danger:active,.btn-danger.active,.btn-danger.disabled,.btn-danger[disabled]{color:#ffffff;background-color:#bd362f;*background-color:#a9302a;} .btn-danger:active,.btn-danger.active{background-color:#942a25 \9;} .btn-success{color:#ffffff;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);background-color:#5bb75b;background-image:-moz-linear-gradient(top, #62c462, #51a351);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#62c462), to(#51a351));background-image:-webkit-linear-gradient(top, #62c462, #51a351);background-image:-o-linear-gradient(top, #62c462, #51a351);background-image:linear-gradient(to bottom, #62c462, #51a351);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff62c462', endColorstr='#ff51a351', GradientType=0);border-color:#51a351 #51a351 #387038;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);*background-color:#51a351;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);}.btn-success:hover,.btn-success:active,.btn-success.active,.btn-success.disabled,.btn-success[disabled]{color:#ffffff;background-color:#51a351;*background-color:#499249;} .btn-success:active,.btn-success.active{background-color:#408140 \9;} .btn-info{color:#ffffff;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);background-color:#49afcd;background-image:-moz-linear-gradient(top, #5bc0de, #2f96b4);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#5bc0de), to(#2f96b4));background-image:-webkit-linear-gradient(top, #5bc0de, #2f96b4);background-image:-o-linear-gradient(top, #5bc0de, #2f96b4);background-image:linear-gradient(to bottom, #5bc0de, #2f96b4);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff2f96b4', GradientType=0);border-color:#2f96b4 #2f96b4 #1f6377;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);*background-color:#2f96b4;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);}.btn-info:hover,.btn-info:active,.btn-info.active,.btn-info.disabled,.btn-info[disabled]{color:#ffffff;background-color:#2f96b4;*background-color:#2a85a0;} .btn-info:active,.btn-info.active{background-color:#24748c \9;} .btn-inverse{color:#ffffff;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);background-color:#363636;background-image:-moz-linear-gradient(top, #444444, #222222);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#444444), to(#222222));background-image:-webkit-linear-gradient(top, #444444, #222222);background-image:-o-linear-gradient(top, #444444, #222222);background-image:linear-gradient(to bottom, #444444, #222222);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff444444', endColorstr='#ff222222', GradientType=0);border-color:#222222 #222222 #000000;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);*background-color:#222222;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);}.btn-inverse:hover,.btn-inverse:active,.btn-inverse.active,.btn-inverse.disabled,.btn-inverse[disabled]{color:#ffffff;background-color:#222222;*background-color:#151515;} .btn-inverse:active,.btn-inverse.active{background-color:#080808 \9;} button.btn,input[type="submit"].btn{*padding-top:3px;*padding-bottom:3px;}button.btn::-moz-focus-inner,input[type="submit"].btn::-moz-focus-inner{padding:0;border:0;} button.btn.btn-large,input[type="submit"].btn.btn-large{*padding-top:7px;*padding-bottom:7px;} button.btn.btn-small,input[type="submit"].btn.btn-small{*padding-top:3px;*padding-bottom:3px;} button.btn.btn-mini,input[type="submit"].btn.btn-mini{*padding-top:1px;*padding-bottom:1px;} .btn-link,.btn-link:active,.btn-link[disabled]{background-color:transparent;background-image:none;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;} .btn-link{border-color:transparent;cursor:pointer;color:#0088cc;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;} .btn-link:hover{color:#005580;text-decoration:underline;background-color:transparent;} .btn-link[disabled]:hover{color:#333333;text-decoration:none;} .btn-group{position:relative;display:inline-block;*display:inline;*zoom:1;font-size:0;vertical-align:middle;white-space:nowrap;*margin-left:.3em;}.btn-group:first-child{*margin-left:0;} .btn-group+.btn-group{margin-left:5px;} .btn-toolbar{font-size:0;margin-top:10px;margin-bottom:10px;}.btn-toolbar>.btn+.btn,.btn-toolbar>.btn-group+.btn,.btn-toolbar>.btn+.btn-group{margin-left:5px;} .btn-group>.btn{position:relative;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;} .btn-group>.btn+.btn{margin-left:-1px;} .btn-group>.btn,.btn-group>.dropdown-menu,.btn-group>.popover{font-size:14px;} .btn-group>.btn-mini{font-size:10.5px;} .btn-group>.btn-small{font-size:11.9px;} .btn-group>.btn-large{font-size:17.5px;} .btn-group>.btn:first-child{margin-left:0;-webkit-border-top-left-radius:4px;-moz-border-radius-topleft:4px;border-top-left-radius:4px;-webkit-border-bottom-left-radius:4px;-moz-border-radius-bottomleft:4px;border-bottom-left-radius:4px;} .btn-group>.btn:last-child,.btn-group>.dropdown-toggle{-webkit-border-top-right-radius:4px;-moz-border-radius-topright:4px;border-top-right-radius:4px;-webkit-border-bottom-right-radius:4px;-moz-border-radius-bottomright:4px;border-bottom-right-radius:4px;} .btn-group>.btn.large:first-child{margin-left:0;-webkit-border-top-left-radius:6px;-moz-border-radius-topleft:6px;border-top-left-radius:6px;-webkit-border-bottom-left-radius:6px;-moz-border-radius-bottomleft:6px;border-bottom-left-radius:6px;} .btn-group>.btn.large:last-child,.btn-group>.large.dropdown-toggle{-webkit-border-top-right-radius:6px;-moz-border-radius-topright:6px;border-top-right-radius:6px;-webkit-border-bottom-right-radius:6px;-moz-border-radius-bottomright:6px;border-bottom-right-radius:6px;} .btn-group>.btn:hover,.btn-group>.btn:focus,.btn-group>.btn:active,.btn-group>.btn.active{z-index:2;} .btn-group .dropdown-toggle:active,.btn-group.open .dropdown-toggle{outline:0;} .btn-group>.btn+.dropdown-toggle{padding-left:8px;padding-right:8px;-webkit-box-shadow:inset 1px 0 0 rgba(255,255,255,.125), inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);-moz-box-shadow:inset 1px 0 0 rgba(255,255,255,.125), inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);box-shadow:inset 1px 0 0 rgba(255,255,255,.125), inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);*padding-top:5px;*padding-bottom:5px;} .btn-group>.btn-mini+.dropdown-toggle{padding-left:5px;padding-right:5px;*padding-top:2px;*padding-bottom:2px;} .btn-group>.btn-small+.dropdown-toggle{*padding-top:5px;*padding-bottom:4px;} .btn-group>.btn-large+.dropdown-toggle{padding-left:12px;padding-right:12px;*padding-top:7px;*padding-bottom:7px;} .btn-group.open .dropdown-toggle{background-image:none;-webkit-box-shadow:inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);-moz-box-shadow:inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);box-shadow:inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);} .btn-group.open .btn.dropdown-toggle{background-color:#e6e6e6;} .btn-group.open .btn-primary.dropdown-toggle{background-color:#0044cc;} .btn-group.open .btn-warning.dropdown-toggle{background-color:#f89406;} .btn-group.open .btn-danger.dropdown-toggle{background-color:#bd362f;} .btn-group.open .btn-success.dropdown-toggle{background-color:#51a351;} .btn-group.open .btn-info.dropdown-toggle{background-color:#2f96b4;} .btn-group.open .btn-inverse.dropdown-toggle{background-color:#222222;} .btn .caret{margin-top:8px;margin-left:0;} .btn-mini .caret,.btn-small .caret,.btn-large .caret{margin-top:6px;} .btn-large .caret{border-left-width:5px;border-right-width:5px;border-top-width:5px;} .dropup .btn-large .caret{border-bottom-width:5px;} .btn-primary .caret,.btn-warning .caret,.btn-danger .caret,.btn-info .caret,.btn-success .caret,.btn-inverse .caret{border-top-color:#ffffff;border-bottom-color:#ffffff;} .btn-group-vertical{display:inline-block;*display:inline;*zoom:1;} .btn-group-vertical>.btn{display:block;float:none;max-width:100%;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;} .btn-group-vertical>.btn+.btn{margin-left:0;margin-top:-1px;} .btn-group-vertical>.btn:first-child{-webkit-border-radius:4px 4px 0 0;-moz-border-radius:4px 4px 0 0;border-radius:4px 4px 0 0;} .btn-group-vertical>.btn:last-child{-webkit-border-radius:0 0 4px 4px;-moz-border-radius:0 0 4px 4px;border-radius:0 0 4px 4px;} .btn-group-vertical>.btn-large:first-child{-webkit-border-radius:6px 6px 0 0;-moz-border-radius:6px 6px 0 0;border-radius:6px 6px 0 0;} .btn-group-vertical>.btn-large:last-child{-webkit-border-radius:0 0 6px 6px;-moz-border-radius:0 0 6px 6px;border-radius:0 0 6px 6px;} .nav{margin-left:0;margin-bottom:20px;list-style:none;} .nav>li>a{display:block;} .nav>li>a:hover{text-decoration:none;background-color:#eeeeee;} .nav>li>a>img{max-width:none;} .nav>.pull-right{float:right;} .nav-header{display:block;padding:3px 15px;font-size:11px;font-weight:bold;line-height:20px;color:#999999;text-shadow:0 1px 0 rgba(255, 255, 255, 0.5);text-transform:uppercase;} .nav li+.nav-header{margin-top:9px;} .nav-list{padding-left:15px;padding-right:15px;margin-bottom:0;} .nav-list>li>a,.nav-list .nav-header{margin-left:-15px;margin-right:-15px;text-shadow:0 1px 0 rgba(255, 255, 255, 0.5);} .nav-list>li>a{padding:3px 15px;} .nav-list>.active>a,.nav-list>.active>a:hover{color:#ffffff;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.2);background-color:#0088cc;} .nav-list [class^="icon-"],.nav-list [class*=" icon-"]{margin-right:2px;} .nav-list .divider{*width:100%;height:1px;margin:9px 1px;*margin:-5px 0 5px;overflow:hidden;background-color:#e5e5e5;border-bottom:1px solid #ffffff;} .nav-tabs,.nav-pills{*zoom:1;}.nav-tabs:before,.nav-pills:before,.nav-tabs:after,.nav-pills:after{display:table;content:"";line-height:0;} .nav-tabs:after,.nav-pills:after{clear:both;} .nav-tabs>li,.nav-pills>li{float:left;} .nav-tabs>li>a,.nav-pills>li>a{padding-right:12px;padding-left:12px;margin-right:2px;line-height:14px;} .nav-tabs{border-bottom:1px solid #ddd;} .nav-tabs>li{margin-bottom:-1px;} .nav-tabs>li>a{padding-top:8px;padding-bottom:8px;line-height:20px;border:1px solid transparent;-webkit-border-radius:4px 4px 0 0;-moz-border-radius:4px 4px 0 0;border-radius:4px 4px 0 0;}.nav-tabs>li>a:hover{border-color:#eeeeee #eeeeee #dddddd;} .nav-tabs>.active>a,.nav-tabs>.active>a:hover{color:#555555;background-color:#ffffff;border:1px solid #ddd;border-bottom-color:transparent;cursor:default;} .nav-pills>li>a{padding-top:8px;padding-bottom:8px;margin-top:2px;margin-bottom:2px;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;} .nav-pills>.active>a,.nav-pills>.active>a:hover{color:#ffffff;background-color:#0088cc;} .nav-stacked>li{float:none;} .nav-stacked>li>a{margin-right:0;} .nav-tabs.nav-stacked{border-bottom:0;} .nav-tabs.nav-stacked>li>a{border:1px solid #ddd;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;} .nav-tabs.nav-stacked>li:first-child>a{-webkit-border-top-right-radius:4px;-moz-border-radius-topright:4px;border-top-right-radius:4px;-webkit-border-top-left-radius:4px;-moz-border-radius-topleft:4px;border-top-left-radius:4px;} .nav-tabs.nav-stacked>li:last-child>a{-webkit-border-bottom-right-radius:4px;-moz-border-radius-bottomright:4px;border-bottom-right-radius:4px;-webkit-border-bottom-left-radius:4px;-moz-border-radius-bottomleft:4px;border-bottom-left-radius:4px;} .nav-tabs.nav-stacked>li>a:hover{border-color:#ddd;z-index:2;} .nav-pills.nav-stacked>li>a{margin-bottom:3px;} .nav-pills.nav-stacked>li:last-child>a{margin-bottom:1px;} .nav-tabs .dropdown-menu{-webkit-border-radius:0 0 6px 6px;-moz-border-radius:0 0 6px 6px;border-radius:0 0 6px 6px;} .nav-pills .dropdown-menu{-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;} .nav .dropdown-toggle .caret{border-top-color:#0088cc;border-bottom-color:#0088cc;margin-top:6px;} .nav .dropdown-toggle:hover .caret{border-top-color:#005580;border-bottom-color:#005580;} .nav-tabs .dropdown-toggle .caret{margin-top:8px;} .nav .active .dropdown-toggle .caret{border-top-color:#fff;border-bottom-color:#fff;} .nav-tabs .active .dropdown-toggle .caret{border-top-color:#555555;border-bottom-color:#555555;} .nav>.dropdown.active>a:hover{cursor:pointer;} .nav-tabs .open .dropdown-toggle,.nav-pills .open .dropdown-toggle,.nav>li.dropdown.open.active>a:hover{color:#ffffff;background-color:#999999;border-color:#999999;} .nav li.dropdown.open .caret,.nav li.dropdown.open.active .caret,.nav li.dropdown.open a:hover .caret{border-top-color:#ffffff;border-bottom-color:#ffffff;opacity:1;filter:alpha(opacity=100);} .tabs-stacked .open>a:hover{border-color:#999999;} .tabbable{*zoom:1;}.tabbable:before,.tabbable:after{display:table;content:"";line-height:0;} .tabbable:after{clear:both;} .tab-content{overflow:auto;} .tabs-below>.nav-tabs,.tabs-right>.nav-tabs,.tabs-left>.nav-tabs{border-bottom:0;} .tab-content>.tab-pane,.pill-content>.pill-pane{display:none;} .tab-content>.active,.pill-content>.active{display:block;} .tabs-below>.nav-tabs{border-top:1px solid #ddd;} .tabs-below>.nav-tabs>li{margin-top:-1px;margin-bottom:0;} .tabs-below>.nav-tabs>li>a{-webkit-border-radius:0 0 4px 4px;-moz-border-radius:0 0 4px 4px;border-radius:0 0 4px 4px;}.tabs-below>.nav-tabs>li>a:hover{border-bottom-color:transparent;border-top-color:#ddd;} .tabs-below>.nav-tabs>.active>a,.tabs-below>.nav-tabs>.active>a:hover{border-color:transparent #ddd #ddd #ddd;} .tabs-left>.nav-tabs>li,.tabs-right>.nav-tabs>li{float:none;} .tabs-left>.nav-tabs>li>a,.tabs-right>.nav-tabs>li>a{min-width:74px;margin-right:0;margin-bottom:3px;} .tabs-left>.nav-tabs{float:left;margin-right:19px;border-right:1px solid #ddd;} .tabs-left>.nav-tabs>li>a{margin-right:-1px;-webkit-border-radius:4px 0 0 4px;-moz-border-radius:4px 0 0 4px;border-radius:4px 0 0 4px;} .tabs-left>.nav-tabs>li>a:hover{border-color:#eeeeee #dddddd #eeeeee #eeeeee;} .tabs-left>.nav-tabs .active>a,.tabs-left>.nav-tabs .active>a:hover{border-color:#ddd transparent #ddd #ddd;*border-right-color:#ffffff;} .tabs-right>.nav-tabs{float:right;margin-left:19px;border-left:1px solid #ddd;} .tabs-right>.nav-tabs>li>a{margin-left:-1px;-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0;} .tabs-right>.nav-tabs>li>a:hover{border-color:#eeeeee #eeeeee #eeeeee #dddddd;} .tabs-right>.nav-tabs .active>a,.tabs-right>.nav-tabs .active>a:hover{border-color:#ddd #ddd #ddd transparent;*border-left-color:#ffffff;} .nav>.disabled>a{color:#999999;} .nav>.disabled>a:hover{text-decoration:none;background-color:transparent;cursor:default;} .navbar{overflow:visible;margin-bottom:20px;*position:relative;*z-index:2;} .navbar-inner{min-height:50px;padding-left:20px;padding-right:20px;background-color:#fafafa;background-image:-moz-linear-gradient(top, #ffffff, #f2f2f2);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#f2f2f2));background-image:-webkit-linear-gradient(top, #ffffff, #f2f2f2);background-image:-o-linear-gradient(top, #ffffff, #f2f2f2);background-image:linear-gradient(to bottom, #ffffff, #f2f2f2);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#fff2f2f2', GradientType=0);border:1px solid #d4d4d4;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:0 1px 4px rgba(0, 0, 0, 0.065);-moz-box-shadow:0 1px 4px rgba(0, 0, 0, 0.065);box-shadow:0 1px 4px rgba(0, 0, 0, 0.065);*zoom:1;}.navbar-inner:before,.navbar-inner:after{display:table;content:"";line-height:0;} .navbar-inner:after{clear:both;} .navbar .container{width:auto;} .nav-collapse.collapse{height:auto;overflow:visible;} .navbar .brand{float:left;display:block;padding:15px 20px 15px;margin-left:-20px;font-size:20px;font-weight:200;color:#777777;text-shadow:0 1px 0 #ffffff;}.navbar .brand:hover{text-decoration:none;} .navbar-text{margin-bottom:0;line-height:50px;color:#777777;} .navbar-link{color:#777777;}.navbar-link:hover{color:#333333;} .navbar .divider-vertical{height:50px;margin:0 9px;border-left:1px solid #f2f2f2;border-right:1px solid #ffffff;} .navbar .btn,.navbar .btn-group{margin-top:10px;} .navbar .btn-group .btn,.navbar .input-prepend .btn,.navbar .input-append .btn{margin-top:0;} .navbar-form{margin-bottom:0;*zoom:1;}.navbar-form:before,.navbar-form:after{display:table;content:"";line-height:0;} .navbar-form:after{clear:both;} .navbar-form input,.navbar-form select,.navbar-form .radio,.navbar-form .checkbox{margin-top:10px;} .navbar-form input,.navbar-form select,.navbar-form .btn{display:inline-block;margin-bottom:0;} .navbar-form input[type="image"],.navbar-form input[type="checkbox"],.navbar-form input[type="radio"]{margin-top:3px;} .navbar-form .input-append,.navbar-form .input-prepend{margin-top:5px;white-space:nowrap;}.navbar-form .input-append input,.navbar-form .input-prepend input{margin-top:0;} .navbar-search{position:relative;float:left;margin-top:10px;margin-bottom:0;}.navbar-search .search-query{margin-bottom:0;padding:4px 14px;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:13px;font-weight:normal;line-height:1;-webkit-border-radius:15px;-moz-border-radius:15px;border-radius:15px;} .navbar-static-top{position:static;margin-bottom:0;}.navbar-static-top .navbar-inner{-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;} .navbar-fixed-top,.navbar-fixed-bottom{position:fixed;right:0;left:0;z-index:1030;margin-bottom:0;} .navbar-fixed-top .navbar-inner,.navbar-static-top .navbar-inner{border-width:0 0 1px;} .navbar-fixed-bottom .navbar-inner{border-width:1px 0 0;} .navbar-fixed-top .navbar-inner,.navbar-fixed-bottom .navbar-inner{padding-left:0;padding-right:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;} .navbar-static-top .container,.navbar-fixed-top .container,.navbar-fixed-bottom .container{width:940px;} .navbar-fixed-top{top:0;} .navbar-fixed-top .navbar-inner,.navbar-static-top .navbar-inner{-webkit-box-shadow:0 1px 10px rgba(0,0,0,.1);-moz-box-shadow:0 1px 10px rgba(0,0,0,.1);box-shadow:0 1px 10px rgba(0,0,0,.1);} .navbar-fixed-bottom{bottom:0;}.navbar-fixed-bottom .navbar-inner{-webkit-box-shadow:0 -1px 10px rgba(0,0,0,.1);-moz-box-shadow:0 -1px 10px rgba(0,0,0,.1);box-shadow:0 -1px 10px rgba(0,0,0,.1);} .navbar .nav{position:relative;left:0;display:block;float:left;margin:0 10px 0 0;} .navbar .nav.pull-right{float:right;margin-right:0;} .navbar .nav>li{float:left;} .navbar .nav>li>a{float:none;padding:15px 15px 15px;color:#777777;text-decoration:none;text-shadow:0 1px 0 #ffffff;} .navbar .nav .dropdown-toggle .caret{margin-top:8px;} .navbar .nav>li>a:focus,.navbar .nav>li>a:hover{background-color:transparent;color:#333333;text-decoration:none;} .navbar .nav>.active>a,.navbar .nav>.active>a:hover,.navbar .nav>.active>a:focus{color:#555555;text-decoration:none;background-color:#e5e5e5;-webkit-box-shadow:inset 0 3px 8px rgba(0, 0, 0, 0.125);-moz-box-shadow:inset 0 3px 8px rgba(0, 0, 0, 0.125);box-shadow:inset 0 3px 8px rgba(0, 0, 0, 0.125);} .navbar .btn-navbar{display:none;float:right;padding:7px 10px;margin-left:5px;margin-right:5px;color:#ffffff;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);background-color:#ededed;background-image:-moz-linear-gradient(top, #f2f2f2, #e5e5e5);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#f2f2f2), to(#e5e5e5));background-image:-webkit-linear-gradient(top, #f2f2f2, #e5e5e5);background-image:-o-linear-gradient(top, #f2f2f2, #e5e5e5);background-image:linear-gradient(to bottom, #f2f2f2, #e5e5e5);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2f2f2', endColorstr='#ffe5e5e5', GradientType=0);border-color:#e5e5e5 #e5e5e5 #bfbfbf;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);*background-color:#e5e5e5;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.075);-moz-box-shadow:inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.075);box-shadow:inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.075);}.navbar .btn-navbar:hover,.navbar .btn-navbar:active,.navbar .btn-navbar.active,.navbar .btn-navbar.disabled,.navbar .btn-navbar[disabled]{color:#ffffff;background-color:#e5e5e5;*background-color:#d9d9d9;} .navbar .btn-navbar:active,.navbar .btn-navbar.active{background-color:#cccccc \9;} .navbar .btn-navbar .icon-bar{display:block;width:18px;height:2px;background-color:#f5f5f5;-webkit-border-radius:1px;-moz-border-radius:1px;border-radius:1px;-webkit-box-shadow:0 1px 0 rgba(0, 0, 0, 0.25);-moz-box-shadow:0 1px 0 rgba(0, 0, 0, 0.25);box-shadow:0 1px 0 rgba(0, 0, 0, 0.25);} .btn-navbar .icon-bar+.icon-bar{margin-top:3px;} .navbar .nav>li>.dropdown-menu:before{content:'';display:inline-block;border-left:7px solid transparent;border-right:7px solid transparent;border-bottom:7px solid #ccc;border-bottom-color:rgba(0, 0, 0, 0.2);position:absolute;top:-7px;left:9px;} .navbar .nav>li>.dropdown-menu:after{content:'';display:inline-block;border-left:6px solid transparent;border-right:6px solid transparent;border-bottom:6px solid #ffffff;position:absolute;top:-6px;left:10px;} .navbar-fixed-bottom .nav>li>.dropdown-menu:before{border-top:7px solid #ccc;border-top-color:rgba(0, 0, 0, 0.2);border-bottom:0;bottom:-7px;top:auto;} .navbar-fixed-bottom .nav>li>.dropdown-menu:after{border-top:6px solid #ffffff;border-bottom:0;bottom:-6px;top:auto;} .navbar .nav li.dropdown>a:hover .caret{border-top-color:#555555;border-bottom-color:#555555;} .navbar .nav li.dropdown.open>.dropdown-toggle,.navbar .nav li.dropdown.active>.dropdown-toggle,.navbar .nav li.dropdown.open.active>.dropdown-toggle{background-color:#e5e5e5;color:#555555;} .navbar .nav li.dropdown>.dropdown-toggle .caret{border-top-color:#777777;border-bottom-color:#777777;} .navbar .nav li.dropdown.open>.dropdown-toggle .caret,.navbar .nav li.dropdown.active>.dropdown-toggle .caret,.navbar .nav li.dropdown.open.active>.dropdown-toggle .caret{border-top-color:#555555;border-bottom-color:#555555;} .navbar .pull-right>li>.dropdown-menu,.navbar .nav>li>.dropdown-menu.pull-right{left:auto;right:0;}.navbar .pull-right>li>.dropdown-menu:before,.navbar .nav>li>.dropdown-menu.pull-right:before{left:auto;right:12px;} .navbar .pull-right>li>.dropdown-menu:after,.navbar .nav>li>.dropdown-menu.pull-right:after{left:auto;right:13px;} .navbar .pull-right>li>.dropdown-menu .dropdown-menu,.navbar .nav>li>.dropdown-menu.pull-right .dropdown-menu{left:auto;right:100%;margin-left:0;margin-right:-1px;-webkit-border-radius:6px 0 6px 6px;-moz-border-radius:6px 0 6px 6px;border-radius:6px 0 6px 6px;} .navbar-inverse .navbar-inner{background-color:#1b1b1b;background-image:-moz-linear-gradient(top, #222222, #111111);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#222222), to(#111111));background-image:-webkit-linear-gradient(top, #222222, #111111);background-image:-o-linear-gradient(top, #222222, #111111);background-image:linear-gradient(to bottom, #222222, #111111);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff222222', endColorstr='#ff111111', GradientType=0);border-color:#252525;} .navbar-inverse .brand,.navbar-inverse .nav>li>a{color:#999999;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);}.navbar-inverse .brand:hover,.navbar-inverse .nav>li>a:hover{color:#ffffff;} .navbar-inverse .brand{color:#999999;} .navbar-inverse .navbar-text{color:#999999;} .navbar-inverse .nav>li>a:focus,.navbar-inverse .nav>li>a:hover{background-color:transparent;color:#ffffff;} .navbar-inverse .nav .active>a,.navbar-inverse .nav .active>a:hover,.navbar-inverse .nav .active>a:focus{color:#ffffff;background-color:#111111;} .navbar-inverse .navbar-link{color:#999999;}.navbar-inverse .navbar-link:hover{color:#ffffff;} .navbar-inverse .divider-vertical{border-left-color:#111111;border-right-color:#222222;} .navbar-inverse .nav li.dropdown.open>.dropdown-toggle,.navbar-inverse .nav li.dropdown.active>.dropdown-toggle,.navbar-inverse .nav li.dropdown.open.active>.dropdown-toggle{background-color:#111111;color:#ffffff;} .navbar-inverse .nav li.dropdown>a:hover .caret{border-top-color:#ffffff;border-bottom-color:#ffffff;} .navbar-inverse .nav li.dropdown>.dropdown-toggle .caret{border-top-color:#999999;border-bottom-color:#999999;} .navbar-inverse .nav li.dropdown.open>.dropdown-toggle .caret,.navbar-inverse .nav li.dropdown.active>.dropdown-toggle .caret,.navbar-inverse .nav li.dropdown.open.active>.dropdown-toggle .caret{border-top-color:#ffffff;border-bottom-color:#ffffff;} .navbar-inverse .navbar-search .search-query{color:#ffffff;background-color:#515151;border-color:#111111;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.1), 0 1px 0 rgba(255,255,255,.15);-moz-box-shadow:inset 0 1px 2px rgba(0,0,0,.1), 0 1px 0 rgba(255,255,255,.15);box-shadow:inset 0 1px 2px rgba(0,0,0,.1), 0 1px 0 rgba(255,255,255,.15);-webkit-transition:none;-moz-transition:none;-o-transition:none;transition:none;}.navbar-inverse .navbar-search .search-query:-moz-placeholder{color:#cccccc;} .navbar-inverse .navbar-search .search-query:-ms-input-placeholder{color:#cccccc;} .navbar-inverse .navbar-search .search-query::-webkit-input-placeholder{color:#cccccc;} .navbar-inverse .navbar-search .search-query:focus,.navbar-inverse .navbar-search .search-query.focused{padding:5px 15px;color:#333333;text-shadow:0 1px 0 #ffffff;background-color:#ffffff;border:0;-webkit-box-shadow:0 0 3px rgba(0, 0, 0, 0.15);-moz-box-shadow:0 0 3px rgba(0, 0, 0, 0.15);box-shadow:0 0 3px rgba(0, 0, 0, 0.15);outline:0;} .navbar-inverse .btn-navbar{color:#ffffff;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);background-color:#0e0e0e;background-image:-moz-linear-gradient(top, #151515, #040404);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#151515), to(#040404));background-image:-webkit-linear-gradient(top, #151515, #040404);background-image:-o-linear-gradient(top, #151515, #040404);background-image:linear-gradient(to bottom, #151515, #040404);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff151515', endColorstr='#ff040404', GradientType=0);border-color:#040404 #040404 #000000;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);*background-color:#040404;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);}.navbar-inverse .btn-navbar:hover,.navbar-inverse .btn-navbar:active,.navbar-inverse .btn-navbar.active,.navbar-inverse .btn-navbar.disabled,.navbar-inverse .btn-navbar[disabled]{color:#ffffff;background-color:#040404;*background-color:#000000;} .navbar-inverse .btn-navbar:active,.navbar-inverse .btn-navbar.active{background-color:#000000 \9;} .breadcrumb{padding:8px 15px;margin:0 0 20px;list-style:none;background-color:#f5f5f5;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;}.breadcrumb>li{display:inline-block;*display:inline;*zoom:1;text-shadow:0 1px 0 #ffffff;}.breadcrumb>li>.divider{padding:0 5px;color:#ccc;} .breadcrumb>.active{color:#999999;} .pagination{margin:20px 0;} .pagination ul{display:inline-block;*display:inline;*zoom:1;margin-left:0;margin-bottom:0;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:0 1px 2px rgba(0, 0, 0, 0.05);-moz-box-shadow:0 1px 2px rgba(0, 0, 0, 0.05);box-shadow:0 1px 2px rgba(0, 0, 0, 0.05);} .pagination ul>li{display:inline;} .pagination ul>li>a,.pagination ul>li>span{float:left;padding:4px 12px;line-height:20px;text-decoration:none;background-color:#ffffff;border:1px solid #dddddd;border-left-width:0;} .pagination ul>li>a:hover,.pagination ul>.active>a,.pagination ul>.active>span{background-color:#f5f5f5;} .pagination ul>.active>a,.pagination ul>.active>span{color:#999999;cursor:default;} .pagination ul>.disabled>span,.pagination ul>.disabled>a,.pagination ul>.disabled>a:hover{color:#999999;background-color:transparent;cursor:default;} .pagination ul>li:first-child>a,.pagination ul>li:first-child>span{border-left-width:1px;-webkit-border-top-left-radius:4px;-moz-border-radius-topleft:4px;border-top-left-radius:4px;-webkit-border-bottom-left-radius:4px;-moz-border-radius-bottomleft:4px;border-bottom-left-radius:4px;} .pagination ul>li:last-child>a,.pagination ul>li:last-child>span{-webkit-border-top-right-radius:4px;-moz-border-radius-topright:4px;border-top-right-radius:4px;-webkit-border-bottom-right-radius:4px;-moz-border-radius-bottomright:4px;border-bottom-right-radius:4px;} .pagination-centered{text-align:center;} .pagination-right{text-align:right;} .pagination-large ul>li>a,.pagination-large ul>li>span{padding:11px 19px;font-size:17.5px;} .pagination-large ul>li:first-child>a,.pagination-large ul>li:first-child>span{-webkit-border-top-left-radius:6px;-moz-border-radius-topleft:6px;border-top-left-radius:6px;-webkit-border-bottom-left-radius:6px;-moz-border-radius-bottomleft:6px;border-bottom-left-radius:6px;} .pagination-large ul>li:last-child>a,.pagination-large ul>li:last-child>span{-webkit-border-top-right-radius:6px;-moz-border-radius-topright:6px;border-top-right-radius:6px;-webkit-border-bottom-right-radius:6px;-moz-border-radius-bottomright:6px;border-bottom-right-radius:6px;} .pagination-mini ul>li:first-child>a,.pagination-small ul>li:first-child>a,.pagination-mini ul>li:first-child>span,.pagination-small ul>li:first-child>span{-webkit-border-top-left-radius:3px;-moz-border-radius-topleft:3px;border-top-left-radius:3px;-webkit-border-bottom-left-radius:3px;-moz-border-radius-bottomleft:3px;border-bottom-left-radius:3px;} .pagination-mini ul>li:last-child>a,.pagination-small ul>li:last-child>a,.pagination-mini ul>li:last-child>span,.pagination-small ul>li:last-child>span{-webkit-border-top-right-radius:3px;-moz-border-radius-topright:3px;border-top-right-radius:3px;-webkit-border-bottom-right-radius:3px;-moz-border-radius-bottomright:3px;border-bottom-right-radius:3px;} .pagination-small ul>li>a,.pagination-small ul>li>span{padding:2px 10px;font-size:11.9px;} .pagination-mini ul>li>a,.pagination-mini ul>li>span{padding:0 6px;font-size:10.5px;} .pager{margin:20px 0;list-style:none;text-align:center;*zoom:1;}.pager:before,.pager:after{display:table;content:"";line-height:0;} .pager:after{clear:both;} .pager li{display:inline;} .pager li>a,.pager li>span{display:inline-block;padding:5px 14px;background-color:#fff;border:1px solid #ddd;-webkit-border-radius:15px;-moz-border-radius:15px;border-radius:15px;} .pager li>a:hover{text-decoration:none;background-color:#f5f5f5;} .pager .next>a,.pager .next>span{float:right;} .pager .previous>a,.pager .previous>span{float:left;} .pager .disabled>a,.pager .disabled>a:hover,.pager .disabled>span{color:#999999;background-color:#fff;cursor:default;} .thumbnails{margin-left:-20px;list-style:none;*zoom:1;}.thumbnails:before,.thumbnails:after{display:table;content:"";line-height:0;} .thumbnails:after{clear:both;} .row-fluid .thumbnails{margin-left:0;} .thumbnails>li{float:left;margin-bottom:20px;margin-left:20px;} .thumbnail{display:block;padding:4px;line-height:20px;border:1px solid #ddd;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:0 1px 3px rgba(0, 0, 0, 0.055);-moz-box-shadow:0 1px 3px rgba(0, 0, 0, 0.055);box-shadow:0 1px 3px rgba(0, 0, 0, 0.055);-webkit-transition:all 0.2s ease-in-out;-moz-transition:all 0.2s ease-in-out;-o-transition:all 0.2s ease-in-out;transition:all 0.2s ease-in-out;} a.thumbnail:hover{border-color:#0088cc;-webkit-box-shadow:0 1px 4px rgba(0, 105, 214, 0.25);-moz-box-shadow:0 1px 4px rgba(0, 105, 214, 0.25);box-shadow:0 1px 4px rgba(0, 105, 214, 0.25);} .thumbnail>img{display:block;max-width:100%;margin-left:auto;margin-right:auto;} .thumbnail .caption{padding:9px;color:#555555;} .alert{padding:8px 35px 8px 14px;margin-bottom:20px;text-shadow:0 1px 0 rgba(255, 255, 255, 0.5);background-color:#fcf8e3;border:1px solid #fbeed5;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;} .alert,.alert h4{color:#c09853;} .alert h4{margin:0;} .alert .close{position:relative;top:-2px;right:-21px;line-height:20px;} .alert-success{background-color:#dff0d8;border-color:#d6e9c6;color:#468847;} .alert-success h4{color:#468847;} .alert-danger,.alert-error{background-color:#f2dede;border-color:#eed3d7;color:#b94a48;} .alert-danger h4,.alert-error h4{color:#b94a48;} .alert-info{background-color:#d9edf7;border-color:#bce8f1;color:#3a87ad;} .alert-info h4{color:#3a87ad;} .alert-block{padding-top:14px;padding-bottom:14px;} .alert-block>p,.alert-block>ul{margin-bottom:0;} .alert-block p+p{margin-top:5px;} @-webkit-keyframes progress-bar-stripes{from{background-position:40px 0;} to{background-position:0 0;}}@-moz-keyframes progress-bar-stripes{from{background-position:40px 0;} to{background-position:0 0;}}@-ms-keyframes progress-bar-stripes{from{background-position:40px 0;} to{background-position:0 0;}}@-o-keyframes progress-bar-stripes{from{background-position:0 0;} to{background-position:40px 0;}}@keyframes progress-bar-stripes{from{background-position:40px 0;} to{background-position:0 0;}}.progress{overflow:hidden;height:20px;margin-bottom:20px;background-color:#f7f7f7;background-image:-moz-linear-gradient(top, #f5f5f5, #f9f9f9);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#f5f5f5), to(#f9f9f9));background-image:-webkit-linear-gradient(top, #f5f5f5, #f9f9f9);background-image:-o-linear-gradient(top, #f5f5f5, #f9f9f9);background-image:linear-gradient(to bottom, #f5f5f5, #f9f9f9);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#fff9f9f9', GradientType=0);-webkit-box-shadow:inset 0 1px 2px rgba(0, 0, 0, 0.1);-moz-box-shadow:inset 0 1px 2px rgba(0, 0, 0, 0.1);box-shadow:inset 0 1px 2px rgba(0, 0, 0, 0.1);-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;} .progress .bar{width:0%;height:100%;color:#ffffff;float:left;font-size:12px;text-align:center;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);background-color:#0e90d2;background-image:-moz-linear-gradient(top, #149bdf, #0480be);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#149bdf), to(#0480be));background-image:-webkit-linear-gradient(top, #149bdf, #0480be);background-image:-o-linear-gradient(top, #149bdf, #0480be);background-image:linear-gradient(to bottom, #149bdf, #0480be);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff149bdf', endColorstr='#ff0480be', GradientType=0);-webkit-box-shadow:inset 0 -1px 0 rgba(0, 0, 0, 0.15);-moz-box-shadow:inset 0 -1px 0 rgba(0, 0, 0, 0.15);box-shadow:inset 0 -1px 0 rgba(0, 0, 0, 0.15);-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;-webkit-transition:width 0.6s ease;-moz-transition:width 0.6s ease;-o-transition:width 0.6s ease;transition:width 0.6s ease;} .progress .bar+.bar{-webkit-box-shadow:inset 1px 0 0 rgba(0,0,0,.15), inset 0 -1px 0 rgba(0,0,0,.15);-moz-box-shadow:inset 1px 0 0 rgba(0,0,0,.15), inset 0 -1px 0 rgba(0,0,0,.15);box-shadow:inset 1px 0 0 rgba(0,0,0,.15), inset 0 -1px 0 rgba(0,0,0,.15);} .progress-striped .bar{background-color:#149bdf;background-image:-webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));background-image:-webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);-webkit-background-size:40px 40px;-moz-background-size:40px 40px;-o-background-size:40px 40px;background-size:40px 40px;} .progress.active .bar{-webkit-animation:progress-bar-stripes 2s linear infinite;-moz-animation:progress-bar-stripes 2s linear infinite;-ms-animation:progress-bar-stripes 2s linear infinite;-o-animation:progress-bar-stripes 2s linear infinite;animation:progress-bar-stripes 2s linear infinite;} .progress-danger .bar,.progress .bar-danger{background-color:#dd514c;background-image:-moz-linear-gradient(top, #ee5f5b, #c43c35);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#ee5f5b), to(#c43c35));background-image:-webkit-linear-gradient(top, #ee5f5b, #c43c35);background-image:-o-linear-gradient(top, #ee5f5b, #c43c35);background-image:linear-gradient(to bottom, #ee5f5b, #c43c35);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffee5f5b', endColorstr='#ffc43c35', GradientType=0);} .progress-danger.progress-striped .bar,.progress-striped .bar-danger{background-color:#ee5f5b;background-image:-webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));background-image:-webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);} .progress-success .bar,.progress .bar-success{background-color:#5eb95e;background-image:-moz-linear-gradient(top, #62c462, #57a957);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#62c462), to(#57a957));background-image:-webkit-linear-gradient(top, #62c462, #57a957);background-image:-o-linear-gradient(top, #62c462, #57a957);background-image:linear-gradient(to bottom, #62c462, #57a957);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff62c462', endColorstr='#ff57a957', GradientType=0);} .progress-success.progress-striped .bar,.progress-striped .bar-success{background-color:#62c462;background-image:-webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));background-image:-webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);} .progress-info .bar,.progress .bar-info{background-color:#4bb1cf;background-image:-moz-linear-gradient(top, #5bc0de, #339bb9);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#5bc0de), to(#339bb9));background-image:-webkit-linear-gradient(top, #5bc0de, #339bb9);background-image:-o-linear-gradient(top, #5bc0de, #339bb9);background-image:linear-gradient(to bottom, #5bc0de, #339bb9);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff339bb9', GradientType=0);} .progress-info.progress-striped .bar,.progress-striped .bar-info{background-color:#5bc0de;background-image:-webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));background-image:-webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);} .progress-warning .bar,.progress .bar-warning{background-color:#faa732;background-image:-moz-linear-gradient(top, #fbb450, #f89406);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#fbb450), to(#f89406));background-image:-webkit-linear-gradient(top, #fbb450, #f89406);background-image:-o-linear-gradient(top, #fbb450, #f89406);background-image:linear-gradient(to bottom, #fbb450, #f89406);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffbb450', endColorstr='#fff89406', GradientType=0);} .progress-warning.progress-striped .bar,.progress-striped .bar-warning{background-color:#fbb450;background-image:-webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));background-image:-webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);} .hero-unit{padding:60px;margin-bottom:30px;font-size:18px;font-weight:200;line-height:30px;color:inherit;background-color:#eeeeee;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;}.hero-unit h1{margin-bottom:0;font-size:60px;line-height:1;color:inherit;letter-spacing:-1px;} .hero-unit li{line-height:30px;} .media,.media-body{overflow:hidden;*overflow:visible;zoom:1;} .media,.media .media{margin-top:15px;} .media:first-child{margin-top:0;} .media-object{display:block;} .media-heading{margin:0 0 5px;} .media .pull-left{margin-right:10px;} .media .pull-right{margin-left:10px;} .media-list{margin-left:0;list-style:none;} .tooltip{position:absolute;z-index:1030;display:block;visibility:visible;padding:5px;font-size:11px;opacity:0;filter:alpha(opacity=0);}.tooltip.in{opacity:0.8;filter:alpha(opacity=80);} .tooltip.top{margin-top:-3px;} .tooltip.right{margin-left:3px;} .tooltip.bottom{margin-top:3px;} .tooltip.left{margin-left:-3px;} .tooltip-inner{max-width:200px;padding:3px 8px;color:#ffffff;text-align:center;text-decoration:none;background-color:#000000;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;} .tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid;} .tooltip.top .tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-width:5px 5px 0;border-top-color:#000000;} .tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#000000;} .tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-width:5px 0 5px 5px;border-left-color:#000000;} .tooltip.bottom .tooltip-arrow{top:0;left:50%;margin-left:-5px;border-width:0 5px 5px;border-bottom-color:#000000;} .popover{position:absolute;top:0;left:0;z-index:1010;display:none;width:236px;padding:1px;text-align:left;background-color:#ffffff;-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0, 0, 0, 0.2);-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0, 0, 0, 0.2);-moz-box-shadow:0 5px 10px rgba(0, 0, 0, 0.2);box-shadow:0 5px 10px rgba(0, 0, 0, 0.2);white-space:normal;}.popover.top{margin-top:-10px;} .popover.right{margin-left:10px;} .popover.bottom{margin-top:10px;} .popover.left{margin-left:-10px;} .popover-title{margin:0;padding:8px 14px;font-size:14px;font-weight:normal;line-height:18px;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;-webkit-border-radius:5px 5px 0 0;-moz-border-radius:5px 5px 0 0;border-radius:5px 5px 0 0;} .popover-content{padding:9px 14px;} .popover .arrow,.popover .arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid;} .popover .arrow{border-width:11px;} .popover .arrow:after{border-width:10px;content:"";} .popover.top .arrow{left:50%;margin-left:-11px;border-bottom-width:0;border-top-color:#999;border-top-color:rgba(0, 0, 0, 0.25);bottom:-11px;}.popover.top .arrow:after{bottom:1px;margin-left:-10px;border-bottom-width:0;border-top-color:#ffffff;} .popover.right .arrow{top:50%;left:-11px;margin-top:-11px;border-left-width:0;border-right-color:#999;border-right-color:rgba(0, 0, 0, 0.25);}.popover.right .arrow:after{left:1px;bottom:-10px;border-left-width:0;border-right-color:#ffffff;} .popover.bottom .arrow{left:50%;margin-left:-11px;border-top-width:0;border-bottom-color:#999;border-bottom-color:rgba(0, 0, 0, 0.25);top:-11px;}.popover.bottom .arrow:after{top:1px;margin-left:-10px;border-top-width:0;border-bottom-color:#ffffff;} .popover.left .arrow{top:50%;right:-11px;margin-top:-11px;border-right-width:0;border-left-color:#999;border-left-color:rgba(0, 0, 0, 0.25);}.popover.left .arrow:after{right:1px;border-right-width:0;border-left-color:#ffffff;bottom:-10px;} .modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040;background-color:#000000;}.modal-backdrop.fade{opacity:0;} .modal-backdrop,.modal-backdrop.fade.in{opacity:0.8;filter:alpha(opacity=80);} .modal{position:fixed;top:10%;left:50%;z-index:1050;width:560px;margin-left:-280px;background-color:#ffffff;border:1px solid #999;border:1px solid rgba(0, 0, 0, 0.3);*border:1px solid #999;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;-webkit-box-shadow:0 3px 7px rgba(0, 0, 0, 0.3);-moz-box-shadow:0 3px 7px rgba(0, 0, 0, 0.3);box-shadow:0 3px 7px rgba(0, 0, 0, 0.3);-webkit-background-clip:padding-box;-moz-background-clip:padding-box;background-clip:padding-box;outline:none;}.modal.fade{-webkit-transition:opacity .3s linear, top .3s ease-out;-moz-transition:opacity .3s linear, top .3s ease-out;-o-transition:opacity .3s linear, top .3s ease-out;transition:opacity .3s linear, top .3s ease-out;top:-25%;} .modal.fade.in{top:10%;} .modal-header{padding:9px 15px;border-bottom:1px solid #eee;}.modal-header .close{margin-top:2px;} .modal-header h3{margin:0;line-height:30px;} .modal-body{position:relative;overflow-y:auto;max-height:400px;padding:15px;} .modal-form{margin-bottom:0;} .modal-footer{padding:14px 15px 15px;margin-bottom:0;text-align:right;background-color:#f5f5f5;border-top:1px solid #ddd;-webkit-border-radius:0 0 6px 6px;-moz-border-radius:0 0 6px 6px;border-radius:0 0 6px 6px;-webkit-box-shadow:inset 0 1px 0 #ffffff;-moz-box-shadow:inset 0 1px 0 #ffffff;box-shadow:inset 0 1px 0 #ffffff;*zoom:1;}.modal-footer:before,.modal-footer:after{display:table;content:"";line-height:0;} .modal-footer:after{clear:both;} .modal-footer .btn+.btn{margin-left:5px;margin-bottom:0;} .modal-footer .btn-group .btn+.btn{margin-left:-1px;} .modal-footer .btn-block+.btn-block{margin-left:0;} .dropup,.dropdown{position:relative;} .dropdown-toggle{*margin-bottom:-3px;} .dropdown-toggle:active,.open .dropdown-toggle{outline:0;} .caret{display:inline-block;width:0;height:0;vertical-align:top;border-top:4px solid #000000;border-right:4px solid transparent;border-left:4px solid transparent;content:"";} .dropdown .caret{margin-top:8px;margin-left:2px;} .dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:160px;padding:5px 0;margin:2px 0 0;list-style:none;background-color:#ffffff;border:1px solid #ccc;border:1px solid rgba(0, 0, 0, 0.2);*border-right-width:2px;*border-bottom-width:2px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0, 0, 0, 0.2);-moz-box-shadow:0 5px 10px rgba(0, 0, 0, 0.2);box-shadow:0 5px 10px rgba(0, 0, 0, 0.2);-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box;}.dropdown-menu.pull-right{right:0;left:auto;} .dropdown-menu .divider{*width:100%;height:1px;margin:9px 1px;*margin:-5px 0 5px;overflow:hidden;background-color:#e5e5e5;border-bottom:1px solid #ffffff;} .dropdown-menu li>a{display:block;padding:3px 20px;clear:both;font-weight:normal;line-height:20px;color:#333333;white-space:nowrap;} .dropdown-menu li>a:hover,.dropdown-menu li>a:focus,.dropdown-submenu:hover>a{text-decoration:none;color:#ffffff;background-color:#0081c2;background-image:-moz-linear-gradient(top, #0088cc, #0077b3);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0077b3));background-image:-webkit-linear-gradient(top, #0088cc, #0077b3);background-image:-o-linear-gradient(top, #0088cc, #0077b3);background-image:linear-gradient(to bottom, #0088cc, #0077b3);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff0077b3', GradientType=0);} .dropdown-menu .active>a,.dropdown-menu .active>a:hover{color:#ffffff;text-decoration:none;outline:0;background-color:#0081c2;background-image:-moz-linear-gradient(top, #0088cc, #0077b3);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0077b3));background-image:-webkit-linear-gradient(top, #0088cc, #0077b3);background-image:-o-linear-gradient(top, #0088cc, #0077b3);background-image:linear-gradient(to bottom, #0088cc, #0077b3);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff0077b3', GradientType=0);} .dropdown-menu .disabled>a,.dropdown-menu .disabled>a:hover{color:#999999;} .dropdown-menu .disabled>a:hover{text-decoration:none;background-color:transparent;background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);cursor:default;} .open{*z-index:1000;}.open >.dropdown-menu{display:block;} .pull-right>.dropdown-menu{right:0;left:auto;} .dropup .caret,.navbar-fixed-bottom .dropdown .caret{border-top:0;border-bottom:4px solid #000000;content:"";} .dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:1px;} .dropdown-submenu{position:relative;} .dropdown-submenu>.dropdown-menu{top:0;left:100%;margin-top:-6px;margin-left:-1px;-webkit-border-radius:0 6px 6px 6px;-moz-border-radius:0 6px 6px 6px;border-radius:0 6px 6px 6px;} .dropdown-submenu:hover>.dropdown-menu{display:block;} .dropup .dropdown-submenu>.dropdown-menu{top:auto;bottom:0;margin-top:0;margin-bottom:-2px;-webkit-border-radius:5px 5px 5px 0;-moz-border-radius:5px 5px 5px 0;border-radius:5px 5px 5px 0;} .dropdown-submenu>a:after{display:block;content:" ";float:right;width:0;height:0;border-color:transparent;border-style:solid;border-width:5px 0 5px 5px;border-left-color:#cccccc;margin-top:5px;margin-right:-10px;} .dropdown-submenu:hover>a:after{border-left-color:#ffffff;} .dropdown-submenu.pull-left{float:none;}.dropdown-submenu.pull-left>.dropdown-menu{left:-100%;margin-left:10px;-webkit-border-radius:6px 0 6px 6px;-moz-border-radius:6px 0 6px 6px;border-radius:6px 0 6px 6px;} .dropdown .dropdown-menu .nav-header{padding-left:20px;padding-right:20px;} .typeahead{z-index:1051;margin-top:2px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;} .accordion{margin-bottom:20px;} .accordion-group{margin-bottom:2px;border:1px solid #e5e5e5;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;} .accordion-heading{border-bottom:0;} .accordion-heading .accordion-toggle{display:block;padding:8px 15px;} .accordion-toggle{cursor:pointer;} .accordion-inner{padding:9px 15px;border-top:1px solid #e5e5e5;} .carousel{position:relative;margin-bottom:20px;line-height:1;} .carousel-inner{overflow:hidden;width:100%;position:relative;} .carousel-inner>.item{display:none;position:relative;-webkit-transition:0.6s ease-in-out left;-moz-transition:0.6s ease-in-out left;-o-transition:0.6s ease-in-out left;transition:0.6s ease-in-out left;} .carousel-inner>.item>img{display:block;line-height:1;} .carousel-inner>.active,.carousel-inner>.next,.carousel-inner>.prev{display:block;} .carousel-inner>.active{left:0;} .carousel-inner>.next,.carousel-inner>.prev{position:absolute;top:0;width:100%;} .carousel-inner>.next{left:100%;} .carousel-inner>.prev{left:-100%;} .carousel-inner>.next.left,.carousel-inner>.prev.right{left:0;} .carousel-inner>.active.left{left:-100%;} .carousel-inner>.active.right{left:100%;} .carousel-control{position:absolute;top:40%;left:15px;width:40px;height:40px;margin-top:-20px;font-size:60px;font-weight:100;line-height:30px;color:#ffffff;text-align:center;background:#222222;border:3px solid #ffffff;-webkit-border-radius:23px;-moz-border-radius:23px;border-radius:23px;opacity:0.5;filter:alpha(opacity=50);}.carousel-control.right{left:auto;right:15px;} .carousel-control:hover{color:#ffffff;text-decoration:none;opacity:0.9;filter:alpha(opacity=90);} .carousel-caption{position:absolute;left:0;right:0;bottom:0;padding:15px;background:#333333;background:rgba(0, 0, 0, 0.75);} .carousel-caption h4,.carousel-caption p{color:#ffffff;line-height:20px;} .carousel-caption h4{margin:0 0 5px;} .carousel-caption p{margin-bottom:0;} .well{min-height:20px;padding:19px;margin-bottom:20px;background-color:#f5f5f5;border:1px solid #e3e3e3;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.05);-moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.05);box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.05);}.well blockquote{border-color:#ddd;border-color:rgba(0, 0, 0, 0.15);} .well-large{padding:24px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;} .well-small{padding:9px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;} .close{float:right;font-size:20px;font-weight:bold;line-height:20px;color:#000000;text-shadow:0 1px 0 #ffffff;opacity:0.2;filter:alpha(opacity=20);}.close:hover{color:#000000;text-decoration:none;cursor:pointer;opacity:0.4;filter:alpha(opacity=40);} button.close{padding:0;cursor:pointer;background:transparent;border:0;-webkit-appearance:none;} .pull-right{float:right;} .pull-left{float:left;} .hide{display:none;} .show{display:block;} .invisible{visibility:hidden;} .affix{position:fixed;} .fade{opacity:0;-webkit-transition:opacity 0.15s linear;-moz-transition:opacity 0.15s linear;-o-transition:opacity 0.15s linear;transition:opacity 0.15s linear;}.fade.in{opacity:1;} .collapse{position:relative;height:0;overflow:hidden;-webkit-transition:height 0.35s ease;-moz-transition:height 0.35s ease;-o-transition:height 0.35s ease;transition:height 0.35s ease;}.collapse.in{height:auto;} .hidden{display:none;visibility:hidden;} .visible-phone{display:none !important;} .visible-tablet{display:none !important;} .hidden-desktop{display:none !important;} .visible-desktop{display:inherit !important;} @media (min-width:768px) and (max-width:979px){.hidden-desktop{display:inherit !important;} .visible-desktop{display:none !important ;} .visible-tablet{display:inherit !important;} .hidden-tablet{display:none !important;}}@media (max-width:767px){.hidden-desktop{display:inherit !important;} .visible-desktop{display:none !important;} .visible-phone{display:inherit !important;} .hidden-phone{display:none !important;}}@media (max-width:767px){body{padding-left:20px;padding-right:20px;} .navbar-fixed-top,.navbar-fixed-bottom,.navbar-static-top{margin-left:-20px;margin-right:-20px;} .container-fluid{padding:0;} .dl-horizontal dt{float:none;clear:none;width:auto;text-align:left;} .dl-horizontal dd{margin-left:0;} .container{width:auto;} .row-fluid{width:100%;} .row,.thumbnails{margin-left:0;} .thumbnails>li{float:none;margin-left:0;} [class*="span"],.uneditable-input[class*="span"],.row-fluid [class*="span"]{float:none;display:block;width:100%;margin-left:0;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;} .span12,.row-fluid .span12{width:100%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;} .row-fluid [class*="offset"]:first-child{margin-left:0;} .input-large,.input-xlarge,.input-xxlarge,input[class*="span"],select[class*="span"],textarea[class*="span"],.uneditable-input{display:block;width:100%;min-height:30px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;} .input-prepend input,.input-append input,.input-prepend input[class*="span"],.input-append input[class*="span"]{display:inline-block;width:auto;} .controls-row [class*="span"]+[class*="span"]{margin-left:0;} .modal{position:fixed;top:20px;left:20px;right:20px;width:auto;margin:0;}.modal.fade{top:-100px;} .modal.fade.in{top:20px;}}@media (max-width:480px){.nav-collapse{-webkit-transform:translate3d(0, 0, 0);} .page-header h1 small{display:block;line-height:20px;} input[type="checkbox"],input[type="radio"]{border:1px solid #ccc;} .form-horizontal .control-label{float:none;width:auto;padding-top:0;text-align:left;} .form-horizontal .controls{margin-left:0;} .form-horizontal .control-list{padding-top:0;} .form-horizontal .form-actions{padding-left:10px;padding-right:10px;} .media .pull-left,.media .pull-right{float:none;display:block;margin-bottom:10px;} .media-object{margin-right:0;margin-left:0;} .modal{top:10px;left:10px;right:10px;} .modal-header .close{padding:10px;margin:-10px;} .carousel-caption{position:static;}}@media (min-width:768px) and (max-width:979px){.row{margin-left:-20px;*zoom:1;}.row:before,.row:after{display:table;content:"";line-height:0;} .row:after{clear:both;} [class*="span"]{float:left;min-height:1px;margin-left:20px;} .container,.navbar-static-top .container,.navbar-fixed-top .container,.navbar-fixed-bottom .container{width:724px;} .span12{width:724px;} .span11{width:662px;} .span10{width:600px;} .span9{width:538px;} .span8{width:476px;} .span7{width:414px;} .span6{width:352px;} .span5{width:290px;} .span4{width:228px;} .span3{width:166px;} .span2{width:104px;} .span1{width:42px;} .offset12{margin-left:764px;} .offset11{margin-left:702px;} .offset10{margin-left:640px;} .offset9{margin-left:578px;} .offset8{margin-left:516px;} .offset7{margin-left:454px;} .offset6{margin-left:392px;} .offset5{margin-left:330px;} .offset4{margin-left:268px;} .offset3{margin-left:206px;} .offset2{margin-left:144px;} .offset1{margin-left:82px;} .row-fluid{width:100%;*zoom:1;}.row-fluid:before,.row-fluid:after{display:table;content:"";line-height:0;} .row-fluid:after{clear:both;} .row-fluid [class*="span"]{display:block;width:100%;min-height:30px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;float:left;margin-left:2.7624309392265194%;*margin-left:2.709239449864817%;} .row-fluid [class*="span"]:first-child{margin-left:0;} .row-fluid .controls-row [class*="span"]+[class*="span"]{margin-left:2.7624309392265194%;} .row-fluid .span12{width:100%;*width:99.94680851063829%;} .row-fluid .span11{width:91.43646408839778%;*width:91.38327259903608%;} .row-fluid .span10{width:82.87292817679558%;*width:82.81973668743387%;} .row-fluid .span9{width:74.30939226519337%;*width:74.25620077583166%;} .row-fluid .span8{width:65.74585635359117%;*width:65.69266486422946%;} .row-fluid .span7{width:57.18232044198895%;*width:57.12912895262725%;} .row-fluid .span6{width:48.61878453038674%;*width:48.56559304102504%;} .row-fluid .span5{width:40.05524861878453%;*width:40.00205712942283%;} .row-fluid .span4{width:31.491712707182323%;*width:31.43852121782062%;} .row-fluid .span3{width:22.92817679558011%;*width:22.87498530621841%;} .row-fluid .span2{width:14.3646408839779%;*width:14.311449394616199%;} .row-fluid .span1{width:5.801104972375691%;*width:5.747913483013988%;} .row-fluid .offset12{margin-left:105.52486187845304%;*margin-left:105.41847889972962%;} .row-fluid .offset12:first-child{margin-left:102.76243093922652%;*margin-left:102.6560479605031%;} .row-fluid .offset11{margin-left:96.96132596685082%;*margin-left:96.8549429881274%;} .row-fluid .offset11:first-child{margin-left:94.1988950276243%;*margin-left:94.09251204890089%;} .row-fluid .offset10{margin-left:88.39779005524862%;*margin-left:88.2914070765252%;} .row-fluid .offset10:first-child{margin-left:85.6353591160221%;*margin-left:85.52897613729868%;} .row-fluid .offset9{margin-left:79.8342541436464%;*margin-left:79.72787116492299%;} .row-fluid .offset9:first-child{margin-left:77.07182320441989%;*margin-left:76.96544022569647%;} .row-fluid .offset8{margin-left:71.2707182320442%;*margin-left:71.16433525332079%;} .row-fluid .offset8:first-child{margin-left:68.50828729281768%;*margin-left:68.40190431409427%;} .row-fluid .offset7{margin-left:62.70718232044199%;*margin-left:62.600799341718584%;} .row-fluid .offset7:first-child{margin-left:59.94475138121547%;*margin-left:59.838368402492065%;} .row-fluid .offset6{margin-left:54.14364640883978%;*margin-left:54.037263430116376%;} .row-fluid .offset6:first-child{margin-left:51.38121546961326%;*margin-left:51.27483249088986%;} .row-fluid .offset5{margin-left:45.58011049723757%;*margin-left:45.47372751851417%;} .row-fluid .offset5:first-child{margin-left:42.81767955801105%;*margin-left:42.71129657928765%;} .row-fluid .offset4{margin-left:37.01657458563536%;*margin-left:36.91019160691196%;} .row-fluid .offset4:first-child{margin-left:34.25414364640884%;*margin-left:34.14776066768544%;} .row-fluid .offset3{margin-left:28.45303867403315%;*margin-left:28.346655695309746%;} .row-fluid .offset3:first-child{margin-left:25.69060773480663%;*margin-left:25.584224756083227%;} .row-fluid .offset2{margin-left:19.88950276243094%;*margin-left:19.783119783707537%;} .row-fluid .offset2:first-child{margin-left:17.12707182320442%;*margin-left:17.02068884448102%;} .row-fluid .offset1{margin-left:11.32596685082873%;*margin-left:11.219583872105325%;} .row-fluid .offset1:first-child{margin-left:8.56353591160221%;*margin-left:8.457152932878806%;} input,textarea,.uneditable-input{margin-left:0;} .controls-row [class*="span"]+[class*="span"]{margin-left:20px;} input.span12, textarea.span12, .uneditable-input.span12{width:710px;} input.span11, textarea.span11, .uneditable-input.span11{width:648px;} input.span10, textarea.span10, .uneditable-input.span10{width:586px;} input.span9, textarea.span9, .uneditable-input.span9{width:524px;} input.span8, textarea.span8, .uneditable-input.span8{width:462px;} input.span7, textarea.span7, .uneditable-input.span7{width:400px;} input.span6, textarea.span6, .uneditable-input.span6{width:338px;} input.span5, textarea.span5, .uneditable-input.span5{width:276px;} input.span4, textarea.span4, .uneditable-input.span4{width:214px;} input.span3, textarea.span3, .uneditable-input.span3{width:152px;} input.span2, textarea.span2, .uneditable-input.span2{width:90px;} input.span1, textarea.span1, .uneditable-input.span1{width:28px;}}@media (min-width:1200px){.row{margin-left:-30px;*zoom:1;}.row:before,.row:after{display:table;content:"";line-height:0;} .row:after{clear:both;} [class*="span"]{float:left;min-height:1px;margin-left:30px;} .container,.navbar-static-top .container,.navbar-fixed-top .container,.navbar-fixed-bottom .container{width:1170px;} .span12{width:1170px;} .span11{width:1070px;} .span10{width:970px;} .span9{width:870px;} .span8{width:770px;} .span7{width:670px;} .span6{width:570px;} .span5{width:470px;} .span4{width:370px;} .span3{width:270px;} .span2{width:170px;} .span1{width:70px;} .offset12{margin-left:1230px;} .offset11{margin-left:1130px;} .offset10{margin-left:1030px;} .offset9{margin-left:930px;} .offset8{margin-left:830px;} .offset7{margin-left:730px;} .offset6{margin-left:630px;} .offset5{margin-left:530px;} .offset4{margin-left:430px;} .offset3{margin-left:330px;} .offset2{margin-left:230px;} .offset1{margin-left:130px;} .row-fluid{width:100%;*zoom:1;}.row-fluid:before,.row-fluid:after{display:table;content:"";line-height:0;} .row-fluid:after{clear:both;} .row-fluid [class*="span"]{display:block;width:100%;min-height:30px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;float:left;margin-left:2.564102564102564%;*margin-left:2.5109110747408616%;} .row-fluid [class*="span"]:first-child{margin-left:0;} .row-fluid .controls-row [class*="span"]+[class*="span"]{margin-left:2.564102564102564%;} .row-fluid .span12{width:100%;*width:99.94680851063829%;} .row-fluid .span11{width:91.45299145299145%;*width:91.39979996362975%;} .row-fluid .span10{width:82.90598290598291%;*width:82.8527914166212%;} .row-fluid .span9{width:74.35897435897436%;*width:74.30578286961266%;} .row-fluid .span8{width:65.81196581196582%;*width:65.75877432260411%;} .row-fluid .span7{width:57.26495726495726%;*width:57.21176577559556%;} .row-fluid .span6{width:48.717948717948715%;*width:48.664757228587014%;} .row-fluid .span5{width:40.17094017094017%;*width:40.11774868157847%;} .row-fluid .span4{width:31.623931623931625%;*width:31.570740134569924%;} .row-fluid .span3{width:23.076923076923077%;*width:23.023731587561375%;} .row-fluid .span2{width:14.52991452991453%;*width:14.476723040552828%;} .row-fluid .span1{width:5.982905982905983%;*width:5.929714493544281%;} .row-fluid .offset12{margin-left:105.12820512820512%;*margin-left:105.02182214948171%;} .row-fluid .offset12:first-child{margin-left:102.56410256410257%;*margin-left:102.45771958537915%;} .row-fluid .offset11{margin-left:96.58119658119658%;*margin-left:96.47481360247316%;} .row-fluid .offset11:first-child{margin-left:94.01709401709402%;*margin-left:93.91071103837061%;} .row-fluid .offset10{margin-left:88.03418803418803%;*margin-left:87.92780505546462%;} .row-fluid .offset10:first-child{margin-left:85.47008547008548%;*margin-left:85.36370249136206%;} .row-fluid .offset9{margin-left:79.48717948717949%;*margin-left:79.38079650845607%;} .row-fluid .offset9:first-child{margin-left:76.92307692307693%;*margin-left:76.81669394435352%;} .row-fluid .offset8{margin-left:70.94017094017094%;*margin-left:70.83378796144753%;} .row-fluid .offset8:first-child{margin-left:68.37606837606839%;*margin-left:68.26968539734497%;} .row-fluid .offset7{margin-left:62.393162393162385%;*margin-left:62.28677941443899%;} .row-fluid .offset7:first-child{margin-left:59.82905982905982%;*margin-left:59.72267685033642%;} .row-fluid .offset6{margin-left:53.84615384615384%;*margin-left:53.739770867430444%;} .row-fluid .offset6:first-child{margin-left:51.28205128205128%;*margin-left:51.175668303327875%;} .row-fluid .offset5{margin-left:45.299145299145295%;*margin-left:45.1927623204219%;} .row-fluid .offset5:first-child{margin-left:42.73504273504273%;*margin-left:42.62865975631933%;} .row-fluid .offset4{margin-left:36.75213675213675%;*margin-left:36.645753773413354%;} .row-fluid .offset4:first-child{margin-left:34.18803418803419%;*margin-left:34.081651209310785%;} .row-fluid .offset3{margin-left:28.205128205128204%;*margin-left:28.0987452264048%;} .row-fluid .offset3:first-child{margin-left:25.641025641025642%;*margin-left:25.53464266230224%;} .row-fluid .offset2{margin-left:19.65811965811966%;*margin-left:19.551736679396257%;} .row-fluid .offset2:first-child{margin-left:17.094017094017094%;*margin-left:16.98763411529369%;} .row-fluid .offset1{margin-left:11.11111111111111%;*margin-left:11.004728132387708%;} .row-fluid .offset1:first-child{margin-left:8.547008547008547%;*margin-left:8.440625568285142%;} input,textarea,.uneditable-input{margin-left:0;} .controls-row [class*="span"]+[class*="span"]{margin-left:30px;} input.span12, textarea.span12, .uneditable-input.span12{width:1156px;} input.span11, textarea.span11, .uneditable-input.span11{width:1056px;} input.span10, textarea.span10, .uneditable-input.span10{width:956px;} input.span9, textarea.span9, .uneditable-input.span9{width:856px;} input.span8, textarea.span8, .uneditable-input.span8{width:756px;} input.span7, textarea.span7, .uneditable-input.span7{width:656px;} input.span6, textarea.span6, .uneditable-input.span6{width:556px;} input.span5, textarea.span5, .uneditable-input.span5{width:456px;} input.span4, textarea.span4, .uneditable-input.span4{width:356px;} input.span3, textarea.span3, .uneditable-input.span3{width:256px;} input.span2, textarea.span2, .uneditable-input.span2{width:156px;} input.span1, textarea.span1, .uneditable-input.span1{width:56px;} .thumbnails{margin-left:-30px;} .thumbnails>li{margin-left:30px;} .row-fluid .thumbnails{margin-left:0;}}@media (max-width:979px){body{padding-top:0;} .navbar-fixed-top,.navbar-fixed-bottom{position:static;} .navbar-fixed-top{margin-bottom:20px;} .navbar-fixed-bottom{margin-top:20px;} .navbar-fixed-top .navbar-inner,.navbar-fixed-bottom .navbar-inner{padding:5px;} .navbar .container{width:auto;padding:0;} .navbar .brand{padding-left:10px;padding-right:10px;margin:0 0 0 -5px;} .nav-collapse{clear:both;} .nav-collapse .nav{float:none;margin:0 0 10px;} .nav-collapse .nav>li{float:none;} .nav-collapse .nav>li>a{margin-bottom:2px;} .nav-collapse .nav>.divider-vertical{display:none;} .nav-collapse .nav .nav-header{color:#777777;text-shadow:none;} .nav-collapse .nav>li>a,.nav-collapse .dropdown-menu a{padding:9px 15px;font-weight:bold;color:#777777;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;} .nav-collapse .btn{padding:4px 10px 4px;font-weight:normal;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;} .nav-collapse .dropdown-menu li+li a{margin-bottom:2px;} .nav-collapse .nav>li>a:hover,.nav-collapse .dropdown-menu a:hover{background-color:#f2f2f2;} .navbar-inverse .nav-collapse .nav>li>a,.navbar-inverse .nav-collapse .dropdown-menu a{color:#999999;} .navbar-inverse .nav-collapse .nav>li>a:hover,.navbar-inverse .nav-collapse .dropdown-menu a:hover{background-color:#111111;} .nav-collapse.in .btn-group{margin-top:5px;padding:0;} .nav-collapse .dropdown-menu{position:static;top:auto;left:auto;float:none;display:none;max-width:none;margin:0 15px;padding:0;background-color:transparent;border:none;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;} .nav-collapse .open>.dropdown-menu{display:block;} .nav-collapse .dropdown-menu:before,.nav-collapse .dropdown-menu:after{display:none;} .nav-collapse .dropdown-menu .divider{display:none;} .nav-collapse .nav>li>.dropdown-menu:before,.nav-collapse .nav>li>.dropdown-menu:after{display:none;} .nav-collapse .navbar-form,.nav-collapse .navbar-search{float:none;padding:10px 15px;margin:10px 0;border-top:1px solid #f2f2f2;border-bottom:1px solid #f2f2f2;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.1);-moz-box-shadow:inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.1);box-shadow:inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.1);} .navbar-inverse .nav-collapse .navbar-form,.navbar-inverse .nav-collapse .navbar-search{border-top-color:#111111;border-bottom-color:#111111;} .navbar .nav-collapse .nav.pull-right{float:none;margin-left:0;} .nav-collapse,.nav-collapse.collapse{overflow:hidden;height:0;} .navbar .btn-navbar{display:block;} .navbar-static .navbar-inner{padding-left:10px;padding-right:10px;}}@media (min-width:980px){.nav-collapse.collapse{height:auto !important;overflow:visible !important;}} |
| URL | http://zero.webappsecurity.com/resources/css/font-awesome.css |
| Method | GET |
| Parameter | |
| Attack | Origin: http://4qCMHsQq.com |
| Evidence | Access-Control-Allow-Origin: * |
| Request Header - size: 333 bytes. |
GET http://zero.webappsecurity.com/resources/css/font-awesome.css HTTP/1.1
Host: zero.webappsecurity.com User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0 Pragma: no-cache Cache-Control: no-cache Referer: http://zero.webappsecurity.com Origin: http://4qCMHsQq.com Content-Length: 0 |
| Request Body - size: 0 bytes. |
|
| Response Header - size: 347 bytes. |
HTTP/1.1 200 OK
Date: Mon, 14 Mar 2022 07:23:14 GMT Server: Apache-Coyote/1.1 Access-Control-Allow-Origin: * Accept-Ranges: bytes ETag: W/"21752-1360580252000" Last-Modified: Mon, 11 Feb 2013 10:57:32 GMT Cache-Control: max-age=2678400 Expires: Thu, 14 Apr 2022 07:23:15 GMT Content-Type: text/css;charset=UTF-8 Content-Length: 21752 |
| Response Body - size: 21,752 bytes. |
/*!
* Font Awesome 3.0.2 * the iconic font designed for use with Twitter Bootstrap * ------------------------------------------------------- * The full suite of pictographic icons, examples, and documentation * can be found at: http://fortawesome.github.com/Font-Awesome/ * * License * ------------------------------------------------------- * - The Font Awesome font is licensed under the SIL Open Font License - http://scripts.sil.org/OFL * - Font Awesome CSS, LESS, and SASS files are licensed under the MIT License - * http://opensource.org/licenses/mit-license.html * - The Font Awesome pictograms are licensed under the CC BY 3.0 License - http://creativecommons.org/licenses/by/3.0/ * - Attribution is no longer required in Font Awesome 3.0, but much appreciated: * "Font Awesome by Dave Gandy - http://fortawesome.github.com/Font-Awesome" * Contact * ------------------------------------------------------- * Email: dave@davegandy.com * Twitter: http://twitter.com/fortaweso_me * Work: Lead Product Designer @ http://kyruus.com */ @font-face { font-family: 'FontAwesome'; src: url('../font/fontawesome-webfont.eot?v=3.0.1'); src: url('../font/fontawesome-webfont.eot?#iefix&v=3.0.1') format('embedded-opentype'), url('../font/fontawesome-webfont.woff?v=3.0.1') format('woff'), url('../font/fontawesome-webfont.ttf?v=3.0.1') format('truetype'); font-weight: normal; font-style: normal; } /* Font Awesome styles ------------------------------------------------------- */ [class^="icon-"], [class*=" icon-"] { font-family: FontAwesome; font-weight: normal; font-style: normal; text-decoration: inherit; -webkit-font-smoothing: antialiased; /* sprites.less reset */ display: inline; width: auto; height: auto; line-height: normal; vertical-align: baseline; background-image: none; background-position: 0% 0%; background-repeat: repeat; margin-top: 0; } /* more sprites.less reset */ .icon-white, .nav-pills > .active > a > [class^="icon-"], .nav-pills > .active > a > [class*=" icon-"], .nav-list > .active > a > [class^="icon-"], .nav-list > .active > a > [class*=" icon-"], .navbar-inverse .nav > .active > a > [class^="icon-"], .navbar-inverse .nav > .active > a > [class*=" icon-"], .dropdown-menu > li > a:hover > [class^="icon-"], .dropdown-menu > li > a:hover > [class*=" icon-"], .dropdown-menu > .active > a > [class^="icon-"], .dropdown-menu > .active > a > [class*=" icon-"], .dropdown-submenu:hover > a > [class^="icon-"], .dropdown-submenu:hover > a > [class*=" icon-"] { background-image: none; } [class^="icon-"]:before, [class*=" icon-"]:before { text-decoration: inherit; display: inline-block; speak: none; } /* makes sure icons active on rollover in links */ a [class^="icon-"], a [class*=" icon-"] { display: inline-block; } /* makes the font 33% larger relative to the icon container */ .icon-large:before { vertical-align: -10%; font-size: 1.3333333333333333em; } .btn [class^="icon-"], .nav [class^="icon-"], .btn [class*=" icon-"], .nav [class*=" icon-"] { display: inline; /* keeps button heights with and without icons the same */ } .btn [class^="icon-"].icon-large, .nav [class^="icon-"].icon-large, .btn [class*=" icon-"].icon-large, .nav [class*=" icon-"].icon-large { line-height: .9em; } .btn [class^="icon-"].icon-spin, .nav [class^="icon-"].icon-spin, .btn [class*=" icon-"].icon-spin, .nav [class*=" icon-"].icon-spin { display: inline-block; } .nav-tabs [class^="icon-"], .nav-pills [class^="icon-"], .nav-tabs [class*=" icon-"], .nav-pills [class*=" icon-"] { /* keeps button heights with and without icons the same */ } .nav-tabs [class^="icon-"], .nav-pills [class^="icon-"], .nav-tabs [class*=" icon-"], .nav-pills [class*=" icon-"], .nav-tabs [class^="icon-"].icon-large, .nav-pills [class^="icon-"].icon-large, .nav-tabs [class*=" icon-"].icon-large, .nav-pills [class*=" icon-"].icon-large { line-height: .9em; } li [class^="icon-"], .nav li [class^="icon-"], li [class*=" icon-"], .nav li [class*=" icon-"] { display: inline-block; width: 1.25em; text-align: center; } li [class^="icon-"].icon-large, .nav li [class^="icon-"].icon-large, li [class*=" icon-"].icon-large, .nav li [class*=" icon-"].icon-large { /* increased font size for icon-large */ width: 1.5625em; } ul.icons { list-style-type: none; text-indent: -0.75em; } ul.icons li [class^="icon-"], ul.icons li [class*=" icon-"] { width: .75em; } .icon-muted { color: #eeeeee; } .icon-border { border: solid 1px #eeeeee; padding: .2em .25em .15em; -webkit-border-radius: 3px; -moz-border-radius: 3px; border-radius: 3px; } .icon-2x { font-size: 2em; } .icon-2x.icon-border { border-width: 2px; -webkit-border-radius: 4px; -moz-border-radius: 4px; border-radius: 4px; } .icon-3x { font-size: 3em; } .icon-3x.icon-border { border-width: 3px; -webkit-border-radius: 5px; -moz-border-radius: 5px; border-radius: 5px; } .icon-4x { font-size: 4em; } .icon-4x.icon-border { border-width: 4px; -webkit-border-radius: 6px; -moz-border-radius: 6px; border-radius: 6px; } .pull-right { float: right; } .pull-left { float: left; } [class^="icon-"].pull-left, [class*=" icon-"].pull-left { margin-right: .3em; } [class^="icon-"].pull-right, [class*=" icon-"].pull-right { margin-left: .3em; } .btn [class^="icon-"].pull-left.icon-2x, .btn [class*=" icon-"].pull-left.icon-2x, .btn [class^="icon-"].pull-right.icon-2x, .btn [class*=" icon-"].pull-right.icon-2x { margin-top: .18em; } .btn [class^="icon-"].icon-spin.icon-large, .btn [class*=" icon-"].icon-spin.icon-large { line-height: .8em; } .btn.btn-small [class^="icon-"].pull-left.icon-2x, .btn.btn-small [class*=" icon-"].pull-left.icon-2x, .btn.btn-small [class^="icon-"].pull-right.icon-2x, .btn.btn-small [class*=" icon-"].pull-right.icon-2x { margin-top: .25em; } .btn.btn-large [class^="icon-"], .btn.btn-large [class*=" icon-"] { margin-top: 0; } .btn.btn-large [class^="icon-"].pull-left.icon-2x, .btn.btn-large [class*=" icon-"].pull-left.icon-2x, .btn.btn-large [class^="icon-"].pull-right.icon-2x, .btn.btn-large [class*=" icon-"].pull-right.icon-2x { margin-top: .05em; } .btn.btn-large [class^="icon-"].pull-left.icon-2x, .btn.btn-large [class*=" icon-"].pull-left.icon-2x { margin-right: .2em; } .btn.btn-large [class^="icon-"].pull-right.icon-2x, .btn.btn-large [class*=" icon-"].pull-right.icon-2x { margin-left: .2em; } .icon-spin { display: inline-block; -moz-animation: spin 2s infinite linear; -o-animation: spin 2s infinite linear; -webkit-animation: spin 2s infinite linear; animation: spin 2s infinite linear; } @-moz-keyframes spin { 0% { -moz-transform: rotate(0deg); } 100% { -moz-transform: rotate(359deg); } } @-webkit-keyframes spin { 0% { -webkit-transform: rotate(0deg); } 100% { -webkit-transform: rotate(359deg); } } @-o-keyframes spin { 0% { -o-transform: rotate(0deg); } 100% { -o-transform: rotate(359deg); } } @-ms-keyframes spin { 0% { -ms-transform: rotate(0deg); } 100% { -ms-transform: rotate(359deg); } } @keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(359deg); } } @-moz-document url-prefix() { .icon-spin { height: .9em; } .btn .icon-spin { height: auto; } .icon-spin.icon-large { height: 1.25em; } .btn .icon-spin.icon-large { height: .75em; } } /* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen readers do not read off random characters that represent icons */ .icon-glass:before { content: "\f000"; } .icon-music:before { content: "\f001"; } .icon-search:before { content: "\f002"; } .icon-envelope:before { content: "\f003"; } .icon-heart:before { content: "\f004"; } .icon-star:before { content: "\f005"; } .icon-star-empty:before { content: "\f006"; } .icon-user:before { content: "\f007"; } .icon-film:before { content: "\f008"; } .icon-th-large:before { content: "\f009"; } .icon-th:before { content: "\f00a"; } .icon-th-list:before { content: "\f00b"; } .icon-ok:before { content: "\f00c"; } .icon-remove:before { content: "\f00d"; } .icon-zoom-in:before { content: "\f00e"; } .icon-zoom-out:before { content: "\f010"; } .icon-off:before { content: "\f011"; } .icon-signal:before { content: "\f012"; } .icon-cog:before { content: "\f013"; } .icon-trash:before { content: "\f014"; } .icon-home:before { content: "\f015"; } .icon-file:before { content: "\f016"; } .icon-time:before { content: "\f017"; } .icon-road:before { content: "\f018"; } .icon-download-alt:before { content: "\f019"; } .icon-download:before { content: "\f01a"; } .icon-upload:before { content: "\f01b"; } .icon-inbox:before { content: "\f01c"; } .icon-play-circle:before { content: "\f01d"; } .icon-repeat:before { content: "\f01e"; } /* \f020 doesn't work in Safari. all shifted one down */ .icon-refresh:before { content: "\f021"; } .icon-list-alt:before { content: "\f022"; } .icon-lock:before { content: "\f023"; } .icon-flag:before { content: "\f024"; } .icon-headphones:before { content: "\f025"; } .icon-volume-off:before { content: "\f026"; } .icon-volume-down:before { content: "\f027"; } .icon-volume-up:before { content: "\f028"; } .icon-qrcode:before { content: "\f029"; } .icon-barcode:before { content: "\f02a"; } .icon-tag:before { content: "\f02b"; } .icon-tags:before { content: "\f02c"; } .icon-book:before { content: "\f02d"; } .icon-bookmark:before { content: "\f02e"; } .icon-print:before { content: "\f02f"; } .icon-camera:before { content: "\f030"; } .icon-font:before { content: "\f031"; } .icon-bold:before { content: "\f032"; } .icon-italic:before { content: "\f033"; } .icon-text-height:before { content: "\f034"; } .icon-text-width:before { content: "\f035"; } .icon-align-left:before { content: "\f036"; } .icon-align-center:before { content: "\f037"; } .icon-align-right:before { content: "\f038"; } .icon-align-justify:before { content: "\f039"; } .icon-list:before { content: "\f03a"; } .icon-indent-left:before { content: "\f03b"; } .icon-indent-right:before { content: "\f03c"; } .icon-facetime-video:before { content: "\f03d"; } .icon-picture:before { content: "\f03e"; } .icon-pencil:before { content: "\f040"; } .icon-map-marker:before { content: "\f041"; } .icon-adjust:before { content: "\f042"; } .icon-tint:before { content: "\f043"; } .icon-edit:before { content: "\f044"; } .icon-share:before { content: "\f045"; } .icon-check:before { content: "\f046"; } .icon-move:before { content: "\f047"; } .icon-step-backward:before { content: "\f048"; } .icon-fast-backward:before { content: "\f049"; } .icon-backward:before { content: "\f04a"; } .icon-play:before { content: "\f04b"; } .icon-pause:before { content: "\f04c"; } .icon-stop:before { content: "\f04d"; } .icon-forward:before { content: "\f04e"; } .icon-fast-forward:before { content: "\f050"; } .icon-step-forward:before { content: "\f051"; } .icon-eject:before { content: "\f052"; } .icon-chevron-left:before { content: "\f053"; } .icon-chevron-right:before { content: "\f054"; } .icon-plus-sign:before { content: "\f055"; } .icon-minus-sign:before { content: "\f056"; } .icon-remove-sign:before { content: "\f057"; } .icon-ok-sign:before { content: "\f058"; } .icon-question-sign:before { content: "\f059"; } .icon-info-sign:before { content: "\f05a"; } .icon-screenshot:before { content: "\f05b"; } .icon-remove-circle:before { content: "\f05c"; } .icon-ok-circle:before { content: "\f05d"; } .icon-ban-circle:before { content: "\f05e"; } .icon-arrow-left:before { content: "\f060"; } .icon-arrow-right:before { content: "\f061"; } .icon-arrow-up:before { content: "\f062"; } .icon-arrow-down:before { content: "\f063"; } .icon-share-alt:before { content: "\f064"; } .icon-resize-full:before { content: "\f065"; } .icon-resize-small:before { content: "\f066"; } .icon-plus:before { content: "\f067"; } .icon-minus:before { content: "\f068"; } .icon-asterisk:before { content: "\f069"; } .icon-exclamation-sign:before { content: "\f06a"; } .icon-gift:before { content: "\f06b"; } .icon-leaf:before { content: "\f06c"; } .icon-fire:before { content: "\f06d"; } .icon-eye-open:before { content: "\f06e"; } .icon-eye-close:before { content: "\f070"; } .icon-warning-sign:before { content: "\f071"; } .icon-plane:before { content: "\f072"; } .icon-calendar:before { content: "\f073"; } .icon-random:before { content: "\f074"; } .icon-comment:before { content: "\f075"; } .icon-magnet:before { content: "\f076"; } .icon-chevron-up:before { content: "\f077"; } .icon-chevron-down:before { content: "\f078"; } .icon-retweet:before { content: "\f079"; } .icon-shopping-cart:before { content: "\f07a"; } .icon-folder-close:before { content: "\f07b"; } .icon-folder-open:before { content: "\f07c"; } .icon-resize-vertical:before { content: "\f07d"; } .icon-resize-horizontal:before { content: "\f07e"; } .icon-bar-chart:before { content: "\f080"; } .icon-twitter-sign:before { content: "\f081"; } .icon-facebook-sign:before { content: "\f082"; } .icon-camera-retro:before { content: "\f083"; } .icon-key:before { content: "\f084"; } .icon-cogs:before { content: "\f085"; } .icon-comments:before { content: "\f086"; } .icon-thumbs-up:before { content: "\f087"; } .icon-thumbs-down:before { content: "\f088"; } .icon-star-half:before { content: "\f089"; } .icon-heart-empty:before { content: "\f08a"; } .icon-signout:before { content: "\f08b"; } .icon-linkedin-sign:before { content: "\f08c"; } .icon-pushpin:before { content: "\f08d"; } .icon-external-link:before { content: "\f08e"; } .icon-signin:before { content: "\f090"; } .icon-trophy:before { content: "\f091"; } .icon-github-sign:before { content: "\f092"; } .icon-upload-alt:before { content: "\f093"; } .icon-lemon:before { content: "\f094"; } .icon-phone:before { content: "\f095"; } .icon-check-empty:before { content: "\f096"; } .icon-bookmark-empty:before { content: "\f097"; } .icon-phone-sign:before { content: "\f098"; } .icon-twitter:before { content: "\f099"; } .icon-facebook:before { content: "\f09a"; } .icon-github:before { content: "\f09b"; } .icon-unlock:before { content: "\f09c"; } .icon-credit-card:before { content: "\f09d"; } .icon-rss:before { content: "\f09e"; } .icon-hdd:before { content: "\f0a0"; } .icon-bullhorn:before { content: "\f0a1"; } .icon-bell:before { content: "\f0a2"; } .icon-certificate:before { content: "\f0a3"; } .icon-hand-right:before { content: "\f0a4"; } .icon-hand-left:before { content: "\f0a5"; } .icon-hand-up:before { content: "\f0a6"; } .icon-hand-down:before { content: "\f0a7"; } .icon-circle-arrow-left:before { content: "\f0a8"; } .icon-circle-arrow-right:before { content: "\f0a9"; } .icon-circle-arrow-up:before { content: "\f0aa"; } .icon-circle-arrow-down:before { content: "\f0ab"; } .icon-globe:before { content: "\f0ac"; } .icon-wrench:before { content: "\f0ad"; } .icon-tasks:before { content: "\f0ae"; } .icon-filter:before { content: "\f0b0"; } .icon-briefcase:before { content: "\f0b1"; } .icon-fullscreen:before { content: "\f0b2"; } .icon-group:before { content: "\f0c0"; } .icon-link:before { content: "\f0c1"; } .icon-cloud:before { content: "\f0c2"; } .icon-beaker:before { content: "\f0c3"; } .icon-cut:before { content: "\f0c4"; } .icon-copy:before { content: "\f0c5"; } .icon-paper-clip:before { content: "\f0c6"; } .icon-save:before { content: "\f0c7"; } .icon-sign-blank:before { content: "\f0c8"; } .icon-reorder:before { content: "\f0c9"; } .icon-list-ul:before { content: "\f0ca"; } .icon-list-ol:before { content: "\f0cb"; } .icon-strikethrough:before { content: "\f0cc"; } .icon-underline:before { content: "\f0cd"; } .icon-table:before { content: "\f0ce"; } .icon-magic:before { content: "\f0d0"; } .icon-truck:before { content: "\f0d1"; } .icon-pinterest:before { content: "\f0d2"; } .icon-pinterest-sign:before { content: "\f0d3"; } .icon-google-plus-sign:before { content: "\f0d4"; } .icon-google-plus:before { content: "\f0d5"; } .icon-money:before { content: "\f0d6"; } .icon-caret-down:before { content: "\f0d7"; } .icon-caret-up:before { content: "\f0d8"; } .icon-caret-left:before { content: "\f0d9"; } .icon-caret-right:before { content: "\f0da"; } .icon-columns:before { content: "\f0db"; } .icon-sort:before { content: "\f0dc"; } .icon-sort-down:before { content: "\f0dd"; } .icon-sort-up:before { content: "\f0de"; } .icon-envelope-alt:before { content: "\f0e0"; } .icon-linkedin:before { content: "\f0e1"; } .icon-undo:before { content: "\f0e2"; } .icon-legal:before { content: "\f0e3"; } .icon-dashboard:before { content: "\f0e4"; } .icon-comment-alt:before { content: "\f0e5"; } .icon-comments-alt:before { content: "\f0e6"; } .icon-bolt:before { content: "\f0e7"; } .icon-sitemap:before { content: "\f0e8"; } .icon-umbrella:before { content: "\f0e9"; } .icon-paste:before { content: "\f0ea"; } .icon-lightbulb:before { content: "\f0eb"; } .icon-exchange:before { content: "\f0ec"; } .icon-cloud-download:before { content: "\f0ed"; } .icon-cloud-upload:before { content: "\f0ee"; } .icon-user-md:before { content: "\f0f0"; } .icon-stethoscope:before { content: "\f0f1"; } .icon-suitcase:before { content: "\f0f2"; } .icon-bell-alt:before { content: "\f0f3"; } .icon-coffee:before { content: "\f0f4"; } .icon-food:before { content: "\f0f5"; } .icon-file-alt:before { content: "\f0f6"; } .icon-building:before { content: "\f0f7"; } .icon-hospital:before { content: "\f0f8"; } .icon-ambulance:before { content: "\f0f9"; } .icon-medkit:before { content: "\f0fa"; } .icon-fighter-jet:before { content: "\f0fb"; } .icon-beer:before { content: "\f0fc"; } .icon-h-sign:before { content: "\f0fd"; } .icon-plus-sign-alt:before { content: "\f0fe"; } .icon-double-angle-left:before { content: "\f100"; } .icon-double-angle-right:before { content: "\f101"; } .icon-double-angle-up:before { content: "\f102"; } .icon-double-angle-down:before { content: "\f103"; } .icon-angle-left:before { content: "\f104"; } .icon-angle-right:before { content: "\f105"; } .icon-angle-up:before { content: "\f106"; } .icon-angle-down:before { content: "\f107"; } .icon-desktop:before { content: "\f108"; } .icon-laptop:before { content: "\f109"; } .icon-tablet:before { content: "\f10a"; } .icon-mobile-phone:before { content: "\f10b"; } .icon-circle-blank:before { content: "\f10c"; } .icon-quote-left:before { content: "\f10d"; } .icon-quote-right:before { content: "\f10e"; } .icon-spinner:before { content: "\f110"; } .icon-circle:before { content: "\f111"; } .icon-reply:before { content: "\f112"; } .icon-github-alt:before { content: "\f113"; } .icon-folder-close-alt:before { content: "\f114"; } .icon-folder-open-alt:before { content: "\f115"; } |
| URL | http://zero.webappsecurity.com/resources/css/main.css |
| Method | GET |
| Parameter | |
| Attack | Origin: http://4qCMHsQq.com |
| Evidence | Access-Control-Allow-Origin: * |
| Request Header - size: 325 bytes. |
GET http://zero.webappsecurity.com/resources/css/main.css HTTP/1.1
Host: zero.webappsecurity.com User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0 Pragma: no-cache Cache-Control: no-cache Referer: http://zero.webappsecurity.com Origin: http://4qCMHsQq.com Content-Length: 0 |
| Request Body - size: 0 bytes. |
|
| Response Header - size: 347 bytes. |
HTTP/1.1 200 OK
Date: Mon, 14 Mar 2022 07:23:16 GMT Server: Apache-Coyote/1.1 Access-Control-Allow-Origin: * Accept-Ranges: bytes ETag: W/"15037-1360116138000" Last-Modified: Wed, 06 Feb 2013 02:02:18 GMT Cache-Control: max-age=2678400 Expires: Thu, 14 Apr 2022 07:23:16 GMT Content-Type: text/css;charset=UTF-8 Content-Length: 15037 |
| Response Body - size: 15,037 bytes. |
.btn-info {
background-color: #0098D8 } /**************************************** Menu top ***************************************/ .top-menu divider-vertical { height: 57px; } .top-menu .navbar-search { margin-top: 14px; } .top-menu .label { margin-top: 14px; } .top-menu .nav > li > a { padding: 18px 10px; } .dropdown a.btn { color: #ffffff; } .dropdown .modal-footer { padding: 7px 15px; } .dropdown-menu .modal-body a { padding: 3px 0px; float: left; clear: none; } .dropdown-menu a.link-modal { padding: 3px 23px 3px 0; float: left; color: #4572a7; } .dropdown-menu a.link-modal:hover { color: #4572a7; text-decoration: none; } .navbar .bar-root { margin-top: 10px; } .navbar .bar-root .dropdown-menu a { color: #999; } .navbar .bar-root .dropdown-menu a:hover { background: #222; } .navbar .bar-root .dropdown-menu img { border: 1px solid #888; margin-right: 4px; } .navbar .bar-root .label { position: relative; top: -9px; } /*#####################################################################*/ body, html { height: 100%; } .wrapper { min-height: 100%; height: auto !important; margin: 0 auto -121px; } .push { height: 147px; } /*#####################################################################*/ div.item img { width: 940px; height: 401px; } /*#####################################################################*/ .content { padding: 40px 60px 40px 60px; min-height: 100%; } /*#####################################################################*/ .row.divider:last-child { margin-bottom: 40px; border: none; } .row-divider { border: none; margin: 10px 0 21px; border-bottom: 1px dotted #0098D8; } .content-divider { margin-bottom : 10px; margin-top : 10px; border: none; border-bottom: 1px solid #0098D8; -webkit-box-shadow: inset 0 16px 8px -20px rgba(0, 0, 0, 0.4); -moz-box-shadow: inset 0 15px 8px -20px rgba(0, 0, 0, 0.4); -webkit-mask-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0), black 20%, black 80%, rgba(0, 0, 0, 0) 100%); -moz-mask-image: -moz-linear-gradient(left, rgba(0, 0, 0, 0), black 20%, black 80%, rgba(0, 0, 0, 0) 100%); } /*#####################################################################*/ #nav { margin-bottom: .5em; } #nav > #pages-nav { padding: 0; margin: 0; border-top: 1px solid #A1A1A1; } #nav > #pages-nav > li { position: relative; top: -1px; float: left; padding: 0 40px 0 0; margin: 0; list-style: none; border-top: 1px solid #A1A1A1; } #nav > #pages-nav > li:last-child { padding-right: 0; } #nav > #pages-nav > li > a { position: relative; top: -1px; display: block; padding: 15px 5px 5px; color: #888; text-transform: uppercase; border-top: 1px solid transparent; cursor: pointer; } #nav > #pages-nav > li > a:hover, #nav > #pages-nav > li.dropdown.open > a { color: #0098D8; text-decoration: none; border-top-color: #0098D8; border-top-width: 1px; } #nav > #pages-nav > li.active a { padding-top: 12px; top: -2px; color: #0098D8; border-top-color: #0098D8; border-top-width: 4px; } #nav > #pages-nav > li > a > .caret { position: relative; top: -2px; margin-left: .5em; } #nav .dropdown-menu a:hover { background-color: #0098D8; } #nav .dropdown-menu > li > a { padding: 6px 12px; } #nav .dropdown-menu i { margin-right: .5em; font-size: 14px; } #nav .dropdown-menu::before { content: ''; display: inline-block; border-left: 7px solid transparent; border-right: 7px solid transparent; border-bottom: 7px solid #CCC; border-bottom-color: rgba(0, 0, 0, 0.2); position: absolute; top: -7px; left: 9px; } #nav .dropdown-menu::after { content: ''; display: inline-block; border-left: 6px solid transparent; border-right: 6px solid transparent; border-bottom: 6px solid white; position: absolute; top: -6px; left: 10px; } /*#####################################################################*/ #welcome { padding-left: 90px; text-align: center; } /*#####################################################################*/ i.icon, .slash, i.icon-middle { margin-right: 5px; color: #0098D8; font-size: 18px; line-height: 18px; } i.icon-middle { font-size: 20px; margin-right: 10px; line-height: 30px; } /**************************************** Footer ***************************************/ .footer { margin-top: 0; line-height: 12px; border-top: 1px solid #292929; } .footer-inner { padding: 15px 0; font-size: 12px; background: #111; color: #999; } .footer a { color: #999; } .footer a:hover { color: #FFF; text-decoration: none; } .extra { border-top: 1px solid #E5E5E5; background-color: whiteSmoke; } .extra-inner { padding: 20px 0; font-size: 11px; } .extra span { color: #666; cursor: pointer; } .extra h4 { margin-bottom: 1em; font-weight: 400; } .extra ul { padding: 0; margin: 0; } .extra li { margin-bottom: .6em; list-style: none; } /***********************************************************/ .hero-home { background: url('../img/online_banking_hero.jpg') no-repeat; color: #0082D8; position: relative; } .hero-home p { color: #0082D8; } .large-btn:hover, .large-btn:active, .large-btn.active { background-color: #5BB900; } .large-btn { font-size: 24px; padding: 12px 32px; font-weight: bold; margin-top: 15px; background: #65C31F; color: white; border-color: #57AF17; font-weight: bold; } .text-shadow { text-shadow: 1px 2px 5px black; } .btn.text-shadow { text-shadow: 2px 1px 1px black; } .feature-description { border-radius: 15px; padding: 15px; position: relative; background: #383838; } .margin15 { margin-bottom: 15px } .margin7top { margin-top: 7px } .margin20top { margin-top: 20px } a.actions { padding: 4px 9px!important; border: 2px solid #A1A1A1; border-radius: 4px; font-size: 11px; line-height: 1; margin-left: 20px; text-transform: uppercase; margin-top: 10px } .accordion-heading { background-color: whiteSmoke; } .footer.fixed { position: fixed; bottom: 0; right: 0; left: 0; } .carousel-caption.custom { top: 0; width: 200px; background-color: rgba(0, 0, 0, 0.8) } .item > img { margin-left: 230px; } .carousel-control.custom.left,.carousel-control.custom.right { font-family: 'Helvetica Neue', Helvetica,Arial, sans-serif; background: white; border: none; color: #2F96B4; top: 50%; } .carousel-control.custom.left { left: -50px; } .carousel-control.custom.right { right: -50px; } .button-large { font-size: 20px; padding: 20px 50px 20px 50px; } .carousel-btn,.hero-btn { position: absolute; border-radius: 15px } .carousel-btn { bottom: 80px; left: 27px; } .hero-btn { right: 130px; top:35%; } .signin-controls input { padding: 8px 15px 8px 50px; background-color: #FDFDFD; width: 255px; display: block; margin: 0; box-shadow: inset 0 0 2px rgba(47, 150, 252, 0.8) } input.login { background: url(../img/user_login.png) no-repeat; } input.password { background: url(../img/password_login.png) no-repeat; } .account_summary th { color: #AFAFAF; } .account_summary tbody tr:last-of-type{ background-color: rgba(3, 152, 252, 0.1); } .account_summary .activities { text-decoration: underline; } span.headers, span.link { cursor: pointer; color: #333; } span.link { color: #08C; text-decoration: underline; } #account_summary .accordion-toggle { text-decoration: none; } .top_offset { padding-top: 70px; padding-bottom: 20px; } div.pictured { position: relative; } div.pictured i { position: absolute; top: 1px; left: 1px; font-size: 18px; background-color: #E5F2FE; padding-left: 13px; padding-right: 13px; box-shadow: inset 0 0 2px rgba(47, 150, 252, 0.8); border-top-left-radius: 2px; border-bottom-left-radius: 2px; padding-bottom: 7px; padding-top: 7px; color: #2F96FC; width: 16px; height: 22px; } div.pictured textarea { box-shadow: inset 0 0 2px rgba(47, 150, 252, 0.8); } hr.wide { margin-bottom: 30px; margin-top: 30px; } /* Sidenav for Docs -------------------------------------------------- */ .bs-docs-sidenav { width: 228px; margin: 30px 0 0; padding: 0; background-color: #fff; -webkit-border-radius: 6px; -moz-border-radius: 6px; border-radius: 6px; -webkit-box-shadow: 0 1px 4px rgba(0,0,0,.065); -moz-box-shadow: 0 1px 4px rgba(0,0,0,.065); box-shadow: 0 1px 4px rgba(0,0,0,.065); } .bs-docs-sidenav > li > a { display: block; *width: 190px; margin: 0 0 -1px; padding: 8px 14px; border: 1px solid #e5e5e5; } .bs-docs-sidenav > li:first-child > a { -webkit-border-radius: 6px 6px 0 0; -moz-border-radius: 6px 6px 0 0; border-radius: 6px 6px 0 0; } .bs-docs-sidenav > li:last-child > a { -webkit-border-radius: 0 0 6px 6px; -moz-border-radius: 0 0 6px 6px; border-radius: 0 0 6px 6px; } .bs-docs-sidenav > .active > a { position: relative; z-index: 2; padding: 9px 15px; border: 0; text-shadow: 0 1px 0 rgba(0,0,0,.15); -webkit-box-shadow: inset 1px 0 0 rgba(0,0,0,.1), inset -1px 0 0 rgba(0,0,0,.1); -moz-box-shadow: inset 1px 0 0 rgba(0,0,0,.1), inset -1px 0 0 rgba(0,0,0,.1); box-shadow: inset 1px 0 0 rgba(0,0,0,.1), inset -1px 0 0 rgba(0,0,0,.1); } /* Chevrons */ .bs-docs-sidenav .icon-chevron-right { float: right; margin-top: 2px; margin-right: -6px; opacity: .25; } .bs-docs-sidenav > li > a:hover { background-color: #f5f5f5; } .bs-docs-sidenav.affix { top: 90px; } .bs-docs-sidenav.affix-bottom { position: absolute; top: auto; bottom: 270px; } /* Responsive -------------------------------------------------- */ /* Desktop large ------------------------- */ @media (min-width: 1200px) { .bs-docs-container { max-width: 970px; } .bs-docs-sidenav { width: 258px; } } hr.gray-dotted { border-bottom: 1px dotted #D9D9D9; } .blog { padding-right: 30px; } .blog > div { padding-left: 10px; } .blog p.date { text-align: right; padding-right: 10px; } button.signin { margin-right: 5px; border-radius: 20px } button.signin > i { padding-right: 10px; } .accordion-inner form { margin-bottom: 0px; } .board { background: white; padding: 3px; box-shadow: rgba(0, 0, 0, 0.3) 0 1px 3px; margin-bottom: 25px; -webkit-border-top-right-radius: 4px; -webkit-border-bottom-right-radius: 4px; -webkit-border-bottom-left-radius: 4px; -webkit-border-top-left-radius: 4px; moz-border-radius-topright: 4px; -moz-border-radius-bottomright: 4px; -moz-border-radius-bottomleft: 4px; -moz-border-radius-topleft: 4px; border-radius: 4px 4px 4px 4px; -moz-background-clip: padding; -webkit-background-clip: padding-box; background-clip: padding-box; } .board-content { display: block; height: 100%; -webkit-border-top-right-radius: 3px; -webkit-border-bottom-right-radius: 3px; -webkit-border-bottom-left-radius: 3px; -webkit-border-top-left-radius: 3px; moz-border-radius-topright: 3px; -moz-border-radius-bottomright: 3px; -moz-border-radius-bottomleft: 3px; -moz-border-radius-topleft: 3px; border-radius: 3px 3px 3px 3px; -moz-background-clip: padding; -webkit-background-clip: padding-box; background-clip: padding-box; background: #F3F3F3; background: #F3F3F3; background: -webkit-gradient(linear, left top, left bottom, from(#FBFBFB), to(#F3F3F3)); background: -moz-linear-gradient(top, #FBFBFB, #F3F3F3); } h2.board-header { font-weight: normal; letter-spacing: -1px; padding: 5px 10px; margin: 0; text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.2); font-size: 24px; line-height: 36px; } .board .table { margin-bottom: 0; border-collapse: collapse; border-spacing: 0; } .board .table th, .board .table td { font-size: 12px; padding: 5px 20px; font-weight: bold; border-bottom: 1px solid #DEDEDE; } .board .table thead th { vertical-align: bottom; } .board .table td { border-bottom: 1px solid #DEDEDE; border-top: 1px solid white; padding: 5px 20px; text-shadow: 0px 1px 1px white; } .board-content .control-group { margin: 0px; padding-top: 10px; padding-bottom: 10px; } .board-content hr { margin: 0; } article form { margin-bottom: 0 } #nav > #pages-nav > li.active div { padding-top: 12px; top: -2px; color: #0098D8; border-top-color: #0098D8; border-top-width: 4px; text-decoration: none; } #nav > #pages-nav > li > div { position: relative; top: -1px; display: block; padding: 15px 5px 5px; color: #888; text-transform: uppercase; border-top: 1px solid transparent; cursor: pointer; text-decoration: none; } .number { margin-top: 6px; width: 40px; height: 40px; font-size: 28px; font-weight: 600; text-align: center; line-height: 40px; color: white; background: #08C; border: 3px solid white; box-shadow: 1px 1px 3px rgba(0, 0, 0, .4); border-radius: 40px; text-shadow: 1px 1px 2px rgba(0, 0, 0, .4); } ol.questions > li { padding-bottom: 12px; font-size: 15px } div.disclaimer { border: 1px dashed #0098D8; margin-top: 10px; padding: 10px; } @media (max-width:979px) { button.signin { margin-left: 15px; border-radius: 20px!important; } } @media (max-width: 260px) { .nav.float-right { float: left!important; } } @media (min-width: 261px) { .nav.float-right { float: right!important; } } |
| URL | http://zero.webappsecurity.com/resources/img |
| Method | GET |
| Parameter | |
| Attack | Origin: http://4qCMHsQq.com |
| Evidence | Access-Control-Allow-Origin: * |
| Request Header - size: 316 bytes. |
GET http://zero.webappsecurity.com/resources/img HTTP/1.1
Host: zero.webappsecurity.com User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0 Pragma: no-cache Cache-Control: no-cache Referer: http://zero.webappsecurity.com Origin: http://4qCMHsQq.com Content-Length: 0 |
| Request Body - size: 0 bytes. |
|
| Response Header - size: 267 bytes. |
HTTP/1.1 404 Not Found
Date: Mon, 14 Mar 2022 07:23:16 GMT Server: Apache-Coyote/1.1 Access-Control-Allow-Origin: * Cache-Control: no-cache, max-age=0, must-revalidate, no-store Content-Type: text/html;charset=utf-8 Content-Language: en Content-Length: 949 |
| Response Body - size: 949 bytes. |
<html><head><title>Apache Tomcat/7.0.70 - Error report</title><style><!--H1 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:22px;} H2 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:16px;} H3 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:14px;} BODY {font-family:Tahoma,Arial,sans-serif;color:black;background-color:white;} B {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;} P {font-family:Tahoma,Arial,sans-serif;background:white;color:black;font-size:12px;}A {color : black;}A.name {color : black;}HR {color : #525D76;}--></style> </head><body><h1>HTTP Status 404 - </h1><HR size="1" noshade="noshade"><p><b>type</b> Status report</p><p><b>message</b> <u></u></p><p><b>description</b> <u>The requested resource is not available.</u></p><HR size="1" noshade="noshade"><h3>Apache Tomcat/7.0.70</h3></body></html>
|
| URL | http://zero.webappsecurity.com/resources/img/main_carousel_1.jpg |
| Method | GET |
| Parameter | |
| Attack | Origin: http://4qCMHsQq.com |
| Evidence | Access-Control-Allow-Origin: * |
| Request Header - size: 336 bytes. |
GET http://zero.webappsecurity.com/resources/img/main_carousel_1.jpg HTTP/1.1
Host: zero.webappsecurity.com User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0 Pragma: no-cache Cache-Control: no-cache Referer: http://zero.webappsecurity.com Origin: http://4qCMHsQq.com Content-Length: 0 |
| Request Body - size: 0 bytes. |
|
| Response Header - size: 349 bytes. |
HTTP/1.1 200 OK
Date: Mon, 14 Mar 2022 07:23:16 GMT Server: Apache-Coyote/1.1 Access-Control-Allow-Origin: * Accept-Ranges: bytes ETag: W/"78506-1358497020000" Last-Modified: Fri, 18 Jan 2013 08:17:00 GMT Cache-Control: max-age=2678400 Expires: Thu, 14 Apr 2022 07:23:16 GMT Content-Type: image/jpeg;charset=UTF-8 Content-Length: 78506 |
| Response Body - size: 78,506 bytes. |
����JFIFHH���ExifMM*V^(1f2x�i��HHPaint.NET v3.5.102013:01:16 15:54:06������(HH��XICC_PROFILEHLinomntrRGB XYZ � 1acspMSFTIEC sRGB���-HP cprtP3desc�lwtpt�bkptrXYZgXYZ,bXYZ@dmndTpdmdd��vuedL�view�$lumi�meas$tech0rTRC<gTRC<bTRC<textCopyright (c) 1998 Hewlett-Packard CompanydescsRGB IEC61966-2.1sRGB IEC61966-2.1XYZ �Q�XYZ XYZ o�8��XYZ b����XYZ $����descIEC http://www.iec.chIEC http://www.iec.chdesc.IEC 61966-2.1 Default RGB colour space - sRGB.IEC 61966-2.1 Default RGB colour space - sRGBdesc,Reference Viewing Condition in IEC61966-2.1,Reference Viewing Condition in IEC61966-2.1view��_.���\�XYZ L VPW�meas�sig CRT curv
#(-27;@EJOTY^chmrw|������������������������� %+28>ELRY`gnu|����������������&/8AKT]gqz������������!-8COZfr~���������� -;HUcq~��������� +:IXgw��������'7HYj{�������+=Oat�������2FZn������� % : O d y � � � � � � ' = T j � � � � � �"9Qi������*C\u����� & @ Z t � � � � �.Id���� %A^z���� &Ca~����1Om����&Ed����#Cc����'Ij����4Vx���&Il����Ae����@e���� Ek���*Qw���;c���*R{���Gp���@j���>i��� A l � � �!!H!u!�!�!�"'"U"�"�"�# #8#f#�#�#�$$M$|$�$�% %8%h%�%�%�&'&W&�&�&�''I'z'�'�( (?(q(�(�))8)k)�)�**5*h*�*�++6+i+�+�,,9,n,�,�--A-v-�-�..L.�.�.�/$/Z/�/�/�050l0�0�11J1�1�1�2*2c2�2�3 3F33�3�4+4e4�4�55M5�5�5�676r6�6�7$7`7�7�88P8�8�99B99�9�:6:t:�:�;-;k;�;�<'<e<�<�="=a=�=�> >`>�>�?!?a?�?�@#@d@�@�A)AjA�A�B0BrB�B�C:C}C�DDGD�D�EEUE�E�F"FgF�F�G5G{G�HHKH�H�IIcI�I�J7J}J�KKSK�K�L*LrL�MMJM�M�N%NnN�OOIO�O�P'PqP�QQPQ�Q�R1R|R�SS_S�S�TBT�T�U(UuU�VV\V�V�WDW�W�X/X}X�YYiY�ZZVZ�Z�[E[�[�\5\�\�]']x]�^^l^�__a_�``W`�`�aOa�a�bIb�b�cCc�c�d@d�d�e=e�e�f=f�f�g=g�g�h?h�h�iCi�i�jHj�j�kOk�k�lWl�mm`m�nnkn�ooxo�p+p�p�q:q�q�rKr�ss]s�ttpt�u(u�u�v>v�v�wVw�xxnx�y*y�y�zFz�{{c{�|!|�|�}A}�~~b~�#��G��� �k�͂0����W�������G����r�ׇ;����i�Ή3�����d�ʋ0�����c�ʍ1�����f�Ώ6����n�֑?����z��M��� �����_�ɖ4��� �u���L���$�����h�՛B��������d�Ҟ@��������i�ءG���&����v��V�ǥ8��������n��R�ĩ7�������u��\�ЭD���-�������u��`�ֲK�³8���%�������y��h��Y�ѹJ�º;���.���!������ �����z���p���g���_���X���Q���K���F���Aǿ�=ȼ�:ɹ�8ʷ�6˶�5̵�5͵�6ζ�7ϸ�9к�<Ѿ�?���D���I���N���U���\���d���l���v��ۀ�܊�ݖ�ޢ�)߯�6��D���S���c���s���� ����2��F���[���p������(��@���X���r������4���P���m��������8���W���w����)���K���m����C ��C ����"�� ���}!1AQa"q2���#B��R��$3br� %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz��������������������������������������������������������������������������� ���w!1AQaq"2�B���� #3R�br� $4�%�&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz��������������������������������������������������������������������������?�@! ���Zi,��Lch�N�p{�PNp[�<�+�>�B?�1?��N+��F@�����c��Ɯ �\CHcW$�<�p �����$�>a�zR�X9=x‸|���3ҜC)����<GjS�ۜ��qh!J�>`I>�����SK������q��ߚv��G��R(��>��?���B�Ӱ l$��4�@y�($�=x�.�r� �Ѡ b08 ޔ�6�������8\6y4#a ��s�5�8PKB)�m���@#;O$��i� �2#�-І�z��z�R��ќ����҅S�H��Q��F���Jh �����Ü�f��#'<�zU0�7$�;s�p�8��Ф�@�ا ����@ � |�\R��8��rT} I'q>�����4HF:�Ҳ��=s�֑�(���N�0i�p"�lz|ݿ�T�p;����F1��-ר)Î1�~��b<�?o��:Hb/#��I��oNh�l�=�i�㞹�: �RF�}Xz�t��:�S��zt�d�+��q֩�FN0;�)AVǠ�"@��iO ��=�c����H�?x�<�Ib� m��2N#���ov������ .{f��{�������A���$�P�&s���sA�Q�GR3(�N�9���8��ʒ��R�H�s�R�u���.�`g�#�Q`BH��M�ހ���w��z�S�p�P�=F�3בJ9���ў0{�E<�x��S����h>�<P�'��� �!z�)�9� �q֫��Q�ǽZn��֫���*����r:~��21�O8�*u��Қ�K?T�)�A9�L���G_ZIRNFOAH:���X}OZV�tn}1H��I��Zv�' ��[��+��4��O,� �t�$.y �J����������S���`.v知7,=z�W@p� ��X0<�t>b@휊]�����$d�\u�Rw��NO�曼c9ڇ��C$��=��z�݆H�nS��Mg,�,z�z�B��q���ub�c�x�}� ��ɎA��u�1���*��8�<u�~���.6�℅�f� �8�^j9�Xӊ�tS-�:����J������ԅ�\� ��݅�G�j����$��lVE��g��Z�r�q�֚�P���j���_���~�R�v�ޕF]P������X���ӕX���9>��_S��} =듸�P��CҠ:��y���J�W�G\u���{S�PR>�=돋Q�-�j�j8��Ga�%; �����%��\rh7Y\���ڹ�}��|��OK��v�9�ީO�-� �pv�O�$W�N�u�(��ޔ�y� 0'?��K��p�:X5�<���r��O�k���Vp3�v�Zг�P�C����m����r:�'�ֶ,��~��\���������J�FI$��Zɐ���V�9�$c�}��b�9<�ƴ ��n;�ֶM2.^PX��c�O#��l�������=����{�N��&8�՛uFp��N2Ek�I�w���H�r0:Ri3E#N���SK��=j��I��\ҩ�܀A㿭dՍ�Lv7b�ߜ3Bp��/cM�w ��=�!�`�V'g!{b�1�r2Ojq ���1O��*�ri8 ��s�qϷjk� �q�s�L�99S�4rs�8�ϥ-�������CҐ}nj�?����b�<u�魍ŏ������s��1�Qڐa������t���!v�Ӝt�H�t�~����1�;�H�3�G�1�{�����>� �#��Mn8�'-�!���d�ڍ��#*;��C��/�Fs�=(Pq�3�^���9��n��lҡIJi��$�4�����77N��� qܓޓ\�y�⇰��n�x��9�r� !@FGB)A88$��B�8�c� r�R��G$})O�=8�� ��g�Jw|�r8� ���4��+DZ�O�@wd��&�3�4�K>�=idž?/^�ҋ��B��ւG�?��+����)�u���$sM�p�H��I�r2��gh�ԛ�Ie�J6�����3#y��Ҝ����~=i��˞Grx���b ��)ÚnpNq�aG�!䀁�9�����}=)s��nH���n�V �88����rz��RrF1��@��}OaN�8��,{�9�8)��ǭ/ dsD&J���My�����B�.@bZT���j��/���֣ld�'�z�h�y�#8�:��@�h�'��+��ߍLQG^�y��9��1I�a�n�\�4���:ZU��@�✤�I����$ �=8�oL6I⃟^��)q끞M?QvF:���c���RP��Ӟ���OnƤ!A'�/]�#ʢ���'=�7t�2?<�*\�U���w����A���Wg�n�F~^�4�v0H#����r���r��J[�A����U|��RJkL�Ϲ�u��\��#�+�c����R2����<����j}����[9#v4��q��#�Us�pzdҬ�$u���� �a����$c'#��Y�pc�EX�� 21O�.串�i�N��?�z�_r���`Ա7<~4�QXp�e���9��Ո�N���Ӝ����S��e:1'(G�Ud����[�1�_�S��G�J���i!?)�#�{Pzᶞ:Ջ�0��9\pz�'���;U\v����q�9=�iT���#4�s�i�����}�K ���Z{�9�x�8,H횧��46x��:f��s�ǿz\��};�Ԁj��?�)8�o����I�qHa��"�����ps�c� ����g�I�� v8RyFO���)41�R��:h�$(\v��cr�j!t����sYsY�Cn@c��M]�;A����k��r����mPGL}*ԯ����%wm�1���g�O�Sk�����ڡ��R?��櫙6G�6��OJ�5K�Vtbx� ���x$�+����fÓ���\�diʺ���v�0x�`�:��F���j-j�pb��\��z��{��)&�:f����O�N�CY7:�%�y�לV%��6T9�3ҳn��q�>�!ݝ���<��2i �w��\�H�ZL��7�SqV���^�`c*=^��fq��N{�5��O e�v��Zذr�9���՜���3�#=;T���p��7OB~� µ,!ڤ����r���n�������*\���#��1Z��>���#�W��\A�?J��r�7͓���ZW�s��{w�t$�$��#��<q�ߠ��@��i��y�;Mt:f�0� �3���#MU�s�5�eⅆA��}8��6�"Qv=�O��1�Z��� ���:��9���7#>j�ӼihG�F� [�����=cD��Fя¸k/��0�u��VFO���ҴU������5� I���z�+�:�g�s��➗��`=*��z���'�=q֠��C)�lUv��P=*A8` b =0hn�,���s����<� �X�g��M �s��R�4�x��G�qN�9�G�!h7N}��J��?�R��1���P�#�a6O��8�R���v����@��� �X�'��H�#�J@ f`A�)�v�m9��ñ!H<�SX��S�ZB�.z��HGF=� 2�t�)�y<dz�'�����G�1�s�����<p8���A �#�8�n�/# 暤6�ӚZH��IR>���1�z{R���:�[C���7qp��<m4tA �C��0=i�rs��F���})T.:Κ~`}OO�8c'�*S�2�r:z�/���\�FpO~�~P8��Zjf8� �L9�<����ѻ�)�X�[�=F� �h' �H ��N$m��"�����X`��<��z88�on��r�H��4�*��g��8�Q��,y����O=}iۈ �A�����r���ZO��n��.тI�>��A`O���J\�`�4['�%���9�H98#�>�(��rI��9�x���N���ߡ�I�1���F =3�;�1�7 A���lT������y���R���(N;�����A��=1֗��O�52��?�<��t���Ln2�й���Ɵ�@������s�C*�$w��=3��sۮE6.��^���c��sMl!�e�����zVv��w����đ�@�w#�1��Q��(2q��������UFH=��O'ˀ@Ǡ�Ck��s������3ޠi��z~���8�$�*�D�(np~n��/��ǎ~��p'��D�(�du�u Q,�pq���4����G`j��nݸ����#78�Y:�娲y���ǧ�?ˀ:s�Z ��n�P�J�s1l���uIiW���L�>�?JF��2����m�\�@ �Ԃ+RM�Ѐ;�m�7�"�B�!}F+f*�4�EӶx5͜�9�$tǥm!&��8� |���L��s��8��f�O��n*�п�Tc#ҳuj�Z�i����I��� 9�^!��q9�i�e�W�}*f��\�dq�ږ;�V*��T<�g�H�sMVSb��H'�z֕��L���$�+g�Z6.p��\k܇L��^�1�5r�'�j³�rW�Z6gp�O��l�" $�~3������j��R7x�3�����'�5���RT5$�A3�f�\�6��4�0���N8�M�EْA9��T��8�����ppED�Crx�r�@���C8S��5.G(��� ��J������R���{��3�2ke+�Z>H���E�c�zps���&A8�q�~������P��u�?x��vy����r <�jZ��u ;���yu�F}�X�e�{�W=����F:b���RWu|�gc�qUS@9n=z�\���a�[�ֱ.u�V�ϡ��GU�A�X�;=O$|�ȭ�WvFH�Ҽ��Y��I_z贽P˸j�U��Gp���r뚂k���l�1'�b�8$dq��n��d>[��<v�C5{X�#�!�-q^#բ�~|Vf��0$>���rڞ��6<�`�=kI�CH���u s��:sڹ��%���g��w�N�$<�z������ta�9�Z&�#�O. ����&��c�G�z��]���*#3�9z�H�#��.vY�O�:0GJ�\���˭6�D��Tg��Y��!�)����9��p�9[R:�23��J��6H�=�Ixfe,���~ubѲ����T��;�o�cH�� ּD+`�\���@F�W�I�E�ʲ�І����Ε�U����y�CqӯJ�K�@�\�����s�L�[`l�y��/���=O��g��*r�<՛.��"PN};�U95�a����"�[�ӹo(na�������n���As�[��Y�$zVu��m���y9�R���}����'i�=ET�P��n]H� �^�=�������W����?���Y3PrA5�xs�I) r#�:f�=<��;����]�Ɇ��A��M�D:q�z����įᗞ�z�Wb�9��J�=,�Y�����2V��$l��.��\�tBVv;K]O��ןzճ�V!��au�b3��3��5��ީ�H�#�\g��*�a�����MY�q�'���K[�@���z�Q�nq���T�-#Y~���+~�9'��E�&3��J~�T�������`�m�چ�ۏ9�n0�~��q�с��N�'?@)�~l��� 1�0bs��Z^CCH����R�w-�'4r1Ȥ~sӧ^���Wzp9��H��Oa�J��8�!<g�꾔i�����i��8��� ��\�i?7aޒ�08��) z�oj:� ����ZN�`bN3�AH�끞��=�\ӆ��7~i0Þzf�5P�jq8B�4�[��lQmCr�y �>�ԣ"NXr8��bI�ܑ��Zr�pq�դ@2�pO�0)�9�c�10T�;�{w��+��~�/ �I#�_�@q�Fi�>Ps���R��N��@1C3�p��7)���ѷ�I�q���?��� �FrA��(t�B�b��ɥQ����� đ�qߧz\���S_s73�Әd��;`�^~�i�F3��J��1���ƀ�c�f�+�����8\��(e��qO�<�F^��c8�}:Q���OZQ�)_���0 �)��� �r3J��iF��)�z�8��r�s�L.�-����9ɤ$��s�>�6�bL�c�R���#���S0��#�=1B.�s�ƞ��BE���qۊq㩦�`.��Mvڤg��`$`��k�#��ب���=�#ˀ�'�z�Jð�|�=}Gj�wn���R�c���;㩧���� ��A�Us�����������U� �u���;w6y'�`+ U��N��{T.�v�Ǟj���N8� KH�'��v�%P��V���B2�d��[:b�6��"��m��eTt����@*3یQ�D�c"=&20���J��(T2����o�`�zV��@ v�2uˮ���⤏Oh�r����j)-�$�hpA����;� Ւ���ҵ�>��\S��r�s�ڧ�9��]i�[G务�!S��8��[sj���To�B�`篭e(#X�9 �G$�q֡6�I%>��tm�QԚ��%�yȬyQ��rKq��W9�U|�e �pO_A[s@P�O�:~5D�W� fᦃL�d�U���>��o�Q���O�Q�3�=}j�� �Oֲ��ZW6�ۨYD�pA���>��g��H ^;��VX�U��~F���C�98�ZF�V��6�ծѓ����'�[x��Es�\ʄ-�inu ��A�bj���N�������>+��zs����j�>c9S랕f;� �9Q�}*c�w�n����� �)��+�Ny��;�5��~fa�8�5?��w���j�Z�R�[i��H9���@�*pN�`)���I��T2p��X0/�iS��3֫���@�V{��z�Jw�5mi��$t�.����EYR�H�S�!�q��x�A�]Q��p �ָ�N� �{�W�1�á'��|JH����V]M��;ķ�+n�k�7�$�|��@�5����\��_3r��H�ef��w: >�#]��y��RI�\+9 ���L.03�1��+ �B�GN=)-:����eʜp{�u�����02:ֳ�i��c�2*��Y��\�g'��i���\�X_ݩ�G�:)����L��qҺ�:�;����H��.x���Rw�ᴋfE,~W2:~u�m �0����i�4XhrA�#�1���a�'��7t �S�Ԓ<�[V��U�f;���s[��~�V���[��@Rب��!=:V���rrIɩk����9t%����#b2�z��*��x�W��s��G+��ߊ�ul�Q*�ȩq9k�!FR8�MP��p������B�i#��x�W���8愣'b�Ι�u��ꎥr�w3v��k���@~�q'�Bh�S��z�5j�k}M;��/�\�ֳo��Ơ�As�9��I[���GJ�F�e;���pi�[M+�0X�ƺ=;C�t��O����QC�Y8��{T��7A��H�U9��Ҽ:c s���Y��v3��oF5���1eF8<�^Rv!���xp0�=+V���J�.v�Oм5�5���M.�~�c�济���ϡ�x9cP����=m�`S��W��(��Q�{W#�F�:�ڳ�O�R�.c��*U%��ҭi��I0���\,[���VZ�F�K�`��;i������r8�miWa��O=~��:^�$�j� ��C� P���Ш�fl��z ��b��ԓWbq��G<��t۰ʿ0q�k[�G�I�:v������&�$��敉��8��T��BaX.9�^�'�9�$���C�=y�y�,���Y��c#�ooƢk�;RuP�j����8���RN1�:���z�I��k�c�O�In5�e#>��cJ0N++�rF;�Tm�bBK�����,k�A8��Lc�uzVO������=��^��a���Yl�f�57ez�w��Y��lu�5N�xlS�S��mw�=�D����0`���(��#=�$r�/l�:Ո��>S���j���G\����kr~W =*�٣`Fz�8��8�����1s"�<s���� ũ���8<��zRJ�8''"��!N7Oh�Xs��>_�K&2�ךNI۟��V�ăړn�#�q�˓�Z[�� ����$�jdm���<S�$��ҝ�+�8�t�c��M �$�sK��<�ҁs�qڜ3�ױ���3� �7sC%�#��:�ql��=x���nj�8�X��P�1�� �~���?�5����: y�I�zP����9b~��c�i����8�)$�}����qc��8��#0�y����c�=sN�e?.=�Z����T@[��=(R ^��;rǥ@A�o�J��3�?R0����e` ���Q�!��`ݏ�@�d���9#�#���8'�)Tg���S-!���Tѫ�'�ӭ�?�'�CV�2w��Nk L,D0.^��I;r?K�x�� j{x�������J%arI#Js�1P;�:V��=3�r)Y&㎆�1��gp8�F�RL�� j�^C��ӽDВ���R���<G]�#?Z���n�q��M��`��+f�E��A>��cds�ݗ6$s�jUq�O�Uن�֫^Α�}+}-����y�j32n���Eަc��|��:�x;�Y�j���Wi �;Z���1�����#�TRꀜ�${Vni��3j��3Ԩ�U9dV ǩ�w��2;����w5�����b�o$t�j�� ��t"��^s��Pel z��\I�'#�8�i$e�뎽*�D��A�5���M2�N;��$���ћ��C�:u�qx�[�㚃W�t,eM��z�'��c~�#Ҹ''{#��;k+ĕb� ���וZx��;�1|���4mad(��n��i95�\�R� ��j��"2����E�DT�q�梑ö�I�V����2� ]�b��X�9��(�ӵ�\�c֭��(,����@�#��pz�U��r�Ϻ�g!�x�j�m�+���M������'ץXI���8��;i�lքNpT��ס��s�״�##'���_��!}��[b���d�h;��Z���i���9���U�L��t�z��`d�nj+�\)'8�v�*��;�:�����H�p#���=�����#�1X����I!����8�}����4�W<s��9���+!-�B��Z��G����m�;��S�ML��4��j�oR��E��,�`��5WP��`C�ˎ}A�Co jE��s�To�?��'Npy5<����6�D�Ha�w��+�c��'��xoXi �=�Ӵ��e�ԏn�|���4tX$� ��rq]&�h2��{~�am2��;� t1�" ���h�]L�Z `��B��VN��O�[i{ֆ�8�H`3��¹�nu.�*��bH�!��c���M�4�Y� �,k��gQ)S&H�ɬͬ��i�1��l�;I���#��S�Ce}5�c����m�s��(^8'֝����u�g.~`?�X�]a-ٺv�svw�GȕH�hԵy]v�\���݁[\���'�ps��#Z���`�9����G|��NՏ�@ +eO͚��ݜM�O�?�=�5!,����� t�5���9p���R�X���r:��h�?2^��:u�c�x��趸���Q+�;�VjU"�����ksM���Sv��²Z�(�{�:�Ӑ���Fzҍ6��]���B����]n�kH���{�ô�>\`�'���5x� �C�We8#�l� M��l��Q�J<'?�UV�S��H�Oz�}w ��|��+f݈�P ��<���Z�Ƅ�;��\F#%��ץyg���t�m峀=+����I#����eǙ���珮�IrDg OZ���5�]�������������a�֢�)�k��BQH�/���<��ӟ�Ú�u�95�Z6�s�<M�c����ZNc����5�VJ.撚h�}#S��ٵԷ�<�\e�Sā��g5� � +�9��c����:���F�=)�|���zW?-�T&#���TV����ܑ��K�]Վ��{���f� �3+��ұooYb,��w�5�����G��d�,,tk��&��)��e�X�u�Yy�j�؝�"��hgX���>c����1�P��T�Ĭ<�}��Q]��'-�����z\i<گά�����=���~c�q��� }LF>�`���T���?�3��?i+ ����l?7�S��˂7s��߽y����A�;�4 q��`/�jY���m�0e��g�.�_J�{?��*�9�kgLח$����4C�=_O�^��l��h�=��|9�+>D�ד]U��DX�S[�Ů�mXy�d�a��@ ���H����z�qϮA랢��1U�Q�)��Q�<``�R@m鎸�9�;�>��LCI �7\�B��I�����.I��8�1�x$��v�\����3��pzr8�����l��L�t�;89'�2=)���pۥ�{���� a��3�R��`�{�K�Gz�r�H�(@8`)�s�4�ـ�(\�6�JP2{n����|�tR�\�c��h?|��#+��9��� ���.3����h�.��9��2h�}zd}�SOp21N�[�^ԤrGO�S2O>��` YN;�J8�q�:��֜���D̓���d�*�͓�u#�K9��y<�k������fˊ#�?��5n�c��Vr6��=�oi�� �<g5�)ݚX�m21��8�(��;y8�S;AL��=�n�z�rz�t@aL�r9�p,9����x�Ud��?�jn4�4c��{�#�[����f늣`��9���c���AU9��Ҝ�23���Tў�����X�9�(�(��sZ8{Ws�x��0�)�s�^���J�2zc=�e\Z�\�����3T�,G{"�2��u���)��u��BI�cY�Gr3g�No�j���Mp�Y�s�Wf�E� ǵ4r�q��Y�HQ�r:Vm�5H�`!���4*}}qW�{��:w譲6���S˨�e��3`w"�X�N�r=kz+M�ALm=���'�>N��T��C�c��̖��9�֕m���Wۯ��6�'h���*���1m��>�r�ωH��8�M���'�����H9=�9Lj���99���<���%L��$W��$��oq^��@�H��θ[f*O�H��2��~�e)YXᡷ.0 '��[�Pc'4��/�i�+K]��)<�����,d$�Ԏ l��H==}Nk"*��;��KN_߀���Qz؉msb��#�S��J� �W�tD����We1�* ��I���S��UC�0@��r�\�Nx9>��x���@�CQ;� zڰ�lˋ�z w2��>�֤.J�3�?�bY��>�����eFx��f�KF9628�m8��x��q��1�<��~�~�Qcw �bR��2�ή�Q�l��Y�#dq�+���'���?�ڴc�P2��8�� ��խs?e�����r�LqS�l��ߊǵ���sܠNx�^��I�1��-随m�.:�I�XBye��u�"�p@Q����[��Ϟ��k9<chee�H���4���l��o�Y$��qҲ�4�$����Z�?��yH�Y���om�?�����H��Ze�4��A(�x'=��8�Y7�:���$r8�Ao�Ms�x$��/���}��:)$�Q�{U�*�A16��S[��L��.�x���e2�Dr3��s����#�6���}�*?�9�qz��&�c�L-����9�s)�whe� �z`~5J��%F��$in�Ȼx=2+J���k#�kk�Z�mt*�~Rɨ����g9=k��EQhsU�鲫[ȼ���*$�~G �s��=��0ǑT�0��&�Q��l��;p�q���b�9�8��� y��%S�������v�F%�J���"���>���:�<Vuź���8�*Fh�� e_Y[�N%/���b�9�-K�Ǘל�)5 �_�9�9���HT��0A�:�h�B��@�p)�X.�7K�J2��`�H�]����H�w��Y��KL�0 iA1++�zJ��Z�Fh��b�<S�5QT �X�uML�6C�G_zͺ���O��Zr�z '��g����U}s��X��M� �&��_/���9��WWFbl�c������=f��JF�s�Է!����l��>���$Ɍ�:⢻�V�z&�w�y�Zʺ�������8��=j�#��#�q�ָh~!i���kkJ���V7 d�j��E���t_�(�(Q�;t���N�D�+�1�P�|]�^H�+ȉ>��>���0<��}�����vg6���T��vc�&�)e]����]�� �!q��9<�F�n\?*r����*��s>�sev�������v6��+ԯP� S�zs��?Y�31t�Ã^n'���oJ��g*�?�X�Ӝ��K�c��֔�$@ ���g�H�0T��+ϕ9Eꎕ$�-_(̬H#�1X�`�S���sQ�jo8' ��ԙ��X�J��w�W���� ���5[�Ls�7V*^�ϒG9�K5ˑ�bG\��}j�-��.K�*\�)�n���syw1 �z�6�!|��H�֛�� �{M�oa�mM���H$p9�*�v��\6s�u��m?RVa�/�ٱ�C��'=)I4=�O<d7��_d�e�=*�2۴d���j9%�I�x��P�[���xgڠ���m3LUB@ �i�H�+�kZ�X�nNq��JSvW)���\�r�PqZ ��0��]�ET�D��<�{SnfE����"�4�d'��kp $��0p:R��@'��J�U��8�ђv����}a�aS��ӷj~v�E^O�M�x���o$u���@�R ��>���s��@�W�Jhm�g<t���A��3M��ȥ��ǿzQ�rr<qK�XR�H��ZO�I ӾE�ŏRA�c�dz�S�ʐ7�&��3�{Ҩ�˔�qN#-��0)� �v����A�I��4&9��<{SI$���9�M_c���Mb������Zi�`�g?JOa�wd���<ԉ�C�:�*$Uc�Ҥ���*��L@��'�>��r}ǿ_�����Bz��r8'�v��)�:��c���# �©�EI��@^k:�b[���к�8��f���\d���ןC�бa'�_�;z�E�1�=z��4�L����X#UB8�k�l�#b�GJ��P���bb�z}*��w��n�լ��������Ҫ��x+>�匸��I�0$>�ֹeQ7cU �H�U��5�铒����Y��ܧ<���A��(���[S���Jz\뭟 ����) {v��+�H����5BCg�+���Q5�J���X�̨J�}*��7'$t�P�d�^ry�ۻ���R��I�� �W�Z��� �Iu�� eN��Qv4�KC��XdgwLV��H��z�l&Q���=i��]g!}��j.��}I .>qש�@+� k��r0�r:Uv����O~��F͢N3��5n(A�o qX�W�0H'=�Z����T]̤�b]C��I����(X�N8��sX���yd������g^�(���zλբ(Ap1�U}R'ÞA�=���z�-J�lu�$ڭИ�Sׯ8�[�̇���*�q�����V�fm�<ם6��Έ�f[Z(��'�T�[�J�s�k2$+��Y�,�w=��PՑ�ԥ�hn�=��I����Ay,aO# s�⪵ϗ��s��PN�%���]:t�n.�c��k���,0�6��^ǭt��(�_j��F���k����� ��9j;>$�n���aF #�Vr��f����;'�G���0���s�X�2��֬[9�A$:��d�_-٣��ۤ�.H���r�6Ռ��wQ@#<@�Es�6�$��g�i��g@�(�rWv�8��RI�^��-��W;��^��ҙ� .U��¯��C����8�:�kɥ��'#j��ڥڨv�$u���\����(H�X��ާ�M��ȍ��/�fa��L�[r�we�8�*Ar���u���ڲ�|�%Ȓ@Kuԥ���:��dr)�=j���"H�9��2�Yd_����NO�j������`b��q8\�֭��#��'��}�R�zWmu�l�z��0̀��;S�{ J�5�[\'��)s"q������}�M��A�J˰��#����uJlVOBm3^���4ș7J���mP� �B8q�^yr�%�� I�-/I�8����a��ɣ)�n���Z"�i�")*2�^k��Ios��=����<+!�O�!�{ה�F�6ws:�*���ⶋt�E�dYU���E:���1��t�q�@�Ι0��p���)��g$��{p��x����x�3�������v��`��Ҙ֎e�y�Wmt�q�)$~�IY�N�5渇�J����������d����m�(��Fx���B�pX��CVav֥�3���ԛ G�x��D˳,A����7�p�3�+99�/֯«Nԗ� �z�N4�����~ ��䈘���V嶹p�6g�#�v�)�F��l'$+\��<��uR�$��8���������R��t���$�'9��?�)@7sҮ����-�nrA��[�]��sr[��1����ƛI�^�zV�����@��� �G��6;)����*E����x��(@�zV���yev��9zͼ�d��X�zR{��<�P���!$t��A��P_�rFk�m<,�1��� $g����#�J�4��v��R}u��4 уF ~�k�<8����̠����G��X��FT��T�nZ����J�^K[��Z;t�գ�8����_Ƴo~!�Z���n�x� ���������r;0�_�j��$hNpGC�V��8��j�%����.�1��[�^U��$^%��`�BI� ^��^�Ą%I8�O��J���?ҦmO[�(r�BY�Vn�dXe�Rs�+�𦷭�b�x�]�&��W��2��J�2�(�b��_V�q!Vlc��s ���]��b&��22+��ų�s��Ƽ괜� �s cĘ�4�"F '��Z���}�N��d{��?±�5HøO'�1���}�>���]A0��Zroʶ�`��!��|�zr5�m~�R�׃֫���s�LԂ�Ɲ����sV=T���q�j_��y��ְ�)��qޘ�B�L�n�ܤ·�Q�1��`���W��oPT���u88�����~��S��hβ��Q�����=p8y�|��"�v���q�d a�t'�J"��JTz+7J-頛���`}��鞴�rWvx�Ԃ0���گZB�=O<W�J��ͱJ4� ���S%��p>��ͭ�d���ո�@�>�V/��0��p!�Rǥ�m�1��ޕ����z��ݙ����&��f 觜�z�R'o<�3�l���(ܤd�A�f� �2���Sƒ��\n�\V�W��T��wqϭ)b�����C��<c�)�G��~keB�-��P� O���SX��]���6Ӏ0���ȋ��s��t��`u��i|�v��bX�g0�m�c��z��'E%�3J�#E'F'�J�q6A\�q�]j>c��S;�=���E�ޣ�5�O�@�ڣ��u� m�<V��E���T��w�i�C9#?�=̈́� �E:��yN ���鋸s"� �i&6���8��}���I��i1�Ol�N��%U�9i�w^�67R7���1�є!W�q��Q�cr��W%L�Z��'g�ݼ��X_\�+r���:v�qҷ"�Ce�t�R���9=��J9{�!�U���/��:�U�����drF��s���=���aT�.Z�$r��e�oJ��r(���zV��st1��;qҜ��yy(CcV-l�c�f$/��w�^�7X�m;�q�����c$z��2���j����6g%��1Q#b�7/�8G�\�s�?J��|-e}EO��?oM��G#H[��q�"*�qS-�Y ݐ} iZZn@3���s��)ԍ�%� t��m��ʩ�v���>���j������WM83���E�A,�ױ�zcz��#��M����s].���_n�c���E\�����_T@�����]���)����Vr$r=k��Rz�e����]�ʏJ���� KzV�!�f"�݊ӟC������Xr�{���}���-�|Մ�H����Y�n��PNTu�?J��E 㜏�j����TW��Gr0z�����O����Θ��{�ekwQ���s�k9�i��6ѡ�=�%�聀#=�����l�Ǧϵd���k�=+ϖ��M�^�mį�5�.��@y�qQ�$�/�p ���>�1pź��k���"n���O<Tr���pO����9�!���c5���/�����j���9�b�������,ڀx��8���Q�-�H�r��x?N���eݫI �G�f�!ę#�Z�u\)��PΈQ� �Vr�����.v�#�X�w"0F} ^hA�z��֎�%��N��Sz"'Q#�L�q����W-�V8���]妌�D7|�q��m12m�;+�a�`��<�S�#Xy608�s�+�Q��+�|F��ۊ���u(���7OZ�ٴ�Z���k`�8$�Ҵқf�]F���� @��*��&g+�9���q:�5��,�=J���*���+���i<�r��>��/F,C�,{��a�K։��3)Q�N+B{��s]?�a��Es>+Ԡ����=��L�"�V����YNN@�)��<�d'>ݫ����j�<18�Xr���D��=p���'$��)\�VH��������8j�kkv�,&أ��Gֻ��M�]-�Ĭ ������0�Z�K�e��P+��I-l�9�%���i�l�$�ѱ�9��R���H~˽�8=������qn4���S�CZ�� l�ی�e줤��MjS�hnl4=F�� yĕ��^_��;{)�n���:�J�[� -�NE ��d�a_*�מ-���cM}�n7�HG*�]*��V�5�p��R�7>9���f%�� �h�%h��p+��gm6J���2O8�����En ��8>���ӊW�� ��tb���>a@��V,4ԍ���GN9�n�T�ہ��V@���$Z��71�d-e��~uN�L���x?�L����w���ސjV�f7/�zMDf��n-��G((�`+�|-�ir�`I�8���'��&�T6�s��U��U~`�m��ZӫЙE���x� �+6��9�A�;���K��x=G�P�5�Q<�4��FZ���.����s�vC�Z�׆�Ց]T+`A]�z$"�r�ch$��ו���S�,�\]^��]R<C8[�Q��t�(l�����'�"�?yi�:���.���C��$�\�s�#�ҕ������|�Z��ּ=e��ӵgE�F����v��{�.[7��ܑK�#��T���Fd�t k�מ�ol�H99��Ceuu<��l6I�W<+��KZ�x`p�8,F҅�BrKvq�f]rܞEe���31 zװ�?5k[r�@��95�>#��ү���?(�{�uiN�Ju#-��Hm�B�h汼M{juX��_��i,sO����m�HW{�p�Ԛ����¯�Y�{$z/��m�;Lm�=1IQ��ib����ϵ` z�|=��3�U��+�ԣ����"WS�� ��W����:xgD��u� �������13���Qѹ��V>:�d�Pj�I2Hq\��yy}pg���u��M�=�{��{���x���ֲu�s�Ӯp:�/���|'���y0��k����ZHT�eQ�z��%�4�w#9��#9��W�l`pz���:�6�fq� -�̥x��w�x׳:��R�դ%T�S,4Y\d� q���S�h7��%s����[)����$(��{�O�Y �r�::�����Vu/��J��] ���� �R�O�m�P�2s��e*���y���J��n1Q��c;�������v��z��Y�Wr�N����)wf&��4`�sڨZ�I�[�L֦���A���f�.�.�,q�錢���Bk?�%88��z�A@2,2j�ݐ�#?(�Ȭ���Iv�� �IlTWs�O0+��w*Ŭ�c����zù�+.��{��,/@m���}�O�c>C��~��<���R���s0j�*����i�����Ұx��eL�&�A*��G��>_߽q���-�!���y�-�e8�Vr�0P�;�.���u�S��k����B��D�"��*��֧�{���U��R1��&�G8 �W�i�"��, >�֜:ޢ�p��~�����t��]�hN��⡒�p8�?��/��3��1ҳS����84}c���=<�^wx棷�C'\�S^w� �\�<��+�K�p# ���g4�Zrv�8(�zť�f��V���'>��x6=KPU�x�Hޠ��lm�?��:⽜>�Ev�*��aa���~Էq��c��Iw�E�E�k(��΅͌Far�⽪8A{ۜs�I����Y��< ���`o��Vmm�uM:[�X�H�j��]���έ4�s�v*q�C�.�n�I@/Ӑ1V���m�a�nDڞ�gk���`�= G�x��R8b����h�ݙ�;�Zs�j����>�Su -a����,~oQ\֣�k�*�[�'OLV>���va��v��'�p��d���V��X�g��5�id&�k(�"��R�^�m0iئG`b�K�fI2��@������S���Ӗ�!�0:��ޝ5�`dz� s^�Ʃutw]8sֵ���#�ViO\� �^�{6{���T2o�o��)҆�Y�,���^1�>�ki+�u<rV��/�A$M��N~ojn����3�����}��V��l���6t\�f�}_���V�� I�o�x�SeO0����5���X���=2}1�,��9�W�]�M��v�I�=Ѽtg�I.��C��v'�m�.w�a� ��J2�E��6�E�0�c!O5J+�m��:���]}�����dV��Q�e�zU�����d��4(U�d�E�7�A>��00�}kϮt�Fȉ�o����x,�(�R����5��ui*�H�T�2�_je��7����v5�6ӆ�#�U���ى�2K���g�,��v��k����c��Ză*r@���j��=zQ�M�;b�6�ˎ��v�"�g�=*K�1��s�Qj���L���O�.P��M�1�s\�x����W��Z�q�WwP3ɮ?Z�3�8��rԚH�cF]Tc>��_j��5#(����eڇy>g��3���?LY�̼���2��t\�pF3�Ҥ:m�S�&�+]"T������0�� 2�#���$��s�9t��[j��+R�ES��>����#�ҵ��Å���1["���2�Ubg$����{��0W�ch�Q� ��Ҷ$X�3c'��o�e�q�D���SB��QG�N+��ڸ#�H�,LM;�#�<RTbޣsf�qX|�@��W�<7�ڈ|�W]r�6R�`w�H7Ĺ&���ֱ<���~x�b�ÞÊ��f:}�[�!GBz�Y*�"�'=ꎻ��%��?�G�F\�N��d"��h�(�j��^==��ےG�e[�\�,�� �kZ)�M1�Ȩ��4��M=��w<�s��A�6Q{b��ڣ�|�UI�}5ם�bs�9�����Faq"������ 3u5�ujF1(Gip���iG<���)��L�Y>V\�f�u���ebx�Aǽy��_^M��嵴�;�L�һ�Qq����ksJ�C�𦞓�]\���?�m��i�Q\)PI$�����C�ӃcO�J��������x$���?+8�ʾ¸�-9b���'b�<I&�t�v���9��8�t>�J�Eo��ifc�Fz-t� �+����U_����ףiΉe�+�c�ޝ�=LjUiZ&���uH��B�M���mm�gE+9�^�]��͔�3�KW-�_���Mq�i6�'�I�L��F�П_jג��V��:�r{"���W������i�#Qֶ$��l���K�n�*�QW|aj<1��ڣ-�ޡ)���bx��9�W��+�Ul�g���b�@���v?Z!M)8NV��Jr�R��Lkm;�7���?p�������V6ڜ:�ŝƒ���ɑ�a��@����!1E���Ks'u$��,�J��{���� �]�C[�H��?����U(B2��� J�G������/iѯ��:�D��$ؒ�摻���ާ�|M�^�mB�+�%����#�sd�'�Vu��'���2]j�O������p1�<j�[�i��Nw7�W��e���Z�]<��x�X�p;��zб�#��n澐����f!�p=+��!�IWi!�k���m�v�l%f*1��4�Nh��)F�>�����<y�l�x�]���TV��#���8��4]f��E"C�^k�Ү�Q�#�\��:Ȏ��C,Ӻ�''��f�K`��8�b��8���5��t�ʏy=��d��Y��5�3gb��{��j���8�Z��<1{�ތBQr8#�zN��4� ʄ�=�kh)nK�g:�]�:� �u�Wg��A���Kɜ@\C��h�vH�d�1�h�*�!��J�nfʅ�"�x�+��W�ڱ���j�@���:�ܲF eDQ�bz}i�� K��-�� 9��H؆w۷#�5�}�$���+?<J��&��/0�mׯ-�)9� :k�Z����B��UojD��a}}�H�V=+?�z\?�m�'���P�����,���ŤFV1�`1�Z�M�y��C��/�m4k�,vJ��"����a�k7W�&���n(~����uq)yS�?���kJ���D����D1���)+3��6x�v��xH����M/U�ZM'������E|����:u�@��[�y\�"��&Uc���=�^�%��F,���:<2�����t/���s�<��#¿t�x���X���d>r����A�hҔ۷CwQEjy�džo.4Ė������Mc\�Vk� �Q⾎�g�|[�o�%���$��!J�Ӛ��~#i��g�<M����kF�q��XX�������ϑUX�<x$csb��K{���M�����Z���]�&��ѧ��d�=��I�j�u�+0������xǩ�{药kw�<���9/ݠ�X�h~)�T�..�_!�~u�|I�V��=JK��ٹ���v���c�7�g ]���XV�0�=K��9j{���E �4<�:�zVZH���y�?B֚E��'k��/�[tss�5���86u��ǸxN���h��{[��b(��<��*����@V��x{֣�W����H��7{\V�5�^Y����TrMrc �J�j�g$��+A�����0>����QF5�����MTm&y�s]]��d��}��1��8�%R�cL�UXoA�1늒x��MŰO"�o�U��ְ��K��b�����ޢ�:��H����eI�����rt��]����D��sӎ��md�У���[|(�����g��\��c�f����Q�= z:������j�4;6]�t�7Fr���p^��I��=���tl�<�n�Lv�h��J���d��px�赸�����/<�� ��V���\�� t&�5%�=zu���g�ST�Ps�C��*A8�lU�M�:�8���FP[1U�B�䊩Q� �<��Lx��c8�쬂��N}�Vц/7�G��(mcq�oOJQ��S��q7�{�O������;�6��@Ğ1]ư#1��4��5���I8K���#8#�^�)��w�sT�ƚ<��D�..6��#sm�^������f%���a�ڻOO����sB�Fde��덱�5��� ��S�����A_K���am}Y�T�β:�CHт�4�\���5X�j�����xcq��1N��}�P[�u�Y��gs�����o8h�o�����>��y7W ~�P��'8�_����E`4���.�t�'`�K}k�Ԯ$��6��2R)I��{�Z����1 X��ޕ��\jj��S�ʵm�+�6ܺ�8����~U�y�0¬P�9��Ф����"Gf����Ny!���ra�SW,�e���$�R�r(�N�u-�_"f5l����Y���]�+�{� �����rѶ�ʰ�J�+�Q�B�Qx�D�r�����u֙���E%����!�&K�H��"D���Ҩ�zd7���ݎA"�+�^�>���Di:(^��5�z>�wm}x|�;d#�j��i�Te{�.�R� �V���m��ԕ=N;�T}յ���a���x�Q7`Vr����E\z��u� HU~p7�T?.����2I����+B�>�Y���#h'�����fВ �P!*3�p+8sI�[�Q����l�H�L�݂q�5�ki c���k|P���aԣS�\�:�Y~u���>F1�5�S�+�ЂX��G�zTj3Cr}���1ZwVP�%��Տ��p2����T�.�Z�2��S�u�9ف+���oܕ�m�Fܓ��Ou��U�s�����P�ܡc!�:hU%S��_�֗�)�Dvn\��U�������c�׆��-T���[�u��d�5{_��q�XYl8���X�5fe:n:��x�W�6����6�9�[¾"���.�%RH��+#V�����Ioz�����J��(�� CᗎŕڻYLx� �q�������۞ͫN��� ᵽf���$Sҷ<a#���0�%Pp�z�v�'�r�;��}+��Eғ]_ �8����Tw�1<pj��/���`s\���Fʩ�>�*[ˆ�>0+��i����q�He�� ⣻R~e��"�%X"fw\�M����n�Da��X$�J�G�o �� �pqt���F�q[ZE�Ѕ�iב�n�Q�#ס * ����U��[��nj���0�VA'8���VRc����R��7Ev^��v��Il\�Ά����{�����[��O\�-�������}��v~����N+I&k$�4� $���� »�o@+&��V�5�2���۵6��K��(�5��'�fi-�I5�H���T�������ԡ�%���BҴ�O����ku����p�q�D(M��D�%�G���Yh�:��.�&���2eT���o��:<f8�!�d:��G�Q^��Y.e0�v�'̯c{T{XmMķ�d�j�&�5���t� .��l�1�[�W6���mnzs]n����Ӽ�x�G9�e�f����U���� ��3�į"�-,�7��F<=�x,��H�@�I����|E�[}~M;Wg��-��Rߠ�4o+69T���-�k�Cb��.�g�XW�5<��ѣA�L�������^��N��K)��G����fkz�ٴ����R���F��8Q��hu��_�*q����_�)��|Ҷ�NȜʠ����W�-$[���?+%��ݛ�� ���)��E�]#F�������5#�滿xj�N��M�������Hs�v�j�z��._ xz1����3��MS�c���j�9�E���>����n��t�X���C����[���.�X�v�@.}�JG�E�@~�j�)��8�c��i)�n.O��m��d�,�G�u�h�['�N�Wg%�zy�/N��V�ǫ\Oe4ҍ���G\�=? �3��V��^�������R�2QI�3ПnkX9����ԉrA{��ϳ�W�?���B�16B���[��-����m/&�������g��T��+�u8,�I�Yj6)0g�&��rdx�!o�X�!^���1��}�.��$��V�2�s��~[~%��xz�^�X���V��`�=�*�����ñ$�����Y.���h,.��m(��W���>��x������5y��0-�9Rz�G~ܚ�_�_u��d�akfO��cc����*^v駆m�I�γ�����kq�x�پG�����{g־[�N��7�4,�;����Zw��'���d!#p��r,v�6<��5��0QK�[��\��SVC&��a�6Cd1-ޢ��u'P8>�,ք]��v!T秭D�d�2�0���r<�Q�S���6�PmJѰf.��wZ˵�_,7PN8��*"dX�����1�Ù�N��/"H0I^�Wm�]�p鵏#<�?�� ���z �-�9 h�_�.>N^-M^�jz���.]dTe��[:����Ȓ=0�Î[�5�X�&�24Q�g'=q[�V��)��/200�9��5���C�?�_�c��i�\�h�'�g�֎�um��w|���?�q����>:^�c�j��&�^RVH�8z��o�� �n�4�(q,h�u��]npJɜ�3oTz�ݤ�u(�d9��z�͕���7��O�u�Ҽ�Y�W���&�im�a�����A� `���}B��Y2w<Ğy#�7Y����|mf>�k�����H�#�s�\�������]ۄg�~U�� ���i��$�T3��56�5��dҤLN�=@�a\����RIX���v�5���K,��H-��x�Mf�ė�N�<ħ X�Aiq+e�坠"��z��k�-��u�3��($��҇q�X����o�g�#WSu>�X�����5Z3��+?����V���%��a�S�[K-�rF��#<���>|W�uhmu�#�鏸�$[nLX��y$�끚�J��̇8G�皍���Q�"������X�Kwq��*�6F�_B�|5��oO�������Ce{o�y��UT��w�����?x^�����T|�YUs�A\�jU(Ξ����T*F{2��r���Q�9b��,�ev'�Mci�C6��݉�W��J�QNsӷ~��n��wY���Fm�/�[<�ViX�\��Vg��M� �=֟_����;B���7'�#��-t�N���l�v�8h��2y�Y�Ҵ�e�I�+�@�o����h�åZmj�-��]��[��KY��|d�E�{c*K����5?k�c ��|��>������b�C�G ����#�n1�'����w_H%r���PB��f<��4�Fޚ�F���~gO��ג����XYi%�ǫ��+ʼG��Ӷ$/#�[s���V|U�G0Qnv"�A\���<��ß�ִ�M�ޑ�(Ɗ�QZ�r�;~j�K��0q����.6%�#�k�I7�ׯG���"�nI5���ݮ��$W��>�'�Y�\�&��O�� >��k���88`ן�a]���%t�g�hУڇ\c�V��٤� ��"����)" ��rz�uX݂�ۘcoLW�N��&�=&�F�w���`�>�=�%㽖�Ώ!J�{�jȽ�~��\ﴩ#����A��Mέ��%`�/#�\�i�" ��08ɨ�#��)�� �, �r85r�×zO�"}@��~u9:�O�'�7Щ*Υ��s�[��PKv�}s]::�����h )�3ް��gЮC����p>a���>ga��=#J�P��_��+ڳ5?47e<��=s���ū�/dP��*z����u�ώ�˫�=��庂6�Ek:pQM3��fz�1H+��X�e�ej���v��ҹ-_ėA�@��=x�䢵!&�; B�%��q�@k�Q�2���pڦ�w#嘁�{�\�� Č���\Ӭ��i����m&œК}���c����\qN�;�M^��n\�,^��R�Gw���&�1�z�q�e�x�g��5.�*�'h�P-���� r��[�ȷ;MA�m�����W�w_��b&��z��5=a,,�����_o�J����q��]V�8��W��s_I�e�֕C��bR�<'� �=r�������6�cI�]�jR,�(�P�R{ךx�ƾ!������^�E���8i���h�3�Or�!?6J��^�9���+��y�=_���[�}OZω�e��A�+��'�+�t�"�I�e��ڵqoo� ����mV4���33l��E��Q�?zN��Ԕ�KB���J� #��3PG�C$�)C��s�T�YdFO$ǹ����jd��N�{;y�s�����3��V՚�N�9#5F�����w�Z<}��U�%Ӯ�'3�э����+���.�ɯ${���w��W>��6�f��6�iV<]��� ���&���Y�%�����,I� \��ox��Ǣi�����j�;����&�� =܍(<�%T���X{[�wR�4���o��)����9f<c�{�W?c�gY������,���8>��_�;�/ �:|�m��ߗ�jΛᐑ�mmɺ�8r:�j�U���$�.p��5[�/J�%w����b���q�~[ԙ��ϥv��< ��բ%~֪~�8$�j%����%�b�䁂}FhTuW�]*����M�I4��rX��G�"k����6~i=?����xr+��!i��HԺG!ۿ���U���Ɛm�In2���u4:r�|�2��Z[YY��Ƃ{�0Cr@�XCӮo�!���B�*�*濣�s��/n��ٱ�0~P�u�5�h�/t����z|���,��u��' T����� >s!�#�O�{E��][��]P����w���id-����q&Hc�W�M����-��������wN1QVJ���]D��G��}��1�("5n��ʱ��V ����G(%�q�ߏz��X��:]��4���� k�A��_�R�m�ֱ����@�rF��ukWI;}��T��_j����FԘ�ʧ�ڽH<�ּ�4�mč�.�[�/w�[x�I�,��pKI���Khu_ r#.�$@2Q���rJ�O�m{��"A�J�'�;�x<�w��O�:�QӓP�Jf3ܹ���}�kv��9̣�=���o��<�Ȩ��z�V���]_�kIn�]���C�r���v�*r����<�e2Z������1�S��i�^�������C�C���̨���5��h�X�齞ɞ�L?��%~��_�����Ϧ�I#���&ݾ������k�&��G��g9<��1^�Z�Kc�ܕS������7�� ŷ�7P�d�W��w�V�*Ik+F��{ ����t����0�)V^&S�GC�zW �T��>,kL��KrReFL�/\��f�|ƚ�����.�#�����ѫ����I�:��*����0Ea��1ּ���C���+��[K5�3)V'�|�RJ���%�?����"ߍ����o�i������種7�l|�^6�$�s[Z=���,[�� 3��UВR�&��=?Oif�����X���%��fp�09��']���2��z�����u<8���h�g_���=�mv�?9%���g��CP����ҫ�Q�<��F8=+��ci�Kis�r6��\u&�:"����}�H��<��5�-�p:��M+�1�zg��Diڪ�\@d�O#���)S�R��ѹ�[�k��!0�a�t����ZhGR����zc�k��5�5m<Z�ba*g�s��v�ƺ�4���Wj���5�B-�s����V:o�~&�/�eէ6�8�?���_����L�V7�-�l�,}��x,k"�c9^j�����Ӛ�U�J%�V����kW���n&3�~Q�ZRx+Q�� ުJAx�@n��qJg�j6�d��^�}�|6�ð����j1ۅ�!�F��$q�jt�:m���o����g{y��c�L��Q��z���_<�:�\jp5��Be����:��:͇�N�e�]���;' ?����x��߈-��֯��"�{����\��í��))i��u������Aw�i5���3�0����Lq^{u3>�>�5��=�bO����Vy�I�|�i�����7�~���e~�CXμ��}�Ŷ��o�t���E�x���uz��z%�-=�u�{�zW�iZ��[�u_0y���ijض�Q�+�m�k�ԼC������y�5o-��UN ��)|.���6��&�� �Co����=��R���������{"{K+kf|�̧5��ڶg�,��1Y,J�@��X��v�Z�> ��j�֕sq4���q�++�:͂x��@�\i�4(�Kj�{�-����u;���B�HTH�����*��ե�֝bn�O1.⺄�s���?�Z��5���t��m���g��u���ynJ��lq�4)�r���N��|�B��'��@�]B�t��l7�>���h���ɦk�i�S�<7�{W��ך���vrx\�J� �C���_���N7.�ZB|��QԥA��dz}�ޕ��ͩ��A�����&�N���v����b$}߽|zs^3�ω��d�8�i%�e�s��k�5�v��C��ܮr���Mj���U�Q����<�!�9�+5;#83�˿�\�ư�vfq;�U��6Ms���$��S� F�`��+�i�hҊ�9�kM�=�=Vt��g����{v�����>�WR�]�c���V��t�̓c�7A]��8���c�{D��u佷����)^ ~�%����.do��HT��֬�>�B!�_[^\i�"t��c�꤂?J��h߳����oj�:�Ϛ�Pӷ��Dlcߊ��5g�43�����_����u}N���O�G'��,["F�� c8�k���kt�s����t�_@�w��MOFkm3��[�K|R"�}��º�o���--�M�:e�k4wQȧ�s^mJ�*+F:.�����O_3��M��a[rg��Z�s�H,mp�0��g!��ڽ{�E����o����eޙ���{�YG�\釦�lm'�(�_>�%�Cd�/Դ�c�-'wX��̆VRX8zq]�Si�|0�&���$�asn�F�8��}���f�?��G�S����n?2'�֣�|�-��%��Z��r3�8<c���١���K�������A�i�{0H���$��*�[��u_�7����ſ��3(�6���l�rq������t�4H��6v��eH��0x$�2k�д�u� ��t�na�q�$��9��ݚO_��4q�����i^����}N���r\�8]���C�u��嵮�ykki%�ɑ�Qf��eG$�&�{�v����m-�����B-�x8�:����}Tҵx���]���PA*� -��v�S~��]��,5 �+y����߆����#��G�����sc�#��]w�_\�-����Е��$m ;?ƹk�E��Xn�x77!���}*[��%tR�R0����+`�}*ƒ��<��& 9xE<�@O=�ԑj��6r�#�ȓ=��d�^)�S��3�瓊Z��b��������1��P[ܴE��Ǧ~���&���UYo�o��iQ�ξK<����k �1�ǞX��|�E+���'�m��(���3�E�TjJ���ƨJzr���O�^?�M��y2=��@o4�-��h��a��ů�x�U��V���(�q���1�H<��5���/�Y$,�� Rk��Җ6��VB̫���-���0�OG��k��ť�Ms����X ���U�u���"����M�m�s��>������E-�͆<y���]^O<�͑����q�#�/"����jz��b�\�#~�K�e+��\���qw{��g����eqQߨf{�B��+6}@���$g%������m���V����#���1wbrnjV|w^dϾFڭ��n�+=NzU۸���3j, ���ҷ�q��J�m�脞E�,c*���b����e�Y��EP��L�:2��y�c?A\�<�ZG,ǹ�G�{�E����=_~��ג�Ld���c���T#99?JXz���zVIY'�����r�;@�y<U�:�@�{@�e��Kg��k:�R���Դ=G���ա��UD�@z���:����\�X��en1_2�n�#��Y2Q$˞�<��گ�|)wਓM�U�6�L,~tlt�^��Y� ´\o��ak)GSw�Α� �R��`�e\cw=A�����g�����j���V�J� ֛,���T�0�����cY�[��d�+�a�N��6:��f��O���?O�I��V��)����=k�<#�����K�"��;�q�WͰh�]G<ʱ*�����N��Q&����*�9�]R�����I=�Y�,�������@O���ڹ�x�mm��Q~�6Er�zƌ��2>r9Ϧk*�Ķ���lM�#����ݣXӖ�Mo<Ҩ\��<����*ӵ�V-�^��x�g"����6��b�8�����D� c�t����#����#�R��}��[�*y�3�]:��gl��v�Ĵ�\d�y5#vsFI4�䍱rGqVc����<�u�D�N�x@��W. ��ԒOJ:ǞZxm���c5�g���\dWT���y�����^�ST�%�l��M28��*0;⼷�������t3�w`%d<������>9��~0��^]|���W?��{�/�+D ���j$�zw�rT�c�{ױ��(������U�>Ǯxu|;������S����V<�����G�u��^;��t �4�l�S��h��������m�)t�����v��:��+��e��s��8�NBM�8��U�995B�����r��/kS��~G]�g��>ѭ��)#����B�T�`�� � �fn��T��F�[������F8�b�(э��T���#?�ZUޥqv��0?�����������u��5��ޛ$�[�8�&*�F"�K�`�zٲ�4��Պ\Fφ��A��W�>v�O��S������BY!r~y��Ҫ�7��s�X�!�0�N�ît�d�߭�i!%��ĭp�zg��5�m�ǩx�]�&��*�:$q/9$�q��L�)JϠ�0^��F*�$ǧ�@��3�K��+���u{H�x�ç@w��z��o�ې�/�=�z3�ȴ��D���Ԃ����i�1��e%�}a����v�M$�6���Z�z���w3�<��3�|�<H�nᶵ�[˻�0�r�s�H{WU���s�LQ�,Sr=��%�{�O�����|Os�K��X� ��Ƨn�=@8�o(��������;��铉���{��$����Q�J�+KK+���9V��ż�)O��5�%IoĈ�a�A�9����뺲�:l��"�K�P|�����8��:t����9��z�^�,uSJ��ݵ�"!�w������4Kk8�e�X�B�X���{SfҴ�{�[Gh�L���7�{�O$�͍��#�ǖ9�����JR�zo���)%c���y~!�jq��4�kUY�l1a�ޜ�M�=SH��S���6ܖ�#��*�ٻ�Fr�c=D����D�yg�#P�LD|�[pڦܳ�M�x�����wmc�;\��e��'�qgt�#��� Z�$����m$�S�9�� :�=��?�mB ,��y-f�y]�x뷽Vm"��1���;Y�w(a��Þ@��*�M���֖9{o�� ����֮c�4��]i�fՒ>�g��^� 3�>���ƞ�#ۀ���䋌3`����A�5��4�cc���>W1ܯ��_��-u��=6���s�}i�,�=�}iFxx�u������Y������5��5Uִu7����ݑ��A�J��I�4͗����q��%<ϥ.��u ⵃ��.��,�F"'����I��{�*[�U����s�P��Һc��}��>���1�{�O� 05-3K���^�چ�zŚ4�b��j�С��f�yp-Vk�&�����O»-/K6)s���Ӯ �2s����?M�� Q�Y�|�+��ڲx�nI��g�E�2�M�_�yn��Ht��6�����<qܻ�G8�}A�A�Q������ңC5с���7o�q�+�<I���X�ӧ�+m*�����/�^�<E�=T�Z6��Ms1t�g�{�4����v��:!NW\�.eZ�:M"�ь��ϰ�I[&6�r�I�����~����Q��HF�5�1<�۳��G�4�/P���F�tk�*e�*��Ϝ��gh�ҍh7d�*5�G]���]��Yn�s$���>��C�g[T�!��ܵ�b�o���8�k��Q�x�.����Paܑ��]�+���UdicfQ#a�Oa�㞵�a��7�qUW�o#�~ۍK���i�6�)�yʓ�=Ȭ?�~����f��y�ooo������~��|�_�-[V�6�i����;��~���'�4���^6�vI#�\B[���@��hލ����~'U7%98���~]������=�g'���V��SJ�3�$|��J�-s��f�f�5�oAe�ח����Y��kxЎp:�ֹ��h�6�+���9�8YG�i[� ��ֱ�t��o��2���-Ұ�����g�.�[��"Fڪs�]�6��m�F������J��G�iRF��l�.b���U��5-D�Z",�q��W=�cB�a��f��-��Q�k��b�g�>�c�]$���f�{��O�j�,ӎ���>�:]�\˫A4i��1�q���� {���^Q�r�/�?_z�R�Y�������D� ��9�s��py��f��\�O{�X��I�b)�s�c�z����ZM�1|���4]F��Iekq�s�ȅ�I�<��~�-�o.!������9߹��+Sg��Ϋl�,�-�����6����'���y�_^ej�\�Mb�cO��)��=FGs�B�t�-˖J�3����~�ݦ�ү��[�4$�����pdp��pO�Wm�뺤o�Xjj�? �J�ĭ��ǏS��~��̶Z<�X%����p�>s��Ѥn����T�1O�eÙ�y�ֳ\9�$�I��#��lP�;XI2������$EHb}��u�{���w��~J�K�(/���}��q�o���Ko<�C)�q.y��G��I(r���)9m�o�M�0����TZ�%Ub"@8'hϾ3]���C��|�����w� K���>�U�xG���-��ܖ�B��Q�'�C�*V�����^[� ��$�� �!�f8�X�r�L���1�����'����OZ]��UfH4����I=Z�|G�ξ�o%$�39n}�#d�����|7��d��?}��N�I��M�u��J�Ӣ���H�[g%N�3Ȯv�C�7�T��I?Z쵿�^ }�PE�� �?�Z|ˡ�\�M_�4~�A���X4 W±�2�.#��'_^ v~;��5��K�i�&�����'�|�x��:e��}B�!��@��nk���������1�_�1�k��:ա��۶ֲ�m��eR���Թ{߯ɻ~�~!�&i|I}m,���x}y�u �I0�m�'��j�����VG�;d#�+��� ���{��$sԳ]���5]�i��' K�_�c���H�ƋhK�<���Sӵy���P�2<�;'���k����2|�x�OZ�C�c#��>EF+�wg5L�KJq����.or VB���j��:��+=�ȇ8Rk2��I�B*�c�տ��!��d����{&$��<^3�}?2��y�O0���EX����������cm��FS���e^j�7Ǵ��;r�#*ؚ{���4/n�c�#�#�Ȼ��v=�늄��$���>����6xX�ƥoui��P=�K�(�3�ўzc��V!��C��n�td����Uf��y$G��Pq]&��^*m[��[�Y�qQ1' ��kJ�VR���#%sա^Jڞ��uR�R�*�%L��ii���2��oO��{aO�qZr�!�a����D���9� 3º��^1���ќ�����O��k��r����ϵC�<UL���7�|��4;�#e��s��V�t� nm�pq� r]����uF~����G�����]=��j^ �Ծ�w��t�g�*9�U�;;�r�N���hѓq�p��~ Kj3��5�����#��x��Q����l��f��H�l������79�$�'}���?�����j2ɂ���7x�������1ҕ&�cϖ)�9��r�az�<���Jm/q�8+�i�r���-��Q�9Lo�t�=���0��H��Ԋ�<2%s��N}*����DX����a|���Sׁ��j�8�Ҭ��;�_�-$V*k�k/\���G�Y�s���~�X�m��y�_{�����mU9�p}RQ��Ռ�c��k��e� $�2q�ͅ.�'dS�A�k��#�1�[�On>���kQJ����?�z�.մG-Z�ܩ�;x���y�\fG�8���t�8X<�G�#|��z������I,��w��f˦���doʽZTi��)��b%�xĻy�k��g B�7����{wuw1��i%f<��44n�2���� T�Q����_�&E�y��I���^F;�Tu��.�̅x8Ҟ�i�H>��m=:�.�3�����2DbǥX�fn6u���!8�S�1��{`VrN�D)�����ܺtR�G�:�]�x���Q*%�1#���^}�� � �~����ϴ4�ڼ<m7y��>� F.)B�Go��g��*忋ү�k�6�{T�'v9�ʪ�n�8�9��֔��v���j�j{�����]Y�����qq|�냀+*h.%q�I$$�z�W=�7�b����U�K(Dh��H�8b�+?B��O�ε��ߗ*��5��Y���Y'��]�X��p�����/�m�viT��WM*�r�\S����C�M V�^: ��A@a��w.�w�"����e�/�}Mz����-�A n%�V-���z�t<��p�_,W3>ȶ�H;O5ji�8�;�R�Lj�XTcӊ͖��,W��_5*rZ��U�+i�*�Y�ӡ�T/���?9��Ҟ'� -�g�P\�9�ڳjIX��w����$������bą���M$00�\���w&��Z�9�qjB������y��%iV1dԕ����i��G�;��ͧ۸TA��:w��ƻ� ~x{kE�Q8�]�A�w�\����r�^#��C���0��^��~�Z����}��o��j6ְ��"��=�澊�\����a5z����s�<���4���{œ}�rK�I� tg�c����-�`�d��6����_���A{��k�����Z 7ʘ?�}k饐�ۙ��/L�=y�����Q���sf��C%5kX�BZ�@ ����\���?�o�FB,�nO#�����agE�:x�����y��Z��7����i�Om����������ir�����~'�l�g�jwW��YI&8�q���5�[i5L�p+r�e��Nru�{�i��[��}������s�xE��fԯ/,�v�K{{�c�o�O&��]Ֆ��$ӻ����������� U��#��ݏ��$���������t.�`\�Od,8,88�V��^�Q4�M��a�73I>b+It�]7J�4KK{(G8 �܀0*jѕD�d����c��w��ڳ��:l�U䨟�F@@?�<�u��ͤ�o-����K���z���k�;m�Ք�E@�����)���'�j���I�D�X�~g���F�n����.У,�*m#$7�{�pmCG�O�yow$�8bᑏ˂>��1]�����_.�q�n��(�i ��yl�H"��+�����wS�>��;��rs��ҹ�Z�m�+��_�D56���C���A%��n�k6�Kt��ȡ]pC���4�kW(�.0���Pq���*��������f o������6�� ��ddw5ˈ̩+E��血���k��y��c@��Bc�s�А�˔`9Vۀ�Ұ��/�b� F<�3V�m����,���>Y�Ii�88GY�e1 ��,s�|��f��LHI,�I<�l�74�H��}�[���(.�1�w5�=W�e5J:#&�2�(��V�O�FR;P�8�sZ�}��6�=M6;�]��3�i�.k�)�\�T�z`{�V�s4bO1�rU:�ba�U9�Է��7#<�5%}H��z"�q�|��Z��d�%���۽BW]�ܑ�U��ʇ��M>d���F�ei��m���Z[~M��M�H��s�������i�;Ԫ�ԧE�ή���Ho�ݎ��F=qapw䎢�G�Q�֑��g:n����?�fh�d#�9�ڗ��˴ϔ�������t�L� ;���L@>��'M�Q��V��zZ]��Ē�a�k/�j�~&��2����2X�:}k��V\c��k�:+�˅#�:�O4�`�xTJm�G�ߴ'�G�?�WZl���d���'R~��t��5)���9�.���by'������߆�w���^&��=�x%��A�_��HG�wB��qb�S�#��Y���Rn2���u��|Ic�$�ڻ��7����b�A�q6ז�I����=�+����v�Z�'g��?zW��4�c�?�W����w%� !e˪����w�k�~��;)���A���R��wS�+��OI�^�]��rrG��>"xWP��͚ݻ��3�ZὌ��WI��ԝEO������ �mf��1\iL�G��HpRG#�5�i�x/S[e�״٣��4C�@�n���f�;�e���ң��xf��#!ᔑ���*p�M�N߉ڕ4U"~�x}cE�?���;��ġeC�5[�^+�.����"��R~��`4��H�����x�C�W��+YT�����k�����a�|�|UqtX�?hU|����I��9a5o��6����\�Z�x s���߶�J�Ԫ�0M�8��5�|Y��֯�l�;�ţC-h�Fd�';�r��=��?�������Ǥ�m�ndzc���Oڛ�6��?��)C���0���I��ע��Yp��)}��Q����J�Q%���2�n�2P{Wa6���S��+�Z���k\��G�zW�v���mu��SE��9�;`�� ���i/���ߛ{i�J$d(�9�O)�(��?��e��{�Kz_���>,�@�,t�/�䱆?i�D 8�'߭G�oä�q&��3�L[�`�Y��_'����튼+��Fa��5_���� a6��^���������cb���K��Ab������䏬O�mF�MmFY`X����K����YvW�v�r�Mi`�O4*�ξE��o�֘�~�� A�G������j��ԧ�7sLX�^Bs���=Y�eo����R���[�>�����X�L�j1MqԈ���W)q�$��lดG�Bp�=��������y�REwu�G������8�YjB�!{(_�{����\��������gb���(�uW���a���u����C�3��v?�9�S]�\�E�E~g-|ui���� qv�y$wn�c��5�wpz�ers���FF1^��J��)��=����;�݃ޓh�y�y� �\G�i��{���,�##�2h�w`9<u��.ݗ������z���ov���m>�!�}���C�*�����f���3T�G��U�%lμӍ켃%��4u�=;�;t&�G��n�R{s@�?� =�����A�4`�h� :Uc؏Ƃ6�0I�����$k�=�K�Z�HS����!��$t�4;y�'�O^8��x1�yQ��Oz�=���X����ו��S^�o ����?h�QXά�#�u:~���|�8&�����< �w���X)@;��x����=E�%[x�l��<��X��9��ƣ�k��1�[�sY�S�%zu�E�eh�e��W�<��j�k ��G�˿�E%��\B�H���}�������E; w3f�۴�\���q�H�.GrOJe��5ߝ���k���s� :�Sr��$�F�DU�:s���*���*�� �=����۸f�O5����:��v���%KS/L�ί ��T��j-b8F@Q�:c�U��@�]0;)=���Y6�>����K�����,6O�z�;���yQ�5+ġ����\�ͅ`02���S��k�-����Z>����F]����� F�9�B��2O��M��\f�/�[Z��nm�o^ա�h�1!�}�ǭrw2J]'�!��Ezw���gA��8���p�f�̖�I�;h�D���7���{U���:sDW��Å+�W<[".������Ӛ�4k���-u,�(�鷃���R��I�ʵO��LH���@��u����l�����?Ͻ{������u#o��Y����8��c[�}+��z��dD��䮏��� �l�;�ISo��+T��f�I���>լ]沄��Q�yg��f-?V����ٝ�!B�kц*�~8�y��tg�������)2 �*��?<_ᴒe�k�W$2&N+�5-6��v��'���#�GJ������1� ��ں�<~T�����*� ����9����x�'�z�A�MliZЅ����>��/Rs�(��I���xTVg]έ7�=7I�5�Pn㡧��(�q �F3^``�ӂ���aۻ���?�����h̅\�ڨj~=����<��k�17�� K*�g� R�p����i��읽�^ ��~���Ƶ>xn�Ş"K/5���ĝ�s�k���Z�c�a�m�����f���R�_@8Νi-M$̤��sU�e�k-@��N1���a����:�fX�a"��r�dק|U�Eҥ[�0��ׇ��;��]��A�yT9&ۘ�%����G�j�z�U�I>j�ߞ��W0֙���Ve�u�8;1���_5<\���=2��s��j�֣d����95��z��ya7\���i:���=Oz�۩l��em�ծ�n�*u5�������B �cF*q���@�J����?�g�����7um9��_)n �gw�5�`�t����p������I�]�Ho�g�ǿhm9?h)$�G�� S�s���,v�-�=;⻟�3[�=�N��RB[�k���4v}gI�z\S�H�d�� 3?�5�R|�n^��LM�����x�K�r˟/M�����e���r�C�#� ����(�ͽ���}cn�A���07}[��\�6�pw��9`W�:�v_Q{.��8�?l�r{�,d��4%�S4e����ҩ��jw�Լ��[�t̮��T�u�"m<m+M���W.�9l��8�]Nz��F 6_�$F���+���l�U&�Y�g�#���MbiC��y����O�����]��f�e�,p�jF�$u{�K��'����[Z��^��-���y��-.凙�|�(�CÃ�����G�� �L9%B�?��*��u�D�e�X����<��jpJ��,��z��?ʵ�b���_���'e�~�I��C(��y!�y0\9��Ѓ��ejϤ�Ti�#�݈F�����4�rivom�Z�;:�Ïñ�-ռS{���$�Pnj���+�Q�����ў�V����������Ė�}��!��B[�o����k�Ե۫��`G�ۀ�xcJ����yӝ�x��WI�xma f�o�;׃V�j����4h-5g/��DMw1bG�����5���P{�[Gɶ>]��f�P�%�v+���T*Q��:���;i�dC��z��ӿ����$0���U m��v�EIe��Q�$t5���#>X�w&��>Q&Lx튤51��l��5v�G���ӹ��lUI�t�S'$T�+͖#h�jU�B7�����,�c�HQ�4��ݰ��:g�O3/�%�r�ŋrz{TgTE?>3���y��$�8��F�A�3}�{��v�R����`�e��/�EV��r� �p:��Z&ѕ\�WhRq�9��_��7�Z�����������)�oJ�6��7�5g�I�f���ĕ��B�U��n��ٖ�v��N���i^yPc1�����Ɖ��U��+��kwÞ"�Y����ēG���:t�l��!p�J��)E���IA��t��;\�}{�E�kPM�p�����ޯ�����3t��W�Y�S ��n�1|G\W%�� /#ǔ#�MѼB�*�+�z���k������#'�H�Z����<C���&��Ht�zzW5g��h���u�v��EqPA�יx����lyBY��sԧ*R�6:�R5�g�S�>�<Kb���.NOW��^��|[��q=����,����½�������+ 猳}kѡ��|�ã��� ������&��y���hTj6���χ����6�%���ɂxLn��\F���N�\\Z���F��U��>��?� Q�N�{�"X�8��ǵ|e�7�_~;�ֶ~/�-�RK�2@�0H;�v&���z� 5���tӝ ��"����>m��/pc�J�c��]���)�b�˟�#��60�Lڃ������ƴLq�k`�����+�6:��ر�%�a.���sމ��:R�j��vQ�᷍H��s8h����#V8ێ�����%�`~\�zf��wY�d�[�a*�>Vc�y5SW�Ò=�]f�m��d�+=A�:�M9A���*�_,���\���pj+���x��]�ſ��W�ߩ)��I�K�Ҥ��.�������X�/���ͭ��_���o��玹�H�i�g���sm��L�� d�2��8k�6އ�i1�[�Rq�~ԍu��b�7-�=�ّ*��ԝc!�EO��wA����N~|��L2ɟ�}�I���ciE�j�Us9-ܓQ���A��Z�vsՉ�5����(T��%���Ļ5ʎz�y&r}�Ds�G4���E�:�ʲ�$�<���zю3�^��W&ެ@A㹠�<�4�y�4�=�Jb��� �K��L�K�4�Z0zR6'9�NU'�I��@U'��j���"{Ҩ;��Ҵm�������8۹���c,E8�Ϊx*�բ��j |�U����d��Z�<�T�`n��.���}1�|^���������Fc�����?QU<Com�k�7�zw�"�B� 3Ҽ ���-ջk����(S�{G^�N��y晤[���1����F� �6�ps��I���$� ��:�[�Q�dڸ]�7OK�Z����2�!O=i�C-��a"�#5��s�jIB_���YO���6����Q�F4���������kco����,H���7Cc9��+������T��:�r:�Y�9X��4՞�^N��;V-���ian3]7��Vm�C�ݿ��ݥ�ܬ�(�N߅-. ir�D��"P�G=� ���Q���q�ߊI�$g��~�V{�+��ڂ�,Mw _�CܞEK5�3a�� ��bX�2y㚇�;(>�Q@ѿw"aQF윒*�Ì��:S"�$[��������,�Y�� ��Va���ߌܜS%��=믻ѭ 2�Xb9=�բk��I^W��Ƽ�V�I8�P��;|��z~T�jU�``��]��'a��J��p*�TTk7x+�8�Sh�MLUIbp=El������߹5v�*�o^*[�9��ye`[&�� �h�[�at[O�c8>��{����Y3�i�u�3�ޒz�I���$�\��1���U����{X��P {��#���a��!�����j��ж��.��SWNⶖ=�@��u�;[�P���q�~���x�@�-����l� ѓ�¾R�u[Y .K������_iڛ�i��IS�w��x���1�3]��u�����ѕ�#ּ;�O��x�9n,m���zK�o��R�i�)o-���^���-*��Sӣ���9b�C#)�A֣K�߾��U��G������?�A���<�V���+ʮ��`A��~��E𭆱�Iͪ8e#����h�?�sK��1�2��UU\<�j�ǿoS� �%{���џ/���N=i��|b���f��x\��*����^�5�ƪ��9�E��D��?-=#��ƮCc$�V;��k����`s�cSNVoKR[# ���������W��kᮡv2��]��>Ip�>U������:�eKe��S�r�ɞ;�%`���WҟMݿ�m핏�$ J玝j?� �]��c� ����ۤ��n�sn�G�+��#�5�x�ǒ���~#Iwl��%В8�^q�]�-ѕbU.2���z狭��pRT�s��V̻����,* �{���?G�<-�O�����Y���R`Q��Ns�̓�f���d����$\G��{�M���fa���?���J�T�����QK<K1C�a��Z-kg#���1�x���KS�V��H�~��]_�Z���m���T,E<=f�g��a�� �5��2��=�������F��5�x�Ă/��ݝ��d�+���ޥ�\隅�*����P�($㸖 NWg1w��ï��M�ҵi<�y�*P�Q�+��%xO�ׁ�O�gD�a��F��].�� k�%/mu��g��ҳ�y��N�=\����{��&^��� Zp�2���3� l�%���M�U���[緱��A�F^A؊�� �Դ�����̡G���|������Iyͻ�1�Y��uu��E4�Q���o�0�?�M�>�*C���Q�,O����d�l������`�ɊR��6����KIףԣo"Edc����W�x� ��=Ez����4i���9r}��ޝ:�8�Y�'M��壘]�2����5)c� �cہ�+9�PW{���^����v#nz��Ox�����R)?{���)�(�4��Ga�j������-�29�>���bs)M�@�h`#�2-B{�n�/���������veg\.쌊��yUv��X��`� GLW=3�摥|R���-6-v�\��[�nŃp���8-�~<�My#��� �b�<�)�ȡҁ^�����'`n1�Jѱ��1�ZP�}�5�(�H�x��g���o��S�EQ�iUݴz ���H&��@s�XZ��l\��5�W%�gUd%�Z�l`[�R��=*���M�zq�jYA巖X��ҧ{U�@-��B��Z�r�s�}=A=�R�� �9�{��m��u��o0f9�b��K*��3)��5������� ��P8�����FpI��zT��H���e;kA$��x�Z������m��1��h2�j6����:�u1.�0r�=�UD�������Z:��� �'<}k���Q/�)���YO�3ZjM�i��=��TR�㎛�M��C<ds�z�;�'�H�Ғ�ay"��� U�9���n$���f�n%7`��+"��l�I�i[R���{t�}y�n`2j���,y��<�u��r�&�rx�+6�6I�Y'��.��8�]ׄ5M�F�WmlӸ`9�@3[�=��̯��ӵ:\�wDUJQ�=&�@����1f��� �A�D 8=kR�Kf+Բ�ɻ�P�`�L�4e[9T�o�H��F�MJ�K�{��E��������Q���^My�����4�6�顔^\7ޑ�g�>��N���c��R ��-�����Y�%������Ѷ��UuM�QY{dL��s�Tq�ipYĢ(a� Tn�W��"��Pu-ֽwQ8�/��(�����V����,�:}��xe�+c���^$����œ�i7���&�Lm�=M}���-$�p����'��d�s�[�4�� ��I�v�c�5���:c6�����f�x?P{v�l�W~-��!}N:W�����&s�\�z�'��#gk�h��ť�ul����Ϲʫ�ax{ƗW�k&<�l���Lz���n������j~mˤ^Dp�I��ۃUZ�x�k��}��}G�Δ����=�ңr����V�>x2��2�ms�т>��ަ���K A�FL�Ȕ�L�� �ʾհ�9�+=A�l�T�%��[�/��]g��b�u{�5k:M��������k‧$��/�~X���v������Zo��Z��k}�!�#���ʤ���x����A�q_Eh���/�.�>�BMk��?Nx�ݬ�K�ܜ�� �*9V���ℎ3H�{g�����~�^����R3#m�P+'ǟ���gk,�e�ۆv��j����pv�����ύ���fk��#�fկ�:�ȧ�:Ԓ�������^�қ���__����5��43�ڽ��??�!b�)���\��9��m�p��5T�\=GdɖQQ+�s� ��9T���Y��X��8�+sG�uqq��p99�� [����:X�s���������;��m�>@?֮y���?����`t�\S�i�h��lm�3���?}:q�ۭmi>���yd�^�x(�B�<��������c9��f�_á�pT#��M?���eGS�s�{V��F��ne9�u�T�-�K���=�i�<�4�� �q�VNґ�N���$��BUT8 ��k`�tT�� 뤱��<�$�:��Z)�<WifIe H�ު8��5t���3�>��������������b�JF����M�o=��C¾�����*c@��hi��bd����49��y�f�ܗS��k�0��t�\Ɲ��,n�N���rԴt���;�A�\��d��a������^���m �Wݱ�MmV�["d���Xw�;5�xTn1ڻ˽$�#�nj��P�iMm`��w�*o��f�k�Hn�IJ`1�$t5�I�v�n�7�Z��q���EIi��e� ���MrEh�L�]��'`#$����x��^(��H<����-�h�8$��±5+`"���M��Pg��,,�����5yzK�Pq�W����� s\6��?�ِ�t�L]����ƒg/�s���N�ذRH=OƧH.���8�sO���s�"����-���@Q��|'���앗�_�Gv��.������d-a�Esn��N ��qY=G��*�����=�d�P2�������+�Xc�Ú��#�J1bX��WVЈ��y���|���Oҙ ��+LZ:����9���\�h�i��ֱzZV�,c���+���Ek2�*�xr+�a�m���Ցh��H sS(��;=�`�����I��e�Zj�,:��)�~���yo�~��z�ya�A�[���`沷rZkc�խZ)U�s�KXZ�f2)��Cլ�p���_[0,��i� �1��%8�PX�sWt�N�襉98�;IКU��'��]���t��ʒOC�U&� ��9'iC�"�:}���{7�������Kk��i���W��Z�D�+���^{ai7��0�*y�ڦ3�_4tbn-r�}�e�Xx�F���A"J��v�▕����q�ǵy���K��0��Ѻ�+���v CO� !�=r+�U�V�L�t�)��>8���qm�Ksc��+�mlKJT�J�c�o�{X�!������I�v�Y1��8��J��'�n��$��</����W�\�+�6��7��W��}ڥ�����1��M{�d��Ed�>N6���R��ͫ�������N�-��$����u:=���yJ@\o�C�fm�~06�ᚽ�<���%�`�$��ܟª�l��9][^�}$�U9g m���~,>$�hD�ѳ��d�õ{�=�٤�e6�p ��9韭xW�}.I�M�I8�y�? *�5r�$��s��͕���Gs ��(���x6�b�F���a�,�1\F�d_������C&$p� ���N��Ty��N�������{xm�4��Pp����z��,��4���I����zv�y_�<��D�R6�o�ڏ��8��oP��[4?bp �4��b�o�N�W���Z'S�N�י����}V��H�}�1�Rq]�Z��\�2�FM��!�e��̝��j��Ѿx�QP�Di�e��ץq;�Z�J1\�Ŀ<3�_ZK}�x����y�W���[:��+���q��R���q�����x+�^�c��*�������`k��~/���sgy}���~奡"C����+��)�6T��sw�my/ԥ⩧���5="ɬ���3����sM�O�-�v��j�&kl�m��O��&��?h��c�i|=�/ O����E�y�� >����u��3V[�&eul�q^�]��ӄ�7��1�P|����ϼ�����7֒pH?2�s~1Ь�����h��h�����Zӣ���|��@'��Z�<O�i7@�X�5�}�[S�R��ݚ�3�� ��v�h���k��[yZG�F���'����|3�7U *6��=�돸���� J��c�n�8������*� i�* �ؘ�U���=~�V�H����N��r�&� )��[�㹒��?Q�֗C����I ʃ�u漜^>u_,t=,>4�٩�M:k��<���,XW�x[GH�YeQ�8���!��]�� .;�i���\�_["K0�p�wX�q��G�v��;U9$v;L}:f�\��5��q������+&]RC9]�pzӟ��c�?:����yH��k)�hޝ4��X�ew�*����{���I��#v�s�5����1�Nj�P��M��Y���u����&��a�Wq�^�5k�q���Uy5k��W�wH�2F[�=�K�Ev��w���֪^3�2��}j=����%-��h��qT�g ���&���Jy�=��V||���S���h��q�ߗn~\s�֣p��ٮu�y}��J��v�7^H�J�����qF�RƹRG�k/]���@�*����~�?�z�����NO^}jjT�l��I9]��u�d���'��j��?�'��i��5�4�x�+K�As����z�m�+A�o$d�7qWቘw��8����V=�U�x�0r9��0�EЩ5��_�X�դ�(~}k��%#p���o��P@��4քB���f��Ym��`�&�x�;���p���Y�s��u��f�}��Ҥ�54X�̓�=Ej����/m��<�������q�V��J�n�n�[���&d�t1\f>Nsǽp��ܙsֺ��� � �?v�%zi���V'wq��\�_Eg(�~��nx�����9�:�Ԁ���=�j�R���ޖ����I��W���}�k��I�"?6��Җ��;�/,`��k���ڻ��Vl��+YՒ����]�S��K�67Ӯ6͌�N5�?��$���%�9WC֦�6�g�D��/��P�A���Nw+����5���E��M^-��ki.]��"�+��͍��Ei���/Z>�<m5��[2����w�� �@�ɬ�S��K���ytq���^x\|ĸ�8����i�;���k����X��(�Xo����$�g,*Oz�NKaƢh�u�K;I!��FE[�/�z��$r}OҺ O��*�c���������;L��;��c�5�Z��,� b7�mx�W�ivZ�v��wA�^�k2XH<��@���=�WU��oom��q�;��^�8ݜ�iNn��]B-� �mrOP�U][FКTami2���7���Y%@s�:V?�ψ0��[��א�c��c)�㇟2Z��7��=CO�k,��c*�H�y��<�X^Imq3��s�V����m5�.=?T`Ӫ�e�x��Ś���l��z�+�ƅz*pv�e�^�G j�Bb�����-���r�wų�W�(�a�A�נ��P��%����oO�y�A������d\���:�Q��:`�w��x��[��KˍăҸyth�M�^�9�a���5���I��ARx{H��RÓ������N:��q4�� 죥nY�b8U���^���h%�P@<�V՞�]@T^OJ��OC7Qw<��B*���T�q�j��9P�n{W��xm�����q�K'�اt�_oʭ������֖&>�2�<c���� A ����^�y�Y����7��(m\r��t��+�=)�4i��.9�[�Vr�9#��^��ixX�'ۊ"� ������*}�N��Y#�+�`��'�/J�I�n��(���BV��ҾC{j>�D�%sX�-�3q�F�*��ݹ~��؈Ǚ� X�nV���h�/�n���#L��gz�Oʲ�(�\rMy����� �� ��~�j`D `���Uqn2fU��ow:Z St��y���Y6U[p�3����#, �I�ں=6�d��N1�k�Vj��2wG�x�C�,�A1���+��P�Y�?�ʂG����7�v��²�F y��<k3Iqj�\��Z��uGU:���C�DH�J8m�9�k3�v��1�zt�+j/��]��3�x5�&�lR{+��R��7��<��[��tu�}+|��ىN�urh�Oi��}k�J��B#oݾ~_JN�:��kr������[T��&(Tx�+Я�e�ԁ�sڽ�X�ǷJ�VE��/t�R�/C�Rxv�%���rs����B�,����$n����=*�en�:�L�j��Vt�B'p<V�jQ�[�w�=�k;T� ���i+�E�9C�X�Oj� WF��=j���ی�⬶|�����S����Ml�\�:���T����ϵuZ��������pr�Pn�q}I��Q��?ʭ B0H�i-� 7z�*O^}�Jm���`��R��w=�]n�3[J���1X�FE?*тL/�܁�5-�Ώ�A�1��ҹ�$� ��� !�e<����#�݅m�'��Q]N�@�h�ãO��ѣi�� W?g3iv�;��Tr�>P��c��E��W:�*["X]�Ƚ �+_g;x���� �p�k��M����FH����!�;�ܺ��{$��P����<�i$�Z d�#�vk�uK�v��#�Ҵ|7�Kok��v��\oP�Z������[��u�=���Oug���s�b�/�"�FO<渿�/���S��-N�3qz��v�-&ެ�`OOz�41"1h�j����w���V�pv�_���Y|e���� ��O�����]e��e����;? �|uoq���;��ls��;��=B)cT�l��t�g��KS�JqaS����\�ƌ�X��J��{��9�Ո�q� ����z�uݥc�A!�A����nܹ8�:Wiᯊzd����`�k���rr�74�>�['J���Q*A�{�B�+�H%���W��>�n�����kee.���O|�������~�y���`�mȵ]OR��V�w~,Es:����M���>=Ċ�[۠�Z�#���xR�X5}*�,�C�θ�Za�8��{�`�G�.���G�:ҋ���m��#�/�۞9�hƁ��Z0NY��{?>�Ҽ��>'x�U��Q�U�!�����Q��ؖY6�I�z�E�钅Vpv������0�#{}���8N���_#^�[�錷sI,�rZG,[�5ql �X�T�}�m:�\0�OwYԴ�E[����9�+͝IJ|�G�S�F�2dӉM�P}:�!�Kw��-�q[t��Ej^E�z��_Ox1�\w�l��%��fx�'':���K�O_h��,.˂<ש���Q�dQ"Cg�}���˄��˅nƶ- �*����ֳ�e�z�璳9�x��*;���?��e�F�ֽkO�`��?8`��5�G��!�#�{���Vfҙ����'�|�*����.��%��=��f�����<�o��8 #_/�7�[/6�8��k�<1h�7�8�ҹ���|�μ�U��xr ��Q��� �#�b��`��>��Y8e5�t�c����d�6���##4�Pc�rO���Y��wlў9ݪ�O��)��Ve+�>��ϥs��v?)oAںWw ���X��"��9�XTWGM7����H��=�+ɂ0Grj��(;���T8�E�:sְ�:��kp�&T�֮Yje�V?6{�U���#�j������~�����H��4@�8�] h��"�4K�p7=y�K�/ϸ���G3����1���黀*����T�8���Z7V��?1'�Ԗ�̠���\ֻ:��G?3�,�``T�]H��+{V�͊�9��:;z�����^�䃜q�T̒�Hr@\�ؾ�]WhQ�y�j��|���qRԯ��]��� �u�W���=�Q:t'�ϥ>?0ߞ)�h �7A��X�vVzƊv�<��$��P�����d�ɩ�\�#֢��ԐxG�rww��! ��Icv�bL�%Z��TR�ѽ�J��e��K|��@+RVPӓ�?Τ{$ld���7!�(��1�8�֮YY���Z��Dd�}�hZ[L���:��OP�[!�E��������y���qU�$`�OX�[{v�^���П*9���C�=����y<ח_�-���w�=kk⎮ XɌry�^)?�7j�W8$�y�Nu��_�=�H��mf���Uu�#��h��n��r�՚K L�p8��%�z�]њ�lx�̻��2�Ko#+�ps]��&��h�h�\~��k0�� ��9�=~����z�GLJ��;E���yFk�3�� (<v1Y:G�-�"�`�i������Б��?s�t~5���Iߩ��������ǘ(S֪�KP�5/2i�=3Ҽ��K�V%�r�W4��!wez�Y�bNW�~�%������5������{՛+[;���Dw�$�_>A�˵@�Vn>V�Y�G�,u��m�Z�X��G?�_F{G���8X�<�W�W��:V���D��A�O_����!Yf��1X��2��w�9�ֹ���MaFQZ�> iV���D<��x5�ɥ^j'��a��ٮ�[�gԋ4�N��Ri_e�X�k�E�n�⎏�]��u�sDA�q��c�iok�g =�k�%�b��H-���Y���s<7���^zڝGN<��P�����Z[YfhnU��s�Ҽ�Y����DE܄��4��&|��<�g����!�q$�3Y˚OcH�ĭ���1We�~Gz�9n�B��raTt�:8HbH�ekj�"�Q�Ҷ�I�S9�HسX��F=kFh2��A��r���_;F8<U�:� ���닳1q;������趍�t��]7S�����o���GnA���3)E�[]:��䞤r)�Z*�E�~:U�G^��l �(8#��0L�M�����ʶ-4k{U\D�=N*kf� ��ZM���;W]:P��Ӝ�,m!��T�j�� .+�gVbբ�F��g��. .v�ⶨ��k\�Nw��tC�yQ W���I����m`~`��}���a=3���~9�7W21�8������=�4�g��*��!�/U&��3PR��y�����4{�6"˴�]��� �r���@��Gڴ���U����{q�BC�����MJ"��9�D���+ =��K�Xa��W�������v:�����|{KNՓu�&�3�W5i�7�������[V^#��@D�8�qR� nW,�½��NW�J���2(U�09t���9#'��y�Z�եV̉ۦzTJ:h4�]N�U�;��W9���_ �?J��L���Edޤ%0Y�9�z咹�[G-}j�`|�0+���ǖ>خ�VT�܃�i���ݨ��:�\�CD�y��r� ��A���������'Б��.g��Esz߇�f�� �ڛN+`M=�����N~��bYv)���<m��*z�v!H���+�E~�T��z泄JA~�h:�_��1���E�۷ �� 2���c��K$?�\1`�Fj7�6C@E-��p��OOjtk�A9#�>��٦�x T�q��F$��R<��װ�����8�H�39�����2'�8^ǂh�p�ѥ�Wv�\���{�lzt� ͉�_vX�"���M�ZL�=(�r��IտvA�5D�0��gP;��ҫ�2���uqVEH�b�=�H�(A��`�sD���Tc�"D��q�qN��(�� �wܼ�9��AsĄ|���N !`GJ�t��<�1�z�r�ǣ��cQ��;�e^X�D���p�q�I�}���U�Oa���*��8�Cr��{з�I{���[�8�<���%RO�:���Lh�W���aֶ.������8<�+kH�!�ڊg���ؼ?�j̫ǿ��1��;(���y��<G>�t`��7ݽ+�t�D�JL���^A�]{;�aڧ��d[�V��`��X��Q���tU� j~�x��^ ���kw�<���#�|{�J��i>��Eۨ�cQ��_Jh'W���dۨ]Ɇ�����q�j�E2h��D��y��CSK�.d�[�U�͟�[�����k�����G·�֚�J���/�a���Sh �FFq_���w�����Ó�5�G1R�`��_����^�%���Ո���&�V��K��g�UZ��G�6�n�5�x�Z�f��(��ˏʳd�Y\��;�Գu�D*p�с�GZ��AZH�*�����1�АGzv�"���u�ڌx�]�U��dksú���bo�X��^��<����9�k�N 3���¬R�}S�=[H����pH���k��7�,:g���3h�\�3�_�bb�����]�/�20�d`�k��?�9^ǃ��� pz����h�6v��[a>�����1�ҵ��C����2A9=��@�)'��W�����̵;H����9����A\Ο��98�+b�|� <�^drN�.��-�R[Փ�hˁۚ�!`�$�Q�@2:����Wjy��c���Q�Y��uڞ�CQǡ��I�T����>pq�zt�)!�*�@����J˞��ZX�dps�:Ӧ��q���+��L�b|��y��k�91��=9�b� JA8���3��t�*+�]�y�p8�V�vL��،�4���P}�G ǥm�g<��0u�����I��M.)��@�*���U'8қ��'�\zq֡Gޱ|���-2�O~j&�]��C��հu��R4=x��F>��}5\`��<QͥE�^�y��c5 ���$R��k���f`���Z�uy% ��=����� ����b �O�5�({�T�+jeCj�ˁ�z�N@ I�+V�O���s�Z�X�hv���4�D�v2�� ��m��=�U��l��|Ҙ��:���g�P�(n��J��q�t�M(`���j�s2���h�BՍ��"]��\G����B��$�+K����&���^A�Ă(�s �1��M{{�s� A�vq<H�Z�L�c5�Ծ٭gsޢ���w��x"�19�5��*g���NA ]�l��[���H�SG�� �d0�`��1xW*k r5�+��NW�}�(mg�3��������d��*����'����KR?2@�������d %�g�J�?���b#�bz��և�ы���j0O��YA���B��`��\��>������U& ~���-����9{m���ޢ�x Rw����C�u *���V<�ph��r���J��h�tp0�.3R�~�TڷV�p}�U�NR���մ������dt��yt}D�DlT�9�^�c����(=q�s�Vb�J��:{�TpZ��M�<FO j3�2��^8�~�����G5���Ìt����pcC�]�WS'�g��xJV�;psЎ��x&@��0���������pK�|S��c90x��e�Kc?�3���:��z�v��~ qԑ�+���9�����T���x#9=)g�;X[g��xUT�xV�:P~@�8kГG��Oz���X��EWԣ���pGNp�֤M1�c����O�H�����s �x�R��*�!%���AO�#�����W[.�<�� ��K�7h����j�1m�N���H�Mz'��@��� ���vߺz�\DU��{�F���*��C���݀�W��U�mb �`�M��[��������q�]Q��rK��d��ߚ�;�b��s�'��P�U9�_Z��]Ho.�����QE�9nv�N��������c_.97���j��u�G;n8c�u`�~%�6giW��z����<9�k7��D���NOZ��^����8�?�P���(>A<�W����pB$&RH3���؎edwR��c|H���bz����uƷ�I��q��ɬx����ÎxZ�.5�r���t0�j��mE�Ꮚ[����,��=G�]L~;���̹?Ú��MH����*K}v�%+ߩ�Ň���~�L�!�J���OR&��)1Q��q^c�ɗ呹��c�u�$�=j]:�z���=�þ5�$��eV�'�b�&�r�U�s۸�����Hl�9���[_��%���S�Q�'����푇_��Q�]�����pk�?�+�d�>�����R�Ų��9�Sv�kS҄�bA�f�1ZVѪō������W*��$g��vi�?+d�G=*�+�N �dL�*8�zb�5��F���V��$�<��w�ʇ�;Q)��F�n� K(ۃҲg`A$��V��������`Kx��'#�g��'dXv�'<�lr�`��j�-�(w�ǵD�`)9'�+5��I|�p;v�U�q�p�#ӑ��j;�1�8�����+�=M; ŏ�+���?^i��ʐp;���^sW,-Fx`8��+�خ�+m~�����p�t��kf-4:�z�9��0��u��q۹��Ӽd�9�Z|�0,x]���G%T�x�Ikހw��C�m�Q�sf��$�_��5l�g������α���NEV�v�'=@�L�[��)6a��m���#�lvAs��_o�l�8�������8�1ӭsʻz�h$b_"ƾ���Q������a[^"�DDr���Ep���Fe'5ч��t��W{u�v0pr0z�ov�y��j�no��9�>��]���q^��_.����s���x��:�����,�K�I���Er ��y���I��g\*�w��Lw ��u�e�ݨA���t�D��'ԓ^��/.刿�?�x��4�$n���s�<_�xus(�>�W��1X_�E{���U� �1��Z7��M�g�"��u�R�Ma_�I�w5��$��5�> ��f�T�B�g�?Ƹ�]YI���|�&$My!�Y[��k��r���x�{����d̈́K�q�#^K�^|&�<C�i�K;H�F���u��[�D������n��D�42X^.�9:�q^�:�p����;�ѩ������'×�-��2��"��BǑ_c�؟����"ɕ�8���ྦྷ�#�R9�w�������4�E*���y;�ў9�$�NH���^��J�=pdx�b ��@�k����Hc�{x�ߛ ��oEl����Y#�e������4].�K�6PY�N}Qo�+KDGL���*����aqXm���r���{�穛�]"mCJ3O���"��c$��k�H�و��=Fk�<;v&��C��:��zׂ� �I�<W�b[u\�n�����O_�_��F��J������穮R��|�9�=�oL�وܑ�Ʈ��p�W:x�WE9�4�7<玕B�o�x#�����FGz���^[2�7@���u���\���1�S��(�yr=��m=馎�N�kE0�- �1P,q����~�k��G$y���.�X���5��r)FGC[��#��ʽR��{UUZ;��58^���-����=s�m�� HR�1<b���o��xv�s��V�ÿ�l����<RE.����ӌ��O�;�I`�#��Rַ.2R���d��v0GZ�@p ��4����q��+���YFOn���)+X¤Ze�����*cE��0[�qRr�O^�Ӈ�\�#�j�g�P`�,�G<s��J�,��G4g���4�t�c��k�'��ZYY0zqڨ��I���4���*y���D�_����S��̓�Nz*� ����Vb�A���M��k�q�lv��=?:C"����w�ߥZ]�۸��t�N�pw�i�$��沵F8Ԝ�TJqF��z�\"���=k��&������C�Enzy�^e����zU{�=+��b�Z�;oQ�5�(��m�p �+�o�~6WG�)���ߊ�;�8e�)��5�~#�&��i��8��f_:���6;�Ԇc�{��2F�c�WI��!�n{��\]��%��Prz �<#�H�!|�~C�}2�,y�Jrrg��Q����KVیg�����������g�^�ȶF7��:�ֺ�5���:��(5>d:�MY�c���t���ƍ�������4@��G8�����+���lV����hx�P�q�Ć�jڰ�Ǘ[Jz���2^�ȥ��Gֱ5���܄�>�ƾ$�6��p@뗭=?Ǟ!`�ڃ��I�Ww�gQk�a!M�#ڼE��[��&1�ڹ[����ۃ�\ޝ�^��{�+�{V�=��v,{�jڝ4��Lݺ�:v�*0�ƺ2�6�W>���� \�=k�ӭ���$+��C�Roqm��9��j:m{U�Pl<`T�z[�6�b�@��ҕ�@�z������}���fL�c9�&����µ��$ �3�LVrI�2��q�N=EQ��X����Y�_�0�T�ePF1���k'fZ��m\�>�� ������U�#����U?�n���Dw2��7m �*�!�c�j�DS���."F眎>��t���jT��U-R�8���1�Ҵ���:���x������R����i��iO�p��M,2�-��pe�o�U�wob@��UA$��:}��Ϲ�7�)�0&��8=�'R�P�F��Ҹ��(�XH�L~5�{tT�Xu�*)#h��6u�e�qC��`���~X�9���mM�j2,dn��<�\�&�@y'�יV���;iY-��L�d`Lט����HIi�������j&fb��yεɐ�g���n �㦥NX��/uw�RFG<�V�bA?�Vu��f�����W��T�I��/�6:���F2O�Y��0Ny���G����%�6"�'8=sV��]yV�X1J9�Y���s����5�c���eE�{sZ6����8�r0υ<�j�WXO�q�ç��Y���W�f�b�Z�����#��>)�l�~���;*���+�T:��wV!��X�i�w�����[[��ƼR;�3��n�����\�Ú�FJ��[�z;��/����R��^;��y-��<x +�<`�ȵK��������kA�:;�@�1-�rH����<���u ymÎy�=��c�G����>���w*<���\l$t��.I=3���#��W���'#�SG>O�O>��.��B�=�Z��A^x��`tv��zq��[:{���'orB� �=k^��o>�N1Y��`uP:;u2��t��;k�28��i˨��w�qך��J�7`T�=O֠�E�pz�e>��n���5V�P� �Ts�5�КU,r8�CM�Av;�= c�j0��A#���s��R}��Oc�R: �U�>N�J����0H`�<��`\�[��vry#��]SVg�q�=*��'���Y������Ӹ�_�����k:�l�xj��.N>��X/.���+"s��x8�j����}3U���52�:q�z�G��cJ�LG�~ُ�9�˶'��jY�`��8� �#��ɴ^B�Cd�ׅnd��J��b�!�*V��<��s�Z�+Yţѧt�{�Y����V���o=A=�+�j�)��$|�s�]妿��>���`�6o8sjz���#�&��qʯ\U�X�r#�a����Ήj�;}:��n�Z>X��W�J7<�{�^���uǨ��\��'�Y��y�T�T9���\f�N�n��9k�x�/ڢ��H/Td��>�W9��L{���!L�ȭԷֺ�*�N�� �|���Փ�Q�O �k�#���ֻpvx�}������k�Ot�pO����3Wt�K��fڊ��W^H��-�m���)w���BY!Aq�� ��6�k�P���nrz\������y,�yb2@���ןkj���#b7gzצH�h�I�ZM�m踮kX��v"|�~�#��SR K�*������8��3���'���:���RDa !OcRx�E�H�$��A��0O��\4W�am��q���Q^^&�kCӣ%4{���+���1��uVW��w��>���&�Ę�:W{�k�a�1+�y�^|y��0�H�;y�rX6��֮�rv����h��8�[����K��S���]����)��LJ:��t=zg5QK!���㊖9H|0��[ngckH�ʙH�]~�v���WgpU�={��i��rFG�mF�+9k��GI��w�n�����p�9ӥ�([��s���TTF���R�n#��TK����&���Fp+(Y�Y���m��߽R����Rv�kz�T�x�Eu9�u��I8�F�R8+�:Ky�QǠb�Yy������� {��t�Tt��WVv��ȵm9��9�qV�{UH�2�9Q�[���z�y\�@�I,� 8ϧ�E�$L�d��' �\����Ȉ�1�*�NI�U�o,\z�Ue�U<�sY�Y�(��߉?��� �rCg�ְ�ԓp� U��c���j}�E*M�������T7Z�h��>��j^ �G���5��+D.<Ìt�z�x�ټ0������b$ ;��o*Fʯ�� p^%�w<ߚ���;X����p�=+�U�U�,������x��+;<�3�^�W�NU㷗,r�������8���Fϵy����.^W,OPk���g&�V ��t��-k��֡)y\�OAӯ5[N���m���cB�%���fk�|/��U :zb��؈P�,"ӭ.z���߇J�>oS�k��t�*l�j�a`�����k�@�6�s���kƩU�we9$��t��@�J�3[�B�����U("lw?ʦ-��`d����yJ�6�-�s�K�q&_��Ms��$6��>ƢI�ˇbA�A��itF2}Ε5��g�kWG�~�=}�����F ���C@�*�8n�5�Os�o���~,���Wy�M�� ��#l>F~{�+��$�`&N#*vi\��iȑ���_Zֵ�j��aq���hYNH���uFV9�mE6A� N�Џ֨Z�힟֮ō�թ14_����3Oij��q�8����M_=��b핐� Y�O�0<R�8�5��\�lg���e;�i6w;����Q�� ��C]I<�*�s8�ɬ[4.C1��d���į>��6Ȱ� g'���g��U�,� ��9=� �������d��>�^�n�\���h9�qYZ��i�9��V��U���R=+P��~r@��ɻ+�����F0}kT����Ҵ� �F���MB���6x鎂����3n�z08\��qX�Gs0�����\�H�H�^��,�$:�#5�-MS���B�0��y�cX�$��J��Q$������Y�S��z�,���D&y������A�+��� b��J��V���N8�+��t�� �z���7M�P�u��z��ۊm|zW���BVFp���� �d����}+����+���Svn&1-��)��}i*y)s�zZ3��䝉����@3�J��^)YS��-$��9�Z�` ����z���֤ ���)�z4�&k�ps�q��V����+&9���Gb{��ƹ�B�},E���q��W8�Y�h��s�ֹ��xl�����tݑ�����D�@[��� ��3����@@ǭ]�Q\���s�r�4wү ��r=i�+�=+.�b@9p*Cv��ǁ�\Δ�;��E�a��Qڐ3��g�Sk��=s�L7 .T�{qMSc�4�=H�Ӗm����Ymw�Q�9��{�i{b��lM$nAtC�*j�������\|����/N*Ԝ0���z��G#9J(�]E:Sd�������~��ǡ�R��2��������wW#r�cl�����s>[�펦�!t�㧥*����s����X�U�,���,�s뚭6��r� ���Gh��$֙)�#8�Oj��`�֓4�@����� H�J��f���۞O5��<�����ti�VsԩRJȩ4��Ȧmn�q�փM���u&�]0�{��X�N9ajOs W���z|*Ĝq[�Jb8�1ӥM�?�q��K�H̱��c�95�a �>^�}������(m�d�W�_���Pø�#�T�Q��Ց�dzzT2���1����s�Fȵ�ߴ<��] ��G�v�s\�E+���Q������{���?A�t���1P_[��� ��]&����;����}���P]9�|��V�j���fRU~Nk���[�� pO_Z�M��T�r8��jb���6�����qm��H��VYŻ�n�0+��meg9��>���j���Rh��3�k��|Lt�ȢW�'�]XN��s�O���Z�Y+e�}kH�����LW��;�!��;���^�m�$�0\`����U��U)r�#F��6{f���|?j�;c�R�\l��S���'I��@� ��j�Z�5������ɗ���t�x���Z\9� ��Gbk߯�q ]��N:�'�o���K$jU�B+���څnF|���\*�a���q�{�S��#/�Мֿ�<,�(Ҫm ��[�.�0E5�V��g�J�j+3ܼ?�H}��#Y��_��J�? kK.%�H�]���X�c,?:�e A�)�=��Z���~�TF@C�v/�����kOK�*`!��V�N�<��Ayxa�Mk�Wȭ� �@�^Se�E���:sҵ�<H7����5�q1����X������d_�DpI�7��*2�Ϗaޭ�B������c�]����;�.�[,��|����0���/~OJ�[��������Z��+���~�X^+G�`T�̅x?J�'�*1���J�>#�����t��l�Ia5��_L�O�X�S���l�˼�`s'�d�k�'̬:VS�oN����?��*�����g���c�� ��j�ψc^L��Z��#��a�P���~5�ʨ'w^íy���WL7B3Ҳ�M2q�欥�KK��~���k�܉G�qY�~ E ��O~}��5/�C�Ф�Z��|_��e��篭`�RzD��[�G�� ��3\��⑴����W��2Nd�5r�ߎ��6��<瞕+�U��T0v=K\�NqׯZ�M�ȡs��J�����7�ץp:sp�c�_z���=J��*��F7g����39h�$���:��Ew}!V�ߥa\ܼ�3Tc�?����4���q9����DYgwl瞼WA�K��6��G��=6�z�$ga?��{G��3�(ف�X�1���70�.y�߇<5�F�� �5��i�L\�6�ю���Yik�W<t=M%���8���!�'��R�DV�J���qV#��3��튰c ��GP���H,G��t0��sr��H<q�e���)# !�j�wu�;�7r�4�q�`��<���!��,��:�=k[O��/�V�`bPs�N�Z��=�nv=o#v[�,�܌\�x����ö���l�y<��Yzu����9'8�4i�3�x�"��F2}�G �l 1[�R:��@�r:\�*T��]V��jeX�+�2�b��i�4��A�]&�a!a#t�G�W�Ɩ#P�7�J��zWTݜ�v�#DA��� �}��T���q��u���B#�=V�@s�ۚ.gؤ���wu�<���-��,�89sޱ�����~}*+�D(a���;VD�&R[vH�}�H���`�vd�ǽ'�*H�<�X�^�ޝ,�.I�c��Ӊ���M�屓�V\3�L})Z��z��AcE��j�qr1�rOJ�5���5�yy�.V���r1�;�Ⱦ�9���������q�͚������5��lז�y)� ��y�X���g�����b�����YW�6I�9�IhRZ���OBx�Yw��I+��zI���ɻ������Z����Ek�͌�9��ҞdVQ�έYc|�ÜRZ^b^A�̮SB��<a��9� `�[� m�ӭt���ڣ�}�I{f��(���JPR]�/�t��%2��?�f���G��z������+���̏�#���2pi�x�m�i�B�g<VK1�8�Y9f9�J�MV������+��bUEg���p���Q����I��b�z�O)h����OPG���ڤ�g9/c��oac瀣��~����Ջkp[p���<� �yf��Z0G�G*��fA�~4�9��Wk�R��H*����7�.�Fq\�0÷f�uK*ĥxjr~~� �➷G;��x5.���v,V{Y���2���:�\]9����,EiţN+ҧ�8�:U���8lV~���Ą�ʦXx�jY����Ϸ���ޜ�̓�~���=?� ��� �m��ՎI%�@�z�沣���}��J�督��C��uG�6,<��y��7$�yw�O�1��sR-���pG��bW4�D�s�z�����2}�J�kd̠�#�u�֚y�Ҽt�z�B�3c�cʯ�Z�Cf�9^G_O��mA�@�*�:\�9�)���70a�,A*9� a0�t���MՇ_aW�t�t'���i� �Au9ht���8�&�Ǥc�z�ֺ�m#�9�`i� �'s\�ƾ�QG#�6d�8��O}0�.<du��,p^y��)�`��>��֙|�G�i�c�:ӓO�x\�zWQ%�+��y����e��3�J>�Ñv��Pj�:{2���0=�*۲�W�)�����v�H%F�:���LE��G�T�HU��T�ӧ�T�#�W��b� ��3�U�����ӥLqM�<���X�sҚ�䜪�{WU�i�*;�����!F��Z�U%r\O�۸�Ǵ�cd[0}s�[Ƅ��4�u澂XDσU����x�1��q�;�㾅�G��qڽ�3�ι�3n��%������s�?�? �{�."��q�N���0��c�y� *��qֿBu�C<,6�z��<K�ky��s��&�y���,�KI#�"k� �@����~e�e=u�ZZ���apY`U猎I�Z/��-�_,6:b���g�c�X�T���b� v��l�:ҵ|=��+�I�]$��0���z�&�9V�ݜA�e|Lu�o�X��=8�G��G�C�@�_ ����`qZ{9�fG��C���&W�9�N��>-��]ϖp8Z��R��""���J��xj$�IA@�+���飋I�|���7ܻ *GRjώ�P�%]�Pz�W�x�C��P;��:�o��8^8<u������_C6/�N7H@�'5�a���}�5���yR��략��js��F''�kH�Ѫ�4x�G�=��Ń��#�OJֲ�X8������œ�~s�>�Ҵ�|m�&fS���+:�%E��hK��ŧ� �d=1��W2���_7[x�0�q�z�5�o�#Ù3��\���G��>��� L��5j?��� ��t_���z�$~4L����}e�����F��$R1p2f��;T^e�>���O�.��I�ژ�2^A����ZKX=����r ��#=j�Ǎ@��A���Rx�s'8��T.�b��_�^y��]Y�)S��}���D�s��+:���U�:}��K��<���T��2�H�Һ#�U{���Os��d��\w5�� ��r:ׯ�x�x�ys��I�wz��>i[���[C&w��J�=[Q�n$I�u'�s�����F���y�֠�d��U���ýw��`�"x�q��u/�\)c�<����!bҞ8ұ��!~��T-q�I&�:XCdpV�V�-\\3���U9Hc��ґ�.r8�_zo��:�ta�y�>Љ�np+K�c�Z�@9Rz�h �$ؼ�<q^���^Z�����b�v[��0�9��-��|;����<��w���p?��Z�ET�U�����ʾm]��֤�d�a3�J���ݾ���6����5����l������j���9�����QKue��g��^;�c��c���O;9l�q�� <�n#�w�U�q=�#���ۭo�:s�W�z ��X�uު���]Ƈj"�]͌���QW2l��h�T�g�Eh}���`}�_δm�X���MH���c��5Ԣ�1rm����a'��C�.;UT%���]^��}�2)��k� ��rZ��,&�u2�5�� �`ڹꇆ��{{UT@����� 9 0?uG�uS��l�s���,��4$������|�� ��+�Y��v)��RL�L�z���T�;�ʩ�!-Y�������=z�73m+��_j����Nq�&�n�%rܓҰ���ǘ��ǯn*%a���Uۄ�~�JD%w���)j*������zӕ�@����w#`a�������K�O�sR�ZF��?�Fx����� Pi����zT�<��P�>TKst0~lAڳ�� ��`�ң������ӎ��2�A!۟����\P�B�2�����Vlӱ\��<��bXU~i�y��K�R�}+�rՊW7 ��{�I�w�'���:�������;�1i���R�j7&�}���b������C��6�P�ON�ʩ�0l�B�뎕��Z��\6I��9�U���v,���g�U��rX�L�IM����O�t�2,����1��%vB>PO8n+����('�p��8��WF�8����\����8�]���b�ON:� ^�p�������'��fH�Q����1���f����+��=:W���GY�t I�+:5eJi�))Ǖ�<�)Y0ÿzf8��U`mo\��+�$c���Ӛ�SG�bh:shrpI��<c��\r2G��S�b�x�h�4�^��U�ֻX�`��d �4�3 �=��<"��9�s^b��ˣF���;��� ��9��FУ(2��g�dxY2����ƫ��G9���I��%���xB��W����\���:m�1�R`�Pq^�F0x�MT�#6�3�ڦ�.�)^h������ϑ�Q��Qә�Yp����i���Rh�_[x�N���E9��k�|S��Yn�Kd�_K��j;*�瑊�p���_���X�{�⅙��z��q!��+1�$��r}�܆cJkC���p��0��/�w�?Zӂİ���m����q�Z6֘c�5�[}��Q��+��>�օ���d���lNF@#�zճӎ��9�םS��PKs�N���jװҋ�����+;3�q��z�C�Y�Q���;��>�%��PHĴ�cW*с�������x�N+[���=E9Tg��1��qJ�}KE�Ǵ��y��V</>����ޣ��� (�?{���-[��h� ����Q�0F8�ң�!0T䚞f�&B���O� ��I9��������y���U+���?ݐq�p�DJ �@���A ��(����銽l= � 42n�8���C �c�_S\����T�=s]�x{%ېp �V���{��"�|�^����d���Z���,��s\���*���4���e���g�H�dU�ʃW�ўS��z �"a��ǵw���.��4:�w~��q|�~l��I�n�k�mBX�ӯj������!���0$ը���k���"O��x�n�@�����(+?gR��f���F�.3�Z�`r~�3��kw涴Z1M�p��B1��H���z:�6d�9"�K�eݞ >�X`�c��I\�U��z\c ɭXm���5%�� �8�"x�9���f�HlKՅ9�w#^D��.��憠�"���ԭ@B��V9���M�?1^�tѿ��]n�f���8�k ����R�S�o��e����b�?Ƿ�cv����π���Gv�\�+��5KD�x\���@�&�7�[C���"կ��.�t�!�'�sҹ}V�y�:Wy��jZ|� blw W�iW8c���K *zj,L��0��s�3�����j[�9#$m5U�����ڏ+ZD�$�'Ing۽H�R��$#=z�>����sM�/��^Kf^K�ps!�8�N�Ӄ�� ���R�>^�j=�_Cx��w4��VV ��K�ۓ̬}r՞[��sҞ��88��R�DZ��T�b�\�rK�>��p���ߚ����S�2:�4�<\�����r�T���N}�2Ӧ)�4B�I;�iu��?y�y�ZC��F�Oz^�,�In^��8�U�|��判�|V��Q�W2���4��F����*��ۊ�T�7��d�'9�Y�C��P��55��T�S(�:(�9���g�� ޥFx��<#b#��(1�k�~�dB���9��p����T������)���ذs��L��b�0@�G����h��)�SZ�P@�ʚ��F>��q�|.�I⼓������>cC�������R<F������szw��,^l��&��OBQZ�TP��%p �9��F��ig�+��A�����������v��T�fRi��1m�����u6��r�8�Mbiv�[L2�d������/0<�f����M���[�c�����q6���ҳl�F�����:�0éS�}+�&�^��}0U������Y� ����K�� � �Z���'9����Cz�և:�(#;zV�� ��'�ựv<����� a��]0��0��:I�7�Ӷ�O�+��uP7 JuD#p$���&����sr��<�]��!8�j���$@zSL�A� nw�2p6d�qY�����ל�W�e�#��U.YBc������d�G�玣��s�ձq��=�d����㟭d�R��l�H�ҩ�&�����Fu#�*��1����dٲZ f;���� �t�S&�z�߇�\�[�Y��O�K�i����{���/���5���1�U ��f����f �t�eZ�.�NH����LB������� L���Z��pq�ͦ�F�ŏ��O�QԴ�X��q�]�z|P������m!�;+*�Rp�jV��mR�i%Oӷ��`ܱBK�랕��0#�'��k�Գ��F}:W,���d�vc95Y������q�d��4�%p �>� Ϙ�t&f� 㜎�����F�3�U`�m�-��*���e)�S�)-�����<���\�ZWօ����g�й���d���w�D��}=}+�6�.c?vG�ُ,��z��Ob�����R֭�s�X�C��q�"�8O9�Z��7�#����?�#Hx�י�)Wa�E} �?N�fpUx��֡�o0x&�l����̱Թ������zf�~����kֽ�.��&��]g��Hm�X�>����\�!���R 9��B��#��b*������ �-�c]�)�Gz�"��3_h����:�2�#�x�Q�'��m���k��5X7(j�����b�ϱ�"ܮ ,}*���-�y+���Yk{x����S���[�q�5��)E٣������ֹ=mw��8<qZ��bF##>Օ~D�`s��]T��Z�7�[�o�O���jX6�pO���1�09��������Q�c7̄Ӂ\��zzU�k,H� ӊ27�㧭Mm F���7T\��H� I&��[��ܓ��U!NH�[�RT7�A\Ҩ�a�� t������G���`��k'yS���ֵ��I���s\��Q1��y�M1����ۑRN�'������A!���Eg��N ^~P3���=���M��� a����J��)�*ҹI�a�2)��{�ꊹc��9�:��l��8��*Ļ���q�Z��qC��<��y�=j䏻��T��ApHm�8R*y�3�ղ�G-��j9m�'����42(n^ ����x{_��%��#��n�\l���c�*&�A�#=�ʔf�L�֧�_O�)?)#���������88��Mf� #Qُ5e/Vf� ���@��� *99<qL�\�=9�N�a88�)m^#*9lU^Ȥ��"�%��n�:�I.A�;x�@ ����R�ņ=+�g��H� c�#��u��\mb8�X˵�85n v��ߵRZܖΖ�ue�9#��I�-Xv���<��6��Z�ٛE���<{�b��2橹m�����I��J��V�<�8lx9�H�˴�)�8 ����'�*���Gjn(JMQ^.>r>�4q��k�k�!$u�U�M��^k�n��&u+t$b��O�Ix�s�}���� �[\��ӻ�%l0Bm�?�\Ǎt�.�]J�w������μ�Z���Cg0;��'��g͞<��ij����8q��_� @�`p���b�\�3^k�hK6�̱�w>��:mlz���9��((dh�;`J��~�b"un��������G�U��ۏ��듎hu1�R-T��h����Դ��4d�xlV#�����z���6�7֬>Τ��5���Ճ~�i9�ڻ)����Җ�����ɓ�������j_ �����\rx�6� ..!0=qҺVkje�5ў*��d|� u��s�k�!�QA���L��a$Q�?��j^m��pi}��e���=��L�|��k�ȡ�B;�\��|-$q1����s8Iيx'ot����H�Z�{k%��6�=�����^�����N h�c���F9�jx��SOu�j�sΛ�����O4�q�qHzqA���䜌s� �(��g��V!�s[�7���PMds�s�+��Kb^�M��3���U�t$����5k�����ۢ��q�t5���x�s��UE���t�Ia���־N[��f�5,A 3��V�zm����H�-�j����1���79�A~��[����J��vrNv����̌��}��Ko���:��u��%�sOӭ[�O�h���Һ#�\�錪�-O=���N��{֕��l)A��ֶ.4VYN��Ջ+%�G��N┴9=KI`8BlsQZ#G�F@���P�@�X{��-�n~UlV���B9̴�H�eA��54S���9sD�$�^�����ޚM ��n�w@�,Ż ߷�J�y��;�d�˃�q]��.�7���_BY�k >F3ڶ,u�#�8��覍y�??֡���H��sZ'aZ�Qw�/�dg�q�J��U27,��5�����NA�}}�B��#�jM��A���g>Ƨ��x��뎵ԟ��q�z����yl�SZ)�d�c��� �=��J6�z�=���㹪��/^1ߚNcP��ut�O#����w0*�6~��=�s����T�f ����Ϲ��r��$�y����u���,�πs۵2A���j/�V+Z���-���jp��E���\[eaG^�P�% N���.�B�8�U�B[z�����![<c��db��c��*:3�� �0�溻==#�#��G�=+8�dH �?9Դ�����=ri+7�J�+��AW�8�W[;������3�+�G�r�ŷ�O��j&���j Yp8��O��m�XGޮ�Z ��z�¹�؝���5�4o��3�ߥS2�H%s�4�v�o����C&p ?�X�km�J�rpO�S�݃��qS�\����i�`�A���7'c��p�F�<�W����c#�v���4Κ� 9��z�kd �s����4Ee�f&�Nx�@���kv�R�N�ɮ�S��ܠ)�W5�ؒ�A�z��aM�G�m4��n[�+��m�:jo�2�+��wJBc�t⼫�^��`�O@:�5�F��N�J��Vx@��?�L�k>C�^�<,��� t⡸��.~L�/j�y��c��h�D/+�qҘm~nrsһ���?'g�5�y�l8����iz����A�(�=GzUܭ��=�b��Ӱ����<㧥uª�!�p���������5��>>��'9��p��?>�5�\%�M�c+A���� �1]m�(��5�����t�k��r�A�ں�2�u`�<�����No�����Z��2�H��N)S$6���M�۾2����(�܀�Ϧ+�Pq��rY88��:��4�A�<�ʑ�ǎ�ؘ�!�J���/\��zqZ02����uϭP�ǘI?�j�R�I�Q&H�~}nsO���2���<��Iއ�ڑ#B���8��4�$1 ���h�dt��GJ��W�:�^>�Ҡd������W���� �2rH�����;�ҙ<����qQ�8#�����z\��L��;u���1�3�ڪ�ɸ�g#�;~�|�ێ��ҕ��3�N@{t2ġT��U�y%�F:�����S'g��3o!�ң�5'8��*f<����099��ژ�)�Ca����6��\�{t�&����'�=i�����0q��jԬ;�2���d��Zu�|�<b�����G{d_���۞�� �jÜ�RD��۞s�*��6�#� �L�enT;t�9�x5�͌qL1`c9��!X��뤒��?�}É�ʓ3��:�?�[�&_�Ҕ�+��Z9,7!������i@����y���;��J�`��)(قe�\�r? �rTd�⧄�s�I4!��|յ�_R���?7�G1;z�ǭI<ArO �9�w,0rx���@ʗ� ��U_� ]N1�*I��!�sR@��I�¹*4tAX����匳c�����l��W�Z��!���:՛�1�S����tj����W�r�q,Lq��Ey�[�þ�0qW� >2���\���]�|*A���Ʊ�Bk�^9CE�� �vV�I�:��j���^}O�V[�1�e�T�4&�&��Īru�UN��.�g����Sv���֯ B�`a&{c���%��ѓ�iȐ���qXqhd$G����]��ݝ���r}kJ��4�G��R�I��iw7���ʅ-�Y>��������NM���:��DF7ƹ�G�bī��,|4���u�3��M�Ȟ6 bs�F+ӯ�8�L�����4�h�Uϯ�/��b�����x5X0G^+μY�Dh_1��⾧��� !;zW�x�D�Ċc�?�j�C��:ib.|S�;Ík3���zc���]���:澤�����:F23�:�͞$�6��\�{9^'�.tN.�iTFY.y����K��!nk�<�!�g�בK��{R����ٔ�4������F;�0�����Lϔ�ןj�?��"���H�^anH0F �h�AjJF�;q��Z�YڒG����R=_èLXQ�@�]���f`6�1��<7o�:sȮ�D�AF�z�`�������vc����u�;Rz�8wIX�h�J��)�v���ޯN��'�(�S+���ϽtV��h뎝듲��� @�����æF �m"Z�z�`���O��d,J�t�OwU�b�ݖ�Y7�7E<�ո�gԯz��!~a�u� 7AבO0�����N��H�ASf=�*���N���[�S�rzzѸB��∣,O@W��=I�_N�C�<բ�܌�EH���\�s�멢��)�zq���$&�I">R;� �]Ò9�)N8��NG��i��S[C�S�jE��8< Ў,�:�~t<aN:�9�]�,�7)���Jg!r ����F1�U9Ѓ����M��5� �AUnn�7率ޫݱ�H��|�M�ӮWr2}�9Y��^|�\�Oo.�$��V� �I�$�ѷ�霜�>Ս����G~+J�ݺC�yGE��L��:V����9�T���x��Ƕy�_ؖu*�<��V� ����r*�R�+����ES���;��lb���J��a����ZҿF����{��e���$���Kr�0:c8�0]��F�2:g�X�:�� ��0EWiٟvH��ܯ�v�h��e�pG��Y�)B��$�U-�ʈ��nSֲ/�G�y��Rzh#3Yϒ��מ���m�����W_�K��8F����> <����Oֹ*��7�����r�����з$nj���N���( ��3�Mdѭ�(ă��ҞIٖ�;�^7]��t�Zt� �Vt�+��(L��sӟa^�eX1��Ҽ��o�a=���\��q��D�pwҺ�/tʳ��1�!�m�{}+&��p;�H=���� A��������S�P9�02�s۽r^'�VYr"����0pW���� f�2�<�+�祇����� �v�5B�A�NP��j��`���W���X�3�����wƥ�!�<<����A�T���d�+�/�d`���=OE��l�`�c9��qgDj�sµ� �X���cT�3�c��5��Y}���x���\���k��-��h��!����`T����C�@�vZ��ۜl9>�N�D� h�s��z��A�S���+�h���[�6�� ��Si�yU�p8�[z~���R~��W����q� ���n�;��]�鎕5��FQ�=q���:�[M�=�<W�R���E�`� ��^�Buh��w���$~�R���V% `q�j#;;�h�' @R8��i X��'����$��#��Ur�Q)`��Zs�TIq$9,�u0OC�:�W��g-�ǥHA\O���]�BC~Xf`UOn��S�U� �4�� ���Tr0�W��z�We�YŰ�g�9�����]�����c�`t�o�d(Fӻ� ��$��1���pM"��� �@��Q�pZ�C�,r8�2�F ���;��zVrBd�'��js���ބ,1���4�����s����͠���S$�w,A���ґ�#�`��Lt��}C�ϕK6F��Q�g�J���O�Hb!Nѐ?ZӟPM!VU�=���qٽ�y`�F@�9��GR�0��ݷ�?QN?x~4Q_�t?8$����o�� (�{1���?r�Z(���<}�q��J(���Z���c^�?O�E���C��'�}j���ڊ+���M'���VO��?J(��������U���(���i�$_��N��T~�QK�Os.��y���>�E��^��c{M��O������]M[��z�?֏�V�c����֠O�� (�Տ�C�?����^y�?��O�ʾ��v<o��x��?ʾN���!��(����O�3�����W�=�B�P~�RF]��Q�QE_bz���Q^���<���E���D�2��H����WU�����֊+ƥ� ��Ɖ���Qx��=h��J{S��x~��S'���4QJ�C�5_����H�t�G�!������jh:��QE_�%|"���_��V��=�V��:����QE5���t_}��ҥ�����QMn���.[}���#����=袷��"z��uQ��������R{��}��6��?E�B�f��:ч�=���4QP�#C����yU����US�Q/����]��Z�C�袢}}JE����Z��'���E�P](>��WS�/��(�����.E]G�I�>��'�_��QED���?�O�+���ֿ��:(�>ѯC2O�~��UQտ�VOo�.;������w�� (�E���ٻ�E���U��ǹ�x�EwQ� �_�*jOҨI���(����!�G�Y:���Ί+ϟ��v;��A���*d���(���u-��ލYw_�?ϡ����� ��W�>��x��x�QEr�s������?�Z�m��� �+�u44��?Ӄ��ErT��bh��������}(��'�� ?u���[�E���?�ҩ��U��E�?������W��d�[�h���B)�������UC��ċ�i.��������n4V|�i���V李 ?��?����o��ܢ����,G����Js�S���Ee-���o�)�}����E���6?��T����?�E��=��*��ESٍ�� |
| URL | http://zero.webappsecurity.com/resources/img/main_carousel_2.jpg |
| Method | GET |
| Parameter | |
| Attack | Origin: http://4qCMHsQq.com |
| Evidence | Access-Control-Allow-Origin: * |
| Request Header - size: 336 bytes. |
GET http://zero.webappsecurity.com/resources/img/main_carousel_2.jpg HTTP/1.1
Host: zero.webappsecurity.com User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0 Pragma: no-cache Cache-Control: no-cache Referer: http://zero.webappsecurity.com Origin: http://4qCMHsQq.com Content-Length: 0 |
| Request Body - size: 0 bytes. |
|
| Response Header - size: 351 bytes. |
HTTP/1.1 200 OK
Date: Mon, 14 Mar 2022 07:23:16 GMT Server: Apache-Coyote/1.1 Access-Control-Allow-Origin: * Accept-Ranges: bytes ETag: W/"112646-1358497020000" Last-Modified: Fri, 18 Jan 2013 08:17:00 GMT Cache-Control: max-age=2678400 Expires: Thu, 14 Apr 2022 07:23:17 GMT Content-Type: image/jpeg;charset=UTF-8 Content-Length: 112646 |
| Response Body - size: 112,646 bytes. |
����JFIFHH���ExifMM*V^(1f2x�i��HHPaint.NET v3.5.102013:01:16 15:54:14������(HH��XICC_PROFILEHLinomntrRGB XYZ � 1acspMSFTIEC sRGB���-HP cprtP3desc�lwtpt�bkptrXYZgXYZ,bXYZ@dmndTpdmdd��vuedL�view�$lumi�meas$tech0rTRC<gTRC<bTRC<textCopyright (c) 1998 Hewlett-Packard CompanydescsRGB IEC61966-2.1sRGB IEC61966-2.1XYZ �Q�XYZ XYZ o�8��XYZ b����XYZ $����descIEC http://www.iec.chIEC http://www.iec.chdesc.IEC 61966-2.1 Default RGB colour space - sRGB.IEC 61966-2.1 Default RGB colour space - sRGBdesc,Reference Viewing Condition in IEC61966-2.1,Reference Viewing Condition in IEC61966-2.1view��_.���\�XYZ L VPW�meas�sig CRT curv
#(-27;@EJOTY^chmrw|������������������������� %+28>ELRY`gnu|����������������&/8AKT]gqz������������!-8COZfr~���������� -;HUcq~��������� +:IXgw��������'7HYj{�������+=Oat�������2FZn������� % : O d y � � � � � � ' = T j � � � � � �"9Qi������*C\u����� & @ Z t � � � � �.Id���� %A^z���� &Ca~����1Om����&Ed����#Cc����'Ij����4Vx���&Il����Ae����@e���� Ek���*Qw���;c���*R{���Gp���@j���>i��� A l � � �!!H!u!�!�!�"'"U"�"�"�# #8#f#�#�#�$$M$|$�$�% %8%h%�%�%�&'&W&�&�&�''I'z'�'�( (?(q(�(�))8)k)�)�**5*h*�*�++6+i+�+�,,9,n,�,�--A-v-�-�..L.�.�.�/$/Z/�/�/�050l0�0�11J1�1�1�2*2c2�2�3 3F33�3�4+4e4�4�55M5�5�5�676r6�6�7$7`7�7�88P8�8�99B99�9�:6:t:�:�;-;k;�;�<'<e<�<�="=a=�=�> >`>�>�?!?a?�?�@#@d@�@�A)AjA�A�B0BrB�B�C:C}C�DDGD�D�EEUE�E�F"FgF�F�G5G{G�HHKH�H�IIcI�I�J7J}J�KKSK�K�L*LrL�MMJM�M�N%NnN�OOIO�O�P'PqP�QQPQ�Q�R1R|R�SS_S�S�TBT�T�U(UuU�VV\V�V�WDW�W�X/X}X�YYiY�ZZVZ�Z�[E[�[�\5\�\�]']x]�^^l^�__a_�``W`�`�aOa�a�bIb�b�cCc�c�d@d�d�e=e�e�f=f�f�g=g�g�h?h�h�iCi�i�jHj�j�kOk�k�lWl�mm`m�nnkn�ooxo�p+p�p�q:q�q�rKr�ss]s�ttpt�u(u�u�v>v�v�wVw�xxnx�y*y�y�zFz�{{c{�|!|�|�}A}�~~b~�#��G��� �k�͂0����W�������G����r�ׇ;����i�Ή3�����d�ʋ0�����c�ʍ1�����f�Ώ6����n�֑?����z��M��� �����_�ɖ4��� �u���L���$�����h�՛B��������d�Ҟ@��������i�ءG���&����v��V�ǥ8��������n��R�ĩ7�������u��\�ЭD���-�������u��`�ֲK�³8���%�������y��h��Y�ѹJ�º;���.���!������ �����z���p���g���_���X���Q���K���F���Aǿ�=ȼ�:ɹ�8ʷ�6˶�5̵�5͵�6ζ�7ϸ�9к�<Ѿ�?���D���I���N���U���\���d���l���v��ۀ�܊�ݖ�ޢ�)߯�6��D���S���c���s���� ����2��F���[���p������(��@���X���r������4���P���m��������8���W���w����)���K���m����C ��C ����"�� ���}!1AQa"q2���#B��R��$3br� %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz��������������������������������������������������������������������������� ���w!1AQaq"2�B���� #3R�br� $4�%�&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz��������������������������������������������������������������������������?�.�f�Z�4��Q@���4�}h�����(��(P(����ih:Q�i?�JZ?:9����(�@v��P߭��K@9��S@jJ:�w���-'n����������4qG�����ʌҚ?J?J^}h����"� ��zP}9���P(�Rw��4�i�֗�w�(�����zP�t��4����*?�J?:�9�x���PG����Lњ?iz�@ ֔�=i)G4���ڊ 擊:�Q���z�g�)A���%�2hh4�ю(��Z)(�����u�w��w�Pi)�ܚZCGJS@ ���(i:R�A��i���h&�����>��ޔ� Z(�֎�rhM&h�Gj�Ҕ;���}h�i{PqA �JJZA�R�;b� �G��s�J8��zSހ��f�Gj3�Gn)i�^�i:h��x�&��Z(�)h;��Hz�G�h�������@'�KEZZY�*�X�;����1FW#�`V�G�iGkd�,]�3�b���Y�M�f�RqO���&q�@�Ն�ld�el���R-����z�i���x�x�V���Z(z�@��մU�?���֓��2��E�}?Z���R�@ GlR�@!�h�x� ��~|S��ʁ�U�c8 ���� ��� �g�Q`+�d��ir�� psQ:4g�O�����P(�S�-%-7�����E�-!4R�f�})E��Ԝ�R��FOJNԴ~~8��4Q���)�p9��h���v��?��x�PA���zӨ {R�QHiGҀ �? ? Nؠ��_Q@��G�'�(��4R�����}�M-%%-���f���3E(�����:��4���PsK�Rc��K�4u��@�i1�-�ڀ▒�O�G9��Ҍv�ރGjA@GQցG� � _jC@�1GzN�(�:����@�P�JN��i(���t��J;�ޗ4���A����4�Ҏ�){f�����Jh�i(�JI�(h�Pϥv�f����c�@j8��zs@ �(�Qޔ�P�_˺�\�#�[#���}E�[����Y�t �dS��R@A������ާu�Hl[|��;D��p��>�ތ�tg5���G���ʹ�w�߃ב�2&ѡ�w�!ך�?���k/��~�h�Y��V�#���h6 ���?9Ht6 �n �M�ς�N����4[�y��ѲO%��=;֮��#�>j�d����ñڃ��?:�$�ߖ����W�x�E���ba�^{����!v6�vCg����'{�R�- ��$ �xڭ#ˊ̽���,T�'9�����%�p�.��G�늡��RJq��Y��5�'�Z:U*�*A����A@��t����g�.9���~ �<I�Mw�����)�2J08L����ך�����7�a�XO�]�����@~��m���ln<9u����\3j&D��mWb�8���8�"��sg�����'KW���z*j6���ww�� zsZ��L�ݶ�ͫo)�$�t(P��N���y�:g_'�� }���o��Z�K�=�Mυ�JZ&��<���W�3�k�/X[���?-�k����Z��G�u��s�H�t��9��+q���˫R����<��ΨM�~�`���!nM>�iv �91�ލ�v� P�!F���{��[n�}����͔�����RmLo� :Qۥ�H���Rf���P:Q�((�b�):u�#4PT�ʏsrH#GuVr>�'��S4��dS@{G��g��Ѥ���5X� �k���=8�?�t7�Ǥ�k�OGt���jv��C]����=:��:F����mܯi\B���ѱ��#�W��Ң���n/4Fu@#G�d���G�z�:�QIhL5?=<K�c�φ�Z�ÿZ2u>He��s\�Ɖ���ݫ.rf��>�f�������Oo�Fe������ ���_!x��Z�7�I|�-���ZI��d��9yp��j��*$H�w;9�}GJ����s�*��Y�V��l��FTZ�pF}���0�P��O¡������RsP��sG&�Ζ� �?*Z(�����-%-�(�G�� �I��pSҚM�u�q�.>y��dSŔC�;}J|� "�ʴ%���g�����Gu��(�`S�������2�;w��ԩ��f�CKIE q�E&��@j=���Z? :�O8��ZO�����i����h�SG|Rs�ih�� J^�PzQ@�旷Z3�;w�G�A�- ��>�w��9��}i9J>� ^3Ҁ�4��P(i;��I���w��G�@�<���4P)G���ڀ=)(ϱ�� �=(=i>�dPx���ր�q� �@�� (�ހ�� -&;ө(�P1�"�1@IA�ހ�����PG�n����g��Ŝ�+%�l���Yd*x �Dנ��P��%��tmL �bIܼ�µ����^���A{x�L���d�X�f�O���o����4��鮺w�>'D�Qg�8\�o�2?O����&��ƛtdb>Ԟ)�ء����q��]k��[��е�CC��r�y=�Y�2��Gþ?�ԅ���Y���υ�{�GJ��I-��y$<�U?�����1agp��&�`�1�\��dJ�]n)#�ek� ���v}�f�fz$e�Kyd������#_--�=N[�⬬#���E�-$����۶���$�0"��n�-��^R�ʼn�Ozm+SsR�t�RP���4f�Ҁ=��Dԣ�ԯ�&h�;�)p��������+�7�o������z���imƯ���c������f�Au{|�c̫v�̌�VE�"���;����=#�_����3�6y�����Һ-x#8�L_�^��i�km'����Ɣ�c���6e�����C�Q����þ$�vJ� ��g����'j�\鳫��GԖ%�˪��e�� �=_#�T�ٌ���-�H�He}����6������,ҟ6K��U�>��{z��\�r<� �_�n�H�'�{�@�Nk"����K�tH�ʲh����O;� ,�s�_(��8���I !�s����I��I��&}i{Q�Ԅ'j? _ʓڀs��Η�E��>�R�ZN�R���ޕU݂"�v8P;��P����y���"��G���a 2�*��:`��W�΅i������������g} i�����mDK4�z��1F��>S�e�n��o�f�}&8��w�%wI%��;��+F�B��������CD���R������c?�O�Z��z���aL����17��zW��uM����o��i2Z��`� *�#��,o:\+��$K�0��p�p�)r<�X��|��G}zu�;�V$�3��K�Z����!w��X�X��θ��N?����2�H�(E��(�X��nr�8�*��}й�mƪ�{�1�����@�A����֖��@�g�攚%���p+ҭ>x�T�T�<���,�t��3���������$ifH��p��q_Z|�7�C�.�e�]��'������0�M����ޒN�3�j�>x�g�<e�K��<)�h�`��YI �p�6����>��bW�G��[M��H_xn ���n�d��[h��5�_|7� Mnf�Ҽ7s4��2�B�PI�J �)Yligk������Ԏ�l'F��W�����]�ˈt��A��l�ܚ���R?��vW�qC��-Na�w�,6�����^�$>x#�^֚$;V�v}�+b7�����jo��0����V`������AK@�@�ގii(�E���:�𥤠<�P:�Gz(�G�A���֎��c� J(Ԙ��(<�E�ƀG�QZN٢��G^�Cҗڂ3@){�ފJZZ(��E�G��K�K@ �E/zLPE�(�@QHx��I�4u��Z:R��AҔZO���z��撖�}�i;�Gj:�{R��h��u����@ZZm/"�ƻ����x�g�y`����>b��1�}95�q���g \h�;����jZЀ�7)�COʮ��L���(�+�˫|=dQ�m_O�&�]�>��������!m������t����I�?�~&��_,k�gbu]y9邱��u�Ɨcc��f�9pYP-&�pc\kY�ӵ���5��r��[��7�i�L�F{n9���<Cg>���Łn<�c��+��,����E��t��;��p;W�j��y�Q���vK`v��%���$�d�� �{T:�Dm�3M&�@���:�x1ϕ���SP�l������ϚĤc�.��B��j3O���#�֣?�&!ԟ�4�� ���N1@��[[���\���L/UVUP�nΌ��M}{�U����5-ǐ0u^�S�3�2G��Z�s�b��j��$�"Tā��w��T�j�_���ɢ�������"@WV����}��3����D��Ƚ��]�O��x�RF ����I�7�b+�O����Z�>S+1&ي��'����~#��M��M�ϋ�����֬L��7� ����|w6��,v��l.�q1�����S����,��n����f2��k�N�v���X(�1]�&���%�19�%���s���O��$��w��רv&�N��O���oƨ� �tʮvđ�N���˓�Ε���<��G�A��B�((��ր�4PtiM�����qI�|������[4�|i�YK����eh�YSvY������c�k[o��U��Զ�6v�h��VM�nGpz�T~$)l}��� ܇�i�-�(��ppy_�s��dz��������|�b{_*E�6(��\���>�8�o�L\d��s���W�v�J���>�̗^ ��G�����&+YL�ώ��6��F@�]֗��;�'�|��K]s�R;[ڠ�)0]�߯��:X�Z}�A��{$%��u5���~�+�? ��<7k�b������HR���X/|�fǦ�A���&���ܮO����Z��Le+��v��?�zȻ��� �H[�+����c���95W5$� �~���`��4~�~4�� 'zu'��9�h>���8��4sá[_�WP�nc�'�ý}e��U��:u�z^������$#�F g�����Q����[i�EPބ�3��ᧈo4먴�XY��Q��1�Ny��R+j{#��k��=1��7��0�0�l�ud��+�.1��5��|K���f�?iWWL�C]�G��Ry������Ť�(��֗�M.B t�����q�L[2Os^_��_�Y�Q��3�;uMc�wn>����Z�O#�.�4����O�HNҷ�b��gG��7;�o�,?�uZ�1$Җ�����僴D���k?g�����rē2{rj%q+X��>̊T][�m�<�γ.J��MZ���Udܿ�E�V{�NMK;��R�"E!ϭ-��sGz`ڊ?: ���R�@�<�@)��� 6�߭IJ2���MH- #��}��k�^��N�9����;�M��.V\^�dZp�s�G?�1�\���<,����)sN�>��i�ך %O �Ҧ����T�b��]�GP(��!�[6�,��b��\����r�Z�Փ��`i�s�N)� �AǭKqC��9�ޢ��N�sCR���X}ix�R���J3ޓ��)X�������G=�{�J�<R�b�O�Ҋ��4w��)?���4�s@� 8�>�dz�LP�z�=3GJ �Ps@x�����piq�Iב@G^��J@h����K�'O�������|R�n2� 9��W1[�t��[�PX+�����Y��R7c��L�}��Aѣ�����G�����7G��w��oi�`�-[������k�����J�� Դ��B��#��N���!��W�Z�I��O u��>V�0��?����[J)�A��<?�džd[����Ò/��C7�d0���.�r���pv;�\�}��P�<���$�n�&�,�!��>��>+����{R����?��C^�M�r��m��-�w���U[�i����F3(��5~�&,f�F�2����%�d�aq��I>T�-���?�b4r�+���� [�#H� '�l�S5"ZJC�Qۊ1�SX��s#�RDk���������q�]�$�$- ������ĸ�+��2iږ��}��=�̇��7����7��|!�,�>"�[;�x.|�xa����w�C?k�o���Ҁ����.�Z�O�M����D�?��5�ر^�γ����h35�Z�P��Z�b�Eok�x���)h�E$ҥ���H�22�t?)#��}�㩼Kg�ۈ��=:���u�c�0�?��7��4�da�������G&�-Xڥ�<f��;�BM���6���Yw��ˤ��2O��t��t�c��+�6�/'𬻈�T���C��9��Y��W��^�@��jGe����z��MX�l���T��(���ށ�!s����t���d8��tY���ӄNF�Ҵ���v @��2OO�]m�a��nG�ҝ����u����EE42�G�!=2+�����4���9@��:��/�Ȋ�$�E�qԽG4��$����L�j���Ҏ�~��S�j9~!��j�]��n���,k��e����c�z��i%ߌ�K|;q!��7��`2�ԎG#�]5y-��~ ���6~\?ĝ*�9�>�~bc�+�o�v�����{�#|14n0��9I2_����/�K�Y_[�7�'�f�`"�X���s�G�����<9��r��%�yP�?��A�dl3ZMj]=�_��I͕����I�Gנ`��u� �I�+�|�!.}~��_|6�}��:v�'h����o�xι �s�d�d���=>�����%�g_iSE���\d3?ʺ�*ż��[f�+���,���-�~f�g��;�W�٬JDW�Ċ �B~`��U��+��������9��v�H��)i1@n�b����F-��)�Db�����=������ai�X��d��ox�'o ך,^z�8�}�g\�����}>[y�C���y�n�9=T�y��_8�z�/��G��w�X̊3 �͍�?�_��j��L��b�|;,I:|>խ�#�/|-�}���o0������0 "���Ϳ��D�L^ �~Z��>���YH�W�|@,/���)��Oz�~2뷶L"d�HJ�Z֞Өn��Wh#ޯ�SK�S�|Q�ffm_K���� ��?1?�p���n��0:!��������V:s�Le ���/S��8G�C�"L�I2S]����ˎ�FN�U��؏����D���=���Ա�:?�*+7�R~�5*Z\7��#�I\D4U��.XH�Bj�Ү唜��y�?,M�t��U�g��ϻ���o.d�c#Њ.��4���ڒ�zb��t���y/oೋ���cRzN9���WI��+� ��\�\�7�i2@�I�*���'����A�v�����F�a,h�5��w��ݐ������4�E���Ҿ,j�r��&���p�}3���Z��%t��f�Ş&����R��x��I�;~�k�Gĺ�Z)k��Փa�/!�n�Y�O�[OM,�z�|@�����Ǻ�������ds�z��k������EŜ��6c���+�ύ~ �f�y/��L�&Xشc��K�^�}Q����Dp�@Q����ڊB{�q��{����8��?ʝ����1��1�W�S�*���0�e�rs4���0i��,��d�� �����l��>Dr�_/mgE#E:J��\����Gz��yf��F,s��~����}W���|�x�U�q���x].R����GV*~PW#={ק�_� k�³�-���O�� �^�z��u�V����dd�;�#a�9�I���J��%��R^�s�n� ��nq�֍ɕ�~ ~�>��O��#�pB���X�}�=#�#�'�{]>v�z��m�?A_X|a�:ls\?�5�8�0����������D"y����x8{F�䒢�'k�RQL���&$�n��!w��e_iw!K��p �!b?�k[�%Ԓ�jx�C*��ӭ`__<��ى��g���j�2[|I*�UVb=*y�}�W=��@�jv��v4����JҁҐ`��1@�ڒ��0�(��)Rs@4w&��!���'�x����ހ�SҊCӵ0 Q�R�QH84��ΐ�4������h�' �-�sGCE!�gڎ�P}(��?JQ�V�=SPѵH�.�Kk���D�=A���3J(N�{g�O�3⎕4vZc[\Ƞ�P�f�������������n��K9��������k����Cq��2��H�9��٥r�2#�8澯�K���@�I|9q�uW���z}�O�kx'%vE��^��}��I��i�vy'�* �?w=kμW��<��L0q�Քs��_n]x�X�M�<C=�ʧ���H�ă^�M:����<�X�-4Եb=Ǔ�j�l�����Z�$ƶ����{~u�qw?p�nHPv#��\���z��[p>�(�W�@7P/?���e%f[NP�-�+��S���<�]]��{B�hܨ�����\��FY��c?t���+b��iG�=�����n|d�{(�&�ɎicW�#5��{7�oqi'��/Q�������\`)<���}�ȫ��=����𦲮_C�R�8��n18}Q����J��<]��<;����=��a5����E�'�&}�¿�c����*��0n����_Y���RD��9�>-�~)���[^]�oĶ��ُS��:�Wq�>��\�����ً�⎃�ZKi�im@�g�+�&��PW�?��jRO��%�1�WQ�܃��S�Q��w��<#�ڇR��� ��JGZ�?�h�I�]U $�d �>��|+Be�R����>k���n��N*ɕ"�`N�h����?Ϋ!"�X�9�k;V��C��'m�˸�3X�F���l���w2\9��B����CἺ �Dv������6P�w��>���+�_����b�h�����Oi��b�bb����"x���W$pA�ֈ��[��|A�ƺ�O��K[� �VF{w�Źq�Jķe�1l�op��ps�&�M|)���7VM{�^x�A�@}�v�g�Tq�H�G�?�q��m���4��Hb�����\� sK�F�6�-��MV4$^HB��s߿"���,^����>���?tJEY�U�C�c1�M�p�����o�ZK�����g�:�vN)���a�V->*��d�ۜqY����œ�a1G�ߌ���^�F��c���pE��p�����V>�y&�e���y[%�]v������jn� ��}���g�4Է+��l�߭Gޛ$Zm�ΐ 9��ྥ�i�lA����10���*s�g�J�k�e]'L�|Oy6�cqqB5�KfİI�CG8�Ү �&[_�ּK{�o��i)\�Ϧ�y��,?J���"����xV�������9& :M�K��^�� �Sk����5�z��o-�i���H���i[�1�U��\��֝���#����2���Y]��7��m��a�W��7:{T�gR��#�ϯޯ��2�)��;�oar�]9P��Dc�^�:R�$vP$jO����:��n�!�s��H^S�%�<~�\u�Mg]�E9A�G���J��-�9�x �K��Jʾx�O��1-b�e\����<db��n�\�������18�斵�1��ir�m"��qG�1<�Ȧ�b2\�ϦkB�I�'æ�J�|���G�����A�SӅ���~i��#��pif�ة�ޝI5c⎑�c�r}�Zе8��|�O��=ə��V�.��kC�uѯ�y�G���jd��)��\�� � �}C�����,���{x`Ǥ@����\Υ���HP�q� ᣴ���>��T�`s�[��g��}��5nș��%����C �K��Rz����� Ym�u���]�T�����+�n�v�����cF-�M�F�T�����:խ"�H/���[q"���W9�E,s��ʬ0pz)4�!���Hу�ym���О�g�?���BS�x��̪A6z�=����N���W���� ����b��=@]D{��q�����i�j�0:WďnU��ؘ$s�Ԝ+��<��Y���j��U}�Lxo;B��Rx82���+{]�v��~&��K��w� �f�g��`۬h-�(=Z;pO��\���RɨĿݕQ��=�2�mBV ����}k)�h��[���,̷J�S�C��L���a\yq������|#C��5��r�]��0.�H�3���g�x[�Z��Phs��2j�pS��� QW@���[�#v�S��Gr1U��m�#�b�>��=7�_��i~�J��d�icS���Tz���~4�xC�$];�։l��A�*��'��N-��:rJ���7ko2K,���F��#ӭ>�ff���HP8\�ںms^��-t]*���@��(�9�j��C#��6�#8���Rj�DXYeo ���ZW�u8�k�צ3^\�n#{�Z���I9���5�|Ir �q���m ���)��@O4A�� C�z���/��hm'Ak���S����@���=?�w���"��E֫�Yĵ� {�xtc�G^�ך�|B{|�k�>Q7����6��i��TU=>_�<�+����Oy�Ig�7QE|�>���';�����~ ��E��6��闛��o/��207`��;�����h�jj^$��h����#�!W�#�\���"�������g��M�M��i�nߐl~�>(�t�G��N���~��z��h��Ć�� 33e��9a��'�Z��c��D�l�'��H����mL�R՚�G��k`��H���&�� 5�7�r�ˏ��F�!��S���@.{c85��갴&?-� ��l���3�ұe$s�.C��<Q�T���ne۞��b=��N���)4��4��� �9Sv:0#�Wڟ|:��$�M-v���Q�g,|'�/[�]�p>��[NLv��h����A>���+o�`�Z<��|�a�r�V�\��j;�w����m͕��/Ai���{����_0�D�4�G��Φ��L��<�r:��?S]}:�G�B�����|���V7m��q��H�����pi��4��Ɵ�4���|����fM�ڛG�%�DGb��8#���oN�^B��� 80>��d�D��IaS�?��b�OS�9Tx�;E��T9����^8����)��<��F��jU;s�͡�� :���9�:��o+H����2������h��4 )ڲs���L֖����uo ��v��+�O���~5j:\WG0-ԟ����3m.��*ґ�$�'Ў>���O��2�Q��Q�wV8��4���Tv��洚(]��t ��$��� p�A�(�-���+�:��*#[�� I�ʅ�u�c]0i��@�L�C#�A�GL�QҤ?OҎ�g�� ;��4���0 OjQ��'�@��gց��(�zQҐ�c@<H~����Z)(�ZJ9�8����z�JhLb��Gj^�Rb��R��NM���3� 2�p�0���'�|E;%Əgx_;��7R�uP��� ���Q�X�d�ծ����%���__|-:���q�:��m�?�H��g���E%��������>�c�K�2p��o�뷕W�S�:��d��5{�1殥�,l���'<w�d�l��m]Yit���&��;��c#1�W��e����$�U��6�~Y�<�[�)롷C�<[}w-��.�f�B �n3�W%������x�9�����Y�Os����+ϘH����a7�5٣[x�R�-�����?1JWؕkm��22���������:��V��%|��j��/�z#� ��� ���_Z�Ziq��۴ә�|��Z�be;ep����J@���}��Ž����w7�b]^�/6MSH���R��K��uO>{yI ���[^���ic��|Y�����U�7c�7J}�<��:�ֻ����{/�u;cD2�� ���s�qҽ.��wz��2��4�K9����F�9�(lwV���i�n��ׅ4��&y���Zs<|s�پl�o�jpVw Y�#�߀^*a�4�_U��h&��!hN!����K�CY�o��Hn�#���������� ����� ��&���5C"`�K���+�9��o�_�������W�������W&�ŞQ:y�s�sT✮� ڍ��?n&�o:��kp��;Ę9����� �.��\N�."^��v�W��q3l���'�-��3�@��W�x�B�w�Y�� ��j&E��vi��R�.���1��P֚7�[��E��ߏZ߇������39�������;�Or�1�1,x��̣��5��kT�k�D8O�F��s�b:�ڴ!����oL���l��pi��wZn�:˵��X�Щ�w��i�Y�KM��> x�,�Զ:��|���o�a��������<��Gm��|Π��>��^7��6��-���kk�Go��w��W��V�ĩ�]X���. �ڐj����?� ��3j6g�|WyF�+�ǵ��m0Ǹ���2���IJ���j�B��֫5�����H�B"����ȑs�;��na��X IH�by�E9�s\��"%,���*Ҝ�ʢ���F��>8m��Q�~�պ��<��6>����O��[g�;��0V�ۗ�����@7��s�''��t���!YVT�C��B�i�]�ʌ~�����O�v����1�B�9�����͇��L2�#��(� e�����rr��q*<dvpA�kw�|�E��[%�r1�c>�H����UGF'��g�-R�H�}KQ��G����c�,_|��a�SZ�C�&��4���G���q�q���n�<ֱYG�[�S30B��n�R��E�G{{�y��W�Q���9�̇=z�T�sZ{'|SѮ�5U�����2�井�z��<���'մ9���������n�1^��Y�V�y`�<:����HX0=�xƹx�Zt��X���յ��m�s��[�+�ڌ1�I�y#�X�v�H��k�ܽd�ɉ�Sda��K�]���s�ndq��s�2��F 9!���=*l������鍵�H������4���Z��B���UQ���P��|"�nɎ��mD`Uc��RI����w��Ƶw�=��:�O/�����?Q��ǰ5��1��l�P�g=9 W�|8���� �����Vy�u]P��Q�s\$c�kK�:�!K���<7)c<�r$��K���o?Z�WQ�n"+�[�l ���F�g���1^��@�Օ��]�|-�c��v�`e��R$s���5��]2�x�+ҿu�b�Dc�eُ��M%��&�w�gw�<΄�oe�rq��s,V�b�Aut���=j��Bt�Y��i0�mΨ_�$!��G1����C]�32�q$���\�#�A�{���٭�ŐZm��(���H��?�~k&����J��'��c;��Q�[;x�k����wvv�<J��\�������╻�s���D��A�f����(��7}��U��w\�;Fz6#�]}u�V??S�-/��s:��v퓀N~�i����դ�L�d��|�~�U9.�z�_�)o�O��7q�Am'����үX}�K9M���`-��T6��9�弹���"8�ۃ��nq_E|)���=�+�^Y� �����q�7q^!���w��]�2�����ӭ{���5e���j �.ؕ�m�=�88��� 9� �n��S��$ҼC�$b�9Cj����G;�=9�2���B����[��k�� ��Ns�] ��3��{�߄�Ì���&{)bO�5����r���OM���_WF�N�:�Q.k�j�{�5�$1�'�}�HБ�*u�L����#s�6�s���?!ֺ�{G�|�DK��I!z�����wY�m�^�گe���e{��mh��-ˆ� a���*˽�%���dJpώ��ֶ�c�i����-��I�1YZ��-�,)�n�+��ޥ��=��8�g���c%N�+�Pz������{c�����'�,uz'��ya�;��d�Ʃ/��8� �?{�=�v-�ܩ#p�2��������O�����i9��Q��'��۟��B[g�ִ70SV�a��HW#��^���#%�4Z����>~���.}Ƒ?�p�>"oX�����rl1jv&H�=��������w���#7�5-�kt�8'���?^��\U�.2������"����v���<?�;ڼ�X�4u���k���nZ��i��?СA�������¼���L�p�+�\�.?�?zRH�f�b-&Ԧ������� ]��pv��ק��kU�X9�ure����w#g{7=6����`J��KI����5�'"5������ƻ$�op�R��]�iu��-�Y�+�D,��9ǽ}���Z$�����}�"w�@Z�cJе����H�b>ceq��?���L���T���8��a�4�}���:֑��4�wgӿaK�y�D{�|��L=�寋6~&�f��02��c���ǵ{/�-]�1��S�ȑ�%h����}���'��Eԯ���|5�n�����Q�ܹM5���!�X7L$#=p���3Y�W̸�LI ��]�/�[2G�[D�x��OMԒ;���Xz�x�q�8���=�ѕ~Z[r�i% �Ȉ��i��#nߩ���z���>�Ԧ�>�*�� �1����R��p?���w���*�����@4r)FW!�sҾ����}U�I�M�*�1"i����``l�+���uΫ��>��;�4j�)8�W���3j%�ı0gK�kI��H�oƴ���Q�G��g�^���M�x7B���N�5?��#�z*g=��+�_�_D�KGnwmSit�= ������m�MZ���2�3�'v��C�u����� �\H��rr{瞴�;�T����:���,�$h�{� �t���cY v��PD\�ǔ�H9��#]g��,W�[+,9#��01\�i H|�v=U-K����0{��������0n�E��VS�<Vψm�n�[O[�^$�~=�Y&���=GJ��юs�3�4���`!�GJ^�ڀ�3ړ�/j �'8���J(��iN;�R�o�i?s}����ړ����ހ&h�����z)z�ځ�@ ����2��###�Ps�/ÿ�Z��F��j���As�x<{���t8�1jZO�5c���M=�^I%P~k�?g�3���ݺ�x��G3��J1�:�S�dw�_^x��r�]ݏ�u�ɂbԖ6��&/^��~H��幇aa�i�KMm����F������9�+�>,x�9 x�\�Z #���L��0<��^��S�^�t�<7 �\I=x�$a���=���\�zf����d�9���pGޥK��eis��u[����&#'w��Z�B�5[�GOռ4�72C�a)H���h���0H ��z���x,L���2��FO�KdW�|9�.eK����FH��[�es�����Ҕ_5�k�#����}O@��E���U��ٵ[2�o���`H��9"�X���&F����P����𖥧i�7�y����!�F����� Da��ָO�zF��X���~!�E�ҝ�9_�v���U7i�����%��>���f�F�I���m$dg�U�a��0E�۷��R~��?�����֤��1�@��zW�����H�=0�=�����t�}��r]��Ã&6��`d��g�ƽ�Rua��mR�*�P�όd��>��Ku."%�R��G��~�eK���Gl���j[li$[�N��>!�Z��}�HYn���kr�9���>��p�U�u *MK��r�#�^3��s9����+�Пl���P�i=H����>'��W�I�_E�K"#��p?*qk�m�����Z�K� ���4 6 ��r1�~�!��c{r�J7!N�����֛��ho�/�[Y"b��a�p�<P8S���k�o�^7Դ�����V�p:U�W8�1�# �ꢪZj���!n-�sM ��90璬��S�ZU�K\8������T�<?{,�����iI��YW'�;��\��ב\M ������@``#U,8҄��EUG�t�E�pce��t^���Q2���6s���=3����&�\�-$Ś<$J �q֒\,K-��Br�-�n��f�5�kcج5{:�|�KtR�`l���q�^E��p�ޙ��(��tK��{x�yh_��~0`Er�'�5�V�Z���7�%�����z�u;�d�����` ��rs���[nǮ�?�VY��d��<5χ����}����n`y�h� � (?��rv���o�Q�NJь�!n��7'��T�tE�z�K1y�S:�BĀg�x�uF�Ͽ���aA�����=:؏J���]�isp�$I01D�ߝzï[�������Yi��`��]�-�bs�~`��d�{�J�o���'��n��Bɸ��oNs��U�B� ��xm��;⽫^�k�SL���5k�@A������I�ƹ+٢���-'�%a�H ����UdK��hVV��˛'�*�[��Ӄ��sWe��VU�3kĕKU?9?���Ϲ����`�P��L`խ;�H��snC?���.}w�O�����Ym��i�)�9F�#�W�+ Bq����4���`�J���`�٣�4�EWP�I��[0�)>����;�mKƲY�<�|̆yd�o}��OQ��?��Ú�i�����g'��y�$_uߌ�}k�_��ŷ���~.�݂����6����/01����MF��U���F�i�/#���I�^���s��������Jׄ$����?�5+� ]=f����E-�ū=BWBZ=GBkwS���q�J�~di�����0a`1��߉~4�� m�(�] P.�c�u���2:~u�*��.��i�����S~�Kr�=���;�� 9vNG��]OI.�&��J�A$�����d������� ,�a����dx��V7�5 $��A����#�ћI�^�{Y"���ī���ڝ�xفP����}��/ xsĉk�x�Kҵ"#mu�Ѹ�ɸ\��!]Ρ�!|8���Ӵ/�Įb:f��<��,����ZIX��#�ͱ�+��1�2�"���`%;�p��֯r���=�$[��Uʱܷ�J��3�Y9={ �]OB����:�NG�l��M u�-xr��?�l�3�� �M��s]���Fd� �1D�cb�|ǹ?���F�jE:���cf�鞔�����P�[F~\�*{�M����:'���X�\�|�7�Kp�3����}�k�o����5��ȴ��� rڋ�p$��>�$��g�.��v��Z���Ё���?�օ2Z:���̒��,�R��8�f���l���mգ!��[��k1u9nn5 ؞������֬+��%�,�Ț�>�&�cH��)��r0nen�Bz~��-��x���H�TF�䞁Gzv�$��L���]���ٻM��~ �y/�����˧�����O(q�%s��R3K����]|-Ʊy� �a|ٱ�2O�5�� �/����sq�&�8�.�9r�)�k�<?���-������%�3�9�~\�pz���x���M��$���$�m�S8�f�9^�ܐ�<�_�g,�%�!K��������u���;M���[̙�ɽ=�?�]���Y$o�r|�1��1����ҹ�_�>V��K����38�:p��ѓщ�x�[�Km6(��������ȯY��hSY���6w�t��u=�?_-�������̳�� ��i1���kQ~!Yi�Ŭ-$�VP��Fqӓ��(�@�=��M������c,� ���v+�ː�ǡ�5�7�庻�!�-�]� ���d6=��������N�xŌ"v2��j���k����HY�!`�s��U�Y���^k�5�G�5�G�H�뛹����B���^����%�Iђ0H�'��x�����F?(\�~*���¶~'��#�����7�����2FH�#8#�ڧ��W�F]�?��m2� ؞�(}��5����5�[��a��_�Up�x$���_�7�&����V�� ����$�~F�:�^���~*�"�|6�D0�"S��PEbO�/YK��P�������+��x���4cA�m�9-��� gebk��)蚝��'���$����X�4Ջ��&�xt���9q�jX4{�KJR�prd�Z��-�|<ڡ�9��M��E��f�ܦUO-y)`=�I�T��E�� �S�@c��G���:~u�����ud2M4��Ð�y=�+cTm6<��L���YÀ÷?�j�5��oj ml�&+p~g>���MM�/�9j����[a���P��O�}�ߋ������'�e��Լ<a��GX�ߡ���K�>�t�ɴ::�B z��?��%��� :O�����t�?��-�hu�)�MB��I��6��p��+��{i2�=��v,��!��E��$�5�}��_ܻD� ������U�z/�����"���-���{��e#��#��6����x�rW~�n��baI2n$����W�?�����:S���_��"��K���'�����o�/����h��41��V� ?x#ˁY�sZ������Kq�+r�����54m��'�#�ץx���zl�SÓF�ă ȕB��d9��W wbѱ0�`�@`~�ꚱ��k»�v�8��1e��> h�V�$Q���2yp�/ʬF2���<ל_\I ������s��o��k�����+ȕǗ}KcM��4Y�����x��v�����ݎ?�Ԛ��]ˡ���ăך<Q��kʮ�K��$�UUI���ZӰ��{��Us�I32���O����Cg`#�����-�~F��2�y|��Ԯ�r(����.������1��������w.���B5�� �6�����J��5���o��D�T����־��]�ħO��]y�����6.�$N� Υ�b��=j��>�m�ԡ�i�Ztz&�' n��y��5)<6�� B |�-����9�_�����|Qiegysk�'���q���#�����_1t[��1'�������w��+uj$��dx��3���ѷ�q��*� ;3��^�u�m&R�b�e�l������j���.��}��a��,C�w�����1}ޔ֑���1Lɴ�k��|��ci�����_�`�sIuM���/X�RH3�*���(Sk�����=�m%�.��I����kp;��;���{��l���A�[�(���$֗�|Kܲ=���S s�m`��nQ6�9''�t�w.*�f-ߡ���M����BD8!���T��Vԏ#|ǎ��x��l�.��T6�wi��6�g�5�23pH�ݪ]�#�N��?ZN�)��%(��4��)h���g�(?C@/jOΔ~4���?V1���,�;zBs@(�(8����9�y��#PG��F9�=(�ȡ�h?Z����*xv�^إ͌��і� �89GJ�3�6������x���u 5��~RP~U�w���5�ı��}��k�4,@$��A㡯�>^�\[��ׅ�<�xy8���[�ֺ�Lչ��O�4�Ӛ��[�Tl�m�(.29貦���~�o�#�߹:�2<��JF3����>�ԬR��M� ���[���'�<w���oi(�i���#��9�Wh�Vz�v�s�>�^x�����d���;mOZ���#B�ʼnE�kT��̑�N��#��J��t�&�'�O�8���?��{{Wz�CI�t���Q��|x��t�G�9�҃�n��>��w'��=)�t�G�J�|�Ծ�i��A8��[↳�jVR�����0;uO�z�p�W��ıZ�d�.洑�u��&�z�֗�|U⫨�k�Y�S�7�p�:0����t��j���c�����h,�%? W��$m��`��;�u�Y��&e�-���<�Q��J�咽�@���q��;�5�r����ˆ�<�����ꆳf-b�;�fٝ�����>�U�3ħ�O�Xڥ�K;JD��r^���M�S��9o<����Y"�Yp�Ê�I�I'9�՛2����j�{O�;�b�O���Q��R��g��c�`��y�|>����Lm�q�k�f��̲��*��=~�k�?gk���V���&�n��!��'�$g v�3���<�O�*8��r� �d�״����]�F>ઔ��#���sſ�=Q�I����Lwr4~��8?�|��6�Jy�h�W'����p?�ʌ�����x"]9�-#��H~y�즵�p��Q|���)�D����rܕB}04��.�����Ip�y1�&Q��]m��Z�z\�3|�#�1����sO����it�d��g�XW�a���vw%���֤�2����{�n�N�2�z����r�n�+ �����5����Q��%-сy��r�Q-�H.��ڄ�X�( �z�5���#�e�g�;�ӊô�e?*o�b���v �R&���P#oTko���E�;xi&�Dz��ֽ������ӵMJxT���{`�}��r̸�a� W�(�m���:�����+ݾ^�ޗb/mf�kh�6��@7G�s�ׁ�z���F)t=����-�_l�o�K�2b��.����t�-�F�����'X��mg�}Kź�Y�. �������xk��L:jx�C��p<��yrǎ��u�}�7⾏zD�A�� LY��B�ev�Y�c��SE��W�|��wX�T�:i4�A��c���^y�꺃;���&G$+~dWs�m#cJR�OH�Ѿ� ���7�pZ���e��B9!�.G�1�ӒH��,��L�R��l�����P�r�"JaHJ�Ȏۙ��'?Ҭ�\�D���G1�Ǹ��ʨO����N�!��ݽ��)%�<�rO�]�f���M�ܮFNc#�����y7Os��5j��Td� =z�˲ӭ�����M���p�ة��VD�i��(�^�]��=k��]V��5m6� ��C{���[�W8H]2���U�]��c�[�˦H�v�!�]g����<[�;��`q��2J�Wx��s�/H�� �~��K�x��J�VY��+ɼ���9�T%�}��_�v~��Ԍ7V�o&��][�}��C�Z���O� ���U�|�^��@�I #�_���n�}oc O+D���\ƣ��p���k�x�}-_X�� �n1jz+�+�]ꠑ�Z�v��'s���#3m<C�ȿv=�X�:��k�������&�`/��E�'��s�}���7�eY��,�J���H�r���_2x��~����ڈまF8�ԏjJܻ�{��3|��Y/n��1Z�?< �wkF$0\��{q����)����$�!�W��HTc������(x�bV�e;��<�SZ%�0�`2������k Gj�����3�/���q'���$�f�Ñ�0+j̘���xɹ�Ҳ-!�C�8N:��h�j���$ �ΊG! ��M&2 FKf�����������N�o��JKO�x.m�42���Y-X>��ws��Tc�[?��n��~5�]i�=��ɔD�gr+���!��� �W�x��Z������ȸ���Ns��z�����?��ũjZLJ���4��[��^E!YA�*J���>���q[A?��=,��gܬ�1#��\?�S(�6�.�|@� ڹ[��%0͙����5����t��Df��9(�+9�z`^���$�1��ڄѸ C�Id���;ׁk���Vα���w����4Һ�S��0�?��DKm~��Ս`�ڂI�τ�Wvr=����mC��eW�b���'�<�sY7V6��yZ���lÞ:z;�(i���SHmc�f����� �Ga�;P�m�������1I�+��3Z6ڢ �h!#k4�b��u5��G[%y9%��7�a�N�kB��,��ft�ɪןny}F%8��.��M<Ʈ>q��7`V��Y������"��qE��ss��y-��М~���#�͆��z�Z���eK��A��9���%Ȏ����?�Pi��6��WV��"6r�qޚvbh���X��J������h�V�r{<�����IH%����� �̲�k 2��q�ݱ�xW����n��!���ge ��F��g9,�}��lz���e+���a��kL}>f��?u��)�ef|��/m{q�&�!RO7�Nx�z��V��^�O���~�bk��Z��j��j�!X�U�I���"�;�S�p\I�?�!#�ר��W����C�����nX�C��ƘC��t����-*��Z�Y�-#�G�h�s�?�kCsv'=)�!�_Q�ܣ=0qT�Cp��jѼr~K-:,�g�����@����i��Z�yL�$oC� ��I��Qn"���%��*�*_���9c�0S��|�����"b��\��J���qj�Y�{˙���|i-#��`W�t�/Z�6��Gqoum,��/h�7�B�j�j�\�1-�R�>l@�ۭ{�����G�[K Ķ�K��^rC'�{���ә�E$ϭ�_�����پ��j���� :Ki��� S#���)���Zҝ���� �s��,t���"�5;���M�(E!�9wl�ް�/�� ��i��k�+���-�I؇�{V_j�JK�C�_�L�\NG�.v)�>ͯ .z���W��y�iE��7e�6�$שx���Yjq�n<�T#�a���<ז�$,�08�u��\�NkI6�l��kH�9$h,t�YPaY{ 8�>^k�O4�e�9#��1�n����q�/쭟i�v�ϡ9���\������՝�� ���}�Ɛ������$88��d�Z���g�U2��rܓ�hX��3v�O����<7g���l<�*����}��mb��-64�#d+�u���V�I8��ɯY����Ś�wĶ�M&��hs�� ���s�i��4�]>�_.I�2�,�e���;��P��9d� -�w+3�*��Nk�=�w��@?��{��,O�sg?�+��VG������?ٿ�l0�枾/���&�H�� ��a<v��6�e8ͣ�Ƕ��<�&ew�٩m�ԕJ�9���ױx��/���t���w�l7��z�ǽq�އ�[�-����fK1M��ԃ�sZX�W������Ap0����^צG���H��%�F�\H�=X��z&�{M������^�u |�o���EU�v�}y3[��j��n�����E&�m�G�?� C�:���W�-o,Ts�kj��[�ȯ��\q�5�6�k����^��bI�K�FCו���W��w���d��{&B�=�]�&���F`�������� �|���b���A�7 �������寴�%�>~��1?��pP��R�����V�>����� =��*6Яg�������-�{���pm��"���#B���$�n����Oҹ[ۉe's�������m��P��ZɅ����U>���U�܁��}O45bO�H:t�#���@;ѓ����1A8�iy�?�ZN�Q�(�h�Iޖ�f�� (������i�R���zP���=�K@h⁚3@�"��c��~4��I�����3O�%f�>��;��I�s�[�%��FN~b���n��k�W�V+H�Ӽe�K�Zj�h���gl�~�t���y�lm͌څ���٬ġu�.��w�<M��X�=k������_ �N�C��i��5{3��.Ԟ�F��|� �������~�¼c�:���<~���Ǒs&��c^��:�a$V�~�_�{8e�p�썋�ڼ+\��]D@�c�1jD)��ZIhh� ���v>�a�'}��s)�߂� 6�K;���G��E²@�H��+˼[ap��XзV�Qr?�>��މ�^�5����DK�?{�z�R��a;#�����V�����U��.�u�u�T�k����?H�F�����3�L�g��z ����.ѡ��֕t@�����u8�\+��C�f�L�v��ɥ�Uv��j�'����I��.����Ǿ��f��5PS�����z����9H�M9wK�~Mzg�R�&��or�1e�}����S�k�Wd�vr��zRV2��6B�P&�mc�� ��f��� �@o����U��ɷ9Dn�!����t��Tr8;�9���2�C��z��)�!�r5H����M�D�=y����]��O��[�X�F���t��$��}���~�m.����|�.0�}oJ�-�c��!_�y�_#~�Ƒs��[ܕ�s���p��8##��~������ag�<l��)�i�<��<��x� �+��]H�&���J)7Í.&9t�L��)#'$���zW͟/�8.�=3�w�s�$�n��ˁ��U������R��\|��,�������#7��>V��U��sY�II��/e��i�E�]�_C�bMJ�qJ#X� ���W�G/��v�9ʃ#�g�*��h��@0C��h�J�3VD"�b�j�K+�7��O�i�?�t�:f����7 %����;����A�}+XѸ�ԗD�d#�?�MYh'܂�n�X��N+J#j>]�g�����m�wό{�V�Y��f����Nom���Z� �͌���g�;��a���-�bf���H�#r��'>��Er��)�A��-��V��V]?ǖ�gx�ۢg�����M4���o�߈MƆ��Ktch��Դ$�����z�?�| �i-q�\�dHs2=ͻ��M�@�\��I��x��m#_ҭI�o����f��r6��z_�>)�#�O�丟]��q��7�!�L�'����V�sH+���^;��kIm%�S�D���\&���Gf����8,|ٙ��+�~)k>�Ԥ�O���D����ё��� �mJ�LK�Hmt�S#z����tQ#.�L�g��1�-p �;���)�cr�s�q�y�[�=�-ι7�b���yQn��U�ͫ�\�M g&[������̽UUe � ��U�8�K{�wR�8�؉���R8c��T��[�:´!�-e�N]�~;*xE��߯E���P{dG��V�rkN�0����q"�3���!�E �f���d.���k����j6��k;��B.8S�ܜc5��Z���a yo6�����xn���9�����Skn`�w�$�)���x�F�U���v�s�0���?�����{曦��H�t=a! g��g��,�5�'��hs\Eso�j^�����ͻs�H����Ҿ��&��M/IYW����\��nl�e�Y"�s��k$�<s���trݙ�� B��ʭ��'?���� �~���*�&8@��'�><\�];�[����\�ȇq�q����+t�/$R]ʙ�++����T����8��މ��պ�+���̓��S6�ac2Z�*�ɹ��FG��\��G�̕��zf{�;�U��5�Z�،�8�#����p:��8�w{9.�0Y��g>K��8���为,���䓓U��V;T�zB4mА@�=d��[3��W��L���Tl� *\Ĝ�v�kX�[LD?ng���;d>��H62od�%8F'?zF�V��u�AQ��Mjk�YM��n�WN��u32aۿ��;4jY�Cm�<~di8!&�A:/q_f|.�:trx��:��;A�F������E��5�_����.|��z����i%�r(�b��s�r�Gz���,m�>��/�Xˎi⿀���*��oB`�c|_��i��^M̌��P2��"A�z����ugu��@�e;�@��c!� z����,�~0E<]��I�N+��?J�o� �I|�o�s���_�C�J1[��MhR����R=/�)�A,P�?�G5�q���#=��0F3��6b0l3f�u+Ek��"�]Ǔ� �횅��w�ēk�ܪ��q�:����ׯ�y�n��Cʙd-�ç�+���Yg/#e���kX��T0��*7ѷ3�k�� �N�� f6ʟph%�i�iA���QV���Yhf;{�0~N#p�������ʗo%}�A��P}��$(� �(�����;'ʬ���_z��;D���җKt[�][h�!�}�߾ ���� ���/PV<�]N"-�7���k�o/�4_$>$�W>أ 'ӵX��8��=�_|����-�,��4;�<n�ݢ�A�����Q���<9K��� �Z�EtdA�(�vH֔V��W�$�dW�4��ta��<�5�.���2��I�ͷ+��We�4�E$�e����-k�s�w�� /%��ܘl-�1��ҩh�"[�l�o.����ǜn��,q��E���Ӆ��p<��A��G~����c��������O=�K�KC:���<�+��܍��G9����Ĭq��<촆G<�Oz��U���)Y|�5��W��Z�u u ��k�O�>����k�y��ݣ�*�@lps���q�b!$�u�W�=b���C̊͝�fS��$n�8�x�V����6Pi1��$��;�����8�¿��1�ɥ^kV�,w��Fc�����\�< ���0"O1� G yfT�����R���O���o&m@��VXa�'`x$�U'?�-��k���|<�śE��*8�T���}+�������kh����/�+�p������B}���D�FՏRTU������g$�֛��%��YV���/?��&Ȟk{6&��|]ao9�O]�8����O,���� ��/W���{�<���[K�,�_�kzu����K�i������|c}j�-�\N�ߺ|�}p8��Q3�q�N=q�X�Z(ܲ����P������,�9��d�`{�Qf;��!`���r7F3^��Y�Ϫ�w�����(�����,��ס�Y�c���^��?���C�%Ɲ�����::y�vpd��@@>� r�>�$�E�ɞ3�&��ʂs����V����a.�b�K�)�!<�=�XI�����U��::���d��"L�#m�׀u�u,��U�Ė>R1^C�#��g�g%ijo���ߤ��ټw�I�����2D��^&�'Gf_�E2��X�N;���B�v�����]>�&M����'ӡ�mB��=��.�h͆M��T��Ҵ�Bi�8���I��5�V#V�c��Ӈ�\��-��"��U��}A���{i�����:���r@��fC����k��ڄ.����{v���#Tfұ�k���8�d�S�����:H']���C CTuY��q3��Q���=��u�yB��˃�ej]�V;U�7�Z-T���p�q�f�KW�4�+|��Wi�~F��L迾�.���A�n�r�Y��O��:q̲n��&����Q�c��x��F�H��t�'��1�W1unğ.)�z�˴�U�jz�Zi��q8`x ���ָ�X�wj�]�>�\m��u5Z��c0�##�Cӊ\{�c�����R��Z%�P1@O4 S�Rh{{�x����8ǽ��������?Z)�z�=��Ҋ>�c4uǵQ@y�GZ:�Iڀ�b�h(�)M-v��?�S�#IpVA���{e���_i��|���Z\k�-����wb��$��_ �5��M�D~tP� ��N%8��������g��6m��~)��UG�%��(�q����a$�fd�S�=_⇉4��d�W�o���%ދ�y���Ym�1�5�O��� �����A������WY���j��t�o�Fڐ�z,7{����^��K�P�6Rh�qq�_��#��O�o�jb�ͥf�嚗�4���D��Ws����t�P�N�����ۋkkd0M0+tޣ18�`�!u��l��, 'U����]�����W��m��3{ ���f. ==�g�Ʀ;�5��>�~"h���N}{Np!5(�GM� s� a|O�������M��W����]@���W�:�e��g�O�k;�v��[�5���/��6��M�X��x=�n��+�>e���y�V��V8/p'�;��V��,�xĒ�x5�~>�Idg�e a��m�=���dm�H�s Z�^�h�<�D1�hO@Oֱ�� )Ԟ�Nq�5�%�Xx��v,O�8�}I��n0zap? ���Z� ����7Zt[3��(B:��L'O��.���Շo�f���%����>-����_Z8��v�*O����B��Cl˽@l�+���zWן/uMxg�Uմ�d#e��. ���R�O^�?J����iu_����Yl4)��ƛ�7U�$������q���:U��y�V!7j^~��^k�mN[�WM�����?����V��ƾx��] ZW�� 9}��=�"�ovo;[c�SO�}�����|vw�����ko2�'C��������x��#�`ͧ�쏕N=���>�ip�g��ǡ ��uwt����e��/#>�q�떾\I�#�WZCEm#��5ۆ�y�7�n���[TUB�O~N=������!��>fߨȭ�1#u�m��wGҹ�!O9�|V��bk��ݴ����I�e�K�"���@��g�q��8�#ur���(!x9��� !|�<�oUT�*��A���wS�b��~cI�-���q�kp�{��Ox�F�6��k�p���#���=�5��ܾ'����'�uV�f����v�1�7�k��xz���X����Z�ͻ{�d�C�5�.��t�|��h�m;V;���:��SЪZ�=�_���0��xr���`q�W��zƖ�?�la#��o��������).#c6�W�x�}�ļIy��d�8��� )���(rv��ʝR�C��7X��C�U.��dAs+���z�Gζ$��-�!s ^q$�s� �]��%�erY�?�k;��k���nB�2�[.�_J�]��A� hk�d+�r��^՟20*H#ޘ���Tڌ6)��f^Nࠜ}s�*�w���Lqީ�6�q��k-J�K}�K}Yy���Gq�+����?��$���ǔ�i�����u���� �<� ,�����K>�����3���+�J���c+!�#��E_C�/��j:�N���4��ϧn�H���� �l�Ƈ$Ҩ2],B�$X܂q��k�_�o�Z���j�0Y�G��B�X0q���C�W����LJ�hu�Q�o���6mߋC'_���ɤ]$���:h���=��$j�T[_I����s�+�ub�i���62n[�}k�/��k�0mO��|9b��B����W��'6��0��KO��&)�Jwv�%}�<��a��V�6�?x|�S/%����}��|�����j?�-��X��]�qߥV�;��<֞��H�1/��Q���Q�:t9 N�`F"���Ƈ;~�J5b~������-����!��q��k(a���1��h~s#��,���H�����dZ�� ���o�k���wpUDا��^�n��#I*��&�����:�<�U��,��X$;~'�`:����d�%�`�ź��|-����5���:� �8�:�⾼� �����[��U�/9Fx���ƿ6e]kY���ȴ{������.�$���z�����n�� ���� �t!�r?S+X�w�[��^"�[��$�x��9�@�_3x��O�n�4�bp-�$��_W�hOM����5(\�{$� =��ھU�悳4r]x�q�#�"=%y�?��k4qz���,��Wgc�k�I�ю+��n��y��<�����}v�O���$�3�A≕Ng��A�ȟT���|E���y'��P� ;6sw���[�!h�T9�6ȇ=����%�"�p���n�.�Pd�7r�Z���딹�����3lElq��ҳg�(���J#4�jm4v�8S��zT�-����]�IW�#�G�|;�ޫ}}�xe�Gf�6�(��[�־���}ß����<z��v���H�5��5=F�5�Y���`�q����c�`��W�F�յ�a(����|�W'!B�^p M\�w����>!�5��m�΅��R�Q�s����0�O���O.��㏴\1=}Z��xb{WmCQ0jH��1�6���:�\ƫ��0j�i�B�1y��v��N(Sm�y�ze���D��]?j���$��������*�.t����RM�*R=A��2Z�;N�����3��H�❈8ټ'��#.����Ir?�����,&M.�s�� Ď۽~��E����)eg�=d�&���N�X�֣��7r4���w���Fޣӡ�};��Ҷ��)�$�v�Dex3��]�i��wS�=wL��\XL!���AW�A�'��%��y���C{{>�m����a�<������e�Qӭ����=)�������S��������[���U���q$ �c� G���>!k�k?xK_m� $��V�rH��Nk��u�/ 2;t��"�^`zi��]����c���K�h���X�O��|��x~�]A'!��^j���t����y��h,��Y� }��\���V���k�2����l�U��7���QQе����X�~ӭ�}��6c��x�}:��& �>���?"���p;�5>����]癎rO8"�W��{�}��:<��{t~���^ty\[����ߥE�b�ӚUm� 0>�>7qSZ��$���J$��e\,��7W]�*mP�M��J�Yn!�G*���G=k����zܨ9�C5����Ξ>'Ii�F�v�����~Y!u`U����1�]|�Kz�ei7O�#i ���� �<W�x���+�F[I?�-"���.�:n]���ָ���%��Y���(��ꖥ����ezu��^����:�5��x�S�]�P���w����sm3x$���O�j� ��3p��O�,&�:��hR+:�?�{�����h���#j����$9+}�g��8_�yF��iNŭ�J[�X� ��aZ�;nD�����>�ow��j��iօ�'�� ���L�j#V��1-��݂G��=\�n4����_ɵG?ٶ�9l�'��u[1%��!pZI5+�s����)�>�8�Q��xE�Q>2�.Ojv�sy��RL6��U�\E7�kk2y1u;v+�:��=MWѬ��ܶ3���:�.�S��rƬ�iZ{3��f�����0c�hZR���lO>ۍQ���FF/Iq�~�3ӷZ���+�!3qx�?%��Y�|A�4�[f��G*�m=5��R�4������溟�ntS��6?��Y���d�9�ڛx�epX�d'����Z�I���M��RHR���P@��G P�����)h���ޓ�/l�~������4������R�v�ފ(h��(��qG�E�GҌP�Y��Y�:�G�oQՔr@����>h��H����7`Zjmi(9�D��oĊ�����������c�Q_N|>��ũˤJ�s��r&x���������͞�e�/]X�=��[�BP%��wбQ�VX�ޯ4���[ݟ�ۛ���?���������U����5%����$ �}Ʃ�{%�?�y'��3S��� _��X��n�S�?4g�O]���csac��N�=���KGj�����^��k{�GԠԟM��%um��[i#m�jx���v5�W�z����m����Aӡnks��7Cm46ҭ�Ҫ��p���y`�#�z��{ӱ�>����]�̧�~ �jl��?|-��*<db��?���H4���|<�Ɲ VR����tc#����>5頼:�è/d^^�O�o<{����g���U|Q���Ikڦ�pA�7���<q�h���m�]�UiGs�|o��5 x���s��ar��gּ�R�*̱�����e��>7�g�/�&��,��%�S�*��z͘��$|�Tc�\Q)&�'��R�K�K7��l,��L�3}��Ċ���-�ԣ��R\�0��#3͓���M9�� ���#WIr6��W 7�=O�,H��s�R����T�f�RA׀F=�F��خ��*�1C,���E9b�¾��o�x��;w<g9�4�ĊPGP�I���_i:}�7��I�H9NT������^G�։�߱ _1y��� ���V�b~��^��h�Ƴ���5 $.}��[w�}��⡩�r���")Ķ�k��Oz����1{���xg�1D0�|��`T�N�^#�j���jS�����;��,�r/�1�51�zɦ�+�编�������Ǵ1�mҲ�%����?*����ܮ�4�6��q߾k!�ɅV )���.�vge�^�f���;���\Ψ"G��0�ސtϠ����]�ŀ^3��;W=m"Ά5'��c�P��gս9�$dU?�G�UyJ��:�ʒ�ځ���n �@�`5cD����VMw��y�gTL�`����T��'��V��#x���U�U���ʧ- a��G�4��}C�/C�P��-���b�xdI�R�9���}sc���mP�u{pc��[,�{�A��˟�7���sxo\ӥ��p�yD��A_�⾧�.|mg�#�xj�2f��\ �A��c�)�苤�Ϛ>4��7�K%ݺ2���b3q��ׄ�s�ֳ���N��pdgsϱ�}I��\�|�A�e^X��X�Hē�t������1;;B9�4��~���� ���lwZ�����n������P]h����Nv��O1��裁Z���|OzrIxQO�DX��{Y�n@�q2F�C�;}X�Mg�'���m!tU|��}�����e�*��� l�~��5O� �R!�N�B��M?|ki29�͍�?T��I)o�x���� ���كʡ��V0����r;n�1`wc�����waX�gb�dk([8�#�A��V��x7-'�P"jK���=�I�z�TL����ݴ����_5)������G�Z���Zd���h�d�y����m?P��u}nܴ{I��eN;����w��] ��Sx{ē���"���w����0�#Ҿ��A�k�=�E�^Z�v�7���b��r�:zӓ�QA��g|f��q`ӯ�'w�4W�rÏl�O־f�7����b�G�[��JF=��O־�����ڥ����#t��Hq�ۼ��P����}�1ҕ]� �<�x=?JK�-Md��_X�k�}�D�*�}��<���P�D��<�\��_>a�?���kF�B�D�n��u���="�<����2�H�!W�֕-#RK���g����r���˱�x�)���DUO-�k��JJ@<v>��ꖖ���Ks���$�l��ƹ@�\o�d�d��C�]�j�6���X���ޝ� ����W�j��+����t��Z�R�2�ťn����t�k��yW:�0�(H9��"��/16�����~u�i{ol�c��� ulO���sS�n�ms��8v����+�����d��t��j 2{褆�iI��)7m��+>��]Ǧ�F{VS�;��/L�^1ߐ+��{�K�o!��qo"����� �b����S��t�����Cl7~�3�T��<SoM�sn}!�K�.4wH�t+�SwUR��W��m!��&ңS�o���O^G�_Y����R�Ǚym�+-�!��d��W�|W���'���t��C;4M�az�De��I�s�}_M�y0�sGԓ-��>��Ph��Hy���M��C̗����x��ګG� �U�����G�� rW:��)���E����Ao�'�2O_«�#'r��I,��cUȖ���(�%~d 9s��>���4��[��F|�2�W뷏�k����S��[�p���q���,�i�~\m��ּ>�$ A#����CO:,H �b�r��M�G�H���յ�eL ����h��M�hӢ9�����(��]ɧjq\E"� ̭��������~,�ޫሯ��o��"� Z�x�g�GÑ��Ҿd��t��l��-e'�l���zt?�z���[��m����~���/gԮt�0x������J���8�O�����Ɵ�/�~��*�oe���������,|,�wu�M>��o�(\�/��� 0=��<��iYǦ-��w��2��XX�M��p#�Aۚ�+�b�H�j����!X���I+�� E(l��s�YJ��&���o�ֱ������\��i���H��G�yƷ��࿗�iv��L�m)P�W�_�mH�<%�+ˋ��xǒ�x�4-&[�#��+����Ms&���j����3�����|��|J�p� ���퓟�a\O��O����ˉ@d�Eb%����q[��H��YxX�$f�D۫1�Lb��,Loymfi���֥�\�=��{_x�Bͻ䳌���x��+�֧i�˙�V3$�J��^zb�[�.�?�zK���ڼc�8��f�'� �er� �~�/����5g��}��m��Mυ��_�>+æ�tMZ�؍�=��_!^�yN��wC(e �<�d���� ^H�8��ۯ�i+ �OF#��Я-ݖ��S��7��>Z˞�<�cXp:�Zw��N����W<�ڍ� ���ś��*Ͼ�|��Xj3�3�R̃�PҸ\�cb�D�i�;�۠�S����s�b���̒n���C�Af�l�[Zn�uw�F�M#J87���Edk�79I5Y��d��*�����!�9{��� :d�M�?ڧ�,{���nN 5 ��.B�|�Wm�R3o�cz�|��3 �3����p��]�R��i�^���];čy�yN�$��B?�S�S��g��n��i���- ���"-�#8<�#�5�>3��%���a�=��Kj��̚�:'�u�&;��\�ү6��B�{m�|}ѓL�����V�6�����1 ���S%yX�\�<����Z��䶩l2HD��^}pN+˵���*�eo�������j_C�)%d���� ��>���ס� Y5GU�>s-�cr�[Q!��փ^�$yU��m�'�r��=5��F�y�y%�LG_�p\���^j�6�L��u�d\m���%�>�8������-o�w5�~W9��SD�c��Q{��(�?xJ���t�״��c��l��h�W���J�[���9n ��-���M@;(�1!��5����U��s��=����^y����Ohl�<7`�H����ڹ�m&Ё��RP���'~kGѭ���!��'.N"ڡ=rY�������*�����%���<���1��y���\J���䞤�g��]'I�0}�\��jq�9*H�\m��)���ʠt���+(4v�Qց�R�@�h����<��b����(���Sҏ�'JB�u��s�t��{�/:n�u�"��|��빱��5����>;� �w�G��ܹ�IT�&���#ސR��������(�Q@���-&(=MQҊ8������PG�%� ����k$� �D��3&䍋7��+�/���!�\Xî�n�&����O�P�g�����l��hu �ӅIW��?>+�i7�9�߇��������eM��C x�"+h�����F��b�y�hbtA���M��Rb�^k�~*��sl���m�$�_H���p�5�6�6��I��N����-��Z�.�~S������ڮ�w# oI��Rq$�Xr~���IO����溔���$�.����@�*����!�m��9L��.>����9����!���s��u*y��c� ��d�ۢx�O��V����;��,�T^�D��g��\Yì�o��|�)Fh��f��z��}��SL�)�Oyf�L��wJ�@�'�Z��.�}��x��A7�Q�7Zd͞��X�{�����OX�������G�y���P�"��@��&��OYhx�/��W���f��r��o(=����y-�y�H�A��������K�+s���iM*�w��z��������]��ipٰ�S�wؕʧu�幍:�� #�YDs��Csl6o��O�}����a�ʭ��n��c�]�t��h�g���"n�C�c��f���j�CH�?��Ucp�\ւG;/��O��֪@H|�=������:1�1]'ýkW�n1ax#��>\˺&?C��\��6����k��ig �¡�%p�+0&7���Q�R>��g�x�V�"m�S+s̰'��@�ֶ�w��ƚ�9��{���ˬ�&�8�W~x#PӜ^XE�9�_��Ce���z��6:u5�x�Oca0_K�!>Ӧ=��{��MSJ�. ����7j�r�����0��rS���j���g�u�_/'yA���l�����,���4��Fy��)8�OQ�P�!�/C�R�a퓀*��%�hD�?@����J�[D��a��s��Y:���˹,C��e {��խ$��R6������V?+��Z���Z�0i"b�c؞���j;啨��OqR%v�m��{՛=GH���od�����=3��R����,.ۜ$����>���> j�zi��SE����$����Ѹ�y���-*�[�T�ɦ$� #u�٤f#8�0�|��/���:[��sZNO2!$M��B��<;�xoR�VG�t�$�G�m���Eq���$�ʢ��<�����_�+=�3�˹�*]�~w-x��]�y]\), ��a�E{�ƻ[�.��ȶ�T����h��9��<[��Xo��Ꮣ��}(卵*R�f&�s<ٹ��&b6�̰��8�g�[��xl�����$o^x�jܑ\��G���q��(�b�Dls5�(���~\I�[��Ӣ%���_Ukd���''o��6���J��F+s�6��"C�"(�'�?���V�A�_��u@������[K����w�φ�l�ٍ��GM����0��WӮ˩��'^y�*5���]c�wyU��rҡ�U�+�v�㈑�(=wM0>��kW�-�R-�`Q���)kq�'���������hL��>������<�>�N.�m�Hǧ��?����?�3c�[���K ���1U>�rW�5�~�c�b7~�4��l���wqmv��M��{Sr�����M[w�ʋ�4�J�+o�$�n�xG�ҭ��Ku<q�t�������~)־2i�-���9.�ȹ�m̈́1�^&�?:���8��O;U�y��/�{�j�����6��g�x��o)k����ړ�s�\D��+7����D��y�=����|KvJIz�r|˞}}ie�$ .��,��,m������Q��ͯ��ZW��0/����\ ��4�ۓ�kr�B�Q=ޣo6J���aX�Q,dR�X���Ļ�!1��V?CZ�p��E�leCo#�C'^���9�@���3��[\ +r�!l-�:��G��:��<`Gq4���"~}�:����H[�j�'ɉI�rj���4v���>:�?��q�C��v��������;� [��ȋ���V�3�����2F=��Y�M�ˌ ������t+φw���-�'����s<h�V_�M�<g�iݭEdݏ�~�X��F�=?'a���+ׅ;��+��h��zT�i���6o�Ē�$B;B���v����-4�f�e��Z�1�a��e|R�-�����5��È�<�c߆�=��+�|�g��%����H?���e�����V&-N�G���� ���kؾ![�\��$7z�ẇ��W=�����z�0����T��6�0�ו�cT�c�%��|K�Nm���t�g��_N�����v�N�;�h�3i��v���]Z#�C�) ��S�Ü�� �KA���3Mt�c\3q�� ~������֏�:Tz��%���R�yV+�Q�1�~4�'��5_�����a��@?��ٺ��� �#���~}?O��3^��'%�C��A�#���K} /��Omݢ-v��1�t�c��^g�_�J陴��<�"H���� =�OR�����/��cRM��P�{�����n�7f��C��=�zq�|���<G��~(o�0���ħ=z ��[�Z��̞����<H�mnt\v�R+ya �w�b�<��W<q��'I��Ŵ�0�(��4V�r�����T���_�}�x�ɲ�o,���\/�g���Ƨ��o��KՕ�>����GW��>�3I��7"?6��uR1�_f|*�:��Ơ��n��w�\���dg���ʿ�<O��U-�f"ْ�u%� ������{Q�x��ݕ��������ȃ�B���B�=g�σ��^+��iת I�E=F?Ԝ�Z��ź��D�m��o��)X�D����2:��m�߈?�q7�>��#܋l�q�W�x�Ok1,�_ ��q�p3X0zs��0�[��roE���k~�ݕ�Cy+���@w�>�^�[�� '�ׇ�I�A�ܘ����,�'�j�/��� g�$��F]�FG>�[Q�'�5� ��f�j�©$d�����r������%�����~��mF�;Hv����,Q���Q��z��>���GI��}�O�� �5���k`e����Ӓ�����|�o�S%���R`2 \�� �$ �ПT�?*��Y�8ɤBA�8�i ݧ��k29�F���K��AIۺ)�(��>�k���a�9��z� �M1dԭ��B�����B���c���Z�������(�PK`U�`�p� I���|+�0�0���|�]�չH5h��Yc��q�W�������G��t��c"m2�����b0)h��gk�ƥ%��y�qR,1�� ?��+�[�&hn�/m�~u����"�U�� �? �E�e(m�#`s���~��Z] �ib*w+����Vд=_T*�Z]���#�~0?�|=!k��8,Q�����ր��?��fv�]>�7����3�j$7�*7��\���|T�<K�Z<WV8ЗE �ɹ�'=wyk��5�7��R5�qj�-�$1�����C��sϮk��>%^�(�ּA`�@ ��<J�уB�n扴�wZ���潟B��?����~��sz��!p����r{�8�Sx�Y�����'^x{���x��5˵���V�utY�ȥ���l�]���is�e���r�K�XH�B�`�Ƽ����.dO���M�����u�k��Z�ª���X+���~U��� A>�ֺ|g$���u�NMBh�K�%,X����[H�/��m�m=}j�� �Kv�3��Y~��v&�`�2����P#��I֞3�i�n;.�)��E���;�@�q��Dr�j����4+-�[*�o��cW�m�3������#>�� ��n̿闺lg���O�E���d+4������2G=Ǜw�,����=0���a�Ey,�,�Z��A2��I��@�LTP@�&���(���@'Ҍ��*��4 ST��� Cf�yr�(��pO�������ϥlxC�����~͢i��m`$���E��9�}:�U���-!uMZ�H,I����`���F�HObq���� � b6����iZx��[�n;f6�lq�T=�EO��؟��_x�-J���=���!��>c��]���O�X�7�K���Ov��.O?J�J��O[��VӴ)go��?�z���J�9?�)|Q� +A�N���ǂ|��f�\�H}"�I9�P��yRA��u�j�WͶ��)�.T����N�b}V+(��%Ny�6�Lv��շ�_���ss�^i>,B�Uby��Trs�Ik�� �4=.=?N�Q"^I0+�������е�g��̍���c�%r�ZN�qҏ�Ҁ JS�84s@QE���RR�Tt���y�Ҁ:�PY]���.V���e�|��ݎ@#��_B�:��)hh���^xcS��Aw�M�y�;y��yk��bżem�q-�2Q,}Q���C�����w�������� ;�#Z:]���>Y?L����L�jD~0���"����$@/����?��?�yf��Z��_T��v!Y�[�c�^����ߊ-�7���D������!�s_=|K��n/��{�9��l�Z�ی�ᏽB��k'��v�w�<���a��lg�_��h�j�uۆ�Ծ߶ل�`>V̌���>���]Q��Ԝ6�;�},ˑ�ul�n��z���}��l��Y^�@!$�x\�8���R�������I���ot��OæV�m~٧I��v�����v��Z1��/�J�|�kx,�c����^U�A��t K|�q���B�����g�g�z��cڴ7~#��W�=o��$��~e9�vֵ-�T���_��!1����7�˴�/�xϮ v�u�u�A��uu��������v�\��FIX�0H��q��_?���%˫�B����)Ih ���x�����/9���أ����Xd�!h�D�y��]�Ԗ�՝+��H��y0e��Ny�����XC��q-������Y44�&��fc���OzXC��Ƥ��l$�3�?�«�>��:�y(W�5�|2����'�Y*\|��:N��z����Ų�Rk9��<~dM�R?���v)=x�'��Y��oÚ���u���l��V�����EԼ�xz@�*��Ԭ��F R%Q�Ҷ>��\� ����1�>�L�f��I��@�����u�ev����D �n. �^�煽�Q+�X֞�>G�恡���\�X�-b�瞄5��irڤ��C}8�z����o.N�wX�a[��b����&r-�$�F ��8��fA�N��8���.A�k/\����� ?Һ�k[P�Z�7H~��\���Hyb���v���'�jHJ��T�EFT�H�zT��! ��-'�F@�O֣�b(pA�*�`����J��'�T�V�0�߹@S���R{}J[�.o2�5F�����s�¾�𭯑�,PMms(;�g�s�r{u����xq$6��}�\[L>Smv"���Cو'N~����M?�:v��|@������[��F08̈�.��a���$�ɭ�d�����ϙi}�BxA����k�֎- ����?�:��㞝5�����.�����h�<q�@�ξT�ݏ�|����!-�,��c�9�����s�D�����yg��x��U��Pb��I�'+kW?^��ZI�Ǟ��v/�qR:��{����+�;T�>����,�9�aܻ$��c���}�d/ޭmnh�GkE=pI?�<�H���ï����&�,q�&c�n�>����pE ��t������Vw�ȭn������W��&��ƺ�LYY��iW�`�N�@�d��IhK0������H���+?]Qa<�m��";������-��=/FV�I��OӥA�����s�峵��#5�Z����5��_��0��e����K]@m����Tc��� ���76%�V� ����m�5t�I��뷊�;�Z!���KԸ* �2Fr~`?�}K�þ+���S��bF�/��6�ɔ��Ur�!�\�����w\���4�V�[��6��^��'�I�Z�tf�����+l��g�q_��|:�xe��.�[]��1��{21����f�n7<z�H��X�i��*#��MZ�>e�~An��*h�]�v�H�q��=��k��0ۯj���,�p3��k��u���.%�M��N2Ovw�k�V�u��蠃���a\u�pƝ���s��V~ϦCd1���d�i?��KS��9vr���c?A�]O�f����f����p��֮F�JK���H�61�w�t�%�rhY�FJl�b)��kSC�T}�����n��(x�<`��-@����i�:hkr�m��;�{T�Ԛ�!����t�٪]�\�$���#����^�#�g����oѬ��N���lo��y�9W^���+µ�kH��$oYh?�+�ٖ�A��U��rd�H�h�-���Y�!�84�� Z��O|6�t]CH�x��J�K�絝�$#�P9rEc|^�|?�X��MO�q�:��f��0��Z�Юm�o4K�Ț�����dz�Ey�ŝ:��;���3�f���� V�u�= Ji����D��2 Fo7ľ'Ev$���s��+����Ԯs}��רX��S���J�c��]~���d��R%by�-s��V��x5�Rď9� 9��)#+>�_i������I9��rF?һ�C������,����m���M�~�aʑ�㱮+��Oٴ��5�W��s�����e��[h��Q<���ui�6�C� ��B�{�J�� �3�υ��5�,c��V��0'�q��<��濴��"Ka�}L���.tb�3��l��~XYY����"�#��}���F2pB�ϯz��v��_�S�j�0��Tވ������/5�bۍ��<]��3O��%�P������3�8�z+Y����3��z�Q�Р��X<[���J���;�+�ucf�x�f��}�U���ұ���̈́vz��!�2����`��Mp�>Q-�k�,�;p1��tVWN�r����B���j� �����\cm���w�:��P�]58R��C_N��>��|?K�W�r�v� ��9���%̩$�� �f�g�F�"��E�Ѯ��[/�$�O�y����STN��/��x3M�"Դ�E�LTfM\��I� �@���ߍ~���:N�*��G�Yǰ��^k�<?�x����[�è���`��d�<Y���z�O�-����_�%s�,��ϼr��Φ6���� �Z����_`i���+�7�����v�mB����3���������4/Arl��I"R܃�F:��ڪ���}�� Zg���3��n*�2�WS[V}B�H[-C�S=��b;].�Ac�?!��,���v������������G��s�KZ��( ��v����-P�|?������k{v8��]������K��7R9��"����a�R�������!�/=ϭa�!�c@��ឍ6�{"�����'����־��[��K�E'��R��3(z6��y�L�Hާ�P�Gj�w�v��W�m��~�#��q��g�5��Z-�:i�#��u�v��Րc� V8Ϧ:��8����ς>�o���2�u�k�i =YU�s�(���g����d��'��Urz�� Ҍz1��,j|;h��#Z��Y����I$����yE�(��g��]���|W�d4:���B-(��5~��x��:���q�].�8�F����.;W)���Y�f�]ODVnO�b��A��]&��oP���,���o��-�A��X�>:�x�[[]�JSZ��*>�:~4�}Q:w!�I��M���ֳ|�:D�����b+μp��dMuu�*D0$�l���z����5�L��?bL��w��P�bEyޠ�b�ɹ�<���i2d�7�I���Ns�����^[�Q,��s�ְcM�p��Z�V�q#.�Y�s��J=c�עk1(�$�����_ `� ��/�/?N �� 'ڼ���v�c�պ7h�~D��Y�F��-�F� �?�(�ˋ�܆V���kw�v�V�1��c�Z�'��2�t� �����������3[�a$��f��2q�Q�dӌ�8&�/Gl%s�at����q�rq�M5��'����?%���e�A��X�ob���q���STr�{c_�GB3�����ys��}�M��E�k[�Z�I�:�?¤Mv`�=A�n��0=�;�O@2t���l�ң��� ����@��)!���f�K�K+]:�9���*`C��gڴuI����&��L� ˘r@l��L�7��f�|���}���~0�N��7<��+,@{`߀��{��j�|���~1u:N��jN�pR�������|9��ޯ��]/%��H����S�W�KM��}Q�𥜕PU|V��p��?���7���5����3�-����/��+��|�Y^�xtԹ�A�&�|Ƅz ����P)�����O��'s�%?�*O4ij���Un��㡻�]�*�$����:ƶ����W�����)�Gd!� ]c�Qj���͒7 Z_4Y���6��aY��wS��p�/�< :M7�1�����wi���Jz��a��Z� ��� �F{����͜dן��?�<K�[��%-���:�tmRT���u�T� �Mχ�x�>{�{q��?iQ�K�q`��ݗ���Yu9o���'����ԑ�p'Q̑/�1. �<Wu��KU���/����jr�^���X��{(S��=������I4��.& K��2qֳ ߍYT��NBG+�qϮ�BW`��|>�|�h����� �Q����hh��ڀ ?�Z=���QG4Q�;RP��W��9�F7c��}���F�-�մ9�m���͌�F0~��Μ�^��~YT��#�z������E��-��-�I�,퓏�°U�oKfg-�z��V�w�,���D����}����Ff��^g�&��:E܉&��;h�?�������_jcR��!��뱕�M�Ŕ�ܨ�,m��|Z�H�ܞ[�6ڡ�y��J�٣o�x����e�#��� R�ֿ��uݮ�k�Ļ�XnQ��c� �G��ֳ�o��z?�K���A��Em|:� �/��[{{uR��y� ј;m�x�;H[��_�����5���J�>f���dߩ��_ܓ��^ �V���� ��l�ϗy�-�m�4`��y��[M:��_[ٕGi�/�Q��fd�}W�U�m�s� l�<~$M�t�I?眮?,S�%�:I�����z��ȷƛv9��ţ���*e5��֫q��_'LR8��d��U��t���M&��T}��z�μC^����q%��s�|�6�l&��i4����J��#� �$��5���$Kl9'���~=�班_���B �V��5�ю{sU�7R�Ƨ;b]���J�G#2����>�F��2*]FP�a#�����Ϙ�؊C���|�J��s�^iZ�b����29��>��d����:"UI3Г�дWG��~%��ii���F.H�4,O����C�Oh���g��V2����������_5��g�4���P���G>������_���چ��۷R���R{ 7~&��C�<_�˸��5��������M��c����H(p;��^���=kJ��ِ��-��v�OM�"�Ҽ�_y��N�-��%�u����W@ՙ�w�)��H,W�����ֱo�m�2C��q�����o*�nȳ����� ���9��NK�1��eB�s��b��nIiy`O�JlG6�c�P�a6ʼnb�'�+�. \g����m�c�s������i<�;����֫�2�����c�<���Z`v�^o69b��>P�[a9�"9^k�/�:��F�l���շ8��V�&��BOOQ_#�uX!��J�,�7�%Ȍ�ǥ}W��/��D�:$� ��2Z6{aԄϾkEk�#��agw6�� d��K� mt,���;W�^/��9% �ˇ�Hy1�gۭ}7�D�:���_�h5���*=��|���;Y[����'9$��>�鯄s��n#R���a���8a�9g�Ywd���z��if�n�b�Ev˞IB?�9d����ϛ6��Y�b��#D�H����c�q�t7��ܱ��F����\���$�֤��ܪ��PM-��`��3�a����eӮ˶�����/N��+�4���Bu'�63��o�Bh ��Ǝ��$YF?�$ի ���o���c��`IUmkV���?������ă�ֲ��M�����4����o㌕\��"��t,n5?�A��B�Cm,�=� �= �W��e�5��C{�ۛpJ�d�����o��5��[�G 1H�������_l��>/��<;c�"_�*�O{�)9 =FzӋ�+�a�hxX���|����{�b�B��i�j2���A�b�pq�{f�Ѵ߉Z����G�ֲc�pK\XL�����*���7�>)�w;�����d��:\F��>S��RM#i+�� �4l&�QbNv� 1�{�=�C�d6�c�������a�Z����;�*��e9���0�ڹ��b�F�ҡ�b�m���.G$;�3�(o��H�<H�8,�)��ʣ�N�D.H����,c5�x�AU�f�<K��I�DQ����Ms�������3#�_�������E��m���J�PoC���1\�Hݑ�+��}�#[���$�VN~������SQ#7�w噡�άZ��m�l��4��.ه�d���o�l�AH䅢�mBs��@W?���&s�i-�-��9�>�H�w����P�-s�� ����{���n�l�W��Z��<UW�J��ٰ�q�@=�+�O�~�qp�ä�^-��#71�v�˓����ipoS��;�cž�����N 5_5��8��( `��Cּg���;T"(��w�6�&�v?�.���}3�������F���l(ޱ�pb\uǙ'�?�+� �=��=טK+]�ۻ�d�3;Q��6�������7��Ft��9�������l>'i'9�t�{It�����Z��F��N��Y�=6گ�����kS����S���`��\~���!I���&�u�\�1؈�B#D�,I� ���&�ei��2Oh7W��gGU����U@��I�08�+�π����[m2wK+���ծH`&B���{�1�_j�K�mis�����{9#3ٖ''a��r;�\,� [���>�ë�9-��E�l��բ ѱ�?�t�㞞.4ۙ��n��6�9��2ƽ�o xcU��c�~�����E�D���Sg�~=�7ᖜΚw��oLp�q�[�0?�:�}�R���j:�M]HM��G�T�"��ָ�*�d-5�p�9&i���@3]�t-��� iY�#�s����:\�]t�V�'~�6�͇�S�F��+]^�6V�滁���c� T\�9�m����R[���9I���K�֒�|3�Z89Q���r[?��/�4����I���U�v��Aԟz�.7{]��`ӓw��O��9ďt���{��:o�5���l�Ә�ق������¿�)��k�V�wQ��n�S�� O��/����\j.�g'���͝���<���y�k�߃�c�i{.�v��?o�h��rs�\ V4���9?��a�C,�/�۫M��kw�Z���$!��_5��Y�f �0�"����2z���C��í�5͆�fdb�M��=;�ooOJ���^�,�{x��C������4+[a�;�q����}1}O�����YL�n�Z�K��/����F������z�3@�U�Pz�A�Os�M��4]^C�]"S��V����M�}ݎ����Eo����;r{}�N�X��j���d����J~@Wj�~Uĸ;�{���?m>`�� ��@|���'��ּ��̗NČ��#���)+2{ 6�q⾶���m֝m�t��2���Uq،�G�}+�k& $A��y�R���ي��.W削��i�=Oҝ~�B����pE�d�w㪆;^+�ω�=���m�W�\���;���T�:���k�.��^{�B��f���ǝ_�+ɾ3x�>�^�����W~��[��!�qJ*��R�8�r�+�⛄8Sd���+X7Z-���_Z�� V%#�O�Yz߈�sk#%���H�Fߚ߰�#5��x��J�Wm�p<�ǯlӱ�2:h:E��x4���~�s9?�a��}�+��G$h��j��x���8��1b�C�<G��q�rbk^��n�5MBեV�%��\�����K9�����J���g+c+tT�MPԕ-���W4���Ex�VV<>9�[�TV��-UF0Bʇ���]D2jEH���� ��4����\�bO-t;�mwa���6��L�4�̻��p��b���D��yn�Z�)�q�&�@;��ؚ�����:�� ��ǚ�v�6�a=�Z@q��"N=w+��tǶ����2Ƚ�;�>�qLM�R��|���־���{�Q�A@k�b��{_1C ���I�jX�{�2ڊ�;��S��8k���*S ����Q�h�<<���k���x�R���,_�^o�+��H��~�ވ��y�ċ����͚�<���~%�����i 7I�jʄ/��-�{��~��q�uqi���'-s}eS�}��r}��t�-�qu5��iP�h�6�0#��Ҷ�>�fx��O�^Ӭa�o���d�XḍM�HOFڋ�zg'p���q��ÂFI8�Q�^�o�G5����z]��IKBK�z�p2q�M.���iO����%�M�,��0� ��q� kd�F�u�;J�o.t�*]v���h�e!(�n��FO�g� �5��/��ioyd"��%��$�Pyj��lş���<���]�`��k�~�2�?��ux�`��u��Gk�>�HV�,lT�p �t��]N�_�|?���i�䖗�1����_r�3~5�\����.��dn��?�y���Y�]kڞ��i�7�䴘G#x��mCP��#�89a]f��x��Ėַ��J����N+�� q�1ާ�@Fi�$iϥi������$��I��oҙ �ݶ�_��Nq �Y}6� ��x���!��m�Ƽx�ɞ+��-ٲ��%�'�q[z~��kֹ�/l5[h%Y��@'n;"�Mzكy67� �+B���F�B�q��Ƭ���ň# ��]џ��_֯O�"6�y^܁�I�"�O��v�w���B��������H�{kx29������8���wqHRj��������.��9��օ���,AC��"�}����.��>���4>?x����s��q!��zPJ? ZB1I�Ӊ��QEQ�A�@ K���G�@��=ֽ������}�gy��8��Jy���'�GҼ �^����쯴/O�_�`�y�$��*��#�U����7Љ�>��<Q�N�)��,צ*����$��c�Y ���;�q��B��F��#�r�i�у����`}Eki���W�Sþ�%��qu��R+�F:������~$k��қ��:ɀ�k;y�q�}���������_iv�\��M�/P%��)�s���Q�]j��B�I��0�V`� �F�ʾ����_�9si���@�?M�g�:����ɰ��{0#��{�����t�>��/�6�t#}b�FVo�éY�� O�.C~��\cw�����5�����}�V_�w�����_,2<�)�i�12ˡ���#����@Ǹ��rj��4�2ms��r�9���c���jG�z��] ��|��R�{_9G��3e����0{dH���>'յ�l���'��2{WП,-Vsh1�.<���:�zs����E�+1lE���\�&� =L�n�1�N�\�? ���-¾��㍋�����h��,�!Sԁ��Ar�^D|�f��|mA���j G7p�~�})a����}V��`h\��C�uN@�a}��W��"�fn�z*����o8,q�����H}�j)�G���쟳Ž�ͧ���xTnkl���=~�}k�O�>��[]�Z��&@k{�VO�B��5|�Bծ!0v�be����3�+v�x��>��~�.�ME��x[}WL����Þ�:f���-ͩc��my���-W�:�,��k1��*�zt5�G��5����!�B1����|p>���� x2�r���ld���%A��3i_i �b�3��q�c��ώ�+��4���:ƕsf�5�i�l0�ξC�Ӂ�ʱ漱1���lyءa���֨��-�F)��Ÿ前�~3D�ۭ̓� 1lac��G�ѓ������wR�h��ڡꄍ���X���n{���-���Y����������˹I���H�h�.D�NUɨ��T|����p��h]����+��s��O�"����汫�~.H����k�`c�n�f 0�:�k������Kx�ᅣ4k�^��ac�."(��[5��"k�[�>��Nq�ھ��+5�{0x��×rcx�:>�H$}7 �mh$�"���<}`�e���*P0�[jW(�$�Glךx�hV�"�z�e�8�F+��^�ŷ::�%����4�4��c�,�����xŔ�{�Z�ᶙ��Y���C����R�l�N�s����5�}r1���=�d4� V������_�����h,.|��!�O��/��M�=:�{�e��&����Rԍ���usz�uX�����O�k���a�WG�Gk&����Qe����I��\����ˀe�*F.�$q^#ȱ2�gi����� "]�6�L�o[[��b}�@G�q\'�!��[�i��E3��n��#����Y�<Kd?�4�4��C{9�`�W�bY�,3R���@�A�l���1��_�@������ӠO��RN�����qm �s��Rƌ�g����S! ��6⾢��Z����GY����@�����r㧽|��ؤ?�.D�{*׳��� �O١��iS�U�ba��Q����US�R�����K�: 9��HJ���A#qف���=���k�k[�,,����$W1̛�������v���I'�$�,�w��㞪���~Ժ6�gj�,���h��F��t�o~�B��>W�����MWV�lm!`�qד����-�?���JV����X���rB�U����]%� �'q����Z⤎00ܻ0=-m���4�u3rfEɼm� ��cّ빺�7y�,ŷy5���v��G�}��s-�ɞB}v�T~U�jR��3rs�v��RPz��/ �Q�$�y`��2 XӐ5҂���W O�h������գr�[l���Q�:Y9�Q|�mc�#�m����� Z$`0L��G�Z�U���}E�����M�S5|!go7��I-�eHز4��0p=FsҾ��)g{%�b���PaDO8��p����+�/#�x�Ֆ�X�ݴ<�vq����¸���r'Y�J��i��x=�eC~d��j�7z���K���R��<RK%�����s���_7|P�e����<S<�In�C`s��k�uu�I��U_��nm@g�P����u���u}<��(Ԧq���!��r�Y��G�j:�{��� =$#��52}W���O��ځ�������ՍK\ 6"�X�� ����q�ހ��ڭ��rb;A�A�e+�V���:��եj��[K9<�&k��z�Krp7c�1_�u-J��y��]2�S�)<�L�����~cx��Q����a�Dy6>�8��c�Vmo�m��O���X�@�Q��[';dM���:E+&�O[^���o>�Lii,�e�����|��s_:x�^��W��O%\Ckmp�;sׯ�z�ڧ�d�ѓ\�m/UPl�`�Or �q�^!�KU�`��{3l���A���\����/���RU3-d�|��{W�/ꓡy��6��]�p����|Qu�Ἥ?U�3��K����Z{���;�3){]>�<S�0�o�G+3r�A�j��ktW�b+L���x�y�̦��'/���ס���q���vэ��?"��Kc��}~����b�:z���ziY��s=+��U��3�ڛ���Ԗ� ~tq>8W��N+�`s����{��+�J���v��4" KL��K�Y�����D�/��ٓ�%������MU1>R�Z��g�8=����n<a����ƃ�h����i�k�s��BYz�"��k��!���o2�HW�MV�9:�`p: ���?<:���7zM˂V;�$$d�$]A���.�����>5x�N��z'���5���,.���_5��ő��;*�1� ���Q�d9�]G��- ����m F���7��9�}+���KMF�����@b�[�����{h9_���j�w2��^8bG�E䍷�M�~u�s��钷�ܱ?��c���K��y`?b���&�.���+���Z��&u �$3��Wlʹfx�]k�hB������s�$��V dF�#mQ�nߝF��pH�F���I(�&�G}���{�meoK�'I�U� v��[)�L��<�߀�����A4����,+�O����gԟ���WM��5v ֑}����Σ�*_��Y��A��K'�4Mӏ��ȯO�1��W������c8w��m:�[�Hڹ�Սr��o��+%���qsbFՋP��QB��(>�5�ln�ϟ�cW��#_�a��C �z�ο�p��1r:)�ҥ� ��.ek�B�B�6!���F1\����N�/N�^B>e�����Է�)�mOX���W�����c�z��E��w!�\^�aB��1��Me�^�Z>����$��h����zv�q�,�/�n�^�,�xڏ����SB�0�,�T�)b>��zT�V�"d)�����*wR��VloQ&Sݓ#���#��!� d��1�]F�=�n\[H�H�Ps�̾�`��k��,��T���F8�.>�U���c�5[)NzF5+��Z�E�f)�s4�+á�7�7^c?�K�c��+R�4��yұ8Qdn>����7්�F�>�C���7 �ģ���#8��Q�<����bp$�b�k���kr��V�z]�a�5zx?u>��+ؾ�5�燡�='J�ME�L����ς{�c��薚%���s,�s��U���Xn�9�{V��Պ�����5F��D����u6��.�ё�B���^�#��9W������e�x�?�&{� ;"�S������O��w��CϷ�/a��H�-��G}\7䎼�+d�=��C$�qq�e�_���?,��F` �9>�=~���> ���X5���9�� ����ZD^����� J��Zi7ЈXF���2�Y-�r��=�E�s� �R� �ޚ�ryhYs�G5�^�E���2?��������́b�#���~u�?�$�����/"D�6�2OW�@���L.t���������9�H\�����^��ũAe5�+�(l7^�����Ǡ����Y��<6y$�̹�+�X��(��s�ޒ���`�ei��utV��9�J��t�.<?q�_ߍ2����ܬ��!�$q�<�u��m%����l�Z5�гc���s�� [��OR�8O�}:K�Ȓ���X�ۆ�y��x��F�?�a�/�����\Ld�w1�!F࠱�Oj��4�k}J�N [M�A��F���]��s��4�+�Ƴ����H�3���L��j����ui��֧��A�Z���99!��O���+y����O���e�j����~�Bt�fg�S�q�7n�������i��Y�3y��ZFP��>S7 c'>�����mH�2<c�R�^�黠���o%�G��[I��G?����ʐg��RV}e-S�+t�nA�ޫ[vW�V�5��o$MʲH�� :T�Y1,y ���?�eM�/ O3�'��by"�1��u��y�@��������1Ei�b�� \�K�i�;R�j@%c�n�Z(�z\Pz����^���V�/R_�.� �Zj��{�02q�Bq�_Ҽ���Q�Z��œ(����^���Ic�9癔����Fl�LK����:�4�.H��D�}R�n�*;���=�_�j���Ů�s@I�|m��'�$���`.�n��[������f�/������ ���犳co���r�wL�8���0����s�z�ͺ]Bw$䖐�P���E��A��,͐2z��$�-7>��n�&��mo�I�ܺLJd��zy��������5֣��y1�/ZM�|z����8�Y%�u�g���4�#X_�F2?Ѥ��,�g��9�$^�nk�φ�ϊ�����TQ�� ��w8��;�Ns[T�S R|ǐ|[ӥ�;�u� �y�Wϱ*�y��f�N����l��U�ñŎr���&���������x�kZ"q꤀+�Aj&���܆��q�j��*[�i��� ��P?����!��[�)�=ry��+Q�%��[B ��̃��u�I�sz�?���1�v䏥CLH�5�);E���d���!�z����b]��;F?3ɪ'�K*J��`O��� ���8ȭ (�H��;y3�y ����-A�A�Cav�ۛ �(���F�$�A��W֟ot�=��[����-��Ќ�d���=x�멥k]�ZA̗v*/-�c�4D�~�}+�/�>#���$�Z�6�0�mr�?�F�S۽\�f���o����K�?�_]����������5�>*��\Is���r!�FG�ײ�Y�&�x\���^1�v����c1�1����އ$�����:��=~�$Ջ���5&�,z5�-����'5�wu,���z��a��<~U�6�}�x3"�Ě�s��h���� 0����0JW"�+��J��`hW�������7�?Z��F���0��z��V0�QH '�����k��o�R�E�� ��kx�h��.DV�� �g�;9��_X�5�t ���Ș���rTM�{|�3�_'� ������E,�G��7{1�g�<����ߊ��(�u}9T�$^X,�8�g�L}�R�Wgc��4�,S�>��~it]eb'�,W���ׁ|G�n~�.<��(����(�N�z��v� k�ŝ�����xp:��;/_j�Msƾ ����iyo��յ�8_�*��T�s���I�.�y��G�̿�$VjZI � ��[~m����u7���i"�c�@n?�ߥ`jR��������*d�.�<��Io�� zD�\*~��a\��̘㎘�=kQI\�Vc�n���),ۏ��q���`U�H<�+��D���*�l�&9�䉔�Xι�)R;�r��h�}=�f�\���}cQ�q�窱��UʗN���ԳsK�����?�$���B}�R�������s��l���Lh~��ܨ2����+��Q�8Y�I"�V+�e@�+��˱?λ��w����ܢ�KEt��A�=G#ֈ��w�|�n�h���i��ڳ�n�ģ�߅��y�O�~"����"���8U���\�B�����X� ��l��_A�X��R��ynFyܹ?ﺻ�{�."o��z�H����J���gE����K�]�f��2nf���9�8��'S�c��?=�?E���{�b&ҥc��h�W������<�n���T���표앙���[�'�k.�j�q.�ۛ&h��s�^0�0�q�l�I��b�!�B�1?�v�����[kO�q���S���&��,w�a>FQ����v��[8�'b3�� ݹkfϼ��5�n?�y�R،m@��qX�oR;���Z6�9�_J��\���A�d^[�Qj�,���9O��ˌI�]����h�]��6�;/�џ�1��o[ ]ϻ-a���s\�Цո�߈b��L�� g�+毋3��*\��x�%�R�`�{�+���v���&�{�����O�\�B�O�ּ��݆�e;�t{���Ykq]��AcU�m ٫�A��[��������?�}�Rop5���:�k���Χ��.�ϛ=F5e�����K��)�fi�۟�{VR���Nk[o�I ����&�Ϙ�O ~u�~����P�eb�Aa8�_���NEp�"�L�=��G/!��&�/ٜ��f�&�%��+��m��W� n�^Ԡ9`�,��Б�x����{K�D3���RA������M��o��lC�f�2#r|�~�W���|�C@Ԯ�f[_:m�Dm,�rz��Uϋ���|��ؚ��eP�h����<�z�E^�ї�s���:2[8MFnؿh�ك��]���J��WK��[h~�m�N˓ �����v1�{�`}n0��@�\�ޮ�R�����P�0�����5(�fU]_[����Fp-"1ƣ�,���/�_f�Fh�P8�sɽ����e�������/"��d�/��s�����\��ā�����iY �ffr͂MX�u�6�/4�m.c9I����Џ�U_���U���'�>���>7|Im6��bϕ �z�Y�p���5��ֳ�/\�{��a�g]��B}����f�a�=k�[�@�����7�Љ�d�$z�#��}�/U��i��GZg�,5w��^��!�qTҵ� 7>�ܛk�+DF-��BI�Я�\>��I��/� :~��G�$��^����� ��^��Y���4�t���b�^���G��ErH��|�i5�Nɔn�ċ���)�Gk��qX�Z>�m�G�[�pI��}�}v���K��RT;c�lcM���,?�W�Ѡ�>��6���1��[߿���ߙ1�]�bM����U���VƼb��3��<���nM4C.[m��J=�f�<.�� �V\����e��4���|Wm��G�|K��i�Z��ꄤ�{�`�0���#�}5����n����ʮ�Dz��`9���^k�<T�0i-$�N�x�d�Ɲ�O�=���\q�\/�O �%�>L�!����:C��p=�;�{�z�=WP�Lqw�x[]�G�G6�$z�U��5r��e����-u#���,[J�}�T:�u�yY����e��+H��.���3z.�������\n^��s�\��o3�Xw@�;rG��1$b�:.��$�����Mpc_�hι]h�:|�,4�u��I��rO�[z���{9ʏ�����7J�As=��E���?���CP�i.��f#�� ���X��$Ib9�dUK�i��-"���b�%.ŏ`S^����~���k6M��|�����H��T[������"������6F![�$ע�[�ֵ�Ƴ��Mgg��i�6Fp�}��| � N���䏚�R�I�����v�i2˩��`�������\�1ԁZF�ݕ������:.�k�E�!{�S�Q���۞pJ�t�+~�ЭƲ��!Qť̪#���|Q����Hѭ�14�M���+�d���=U�u+g� %\ya��h�m-W9���z�$�}M��K�.aT;���b�$rr�#��<�X&��H���[���ڐ���4��wx9>��9�H���^�Km�OL0��vw&�'ia�kME���v��zm.#*�V�%Q��9 '=zv��+�u캍����.����]2�2N:�D �<�u����l&�x,^�$pb�-M��H�[���g�sk=���s�߭��;�h&��2���s�Vt�u���5��xG<I}1F��9#��j��M�f�U6���y�1�a�ô���9Զr N���K�0��<3�Y����-�tQߵ7GM> >��=�L<�tK�*��$�23ڪ�t�w m}ym���͎ɡ��Ǒ��s�M!\��Xy�d�]�; ��Y�`�v2��#�^:Ӽ)��e�X���H%b��:��� �C.r��\�s�%��=.�]�'v��9��@9 };c�jW��"�[~Fd}2s �����=�Z ~�]���<A��h���C<`�����FrNp~���M��m��ĥ��x�G ��n8�Qү�6v�:�R��^E�UӖe\�H��q�'�K� -mD>��:���F��� �!A=�y��4Ҵ�i�.�J;�����+g�+��(c��1��B��.�g��H��bK(��f>c�hRP�l�U����K�'Y��ԤΔY����� �9皝t+h༁�#����ˇF�LRN��r��rrs@V������8K'��ڳ�$�ɹ=�i杧�3O�qq�j�t����������FT�$���W����ϫ���DEqnna���3&O9>ՁiVz��ޏ��z�ź����p�IE�G9��Ђ�L��*�8m���i{�Ǣ1\�F�~ƿڰ�@V�CJ�9�T;W���"�72�o�K� j@ i��P�!<*>�� ?��x�l�'��E�ƛ$M����5�@0��s�h)3�2,m�wt�����g��Xg��V:��Ū��4sB́$NOЊ��Me�zd��V?=X`��5�V?>1�*���0"X��"+j��d��r2|`����_���letyZCֽ���H��q���G���ڢ��ŏ�i�6^n���`d��W���.��H��E}7o�x���:��^�c�������uʑ�ϊLy�#�f#�S�ȁ��:J��?������� �z/�G�&�/� {�b�--��$��Ù!�C�&�Ĵ��>�o��>�r���h��֦��8~�o�Ŭx�Q��ܳ�#��"�MA�2>'�ޖ����G�+��7�|�j�]i�y���}r�mih�r}kß?g�G@�\�~kZΛ4FXo ��X�Q�T��wC�R�h��=�W�:��f�tq�X�)�U�[�q�24�F�|�l��1���m���> ���/�G����C Γ3�,�sڟ$��|#�1���Ad������� � O�� ��F���t�t�\�9���M���/}�]Oÿ �_�+\-�Z@�H���۹�:��h��~a�+0 rOa�[�ҵK��}2�`睳����o�[o�����}����n��b��U� �0zU?|d�����j0�.&�y-Ε4��<�G�QǕ,��(ρ|?��e߁��j�.6��g���r?+�~�?�Hxs��4u ~�;�>��ɯ�<!�;X�<m�O��=�ձ�i7��x�g�'�O|k��i�}֛>�� �����X��WHD��^GU�%�ĭ��Z�|F�5? x�M�K;�z��O��Y�|%��!�q��J�(���<g��k�߈����94��jV�2:���F��V� �=�y��?����������0��v@�����J�?PsE��n�<����8���\�J��E�NXV^��=|{��b�:��"8Wԡ�=��kپ6�O��m�i�� ��k��ip�u�V��xH��v$O\W�x���kM).�>'i.��&�i��@�C��K��W����<�2á[篙�����MiX~�% \����l�>?��\����⓹�> �J�~\Kc��?�b]|Z��u�G�x�����Ѐ��4��=r��!�C����g�Y��̊Ѷ��c�P�������^e�O__��^>�Y�dhn��Lzm.���U5��e�+_j�6��53"2u�ߏ�&�!]�V�_�U�χ����U����C]ƶt������J>=kV�JCJɫ[G���ۃ^!���_"Ks�W0�=>�͕����4�0q��z]����h���>�KC���o!�eKK8d�PH�͜����H��],Gm�hW���ɭʼ�#Cop��"!\f��N�U�������� �]t�����Q�e�ƽ]x��z}�>"ԓL����pZK �D��r��'��/��(�=ޚ|q� �Y�w�iv�m:ᣆw���M�7��FOl��ܙ溟��#�^.�nӷ���۾�V=���i�V�������?6?=�����x[ž�T�k�x�Wl�z~��&�+�QX6X�#h;�������N��?\���/�k���#����c���h���#yA�����z��+}n=.?x�T�n�Ik��O��v���R�y�ڽ��Ԭmb*���FT�GH���h��Z�> �zE宾�/���kY]�⑭��,����r q��u�Z�j���i�e���"�0��^�ٚ2)S��ɒks��!�O ���Gohv�[1wgsgq �W�� *#F8�c%����+S���5�x���Σ�i�.��Do��� �ar����{�_*\�sx�zo��=��-͍�]�Oo�_I(�� 2�9$_���C�����ϧ��5�w6^`�첌��t;�#�)N>���#�E��M�Y����N7�j���,�i��+��f�}6�tC�≁ �Ȫ?���f�m��Q���1��u0��rwF���B+ȆqQX�GS�m�.��[H�|z�.���î���O2���}��<]x�7.[W���w[io nzs�,<W��3��?ý;������n��Oeፕ���G9�R�� ��g�:���z;������da&�4�v�/�<U/�����c��r� ���Q����<T7�V���Aj������꽭�?�� �*���9ەf%`��noğ�Uxe�̸ϸ��V �3�n�3�#�Ϡ5�!��K��J� �˶Ԉ��9`+D�}�]g#H����E� O䤚��� ?w+8?8�0G���5�r4�8�s~���?x�����k�\���L����@�s]����[^�L�u������@@���ǥb�ܾ�r�L33�3��w�ZWF+��t�:�[�$�����&%X�+T㸮�� ���7V~���[��}B��Y��H�ں;�ه�Q�����2>˩���L)$�nw��E�u�� ��}�k���5d�"��Ϸ;��yk�|c�?�ך"Yj~8��a# �x��b���} ������8A��z��d$�O��c�~/ijV��^+�GS��+����Rm��{��iV��zb�%�.챎�%W��p��ՙ��t�:�(�M�dg���/S�����f�jGk�G����318/���]�U��<D\��A�8�?�\���*�l�Y�9� �Ҫp{�>�{T�+�9$�ހ)��,�AI��u�i=j����RI�i�t�!}���UN�)�`=����ĩe�j�/�ah��-Q�W � -�)���x�Ğ"���_��Vp�go<h20�m��O,C r��#"�m<CyTw����.�Czd~5��6-j�J��^!��{�=�5V Fq����W��n'vy/.�����N;����Vl�t�Sܾ�� h��O�#���5��fk�.o�c��hs�d�Fq�ֹk;���+(�c2L�C�3��d㷥w��h���"�-��`\$�N3�A��?����C�?�'�f�����F����.�.9���=�Z��^K� 鱶Ӊ�mZuB}|����c��Ѵv��u�g��:�)�_Y7��H�A�a�i��McU��d��{��!d��ln�>�����5S����>]ϛ��f�R��q������A����e$�j�HP��+��>��ۺ�6�bY�bՖP��0s���8�H����m'7�۽L�!&���XE�k�d�]���O3��B�F{�+��Us�b�U�b���.�;D�5�WI$W� �ҹ}c�vc&����4!�y�(�ܜ��g�D�v����i=����6�6붇j�=�$�?ޏ�����!��6�2j����q[�Ytېqд`?S_&���dX٤h��\S�3/�F�~����|y,ZH���R�2�������b�#���ik�2�3�$�����8�UU���kz#�3W�kwfQ�հS�ےz����~��9�:���Ηu$$�Jc�y���S�+e���V�#'�YMK���e��u$YaզS�Oz�i�s�������[,����<����I�+^�Mx�"�_��������;R��1iaZ���a�=z���Y�9����\��K�� �$����Z�!�X���O��_t���YNNr2I`M�����g�n��)�G��@�\��O�0�����zЙ�F Q���zSB{M�>�ݱ����>9��d`b� k�,��F;`1ǥv:��~9�hM+�����iڼr��9����?��?�b'�PĊ{�m�j�d�jݽp@�M�6���酭�� �q�y����}rl�4�.:����ZH��½bĨ`|� � ���5�[Y��z�o"d1�|��}���ac}o~����Ԁ���1���[H�.�}p&���{O0 �n�#8��֗+as�����h����L���BI�����[�F��*����c~�l��L=�I�W�>�ݕ�D�&�-�������>���Z��v�]�\4��� ����zn`8��<V����m���]��:��<!/�(���,RM'��� �.w��Ʊ�de�o1���O@>�L��G�Eg�[[��:(�~���G;�R)���]�F�=�9����mZxd�R��2�~�-�<�-�a�ư&��ַCz}�BK�I����r6�#�>�4>(��df�����ZK�5������?6j��k���g��c0.�eտ�q)a���@�n)�M���MO̚~��N�+�yfX��@�9=y8�ҡ�9�� [h�QM��V�d�,��� _����sH��N������{��OsX����g��7C��u�o/�o雔��yY�y�B������9ɠ��a4z]�k_ۖqJۊN��ٙ� Y�N~_A���gQS�鋪\[A�K�����{�p �������c=旦�se)_���v�*܌!#�g�}jοk�k�� ���)���X�bH�Eo���Nj+]�w:G�{@�Xc-s6��;p�2��;s�Gz��~�%��P[�Y[�r�z=�Si*r��v��^#��x���6+ֺ���b���H�q�A�=����3���K�̇�e^2H�LsLF[�c$�G�P��%C��m�p>pPF9�s��>��̹�]3Spq I8����囑�20 � ���{ŋL[�X��+Mm�F�V-� e�8��Q��A�d�[}'V�G[��VhT��s��g�AE�8��Kx��2Cք�4������\��U� Otu6�|�t�\G�,2�O�y�#���U+c.�C%����I��k��\D�7d��8����i2����-f���E�4r���"����y��ҝ�#���nm"K�9�,Z]>�+��$���wW�7�����դ��h�W2]��۫7PU���s�03Ӛ�����J�dW��Y~��C��>̀ ��Ywz��j�Z��yb��rj ��s�]����B��ƣh�����ϯL���U��8h��V���LcSk�NͼY�Y,���\OPO>�S�|+s��R�KX^4a��^�j'*����}*�� \Ok�j�Z�+/K��F0z���`�{P�2 Z+}I������Zi�Xܵ�0?1$0�@���g��V�m?T��8�v��UG�Q��uĄ�k4{z����i�%{k=n��ѤhF������"s��q�U� ��){;5 �� .���p�^:n�2(�vs[.� O}��� ��]�I8���?�x�^��w��_ϱ��dȚ��ݴ����{z�:^�z�r�l�F?�QE�T�M��G�ힹ���h��=�0k��fI�Hv�p$twitn7�4�]Y�[�lX�����1�+$����������z}�������Q��X'ʲ�Rrr9 �t)�����g�uH��0�t�Y��RFs��x��a�N����g�}=�g8ϧ=il4K�|A]_O�n/l��j1���S#�YD<�w�[�;�5��\A�X�w��|��� ��8##"���>6_|Rմ_�wz��Qi�� �f�|�1fS�q���9�i����(��-����W�<Q��{�9๖�I�dg���r3ҥm����<Ai�'\�e����e���#c�.�G��>`�v FG�tz����O���.��F�wq������^#����m</� �{R��xT[{�y$�pv����k����cQ���j��t�-����-B��X��t%����X�b[z�����[�hzw�n4 gdd��V�qS�Ls�x9��s�/I�6��ǁ�$�e�P�X̙]�B���r��Z���xWB�u��_�Wz���ľU1oa�>n~\�=*o���i�φ��]����������w��6�$4�P��Ԟ��}���Û���w�B����k5���jB"�D�gL���x��� ��m5��ciAs�ެ�:�I�)��rG�� [�_�5��w^��|�B�!�а�l����� 8���䎣��������q����Emk�k u�u�8�6��U�O��Cw�������~,�<'��xd��=���u���A�s�rq\Ν�m�_Ŷ��f�I�6�+3�Zk�H�.��&�eۜd�x��|"����SU��7�q����;w��!ʪ�;�;�S���~��_����]R�G��ݕ�B���!�V�1ކ�įf�3�X�W����L����2��4��oCʻ�e���3�S�_�_����*�R���<�3��m&�(+�'��kj_�dž�MB���,`���k�-���������69����׆|O�]#G��b�4E��ա�����Hb�O=I.I<��ܽ.r� ��m�{9�3��{O%��Ҟ����҄P@l����4�:6���h�T�����[�/N1%ã��a��X�տ'�[+�KmOU[�k;���K2b��v�Hw�8 ����%�a�A<Wz5̺U�V��� 3��rp8<��M�[jy��o��r�%����k���oX�~��/2�7j���3�Z=KU������o&�iv��[��$�D#�A�����'����ɫ�ی[����<�����kj��0�-�y7��[{�ְ~�8 ����^hyů�.�G�4�����.������X�R,~`]�N���=�#�I�O� �_i:ͧ���'�4��ڝB`&�O�"�Y�2&F;u�N������t{�.���8<�;;�`hm�s�S��$����MK���--�~;h����������(@��=�CSu�I=:�E���~\x�G�w��sk�-��wr<�o���'��\`�����M7O�G�x����o�=Q�����5���`�'gr���z����&�#���l �Q�|v!0�՛W�Ih�-bp7�&��>M���iw<����x�O�cP�U��|3�jZm�[Oa���^�\�������yN��U���Gm>xR�WY�-�Ӌp��u��c�+� Y| ��+u��br��Iu���Ѥ�=������ŗ��+�麭�݅����ܫ��ݵ\�9�=*\���������,�G�c��.�q�2�aiq� C�#]�~�&�ue"2��^!O/a+�93�rI�kgu-јG!K6�f ��*���>WK��Y6��2��ju�.���VT�I�?1���P��¶��8�[ڗ��8d��Z����$����t��6l��X�ѕ��X7+=��]��2,y���Q��v;A���inĎ��ii��ޫ�:s���O��c�]Uʧ ��A瓓��R��A��=Q0��y �>��H� ���9�=k�/|0����Cg��+�G���w(�e�1�����y>�ٞx4�k��(���+�-��עxr�'��3��V��øʼ�3��;*+���h����>'x'��-S�~3���5�.H`7N���#l�ȹ 8S� ��SP�����7��'�|m�x��O��n��O"�.c�FT#�\s�_8���Z������i"����v���PI:�%y#�J����q$����g�hn��ӡ�/�/��U�;��wT���$�lE�4�G0����� �L����)��zW�����xR�kw��-����e�A���dpM|���i\�v��Ͽ_�Cu*�b��6h�2pF �cҧ��G��a����������wo>���)p�>z��A�w|f�����}W���.�iqcy��;<֗vA����0`@;G� y�� �|��p��� ���(���!����"�&�ÕZǾ]��|wcmi}}��m���q �N&dD� ���W�~�&���<Z��?�^�)��[k�<�k'���9Q*�e\g��u��t��XIe���T1g�uC�?x'w�C�Z���X�������9�Il�)��!�d`���U�YX�3����5�v�6�ot�z���IB��ˇ��l7�y�0+�-��i��H������W��_�?�U|o<-�M��p��r��)'�=k�� �[M-�ĚN�yZ�����c�{0�l�6?�P�<�Q>��� i��Ҿ���<~��J�[I�4$���5�ٷ�� �K���\�[�|i>��zu����@U�-ّ����m�W��'��atd���Y��VǷ NrMj}�k��wv/����G>e��Z�p;�B��?���_���Z����h��+ėZU���b��2ӼC�]9�6:��*r���?,�k��7���:t�����B��4��8�Rlf��2�%9.�o�?��w�����!Ӑ&Y���jȧ�]�;W�k >��{?.L�V�g`���6���K����%p'���c9�a@�;���fS��zJ�ЈG4�"�m�5�oxCN��]o�V!cđ��x�kP��;g3B��C��ǚ�s{f�a{DU\ ��Fs�u�oė��Ku$�c>79x��Rq�5~���iP6Ԛܓ�&M6mj�[yh�I���ι`�X�G�ZMsp~_��ܜPQr�\�Y�A��+nB��2���_�^.��q��_j2=�3gpC�P���s_ ~]���+�o=ݙ;�p�Gi�cO R�v���+��ᧆn���?������K�~�E���#�5W��1��g�O_�����Wy��Ӂ��V�WI�~�>7��i�<=�����qߖ���|[�σ�{ 5_ ���ra�`��`|��W̿�=y�]}�_�7tu�w`�rÜnR0}�&�Pkm�lҿl�} �U�,r�q�;�ی��x���#�{Xu��!�)>n�i?Q���ҾM��y����ISZ6�`�𮧪XX\K��е�*f(c���'���֎k�%E�>���쑭Y���ø��1�mlO�2��ox��U�-'�ΰ��x5�b���+�/f�_�\�76'��_AT^I$��'oOj\�CH��i�'���K�<G`���[RI��KB?�s��,�I@�w*�.=��?�C�^��m�"ks�b1�Bz���E�e�W#9'����ӇUmJ�C.�Y\|��H�LV���)�R���.�#��6��.�Z[M9�Ci�wh��jxcºtZ���Ld;s ���A�� �W�x��-��t�6�m�����{�#�kV�K�GM��߇�&�h��X~j }���W��ߧ�}o8K��۶����p�@u>�8����|@�t�����Đ�I4q�:��>j���#�a���i"����h���O���i���j������O�(�k�O���z�G�4;i#����M#���ގ1>F�� b�����Ըh��hڋ���-�C~%A��G����?:01_mj~/����7_�����]���? ǻҿc L�k KL�77�/c�=:nT������\�s��'�;r+�~x�᮹<V�:��A��S�B��Lm�~���P��?쉮ɳJ��uc#�ʄ~�W#������[���Q���]���7Z �w.x3��%���~|x�b��ͮ��7'��H���ýdx�^֭���״_�.���4��i#�|�e�R_~�z�C~��6ɽ��^3����\Lj�cߌv � {A�}з�D���h�w�|ӵ�;���L���Z*�6��%\�*8�N���!N������@3ם� �5���㎙#,� ��U��e<S��|�J�u��t�����ځ�Ri���I�Wdz���#,����:,n�?���u��jWwL|�)�k�� ��X�ٹ[�;�fDв�Um˜�H�9=i4������s����;��O%��O ��H���8������me⻫t��|��r?1^@]:oZE�+G ø84�+�GS��~���qy�ho�(4E�0��[ɞ}�5��B�9�1qa:�0���T��-y�z��W�Y 7�i ����Y��#Rs� �4���o��D,����b?1YW:��@`�Z��=`��ڭ�����k����i�js����|�K[V? >)�,��<K(=ƛ*�� �A���ϗj�?�q&X�*ϔ���ҽ.����t/�55�x3<Q��N+cO��>2�(g����{\jp��1��s�z���~yf��=���,�3Ǹ��b�+�2A��WX�֛f��G����ixG�y��u����EռjYa�#��rW|�pq�*�ŰgW�j6�;i�ׄ cw��P[]�=Z?P��zΡ���S�H��(���=R(L�z [�v5���m4�%�¾����,�r�+�N� b1�k}�H��p��μ0��D>�����^Eԥ++m�&�F�q���� ��K1�o��S�9�X��,�#9��ڲu?�=��څ�]I!H�شP�yl|÷$S[x���O�j~�"l%�����I��C��K�'r�:���-sOt�U!��F����[�� O�{I�o5h��,P3����(9$�+��4�O�m�4m*�lBw���J�F���3�wS᥄���ίh�,�O �Ǖ�s��{Ղ�Usw���Q�A��a��ld}G\���mօ�Z�6���Q����VX��A|�秭r��B8./�,g���$�D�y-��1���u t�{�z^��������ZR�R�P�G3��\6�7`ۜ���߹�w`����W�:���s���!ݐr�'�Ҵo>ϩ[}���q*��6X�#��"��'�=y�z��#ԛL�4�+�T"�8p�?(��Cq���0N���� Z�=VȤ����L~�;T��1�בB��VPڮ��߮�$D-�h I��cdt���R����Q��C��d�Е�40���{�������E��&��`�J��3eq��rKzr:VF��h�E�����5˴q��d�2t�\��d�҅���#ե���Q�Z|��XO*O��3H�vIp1�5��ZǪ�O��|�A��R-ة��<ci����M�j�?�%��� P��j�d�OA�'��>����v��xn�̷�Z!',<zd���/WQ1C�_����w.~�p���ς��H���u ���=^�Z�{c���]��W���>��=+S�Mex�\�izF�,@+\�K9�F�#�z��W}uu�g���M ���<�";�b)���3�^�X.6��!-�j:^�g ��xL%L+2��e�s�8���m���T�nO���@�{6K�$��߁R�^k�{u[ nг��1��� �l�n�Q�X|-en$�u��*���Eʸ=�ª����u,��ٚ�����u��������=2�O@ �x��������- ؈�^m�������w�B-D�]i�v�.H�� ^#�K��<��b�k�1��_1I��NՄl���� ���1�Ҙ�)��F-#����H����r����9e<|�/��]���K�t����"/ *����c���N!���I�P���U����c������ium0>�>��{X�d���ͦ�y�����8GS���Lx��)%䍩>��\�!Kup%�U��"��Ǡ���D���"�X�C�Y�E�i��$�3��SIJ]�*t��_ٹ25����NF9 �î�5�W�Kj-�K$����Q�C��+�s��z�x�弙��;X/���#��L]����un��# q���������u�7!#�d�c�$��^�^x��K�ja��}V�J�.�b[bа=��w��qT�YS�R�\7�M�b;{�2�JX��$�GV `dP����֙��5��ilu5 Tɞ�������L���ޞ-;�S�c-ݵţ.����~S���ȭ)�s%��,�+���ʴ���\���� J謴뻫t[�%�0-�RҸ�L��^}�vFU��d���-�W��?t��$.2x��V��wwGκ�nRC�-����ɩ[U�4���t��{�/�K(�U���Fx�ޒ���<�柳����O�!�y��jY�����:�d�R~��2��e`Y|h��⫇��wH�v��v� � @>��]~���?���957��Z��a�t���l�\:���} ���z~�j.a�J dO��§!@��aP�ݜ�Kc��>?�0ڷ�.mī� ��/��s�*���?A,�M@(���Ӽ�[�߽$�ٚl�4YX�`n���V��Gs&s�������Q�^��ߏ�TF�7�F g��Y���X�ů����cM�.�,|+Z��G�y�Q_qN�!�Nv��?©�ڛ��\4O��J��@�ZV}��>C���Y�@�w�5�`^YZ_�}���^�������E���V���K�.C�ȲE�����k���%��w@�N��*G8�@aVb���í|�lfY$�����d���Rrkq��5����{%����h��� ��t�=�:���zw��O���P�Ʒa��0Kk:ɏ��ƿ(�=��~����{�N����f����Q�k��Ġ��^�w:~�� ���l,�T��K�)DZ ǟ��d�������?P@ ��NF9�zu��~�����w�`�o�|��F�I� 跖ǘ���ū���D�F�o�h���e:�9�}�=���ǚv������ c�"fP\�s�9��� �|�1Z:&��s��� �i=5)�x��>�n������Z��l��C�ݑ�����P�� �l���k������Z��q���Ҡ�d�o��:��#`��y��=��'�/Y"),Ѵ�3��� /��^�[�:�Y��/��WΊ��I��±�ګ�U��s���j�f��|I�^��u�gXuPͼ�œ�C�_�1�]7��_��i���T�n,n� �a�i8&Gr�n�}��|M����y4�R�9d��W1�nz�ف�G�O���}M����h۽�p��� a�����s�4�&���Z���H&�ѯc�͂�X �������H�J���~�5;�#�6�~���^\�GZ��*�G�Ӂ�7k�tO��0���;/\xC@ya�y!Ԗ��� ,��F/@ݎ���� _]k����"�ij/���1<&n���v�f�RQZ�덯j�c��Y�lU�(��TA�s�S���?xZx#U8"�}@�ƪ���kQ��̘�i2�R1� ��"��+��Gub��D���OO@8>���St�v�M��1���0�4�#���N=+W�Y�bq�1��t���]��U�ǧl ���42�/d�{p�ƕ�s&��ĚU� ���Y8����a�?vOQϧ��/��;�����Pk�d$7�$Ѱ��+s�Z��n<�kH��(�`����iI �2�`��p}k�մ������v�U�y+�'T�DԴ�;�F�?I�J���&E�Z�C�7����C�Ku��t����FA8�D�c>���|4MK���Qw}-�[�!�L�1=П|t��A/�`������4��O^�O^u?ц�i�}1����be�F�#o,}��j��]�G���ش�.��B�y�`�;>dn[�9$1W�-�� ��h�,I��_2I"���H+�q��6/ϭ�:{k{��i/-fd vA������ �Etzw��i4~5�m���s%��;B�GR�J�!� О�]�s[�c���%��8��r�K���q��r��Je�����a^���6���,���A�i��l�T��z�[צ�+� u�.5������Ӵn�B����$��JQlZa*FvH�r1��*���|��O@sɮ���� �Rnmb�2Iq�Z�u=>�HceA����j���X�a���PI!w��v�M�ȳ��B���5<vqC!v-�A����l$I!o-���a�Nkf�K�ԯ,-�mK۰ţ?*�� �rs� c�%���|L���n��+��e{p��v�ɛ������,�Y>���5��z��ٷ�^�go��CU���)>��of�@����G�-�/�- �N�g�Q��ɦL��s�����TjzO���g�K��4ϓL�-�59��@���^��?����u�U�t�n�j'@���2U��p�U���֧�i���2���D��x�fI��{��<[�/�ұDž"����K�?��_z��e�5�Q-��YUBg��=�ӮO&�o�g�[?��[ZA đ�]�@��d�D�$ښO��G��W?u������V2PI��]5߅�8��?�$�:j@��ͥ��GVeIK=G���.�J�jl�L�ݷ��U �5��^9�+�iF��"��4�CG�R5g?��6�r�,��Y�`v+��K����3[�;�-�����EH�����Fpv��VM��<Es;�����&d����gꚬ��� CQ��9�������5 �Vfx�H� ����gz�S}x>��o��-��A��E|�t�<��h��c���q�O����7�"� ��f����kq��~���&�L�����A�k�~ζv�\w�����,�����居^{���m�Ld�)�X'ߜ�V�q�䓟q_W�KD���D�+��m��Ѫ�9�gq\g��������=:X��Wg'����4���i�zt�(@��@�B�8s��ǰ��\��|�� i�7�����n$��D��@'�����l�YB�ך���Q[� �n]��+���ח�H��S֣��ԦҴ���ifb|���l��6��#o>¸�Zҗ���F ;/����~�xt�sU��n�IԌ��Cu7��j��^ߵμ���"s���� |�r =k��Z��_�3�2����WwP0��'Ns�T��jRiP̞a���c��`�<�FqӵzT�TkvqT��Gy�x���V=�ց��Y��J1B|]ۗP=�G�^��.�J��!���cF�5Ox��u-J��uQ$�����rY_�.U��_&Z�n��噎U\�C�w������x���y|=�^Y�����L��VH�(���J�{�y����$���=���;]_���αg��hl&�P�ʘ&?,��� �����~�<5�5�����WI��Llݲ����dW��'�]J�X xwZ]�V�c�N�O7H������!�K���:�J�i�kVv7J��d���z��F3��>���%%sD�R�Y#- �{I�w�0Ml��7 ۈ�z�zoƽ?��:�[�鋦�>W/�zn�l�� �J��t=FY��gY�!>��IGvB�z!��Ę� �N��sێ�J���p��Wj���?\���6X��9v�[�NI(U�s�_·�o��q#�ʶ�9k�������U��]�ƕF��o���i�����X��n`�˔�3�����ޗ���#T֯ẏFӴY���B1�>ygaB��G�a�+�p��lV� �" �7R2�c���t~����<�ڷ�"���w!�r�e���:ਗ਼�N�W;i��mY���@��$K�{�Y��R��2�� �`{s^O��_Ao��r�fV&��*`�##8���i7�I�-�?�i�[^����q���ц����@�� ����ݓ�6��o1�L�gÃ���qY�7mۓ�)���|���%ن��(�\�g�>�Z�:=�֤G| ���{�^�������ٴ��,�����r�x6����{Ɵ��$�P�=��p����d������쮦��>-��S�kT�$����ZK�q>� "�� 18c������-a�����Țs#p3����ɬ�i�V��Ei���md; �X��V�G�5px�B�|Wq�jr�iږ�� 婋8��-���]�d��s8��H�{���6���{#,�2^?�3�'�=�*�C�}�[Z��W(^�<��I%�{�+��5km5�+�����Y��fV�N����d����K�izh����3s"\]ܲ.IEW���{�������;o������v~8�.��M���,��f����\{��oi��E�,c�}� #������U�zωe��WMP[C!<+�q*�@�~��0��5�2�&e�.V��?Rs������>���_�<�����/0�%��"?\�*ʔ�#�s+���ܭ�<{�?� ��5�m��vX���^�gH��9/�����"yy�����C�C<Fo�_���Ձ�qPɤ|V*�G���+cn��A�ω$�t�e��\>"��}���>��U�.�W��0ip���l��G,���KE�nw��ӃT�X�ϫ��k]=�>����Pi1H�;eBU�o>A�A�hm��������/��Pn�+̾��P����/�-tmj��ʒ����J���`��:��ͷ���a������kK�,u�'˕0�$��,88���b��{�~x~[Cu�����PL��Ɍ�,W���SO��U���h�_�a��ԒH-o ��h��wD����N8��Ҽ/� Bj_�m^�U�{Y-����,bP���9\�"��#y�W��\��x�X�����_m��v_���~��)���w���=j�W�O�����/&�>�Bd�\��>%��L��D�z�>f������|�ܤ.q�$�N+�������_jau7��:���b���2�"���Z��R�D� Ҭ_1���t��>��nax���(��t���G�ks)���4����7��}rr8�5��������淀"�[�3����c�ˀG95���}� �j\�e�yA��qT�;�H�Z�v���pHT�г���j��\�Y�ge��l�� e�Y(��l� l���P+khA�&/�O�X�ذ}�Ğ!Kk��j�-n�IH������X|�NG�ⰵ�뉬��[Z���V�M�(�1�!������W`��Z��<�7�C2�G��e���e��8��F{��)��ng��]"��.�.��ʂGSۦz�$����qg�8�����~]�c�I�����k�QX�����u IY�5�|��dg�������И Ю��/,�mu+u���{����V��5[8DQ�:�����8m�&>Xa�<du�g�ż�� ��[[ڼ��"9��2�����A֣։���������2g�u(�,������N8�@���z���-ͽΟ�e#��[ݹ�5�#s��? =��[k=fYm%u���F29��c�x�N��j��젳��h�E��q:[��`[��0�pzzi���t�מ���Q�b,��?�dm* � ��Qq��o �xY`8�#�RD��)��A9����e���'Q�G�u���/��Я��s�O�?N��=���m}"j��]&X#�`��9#��K�z�+[��{�Wɺ�t��ʹ ,����}�\�8��\���Ju{y���ћ�'_����x��xcĞ�ֱ�?�n<7�����J���g�$��*0y�Z]�kډ���H�l�2_B�&I��������E(���DV~&�Al K+�,{IB��I ��=�5��o�9��4����He/-��>e�@�b}Z����_l����AȚ���X��2�q�s�1T<Iq-����v��Mi�{������|�~B����˪j���mWB�-�Cu�w�{�$���#h�R[#�`.u$�</q�Vz=��I'�+h�<�ǻ`0:�үE�ؠ�3kSK�YI�M�8v�K�Z�4+k���Ю_k��#\A>]����rOlս*_Y�.#��̓L�F��s*��DY �ʌ���[մ�]͞���-���Z}�sͅ��A8�*�2���c�k21�/1���E �����`���ฯ��.�um�d��4����]��Ō�9鞵���e��&�-�G7�ViL��\Qp��7.�|���OG�ܹX_F��w����'�{t��"n��H�k�Was��n�x \c�`��Zm#F��#���6��������X�����H�&��5=> ��,$��09V�I��ҁ5[��i�$� ��C�nR@��%X�����;V^�ss?�5��]Ӈ�Yc͏��ltO��Z7Z����b��R�dŧ�o" cS�̓�q�;t���FѢ���K���q<A�ٰr0s��i�I&��k��myISmcx��_P�y9�MCmy�Y�y0 W@���z�~�ps��6���K��-���;�:�p��o�H�\��Gu�:��Y��g��"�;K��|2��5��#;�I�8<{Q�;�ψ�!�[3ꖐij�/�jvR���L1 ��W^�H4�C�ZO�KnmRB�W=22I�=q���NӅ��x����y�`c���#ۥg�=���xv��S�<���R����h�f�3�-��wkZ�z���9-�,I�� �������-d���,�=2�g�[�f+�F����zT����~fn"?_���rj�Ճ�#�,�"(�[f9?('!���<��{�x,o��l���-"�R�2��*�PN3�p�o� �lEƯf�۲nK�0��=�c���?3�Κ�X������V���]��(3��� 5^k��;���w��[����(X������� )�2o�:��{y�麶�ko$�-�9�3�#����X�^��V�X�u&���m^�;�����ie.��,3��֖��_ "����Ѯ-�2Of�o�d� u�2;�Y��b������Y�;�ݠEYbC��b�g?�O�7�`�8������y1;lb �Wn_q9#���]�� �N���֮g�t�v�f��P�_�z��\����;��畉�8�{�;j[-�7L�埇u+�>V��,$��<���ؽ{����N�j������_*^Zi ��𗍥Զ�!#AO���|��y=��$��a�,X��hu��6s����?e�_i����y$w�l���o*葀C���#*8 �$�u�o��R�5��Q�:�'�F/}��OӮl,� $�۽�E'��Os�4��ګǺ�����]�0�:*�8�\��ׅq���դ�c@;�2O�\�Ƣ�ǹG�Jދq��,�ƪ�d�HC�X,� �x[]���-tå�ݱ�x�d�G'?)�9�TW��ǐ��ɿf�RĶq����ǣ�,�_��J�U�T"RA�9��O�Lm����-!Y�g�%��^�������cGӠ��y��X��� bߥy���h,䜐��R���8�犫��j�D��z���� �e�9}��GfM�C�o�߲O��닫�x��Zit��e2��w��M��������r�-�2�῍�u���[h��5LJ�� �����@��&���/Eh_������i,�eP���v׳�!���s���SŞ����}*�S���qʻ6�@c�'#�Z�FK����]�0�k�R���� 8�k����@�3ផ��a�7�5Wi�e�҅gb4��#L�I�����χ,����?D�J�2m� ��n�yS)����%�O5�~����(����oS�Z�[{Xt�{i��r��U��嚉o�A]y��6�����T��u�uX}��h���F�K�I曀G��<|�*���l�W2�+�7��f�����E+���qH'�x���� ���U���w����� �zr�y2�(R�[pF9�yW����{�52e��܉"�lG�����y$y��Vv����ek%���.`��ƕ����8��ϭG�o���j(.�Ј+��I�|�}��V���%��Y ��}�1�ާ[��c�o8�c+FW>�(�F>��|=��;q6��K��KG�M��srg�|0^z�Sߚ�t-/��Ua6��ߏ x��WJ��9����2<���u��?��1�B�]��w� ѢA����m��5x�%��d���y�-gh��;�`AF>� ��EG]��9o�߲�Ž!����MZ���q�N��P<��Яsɯ����"��E�Ol�y#*��#��^�����������x�M��(�o%��Z�Q����6��y3�]���\x�:k wJ6�H ��4d�L� ��~��/1�4|us�)�l��Q�w�F3P��u�HĖ�!a��lV���:����A��:E� �e��#��9+:���t�K=sO�����Q6s���)K�%$ݑቩx�+��v��D*�{���9Qޮ�S�Wm����x�be�Sl���^3��>'�:���m���8n|õ>e'�q�֮�,��`�Lgo�=�J-=PI[FzV�q)����ZF~I�R��E$;,k�wq��[��g�!d�Z ����A���p�L:��}��O@8�k���iJ���oa�)�xK�W�\��3oF$�\���;o��>��~ Ũ6�m�b�7q���9!�u�����~�ѿ�A��,<C����:�'�Y-�F R2@��?|���[e��R�,������ֶU�KY#,���7��d� ��B�}��n��{j���~~�6/s�kZ|����SlX��[�g�^I��~�9fn�����H����q8�s�x����z���Э����\�!W`�m��p�GZ�ud�홇��:���v:g���Q��R��W>����O�=����K�Վ���oR���=C<�n}���|����=q�4�a��2��|����2;��kS��ռ���3��s��OS��j��\�L���ܐ���g�eR�B�]DƤ���B����G�t�^�c�{�5a�ede!Xv��h�����VY7:��p�8�q��5�����(cRv�{gVNo��P�]�H�[[�$v��~�S^��o������kh�d�q��|�Kz8��U�]�A�j;Kf1y6~l����¯�]��?�k�j�w�4�u��~�[�����bw��T��\u��)�EjtS��j��<K����4�&��Z��}�h�s���=W�~�x��W�<��1�qk!'�$�A�+�x�S�Ӣ��/�d�fQ�-ӣ�q�!����p>xw�F�ws�|?�4�lSXұgs#z����H�����h����g���yV�Ҡf�(u{����ӾК�K-��Zb1#S.�}1�ֽ��^�?��~'xet�CM���NkFt"�QF6��F$������&�w�^��-��`��Mc���,�AI�7x#l�WN �����W��f�NК�,��-�%A2� o-���O<k��Ӡ�{]>�K�u8[��?�R7c>�Ump���Ŷ��5���c�{F�2w��*G �~��b�Mr���o��R@��A��s�����ZXɖH|��s�31��Җ+��@!�Nyf�+BM"�K��8Z8�y�:$s8�$30�*;k[�Oٖ��̐��w��������L�Qr-�X[j��O3^FB`8��y��&��7j�|0ͭ�@�n�T,��jv۱��[���W�[ <�R�фѶ�n�-�����V��.���D����#��ڳ|�)X�;Q������O��7�ώ��'���67�Uw���Ӹ��l����F�V��;g�Ť^��4�^&��7B+��:��_%�9�8'��@��ݜdy=�B��/�[=IZ�&�"��d�cУq�:W�,�;�M�~�|3��o ]�ZΫ��� �Aq8l�M.�L�?�'�<9i� ��F�{u�K5�����p7~���@���ŏxj t=ƺ�v1eZ�i7��0J����EV����k�O>x��� �^}�)�+))\�s�������+HӬg�K+�<�d��f����<q���W�Ij�,Ө�B�?�ܷ�;~���_���Z^�wiQ�^E��HEf�{�������x�kk�e��c �D���s�We.US���ֹ�V2T���M6�C{��Q���-��md'|z.��u_Y} RO�[��L��uh�1��,���z�A��09��Zv1@<�)�FB<���v8$r�ܵ�\=W햑�R/1�R�`s��ڴu��@�ƣ�r�w'��fl�r��",��n�$'��<דV����A�Vv!�O@��G3��V���麣�;���f�������<3�fn��]^(�Iw��E��:V�i���c���=��|�o��+��l��p;W�xo�4�Ҿ#i>����ĩr�N���λE� 9#��ݨ�ƛ\J�<�F�Ԭ���kZ��x+�aHF+��wt��k��e���w��Ͼ%�8Q����6���{I�_�xn�U��jzm��}��þ Q#�(T�k���:��5��� CI�6S�ZٝF�����y�{םV�2�s�Bܶ�D�Nj�x����Z�ir�o��xJɐ��Iw��N����7 �i�c��V~���,Y��H�2*�\�����r�<?i�x�-�K���KȢY np��J��>�����|;�My�xf+��'��_}�A+q$���f,1�q�1�+j)��{�3Mo�7�n-���F#���"O�F�;X��{�ב�k�j�WBm�]��m�Ge�P��JYԐ:��lW��]��nH��SKB�[r�T^W?"�,6�$g��|�Ok6Z~���^�l���ԯ��6V$La�r������iE���rjmk�>��V�^���~f�̳�us���J�&���=+����2O2���Ȍ(�`t��]�Ik+������tHQ���?�n�z��oj�]D��w:���Ͷ���}5����DH�p�)��ך�akjpN��O M{�[oiKnF�g�A"� �X� ���O���+A�M2��e�����B2~X��<�z+�Ѵ�5[����I>�s��U;����֓,�$S�ك��t:��w��4��fUS�wg�z�Gբ����Hج��fIt +�3ڽsS���Rmz�I{�[h�ɨ�Ϋ���A������_���W��6M�&��"���v�6lc(q�q�`v��_Q�g���?����6�� \�f�����/����]�0��l��$�q��'W��Ǵ����nk#[�o<'������x���l�[\k�x�,��� ���I.RU*�30;���8��ݤ��k�Jhm�9�,$-ݤ��=�&�eurga��²��Q#-�~}k:�F�bDFV���:Fԭ����sT�)��F,�G�?�}�0Y$c���7�ȹ���%���u��\0���VdFg2*?��!�F��l����WY��n���ڬ�����5�>�n.�0/%A���ۊ�Q�V��U�K�-\�lӳ��(,~��3�H�Y�,� ��om� �ᔌ{��:�}SP{!`ڕԖq�eHV�÷WN穭���3�>���Qpq#�@�?��#h��_F�&��,,�n|r�il�--�>^�le� l>}�jx��w�i�Ƶ�5�"(c;Go�w�ہ^�����y7�;��Q�C���&� �!*\��~k�t?xk@�F������A�QH�=x�P^ϡD~����d��z�ߢ:�Fõ�zn�sai����ehH��4Q�I�c��ZMk��!�����T|�7*�~��:�x�ڀ}2Gkf!H�g�߆֪�j6M��(�y#9�-�R�ﷰ�5`�>#� Gt"�oe�"���x_�A�#���8�ZȚyu 2KK�M7Q�LI�ܼR $tN a��Z'�t}~+�t;n"��o8 rs�~�Np85���M�-������R+h�F�����i����y�]2=�+&������n�éǯq�4[�m6�\��G��R ��n�2�r0�����c�Ҳ����e��x/�Jo��X���\2̹��3ߓ]F�����;v��m*w���A�e����ь�ҋl��E&� ���]���ÇqvB�@�~l�����,���%�I{�BKi~��tʁ���t�p��z n2���K�?�4�,��kk�X�����N)����}$�֗�\H�n'ԙ>f�pr#PX�=8���Hfo�uMI�Ye���g�E� I��������>�$dg)�v���^��]v�X�����R���&N �O@q��%��s�겾��C�F���}�r�%vg�:1ǽV�o ���Wz����9[d �}̼mt�p2s�Q�ͥ���O]�Ԣ���t�ѕR BN82 �ߑb-"�^��k8�t=fC�� �28����c$�k?W���N7���t�-OG�5�d�y�w>��t�x�ki~���/�v���d"g��:���J�kZ�G�-J� U<I ��=y��wb4xt�.�)��@�G��du@�����s�T�tmHE�io4;��k��ȭ$ .�Ɂ�p �@��-�u�i!V� v��C|�(�w�O^��b"��,,b���:^�,�*��c }� ®;d�ҭiWw��:}��F�mp�h�.%�+m8�z�g�����s}��O�X]2~�{��`�=I�W�!y�&��a�������>axR�L����A���*_[Xhw�a�ϯX��yd��H{�rNv�ӎǃL� J���s\�B w�����'��}{ի�N=Nk�B��dm 2U�@���v8�����.�R���'T��b8ЉCcf�#������l;�xN�k];TD�B��C���2��(��8�Xs^���m��>$����mw2*`�g=Fy�Q�׳�f CE�����6�K�؇��,���ҝa$��e�������,���,��{���'P+��wm>�k{�jZ&�;�{hg�]���ʪ�Y������ >Im��~�/Rh��*-�9%IR�x`�=6�@�ᶟ�~!�0 �\W� ��nm�I��V\�VvW�ke��W�#o��kR1�H���ǩՀ��'��`ږ�2jztҏ.��F����c컔�[��twi��#�Ѥ�����0���۷�)<"��mGM{��?j�u A\�<*�p�}kKTּ5�j��5՝�u!m^2�r�21�g=sHh.��?�۵�VV��.E�x9���}+7H���f�R�$�-�m�)���9��Q��J�uV���/�s#�G.-��w��8�4 R��9l�����Wo&+F��'i��*�J5 ���N�g�3�IK*��:{ߴ�Ț]���4���Mԟe��Qܠ`^�G����V>�G�'�=�Z���D�f�,i�3{z �s�(��c�݄����{��ۢec>�:(�i�>�3G}v������ȁ�$��O�c�|A�i�ҚU�� ��Ј1��-�����4�\��J�Vv��Z��G�8 =�ϥL��oG����D�,���$��:�#��k����$�5meD���J�0ڗ��|�z|Ű;�^���~��[(Eݥ���2�*4���"��o�'w^���s�M��Y��k�?� 'Ȯͻi`��cMqt]kR����U��l-��oq�y���s�8\ē]����!Z��-J(�ry�����Ó��^��ϥ�7�z��6�Q��;��YN�D�?y�I@�Nj��o� J��)��+`�\s-��ʐ���2H��@#`i�v6l������/o���ۀ��ĺu��۩o�l^A���G��C�x���Əm}tV��|@'�����$���j��;˗��8hl~-�s��x��O�In%`ǘ������|@��$�����-.���|��L��Ӄ�"���j}��|C����+�=��go��V����f�P����zzt?=s��a�=Y�}���a��K[}~)�y��I�����ǥoi��6�F�l@mFOC����dd����F9Mdž=H�_SE�O�/ė�f�X�ixk�T\�w�����˧�?ᆧ}j�=��2)����J�n;+�|�u�Mv8k�D�]�(c���矯�W} ��%b:.��+Ӽa���ѿÉm6��}i4�����z����5�������=��"�E���+��+>�쯦��῎�X.�%�1��2�8�+>���y$�'�BY�g,�ORX�I��c�kuas�����_��~�]fS�����{\[ �����\�q���c����d���:{��b�x�.��C{���@��8��A\�\�v�-,���`��k���ȭ��o�;����,���ڗV���� ���`ԩi�[��0��e�`_��Z�<�e��f�7j�8��J�`r9�A�5�/S���X��9�����Zm^_��}0�T���H�n��� v���%�h�{xs�ي�� I�`0D�{�ܫt*>���>����n��_��iwgq!D{C�8�IC�HR��ӎ��~��x{�� �u�wQ��II��^�#\�X�ݒ6�@,��1T���6v����H�O��Ʈؼ��-��'Ϙ��X��1�=+�o�h��9�#�X[��LT�e����r:�_�~��E害-�����G�R+��#�G*O��9�vC)�$pk�<Y����f? �K��f��[���4�u�m��V��y1�}k>�J�N'C���I.���d:B�uq��Q�[�z��C�i�Vd�2[��F�����V�+]���7>D�e'��G��'����E��A��ip ��49x��O-�A�pw9�*��bz.���kvѥ�����3�ar:+I�<g�k�O xz����� A�t�`Z�]2g�v�!\�̧�l��W���wz������M<e�+�ӭ���L��4���$�Fy���n��(ݓ\�5��_��Gi h�����&X �pCuJ ����]ں>�����G����ߊz����h����8ܷi�@���} y����[�v�*��ř�m���-�m��*�A�v{��^K�gZ�5x�$����4�]�%���4��ڧ�����|q-�çh�>����e�U-M�JD>P}�O�f��t�*S���|X�}��+O�]߈!��g��}�.���<�*�'�|�O��/%�kn�z*�;ᧂ|G�?ⅆ���l��PO:���ȉ} Ǯ+�o|!�I��D��{V�,\�څ�h�G_�s�P�Z�>dݑ�_� M&�-����q�)Qq�:� �q�r8 꿳m��c�V�q��wp�ݱ�>V���W���|[���'h��o�~����p>�������� ���e�-�p����Kt$dŁ\�u\Qq�ާϾ,� �{×��!�Kh�Ķї�1���/�|9���u� �}�c,��pz����������l�:T����\�'=��?3]5���Zr����?XI"�K�Cp���&��%�����s-�?���/5�N�Hך��e��4�nb}�#{>X�*s����_�< w� �4�7L�ա"-֗RC����1�m=y������^��^��"Vɚ}49�*�k��[���7��w� �M���H�膰�[�/S#RԮ��4��R�-OB�@-#HW�|0�>�>�on�Y�����HU�FT쌱� ��=k�M_��ɾݮ��[����<?�x�E�U�nWv�rjv:|�3]��."ڸ���L^b�&�得gF�ӽ���?��I�]]��;M�r֚�q��������/��ڀ�u{i�V�t���K`G־����U��vI��H-�3�]�K�VT���S�6�n�N{��M�o�S��[m[�|9:�Ɠ39�9�[�v�U�; ��j��8�8˽�~����t���M[�>!�.���>� �G�I��l1���1����G,e�����\}���ʛa1$Y3�pw�9�2q�=+ꏉ����8����4MR��I����l���x����czֲxn�W ��+$��n��8��m<�ӵU�i��իOތo��1��=$�q�W� ��w�%��I��X����V�8�Y@�5�h��m���TW0[X�r�^o�rd�!%�1,�'8k��o�<��ˢ�6�dU�9�����?) �]w���x4��.�?|�O�$�bIv����g�aW�rmT_z:)�뤓���{�-u�� 2����F15�H���Lq��Z�|yy6�����8�/��y#�y��5��X&�A��R���e�n3����3�����]o^�uҴ�cnF�?�|�ꣁ��\�z��*�H�Q�?� ��6���n%Ǜ����l�q�9�� �/X�[Ѵk��-tMkM�"Ӧ�Y��!P��6K����J�|o�n������ ^�c���f���|%u��s]�68���@9lw#��4����j����Q�NY��Yػ�-R��Tլg��UWA ʺ��`ÃǽGk-���c>RH��t 3g�v�^��MJ��]������-5F�\�a�@P�W����sѥ���h��$#ξҤx�HA�S�<��s�t-DZ���j������gŒ��Q^�t�.H��'��{՛>�e7zT7X�����9]�@ϥ{V��?�����Z;�V�0��N���'*=sN��[���f���iQ���,YG`��h���ing���]?�4��o=��Ьc�0�W��NJ3ml�q���5������}� "�#�tv�����n� 8�F3���O��������X[�;�Q# ��^2�]�i�O�O��WVE�8cB:�rG�Y<���m�_�k�-4_?���[����o�NO���{+_!Ϋ=�٭��˵�*�u���[�P�����V�$���&�ӯ?�q�|C�k[`|�O��7g��:���<�L+կ>XG�=���0�s�>iv_�+i�~��m@���د�|��*�)<�����]���NU};�6��ȖV��py `3�S~|�Njn4[<ni����$D���� �� x#^�e��d��<S�*��j��"#��{X��!��WZ����T��k�&T#NI����T��� �/����w�ߊ��S����ɹ�d3l#=c�A�z/��iml�~��[jM �f���ҩ������u�_|}Ѵ����tmcTX����AtTy�\NkO���7�|8�d�S_j3��Ӯw�%�?(�p��<o?<]J�����c���U/N��6�[���k=Y����.�s�,��}��P�"��y~����� �w�)����L˸���L�#$c�� ����Z���MY�m�|��1��s�pkv��:]�*�f�qc$�S�V�'L�)g8�2�E̿���C��)�hF�������˛�>{�����i��������sL�@�)M��T�M{��� ��]u{ >�8���KlI��==�]> �?VU{+�4Ր���$0$��n�\������̞M^;~:;�uu W�`�$\�,A��\q�U�.�wd��q��m��w�Ҹ� �c^ɬ~��R���}oC�*�m����3|3�{��Eɾ���U���1�MtS�pU����C e��}���_�f� Z�[�u2��[i8>��<�Դ{1��-���$�ȉ4l�H�� �3��p��}�9#H��.��J,�#���ٮ�������:$V�j��͟�/�r���뽤��2}k:��J*�uF�l=HO�n�I�����4{8���kQ�o���,6q�b�6G�u� ����N{X|'��RI�/& ���,A ������<'$�{,Z�"O5�4�X��S���Ev:G��tk[xl����r�=�er:�˷���O�y�Bڌ����a�M^m|��.|G�kͧx;Ph�'k\�G��3r8�+�<W��ź��m��?31ב��`�H�>�S�'��Ģ�it�*l�������֮]|]�(�W{�%m���qٰ�H!X�@�G85�G���e����7����7Mk�_X��-��r`<� �� ��^X4�,�S 휆{�#����_s[ߴ ���S~��~2�TH��:m�b��8L|�p}���O�oSs�yG��l���=+��ukR�[��Zߓ<<l�Fv�=;��e{����X�Ң�[�X�����`d��5�n�<�#��w���O�]֭��g h3�2C$��הR�]��>x��6W^�L�~��)����,r�!Y%U+���^����*�YM��i�,x��V��Ŭ�-��������;[��t��#=>|�k��m�#�4m>�?�,�SE3�7]�s����?�J���ힵ�3��|o��TZ�X����L�]��ќ�FI<+��M��]�:E�el]^it�`*�>�Z9�#�'�ڷ�{� Y�wĴ���� ���24��°c�D1�2�0v�w���_�q�Ǩ�{�hPOu$F9�.��@��W<���mz��mR�V���+jVS�"%�?�$��[�'5�"�ƒ]�����$;\YH �����*���R����/_k�5�~a9v �й�:7��m�Zix�d�Vx� d�2#~l`���:�Ɇ�Z�%�G�$��D_]Ϊ;�ϭu_>��f��w5��`�i�o$�(��n~��.�&xk��&�~�$�nn�Ҝʱ��3����{��OٳOӣ��|e{o�];����!\rC�e,F;`}kߥ�ż&���(eV8�AI�Rq�I�5WT��4�������p@1� �n\ �*��SP@�N�U� �<7� 7L��y'N��+q��h$��g<U�Ԣ�b� ��ԯލ%ߒ}����ǗU��t���(sc�,�Q(\�n0=�>���5D��;�� � �B��"�2������ԑ�I������;+���q)������ *��9?�*�Zm�Q�Q�_ýs�F��[��Z�;�1\ۿ���n@�N9<pz�g���ݧ����Zjpǝ�^�$�g������{��2h�Kvt>*��[�f�X��d��=��N��k&����<1���B�ns�ӓ����|s�NE��E�22,9U|6ߖF��s[����X4QAyo8d!�~G�Z��[�SQ������FM[M���7�{��t����5�=��\��d�7r�S�Y����a��+O\�dK��r�|�o�Y��o��c�aVX��2�:�����\3�G$�OQ��*.$���"4��c��U2Ecys�����Fz���MT�R;��ך��p��˔جvF�`��H�sWuɎ�l���uk�v��˸�Qʜ�<4����-uˋKegA�_�_5�~P�q���������̶��ڏ{�N��.!d�c�[p��H�g?�W�m4�7�m�Xx�[M@�pD��'�r0�8�͍wP�m!�]+R�-S��|�"c0���2O|U+]Z��FL�V�#,q�� �>\c<� ��h�DSl�����8A_����*Քz�ݿ�t��Y��{���`�������z�a��ii�;ۿ ��e����d��<`9��!MM#jog>�{�-��9�� \rTc�a�OLմ���P��sP�ܲ�<-4P�%��:�p*�E��UC=������ ���V�d#��O�+����?�a�.X�K]^�d��e;�0x�^�l���=>[kg����/<�#|�W���/�u�ͥ�I-���f����Ї�71N_��>�j6�{�����M6X�,�q�Н��1�qF�q��\����&��{I�\��x�#�==8��e����Ś"^[4d�9�U��(�)����5w�ȴ�Wv���1��� �'89�=�� ο��3���O�=�,S&�ʼ�NN0xaky�ӵ+{ݎ�se�D2�.q�� �Ѐ�����:��ڕ�o���N��<d��w�zp�4l+\�Ӯ..D�xg�#�Ui4�K�eq�r��q���=��h.`���u-�]��i����F�U<p���W"���P��6��Բ����i��e8r ���SX�c��������7�I�,��H#�`�|����L,�����㵻����Z��,pw4��9 1ר��{�P��4��gC�����2J���8���x��^�'�Vky�?Ӵ���$]��8<�ɫ�흗������ij2��fR��@8a�ߚY����koc���,y.m��?��B�c<���Q�����;�/[�6���q�# ���95F�/�D���Es�ݴ�'��bL� !w��=�9#�j/�&���um6=6�2�][�)���\����zPԂ�m��ӵ+��/�5���� B���#�'ۯ��X.��^x�HҚ�&�N�w W�6�!V4� n���&�c .�}�R?�@s�p8�zn�p����F��ޝ�/�-�# 9g�Z hk_��6��]J�^��9�D���'����U-CC�}�Z��&i���I���?�y7�:M��ڦ�f5و��/��G�l�m�U�8�1�/�h�sj:�ϖ�&鮮d�wcaO��K�e���."��u~H�|C�#W� �աk��ɊYŻ���q�Y�X��}v�\�����oas�Ɍ|���;��xUw4֢z�h�EƯ�q��5�JV;� �=@b3�X�,�5���h.R��k{O�"������=1�U�7�:]���Ckl�{�����H�#�{f�Ǩ[�6��dN7t�+�<����;4R�)��Q�k���ou�.�����?�s�K���̪����L���o�S��<���M3J�����ӭ湵ɷ�XC4D�|�1��rj�v�Yå�m���n#y1"��HV=�Nh]��� ծ59������eF��h��T`�xSb��8�+vh�iv���r�6�<�d; !9��m�QͧC.����㸑<��$�p��\��V������4E�ݸ�����G)�a�C�P�O��/��F���k7洶�X�� ��N@Ͻq���>���N���[u�e�{�A'�J����g������3[�J���n�!��R���JL�'#����4��-N��,3[��.!(��G#�����|�T�7����HQ�圳� X��~a�t#�ƹ�W�_�-VK�|�mE归���rP���*�����wzn���Y�":X�1���=ד�]����25��� ��fA�|�s��V.)����K�Muq���D� $�_W�����F�^>���O���em\ͬ�6M�s��HB�� �8�N��������%A~Y�dJ��c�s�>1����.���n��n��҅�W!I8���4�Kd6��}�� ���Owq5�E����[[���� �q�y���l_��A���'�!1��%��˫���!��aR�Ё�5�.��Tjך֛����A%ͬ�Wڗ�4�@�B�-��-��\��|p i� 4�pd�H� �>��+���8l~lg8*h�{�Mr��gP2�q$�U�p��i��W=��_���'�t���{�Zx�ɹ:s:Z�Q�������'�������_Ki�"�I���������VOpqiӮ-�%�`FT/�#��V��=�P@��iG�e_��~U�O�rk���&�Q�J�m-���mE�J��<qj"��}�;\dr3�WIz!�cy�x��B�>$�#;A�-����H�E�Cᔽo:� Tد�'<q�ہԓ��߈�7ks1�������H�'?{��2:���t���k8��#D�G�;�F��=��~0���9�Ɩ���s�����<'�&���qҾ���t�'���٤�O�u��.��fg�@Q�*2A��|9�;�i��h.�}N���F�Uf.[j�s�_gk�<�Z_�iW�Φ �(�T@9`ƍߩ8���� ���<o}�i�������]KI�ݓQY�I%� FCa�l(�Q�z�̟����l�����pV{yT���Gs�����6Ե-����U���4}9KG�d8��~��u�g��.��<g[��t�A�9��v����U_�ʌ��B�A���Y|>6����-���w*�ɕ#$<���C^��&��ZJ�Pf4��xۓ�$r{��N��.�����d�J}R^3�/gyF�O�'5��:&��h�Ҷ�}q�ź8���@��d䑂2�t�����9�8ܻN�8f\�O�H�y�<q��^��_�9��1ee����W�����%���np: r6�e����SФ���dP�k,nT��;�ڸ_�$~5���?F��{]>�Rկ""1o��4��#'��@o�}�h�&�ўпf�M���u��mmV�T�vzyR��+��Ŧ|9�_�G���iets��0 {���/`��鎽+���*��'o+�OmhE�u�죋��:��y����=��?�=_I��n�uɼC�h�d��#l��/���o%KlRrp�&��5cI-un��)9�����6����s�O�N���/�r� �z�!��GY�6���]ͽQZ���@#�1�vt�j3\o2y��$1@G�zWe����zM���~�����k�Yf:������*K ��y�ҹ]In�7Q��Zis��%����kF��C�H���W��mF�ImF;ۛX�B��m���5�������.���V� �orf�1m����9�9�T�m�|Qi�Ad�~�F8a�2,�@UD�I�sޓ��#L��&���!�ic��׆1���W,��8�:{ׯ|5�]*�m.�>�x�;�{;���sך��?��/.4[��1e���I��� �P�瓎�� i�5���5���hD�Vg��¡N8�:u��K}��E�y�K��$vv�x�Sr��B�\0���IbAd���*���xP�N��'��Qi h�@)8���F}Ef�K���m�LX��Lq��"�pK���`Q���|)=�1F�Dʻ/;~�<�+�E�I����-�;���7��/5� �K��+im�B��H9P���8*S�b���'��+m���O� �RKG�|,i+ ���A�#��aX�WԼ!y�K��,@��l��?�9�w��~ �|e�~#�Q��ʋmF˂ ��#�ǏUoz�ت9�=��g��p��)��>����)�)�&��k:E����m���;��ˑ���y��U�O|H����G�yeU�/�yB)�6���}��ȩ>j�.`�t�gG�j]a�V o{m>P�/.GO�ݹ�5ߍ~/��U|}��^�J��g5�Q�e�P``�}k�[����F��:`���Z��h-7����;������3��`��p��+�����f�M}� wN�PQ�������"�_=�.f��{��[����l`]W.UH\�������k�B��n%s#�r7�%��O,z�k�����νG$�6*�ׅ�iKW��H���?��{�����:"�H��c9=�\N����"�.�Oo�Āb+;Eg��I�OA^8�ߵ� ��������5�������U�8�9�B�G��F ���'=\�9k'���Mr�] c?�.nm���%hP>�C��_�5s��49�{�u8��fÈ7�$�0s^w���^��h�Mҳ� ���@����X�b��y������������Y"'�FV��H##q�N=�Z�,!Q*j��!GRPnn���t ᮉw?�$��I��Ԟ�e>�����k��}��o���ռa��L�{���y�*�����}CV��l|�]<��U�5��:1<��{�����)�ʸ��Vʓ�xɿ��ϖ�?�����|/�����[I�+ d�ɐ�c�<g��sX��kBԒmV�x�V�Jԛ�$�ɀN:{�;�E$�?�|:�����7x���4�5M5�'�.�DO�;��Pg9#*�k��B7�ϛ�����3��"�ݪ��kC���>4i�� ��)�&!����Ӑ��y��OŏGf����Է6k[˛9GЂ�ۺ�p���� ���9���q>���<�r�N���9Ջ?�z���N��Ϩ��$6v{��o�"� <��~�S�}�2������~�go=3N���]m��o���qo4���@��b�O�c^�s��<4�S��D�%����y-�`�}�e�u�=�όd�4�_���L�V��"� �Im��:�{կ����][Om�����mP���� �UxlEh�Q�j+�빝xQ�sm�_#���cS��#���ng�a�8BA��ҽ��^���>'���E���� �B��{��v�?���&���xfx�e!.4�^��P6H���9ݜw9��;��z���YxCI���O�,���7��퐶�p;��1�]X��J1�O/_#��=��z����[YF��f�F �Q�p7#A^]�-SR�?ٰ��gzH�T��!�;�N���B7ރ4�2+q%��w_��N+þ)�3�ܐ�tp�!� �Ÿ����N��5����7>�jZG���o�~�a��6�s{&�YAݍ�ˆ�=u���}úܶ�b�d��V����q�d�q'�p:d��,e���Xj^"�Ҭ�����)'�89i���}���c�k��ր��Z�U�K���E����*)���`����5�?R�Q��~ZÓF�����Ϫ�y����͠�����#i6��,9~H1���㏥p?~�1������e�� �� �?2.9,�}k�|�����`�|Q�����Y���%X�w(ifwQ0-��^#���c�[����Q[v�������P��6�q�U�/�����漇��;F;u�����Qͥ�i�go��L��h9��Kp��� ���GÚ����M���-�ҋ�@h.ZX���6�nO�yW͚���j,�8���ab� t'��XZ��/�#Ay�M8L�%����+�ޕ����BZ��?��q�Vm��:���V����C�ZG�o/l-���ߜ�*s�A������!x�M�Y�u��dQ�`�q�Ȭ�k\��:�^,�i�S"e�Wf-��rk�~|;���&�Y4MOSrm��x��V�sop.>�s�^��ӣA*�Rk}�y?Z�j��v^��j� �O����R�oo|�vy�HL�Oλχ�.�����jZ��ڄf�K6!$u=rq]&�����~ �K�����ޡ�:KI�s��r��<?5�x�C�ƥl͡�Oen�,:�M����8#��*��5J-F?$l�Κsi�_6u�m�)�%�-<Co�v��GSy�ܱi�*��1�sӥu�Ņ������m���&��3��6�]q�8ϧ�|��� IX��R�@��I�<���S��/� .K-j�O�^�F����>_�=�;�A,I�uc6Ȅ梖�N�������1��Ț�V�6Trʤ��I�*-wº$�L��w�!�����m-�B�̼�ע�W�~��<�z1|H�1��H��Ic��_�Z���RZX�[���n�.D8 >_�d�=�W%Ocy��loNU���:x�M{y���˂L��^7��:b��qq�M$xru���>|� �'�#�5��@�4��]��\�-��ݎ��"`3��c<PɵA�vG$�ߵz\U9.jN�9�Xj�������cO-���z:�J�ַA#On�rUJ�pI �Z��������E��^��G�F�(�`)ޫ��{w�2����'��Z�_���-��A�G[;UX��݉��i���V����>!�i����Lp[�9G$6�۟�rp*g_Qߙ��"�A[���x;O�<?�k������o�E���zn=k�~*�6Oy�̓3��9ٌ�q�r����}.�YImR��B���X�b0F�00y'���a���N�5+�g}���z��q��+�B�O��ww2�R�w<����.�S�#I�K�Ʋ�����5\�yWna^���+�X���ͯ�uv���/��ќ�6����5��D���O�źZ0<�����:c�i�Y�f��y6m{yy�%v�+z�N���W�O�����Օ� �3ugn�e��6M>�R�F��jԞ���k�#��o�['ڮ�>\+���=�H��lj����y1���b>Q���~��f�ZT�l��j7:i�N���P2O^�ؒF:�3�&��Й��s�>�U�\�t�H��^~����[�� ����bV34A�y ��9��:�]�~ӧL/<G��+�����7U��=�'�k>��[��k�.��X�v >��VTL�QW�In�NN��lt+�DǦ��dJ�o��L�-�(>�Y�z��\��2i��m�8-�DѲ��a���$��;�zU���W�LR� ��\�R�=����I�X���Z��H�ga��l��2��}:�� )�s>��xc^�g�s.��N�퓐���@��X�ѭ�X����^��Β�$��cn��a��:Zi$z���#�7�j�>�gs��H8�W���Ms�^��[kW �f}Rhݒ����ڹ��c ��ê�M&�]h�_%���cE,�*\|Ē9�s�����X<1�ij�$.�sdɴ�B�?($�����8=�k��\ͨh:�K�S$�e�r�Ɍ��-���G�VGӣ}cI�Q��ڎ�v��O�y�;��Кm ��g�1i�\���G��Q&��J�Ѱc�%���ӱ�5���[�&�na�R��ӟ�h<Ag�Gy��\k��6W���I'��H�:c����8�������K�nC��^A�I����ƙ�_�R�k�ymsuev~q4��=w��T���z4B���z���U�#ې=�O�P�������m���V��sku�h%��� :rzU�+� �Q�NK4��ڛ����M+�Us�<���0F��ײHt��*U&/��- 8��bsߟ�VM��~�.��xjX%�%��a+4$�r�Pl�k��o��э�a����B0�܉9g5T�&�/�4�� ��Q{�������+�l���/�4�B T:Ayi�ȇ?6#��Q�,�kO;�:6�kw��f��ތdu�Uq���J�^��:t�[��y��6L������ž՞/�ާ�jb2�8�G���X��^zB���,���E�M`�);����:�dqY��l[Q�t;�2wEO�黦�&<B1��z���vZ�����KK�:D,��Nz����Y>=�-*�oc�5K��q�i H؞11��1LV�A����Y5�7:^�!dMP�x`�\�LSAw�vڅ���Lp�����I�6\�J���H�\\i��r�z�'!���%ħdbAS�8��PxwP����Я����b+=NG��0��pNi�.� ԯ絖���mÂ֎�LȠ����'��v��",丛�1k{ۢ��f+l��?�ב��g[kx���=:}8�,������ �����;)�+? 0����RH�E&��� f�X�s�-L��K��g]o����[�)J1������Ԧ�K�C6��A�����v�k����븒08��C�Z�z=ܲ$�qaz7Gt�XF�Ł���NI�[�kI�ٮ�������7,�C�u99�H�I�G�Լ���2I�j���=������3�283�OJ�����(�:,�-��̷��O�0�>�(�9���y����B����"�)`FT���ڷtK�,�Q<�}� ,��M��`�c�c���m㴝��u����A(F0�� ����cZz<ׅe��Ŵ���#>㫞�x㠭;`[`��LeJ���'�����/���Mna����P1h@�RKl9��^1�Jڍ�b�<��meP;/j��h#!W#���-�W�]�qܥŬ��h��u�q�8����� �z�>���;�3T�a����#қe9�p;T*쩻`��s�*�ͬS�,�^)���N�S �<I���WV:~�i5��-�W=�L�t>՛�]x�N֍Ω��p6�,������yg��jҥ��}=��K5�H�ȣ�60��>r��u�}W�^�-j�r:�-�N��0�I?wnN㷧��R&�����u*��;��@R%a��Y�A�H����Dž����?UӶ� �b�����խue���-����yC�x�nX#���UC���Ʃyq��{֥�c��cs��-F�e��4�o�H���;��ʛ ��0xǚe����P��� �|Ns� �Ȯr���[�����{ ⸑-Y���` ��m�Q�sޫ�7�����������p/\��p;v����Mr�I�� �sEg�G��q�.Pz���P3�X6#U�{j"+S��θ��̪?�����$���V4mcNֵ�[\[��]�R�;3�m�s��Z���Ⱥ�Bmm����͞(叉lu[40N�F@�#��2q�2�����P�]��F����w ���w{-���e��O���t�Ox�m�x�55��zm�vwZ�3K��q*,�����v>��y6��3� <�(�2=1Q[�v+���=�|Ã��˕ �w�f�W·ͣ���� ,lq���m�5����Z|>)�R�K?��E�%��lg��U�$�B�����a�.K����|K�?��ǒ#k��1�ew�Q����Q���zKK�tՙ�'��?��ťi^0�5���H��m,�E0��+t�Y_?=�y5���~+���Ι��^�ቅ���r��t� �)�T����<� �O�F�;{���@�\3���6J�Cdyfu˟��,A�;V?��g_�� �M��&�����P�����I�\�ы)Ǫ7r)�KFDou��? �����W���x+��G ����\����� #pn��$g�]��uO�x:�������[R����M�R��q]a�� �ON���N��G,i�ۺ�]&����d�ɲ{}�Z*����FB�MB�~5j��{}� MaI�-/�E�W��+��l�߃���I�8�#������@�tz,��>�zN`�����X"��;W��O�y�[$�֩g�\1�Y>�$��G�>:v=8��t����W0����{O03ؤL����dV�~nG��� ��� �.Z�_��K�����+g��1т@��� 6V��&ϟ<9�[���;K};������-]6��N�T���� p+J��?í?���C��Bg`�]�}��ı[$�!��e�9��W]���;�8��$h�n-HO |$1��K�Ac����[��Y����[x��C�a�i��]�����k���`x)�����O�"���u��Β�����n�]=������v���,m��D��͙������I�)]�m�a���g�߇��4�nu��_ݟ2�V�ۏ�����|edR���V�ձ�s0��D��{�Z�Z�\��� �Z]����� ��)��Þ:Ծ0�P�R���n��n��@��e��u�q� ��RVg�~״�o����&��ꖺ���4�mVgӅ�ERE� �b%��!�~��0��?����]�I���2�R�&�M�7) K+�@b{קx7��߄4�mt%���>]֥5�w��C 8.�����us�߳w��kZ���b�SӢ�~�)"�ڶ�WD5��u�=�{�xcත���k�[ !��\Cf�>̪7� ?1Qך��g��?�o�/��Z��}�+�{H,��@F~ �,2�}3Z><��ŏ�>�������隄b;��1�(9d�rJ�Z��,�|:��M���ͦ�Y}��<8��۷b�\�h4�vz�~����W�G�4�W����#Y�O��ٮt����x�k0]�NP��]��Q���=i�3���rʶw�l�3"��W9U��y���>0�f�\z����*�N��ao�ہ,plم>y���߂�����ao��*Mm6�M��Bt��%H��ܥ$a���:�7 D%��^t�_�y�����d$1��J�e���<�-�>�Yk˼E�0��F�xoź=�k#��t{I�\�r��'�� ��Ú������^��R���m��k{�@����y<����Z��k�{�Zu�N�͍,eTQ�q��+�x|}h;���������%f|y���⎖��.�w~�����e`>b##�N*�?�"i�;E��fK�"]���(�(=w�zq�k��w�z_�K[S����{�Bv�8r��t�~`��\��K��W�*�U��C`��q��'Ҝkf_&T���L�4o��Z���y����H|�i.��w�.A�|��܌�/�/�7:DZv��\�������A�������^�W�<yk%�I���\�-InA*�y �+k�� ֩���Se���4�m��y����I|�^/�g�h��E���k�6XG.���#�;�^0�}��Ǻ�/��z�m�J��� �F�H�k�?g�^�c���9YZ6�E ����9������i��?���(�$�'�P|�&)�K���,9�SK 9k]���T��iN�6E����g&��I��UR�aH�@��$��'��I���kG�U�&��_�$���n�����C��ŏ��_���*)�H�|�#9D���2���g�.x����l���w<���mn�y(�9\�،��[���,�I��<D��?C4�~�xb�ׇ��~��1�~!�~��+���hN��u��u5O�x��'�����{f�>�k��F�����K��̮��n2�'n1����]/�ĝ#Q7z_��MbZM�-u��S��a[~�S%�SX���S�'I�����:��>#|3�e��r&��.-J�ۺ��Ӵd�zzf�q�������[����]Z�b���2��ޟm�I�����G%��m���U�{�,���VE�6H�i���B%�W�쮗d�Cp&d�wF͍˞���\��X�$��(���vK�ĥ�t���,�m�q�#��q]?��[%v��{dz}Err|W�m�A$ͧ�]b��"�c�>f����X|OT,f�g$��i#��-^��Rq�O=ԧi#�5�=�t�"�I�]2� ��,E�IQ�m����'�sZ�������Լ1q���U|����kx-����8y@�A�Ey>��d��-��2���xO�SKz��m�w������k S�N>�v��BP����C�7Z�'�4�/.{I����`��ڹ۫{���u :�+���x���.���\�}Flj� ��maI �A��c/�x~����]ZR�l}��#ד��qX���r�w���諀��I�z�[i��j[x�\K�"��`��=����Tw��qz.�h`Hd�R�<��<���ޮ6�ɢʶ�u��m1?��3���r�v��k:�K��5��}:ݤ-��9Y=r03�9滩�R����Lᜣ(�ľ(����AKIH�9 $a��fQ�1��ֺ�^���V<R����HY���������G�6Z|p;��i��sD��� V�H#��uC�vV�n�7J�+X<w d���<���)�h�v�" '���7��������wD�x� �����ֱ|K� �Y�D�-�!g���[�@lO9�y�*�/� լ>���ԂIe��Ƒ��C���dwҮXxoKoi�L��39���$4��!d�0������s�Z�ok'����j�i��T*0���xa��ƹ�n.�.��ต��K�0��p��I��f����H�|��Ʀ�b��V��8��+� ��:W�K���&�e��K����j �6� �d����t¤9|�g shd�jw1�jQ�e+��X�8RTBN�z����n��ĺ��s2K,�����d���J���i�j�LB��)�V�ܞkgCQEe>��v��Q�.��H��p��h�F���r��j»�Է��_Z�u-��nf�l�ٜ4r���w�W'��q�:�&�Im��E��j�e�fPH���>�kԼa�;�����"K���"�6� v��;� ���du���h�N�W&� ӌ[�k���K����<@�傀���e{gpG!�~U�C�Î �fEB�89�@���p>��I�fԲm9ޭ�}k�E�dq�]ܚYR,Z++�#b�h�s�#�{�T��s���||Ȭ���_]�d�t���0[�ڣ�NB���d-�iwPi���I�2�ٟ�U$n=��V��\�$�Zar����@~G�p����q�j;K����o�R&�6�W�G�8,��=1Z�$:n�%�ڬ�L/�o�K��� sXM���?���Y�����ϭ�x�ð�#\��P����Vh��&B+r��3x���[�OQ��N ��#bxP��'X�y�y>[m,�m����ʼ䏽��n5C4���Y$����lhz��==낦�W���c��"T��&�gԞ�i�[��uˈ��"$`�#��C~���_�7�uE�� |&��A�У�~�+��≴_���5]n�t�Y!��Nꠝ��� @�y;x���4�\��M?NѴ�Ñ�ܾՄ�:�0J����g�3�� �[�X�u�I-o��oV�g�Ț��L�]���1�~�t:�CǸ�[ľ�敡�Mq�]&->���������?�M�\��*�B�Isf�&�Q��*� �'!���d�\W��V����X_ص�4�"]�hp�09�c�E�Q�H\%V�V��c��>�k7�x������$���y�m���(0�`6�z����#Z��G�bI�g�]��)�������^�&��+����PH��un�<.���^+��.<P����Um�7պ�����JV����o���k�|�g�OP����V�s�|���DR��?� ��>�K}&�� X�-��Ũ��g�22���m-,m�:�����9�$�U/�G��5��p� ���</�_�ӂ\����9*b$ޚ#*�H����� ��1S�y�l�O�[=2Sm��22aJ�$�¯��+]���qW��O�{��?VǷ�����l-�:�υ�d`�����m��9�L����s9n��ys>�k}ous��9���� 7|z.=+��u�in��ԧ�4�-��Ha+yX��P�I9���7:��4�{��Gr��w�*1�FC3p1��׃I~�i�̲ͭx� ��pG�G�� 'q=:d��� x���I�j&MOvYn�*aE_�ܙwl���*��������t��-��]�6�e�c$�ۖ��,����1� �x�����V(�����A=��Fj-���RY.���S����P�$v?;~nJ�9�.���|e�겭���:�T=����������>�M�W&�`�65��bq��'=z�\��n�x��v�6W|��=�5���ir:I'oR9�_Ia�ٔ��氄��a!Uh�9C�3�� �`t�a��Ό�K�x/�aq�^#��Ԑ���p��=�>Ymf j��֮����IFȷ���Ԓ�ixs�z~�9��tK��4p�x�gQ�g��n�j���Ehk��F�q��V��{��F9� \�Gg�hw�[=f]#RTG�E���(,Q����8�Rx���i6�:է���� �LJp3�͌�{�U�n�Yc���/��4�%>b |�q������!6�>�W�o4������Ax#��'V%�V�wX�[�����H�\Ő@�8e��`*巇�"��P�o/<;H�y"�3�<��:�ӌU�oQ]:�[+�"�A�1�����ܰ�`�<�)�{k1�6{�(�EYSJ�2p�q�:���ҁ�/�m�[E�t��7�gӦ)n#9�F�ۀ?�/��Xi��iz�3�MG����B�IW�H�Fў�1[:����zH����I��#ay�������y�E{Τ��#�<D���a�X��zz�4_M�4�_�>[�fcwd�zr������nu}F//V�5��S�\��-�H)!T�p3ԓL��N��[$�φ�ە�Uy�ھ�zd����qZ��Z�R^X[���<�l�ʹcn�'�v㎴��|%a�ؙSP�4y�X�M*��J峵�g�A>�-����B-+T��e)���d�ڧL��f|p6�z�e�:k�ޝKU�/� ������� ��(� 8�R�iZ��+qs�i��d�{c.$�F��=:� �P�v?i:V������}J�5V�(%I��Ñ�p:�Һ��:6����^�l����/PT�1\7�-��ka}uis#{�<�|�j+ug�Fq[�֗��kq��O�_˺G����u�*��I�������oi&#g|���O~n&f�?���C�;�v�#A��:�á��g�1#����s�~e�������m�H"���Z��J�C�� �}@�呞i������;�"c��F�� 6�3��?O��5�����E�9�⌺�Q�5t,�B��A]���ͺ�YH�xgC����J|�����] ��o��C�E����<;m�jo�$�yw�p��#�=�pj��:��~5/n�٠��v�Z0�1Q�{�?QV���\�Mz������nGBW8'�V�uhK[���s���F��ߠ�~�XI�h���N�M&��[���>��Ҩ����(M:�+�/��d��b�)����=MT��Hb��<�O�,#p�q�9����ڣ�P�ծ��m쯴x��9M�Bɜ�5�s���I�;�Oou�i�ȵ��#����I+����q=�S�\U).��Kn�n���Mn��\��|��� ������z�P�tsi2��94�Z� ��eg���v�� ��ۙ����l�B�f��n� ��w ��0����|;s5��yն�q��'����r�{x�Y������|C�%�ٚ�ծ'FY�,�,�^���������5���\����J]�ݸ��ۮ��k�<:\Vv���@,��ui"�2H�s�r=��K��j��U���s�]�B������@P�W�u��5J��]=��ܲ[��mo������R3�~�=� ���\xf��H��(m�g��� 9U^9, �=��Ɠ�o<W�Aawm2�[a�Ĉ2���w�8���sj�]hd[mj�[�A��C'�����+Y.X�x��T�wg�GZ�4�=Ug���U:Η|��E,fGU(��N����zg���O4���֏*��6�=�,HeQA��<f��7��hW����7��:씁����:�\��&�P�H �<�_j失���[�CC����3������pI8� I.�=�os��Ay�CX�U����*�9QӜy� 7>��i&Ӯ�m�U�N��6���`d��U�,�#ҧ]��D$3�\K;����V<��$��RX�[�·��)&V������$1P�tnJ�Û�����y�rQ�?_P(ܛ����T�A�k1G�ZC���8�|�ylǻ�5xum7QEx�凜��q��T��q�b�[Դ��ó����V�';�*dc�a�=*�OJ�/n4I�[�*RWE>Z��px>�1j6�O���}ODռ�:���1����9O�*ƭ���{m�Mk%�z��؏$lV-�z��*�����{K������Ё�Ɗ�ؑ�`�sO���Z�b{�[K��y��ab��#�?Z^C:HD�� ��ğ*�0�v�a�:���.�4{y呾y6��qϽ`x{S�C�]-�E��^��O9�a�[=K` .4�2Y���Zs�:�;��h<(m0L�$���T�T����E=��Μ���QE&�?ZE�P�4QM���U7���-As���QSOb��?��_��u�?���\��ЅV�hq��t_�|%������5t���d���'�D�T-���������c��L3�����(��������W�����%h������~B����g������y���]-��}�ײQEy���uGg��3��5����+u����Q]��a�$�['���I��}G������c�������=�ϵS[0[���j'��5��p�h����G�_��%cU����Ы���T�Z(�h�(�_$��@�}O�5A袪;=ɴ����\d��M;U�����)���(����Ǿ~�{�_���U�����$�D��w�F�+���|�Sա������?���.�i���(��n�����������Ei� �#��i���B��t�h��$����O����T>�7�?����|q��<Y� �?����������s���W/�~�����!����Ŀ_�Q��:(��8������V-���V��q���*)�{�����ۯ���_����5������Vu���������?�J��u?�3\�O�&�����TQ\��]�����$y_���!/��:�����O�����)��o�D��(j?���C��x���~��7�4�Ere? ���Y�c���?TsG��:.����A���t0�ȿu���.�+*� ��e� �;��ֿͪ ���_��Z(��^F�s���]�ΰ�������Q\��*[�i���Z�W�{?��%t^�������E������=l�7�����\ ��u�_��%�t��EwῈ������?�$�W���X��~����$���8�(����n?��Y�Ȭ���h��;S�,��m�>���Vߎ��k���i���E7�P���C�"���{��וx7�J?���7��Eka���x��D;�����VW���@�����R�h��O�����ݿ�����+�����E[���_�w�E����Ut ��i�`��E��G/�|�����~-��ǭ�����QT9ã��=���K�k'�_������� (�B_�h�Lt���ה����m��kEK����?��?�����C����|C���(���ٞ��W�F���_�����u��w��FQE5�Dzݷ�����u��,V���eT��s���8o��A����_��x��I��qo�h��_ hO �.����Ƭ?����CE��k����� Q��D�_���S{!-�0���#���\���jתj��M����KE�TC������?��<I�%?� ��3E=�G���|I�?ּ@������i��-QؙK��������2J���=s�^�*�E�����sS����F�n�]�����`���T�B�ix�I������_����:��A4QM��������x����G�@�����d�������W����B������R��?�7��W1���>�_��E������,?��_�*k��*(������ |
| URL | http://zero.webappsecurity.com/resources/img/main_carousel_3.jpg |
| Method | GET |
| Parameter | |
| Attack | Origin: http://4qCMHsQq.com |
| Evidence | Access-Control-Allow-Origin: * |
| Request Header - size: 336 bytes. |
GET http://zero.webappsecurity.com/resources/img/main_carousel_3.jpg HTTP/1.1
Host: zero.webappsecurity.com User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0 Pragma: no-cache Cache-Control: no-cache Referer: http://zero.webappsecurity.com Origin: http://4qCMHsQq.com Content-Length: 0 |
| Request Body - size: 0 bytes. |
|
| Response Header - size: 351 bytes. |
HTTP/1.1 200 OK
Date: Mon, 14 Mar 2022 07:23:17 GMT Server: Apache-Coyote/1.1 Access-Control-Allow-Origin: * Accept-Ranges: bytes ETag: W/"101493-1358497020000" Last-Modified: Fri, 18 Jan 2013 08:17:00 GMT Cache-Control: max-age=2678400 Expires: Thu, 14 Apr 2022 07:23:17 GMT Content-Type: image/jpeg;charset=UTF-8 Content-Length: 101493 |
| Response Body - size: 101,493 bytes. |
����JFIFHH���ExifMM*V^(1f2x�i��HHPaint.NET v3.5.102013:01:16 15:53:54������(HH��XICC_PROFILEHLinomntrRGB XYZ � 1acspMSFTIEC sRGB���-HP cprtP3desc�lwtpt�bkptrXYZgXYZ,bXYZ@dmndTpdmdd��vuedL�view�$lumi�meas$tech0rTRC<gTRC<bTRC<textCopyright (c) 1998 Hewlett-Packard CompanydescsRGB IEC61966-2.1sRGB IEC61966-2.1XYZ �Q�XYZ XYZ o�8��XYZ b����XYZ $����descIEC http://www.iec.chIEC http://www.iec.chdesc.IEC 61966-2.1 Default RGB colour space - sRGB.IEC 61966-2.1 Default RGB colour space - sRGBdesc,Reference Viewing Condition in IEC61966-2.1,Reference Viewing Condition in IEC61966-2.1view��_.���\�XYZ L VPW�meas�sig CRT curv
#(-27;@EJOTY^chmrw|������������������������� %+28>ELRY`gnu|����������������&/8AKT]gqz������������!-8COZfr~���������� -;HUcq~��������� +:IXgw��������'7HYj{�������+=Oat�������2FZn������� % : O d y � � � � � � ' = T j � � � � � �"9Qi������*C\u����� & @ Z t � � � � �.Id���� %A^z���� &Ca~����1Om����&Ed����#Cc����'Ij����4Vx���&Il����Ae����@e���� Ek���*Qw���;c���*R{���Gp���@j���>i��� A l � � �!!H!u!�!�!�"'"U"�"�"�# #8#f#�#�#�$$M$|$�$�% %8%h%�%�%�&'&W&�&�&�''I'z'�'�( (?(q(�(�))8)k)�)�**5*h*�*�++6+i+�+�,,9,n,�,�--A-v-�-�..L.�.�.�/$/Z/�/�/�050l0�0�11J1�1�1�2*2c2�2�3 3F33�3�4+4e4�4�55M5�5�5�676r6�6�7$7`7�7�88P8�8�99B99�9�:6:t:�:�;-;k;�;�<'<e<�<�="=a=�=�> >`>�>�?!?a?�?�@#@d@�@�A)AjA�A�B0BrB�B�C:C}C�DDGD�D�EEUE�E�F"FgF�F�G5G{G�HHKH�H�IIcI�I�J7J}J�KKSK�K�L*LrL�MMJM�M�N%NnN�OOIO�O�P'PqP�QQPQ�Q�R1R|R�SS_S�S�TBT�T�U(UuU�VV\V�V�WDW�W�X/X}X�YYiY�ZZVZ�Z�[E[�[�\5\�\�]']x]�^^l^�__a_�``W`�`�aOa�a�bIb�b�cCc�c�d@d�d�e=e�e�f=f�f�g=g�g�h?h�h�iCi�i�jHj�j�kOk�k�lWl�mm`m�nnkn�ooxo�p+p�p�q:q�q�rKr�ss]s�ttpt�u(u�u�v>v�v�wVw�xxnx�y*y�y�zFz�{{c{�|!|�|�}A}�~~b~�#��G��� �k�͂0����W�������G����r�ׇ;����i�Ή3�����d�ʋ0�����c�ʍ1�����f�Ώ6����n�֑?����z��M��� �����_�ɖ4��� �u���L���$�����h�՛B��������d�Ҟ@��������i�ءG���&����v��V�ǥ8��������n��R�ĩ7�������u��\�ЭD���-�������u��`�ֲK�³8���%�������y��h��Y�ѹJ�º;���.���!������ �����z���p���g���_���X���Q���K���F���Aǿ�=ȼ�:ɹ�8ʷ�6˶�5̵�5͵�6ζ�7ϸ�9к�<Ѿ�?���D���I���N���U���\���d���l���v��ۀ�܊�ݖ�ޢ�)߯�6��D���S���c���s���� ����2��F���[���p������(��@���X���r������4���P���m��������8���W���w����)���K���m����C ��C ����"�� ���}!1AQa"q2���#B��R��$3br� %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz��������������������������������������������������������������������������� ���w!1AQaq"2�B���� #3R�br� $4�%�&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz��������������������������������������������������������������������������?�'j�#�:�\g`�ӥ�A�jL�b8}��R�ʎ܌��'8�l�)H\t_Ɠ?9��p~�Ұ�㑁��T�8���;Ғ?:\p>�R�aGJBr�&�g��� ���?JV�:(��[$��N<���0�@1��Pʧ�'�G��Sֲ�N2E)4ʷ6���9���F�p���#���:W��9\*Ŧ��>%��=���r����!+�9����0$�V�fT������l�xi9Ah}�-LcG#�Z�w�Fy#�l��wt�U ��q�j�����s���T��=+*[f��l�WYsn���j��H\q�PV+��N��r�95z��>x�kVtT�k:�'=�*j�ݛ)J�O~��s�Ɣ�'Q�U `>fB��RC�A��G?.�vE�[�v�Zъ]�d����X����j�#n��vK-�4�Ğ�ic�ўi]�=k)��4D����"c�O�0��I� b��:T��`-�1��H{�X(���ӲH�qZ{owQr�8���sHI' ���~�T�������E�n�b���:�Y���RFrW�Oz�����t�������Z8��k̲��?� ǿz�9�<��c=k>Y@����h� umC0�ZG��5�����~�t��F3���x��Mhk�Ny�ϥ4�z��Ȥ'������I�����s���"���<��;��UqvLv�b�}܅�U��h''���@��Yά��Ф�H�s�E;��d���P��8���1�Q���7RI��2O��b{�T.n�^�u�s\�ѕ�=+xR�Q{��ŝN���z�9���-'֛�_�H��9k�<W�U���l�9 ���YeZӳBsQG|���`�[�������^�_��L��-v�=�g��H+���z5rEL�Z���J1�aU�� c/��k��TRs�z��߃e#������YJ��jX�d�A\8>���Ͼx�s^}o���ql����z�3��VR�Tw5SL�����z��L.>c��rP\�y'��5#�/p@�sX��'`�:C��q�<s�G��8�ۯJ���r1U%�@�A�x�2��1�g-��}i˫���p}�]S2t8J�5 Xa�o,�`�;a���V�NMM�a�c����?�OO�Ў��yrc��S�7Z�o��`��k����g��V��YW�g�5�<������.*d�RF���\%�� ?xӭh[j��#ך���ѝ���:�&� Ͻs������z�n�>�*����p6U���4o$�<��Q�v��8�Z���9��Z���;�1��i�>߅9�lὩw����l�& �L�� 7 �O�OL{�ɓ�'�P4`c4Ir20~���q�@$/ ���n�2��`��$�J�XFp3��+�_�SZ£��:���%�k�:=غf�d��N�-w �N*��Nv�קO*j�q���铅/� ���`� �wq��#�X�J��)�4U�L���jc%=�Q&��$��٭�Y���۽bD��{zS���f���V:�`���]��q��5��������׀���84"�f�s�5�����O�E�df�N^��L˻]ā������e�*H>����Un :��8IǨ�V�I��z�-�i�.Hf��&�R��#h%�T�r I�����fD�s��K�{ͭ3c?) ��t�fH�+Ly<�y���rd��qް���9r�8(N1��aʖ&&I8���j��b\�u��M�N�wf��K�|�!I���ں�#[F*rk��c����=?L��[�=�t�F�������Q��s�ڰ�n ����q��՞�ա �S�l58�V��°��zq^i��̬�ǏZ鴭X8\�;W�/S�����1ysZ��W�>���t�qY�bB>n���"�9���p�� JR�ԛ=���㓎ޔ��lc���5ߦ���s�#ґ��N���;�b�y�z,�������x��zt�h$3�J�v��.�W�Rg�P#�M��<J�}��`=*~@������s�k �@އ�v ��3����'�7#��4qz�{��� �K�m�8�9�{��r )�pO_�4n���c�C�CK����i8��� ��Oʐg'�ZA�u�9�8�~(�ohR0A=(�8�r��@!F9�v��9�A9� B��9�@��#��CKߡ┢��i�E4[��S�Y�ց�������S$PG��|n_ �j�]C�8�JÒ@�=k�9�����0Ɂް5];� sۊ��;��Rn�%�>��SVg-"��hԾv�kJ�ݕ��TB;u�_f�g��otd�Z����Vt��$#��+����g�ҳ�# �9�QQ��HďO.ű��*�V@!�U��:p3��ĊRx�(��{��+�`298?�*F�:�p�����k�M��^����y�����2q�Z��㼓h-�������>�w�II̾�����u��F ���� ���Z�Qqvq���OS�O@*��\g�9������#>�$��c�?:�H�1H���ӄ�ev \sŸ`~����<�8�Ml@�r8��D��$zt�J���ތ�o�$%����z�A#�9�-~�� �Z�/�6Eys�{W�B4�@���uepK�95������}k�͢�F@�jK+�<})��)�Eb��z�v�Mj$����\ ���8���{N�Ī9�kĭ��=�[� ��{�r���-nמ��<�1�Ao~�brA�jk.,@��r�>���ڒ�An;V�����7")6�s�k3P�R��5��j���s�Ճ}��� Ny����M��lm5�2�x�l�'���5�c� Ҵc1����М���T��N�����r����k�|\f�Re�lϥ{n��d� � y��4�qx�19����]Zpg-D�9M0�H؟\�+�ѯ.`�"m̀go�ғH�&��x��㝹5-�v$���]U�)��1���4�<�^s��yeY�)����!�j3Eu�:�hڣ���r�P���؈�z�Ygh2�Et�;d]ñ�Z���I��8��F�f%�mϡ� J.V�6m���c��z�Tr�͝�:����J����$w��s�H�m���u��8[��s���H�6})�ܶ�9�����I�c(�q��?�ni6a%�H�jB��M�2��fo^�k���O$����lt����嵋m�k��b��5�JQڦ̅�)�n�~�_�5��r�;�w6�Aaɮ�.�*�tv��2F;g�s���qR� p��sE�ɟ�r}�����Y]&F�����$���h��S��ӊ�X��&�D� ��W�_��dE\�>���2G zU�I��^j}�+/wP�Gs��A�-�l[�+���;ןX�g�� *�6>��έ��'�Z3���$?:��`�k�}�p��е}�<�J�Fg(�J�g~�p9 #��~����N��������� �����C:䜞E �i'���h<�:Q�N?B:�A��J�+�+.*?�/~? �=z{Ҫ�>a�åh�t#>�\���+Pr����t�QC�g��խخޠ~UJ��h�o�o$�����ac,��%���@�\��V�G����{X<5*�i�g98�4~+�L��OJ�ҵ�.ݮ=�kɭ��\e�=s]��mI���X:0���Ӝ�=;J��� �d�q�2G���j�^a�ݐJ����7GG gޣ��A��R�����Q� �9���E <_)�gި]��nO��Z'��s��M���������\�n!FOz立�s�ν�]�m:饈�6L�]Z��vebzqYm�sGq�5����H���#]�2�R@���8\M:��9��F���0c���Mt�V�T�����3�9PK/`{V���If=}y�y<*E�! �vg��:�p��3�9��6����+��/������u�f�>a����upӼ7:ӌ֧����H�0��O���u��+��V�> ��+Vx������SW%N���v+.�Ex���� ���e\2}���uu�6۵�V��s_���,DSN��bpS��F�#?����I��_��J0G־�RWG�Ճw�N��<s��!8ϭ!�}MQ#�,ӆFq�3��/q��@�Ȫ��`2G�Ҭs�<�k�h���X�� �|ghs�g҃ӡ��`��iPsӵ�n1H�?�������899���8�px=(o�i�猜z� �<���x��v�19"�}�NFZ��ր��n����t��A������`�x�8�G^zzP���@ z��~�t��4�'>�����Hb�b)1�28��'�z�ԭpP���*�ժ�A��WO#������\8�jŦ���pg1�i��b]۴/�x����� �.�d��b�6��wz���������9Y���]E�ӿ�l�99�5��Z��|�V�=�������&�ȍ�eI��[��Ȫ&$�Ͼf�i$;�W;G��\�&�k1���{r�5 ��!�{�Xṕ������� Ƚ�����O�^�؎P <W5�[�m�s���W-<$��i̛-6���1�OJ�U���s^_�8bs�=�����P��� ��˪r�KY��=N9�EX���vw��X�<���_j�P�FN=k������R�=)s�H��NLd�s�*[�C/AӥM�� �)��֘T���Ҝ'(��h���H���z���?(Q��z��wnZ�6��0O�z�0���;�>� ��C���sK��IIv�5�叝���ֹ�SDܘ �z��,\9l(ǹ�@�\4�H�ֽ�����q�������ľ��Fk�ԯ ���z�Lh�������j�7q�jܚ8pּ~+����ը���'�-\��j'}��z���d�q�X����g�?�rwz��北s�v�{��䔗%��]�\����3���%v�D��>����iyb{�TO���{�M37�?��X�SZ�3n�QÂ��Z6����==:���(�rGC��-Fv�5�V�&�4١q{�ۑۧZ�H��FB�sT#�@�I�_ �ޙ^�Մ�F���b�c�<"��+���KB�J�����!��VS����tR�RV{額�m&�1pg�Z���d1�<���� ��rB͞稯M>�[�I�Y��c�8XB��+��{NT�!CԮ�WE�t� }�V�i��2sn*{h���#�i��q��־f�2i���\���4(����@?Z���-�����]���Q��+X֠Y6o O���b�Rk��F(������r �G5�m�(��t�Өe+�{Mtb����8�38��B%k+0�}x_n�bPlq�R�&�}8���ȸ�9�˜�����$��c�8�6����'�f�8 u�k+u�@s\��--���ʌ���+�+��p��z�ժ�@�x��.���WV]���%�4svڢ��i�9=k^�R.�+������^6-��V���<sm��#�M}4��է�{;�=����j��aI�,��2�R3B9�u��NGcָ�Qte�w��gq=����c�M*���T�I��zG5%����r6jڼcV: ZΗw��w?�oZ�����'��<���I��x�ɯ��S�r���ߍ�ǜ�;qA�a�T�r29�|���'�$���WW�6-���<с����v�J�p�穮�MH�X$E'''�3�����,pip{t��78�@㜟���)��Sߌ~�)� �{ɟ��Ow#�)7�v5�g�,`�r��#�q�"���X��{W�L��,:Vn������u�K:N�c�{�{�Kiu�x���?"�6A�=k��4��X�x�z��KV��t�ac&�z����4��^T�3N��`q��X��H��=*+��<g��}�������5T3=kwM�A`u�0�Xh������u�g��ֳ���� RG��"��ޔ��2:��H�ۧ�n�N�&^�k͜^�V�=ƒH���~�������bƌ��u8Q�W;���`Pc��j�J�8���6��ӧ��(Ք�=O�7�%�G?Z�tǷ������vմ�Az�+���3*q_E��ޑ���_Tp}���w��M�#$�'nq�{�?��Khİ��o���Oŷ݁�?:�e���W0����&�����WS��"�X~u��C43)vo�q��o ��2�Y�>�5�٦B�Q�G��\��t!�����$+��^a�껀;��o��\��^�˪^NƕhB��G�i��p>`x�h'>��5��V�$%���]f��G"�_z�/!��UҌ��c�1�S��:�9�9�z�x�*��ڶӜ�W�n��X|]:�Y�?R�����c8=A��'���^=)s������W�`%\�������ګ_�L���q��;n�3H{g8�t�CpGN��5�4�iTg�h��4�����T��c�)OL�)#��(6:zq��q�Jq�i�A��~t��zs����@1K�3��rZ0��R���NRH�>��B�:�aF�4����J�px��0����#<P�s�Fp ;��B>^���*'�T�* �z�7C�p����rL�H��Yw��F�^jʤ�߭K�C7%�P3��k3Q�B��J½��n��Z�Լ@�۷��Z���Jmu6�7\��fS���;�v#<����x����4�?RY[!����M��K٭O���xn�� E$'y#<~�E0�FMJ���Ӯk��c!�]�:\Z+�����ܑ$$("�Ϊx�zURX�y��W��S�����`0�ץq>"�g����GzW�^�ː;�k�$�����t�9��.��[�aW$E�w'�����,��J��m�g�cW��}�'9�j���}�H�64��"�aq��ZMS~r;f��3�26��"�Z0V-���(خS���A9�lT��C��Z�K��8f�S�jG$y河�+��<�g҉Wtg:�PA:<]z�Oݹs����-��;x���L�q������y�H�n����X����3�5,6I$;��H�P=}j�W��`�]�jY�D�`x�L�F1�y���3�?(q�#9��N�2�W���is���uS�N��Etg�6�*XD˞0D�q��.8����P���q`��&��fFq��b��*�q�4}�\�e44��b�⻃�Pv��ynFӁ�>՝LN#�#& )㚲�tH>���Z+q 3�i�OH8�]z�z���C�ґ��cET�nv�����6�[��Yb��͍��a�u++܉M%��5�)�$�R�jꏈ�>���2_�M�Hpy��ƺ���F�H�g��N�(�'v�1�ǪJɝ�����Ӽ֙��=sN��.$]�:��k��N\~�}|�j�i�D�#6�H�zJ��̤y|�u���(F /�Skzt-lF��5,B�+�Nǚj��Y>9#��cXW�ί�v��&5���$����~Q�3^[▽Kf��}�q����v�x�mY��8��W�f���8���q��u� ��Oj�֡���)����~������@�8�ڎ��y��:���-����5���O دS��h��r �&���\F7�&�f��(m��q_�g����E�(�G�9���.8�����sǥM��>ڸ����L'̀�`VXj[�ͳ4o��kKأ�ֽ��E�f���[9�����+-u>���5Lj�j-Pԓ=%���pF+3U�����;���ˁ�}k���s�.}+Ŕ*a�f����"`ύ�� s^}����I��5�f������Ҹ�h ſv:���_Q�g��䩱�����hs�n�k���z�(9�Ϣ�{��cw$�����9�zU�S��DqV$�Wɦ<#g�ac�O_�FLgcֹT��>��(dp:WI��T>����!�`w���7�k�ǻ�\M�\����Z9-��8�P�?�8�6�9��˕������z� jp9$z�z�$d ڝf�-.O^q�N�N�'����q� zt��� w0ʐ?Zkd�~E<Gk�d�0��'SS��0�)��n��Sf�H��?�+��p1JpW9��+�8�5&+�(�w��X�Ύ�]Wˀr9�Q\*�d3�kHJ���QTu�ڸ=N���PrQ�:t�9�mլ<��h ���x�@�ؿ�2G��1��婪3�Z��QL�+3�El[�,H@��5��Oe6�`<�����Al7:����3�� Q1]�4��B�1�V|����+����@�Ցq�W ^�O�ֹ��*�"���z�$)"� wr����˼?�O��A?J�t�P2�<t�ί��)Y��gC���Tn>� c�"��\�$�8��Y��j��3�իg���JVP���b�MŁ��!Вh�Ju�:�g�Ll�\$��?½���HOJ�5�-r�����9��;Κ�<1�e��p@�=֭i�]ZbH��Oc]���ّ8�}��'I.3��~_�{��C����4t-sj*H�Z��\�Ͼs^FӲLL@�rW������K{�r�t'���dʺ|��8��F��,�G u�kf���`ѹ�k�<#�n�S���U�L0�9�_���aj^:X�R����6����������:����9��pEj�j�@��k�����Jޝ�7�B��w=2 �p0rje!��\���$�p�սevcp�+��9���i�'��Γ��w8$�}CpR�C������PO\W�Y�N�= &vc�u(��������������x��zӗ;� h�~(^��s�9-�t�})q��� �=�*7d�t��ڀw<gօ�*E���K�r)�ׯ�B�8����`s�j�4��l��Sߎ��&Q��E,�8B��(?0��^(�M�./���TnuR}+SԕA篽sZο�+I���y�iǩ^�]���X@�o�Y7��F��w�Q[�^`9뻥p~&��go�~�J��f��*4g'd�h�|L�ϙ��[ƐF 2��Ϟ!��q0+j���W���Y�c��[���U���H���_R[�}�/�6p+n��F�\'�>,�f[m�G�z��f��K+1�9�4?��\3�V��#���w��.>#ks�E��i9ϵz�O����^�ǽx(rT���A"I��5�f6����E�J�ZhhZ�sƤ09�tVw"H���|����i��;MF\I��CĶ��#$����k��!���9�ӹ� �h�d�����j��F?���u꺀rA⦐�eq� �6aF�yf�"\Z)O �gw�q�V�a�3��U��N�����0o�*T�=�Y�h���Ƞ�c�tW1�8�5�t����Z��%��rچ����X�W1�j��o�z�K�mqlJ� �ב��B��dfܘ|���b� ��݉U$� _�0[�l-�����R�����k�D:�ZNrK��[+�AB�c��vק�t�iF�q��z>�u,�����=k}v��Vɮ'�w��@#�t){���k�%��ݐ���c�9?�3���8�l�E�{�r�i�}��X��Y�+�� ̅b��'��aA�=�Gu!�3�z�T��f���nA8�W�����}��5(ϒ@�<�ڼ��Xd�e=HS���ۖь��� ��/�̗l�b2x�j�����Íޣ��Sr�$�z7����g�s_��J�M#�NL�۽j�2)F@2py�h�4e����ٮ�ĺ*^�ʩ�b���<#4ڇB@=��}�'E��&sNU��Ӧ�Ʋ�7�/���4�jK���1�f�iZ����l���H�Aqas �bG ǰ�:kR\�Ս��dt��}�<�N�dUKo ���Pͻ9#<T�U�v�L��zֽ��Ot��q�^]Yע���q����v��q�uZN���!q�����͍[Ϡ����0>��X�uZ��l��,���%p��i�l��j�B�pJ��]����>i4Ũۛ��R8��wX��=*��5m��zמkz��M�ry��+�/�U����o�MBp\�Gn�N��q]�F�w� ^�(\Nk�<;�:�p��^�<T������㚧��'͂_%��fA���l�9��W���A$g�#�W���yy��+��fr����8��a�w��� ��SW���9�f�Z��@+���ʅr1�q_3������W�s�����OLf���NFP<������(�eT�1[�0B�>j�iY.JZ i=�o;Z����5� ���wgBY@�����4x��%@f����l͜�@ ��j�2��&��WL�J�/��ov�S�9�^��?�p�g�k�|A���9��v����f���Dr�FX{}k�<� ��Ε��*����t�M.PG=�Q��9#'jw¹c�u=�b�R�� ����L�ղ��EMn' �X�ܣ��Wo�����T���ȯgF��3p? IX�A!�"�S���5&���FS�+�D����a��![6��g����a �Ñ�1Z�Lj����bj&�h�j� ��Ҭ �N �=j���Ƿ?��d��J�Bs�\����������՜����q\ƙv�A$�݂]�g<~5��1X�bq���Fűԏ\�Τ`֖��Up��i ��c㞾�.�Bx�uڤ�~�M��}+У]KC7w;�s�sLp6㌃�� ܞ�J~�#'��t:����@�݇�>��W��5���Ut���Lc�jGl���H��q�n)NphC����Uu :)c9��*��Q��G�<�kH�G�h�;��U�^xy�ѽ�8 w�[����8�>���F}MwS�Ԧ��ɞY}�1���8�k��z���C�?Qڽ�}2���������o�;N7DN�2ўC�j���0������!�u]́��+�ִ�$���*��aqo6���׳��E;��c�c�t-JM����d�v�����- d���J贽z)�A��k��ag 6�:SM�R��#�OV��v�:�ȻY�=sW�`Wp��\r�PS�=��k�d|p9���@�E2U�)+�T ����`{�h~j2�s��z<ц=�B��d��Q�t��J�����y`#��}�:}ki�$��n9 {���,���a��WS�J�N;��_G�͓����ws��3iΤƥs��u��@�Wrb�w��v�ۮӴ����y)�q�9��5�J1�G�@���=�D��B��I��s]-��ȣ���ҵ��0e9^�t��Þ'�R���k�1�$��uB�^��K;��������5�0�J����j�̠����j�Ua����p`3,V]S�z.�W�N�m$zn�~�Fs��� ��M��q�df�K}h4*w�Z�K+�U���ٟ=[+p���\N~���Ӏ���#�|��k����z�q�n�Z���9�8�'�u�a�w�s���Ȧocߵ#K��*\�M�(��I�I5��5��O�x�'��z�Ɠe�N��F�FO8���Q��Ug�W'?:��t��駅��k=��{UI�Pw�}��S<����D�������;i��ܼ�UA� ��5lCVm�܍�����x���|�/����x-���s�S�$��W�mj�Vu�H�L�[{j$���MSM �+��9�2n��wS��]#��ِ���8�yƱaq�$$���s^��i<�3�j��I���ۣLs]�~o�d\�G��� ��jf{�m���3�)�`{��q#�Oz��uc8�ҋC3�rq���t�0��#>��{w��H%'��ױ�%�i�O������k��u�i�&�OB��9n��ֺ��?��$sH��g�+\m�c�z����rI�*�(b):uct�_m8J�>��k��Z��H.Ar3���K���1�9�_�>����������� �����W��-�Gr����82t��W��_ ��OvZ3�hϨ枠��c�Z�7.��0ܽ1ھC �ʌ��#�:eN�����=1T儆 �$�*�6F~��m�=E{������ɾy_���[�)o�Q����o#o���~��Q�ę���N��f݁h`^�J ,0��^}�](�r����F=+ۤ���ث|�����f��D�I�z��xzPM[���oS��s\�9�����m�fh���~�c@�т1�*�ո�zB�q���r��)��N���?���h��5J�.���RDKgi���Я������*��p?�N�ʄ���*A�ۃKT��F�ZXXt���'�6?h�&����|�b���X�Ū�l�A'kL<� �il���.,��M��`�8��V�l�#�t��h�it�ĘBr��k���B��>��k���צ��s�4�,M�y���-�Q�]x��Ӽ�1�I��u2��J�X( ��/��1,3dg��'/f�=���v;֏M���z����?�^+�UW��}������/&52��W��kY������`2A��j0Ta^h��g�뗓��"�q������ܗѤ��Q��w���- ��b͒]Ku�֎��izX$;F0?N+��R��N(�����Y \� �>��n� 2�c���<��)��Px�qZ3�@�x��O�_�b2c���c��A�=a�D�p�����kp��}�8�ڼ�~#�JJy���:�Yz��t(��è�f���ا4�-����=�D�c�MyV��;�- ;��� �[Ԥ�Rds��1\��o�N�ϥ~��e��F�9kUg��'��YUߜ9�UUI$:����k���M����?A^��}z��H�F�#��_Z���.�k�} e���bF�f���6�<���3�mJ9"\���5Q�w����jќj{6t��,�<8t*���D-�g�+ϞK�y�|��3Z/p���$8�zWjʝF�!JIz�����ؓRh�0�[>`�5�<C{�6q���\����Kx��B{{��\'�R���"<�>�����U���y�����:�p����_¼���E��Bx�%�=�j�ֲ�o�\3��1]^�B��9\%Y[C���{�]���#;~u�h6֖� `��c���'U���s���<�£�5k����&p���W�b(V� tH��e�=��e�6ɀ�=j��$gۓ\�b��9�GZގ'\�q�_)����;��,�� �����rX)�Ìg;���6�{�ZbG/�r9F��-m���e`��Z�6��B�ڥ��2�b�ml�H��ּ�F/�IXm�����֯G��rjKXI�a��M ��"�y��m��$��+̗<s�V�0���[l�`���5T�J02��D���(����~*�PG9Ϯx�yg���G-n+��\c?�X��� �� L6x��"T~���d���`n3T�v>�m�yg���~�UBn,V��㩩���C��:���JF���ST�.%�p�I����r�=Ȫ��p�yǭ\����z]��d5a��@�zRH����=��$j=�{t�UsX���)�>=H��N;K;���Ts��]�nK�9�H0� �(��QQ�') �!�qX~ �l�zV�� �Q�ʤ��$�ʒ��r��>,���Rg�'�OP��Tl���J���OV�̥�A�zW�hSF\� ���Z�\&aNqT�F3��v�T ���Z<v�y�wd���7�er��\�'�G�y�� w��3�k�1�l�tc�P�H=y��D�3�$=y�&kY�9����rs��u^ԚX�ҼlV6扴d�Dr]2��s�=�f�j�b�j���R��.O^x5�2��e?C�J�@89�21�ӣ#�n�)!ܭ5�Ex_±�M(0,��tx�!��M�^TQiE�.yw��8��c�<�����uar�|�$�C�+��>9���\���8�� }3�W���S��e�2�5-O�q$%Y���AZȾ�g��(�r���x�óZH�VQ�XW��\eݱy�X��+�_W��*��j�:�IYnw?�[4�b�|q�z��mZ�sdu�:ׂ趍��wێ�u����4l��J��_;�e4�N���U �Q��l��I7�b��Uu�����8�NJ!������u�S�eW�G˃���O_ S��U�-O��;����\�?Z�%���zzUYo�G$ ���*Z���JLВ^5μ��ֱ�5^r?�R}Kg��J������맃���^*�dUY��N5�\�|��+�� ��}���q$#�;�eϩ�\j`��`��)�0x��a<�7�';��1�j� �O��j%��MA-ӑSW���J��jc�����T�����1֗�����:�rk�ɽM,W��<cFg#�U��B�~��#c=r+�RԤ��/��qǿ�~l��zԨp�u5���ƿ�T�`q\������n��v�Uo-ׁ�zW<��X��xω<=��¼�ľ� X������5�(2��'ڸ�hK e)�ڽ,�5�r�r��>|���6 ���עx��;w4)�W���|�W��}� Ѻg�8��'�J3��i�[�S��u�;�c�����j�y��S� �qK�8��W3'���]��Zϒ{�:�nl�h�C��y�g$��mXR9���'wg��h�^'�|��\E���_*N�O��_J�w��(��m��)��� �ֿ6�z��s�ŭW�7�Y�=ņ�'���W�q/��ӕ|��w�+��˒���g�FEބT#�8����^;ӵ�6;�k��]s���B��(e�&� �LF[[��#��u�M^"�jW�U{�PF�'�J׆���(z�^e�p������� � �vg2���f�6��֙n�eU�eNI�n������Ed][�10G�^S���ɤh��Z�λ��w4�>S�s�ެ����f0s�va��5nK���(�V;��zR!HAc�@�&��/���#$㯭g�z��DɁ��z��i��$f��]�m���`�Y�)<V����)��ÒA�+]��̹�$�V���t��ө�vl��1�G���Q[�ۀy�ޙ�K�4Y`pzg�kB�5�>��g*z�r��I���=����c[1�$�A�W��jv�Ԟ:�5��i�a*��C��t��>Te�Ы\�}[I3����:o�fK�\�p����z��8��%���䯯�\us�[�Si8$�__�ͩՏ�#)R��~���GA���_�-j�%������"��܂6���L��v�(�H�NN�<^�r+jp��Ԟ�Bђ��V=֟$��{���W����`)���5#i�� �g F1���ׯǓK+�J�Y���7�$�&3�z�V�[8ÉH�S�G���Ro �mD�|q�u x����h� bwdu��gVw�9��>郡��A;��$��V// ��v�ǎ3��/Cd�8�r�S� ���jZΫ�[fp3�5�<+w��F�$�b�Ά���A �&��SJ:��3�1��4w�T\)~2��rK}6�b�i�C�ּ�ⓧ%Ktw�o�9ltzo����7L�w��Kkr�F9���+cJ֡��#���a�!v�N��+�'��s>s�F=i7�ۜ6��:ֲ�&�2yoN���x��j�`���c��*�+B�3Z��^���bA���oE��q���c�*嘑�ʮ���6��5�:s���%ٜ���_�� U�����3��ji�3��u�>��J� ����54>��HWE|}�e�k�˳J�Vz�i�_t��ú����ı�������ҽ���7z^� +�����6�m$[���'�|� �~�ֳuM_O��d�UP�r�k��q���,��9����=O �g�%�֥%�(o�O&���z��Wh��������w�7���}����4��Qx��5��Cg]�Hu#���o��<eZVc�J���Y�[���"�#��T**vc֯[��#sԊҳ�v���dW�W�-�記�{DR�I�Mji�O$���ּvj���W,m�r��W�_)��ɒ-��c��SD� ���ui��|���+=��~Y��k΄��؉�P�)� ���3�9��5H9ws����M !]�GAMU�zzU��p�ҡ��A8�~�.I�3{��>������#��x�����<�{ԩ;�į�A�^��,[��ք鞣���s� ���V�wz�n�-���Zx����x����_�TB]�l��;ӕ6�h"��;�sm�@w��)8�{�&�r�c����Dب﵈ �LT�Sd�x�pj)�1��bm�G~9��U�5e�l=�>�Yd$��zR�(�����A�����U�܇s��'�zT��� ǧcP� ��� �8���]I�B$;���)�G���8�y���[�����6��M�9��'�ŗ�H�(�=3�ӊx=䓓�m4��̓�j��t՝[`��i�#��]��=8ǭTC�'� z�FY��+���6�ʜ�@q�ϭ}we��<Q�t�61�Fs��\o(ST�j�%E7̎[N��w��q���0[�o���\�����|�Gsx��kpIU��dd���EJ3���tÙ-���Y�P40�y�Sh�&�W��+�z����XX�`��ֹ��I����Z7Z�t�9狄]��t�R9C8 �5�V\�:W���w�u���1685����]�}���e��J�:)�SWF�g�9*r)���4F ����64' cp��*�VE�^{~v���naӡ��K�[�x�C��6���^k���y"�ֽ�U$è��[N��{�p�ڔe�.*[�;�C>�>��;�_��)�m[���N�ڽOž�YT+�Ha�W���E����`�OB~W��5�\U*�_��e �3m�o-/L���� 9� w��M5��pp3\"Z��+)a���W �H�hF=�����U'$�(���ެ6�1��ԙ�����ENrǯ�=b�����j�- ��z�į������I�D������+͝j�~�7QKb#���L9jG�{f�lf��h`�zG�#ڤ�<�>���!PI�~�"�#ڜ�v������ �9��*�J���}钐W�+F#>��Ef��@��s�<+>Q��'�i�R#��V��~�ZDГ��R��P�\TA��"�Q��i�9<v�M�H�yhp;q�V��������ny�=�����Ұ�.b��yf��,�����\��,%S8��4���NNzW/� xbW Ҟ_=v4�e��>��\ZJŇ��IT� �'�z�?xy][�Z��ok+���.�ሊ�S��lr�0~�� ��A�:�&W#�G���^���b�2���>���N>��>�i��{��Vd�*H���I$���fMjT���u�v��H�ɬ}B���=�ֽ���_mK? �{�x3RI�������= }�#�&��8�\��� vé���H�gj��P�����q�i��C�s^N<�r\�:?�+�TþW�OֽR���E ���{3y���k�٫����K֥[{�~c����_XxG�V���/�� b�+��Y5o���{�%����v�kI���N�_��R��Y�S�c[�ƛ�2,؎���c�ʥJ�ȭ�)EsCX2�Q?S�Ԭ�"!�L�]��U���s�[r;�=k/R� �A�;�i��Y��ި��Z2���:�+\!l��i�.�lUdF��%kc���y� �˅H�3��v*ج]x���N��ct"�.�h�^Q��E�K�R���3�0��^�m�Z�[y�c��V>��-?N��2(^�M},��eH)c+Z=�����N�֦.��}>�>}@����Ȯ���ak*�5)�i�6������nf�L�E��ML��7N*��6�j�y�'�i���U2��)����_��qP��Gp؍�p:�+�f���v:QN����'�b�/t���e��Q����S0$|�?��BZ���=�J�V�]�]5<�V��A�o���܊��t����ك �W��^���y�S+������ ����:ׯG4��}Edx��Y6�NO´��V2[��`dq�����W9�7���Y�h1y�X�0;/z�qJ[hO�L�/e�Kb�9�Bs�Z�|]����73!<�-�}oƽZ}��y��r�����=�gR�H�^�=�eI$sT����Ûhɚ�F���}��� xb�5D�C��<�+��7iW�u�:M�i��xW�iV�;�ԅ��;��v��p�+�!������-v��2�)�v��Rh�.�L!E���$��Gy^h���q���M�|C�9��.-��1U�?�r6�/��;��/R2rK)��8GMJU*%�4�މE������?-ʎ�m'@�� ҩdS������;�=�i#������^���"EhX��G�7�ʂr�f��q���$�{�����%�:��y����K�f�e8;pzW#��Z�fF�#Pr3����*�xע�9$�-f_�&p 2� �OS���m.�9Yn6�쫜V���\��Gl�;�5q0�[�F!�1��]��"�l-�Б�sUgҿz0��$֦�c(E'�炼 䯉��Y�:��3Y�/`<��y��h�k�-ё�g�,�HDM+:�����=�Pv =}*���ob��������x���k��m�~&�m7EK^[�+i!(�f���5f d�q�\8�ƽk���%�^@b��qO��B��AVs�9�:���w�כI�q��j�������ۦ%��x�Gb�rR�@'��˟֏���s�j=�D<�=*��|��B[���y;�z��Q�#�8?Qڤ�������iYϕ��:;U$ �B��i��9+���H#2��>�b�!C8��З@#��AS�|TWH�,3��B����/��L�c4���=�8PNx<S�)�ps��( ��s���3��#�j���ЌDž���<_6W?_J��I�jI�� �'�OjҜ�����:��J��Q�@�m�cJ�)N�k@��b ���B��H�h�2 <w�I��S�f2 :�嘳�q������� �2�G�I�!��(AQB�yS�g�sPI!B����H!�'�]�z丗q�,?���oC�j��$g9��1#�zWe�"�6���q���D#=�Zb��rq�s�D�KV���b˔ ��q֡\��z�IA8baRyJ�l���r��&G �I�?J�l�6����21��@y*Jt�3�~��#�0I8�(�5˵�''9\���^��e��j�卼�C����a1�p��Tg(��3�CFԾы�gO*y�� xgK��gk<H'ֽ�ƾ�XT�I�A�^emuu�j��Kn��Y�7�+�h��Ҵ4h�xhBWz�Əl��@ٷ.s���/0��F�2;f���� ��`#�@==���.���6��_Z��Щ* w��9.g�GMiU�d�u�[J ����:W���X�O�B�QI��hxG����=x���TUD_�\ܧ�$t�)�n{���Ƴ�j�@GE ���W �����Λ��4ܶ���F�Y� �@���pv�l����������+�&�I��"�_xr���`�u���r8�j�qt�F+J]9y���{ ʃ �u���� �����S�㸉����%�h�+ͭr��Ͻ{q�NQI����I���t�J�lE�y^M/nO�yΚD\��ZV��9��)�� ��V2�a�:?¢u�ޭH0{��U�<������`�sLb���֙,�!*y��N�F���k �Hv4g�D'$q�N�x��s����R֝e�7˜ܱ���gp���rra8��G0��VY*O"��Ť����3��s�Z��teR������{4�길s����x�vgrC�qڪ���8�_��W)���yrQ��c�>��3��J��4jP���F��IN<�P�G�i�N}=ix���=�4��)$��u�� �Fр8�{��@Y@ ?�X����H����8�;U�.�c�J�Y���Ȥ~5y�=���g�q�����l�u�0c�ּ��������Bx�Ұu�$H� y�;W,=�\�٪��g�~+����##���a�&;����g��ާ|Y8����L��G+�k�r�����2�B���IەZ�܌߮{V��g5��Y1����c$�ǥ}$$���9'>���j���q�)�O֔I�#�j�N��٫3Q�ާ����{d�����Ԍ�Y�� ���]�q-h�*�[����[iVH����YN=���?g���z5�O�'f�!c�'���x�֜��8�����z ��.�f�wG���C ka�x���i��ZtN���"���<���A��-l����/�_��j)I%ƘXn��c����O��?���n�.��Xr3ʟB=k�<��p��_�0�ߪ_�?�~�ZX��%�����2c�)$un���w��k[MN�<x9���wTҦ�r�IL�R�CG�IsE����sW�� h��5CH��J���� �U�p�XH@0:sTntԹ�������^Lq5p�o ѷ*j�n���cme+!#��QX'MIZ�F��gl�O�J���̅�aЎ����$�a�;X ��fu1�1�|��F���KA��فө5�y�=���aOr+����#<�Q �z�=��u��<�s�s����*t#V+Fs,R��^��w]���eF���s�V��l��''���Wa�x�Z�+j,����r�{ ��|1oyڅ�L�����W*� �vo���v����=���#��+�3+BB�'�� \h�r�h��@���k�U�HHَ;����0s��]�n�c@�kx��xUV�xc���V�\�hN�98*娎4 ��Ҹ-(���I4Q�8�����ǻ����S=�i s��=ˋ~�#���[����� ͍�px��Si��%��=��m��FT��s�V,�� f�R��ؖr�%�#�/].��)�E��l��Gp��+���e�<�J��% ��~c�ZΥV������˿�-32��zUV�-�f � vSG��������$����\�9�5���Rl89��W%�6�5wH�d$nPz��t��Cg`�GEI�O�[�Ԝl�s6�ɤ;Af�N8�Zi�b%��V����}9���Bs�+*rv�fLzXvɄ*����H�Bb�,�Dl�' �a����Xc���M��pԥ ����<p�Z�G���Ҧ�v��h�b�𡐮�c����>V��C&���}��S�L0�ɩhc�Gz7��p��js��P�+M #�E��}���0G�e�wjI`䍀��s\��oI�T�eo�� [gm�X�ϭ8�Rzc؊��4���<`���^��{(?{̗$��z�����Ғ4@�scֹ�s�_ض�MA����+��G����Q4�2!����溨����Px����[E�gU�z��� >ؙ�X��e5ok�|V[C!�^Q������|<�u5C�j3̧ƿ"7��z�'������Z�M�����B��dQF|�f�����c���/,�I�,8�fiӴ�h�V��:���I��R�� ^@��ul$� 1~�j謗B&��~u;\ �P?¡��<䢶\ K���{f��$���1����j��N�@�灊Զ���ԃQ]���e�OOJ�kj�bp� �jq_h�'�zU��*��c�@�Q<K ��L���>��A�bi�̅���4���B}GL��Dȯ'�psɥ'���z�AS��p9��?ҩ:���G�K^}�uS��{?-wO�cP��ё��U�%8�[�5�?PhsR�#�@��4�����q֧�Dю0Gh�kv=�.T���Q�xw�Ӄ��@�zw��BG=��Nq�9�JQz�UQ��?p ��?Ҡ�\��j�Z7��!�3�vЫ%����F˓�G�G7+�A4�0�G!��Z��B�ƽ8��d�i-�;`����8-�Ԧ2 ��8�;����J�O[H����ңe�/��>H�9�}i��W���i�,$>}0i�G'�1�?C����*Ϟ��08����.�= �²�b�F1���@�b�B�E��� �����09�Z��(�*z�ލyҒ���ՙ��\�W�c�#c8r8a]�/tōLL�O8�H���/����f��W�{����J������V�~[�r����~$ 2�Ŋ2m!Nz���!�/��!���J���M_��'��gf��mf�k��=����"�s����nS����P|���F�Gͥ�_-n���]�<���r9�^�m�[�`;�^I����V�DvEI����K�!w3���^.[�Vl�-��R��� ��*g%c ��ןi�#\,bSϩ�]���C{�@n�Z�BQE&_��7^}(x��F;3M�2n��>9�������Q���# ���zܽ�2��:}Mo�+�~Y�U�C(%T|�J��pad�beʀ:���^8i.$�@��x��j��,0��@I'�OҘ.<���F�� �Y��d�09=�P�)��Z��3n�z��X}�X�)q���k����FK���˞�umb-�!c���p*���!���{ܴ1���Bۊ�k��-��8!P���S[��HYpy������R��+�w�_C���Nm6>N�n�8<`��� �\P��}Ȭ��oݼ|��1t5��A$�0:��W���#-���'uv�C�ߕ Е��� ty��V�Ϊ���y�j�s����j��7�u{x<ƶ0�8vC��5�e�����$�k��%J ��g�[��� ݼ���dY_����^O?����n.w��Է��_R����Z�V�W��:��Tz<res�=j\�ǽai:�H2y���pW=�\Q��)��'�8$�I%�\qL�`Sѫh�L� �'9�ޥ��b ��L@H�~�4i�Z�:�4 �go�F���ZU��zƐ���8��Eӑ�I�W �����w��z��Q�Va���4�1N��xu�W%{t�z{��|��[$�F��¥���'c���Spf��p�k˵�&{)\m�ӎ+�ohQJ���x��ƾ��m��cӥ{y^y�/gXs�����f03�5�� pk��g��l'mѐ��K��V#�y�)�.�W<��ޕ�#�SM��G48�=1�V��2H��$j�V$c��g<���j�u��5JMl'��-�.H�kc��"ռ�-��r���ȿ�O�����OQX���&p���{/�EӨ��f3�h������w��x�� ��a��bH�������X���Y�#=~������������x�RX�������R����|k8�BBC|N����ߥ|6c�x��r��>�=�O�GE,}O�WݗF}w�i3X]����*��E��Ñ��m�C��Q�o2L�r�sY�6�d;��2y�Q�+��X�>�ь'i�?�12�=��P�xI��N���n�$ �X�S)dSt'����'���itc���@�y�]�����f�Q֚��7˓�nq���T��s|������"�K�4:�*¹8����-Fu_*�} P����3��څ���l�2�ؽ����Dž>!��#�Iac�����_X�n���\��Kd�ǯ�����e�o���Ť�Q"�I 9l�E}�_SK ��Sz;�v�ʧ-�<���ݽ��WJ��i�vxj��WͶ�����H�@�֪�6�;i����z܍uxm�9*��^�,l��h�!�=3^N?6���B\˪kF����]���|<���ң��$�W�'��ݗt��>��i܄U��1�q��j��"Ep#U�X���W��Y�u5Dp$KB�{��ķ���sY���B8�_j�k���"L�Om�2��Y��%�,��[�2s����ȹ,�V��l�<,˅��"���ě��:t��Ӱ�жoC�.T�s�S.��С�� UYeh�ס��-Yng�3����m4�[���eg�d䓃K{|��j+1=��U+I0%��z� J�'�]A2���hs��lV���]d,d��{U��-�N�#c���X� ���6����ܕ����R�`�^�����x�� '��,ac?9%{��rK1\aOC���l�JI�@����Q��Q�E��t���l�"�d�$�5�I���H��"�G���t��+��jd���ꧭU�$pŎ���jX�o-�� �9�4��!�sS����B5S7�@�S^�t�6<���3 �Z��i!WpAlk2�D��,hZX� 7<�]���Ju�P ��z�7p�Xt �V�������ϧJ�é�Z���t�Ae"\��=}��|'��]ޛYeOF|g7Nk��;�+��e���ۏ)T�ETR��x?�_�R�D���E+����2BŃz���W�uN�[4 �y�o�M/�����_��V�9S����yh�-��sC�3�.�����l��K�I"w���k��<=ii5�B��rۺY�&x/eU[�=�WC(ӌd�5��� ��FA#�Sȉ�"��y��cV��@f�o+8A�X�ص��$'�p��׃V�t����kԺH�9����H�l���k~)�t˜�^E�k��'�m�����L�-���o��1��/goA9�;�Ԥ�[��<W3u�KI��t�p@k��Ǟ9���������1Z��w� ���'>Zb���J8t卨��wr%M��ä�����{g�j]���q�;��c���Ö�� d!~�3d���[Y��q>��+�ӣ�h�2̸��p���#H�,q�Ҥ��W! �=A�r�43+�` ݿ �P��B� #�Hw��<V{بfdl�:��v���@�d1Q�6�2 D����%V�W#�����nBwթj�Q+"��pGze�0K�@��GsZs$��mw=�2� Oz``�B3�j_=B4X�G�&�� +IQ|��0�r[��P;U�yc��y"��X�ц�u�-�*�br8j�� �̤�1烎��fU��=�%�9�,a�W�XX7Dh9����(�.:� �kr��y���H����z�T �\������}QMɥt%�a���ޡc!L�~OJ�ei3m�i����Lq�=�]*����&��{�ќ���֠�)$�d1�S�ӀW�+ХZ2Vd5f0Jd����Xd�(=�4���أ'���SԈF%9���>��'��N����"�Ov4��.�8��n�q��%(ى&GU �9����8#�Rf��(lg��M 0Gj�s_�:.r����K�r�w��D��V�=�Ւ��g�瞕��ut#ʿho��Fk�X��n|� ����z�o��j�[Xܟ.T�H'�}1_N�ZJ]F�����5�_>#�ږ�����Ὀ���s*P��՝����9�ӓ�<~h�O ��6���6R�H��8�j?�7)V���>��E���q������5*´��n���H�#�ڽ�O��J3���i�*w����A�C��:��u@v�ܙ������?���7��3��Ҹ�v��]Z[;g(\p:s���I��+8���U��-���SJ�^%ZO�"��sj��zׂ�x��*)������4j`�o"�};M�����P{qڴ4�z�y�-09��k⤣Q�SZ��sE�kHj�[��1�D�C2 ��8����O9�L^��ڽӢ�g>��I�!�q[Z�.�q��W�[2K�I8�[ԃ汊:k;�p �;�ՠ��z�%�_*���GJش��;9隨Yn��v����EY�<�J���dA�:u&��9"��Z�S���<Q[��ٕq����/���R3�#�VY�$`��;�P��c��=�kԩ�ל=������SO���|��{Ka���~�z<_�{����(�_gNT��{ݥ������*E`(g�� ����r`����N�`��%)?}+ߡ�¤ꤖ���zZ�:��B�He1�H��Z�:��z4�{Z]X��n68��߇j�6�a�����C�; 9��b�� �,�g~�Zۇ+�%��;]hן�qѨ���'������)��D�U��vA9�u�:���5�ʓ�@�z��?<3���h���qm���`nn��y��:]�Z�V���$�h6�����05�R�f���x ֵ��i�鎕]��<&p9Vt�B;�X���_ ��+Gs��:tUe?��O��r{�5���tH ��8�Yz�]ɧ��2��������d�[�Ոr3�s�U���±t>8�+�ޠ�{Ӊ�Һ��DXcI�g�K�s��"���I#aA�=�,��,4�@늭5�<qQ� ��Up��'�L�\i�A/s�Y:Ɛ%��zr+I$d#8�jF�p��< �8�jRmU�o %�,�B㌊��>kVy"^�r+�Mv��V;zW����$��ߗfu0sP��M%Qj|�so$-�R�8 �s���N��v� ;k�5n-ܬ�Þ�b�@��)ׂ��զ�ƹÞ����:�*���0�5$3�<�_+0RM��7/�lv�m^�F�ҷU��1�_Zk���US���MJ*j����)�Y~�Q���s^��1I��\iQ�w�^�sh�`%ѝ����_�{s��<��#0 䖒�{z��j����$�<e�Ũiwq\E*�VF�3�#���z��|Nj�s�^l_2�9�ܞ��>�>�� ��7��/g_)z�~y�`�����Wu��7p��`����H�k���1����/���>&h� �X��A���@�3��=�w�\B"�l}�G#��_�P�K���gZ�Mt���fz�7���)j����i��t5��[�m��A$|����y�c�ȸé���Y��Gn�n�x���x��ԡ.]≋}NO��N�8��ݹ$�ǿ5j�kg���!!~V@���qt�OH���Y�\����iڎ��g7�P�� G*;�k[� 2�ܸ/����*��$v�����;S���+��3pP���+i�Q2FB��J˒Uڕ{m绸���ZcZ��t�ev�q�I��k�xO����ʼ�����:�����I��6��a�\�� B݀���6C��e:|������L�^��;�jz��{ci2��_�9?C�T`�4��E��oTH�w��U���M?D�*x�9��v�k݃)��m���Ğ�o����KT!���]��`8�Z� ��/��.��w��x�w�[����[�k�/����V�i����6�����p�����V����o��h�6��?u��߽z�н����%G$�_=��U�Ut�h��=� cQI^$֓��pf(r~@8?�"�!��S�b*��)-�C���?N��۬k+��9A��i�2I_B�Z��9v���_J��e*����*cF�2q��*�ݫE ��8<u�Q�5�����Uv�?U�X�ћv�A��T(e��8�G���;��4�����ΩM5il��V`_BU��M�0L���:U���a��2+8�=sWeӘZ�yc�H��#ZjK`�+�n���p��4�D�#�70"�Ոj�8db;��+��ڟ�e45U���r k<�Wv���_�W/\�61���:pj��,"�q�� �5�6������-gP�hbP����TqZ�-h�mtkZ[��h�l��;�Ѿ�� 4��9-���2���;�y�ߋ<?kq9��8�����+�x�O kͤ�e.�[�]��~�(��<1ޡo�eC0�Z�� �V�S�U�d2��WA����/�XZ��c4V���ku$�L�l<g��~m�%���gҸ����:㬷�]L[�Ff@CZz�ͧ�çi�|�j6��Ib>�����+}KZ�ݵ{��}�~u�ڶU焅��J_e����-y�W��/-b}^��)B�2��[kIs�9���= y���ij�^[��(�4en�l�O�I��\]�WO��D�a���=�� �8T��a���z_R���Q٣o�ʪJ�d���jƏrQLs($wR��k*�f�⥷��7�DPzW��ۤ�&��ƥ�7��&De'<��>%�TԼ%t|7*�z���h��譮QgU$�l��$Ur�яZ�2l�xi�R��J�E+�?.�ʬn����|C�/��4�IJ뺋��1�X��a��/O�^��_�~��I6��;��?��j��wK���H���sܙn'��N��Q��c��n����UFr���k�����vV�IZ�O�ȚtaM]��rO�z~���т8�^ X��G�?x��a�y���/�W-oi:�>��Ͽ^��.���=m�m_b7~=������S�5�c�h�����-D�FY�^��+������\��l�i�mD�$��ph~'�D���U��A#�<W�� �s}�x���V۱�Ȥ���֘��-��n�G:�"���B2�'����^��K9�MJ�Kq/�-����Z2η�a��RO>ճ�H��;2�عB1��x����o�i�n���T�H烏C^m,� �_�*JkxK}<�c�� �-n��-3�K��H㚷4~dr�˔q�z�t����WV�� G~+R�a�R͕!s�L�ׄ��:�Y�͟r���+yM�������MAB1��?�I��#�8a��95^K��Ao��1��K}ll�y����>��1&/8�^�o&�[1Glg��²�o�}Am�Trp���UүU'l.T�4�b*�'�*+��[��u8��k����afG_�IɮZ��2��A�D�ݗ�����a*VNi�n�/�m�s��b��3��VfhR����}}���qey����C.��`�o�8�_� �"9��/3�R)bp�hM)�__'�����B��B@q�QKi2G8�� %��K� }���k9���@FNq�@Ὠ�Q�o�FK�B�L� ��ױ�-\E�0���3i��1�����o ��D�u�k�[uCL��N\�����ԟh�N�Q�~~�Ka$ѥ�!I��a�5^X�N�����W �Z'�h."ap���^�hܫ�iT~�CU�����8�g�ǟ�֟E{'A���uG�d�%�I�#������F�2}�>�~�G�9V�9�j�#�s�=k����c=��˵�P ��Z(� ]��"��t��8���I���gg�J�NIj&6kL#I���i�Qٱ��6��qZXK$/�`Y�C-�߱�X�Wv�^e˗�x���8<�m�R������Ef ���l�t�ks�{ҩTIY�+���gv��&�n�X6|>���Y��v2ь����J��;u�ڡH��3� ��"����� 4�A�=ј��mbIl�aI����;7D���㚞���6 c'��;�M��܍�����MsJu\��ߨլs�-ѧ�_�L�6VE�:q\��"W���� 8ʨ���^���e��io�D���#+� q���=k��2��N)�QТ�,�Y�*;��R?�\�S�����Ck9AL�ՙ�E���T������Q��JòG�\�u9ǥs����9g-t����ҡ�����]�Z��28]J�U��H�x�� ���#��=k�����p���^-dg=x�N] �����*�QSt`�M%�������]���`U.d�f{)8������H��WCn0�G,.sE��~�㹭�� ՟�$�B�����V��x��M����>T)©��5��>[�S��y�^Ev��\f#�6��o�ʖ�'̖�����Ia����_��D�YȊS��p m]x-��n����.Gj������0[ɤ��ۇ���Ϩ#�W�uqiקd��w�}���B��.��b���E�FrMZ�s�k~�]gQ�͉lQ����5�������!Ӣ�Im�D�9*���Wq��V�N�x.A��e*~�ن��,�a1��To���:lcR������I�x_��:{�.�l�\�v���W�����֟�<�!q��f���w���]=ũy���6���O�ɚ��wW���I c�]�J�S�'�+�vv'.UT�ͷ�W��o����K������b��"�`���!�Yu�X$ #ȣ���v����GJ�b�,Sl�9>T�#���vI]�~������T��jo��[���)P�e�YVw� �H���n�՝4��i s�懛�9�����*�U��o���O��s*�b�2�Q��)��&��jn�ڣ�7f�g� ���V#�ld)���L��횱�M�q�0*���qڈ������<����� ;JukZ+X����S�z{ �Q�%���R��j�w�W���y����I!@ǽK���se���� ���� ����f��-�3ǭ}Oqf�G�Q��s"��s�@ ��*1X �Qw]�TԴ��lj�9u��0�"N8��'�"���>!�+����^)��Md�������e��,T--$s��������x�QR��N�b��H���T|�G�^�q�����/�FA9�M>r� �j��~_����=�VOsx���u�v$*�GL��.�%%w`q^�so�w/8�O�D�zW�CF�u|�+�r��C��rWE������$�?;�c_r~ʟ����8m�7����*HN"�>�OC���3_%&�l�T�i#+ �������$���������%��5�o�����Gu��9��-e�ayeO"S�Iʧ|�u��`�堊v�|J���x��/� �����M�"�a� �<��~�����;Ho�$���|I�|��9w�z�{VKˀ��rݸ���v~�z�G������Fu�՝�Bt泸l������y!��H���J�CD2=�h�7F@�B"�� �X�;q�O�R �L����(TB�U�wc��J6�[����� 霆�� 'DmSC����Z�?����xz��U�� G�r�4�r.&��v�ϥt�[��-"�Iן���dq����X�&�m�.��B5��Vh�k�GM���?J��x�~��?�E6s_���t�쥺7R��l���Vg8i���^A����G�m9>�%ׯ��M�܊#�����������{-��x���ca�1%�}wJj�`�?���[R6��_��E�� ~�$e�{W�`�T���H%t��j�oF��~G<��a._D|��|<���^�/�g�Y�ڀ�"�^��^����b���`��.� $P���b�x�b����������a��]��д�R҃����M�:�Z|9��BO�Eu˫�ic{�=X���냱�rFW#���b�ڼai 4䮔Z�/V�{���~f4�уr�o���P���i��W[[@a]���e�by����W���[�Y �ܳ� y5����'x3��-�hڍό�L�^�([H�����d�=9�;ms���]d�S�,�XiWH����̌�ؓ�ڸh�LJ�������=m��/3I��,U���>���Ή���Zkq�R�B*�%@��z_"Y/��^䑹�����*����^�m-o��X���KL�FN[��zχ�G���s����o��ps_+��P�Y�����\d�S{�\�; U�#F���z՛;��i�o0�"Sz��Q���f���)�\)�u@[���w릺xg��A�(,�|��ָm(��b�cma����veH���__ґ�G��;'��ܼ}��O�����hd�&��G�K�H�p��F�w^u�;�H@�-xH��]�f�� v�J�ZN ��;T��"�7&KQ�1D��t���o�L�J�]��YO��'���.ʤ�~i,�vqQ&企�Ihm&������8������sŞ*{"�����fD�@���� ��BӮJxa��(��&ID�cW���;��{X<Ƶ6�5x�f�����3p��]�.x�A����M���R�@��?�� �NsZ>��� ;�ڏ�&�A;fH����=��J�Q��~��Q��vzv��e& ���]��'Ҽ��ƾ2�ĺ�����V������o�S���W�a�⾖�g�b0|�%ӷٽ��-].��u�����ŢxP�h>�<�咅Gȸ�< �Þ7�<E�O� ol���G�q�8��1ֲ����F�vm�їhFE �ێ+�����xB]?C��U%s$���B�'9F@��y0p�^ӝ�S�;�g��n�F�3��e�����{)�i��O8��}j���E��1r,x"C�k�?fmg^֧��t?���e�B�4v�'�zٵ��o��Y!��x�;)�ڼl������SH�eq�6B�̆4S�n#-�=��V��Z^ImkTۜm�֛-�=��d��A�60�2q�jh��Sky2�p�nT�s݇q^=�����jCqe$rY�$�d��'�皒mj��\y����d���"(�$8b���+ۜU�9���e$[�m B�!%�N1��i�i6 �{��k�ib��b���3��ȱJ�\)�2q�P���iա��$XZ$��è4Zj���-��:a�����)�8I5x�����^K�Gez���Ź������kSͥ�E�A=����{�{�-�$}��ОĞ����j��^,ik8�R��-���bgJΒ����Wg��)Eu>_���w�ZO��u�hwr��!|ϳ=��z'�~x7@�ǫ}�Ry���I��Np+�=:�][v{[�B0VU ����_"�V��-��ݥ��u�>��0G�5��h�Q�eJik���-$�>��Nqm�����m.�3�Ζ\F�`>Z��#����x��~�f��w�������|�����/�O�u� Χ~�0��d�$�Ϛ��������|_���y%^m��O}���T��7����אJu����y���3\���MZ�i��%,~_�]�X��'�^�O���={�O;0#2�)R�ڽ��گ��j�Z�ڵ��ƙ7�nu�?��f� /ĺ6�f�C�,5(�|��8QȪ�gUp)��t��RN�����j;�|�]>��Z����`�6<���d�-���op�Y\?�k��F����M�of�C[���H�*SӚ�� �/Ҧ�s�[� �wh�\�pG_��+楆��j��g�����7{��K4��U]�kn�L��߇� �X��)�M�$���������.�'��6�ď$�<�,W�h�a���k����u��v���#�cǠ�|^�Z��kfm'����W������I�����V|p?3^1�4�=ֱ�]x����%��֗.U��^��W��@�lL�F ��s�"�q���S��hMD��ռ�^�=:Wv[�a��*���v����W�~��N�sSOn��.��қ{��H�IY��#�����S��K�& �4� �7jK�ۂA?�h�� �����ڶ�ckq���D$0zz���s�|�\^Y�"�K{k!�B�a��l(�)�yi��->f�����lL��H�eۿ�1��o��Ɵ4�Oğd����ɍcm�����Q���їLmJ�p�g<W�]k:������� ��iV("�r� ?(f��ڽF�������xn�@>����ܜ�;V��T�B�6|��8��I�j�+�J|�N���Qs,v�[*�1���W`����lL�*��W�jz���i7����˵�.�|�� �����4�Y��Y������ ��x%N�e�Nj�{7�6�U;Ǫ�.f��a�4r#���|qQ�mm2�����UkSHot�G�p��Z�ep�G�c�,�Yv��}�ϔ�Q[f^�E{��k$L�7F��Y�,�yf��A��V5���WgF �dϖv{)�11�q�� t䖣E�{h� ���$<`�~ƣ�l�-?u:�bx�'�X[�Ɯ�G+�'��J}��-��^���cNU}�[s�kU�z���ZPȒ�J�$q��S�� Ў#rzU�R��[�w�$����k ���&³��S�Ӻ�VM��lnX��ڠ���)��)/�#��y��w�ޥ�P���YT����t+��[!�ږ仂�-�A�wƪǨ�Ӵ(ꧮ 6�UJp��2z�. ��X�Q�7^��mx�w�!�d�u�h?{�P�,����R�ǯZd�y*#�0RF%�*�<��#�R�L�ֲJJ��-�-m��G�_���k{�m�"m9QLO��\Π1���{~:�"�]]���oL�k�ݻ��E�Tt8�9�zE�`����jh��3�2����zT� V����Ϳ�ʔ��+�s,d�T�QՇ_ǡ�-<��]���֭9!�d���0��c��� oen�Ky2'd�늇~� 4G�:}��t� �>�W?�4=�-�o�8<��j<M�5�$�B�~wn��/�l�c�Y�n)��y�ש��NMID�O��#������V���L *��ZR�S@N_�u�r����3g8 �F���� ���>��9��2*{���I6_����!�9$���r�p:Sm��0���]��J�����O#��9��R�s�d�1%H�e��i�-n��0���Q�W����G���j(~��ǭy��#��ϵV����H8���y���#k=u�s��F�M�0�$��j^%7�m�&���Pk:��+���\>�ه8��%��̊���Px�c�ZЊ�F[�����31n.�l�|���#���I-��|��@Mqèj����O^+���g��9X���jK���q������Ie,�"(�9�>��L�-�h�M���o��Bn��<�I���*L�ԃ�z���omtԆU��W�ޯ/�<el��kLݶ��Y��x�S��[�z�a,]+�5�o�}�t�g�nt_<P�r�2�W�O���=�Y1��aE��ٖK�y<�һ� �KaH�AXέU.iue(�m&^~qOI@`0F Md�#'��*�V$�y5�����YE��3����7<�������cW<�O�85� vFm�T��p0:{R�t8�|F���=)�>H����|J���h�p0�q�ML9��涁�{h#���9a�zS�9P;��K�ݪ�q q��[U*N��O �~��.8����V�=�h�L�Z0~��9�LW��#v88�_�6ߙG<��D�tW)��r��6��;IB���o�/�k4���OOz�MZ��r$B1���`��Oݎ�q�x'�?��5�X�#��5��y�%C���fӌ*�MϟD�6�j��[�ǥ7Ěd�7��A8�P;*�_e�⤏6�Y� x�qQe뚬.�B*6�8'#�����*�4D���W���~c�����{�mP��>l����/{R'Y��Gy���q�+���Hk�������<?#b{~b��'��zn��z��B�;k-cvl$�v#%��ҡ���%�֏��^:�gt�~��:�>&xN/�7W�P� �<���y���+C7V��F�� 4k VePO;���8�~c��~x�xb�`@��rL7�甑{�~�������'�~0�bݢO�m��.������r���W�� ��j��F�p��5;�����p���cf�/��#[;Ֆ���PD��E/�}�'��=1�U�|�Aq5�0�2F�� ��r�eyaI��[�C�"�^??zx���h��~q��Qo��q=���M��L�6��Q�����c^}8үR�{>����:�N�|]k�x�K������O�˲Kf9f;���z�^+��Lje�\�c�R4���X_I��!�H�G�������}l���ʢ8�-NX��m�g玕WĚ,w��ԣ���i��F�;+!te�2�p�px��<ђ����F��k��U�-Պ^;�t��R�ݬ���ab����rGPs������!�D���pt�1-��P�VmG 8sܓ����j��Es�O%���s��1��YD� ���#0EI# N�PX��WC�k�U���=>x�p�,�Dm�˗��? a����z*�q�:o�I��NV�Y_{%�ϡ��g�X��&�ݬPCM�-��,���볢�!�0���I�{������m6��I}'K����G�c�C���c����R���iw��%�ѣ��巌�pG�M:��Ѵ�a�;a��I��q�ٰ�9�O��\��a�����u�t�� �FL�\XM"�fm�Qsn���y���#�;ֆ�"���oD���kx�}�f8*:��:L�,�[Eu�d��`�SׂOA���Q����g�Kf-$r��bX*���<d`��A�hk}��k���K�id����pT�'�֙;����Y��D8��I�_;�@=0*ͥ�bHn/<�R67����%�~�����Y�Cky�t�0D���A��B��^�G8���F��i����jf��ƛ��������Q�3��*�-��kv�&S.nsrGB)�*�\v��αL����X�ͽF�q����or"�[2[J�������?y�����Җ/��&\�R(�����t�o�x`~��s�)u��kr#l � ����`�1Ҫ���Z�o�%��Ei%��˅U��A8q�)�wP�I�S��A�#r�p� e���T}]����ȟ��D6q)g݀��<��;Ս:�Iy�[��� �IQ�C�(�9=j���k�O/����� F�� *���מ�S-�m�W2�����:,.�FJ���Ni�<˞����t7�| � ������l���3�}k����X|s��(��֭m��Z}�o�FRU9ݻ�q�t��7v��r�b"�#�6��Ē��q��zԏ�O=��[����8���dnnp ��߭u�k���n-�[�K?=V�Wv�ؙEJͫاo�]^i���C����^c�1��n"�G�^�jz�xg��,��Su���@*�>�\ú���4������0m$���i�q<i=��y1�o2X6�# 1Ϡ�� g^�WR�n??Ԩ����i� 8ŦCX�G�(�Uu8 �Юq�U���]$y�]����#(���p3���G���*A;���"<JN@�wU�з�]_*�����%X��hKGn�0 �^r۰s�X:Rs�w�ƞ�[kF�ӀY�II�hdi ���29�1�l��=(���7x���!ܶܯ��'ګ\�[�u�:��#���wDN�01 �q���8#�����q�ʲL6���.�p�pG8�֛�˫`��3��zlQ�e��_:�1�8'���{�v��+t��|% �8]�w���:M���-�Y����!������ps�Ѣ�Ac=�i�14P���A�|���m�8��7Br�İë�� ���d�vg[3�J���t#��w�Q\O+�nv�-��U}r:ԖWhЖ���X#��G���rN��u�,�[�{Ȏ�l�$��4���Ԑ9Rr8 �3MRӳ��oߨ���:��;��ZXA��e��J��3���o�N�6K<�r���!s�*yOU��U����[Z[(�a��&&l2���`s��S���Gu��M���`��q�$`g�Oҭ~���5濯/������K۷��7:\�����|��[����1p&����[ΉF����#�d^��wkk<w���f,�g��,��6�v.��-��Ko%��ct����#���:�x���)G�f�*��t�S��ݤ�B�t�;/�gXZJ���H��g?�~Q����W�%���m�k�w����O-�k��(�h��N �px���&�kIɳ��aq��w�H��ps��W3�'�V��n�Iv�&��.��[�e�����xe8�A�����k ^����.��m]?�;tR��Д�̝�o��_��#�|9����nԴK�m��;L��*�g�W�|Y�cm���x�������������|���a��J�t������ ��N�ke�2�VJ`��d��R����F�2�Ox��o�Ť�ۙ6������f��s��Ұ�����ߕ�G�NQ�G�oN�R�B��۶��_�9�/�i����'�r��Ev-�J)�$�����j��~%�xxlծlt�iiuB0S��X�w�=�]�˧xW�vb������F��Σw�zs�^ ����ڥܷ�u��'W>lP<�OBX�@���&�¬��L����՞ݴv/���M?[��}Ǟ~��|k,�?��o��:�[�n6yQ��{�O9�U����!�ugo}-��Z��*0̀���U��Ï;Zx�\��W��B�I�^��c�8.�8��|z��ivp%��B;A��,�8�Z۬�q��0?t��_����-�7����n�~��*��Z��<��h�{��R�-��E3ɷ�wpE2w��UY��"��r�|���� x���+��M��W���d���\��rƥס��������X�\�d�^X��o,��0`�l|х%]wV w�J�,FK��G��4��ӳ�wB�9;&i�����>��=~q ��Asܩe��Gː1�{אx'�~9�/���V�n�ln;�������� �ҽ��m����)ay�Dn�H &��8=�Ve��[�������Z��� �0>���#�^0���<4��I���k;��t)RR���]O��o��Z����߈����[L��b��̊�N2y��o|v��nm�|M.�i�S�������NM}!�i�G�2��y�n�0�.T���^�b;�������MWI�U擩Ga#̲K��$G�#��ds�⽬�7O�hӋ��J�/�n���~XU��������q�����ۻmi��c�3ž���m���z����e�����1�'��<���}k���|%�o���ow�x?[ӭR+��j�%$�>W��o�28��K��>��i�<M}d�Z�QjW �<`�d{( f��bq���T�����R�is������&�b�R�k��Z�>���y�x�f��xUc$�|�}�^x�_,4qF�g%Y>��}�c����l����P�"H�A�u���9�'۵{恤�x{N��"�=Ljn�#ڣ���8|�����ּ<�+��mS���W�����tQ��o��~�xn���$��1��0;�z�e�������2r:f��)"�u��#�7�0�ב����ӊ��)nubn��i7���$8$��l�+���^߉��T�@�XMmWܥB�q֫۴��:������c���+�����ml-�;2��v'@9����u4KL� �r��r ��_l�g����Td�[��5��Ck�` �̸�9�K��LnZ�y# 8��8ڝc �) nR�� DQ`� �\c�4�'pIApC=�@c��L��Qq��^�֣oQ�Il�ٛ������,zU$�Ia��K���ȿ�=�j�Ȱ�D���4EZ+}��K~ufO�/-���QqÇyP�*8�ޮ���B �K���ʊ~f'�w��=�5�GL��;C.:g�Y�40ζ'S{K��"�G�������~��k觳̓8bQ���85�I��sjf�z��|�$S�1G�d��H@���R�c7����ȹ���5����[}�ݰ$ ����� {�u}XB�]_EH�vB"Q� ����Q�Vܝ�(�\[ɲ*�,���Ǟ�}�k�Ky��tr�(zs�XV�%ӯb��������>-�A;]�A�z�+��_�])!H5�.��U�4���%s�$nq��8J�~ϑ�������g)�*���(��σ�e��ˁ����ah涳���X����ג'�{+o��L�_\������H���'�8��#�q�,�����F������E���ܦأ���,���<��P��җ�ڊv�����9猂^��u����z���ϸ?�X�2P�gi+�<���^u��D�/t�[Q�֔-����Ϲ��#�ۀ����f�ť�[�/�Y��m�����zk 6�;�ܣg�&�<3�i:?���O�j�xl���d��?���Rp����G5�R��h��ޚ��M�Y.�}�?kR������c��:��kϩ�˪X̿��rOG-\���?��.�o���6���2��*O,9�}�jf���k�V�}m�[�m�ͻ���U��*�$�g��O{���G.��tr�soa��v�{�:���ӡ �Q�4��t�z5kmta��[��m��.�B��&��z��(FڛϧQUe���8�_ 'c�-����q�«��3�3�H���L����}+9����˓��{Th��d�zf�yry?�$R�3��P��`=�Jt�H�9'@�g�s���#m��4��cd���ڑ�'���*"�$��V����\m!�&A�V4���g?�h껕O�Xa���+������������'ں�w��ޭ�jn�'N+����?J��Fw#S�r�^5�˖kf9�(��t�YԾ$h��y�Av���=���5�O�_�o��]J�v�8X��U{}k�^ex��>�DZ�$� ��y�c��ni/%�ˇ�ѣ.d�<����1�=t���������=kya��V23�RH�8=ϵ|���O�N����4���1�5��2���U턠ڀ��m�gbI�8�%b.2��fI�ⴢc 99�J��+�=MC4��I2�{�[Ӈ*�Mܹ V�@PG���k�䷞8�Bv��6�i�d�xܸʺ�A`�1���G�����>D�!�E8�=UI����P�"�� Օ�@Oj�n�ЎH�629�L��3��WAC��J��16�w�q\�o���H ����� \Q�b�j����.�>����ܽG'ץJcB��j��qh?n�2&�&;�H�'"��j��x����A>��l`�����@��"#b�ս$�A�������:W-xB��I�>4�3�h���J�*@ȯ�5k9���J����v�ݣ.�I��������o���g9 ��^�O����)�=��*��ٟ-I&N;��7�<��?�t�;�f��_0h[�����L�� dpO|��*ӭ:n��*Fp���|;��B@��ǽD�'�zsO�?��l�!>�W6�����T��~b�5�T�g���e�#�*�U�/�3���9۽Y`r�s�1L��W�iz���w-�ݬ�H'����0�T�������<ⲍ��l�z0� ��^��>R�}��(���?���wė�����V���ԏ`ݣ��� =0x�x����f ��<�&�A�U�s� ǿ�~OZ�w/ *v�A__��_����Y[xC��_i��+=p��[/@������x�?"�n�_RX�^/Y���������8�T\����>���-��@�%Ă��L��m�RX��3�z�����g{�d�7$���(���#�>����uc팿j��c�`kI�8*ѷ �y����{岎�S���E� �l����־c�����K��}��v~L���vf5��W��� -��c��9�&Eú��` �=>R>j�u�.���~#��"[iܾ��]O�2��_�N�j�ga���r�vS���kBn!��(�y�|�!�3�� ��Wa�h7Eo���b^L���� ���8�ON�T1�������R�g/�^i��+��rv���O��вƍ�&Fg��w)x$ T7̶;᷎4V�>��C��,���� Sx���^M&��[�ѵ��sp>x��T��X�2��p8�⦍��z��ŭ̍�k�$��G;F��y��beG_�x����%z:����5_Ցqo�r5�uy��Vʟ6�l�Cp�t�8>�U}J� ����h�0�"`��7�p�á��x.mZ���=�3�+��.B�����9�9��[Z�p��-��2$�H���B��*B�u���F.�V�h�3Ng������ ���)&0AbO��&�����u_� q�k�ݙ�� U�R ��9�KKk�7LD�ٚ�h٥����7�`g��l?*�v�2��[�<2�42YF9���n@��,�i:�H��� ��^E�6�&�Y�����66F9���H�D����𰼴�c�d�z�H� L���Ir�w��7��(�I��7К�`��� Cܮ%؎R#��p@�I�)����,1Ȑ���3i����S4l�Oݐ�?('#<�R�qr�d0��� E�6��V�ȹ�PÓ�=�͚\���p�3I��r�$��� ��ҪCsq��,ֻ�)�g.eu�O@��w=)��� ��$�a%���l}�)̳ ��I9T Cp��CK��T��g����]��Ʊyys��;6����郙b:u��y"Z���}�T���v�F�����ӥQ�6wOm$�Vl��H����G>�����ǯ���#GWKk�G}���$h�$h�z�v����:�k2'wӢeڶm^\�8fe',d';H�� �^C\Xl��ڔ���C0�3q��뚞�#��Ӵ�c�f�5YЖ;���9����tH�AZ����G��;�vd��!R�`0��3d�ӎ��)`��7��3��=���>2I$�6�~i!��[Hoa����_3���c��*B�H�1��ޡ�]�jP�5���yȶ�H�A���/�0:�״�Y�)]�"�o>��1n�:�����ݧv:����}�@�y��kG�ٞhب��Fz����5b���,���ky��@�b����0>�s�c�#����d���ы*ݾmĖAa���#&��Ճ��։X�� <�8���!*��+��0q�ޫ�t����<���M"ۺ�l$���;�s��8njh ��[��RҖ�D�Dgh����� �~���������m1v�2(.�Ŋ��}� (�J����3;ò�u�yH�6'ʍ�o����$�\��[��,�g�m&�[i����Up�H�r89�H�⡸yM�Ԧsqi�1"�������v3�w�Յ���Զ��\2��E��� }�1�0��5�}�ר�u�$��>� �{<�$q[��x]�����x�y�0����G*�����:���HV�H,3�>��.�SL����.�v+2�-����xϳZ��;K�$)l�ln�$���v�;����c�@#���I�ş� Kk;�X��8�F��'��$b���xym���ky�L�[60�^H�����]����sL��K��X\���q�sK�i=�1Eax!�e�]�pR �2T}�ȫQ��x�ܿ�^ɦ_� �b�m�/�����T$�=���~�5�Q#��Z[_�� ĹV���X`�֫�Kb-��Ī����q�6p�ǦH�7��p�M�B���!dc�� ��G��a�H���j�m� -nI�a/.��l��u�IV���߂.�=�J�W76q�W+V�G�]��Nq��y��k�FX���hͻ�R��8��<2|��L��IF��:iE�V�3��g� v@��r����y�c�)�6{>����g1�L�[G�V���7�t�楧CH|�_�:�7r:y=G5��-;W�5��;���<C"���#{��'u�Wm���%���ڑ�Cp�(��~YTm#i���Z~���w�E8����Lh��ׅܸ�9�<UO��uf�շ'k���(F? I��<M�c��f�r�&���vk���ۑk��d��R�ppy���Əx�^�%��l�@�Mg����<��1��Ƀ�6��/����]I�O j6�>���[� J�۴� ��є��r� �xP�:��]�4�Ɗ��&�rp�H�Y���la� ��_g��S�ìE8�_T�����[g���U�>G+_�s��t[�Ff���J�p�6-��3c-�}zW�|9�3��b�Z��q/~@�� ���Q���eӓ¾ �����X�a�D���{�]#��9�y�= 7ž5�ӡK�j�N�ݴ�� �K}�����&i$����8���\�xY>�~Z~���R����������^��Xh?�&�T���Y�@�''8�!������~ Դw�m�� �{�����]��l�UK9lÃ�g�<]��ʶ���x�,�UC�4�!F!��-Ӿk��<E����r�m�;}����\g%�<�S��\x,�F��:����_f�̓�K�]/k��WU���_k}�|���4k�:�אַ�6�j�L�7��0�ۻ�ʎ1��H�ΰ�W1[��������,�2��'*���#=�yg�o�ڧ�m����,�1,V�G(/o�����<�Zi!:ɾ�Hm�p�p��V�T����nOPד���,T��z�_�ꢧȔ�,隍���Tw/y<ۑT�#YAl.P��o=�{�k�������o��t��Hw��-d�FNk����;���d�M;"���u,0�y�yj��Ţ�t�ZD�We!�R�Bs�$���8�Ň�����I�O��G�8��4���&H��euWX��Ui�}����e=2Ny� u� <M����ia�\��+��k��E ���M�YpPc���:�m�R�'��塚["�yї%KIIR���:8�>v�[d>�FmGǺ�6mn����g�3�v�� ��=~����(V�*��Z� �ok����Q�R1��.�ROw���ϥ�U�ӯ-��9��<NQS��R2�rs�5�C�^"־�y?ǽnk+�A6�¥Yq�6�d2Ҵ5o���/ �W�_�� ���tMg��+�>.���Z��~kƇ�9�Y��/�W���I�j��w�-�1�V�fַ����6����z����_���E�o�e���-�~1��ԦM@�y����%yc�a��G\q^��mF������-��6�����(<�[�����A�Q�g�k�5?�z���C�B�������R�V�����K���I����i��6�LX�M�>^����� �6�3z����z�s%��F�:���W,Z����Iu4ê�r��螯���KmF=7G�����:�7%�7�����T{at�Ko-�~\L�x���n둌�܃��Z]����._0�K�9��H�+m�$���Z�f�س�gC�M�l�����d�+ƍ%������}���b%�=��qoE0:�q�8l�pA#��j��b�`��K3��F�Tʜ�E��A�UAv^����m��bb�mͱ۷A���f�I�����YL^��̑B�e\ʫ��0��xmT��/�X"�d�A�?ѡ~��)��� j�jb����e^��2�<|�'q ��O<c�����E���J��2j1�dž%��~�b����Mgx��r���M2�K�P�[Z�w~}ܛY����j�z7ȇ8�]T2��-� ��;���r��ή��P�Qy�Cn]�d])`0[%�$`}�H�Ⱦ#�k���f���A��.�n�����\��NN>l`���$��Fu_ �����K�����-5�����Դ���3��9���P��-���^ ��H���L�6��il��L0�8c����] {x>u��RJ��m�vջ]]5S��>0W���z�Bx��z�K20��/yt�b���o5 �l��2#�䏙܅�#�º����O>���]�'I�}≃,$��e�@P�9�Ҽ���/�L��w�:�����s\�̺���Z�6��x�c�7`���U� �YxZ�R�<}�oi���W-���/��c�݊)@�F�����ҽu�S�Bֳ�xɧ��GͲ��ֶٜ�X�O�_����;мZ���<c�E�}CO�f���:As��x�C*�T 1�v��#� �7+iw+�y��$[�͆N�8P6 $�8����u�����Ȳ��O�麟�^56�˛y�*��b9�#pFpf�>��K{mK�:��^9�m_ZЛ�>�o=��`��+� RT�}L+� ~�.�\�_��Yn�ns�电�y���R�����o ���m΅z%�,��F�hCo�`G�_ ��q�g�~"��9x��N��x�YӚK���isK�[�Y�&&@]��tY�O߉�O[x��zm�o�LQ�Ei�a�]�m�;m�e��dQ�> \K�47��^��:w��:��L��\,*I\�/�s�N�c&��꺻�t��vz�;�/}�ݫ��^��w���+���x�t��L��9����Ls�����_� �z;/��͠xz���T�cӖu�"�{��1��$�Wg��ᅾ����xwC�/^d����S����T|�B��@|�g9�6҄���˭��ƺ��D6�)��F�W����fy��Q����Z[K4��ͧc|>�n�������6ZN��M+���%�u����i>�[}97�}Ӏ���`�{��U���N�����z&�E�2C/�u!m�7<�l�du�x�hR+X���;�$;�+�vd��sX^.��jI�S��ڥ�(S�bSda�u���g^SJ�vZ~V_�~gz����h��qi�Wn{ �H�8�J����$���K>�;���(�۰���*'RGR2j�FY�$��W�'.��s�YJ7J�h�j�8P1��&��u�qKq*Z�L�Fy��+����6F�� q����ZW;�h�`1�ֽ����jn���>g�q^]���s��,���s0�#<��ڷ�O�k�֭v,lH�rq�m{�VY��Br�[���'�����)4��p��=�@'��p^��e�_\��'��� ��vҒ���W�?vr�gc� y�0G^M`\�VV�� �89����7i�w9&��{��-o%�N��\�(�m #n��?U�{���<�+yd�H28�cּ^u�V�&��*8���=5�ل�a���95��:Iu�r�z����I�[G)�Ă}j��\� �y��Oq����S���%��_��?:��O0�J�eU��R�+��~�f��Ok�;���0�c��^�2;`w��Z��#FVB1��j�M��l�|g������v�y/��S��ϋ1''���:Ѣ������M�D��[�#ݒX��Y��8궾��$�v������ūY��+oFF�_�k?�n���ב����O��.� ��.�0�Ҹ/x�[�4���H�ǩ�:��XƔ�ڒ�D�WݡB�775O]�g�c��c�'�=뻰��!�ux/��6Z���b,�� �}M{�$�E�He�N:�S�\�;��N�Uǎ���#�.O�&�{k5�1�3�4�0T1������f���9���[F��O>�hD�DGc�jl�aN@�jeM�p���Q�ȩ�g�]ch��''���4��I���Z���w�m�OzU,���;�[�����&4`�4[K�*�d�r=�i�U�x��2�T2�r �4�Rm����=j���h� '�r+����Up�$����K���Ģ�j���X��\u��Rи��$�������=�)�J�������� `��v�k�4���fU�`Gz�&xZ�R�*-��z��2����+�WT\�*�Y#��H9�ȸ��SE�8<z��i������yiy`�%��6��ʺ�=���y�m%:n�L+���,0���K$[��MN֤��n�ݏ�m�ں���#ꊦN�})�Z���O�Z1������N0Fz��w���Lʆ���9�� �1�kFKpc$s��?��Wp�U����[Q��.[����oc��g��?Q�U�&�|%�<1,���ݙ-�y�~��T��ǚ���z��<i�_�j�-KM��z<2��r���#����fv,Ē}k��f��+�=�}�K��2��t���7+�?��ta��q_)�\g�vX�1+埓�=�Ϻ�&h�.Z��~���7�9y�B�A�.%g<�c��GcYW%�T����ң<nOl㟥E�s�W��,�au��9�0դ�K�7=U��цA�]�o�Fm�kv��0)����_�S��9P��:����~�����=�ՓZ����uM;M���G#�b�4�9ا's�5��~,]hv~#:��[x. ���.��Gps������rZG�E(���%���@�wN �ּ�R���j�1k~���G�Seqon���v<���=���o F�ە�ke��ӭ��O]�c�ͫ��>7�l��Ađ��06W�2�C���g��Z�o�i��Ռ�)ȍ<�>�&e�cnB�F@�b��V�/�߇o|qwl��U�^+i �*~��ֵ�d���n��a�[H��C!o0�}8#�'�>��ZJj6�k�/������H�oD[Xմ� �\[�[������#d��F���ɥ��4� ��r�+�$!$��1��I�>��S���Y���tqڴb2֮rl����rL�����bP�� S�����yҭ�_�rҹgY������-����Ř8���<���Zf�e ��I� l��1$R��D�F�����W�i���om�'%3����sY�͕���Akb|�6S��J����~C���H%e�pA��!��'�Z��`�j���Ԛdvj3 _(����OT+b�^��Q�0[ۮE�z0'�#��g�Đ_$�n�Z�����څVI=nJ�;����cw,���E{c��$0�Z��dWZ�v6��N�M��N�2C0�8��{�^��Q�{yH�hFp;t��jv���\��È��o�X�;y?Z��W��o��\v��S�z�%�#�L����0y�di�1�Cմ�2JN�"�D�d� �F����]:�^\�6^�o�x6�È،`�3��Y�6��]O%��B9C����8�Nj�UFv�n��D�Ԋ�+�Vȥû�O5�"��I1�;�#��q��64�ZŨ͘���Td�yy�;u���X.�7��)�(IS���ǶG�6���4ցdتv4��)��ާ�8�7��ԗȻ����y7̈��y�v�A�O#�z��o3���!��G�ʅ�x99�SA�O-��Q�yxԮ���\��N���G��ݾ�4��Vcy �x* ��(u}�_���;y� A�3n���))�8����ug?j���.)������NWh�#�m��;�0ݲ�`���U���hT��k=���RG4���L�> �#��'4��j�5f^��GrO�]����d�`ONr9��ӵ1mj���O�+�� ��rFI=95�q�5��[m�R:c �zU{�m �k!�l��A���Ts�q�T��`��Y��h�qon��`�m���� ͐}�>��{�(a�ⵌH�'�&U�#��/�^�����4�;}� $b��&��3d����N�C,��1��W j�+��X�F�Uk$�Zt�����BK���K`�!�dI#�6�" ;��*=�{Ye�_2�J���E���u^Nх u�*���G�xoI�X�"��̟2m��L�����㠦x3W�|[��kd�^[�*� ��]�o|c��Q���W�{y\���_��f�5 ��R5�h��X�ci�~t9=�^�MK�����MHF�G�s��,xi!|�,Nӑ�~x^;;{��qp�Z;X�QJ�.�uQ�?SYwo�QH��H�%اj��v����gw�_�mG�˛����\#D�.�$�P�a�V8�23�S[�5��ܭ�Bo-�a9]�01%X��T�z�����J�K��#\A�)��y�rH�ڑ$��V�攣�6�E3��9VPO=OZj�~���gb��m�|&�v r�(T���ۃ��ܩ��ڬh��Y�M��y֠g�R�sU��[In�K�v�DbK�Rbnd�<q�j�ڵiY�-%�DX��6( �YGS��ץ)WQ��z�^����MX�_����<Q�c�{z�b�|g�`�yծ��&�KE%�T0r8c�z���%H�m���V�s����y� jkw�=���ڙm�K(f'�]����jp���Y�P�(����e�{>�(FRNJ���|��?ğ��@�zv�{�ج �~��6~P��~�n+?���u��Hj�v�b�=j��3( ��p7v����zkj�;[UÕ�{�ZW'9 ���X����t�O�F�i��"1�\*�#��}2����*4�]�������� &���Z��_���`R(�N��>l��{ץi��-岷�ң�|�M6�`n�gh'sc�'&�ҭ'��㼷��T�ݴry)�B�%wq���+[=M~�omug� {�21��ҐG9#ڼlNg��Ϛ�K���zۧ�Ɯc���.�1�u}���d��J� #lecPW'����h�XP�%��h�Oea,.�#�<�t�s�s�b�P����H-�}ш����q#iG��OĞ�.��%�����瀡6Iq�6����Z�ד���.�+�8��]Bso ċ"�'���vA�cj F�o��� �~��Y��"�8I��6A�0l�/'�{� ^�Xm��n��Q��x$�z͝/�}.X#��R�K�~8V8�����G��Rko���X����-��-��MbVݰ>w$�x=��Uu.��.��ٶxm�1�L���~���с�d���J����m�+N0� ���Ny�㚜\�Ϩ<�l�Ӻ~���$Tle����� �֪8�F�����j��i�w,�̂�A\�98�*� +M�O���q���6����BpH�dc=kr����*\ov�Yg*n[ ���sS�e� .�+��a�E��y�c��yd�(<y�%��4�����ܕ���h� Dd�� VT� ;���7��?�����Q�^f�ۼQ�ݖ���A�#F�~\�z�\��������y�%�Jd�����r�a�,����^ 8��c#����Lľ�M�� ���'�]#Z�V���o�� �+sz[k�i�n��+�EW{+�-��Ea�/=�1Y�u� Z[���ݥ��~����~H#��Kc���^Y��Z4-e-Lj�����gM���f;�n��_��8s��,�%��c��'IѼ+a�Mo����V-F�%�r�^] ��`�<pFq^�$ĵ�WD�}�[�m�q�����u=g�>2�,#�o�6�Q���-L�1�[����i�Eq�5�A���k��v�h4����9u ��];�& _��+�����C¾!�.u���R�_�[�P�uy2 �dC�1�U�� ��_��5���6)�GU��6�9��I�&�����095�8L�E�)^��VM]wO�_�8g^��ӭ���l2���������^�����#ZѴ�Kh^�����H�ث){��I��S�&����:֝��H��걉?�fHD���V�ۆA��������S^6�,�ȵ��������2n@s�t�ȭ+o����\h:ޝ��i����jG��X앉��� ���Y[�Z� x�h�t��'���&��z�1Uu�u�]����������Դ���Kqqet<�����cGY�S�%�n�˻5�-�OY�v����I��qJҩ��Au����w��3�;m/L��>xj��Y��"ԥ� �\u���Z2��\(^8��/�5���~�I�m�՚�gY�i��V�8���6�¯ �T��+��#-�}{7e�M�}�*�y�GV��\��/x���:6��!�&+iͬ��{��v0�1zkR�A�ML�|��:����$���o8��0#H�!�1x-�����|��/-o�����r]��V��R�)@K����}+�4χ�k�������ѣ�i�].����Cm�U^��3�5Ǎ�5'�^�z]_�]�}�)T��J�ק��ïj�H�u��+�]��ť���� PY8�~�y��d���s�?���{��+����M�x��̿3�[(�@���yz�W�[��~��Ӵ�>+kiwo� j��"���=yE�Ծ\�ia�.#�7�����rZ��GV�������ߋ����0���_�c ��Vۡo\�Z�Vm#=��Բ��[DQ�AV�q[�R�^���nap�V����c���z��)a��[g�g����+I�F���{U��Sv�\�J@6�b#iun�>�}kȞ:u����|��N1�m//xXڻG�nU�9`ɍ��t����y.J�eK�1\�dupe��Ku�x v�����M�&��B��6%d�Ab7n*���c҇���L�jD�2����)�J釐ߴ�2�ukw38���\7�e�p�����:}Է����$~H��U �͐� �{�1R�$�mbqa���Ōr�.�N00T�'�5J�U:����#0�`�͎�sɯK ��9h��?���a��������M�<���k&�X��F2̫��H5���Z �\���v7����������_� }73�ne�j�VK�U�U7�� ?Y~ӑ����1�L ������� �E�X�u�|��x�H��-, ���7�/����O{�����5�N5hϚq���P��=Oö�ߏ��uE����g���������4��(�[�G���6��v�\�6�[?Ν��G�lV��cC� ��W���e��WU� Y��]�����M'R�\d���<Ike�\X�z��R7"/&2WۑU���[ �2��͏#v]�Ҿ���]�E�R�[C)/�Xt��Xo<5j��9Õ{W$��w�X�J0O[��ײ���+A�٦�G ���ݟ���c���A�V���몸�āK=�+�^�6�I�A����X�`��w^U�����8b�,�{q����9<D��R<�o���:���p����J�4Dc:�F���QԀÒ;W��(�?���Kk�h��Z)&6�v��z״j�J���tGj�g����w����ms����&�d0�ư����f` ۑ�����IJm|�7v簬���i �I8ܹ�\p�jۖ����9���F1/�g�by�F�E��.y��f���f-�ʝ�ҹ��U� ��J����Ҝ ӷQ��="�0�v�@:Ո�Ӈ�89"��;�k�}�v�f�V�W3�4|�5�NQVq3w�_�� $�+���m1�/��O-�bN[�@y~��"kY�C',H�+Cű�\�m�;-b���E���ܧ��s��_A�b�P�:�i)�GM���C�Ns��emO���'�e���2�&h��.Tッߚ�i�=�j�y��m?;,}���ú.���%�a�v�w��{ �E��Ud�=k�Y�Qֲ�߭�C����Њ�:?�$�%�m$0��Yع��z��&|7��֛��E|�m�ݬ�������U�T�ʇz����J�4�:��<�<f(�<��@ϵN#0�!G�UR�g��q����%�uo̹{?���Xծ���]6��d�p��z��g��K������<��[��]o��=��-m4q���*1���0�=��Wp��Hۗ��T������d�?����nfg�:�ɮ�eC*��&��g�P�Ӛ�ehت�rO|U+B )����.e"�u=}*X�@In{梷�g�Hn���o��M�٪WM�"̄4d�95\B����;T奉U�g��1��OLcN�`��������⣾O-_���� ��4�E$ ���iOD4�f�Yp�q�:��[3�$�ڢ��.W�?x l���m����51�KPݔ�1pb'��O��W!w`t���{�$�H��jY�9�'��X�)_�C�/;�Q���i���*�ہ�J�h�غ���뛍�9P��ֲ�"I��KVE�M��euVܽ@�|��wᕵ���Yõ��\���������y�;m,-�(�uZ�K�����>��4����~}x�J��n�x�+КȆLK���q�_Z�^�c�ӪۆnH`9���q�k�Qth`<;W���R䞓ꈩA�z��X�?p��dqH֬�0���O��P���J�[]̔]�+0�7�oZ��Z��dh�z�Vז�+2��N�5��y�����qJ�2����gB����bf\��-�MBR?r�r+�d���s�i� tT��z�&���缮7���?��ƞ�T&��7�r�'t�z2���k��{����O��K(��_�@olta�q��B.�����`����SRе�mGH�������<M�=�DZ����O���Nѭ�ik����t�v+����9�K:I����*W��;�-�_�'�gb��c��c�9��v���x�tI���v�vq�3����f�gP�C)��܌�:��X�f�娭il�n��~�N�T����|?��^�M�b��U�Jm�T�,6��q�߇>$}:�t��/]ԣ�Mך��7�۾���c��j��MNBƊw���Oμ�Z��~$��ҍ:l�+QP��8�yc(֤�֊J��ѷ�����waF6w6V�&V�Я"����^�V/$,?�I�ӃZQܵ��sZJ$�q�91��\����S�����c�,@e�?�Ml_Op4�mCF`�JC�hARF9���u��(N�-F��M�{w�5�-tt�ᬯ�f�q1�o��x���pc�%��.lw��9}qߵT��}Va�,���l�u��V-mXY�̅�;���e��������u�������!����O��?:�q`��S�,ɰ�nI���J��]�X%�C����T��X�)����9�c�Է6ې�d%��b[���[c��h�g���{I�)<ϕ���+:k�7�hQw�6���ۋ����@�-xr���uɪRkϧ��L�K��mV�O*he>\�0�Gؐi��m ���۪� +m @����צ(�[6�I,b>c��!�����#S�)��$��8��������-q���hvKR���S�_pH�Փ��,r\@�鴦ؿ��Z�q ����ᐎ*aqo#�+32�͵��>��Tי�h-a��e�slpE�i��)nf��=�R��n�o��8���I°�ga����i$�xbkf`�BXq�3��ӌ�6��5C.�V(�FB]v������4ԎK�%��w�ѝ���gGrM���^K�ޯXC:F���c�dn9�8�)6�p���q���2~c ���=I=kƗ���X�Ou>�{8�B����<��k{O���+k��Dæ0��z]WN��&���&��ddq��O ��E�R�F�{�+uKf��"n֬�)ZDl�m`D �"ݾ࣌�玂�'��`�&�G�]���J�Z�� ��G\{Wm�Zi$�K�&���,0��s&I��=)>��zV����4���-���'��־Ν\��8�+TS��Q\����W�s�ƻ\�z�� ��7㏉z�wZ���y\��wGi�z�5���?�����H�>ؒ�1>D.�ѻ��9��{�R�3j��_�a�Z%��,��YP7�:��f��Lt~�N<��/�O��)PT���e��_,Z�o�� wo8��'������6�����X�Vh�Col������"���jz$1��d�|�_C�?'�J�/�I{k$S�[�܌; q�u�ʼ�VW��N5�R��^L�2M��h��q$,�O&`�'��Y��C�X��#v!�}�Eo��=�2Y�Z ֥��n%'��}�V�?:W`�����}k�M�}���j��p�I��D[��̪GL�ޚ"h�ˮ˅ هP�(��T����sϩ�*ͅ�gI&hwa��9'�g��j�����Gyy%�PGp��F��3�<u�;<���?=6?��XN���~�^yYeFUR��I?AW.�njK?�Y0��>�_Z�7{�J�`�F�4���)��4v�p�G�/����V�6�6�-Q����4���גy�~�+��>_�~5Q#mH��s�3W*�Z��QV�f��J��1���v��@�MBѓ[���>+�y��^��z��vM�$�+�������7��p��s|��� �8'y�Ha��ׅ���@�d���sқ�]�=��[�31����RǑ�{�0��+�&{`�ʫ��V�RA}r��Q���&<|�ߥ5{Y=���i�4W�siq���A�X�o��Y�mnM,�O26���|gh$�{U�f�{��o)��s����>��s��k����5ݲ5�?kXµH����7���Vo��q�-���!�Ew�F9 ``�6[�g��ս�*�I.' �?�O*:g���<D���f�G�DE����0����23��v���K��鲥�l�Z�陁9A������O�T���W}����d��9��z�5�t��KI�Mͣ���qr��@;�21ܣ�c���R�4=&8��O��<�d���C � �������S�oXj�<G���<{�2얷L�~^Ʋ�h7��i�zl���i�������8N�Q��������&��I_��S'/gMk����/x�V�{y� �K=DԮ�a�l�[�FE�3$��|�Џz��1ce�wW�Q� ��a2[/䍊�?�9 !��[�w���6�����U�֗<�:m�W $2�0ʞ����+��ߍ��o���$1Gom�i. �]v�������c;�����>o{��Gf�G%i�%*��_�4��ί�~��0i�x����I�d�.�#ݗ{��o�a��Y�F��\X�{'����(M��]_f��a8I�✌w��9��G�γy%��j��,ż@z�v���Uz߂c��;[� xK���W7ږ�ų��2��<��Ҹ�V#�����[���r��Km���m��:�R���m��?�M�2ʹk�5�VPD��kڬ/l��~l��W?y��zغ�^��;捠X���ƃT`/�J�Z�g'�5�7��fׄ���B��q,<�8<�ףx�����������hD^N�n��V����5�.(�a��8�k��J�ӗ���`*�m�nϝt�x�T�u���h�����g���۴qd��qϸ��¿ ,��n.�|K�[��\��СS��#���=+���4k�O�-Į��s�I��~�8�[3H��1��c*���J��gbdҥ����k�����)-Z���x�V��^�twD���,N�3��'�q��]M���e����O�3�5Qo)<ne�\�O�Ij�����6A�O �����v���f�2�����W�S_���^�=|��A+M���^�-����!���}�C{mf�!�n-��|�x\�B����Sӽ%�%�#m��T�q�Q�7�-�O>k� sJ3K�Z��^E˻8��t�Edw�����2Ɍ��|~V���O��D�K5�#��.bG'�?0�J_j�b����12q��q�ۧ�k]�r4e,DPۃ;���0����.�9+c�P_��;V���O�K��)vA�_�I<�p=b�x�M�5Ye��'���d����y'�k����g�dY-��B�X�꘏��l/�]^��P��K��Qٖ���d�#������O�I�_��_{���s�����/�'9������ˌ� �Y\�%���01�Ph���>��\\G��"8�8��� {f�����"���S�+5��J�P�?]+� rx����p]:vx������<:��E�Zv��y���S�u�e#�&�ߌ�1�/�]�o����/q+����$�t�֎����)8�������L5R��7��,2�MN���D�2��>i�p�[������PG���� �M�w��~�4���pO���_������1'/��ȓ���_�e�HB�ZCb:�_�O��b}�6�季���t�S�]Y�g���ەE�q���}�:�����3^Z��)�r�����!�����e���n��r&c,�����k���'x?�:|�h���]$� ���(�XSr��g�o�ݯ�ueE;Fq�o���O�� ����|�g������r����� �����Q�i5�� �p�DH=W��ۥ}?�=xk���E�̓�c��C�l���m(U�y�������i�pJ�C���Wy�/�?x�}2�nH �PǕϵym���Y'�Ino�~�<�#�^�����\�7~���Vt��6�m_QѮ53*��+P���>��ϧ*W���^q��N���苼�*q\�%s�����m�\�c<D������Ҽ5��\�k`��8@3���������n��ӭ������}H�t�>+_�W��� �8�9�14rZS\�%SϿ�x���%�=#Q����f\�.�6=�'�:�:r�]��G�1�\L�_u}[l��*��� 둎j����ĺ�����o��/�q�rx��[.qq�k�l�p�R��H�mX��b`�I;�3\6��1�~��| �S}a��.�~o�<҅H�<2k���m+Ŀ��,7E������P�8�RU����ބ:���"�9�X�B5>s���W����[{x$��)vs�����.�m���T�Nz���s���^f�Q3��3��>q�=�a$��1_M�M���n7bP���㰯I���o}lv�-ᙆ+���7~#U#@�v9;S��^O�k����u{;�u{~F���J�\&����>V����y$�}��$���彝l|݅�Z��*҈��ȼZV�V�8�bRW%x5� r�-��fM�ȵ$��ޱ.�\�"�<5��F��tڍ��Ẉ���n{�Is՝��-�xٸ�W�m�d�Y� ;�@yZ#[������h��&Q���v�GM��>������-!fI��@�@=I�_|R���뚋[XB�D ���g���<Y�;vGK�B��S��d;q�+�_�^�\Zi�4�����f�Z٢�M(�-�4��K�3�F4�s�����5�B��x�w��N3�u����l4�ag�Ѩ�9�<��#�H�<��y���|�~�~��w� ��Y:y7p���ή2?��5�0*w�&�:}����+bmnX6���2�ŏ��ʗ���W8�M���x�f���$�gur)=�ֺ����X�4�'R%�!�p�X�{�����z�bo|Ae.�"T��������E;�C�5����aӯF_��zg�'���w>� �����q�@���?C��y�mBE[��y�b+K_�ʵ��f���2��Q� xf���^��,������<� �lc�=+Ξ/��?�PT��~/�)�i(ɴ��}��<�e�Pt��T��&1&�F{W'�Q�����<v�<1��}~��wd+�ڧ9��l��ӹ;J��D�{4,���Y�9��͆���qT�U�1�1�6l��"�wOM��2�e.x��>��qjM����(*Ŵ�ṋ(���֬5�mT����$�j3|�X{�y2H@1��+f�̮��ҝ��c%wa��ƨ�=�,Uc,?�K�'����� i�]����Q�VOp�`�y8^�Z�%���YQ�°s�T��ݪ�4p�W#r��\jIǖhVꉤ���8o��g�T�:�Ī�@�8���+���(����I&��� F#�;q�j���u��KV��}ʑ�8b:�W��H�(�^edG+� {q���.�AN@��ԓ�iq��|0_�O�s</�XJ�]K�G��<{��P�n$�$/%� ��49epq�־��7���J���#�hny�W��~�Y^>��Âyh�z��<�:�������Fj�(���.�I��`�TQ]K��#�V&�{C��tN0{�|�K+��)�������9�w-MpKg�X��{t�U�gc���)ӻ#��p v�t�3U��k_[���pG9��&6Z�C�)�$�����u�U��ް�G�G��HP���������qnR��=L7�f��"{c亶�d8*GBb+�O����MC��o�{�K��;NN~�$=���?^���\��y3D��q֕,/X�Z��O����s���"���n�t�5��p���j_~��{e� 3�J�g��9�ڳ���\����k������<0��[�7�KKk�_2[����J�:���[Ӓ��h�IP2�rNk��7ʱ�=���/ޥ�d�����hՅzjp8[���|� �֦�&16W+�pk\���X��`.2�����α%S���j&�ʹVX�h�zc�]����gNM�ku�Bw��7��9!�U����d�©i��G�]����Xw���Lgu�6��1ɬ�[HK��m�&Rv�g�z��T���KEa����o�A9����M42�}�"o��S���U��c ��L� ���l Q"ڤl�GQ����>mG��Kv�D�Xd�%pE3Ij_s������D� �� �Z���fP�@9ɨ��>�h�.>T���^���R�[JL�z��V�Kx���ǩ{>�J-%x���8#�*�������ܓ�eU#�֡��9n���������[���s�7���}���9%�� Q��hD�:����z �d�HPp������L(������UB:}�~'�Cqm�r�*�nF'�1JU�~R\��V8��^*k��5���P�NӚM2�'�Q��g���J"��H4B��c"o�6��}��[��[)vD�e��v��U͝���d��e�K9���:�g�l�M;ꅹ����pn�� m��q�U�{N��A�Z���J"& ���j�b����.�c�9���lɫ]���|�K�H����~�-&��j��>�u&Vz3���5k_�s]�HbQ�+H@GS^��'�G�[L�u�,�^�@�A����6I&���]�k}�DlTs�u�ᇃt� �AV�?1���ws�_Q��2�t�[��t��O��U��ƣ��9|�P�Ẹ�ٳ�Q��Nj�_�a<B��bRI���z�����Llr�������p�\>Cg9S��k˭��e�H�>�::���E܉,�ps��zU���bK��;q�{Ԗ��,&'wnq��xbi"h,����x�y6���~��G+��z�Z�Y��x�%�b7��8=��5^h���Nݪ8��jYmh�?�8��R�k���墄(�}��?�ڍ7P�f�)w:�Ic!?����M�+�ާ��T��i�� +\w����@hx��}�'��s�03�~��x�Z�.y�OO_ƴ�C,IW>b����g��w�X�`�3����ZR��c�� ����+x��1��N�Y��K��B�9dݒEs�������^2��^%Py�%�5�i"�5X�kw�y$$��|�/<�J�p�>&�e%%�.�V���{┒�Dџ�FB��8�ɮC��$�)��{�u.��?�����t;P�;�u�� ]�T��q���ۜן��!����6Mou@҉>g=y<���j������7�ȯ����92�-���� �c�����L�َ��PGF����qU| �6�S��R��S��5��bG<�'<��'Һ_�K����Ŭ B/8H� ��#���|��+��� f%���Q���x=��r���^K]����t���+U�^6�4}4R��j>� ��!쎪�9��('���#�����_i�&wf�H���j���t�9�]i��suusx�pPđ��Glt�8�]���B��m������rCn�E<��W=L JU]� ���W۾��5H�f��M/�F�m=���5)fi!ͻ��1HO=���Z���=O������팶ن[e�HG��ix������ta6�y}<�!}��4�*9l���[�v|P�tQF���{�9=�ם��!'Znr[[D���<b��k�'��!�|c㛫M2���ѢO)f�l��X�v}�¯����|� �;��֧�S� ����1 ������Ǘw�@�I=}��iѵ��2&����y�'�X�O�am�����KI˞z�3����L�h��+G�"�0s�P�5�[�oÖ�<r�y� ���H#��ٹ2\L�1*` �*�xd��|�l�^W�7���E[CJ�+94��B !�_���-� ��E �qޖ�`������#8�M��\<��Qc�k�Ϛ6z�D%�3�_2�B ?0q��������ʏ�/����s�i�s�l͟�\�M`k^(�H8�]����==�5�Q�N�=�k��¥xS�r�:+��!�2Y06�G_��ڍżV�-ܨ���hn�s\|z� �/#�� �����֮������>�r S�Y��W��%��[��߱�b��Қ�k�-�A�٪�" :~�����,����X�¯2ƽA�u��<��F�r/yNG�Һ�h!��˷�#Q�(�~���$b������z/��q�&���U�|,�nJɫ^Gm9Q�7�Wo�x�:YY�ڦ^�\��>�t��$�?��c�}�$�a5�O^�W������d��M����3֙������^�\�)y������9�)sϭ?��'�g_���@��5�8�\�9�=j%^�g�W6-^����S������k�rЄ���SY�]%������D>\�6�fD����h�u��=�-�R������&2;W�(a�Մ�C���jվj���Ri3�|{�b��Z�^�.��ifˆ�q��i�g�g�����fWd�o3�S��A]�C��&�rL�<���s�TX���O�Ʋd)a�����YJ��۵����)J�KH-T5�����!Il�#w�b�����[<��n��V��z��)Y^�_���۰����gg(&Ց7����;3 �h#�����8������$�䂙���I!g=��_����>�����I�t�kr�u*9�����4�87���Ķ��;�����wc��ͽ�eKfI��'��6�O2���X�oO�UmF�����h��$��ub;��+E�wm|���s�-Ny'����Ir�m�qW|#�_x�J�����RIUl~�j�n�K���d�`G�Si>1���d��ޗ�R0%����?��H�ӭy���|Ekq��آ*|譬 |��'x��e4��s�i�\�j�+�6՚�;Ն"�q�V �WO�~-����2��]���#ʸ s�9��+þ)�t�|Q�x5+{����.r��N:|�����ğ�6��V���o5Ӝ� �N2�_������mM��F�Zki���@�!:����ڵ�T�ۛ���3��]�{�RM7k�-N������,&�Dd�W�~�ϵn��go>�d-4j]���?�\��{z��Y���L�n���kx�l�G#���.�r/�{mJ�#�c��0��7�mx��ЯQ߱���8֢��jQM��������,�����a�.��STy��$̸ ��`�gH�{��/�܅Wi`�2�p�,�6w1��2y�,r����d�N�-uܚh�K9nJM%�!�����Sss��Ր:���$�ewo�s1��r4r�ǦOLs֧�|2��U�YI�%o�alg#�WTy����h�Ԓk�z�mIl�(+�>�����2��9^00[��c�C�|4���z�71Y/�-1\���kxZ�\s����e��zJ���iX�i�6%_2'�V��`x�Mk�Ԗ�RX#%�n�2��6���c ���C����n�zTw`�l�m�d�.#��|����(T�A*�W}}�e�<����u��k�E��Nݶ[2r��~�+�5 m<#��[�9� � �Dt=8�o���K�{�ь�L�f�0q���O���,�|Wy�V��E���b1��<�Nkѩ��S�ܪ[�i�����ȗ����O����_kw0hn�o%M+/)����^����F����5�m�Ocƻ��:|��pH鞵ͯ�u�m�/]XhVsO�-4�4�#��x� 무�OF:��łT���JI?1=X�'�槎���~�'MCD��w�m*�����8�x��=Σe�+������p��<���5�}h�%��R�J�(ٵ���|�����SRՓKh��e��n|�!��wu�����c�j)�[��������c��0~�0�,]�ί2}W~�E�˒���s|U�������=����L��kg��l���Z��nf�h�!="���[X�#x�WM�R2�M2*�� �.B�ԓ�Jm�����ֶ�ֺ�j��/yNv�#ljF=ֳ�Q��'%������+y]�C-��Zv�k�2y��Fy�}).L�7��)A�l�3��^?�?�2Al�+0�.��[�����py b������K�T��Qm,ca#��GZ�T�G���jێ�.�Gkv F��7��Umf�/�W�V�����(㺒>[ȐK�&����* l��;kg��KE܃��w;����?zশ�"/�f��a���&�b�T�,p�J��WL���?Zt�ϧjP.�9�)N�v��}�;[�[rב�b}�1��&�����ʽ��I��Ю��ܕb�#a���S����Z�0�� R��������4�s���NMD�y]Zۛs �y�a�U��}s��[�ik�_p�DA���"!t�$zU�=E�XH�@����5�4��$G�������\��ʅa�i�)"�B�s���Mg�Oo��_.�f�Q �_pq��d��i������Ll�3"�G�����ln-��3np�g�Ջ���V+�%@I'q�H��ۥ/eet��pl��#Y<18��q(!��U}^��]�{{�YnY�����}�J���QX �V1*̸�����^zTZ��I:܉e�o0I*���sҳ�#4ﶋ_�i����?�%�i�4�L�F7��|��I��g2���N�����g�6*�̪"w�ubAe=��U�?��~<�h�FYPP{�x=+�/���Z�Y����䪭=ώ�Ӽ�¤����Rz�I��(7A�˟�1�����z���W7��E����o<�s\�"��#|�`����J��5�Z p�h�>Wk34y0me=P���%�����W9 ֤p�v�� ���c��ޫ���� �UۼiӏZ�L��kTT6ius�V5*[�U}a��#�pm�6>�n����G,��8ʖ�Q��Uuky��K�������ְw��ь��֑���)�� �rk��gO� ~�I��]�q���10%�y����^#�]�G�f�x �ɏ�ޱU�B1�\ ����� *5�4%�|������D�~��/���?o�i7��V�d�'�א�P�Dƿ2�g���%�]�,�2Iq�����f;Xwd��>���_�w�~"�^KK�I��p�ua؊���W0�έ燗^�O����>� ����iv7��a*��E�����{�^3Z�V�e�z�*��h�g����S���A�ӱ��Z�����Q��>��_�y��&<��>�y�C9Q������G{���w���]R�r��{k�ʬ��n���|�rI�UE�P3�¦���c��h��!���#&�Ry���i�q���I��8��8�<��S!w��������S�l-!o����6�;IЫ��0� g������ �R��S��h<�����Ηl�d���M�X�����䤕���X3�ۣ|�r�����Im�j~�r�/ *r�\�X��T&�q���a���R�(�!��֎[�2��7F>BN?Z��F!H�����ǀ>�- V��A�>�6�:>F;���f��p����[�g�E�$,B�7�?:�|��i���lc�U�sqB�����P[��S~*�9�V�ͅ��qÝ�xS����UMR@f*���W�P%�x� ���m��[��H9'����b��d��zs��!��g�8-��+���"��E%����C�'-FP�V�u�g����+63�9lg��տ"+yy01߭Qկ!��� ���UN�vJ�xɺ�;GU늴��.�J�����b���[3+\6Nx�����7�g_���Gj��� w�z�|�[�Q�ɓKs��T14��#pvm��s��cK 1f^Fp�:��W���u��d�l�E8��@�>��Me�A{�+�j��}�.����*9��+�0�>�������3��vG[�?���$F��p!M�Ol�A��=㋯��&�j�E�f������A���ti����2F�ɴ���[��uo^յ�-�ݯ��60�����?1#ӜG B�H�O]o�^�nm�͡O�^ס���n��\8�ir_hn3��Ju߀.쬭u}Q��q&H�qԧ<s\��u KG]7�2�2���|���;֏��o�x氟h�%�R�:(�zW����T�y(����_��<jQ���3���Z��ھ����mq-K�Ϧ?�} nxWC���n�����V'�u8�A�֪ˣ��U����t ���*�>�����_.9:�I>��=����S��Z���1;2����%h�!�qZB"��,f���PqT|5�n�O��kk���l�j�^y8q���1[��y�2jѶ���@v�����|W^�c�IEt�>f�<�ß!�Pw�d�)�!>��k�xJ�m�0!�QC�N}�j%28��c��!���b�ABx�ҼJ��'�������J��Y��Uv��I� �XϘ0u�id��3�RK����ڸ��-��˲YYdl>R�C��7�5 �*��t�3�òy>�����p&7�!���X:�4Q"U#[7����ʑ��k^��nZ�$����J�.|Sqp�h��t5Z ;X��4��'ӑ^���5����s�5 �ٯ�kV�c��$�<I��F ����~�9�Z�7�-b`�?�?��º�>���qC��}�W����go���Wר�ODqo���a��NcC������kB�\���??8��e v�)(�$��5�]�e�k8����jW�U�r�=�����P5p5R�@O^jm�u������L��( � ��7~���V������R�O�Q�Gnԣ�c$�x9�*.��N ��L)�Ͻ<��})�~l��Q(<��?ۉux�/Kp8�y���:�ڳ��V[�c��`s�5ˋv�s��T�q���"���0�,>V�x(z�A��cU4�<�X���۳�F�`{��ʭ�\4i $���6�I:������08?2��e��,�%�hb� ���d��М���?(��6�+��H�����-?�锶q$�\�tp�B�ל�;�ޕ|���v��N�Vn6(��0A�����H2��Gm0H�_��̹ �b~P}G�D�m^�����$hbW�!��NIPv���̼�Q�+s������������H�a�UT�B��q����JU�-�{��I���Ia�U�-��f���*Ɓ�LDFFa�����2A�%�^[B��x��I���1)�ff]�� g�1�N�\�_���o�=���2�M<$",g ����}އ�*����C���'�\��f��P�9�^��k�v맸��k���l���m�pA8�H qU�I>�$ȳK*��w� �U[�`8q�2|��}?�������[_F-�sn��pP�����8��m��pH��F��,B�k;?*�:d����i7�Es4��qs(��|�&��)V����s���j��Wz}�zm��4�R��������k8�=.���j+]�xkZ�-tH��s]��ѳ��I���o�玾���t?l��۹�%rc���Zl��Uz�3�z�?�t\��h/�젚V�j�\(�BT�#|+��_��"zWE��.��3�+�-��y7ml�Gm��\��,���:��cy�ʹ��2��]]�^��{����C�����zE�>2�^��N����������Z�ǫ����w�|�˛�T�.F# ��A#%[���7���L��j���5��p�[8�@_,dGu�#�5�]|<�c��.���[υDVW�2K��g !˖�_�rF1^��X%&��O���ҘF�zɷ�v<���o�uH�I�i�F�����f��+��#8n��[Ǻ�ŏ�:��<W���E�o�[+1mO�R�����t����� .�m��wdO�� ��`����b����lQj֗p[j6����$��B��X��������63J8����*~�T�o�I?��ce˯K����^0��r��K?���DV͘�`0pz1��ā�6���kE�+(�A���{$�߶k"=B�Ȃ����JVE���f��z�$��1��m�jn�����y�<��y������z�Z�S�+���4��KW{���o##�b�9,eYH㑑��\r y�ƭ\uk�|o�Z��}��&���,��3T�'q�Ev��7��i�\:�Y#�I�Nxʓ�z ɞ�� �� e-�˧f)4D,�( ������8��x�$�������G�jzx��B�?�'����]X Y�J���EohG��q]�9<W��?�ω��2M[Ŷ>���&;-=���nU�!�lŔ��7�A�ȮgǞ ��V��7��ٮ���B��y)�k���!aI C ��j���Z�o�e�Z՛>,�\[�(h^��;�0��1��9)� �8�糿���{��C��I��ot9��..-C�y�GRA8T1���A�O�f+u��ZVx�J�:1�#��x�GZ�K�Z��O�Xľ!�Ӡ��? �r���&MF���)��%������)����xj�{�k�FkigYC�Q�h�� ��9��1�LF�v��ۭ�7��d��nZkXnl�t�A�'��I�n����䎜U�/���F�I�F�^L����pxe�>��]C �x�����h�%�6GM��9�5jݧ��;KK4h]VO�[��,[@$ʐ{d���:�r�]���טܕ���\�7�Ä]XʂT�W� �c�=��jM&���Y�;v[�Օ`��.el&ޠ�[�� ��5�"m��mv]m��9Vm���2�OJ�_�{��~&����BԮ��}�L��W���ytLn�*rq��t�-��#R��獮�V����߿a�5������Y����&��u}��(�F��Fn2��c���Z�e=g�~<���g�.�{��X��1s�z����k�|-���Ŝ�*���9hYVHل����!T�'��/�Xv��>�S�~���y3�9̷7d���A���s���[�V/�倣�W��g����;l�~�T��������������o�M�z��m�h>A��PN�r0@�O=3����^.6ojI���t�/ne�:��9j�|M�F=G�������i�x�ӏ�J�����'W��j�_X��K�R �!���$�r'���u��g�ҊI�ߕ��[ )AZ�g;�?�� 4K��K�F��bK�B_6P[�+�y�;�ڻ-F=B1-��&�XTDm�(bp0F��TV���=֗#<���C�0��`,1��p��t�,�Ih�o�m /��\��+aN�cn_Ƽ�T�U�;�/���)9s]�"\�WYK6����c-�����杝M��&(�KG��6���>Hnp9�D���"�W���ye-�6�J���jȒH좹{�[��L�*�Ѭv ��䪁�3��8�A������+|Ɲ�V��K{T�u#�&� ��c;�S���Ӽ� nme��2*ߔX���A������=����e�+8��ʰ�����*pxͻ[��Y]i�� ۫4�*2c`¹^Wa��pzt�w���OV;�=��ڲ9eKHȚ9M��:n�q����RF���wC�b��Hـ p�c8��Ux��V[d�O��x>ϴ�pK)S�l�W���s�;�gp��a�f�$�O�в�`3���29u�f��7�����l4��j_�\[�m팓��袵���@vm��'ל��i�|��I�|��� ����J��=�)f����Kqn�q����jHc�n��d�*�V:}�m���VH�S��̲`�p0Tc���8¤f����=��ho�MQ����IBF�(9��r�09�E �ޤw�=�9�u4m�#�<�٬ۍRk�k���E.d����,�Npvl�����xռI>��-<�"��ޠ9S�f��������{l�~�zU�zĽ�-�~ؖ�1k{#��a�b2~a��$���6�En-�XOk��Wy�g,�g}�3�j��ܷ�un����>ZG�w/%�lm���^A�zpj��k�X�&�%"#�D�7vI;�|���qC��tV����:mNkK�*�rDL{Q~u!K��p��������L��M?�p7#ػF0�!�q��Ea[-���R:?�� /d?�6,��`�Q�8�3������x��۰y��=�mC�2�a��FJ�zg:R��2V��"�<�uvx� K���eڥ�Q�;�7pv�+埉?u�j`�..#����]̀'������}�auP���H�����#2'����l �`c���\��Ŭhz}���Rdu��aŻ�.�X�OL䃃�Nk������=W��jW���Qy�̴c"mr�c�7Ӧ�5���L:y���:�y<vS^���|�Mq�� ��$�>[�UU�bg8st5�W:DI*<�utB�(� ��}ھ�����4t�9ꪑ�ܒK�s��s<(��e`1��<۶k+T���*B�A*`�Ȟ� Ncs/ �F����K��>��m��ED��1��I¨��X�a��G�y�5�B�b�rԜ���f��^�8�[��N�����1�"�r��+F�;��۷�j5�(D��a�@�s�M=�.��`P˸ތ��L����j�SW1r�!�[G"�Da��˝��w��~j��k�x#\MWA�4j���$��t�#�z{��!s6�V�Hc��߾:�O���Y���p3ۓ�$���S�B�Zn�U��OTc�˚4}���&�� '�\ !�me?O�^�r�\Z��W�W�ׅ�K�xWR[��I�|6�뻜����{���_��tE�yr ��Px/�%9�~����V+)���f���������u҄ݤ{TД���&� ���QV�7�W,3�k>����y�k��Y�k�G����(X���� �=wt�oR�1�e�&9 ���^�^������ �mjzݲb�kK�<����(���NA>�r}9c�xy$t�۽�Hk2����(+��bȳ� ���S�i b��늎�@� s�Ì~5$A�B��砨����G����֧����>��҂���j��u�DVF$��<⪝މn5�p;�q�z�0�q�Lb��Ԡw�����i9C��l�8��b�k4��^{�6�$y�<u5@����Z67{Ss84��L���[�R1�t�^th���������J�Y��n���.nb_�y��֓���S���7l�i�W+��iC)l����sm�� �L�*��oY��{�[�=3����b+K�n���XX��+���? ȹ�!VhњBǀ�b����]��|��Q.�8�fϡ�L�u %����0,�� ױK!���V%M=��R��Y q�29f��z�����'�D��܌j`��������� ?� ���j��Ua�l��I9�g(�эOz)/��MV�j"���6��6��e�=�q]_�t����{�(f���g.W�_n�kD��N����,Q��7��=꾨f��[�XͪȄ���t��կ�/N�Q���L!k'vP�lj��(%{ �}���p1ߚ��[�o�?Mux��g����Mj[�9��Q��>�,����26 �|��Q�'�����n�n~����Y�[��:r�4��ZuT��)�9�`kk{x�#%�A���j�t�ʹV��fh���(���Vp��/0g=?�t�D��<�|El�f�%v��^�xO�}���kxa,��.=��OZ�]�|.-�`���%�e�TQ���j�X����^f'5�c*Zsvc�KDcͦ�[�jcV��ћ�k���Oa�*{�H�%�����[۔�'��5�U�N�h��:���w� �M�l`�c��m�n/S�����6��`:�䃊�JS����Zb��:�k����t���j�'BYc�'$����Q�rPyjy%�J���EYk-��L.~�J�m>� �g,2FI'���F��@��?��sb��!���$g�v��8�l\(��ԣ����ݟ/��ȿv�~a4���)1�S�<��a�#0k�]���S�ʬ�FPqV�u&��%JO����f��C��]����U�.��c�Ӆ�0�VT3d�v�ZI9���_K��E/t��osV9OcX�S�#�8���!Fz㡫1�>��^�h����߭O�8>����㊳�����j�)3H�ՆQ�S�'�e�/�0����z��W4N�>G��R#c����ɒ:T�^��B)Cs�x8��U����H� u�Z�Hd���x��@�~���Jz�� Pǜ�9�!�p9�ᚉO"�<��ց�x�������n������8<���4�;�Rq���������kP�yuk3����1 �y�����ڸ<��O2�ۢ�b(@dw#j��G���-6�y~�-ʼ���J4��ލW�* ��~��ߵ��[y6�d���t`B[��L���m����c*�F���G��@���� q����*�*�����#q4�<J"I-+cp��ap9猲��ZIs\!�d!�6¨nz��~�yo5XB#�1�WS��2͔�)���h�I#�'�5np�����d>E�Gzc�p��w2��!��+q����� 1ȶ���pFNŷ�c�,���p�n茶d���u!u4 ��(��卿��@�]�϶OQ���f[�'��Q�0!C�GB�ԀOL`O��]ӽ�������:_��I.�Dv�,�o�*�˅�;�\00��<rF�!���ɵ�e�XM۰Hn'�sVOK{x�����>坃!�\���_��g'�n��4�|�T[�24�fP�1�3�Hd�'�S���P�܊��a`�ZY�d�;���pU9?6�q�Nk�~���H�r�庢�*��Rx.۳�����ſ�^��.ӿ�\�Si�ݷ��1�w@a��*�Tn�u�a-݉r.�*~`=�t�T���������0�S��N��,CSӭ���&�[k}��������*ņ����y��K��ܼ>k���u�%��a��* v��ym%�%�� b>t#�����q�<t���Mn�O����n_dhQ�������)f��1q�����ũ+Y��"ڬVf8��� ���q�E��e�!��@?tവ����D�X���8�̎�s�$F�3ul}�`d��q�=.+i�<3HP4� ��2��%A�k��X��j�[N@*^��H$T���vVL����)Տ-�N,MWJ��kK�&Kk����I�`���6X��@�G�em� �5K]-d�[w��67�L�I���0�������i�Y&K��-K#y�Y�E�F�ʂ�f8�''�V���g���z�v��Y;Imp��:a�����Yy݁��Δ�����,����]S^��ɛJ�W_���|s�k��g,m��� [��m�ؠ� �[ �eARG's�A�����-�=�N�ԱbX�1����S�$�����&��%�|!e�h��J���f�`,YK�Bw�y#���M��?Y��&�cl�&9������P �I�c�B+٫Bi��S�-��zjJ����g�_���7:ı�Go�7SYK2��o�.w��m��q���N�Wj�y��B�fE�$��8�����������5����1�;�ao�����p1ߥy���=z��+��ۨ�� g����02H�#9>���~ҋ�N2I=�m|����_��'v�k�}/aX.a�%���� ����9�s���;x��+���|a��|@�f� �f���&Q�W[ir!�vn;OZ��*��2\=����.�*�2|�˸�$����b�b�o<=ս�NQ~�(��eC30R[��Fp��sQ�R�������I)hy}����âo��-���ز���t��p�$�"AO�F��^�?��4�Z���Ҭi)�6�Q�R73"�*HS��'�u�+�����>��֩�w����;In�Ձ%���䏔pv�د%������қ�> ��ѕ$1�[E���Z���gv2�nW �n��oB�j���OH��+i��_������ ަ��Ǩ����."�nt���햯�*�F����1�#X ��&������G)2�m������#�<f�#�!��^�I���5핂^I��NXc�<�I���������^���Zo����V�?X�/� F�K��H�1*b�G�*v�F@8=�F�r�W����ߓۥ�L����,�>է�H]bkhq�*2 l�dne��M@%��[���ȱ0�dH��������2U����9:wB�M2��� Dw��q_%�(;wI�8�Ԋ�=��[���B�\�X��.H�u��u������I������$��fH�3c�A����mu�A+�ji�P-��c-�H��8b�zyC!C`q��N+z >��-�����`�$i���NM�FFXm��5Bܬ���_i�<�>��b�bp@$�3���X�k�_������4�.f�cHܐ�%��ٓq FrF�z��9��T��O�k;�~���w1�ke��s�+� �����-1�$�@g�\�����S��:�(�Z��ء�I�v����Y2q�d������ j�����1=�9�n��r��;�sdca������ӂ8�������5X�es H]e���/�>�����uu������>sn��x<e{㝫�ީGf�Io�F����+�+>�A�<rk7U'o��>�[In�����D��2Ko&�� 'i d���#����,�D�������W 9��`j).�nQ�6�{���rS�꼒ʀ���2H�9_Q����o2in�T�ͨL3|��G�8��b��Ke��q��i2�p҅�8I"ȱW?&�P�ĥs���1���l����xg�r��(&Da��q�B/C�}?~�*�����V;F*�0�!�0;[p�s��uV���2-��u��"��0�O�� vW��z�*�baZ��'t���zz���fO-������$�n.ʖA���u��Q�g���"[�,~t_�'����ӌ�l�cu����f�I�����p|���T�Z�5�Kkueiuqi!�1$J�%��Ӏy^��G��RW�����e�G%�S�r�Wm�m�2�팜,y�@�N�$�N%�g���o�I��*J����3�������oy�_Z�Inf��E��lp��W��^HSЍ�5v�+,�:���K;�LO�*�O*H �g�$Ҍ�����������]�[Z��ِEm�Pp��)b�w����M����Xo-Z�g��]�.�{���]-�Zm�6�<q���b\<Ь�LeN���s�u$�8�ՒF�eI���=Ēā�\�����s�R��w������R��`l�O��`�^Hd�dA�Y��#F��jƉ=����P3Eù�eWWwt!�t빲sVSQ-��ƞ`}�f �1��ː=�2�#�&�oi5��[#G#rU�vn�F7A껿 &.<�ֿ����e���[�KSA�����ےx,FF ��gj��u�E<\7���#+ �Pw�Pp��1��U�{�.�u�� [ݿ�%��b9另1�x${[���p��n�9�b�p�2I�q��(��yW����e�JVf[{Evk�%�+�u,_h�<3S�K��~��t�H.��{{���D�'*��O;N�3�Òz֦�Bq�=�\Ƴ9��l &�V��G�aֳm���Ö� �M�DXɜ6��`�:}i<C����b�{�� ���^;�.'��[6�\��hq岰��Ra� ��_�����N��k�h��C�l�d$�-�,�A�g���60}�I�D0ܲ��)��|s�rZ6����qM�&�,�Ku�i�T&y$�\�%P��*���(�����(O���є�ٟ����q��&�y[D�F�%I$�c���V]��Nҥ�i�#�`x���K�����n��ZC�F1r�VB�Tr�m*�������!{�]I���g��JN[nHH'�=+���-Y�>��rV�Y^�۳F���as�O8�;����R ���Y7`�ml�zdv��ri��$D���������i�l�V�_H�������85���dSx��\C�nT�'�Gѱ�AL����UT[��1� �g�����l�ڲ:��ۃ�F~����˸��6�g��(<�������jK���ᵋ{�.?�9$���$p)�E�C�i�2[][�x����Wc�X��̶{L�p�8�@q��Yqh�fIR�nr��i�#�j�&��i���<<�+����H��$��^�+lԣ$�a'���W��7V���pA�����Ӯ�O=����3�5\:c�O���fo�j� �W�g$w ��OC�5���:����an�+�_�}�N����Ϫ.�^"F7ޠ1��w5sF��Utuua뚒��(_�~o�̥{O��g|��Td�@% xϽfj��d@z�ٸ�!��s�W1]���9�RWn�G7�$����=�ռ���H�뚽�Y� �`�۽bH�Eq��擊��eې �1�?:��J�4R,J08�9��+��v8;�r9���y�N��iJJM8(t�A.�����#9�hP��U��G�q�R����}������;[|F����ף��|RID4: �#F �h=U+��X��@=W�q�!��f�����S\����#%�^�v��u5�$�4���#�����䀒���&�y��;=����z�¹K9d���|�zm�s�W�P���@U�L�1�~��<�4�!)\���,�2C�������0i�4Ѩ��1A�t�+c@�ʿi�mYF3��������Қ�v�~�����t��kDCWL��I{�{�kp����c�^��=^K^���6H'�TzO����9�7�1�W��+ �E�W*����3\-���B��e6�n�[�n��� �;;��!��B���0����E�m�F�"p1�WQ�h6��P2{�6�uB��bu$��zo��Ei�� ���]��|�ƙkq#�9��\��D���*�r�O݀�x�slV!�)���klP�<7mi"Q�9�[@R5�-��Ic�UKnp� ��Ք[MjR�,G��?Ju�G���U�.R4 7'�V]��Q���rMJ���U�3R+����< u��H����k������:*�rwW������cƷ>k�C���y&3nX�cV�:z�����p�"�g9�X��aY,�7��5�'�>/_]��=�¤�����/|_K-em5��X���ހ����~U�tx���MZ�x8� �IЃ�G��#�n%a����RF��}�7,Ğ �cwo{d�V���J��H�*F;ƭ#.xc=G5��ӣ�cf����|U�b�J\�Ȟ(�A��=I�J���}��*���I�^x��J�3���52M�x���'r�0 �݀����$z�2�c�4�'n3�Gs�V2�i�����pjx� r0>¨+�$�9�Ԫ�1�Ӿk=b�tFf�3��j ��9<��dr_��X�^}�GJ����ћ)0���9&�E!���!������1M�Q�5�a��p�?�� 8��Đ9T�H�u�w�j�+��HՉ���jx�'��z�I>oN��f)W=G�ҽ������g�V"�����TR�oj��p �Q�i����Ա���)=rN�q�W�N�e�U�=��x�z�����{Ա����]1�ƙaX����'�5 1���9�Wq����W-㫓����M]2�y��\w�@?�����e���j���u���N�Q��ۋYl�����M��?)���R�j֚A�Fh�}��o\�,,y,r���Y�����&Gf@7F�!2r`k;\ ��ċ8�d��8��_�J0��������Țe��]#�0�<��!a�wd�6�guf��)��$��Y-�l���˒�����o�$�/�^VlDn����2�z�֞R��̈�A�u.�l�_�(ϼ�y-&{cW2ʰ<H3��c���rzf��8~!�,%(�.Y��V!��;�\c�Z�b��Ķ奔��� \s����#Q������!H�lX�͚��z6�����VeK;מ�I �k¯�[�Ut<pArH�p8"��f����I#� �� '�nU�z`u��IZE��٬&�1�%I�P~��2D����L�2�`*K��$t��b��������=��n��+}?Mxm����lE*��X�[k�;�Vs�W0Z�#Gwko�32� i���c���?�cޮ]E�id���I�*�|����^��6hchm[e�`�p�R};c����������+Z�4���od�2̫���Fa�pI�H�K�$��[���-�ќg���L���;[�o8��H8F8��K�!6W�Go�'i�ל���7������ȷ}�Zj�\�j�WS̛^i�&�`�����#�\忂4��D���ؒ�8�,�'<z�;���b���M���$,��\�|}�;�j��?�%{�R�,����C���t����� n;3���-��jP��Uf��N��ʌ���P1�����&�f��O�)����)bx|�k�ݷmea�県�ֺ�d�~�ɖ�#i8�ϯ�]�uk��b�Č�{@*ܖ抔*I%��*S��Z����+5$�g����)��>xI���-ٷTu����&�?TҾ%x�V[���ܱ�x���؎�q����|W6���s�X[�Еx�h�����⋝C@�"��vb���Csӷ�{��HQ�U9=qI��O�B�/g����ݏ��~�~4�n��_���Y�����������p~n��{��|?ៃ��b�Mմ+[�9��n$�\�y��$�:O�a���_����|q~������*��#�v����Ū5݆��I���Q���w�jT��Z���u{rzY5/���Ir5o+�����y{�_�ڗ�|7��M���-��W�,�>�����Fqڼ����3� ������U��ȨA��xǥt>Ѵ?|��WZd����Ǿ�CV|���� �~Š�;#�.'����ҼJ��`��(�]9^�wiݧ�� ��n�z|��v���è[�I~��e����`EP� ��5��Saa�^@��ƣ`��ňe*U���5= ����d�~y^x��K�J��frZ2�?v��ӭq?�E�������w<{�Vv�n�}e�jZ^����x�%��m���%��T�NW����ҵ{[����?[��t���8���FӇ�`�s��q]���m/!k�v%9�$�'#�28�ҹ}{U�5��6�u%��4�m�.�9�䩏��#�\��崣����z|�_�]"����S���y��\jז�y3 .a�ϖ����|���jӝ���'��H��ndS���\r=���?��-�էק�d�k���-�0G8Br3��y���>0��f���ѵ�L0�N�D���sמGsֱU*�EE�����mޡ(-�D�!��e��]��a�~2�OΒ+y�D��f�iD�P�o�O�V%Ƴ>�'�ַ�8��|�C��^�I��±K�8c�>�.�#d��fO,���.��6��S�m�Ʊ��!Gu퓞? Ž�N����kK�R�#��5�ۑwTz`��J��j7���A!c7)�C�O�W��6SYk��^ڥ�J�.��sc���+��4��/����.\a)E�=?I]P{v���,�KM�(�9���T�v�&�f[��;��j`����@p:���5{] ?���ԴBd�k�2 ���Q֮��vq�}�S����,�-�7��vbpX�t[�?z۵�;����s(ԃ�����x���w���.�����K�tzr8���@�%���w �"���)�+�����5���M1��{��ՠo1nY�a�q�ٯ<�ǽO�!Ӵ�(�\f7�/�I���R ��Q��)�.�R_z���3Y�_MOm�Dzki�$������npO��W�|I�Jxkím��Y�i��~�&=H��������Oj�}�O���xʈ���z�Ҳ4����U�}J[y I���g���ya�q���AKUի5K��G��+�)O�����o�Cx��K�Q��|�+c�=�Mw�wm&��o���eX��=��G�k�>�;O�>�.��Rj:��/�w4�Ѕ�q����mk}��z��wgc+�3�XBx�K@=8'�g����*PM�]lڿv����⤣}K���9/�7�E��.�m����>���2F����1@�L�O �px�kI-�����)�����n�5�ƣ��-]�s���zt���5� ѧ$�������� ���%d2�YG��꧰�c��U���)�VH� � ��"��2t�eu$=���MM{4ot�\D�IX0�ߎ 7V���z����sl�������'���7O�SCs~�J~����6}���ޙ{^F�ܔ�V�]s��?I-��bSu `��3��~u���4�U�����j�<nA��-�H�y��}Ҡ�NjΧ:��4��W��J�9�r��jȎi�Kr�$@M��?�Zm䖐lC3��7�M�c���\��P�n���_�+��%�Q�c��d�rW.�:�0:qY��4:�Cnm�)6�Y�l�?\j������\ؽ���`P�w�G^��)�����u��WC�;��QUU�7ˢ������*;�6��2Om�_1[���{�8=z�Ҥ��Yl��2V3��@��$����F�s�C��β��T��FSԷ���*�j�|W/��[�lr1��ׅ������o!8��Kmyk�K�sEn�v�3�i���\W���j�}���S�����U���}k���i%�wrY|���sӜ�B�R;8է�k�܆x�����UI�J�[]������>7���^�nn.l즹������99����י�~���HWg��eFy�����o��j7|3�#�'���=>�?�����[�59��#f� e�1�c���5��?*�t�>�®IsC~njI'R"%Ԍ��������fKiKcj�z�֮�14SbX�JF ����������eIp������w<�EE� ��C�e�eVl�� �}�-n7��B3��0�ԓ�Z,k����������������Z%��ͽn�+��T��J�̼`��r�,��n������N�G<"��u�#����Rm��bB���F��Ƿ~�e�/��u�]m����� _^xS����sE*:�m9W�q&�]�2gq�{���_�/j>��OԦ�m06�Ųa��u�θ��)c��85j�WO3��c��U3�K�q*��{��q���f�Ŷ:�յ�H�( ���O,iqA��_�R��0=�e�������Õ��=�ݜsm8�z֍���v����둃���fU�� Q��s����E����O��ƌYY��`zW��� Fzt�o�::�.�pq��R4j/h4��O����h��`"�ߍr�!��9�" �3<נx��r0| *�$2�>��ׂ�)%+ H�R�f�G�+`'�H¤g�.|Enn��,G�_ӵA?�����@�'��銂�ᾮn�4�7ǧ�+����$���rܐwb19f<Υ�2J��4���/��oă�x+���G�����$� ���[c�;b� 'A�4c������o�A n�:�E����D���֭����W'=MvqX${F�>���#����_5_4��KCD`�� ���Gs�Զ��C�c��n%Q+�� ���A=�:�=Z���#��ܪ1���4`'{zT�h�$ ����+�Z�`d{�JVj�rG�H'ރ*G���zW9�x����.�q�$���i���{m�5�C,��]�������-cU��H�\ޥ� V�2�_Z��o�B�b<�3����şuK�[̺}���l �\��1�u�<���zE��Mx���d�E��Ns^S�_������b/f'$ׅ^�7��z�<�J��ɯ���;��q��<���"���N�Ğ>�5Y���L����r�쭆s����7=)�>O���_OK F��by�r����++��rO<��;�0�T�ezc�N�����5��fN ���/��U��αv̖��>��k�x�I�>�.���X/�a<2L~�z��6 q������GA�#�ӮLr��g����#��Nq�}���e�Ƶ�Q�������}��$����8���r{q�s\�?��%�[]m��@7#�=�wa�WwL��_��up�:���G� �MZKu��!�~$N��m���]I#���pb�<�\m�E��\�'�?z��2??��UW�pq�Ԫ����5��:#2�lv�21�5"I���j�d�X�}*Bǒp�eM�PЊQ����9�\��$sϵd$�n��X�L�'NkZU�tFf�Lx<sϵY�Q�U�k9J�ry5n@ �E{Xlbf���K��ҬG(u����$�OJ���g�{�1F�F�2��J���YI'o�5f)P;r=+���sE#R)09�*�R{�\R�A�V"�����^�Jf����=852>x����=j�r���{zשJ��w/���w�# �R'�j�7�H����&Z����ڹ�`6��{�����#�zW)��u�����MS�~�׃�!�7^Z?�ʫaK1+�}��4��?g�(�VL=�=���)RF?�W�M�,��p�;�c5�ci�ş{n�����ʎ���a��oҫ��Ag�#Ʊ�6�o=?�%�ф� B�GT2^�v[�nn���VJ��_�Ȼ�I=�7�\��ǭCy*ц������\S�F��;�q��A֒�ф�HU�>\s�f������4oa$ASi\`���Il�QF�ʃ/"+s�^�V��I�@����.Z����:i$�� ?v�s��������ݐۅd���,�@1���Ԓ$�%�-1 �'a� zƠ����%�����j[���xa�CƑaH#�ۥKi���5LM>2��-�����O�U�Hl��k��i�#��I ��柪$�g�(;;�О��q����*"��8�Pړ���{kq�e���7)T� ��,�mG��3�Ϸ�S[<�\�2 �Ө'�T��X�2G)f�`z���qu�"6��� �*G9������������O���}?1V.����=[�*!��<h~e�V��qObn�%��d�I*$�k`r��Ҵ|-ᵈ�����f*�B_1`J��������2$!�G�5�'��J0�A�+5f���l�Q|���F|>����%��$K0��3s!S�v���w�߳lv�Cw�.�����۔��~�z��6��=J=ua��lIa7^0@���o|S��A��Ak =��d���`+��b���B�Z�Qv�i�ה��勲�|ދ�5��{]>�(lckx�HX�8 ���� ��K`�H��n��q^\֟�K��]Co��� >� ���?�����\�>E����b���S�i�K��p�5~���z%_>D�p~�Z�����7��G�ˉb�e���r���fev��\n9�~y5�Ꮓ6�����I5�����qְ��b��q^n���;B�_<��X�sx�������L晩XZ<QEx�qH�����LJ�-M�.ke�yc|����g��h�dutN���[<<�*�����1��5x=4�<;��-%�!��Mr�q�s��XkMOĚ��p��i�7� �E³0���ϰ�<W�9��Yv;���5���i�����w7l\v�=��u��nn�>����_a�����;�8�@�;z�B�ks��x�1�Gןΰ�O��Hl-��r��RH犁u�Z?��,!��K���<�;cޣ�M�ˠ���c�KC"�� �1�ު>���H�rs��>nj��ͩ��vV ���=��p��r�ִ�������q}Ĥ�����2���Ί_��Q�>�+�i��$�Q�i������1?N+Ԭ�7��I+�����jD���n��9��۟Ό,V_�T0�ɸ���I����/K��ӝgR�4�ϒ��q(�S��([��I����_J�/��������\��g̱8������5��-���4�4�9M�S�eN6������^�\�+���+�Wrce'��c]P�[٤��/��y�_�Ҥ�.X���Wƾ�D�J��WW L��=�AY|a�[e��C��N�n�#�ޭ|B�<��s~f�[¿�#�[����\*匒'�N��%9�j�y������e�Z���<#�v��<c�X=ߛ�U�.���9��W־$xF]6����\Ŷ\FP�ߎ�Ͼ��xFؔ��=� O�zW�O��&Ye�jg*8�k��ͤ�<���kG�[��|�� ���2[�o�e�ۄ�]����@z��^����W�D~\�&�9$!���}k��W^"��[H%����HМ��ֽ����u/ ��ʑ)�9�O��a�)Gnw����k-N�M� �ޡqbG?*�`7'�ַ���{d��Ѱ��'����f��hc�g�d���~�Z��xr�+�$7H ��k��I;��%�lkV�\�����ݧ��x��K���ZI&R��B�������z?jMs����9�'_cT�����I���n �=�D�K�Q����jz&u�i�Y�0 ��1�����[�N��v�D���z3XsZk�1$dF�d�/��u��o�K�|n*J��W�-8�R��3��m�7H�9��� n���=�J/�ހ���^��b�zg�n��U�s�jė�io��c�~��1K����/��D�92�� ��������uS����'�oʪ�^#�K�X�F8��d���Zn�m%��52�O�Z�N6�D٭�p�R�Ļcs�^�3�S��o<v�\}�9�۴�1����5�ղ]����r?ýW���]��P���sӞG*�Z?��m�aqk=���)��s�}�:��xn�S�e��Yx!@FI�{�?�m��y�y#B�=�Z�m �^4�Yb�H����U����]���?�E"I%�2}��wĹ�=ǯ_����$Ѧ�o�Wl�G]ˌs_��L�-�8��Q�:��^Q�O����^LB��8篾k��N$��J�%�wFU���|v��3�I=*A��B}�����4I�B�U'��s.〬��S�_�R�ӭ8;�x�(J��d�S�+=�llۥJ�%�0�I���)��D�� �پ�n����1I^�I���2z��I���'"��w!�;R[���[�T�*�oS���M���G<�Z{7��Tz���'ĝ+�:DWVw*ᗑ�A�>���1`w�=���s��S���w�t�"c�ع����_ļ%�ͩ��\�{���3��c�7�?��?I#�+��9����@~���(i�%�"�9��<d��~��e�w9�6�,nM��9���=�EM]��w�� �N��Xry�WK-����+>��L|�c�ֽ<=|>27�������*9��\�G��]pTc�J�-''�z �+ ���cF�^�� K�����eq��jѶ�!G�сZ�(��Α�T�����N����*�H���b�۳�N���w/�.�H�9�F����V���m̓��0pH�_��8�� ���c]�Ť��z�꧃��v�X����5Kx�F}�T�,0e����x>0ivFM�>c琵�^2���^����T�M}>[���M�Ց�[B��-O��C�"��X��;��/��x��e�=s�|�x���V2O#��Շu}<�[��.�|J��<����5c�<W�kW���hǢ�k�ռKyw)w�ܞ�sXD�����>]�ëS�G�V�Z�ߕɧ��bK��$�'�/j:WjIld/J(�)8��N\�z �&����*1�9��m#�;piT�ұ6,`�����jnp M��ҥ�M-3P���Iᙣ�3�u8"���_ŏ1��u���*M� ��Ҽ��4~dm�O�5�cp1p䨏3���G��Kf�_�<����w�B�F��rj��FWp�N��<WΟ ~$�iGi���[��HܲC�^�j�Z�����Hu�5��e����]c���N�|�������~f�=NG=�y���v2{�{~�Z6\m99?�= ǦF9�Ę̲���P�qS+�s��}*��n��1�}�@�0ea�����o��gb�N01��SDHL�NI�T��=s���i���9�ұ� �2�R�x��X�r�ߥg�=}zԈ�Q���L\��s�36`�����U�f9'5��0xU��\�q�A�9�^��f�F�R�=��Hs�s�MeC(�8ϭY�^�8=+�0����jG&:�Y�^1�ҲⓏ��X��f���X�ԎC����֬�'���\r�ۑ��� s�N+ڡ�O������< ��ݺ�L2��=*���<w�Z�3U+�H���k���gV���`?�&��_>���<jO��x#�o���+T�3��S�o�F�'i���5��q&K ��u��2��BW���Y�M��:W��luuZ���}��+��#Uu`dF<���Ck��G9<栞�InT�y#�_z0�ϓ���]MF��ɚ8F��pW��LD��p�Ny��R\�\8ʧL���Җ�UVY<��J�~�5ewk �")�%%u=�A)��_�}�A秱55��I3��u�Z?)���Tu���N�a�����P��ׯj���^nTܘ�O�H�n�����/{F�cp�$ܖ��}�n�@9Xԃ���5�es#+��b�Iu*�^s��P�L�6\`�:�4�%=���.��������Ԟp7BS����j�Vq�)wv`=��Z���%H�8ɨ�)5� �H�k{�0e`à?Ҧ����E[$��S��d�,�{�^� ��������}����er��2��%��"����n�^����8�RM:���wL��kHI��-X,�[�R ?Q��MG��r�矔g8��|�a��84�D���b3�G���M�E�ɦ�"��� n��]����䟥V4�$non�5����!q~��78]�©W��Q�"|�ow�����U�c_�փ-����<�u�� >���ZO�<'�[��}v"��v��L��ֽ?ƿ<;�D �K!U����|��[��:�gXi�oh[�QQ�Ӂɮ���E�by��\ZV���:q��j��]nt�?h��B��m��]\��$�ߡ�ҟ�=x����Y�2��������8��R�5}~��[�����<�^����6z�Z2��D�DEpq��N�3R�ӗ�IY[��_������_#i�cݽH Z��{���&蘭�Y�ik]G;B7y�t��k�k�udpA9#<�V�\4�9�v*5cQsD��Aᘅ�ç;$m�0�� �+��4}~�yc�X-� a�e�z����۫aS�NH��;�1^]��T�ǭx�0���Z�B�����5�=6�t�p�����I��'�w6� $xm�;����@��e�F�Y�-�)�z�Gon$X�)Ek\3t����be�3�v1!���SX��#��tҪC{��n��x�����>�뽻��3�ԴYm��.7��?tצ|?�<3��k�>����ʳ(fC����i��z����6->M)�,b]���=;V92�`�: 5(�6�7k>�v��-)�Wm>��O�\�|��o��#F�IJ�#'�sҼ#�5��Yl�㼜$(s�O�+ڼY�'P�Z�P���I9"��߀�+d�$v�ѱ��js�N�IT��%�ɫ/���GU(҄�������<P�)�kkv�grX�\����>Mz�˪^���Ux��^���ڈ!�^�>�ˋ�K(�3r;X�\CvRQ_�_������^���ᾇ�`b���2H\�+���Dr� �G�ָ�x���YE�p���,��l-�[�&Ǯ��VJ7mA6�Ϳ�6����z��co8Pʌ��I�e���7C9ɯ�e�/��P�t�6w ���;G�}k�~i>-C�[�4Q��$���sҺ�k���_��-Ҵos�Xy0mRrG��j��RH7v���Z@�E�rw�55�ܩ�c=zS�.md�3��q5ʣ$�#'L�֘�A,;^2 kCP̌m�֘Ȣ���l` ӕF6�+����>��݂H�=i�z��Z1��:��Z�6����K�{N�5�n�,+��Ir�%s>�+u�)���P��{{ⰵ\��,2�����5�]�*��\w�iVY�L���aS N���*5$�?M�+q���'%�{b��i:��bv�����ze�1Gb���UFQ��wn��K+ܥU����T�\�����?�A���oe��_�T��;�z��)H���Z��-01�9�9�A�X�*���W=���aCKjͼ�s<�j8�4ה��23���1^��h�OI$AC��{t�:����ơ�N���xJ���ԍ�x��o����p�r� ��}� ���w�/t���a��0k��� +�D~XQ��k��?Ý3R��e��P������d��#�Q7T�*Ǖ�It��ct$��4зB�^��c�uż��i�J����^#��U�Gq����3�`��R�={&#^�K�䋷�>�S$U�>��f��.0w� #�r�{!�gٜ��tiL���P1֣.��֨���������Sd���!�m[Ú�_�7F��z�����?�q�ݿ�x���J��;��1���X����+��-'he��:b���p�����3���.�T~�hzŽݺ�r�h��˜�1_�$��o����_ $kǟ_�W��S㿇�XŪA��Wṯf� �� ǣG���P�� �v�c< κtQ�r+���.�p�K�Xc�Tw>6�e�^��W-Y�5�����s���ULn��=OY��&1�\o�|weD���Z��K �yT��9�w/�1��'R�JQ��=w_l�Nz���?�-U�.C78Pk�|[�k��}�L=�+����F}�I�_�e�B :��V#5�t���-��sp]-O����8�����e썞��K��e���U7[�ך�\O�ëB(�+c�U��\��g��X�<�ǖ4���Bzьb�G܊ ₸4b��<��;R�I�h�4��\P�8�A������ SUMM�x,�|��y�"BO9��Fo�*�(��Mc)��!�����Yh��8���@ʎi댁�FzV�ށ�,v�. 6+��m�S×;=Ŧrb���_�N�6�'��K��R�,01���1��q���R����8�#� �:6����G � ��Z��G<t�q_��iS-��,@.�8?�{����ӔH�dۃ��W��# ���9]~G���U4�a����r�H__aOV�P:t&��t��>�d�h�;d�G�UWR29�}*"�R*QwL���t��5f�2±'�¦�رQ��~�N7=�:�5">��5��&���O'#�L�?��R�`~��A�T��<�u�SDā�'���S�ΈT-��cwA��ju�`����J�#��ڤW���s�V../C�5 (fn9���r)x�q�X�˂O�1S�.�N9�]Tq2���36�qU���==��_\�����J�G#�Oƽ�.2��H�Iz�銳����㐑��Y�B[{C��)�����P�=k&)xO�Y�\+���T�h%8�5����c��~���/;�c��E�ЏwB:�s^���;�2�Tk�5��������^������u7n����^ p�%8����ֺ���m��"��;���ܗly�z{��t������`����Z?F�Z5R����Ixd�R���:r*[p&.�^�f���d<���}@7�����2�� ���)?U� q�]�������M*[��Q���V+���$p;S&S9 &��Ek�I��ie�� �T(�4��<�֮ (T0��"��]��x��j�ùZU�11d��8K2Ās�qWc@#P�T����}� ���u�q��.Il!{RҜ��9�*�r�b��3�u��$8���>��3.���֎2qHZ�3�PO�wu��18��ۣ�m ��}���y�.��9�j�ME��e�$����9�����*F=��V\�������>�EJ�QܘNe!NAG�I��1�ð�s�ʠ�dc✲���y���KK�;��:ԭ2y@�U�z�^:i�c�=kMR�V'��㛌�ϯjѹ����3�ySިۺ�~N9sRG!����zӧ.D��%r������!�z`W)5���j���5�$ci5?�< �Cn'�dVp�ڵ��ã�,w1� &@��� Up�4����c/���k�O�O�Qr��t5�|O�g k�Zuьo�����e$���4ѥ��}3PCql匊pS=� _��w�&��Z�4�2�*�����MKT�[Q�f,���_�y�}M{��N5熧5R�Zߵ֟=0�8*��Xߋ�u�`G�Y]���[��:}H����kC��A_fX{���?�l��tWcoo�#Px���%R�*j�]-�v�����9`�)|�?{ڝ!(���9�c˶ң�Xo�>x�� �������.|�/�1�*���/�CJ�3|�\Wn��g"�V�-��c�iA�Ms;��-&��RYħ�F0+u����9���Q�084����xQǯ�N/�6[���D`Oʠd��錙;Q��>O�4����5�4��C���� ���0�u��})�%�@V'm��Fǡ�� !�r2G�]�$:�R�xq�/�.y�+��Iaqs�59n�K�Ynp�����K�Z��On���*���W��x���%�h��:�H����k�bz��R�{\D�o66#��b�f�n��E�_=�#ۥ܂8 �¾�<�h����Թ���}ۣ��������7Ή5���]y(���ݲ@�5��7ঃf�I,��@?��|͟^k�n�,,��@|V]����b%�D#���䮫TӲ�~�����h�Z�KH�b*"�508�7ֶ�S�B��>2��a� ��+��5����\զō��@���gN���J]ޟ��'-ϧ<5��k��n�$X�����x�F���b.�?,�����~5�~��3��tqo�i��<28ܣ�]w��O�m��gk�kݧW!�a�#^K��ٯC�k �q�L�VۼFp�[C"��;�ɮO@�lS8�X��A=+�K�4`���s^*�o�uY�/4Y9�l��2�?Ғ��e�;R�<���]�����E`�����i%������zgz��O��B���֊م�ZY@��7q�P5��ޤ�_Z�x�4��n�{���M��pps\uirI������ c�Tk�\�����4,"??~�����a"��IE��R��H���Uq�ry�E�Nq�g\��}i��d�V�6�ݚ`�-�f�B�J�qf#tl�0@54�cr��Q�Z\��!���(�=��j 멗�iV���8�W�|Y�W�l�;_��/Z��l.��n��;�.K�����+�T������_�5���C�x+Q�o+�RS��(�>���XƋ�+�Χf�<ѷ��s�|��;�ƹ�H�G�$_s�q1V�U�϶�q�l$$���y4�D��z�{h� `���Zw6�$�f��N��l��d&��U�V<�R��s�DT��{TQi�S�}�֭�o�'�WT�{b��Wm��+�siA�*��Dۢ�ԏC��f����6��O�j�RIjf�A�%���5o����xx�Ő.�z��S����q��c�lqֱ�(�g�F���{�h���\�%�|w��]֫�M�6G$���0�*x��ѷl�mO���FU#U�+�S\JĖ,O|�fC�ke�cc�7�}=pN?*�U`s:rF[K��zc�nZ��wn}�U�t=?*�J=qh��3M&��0'�aC��j�<�F�F�0 P@ӟZ{�`�@ �NS��J�"8�݀�ccڜ�1lU��dU�"��n+9T��l���������ŵ�g���F�(�G|qXKR�ٍ�b:�S����N{֒[l�x���S�0Xaf9���g��R�E��h�x�oo��� �xU��~�� ��Q��;5��7r1�j�A���Z�Բ���dx%���]/�-����xC�f���{�Z0�8�Z�_B�w��Z�0����� &� ��F@�?Ʋ~�}��R�(�Y;�)Ꮓ�VH��l��Xt���^��TG �������T�� ��U�*�D ����f��Cq�;��8�+�V���H�����+-�q��)-�p���;g�&��P��(�ߚ���Л�SR���e��R�0GZ���n����q�����a+�>��;?����iR�V�楷c�3��f浧�h[$�8+��5&�rOq�z��5�;���I��9�ֹi�h%)2`7/�k �����c��-��*�V_>����A\rs�ҟݑ��#��9�zf����I��l�rFe����l�>'��@-���q�����9#s1���ֲqGDf[F��t#����b~��ؚ����(|�ǜ���XJL&^�PQ��[����d��X�sc��㓒G<�uT�Λ7���y�3�s�*�Sp9�����8�8犻m?t�z�\ovl�lE 8��֭C!���Ʋb���= �PJ �������hd�r={�G�f#PLc�P�f�C!�}y�J��3�����x���_� ��0=����u��K$V��[K|Ѹ� x��C�<��Y�?^k���2_4����.!;W�����C�e���VK}z_U�B��_��������9-uKC�;���S�+�mn�~V�8a_'��(�Ȗ�eS�p9�߁����@��KC�@?w�q2��Ӹ���r���,�*����w�~���a�*iQ����! �Gw��(`��tˈ�P�y4��}�H��z�NgO0�������ppv*���*h�E-��Ңep����� �[��I�~�:��� ?��r)�A�E>r6T����G�0 �{1�2~��KpP�9�M�O�����N�c-�:�u�����YHN��zX��~a��{����dT�t�L%;�˷9�`8��A$l܃��j�����䓎�� 2a�<T��T�\��U k��bE�r =�4�}�)�Ia��T�Dv��ʺ�r6(�p�O28��r9�u�p:Tq'�p?:��'f2drc�OS�j[k�%��\�LE*�r;�)%�rx��p��ܗ���ೞs$��{�O�@* ��Gjk��i��{�!�Ѧ���.6�rj)>\ay�B)RNI��nb�%��\��R�$.��+�<�R�YF6��T�9�)�`�J�q�I�x>��V��$��|�u�MQ�F��\� ��(���z-�U08�,y`3�i��^q�y�T�5���c�H3L�(c��PB���֦`���`��U9�Fⵙ�Y�d*L��b;ict���{Q*!<q�e�����14�s[Eq'�"�P7��W6����`����nI.A�ʩj� <��Z��ख�Z�=��^;ֵL�6Q�<�'5�E����13Z����#?L�_U|(���q�=�rt�d�J��GL���6�V���ь��{�I<���MFN�k�����c��#�ϊ�5��2��n����s�Wy��_J�`P�ě}��|Y�xoU��GP"����8�-�<y�j�y:m�����_j��N���Q��{�D�I�7Z�u�iT,��+˾$�E�&H�4� "�I� �_��^;�o�@�y#$g�5�x[�}����A�����~��*8x�~��+�4K�j�?ጾ!��0�6�Ej�����4�,���:c5GD��(�T;V�IhT`c�k�S��u%^�2�["ݱh��pz�OK�I�G|U5�U+����;pF{ �I؞��o9��ު����#��Tb���{b��YI"�@��YK�Jz�a�l��U*AQ�t����;�,sZ1iѠ�H�z���)Q�ҷ�r���7] V�|�}@\{ՅӢq��OO�Cu�C�ι�γ�<Ok��~�St� &�qi`�Ͽ4�\+(E :W;�4뉌i@�-��7�|Ay��5�V��~�^Joz�P�UI�Oo3EJM]���qu�s���ո|��u�?��_-�*u���O�Q�Bb��Nkٌ1K��"��l�V��Ѐ�E���6�o��H���W�0�n����y��n� N� =ӊ��c%/�2[�V��f�[MF(wʸ�x:�R���R\-y���G���霊�4��:uտ�s������z�k�*��Y�?��O4�v�H�x��ỻ)�e���Ҿ��u�-F=�*8�<�W�|E����yj =T]yFu��?a_�]��.�yj|�{������T�%H��H�H�]��+�D;�=+�OGS��5�4�|�6p���X��-�A��q���+b�I;�كϺ�xg�W� ��Ǜ*3��A��CI��g���~�A�^�գH�\P 9 �2|ܩ ��S��|��zz?.>��n�X��@��ǭ1��:�u�\�,��ۭD�K�'"�2�� 2���D���zwzH���Z��z�21��$ �4�j��Im��A?�H��~��{+������)�`�[��=)RG����{t�-�ԃK8�kb82q��Vb�lr�G�g,K]JX{������d������;|7��ZZ�8* ����F����:+�a��52iS)ڪI��w�?�oop�[1����_�e���VPFpZ�q9�* �$�����{m"��R6l�5���#]ԥ ��I^������X��T�ܯZ��x�������;���x�_�g�+,���(�o�Ʒp�Yԅ#��k���� ����y�<gھ��A����U��m����^\�3�_�����M{�<�Þ��5_��w������0�1]ٰ�q�t튭u�B��F+íB�Is�vm�9Hu���P������9�n_�HC�=��-4Y1���ָ�R��V�L���x�W�&�����cҴ��ОWٸ��%�^5�g�T��^���=#�8ܳ�Tq�s��p���J��2�U����1�_��}}�U%f��6h����s2(ry�j��s�6qҪb�%����:ջ; D�Eڧ���Y���L��ǧQ���$�Ι1P��C��ֲ�P�����v]CIӨ�s��q`�- �09Ʃ']��{�i<�ܩ��#1\����e��N��;���1���]�&wõ�9����3�`�s�T��PI�Np Uw܍��x��F��۸ǥw��9ٖć�����K|ߎ; ���������99�x"��N�O�l1�9���*I���֪$�& ��nޕ$m�=OaYJ7�B�rl��0b)y���G<����R����׃X��T��m1�9� ��+)@�$���V��0���zX|c���27 �����Y���]�y����i�LN9�U/M��q��N;��h���z8����O����������G�E6�z�+�8��E��S��xG�x��k��p�G���7���W�`?���_��?�C�f�+�<#�v�k�����E~Yß�1�}#dT����W��p���G!i��ƣ��߅Uu���1TG��E��>�K/�����QZC�b�-?�N���QY��������&�+J[�?��ޤo��O�E�B�O� 2.��R��} �4��}h���I�����T����Eb2���W�Ҋ+>���b?���)/>�������z�*��_�O���=���["�,]V����QEl�Jܒ��)��4QR���?�ҧo��E�1��Xjo�g��E�� o�_�0����w���'���QE}��Ȯ��x���ס��ş�.���:���E��o��_�ϥ�������*�-z���E͕�Or���J�����(��ko-�i>�:O�Ɗ*�Ģ��J�F��(���K7������Z(��$r��W�J�5����h�����֙�^��q?�����ȵ�n��QEx�A��:h�ϕ5��M���U�s����4Q_�a>�]o�������� n��c��h��a�:�2t_�/��i�����E݈�G.dz߁��>����~4Q_ W���z���������g/����E}e/ᣥnʷ�p�kS�~��+���p�1�����S���Q^�����B�A�����QYȸ�Mq��� Q_��4QS �����i��h��! |� )�h�� z������h���*�5yՏ��4QXϡ�"h:7Ҷ4/��_��tQ\uv;h|g���=����k�|)�#�t#E���_3�{ލ�~�������J(�0��-Ʒ��*���袷��.�m���G���h��?�*\���Ӡ�ޢ���H�?w�_�Ɗ+g�"��ֲ�~���Ep�����7}G�QED����� �����m��}7�E�S�p�?��UjO��_Ɗ+˯�Dx����9-s�CR��G����ٍW�R�O���~��o����,?��?�QEWQ-�GU��VOc�=I���O�� ���G�¦���H���xU��ק��h��u�C���ު����r��Ez�>��z�� |
| URL | http://zero.webappsecurity.com/resources/js |
| Method | GET |
| Parameter | |
| Attack | Origin: http://4qCMHsQq.com |
| Evidence | Access-Control-Allow-Origin: * |
| Request Header - size: 315 bytes. |
GET http://zero.webappsecurity.com/resources/js HTTP/1.1
Host: zero.webappsecurity.com User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0 Pragma: no-cache Cache-Control: no-cache Referer: http://zero.webappsecurity.com Origin: http://4qCMHsQq.com Content-Length: 0 |
| Request Body - size: 0 bytes. |
|
| Response Header - size: 267 bytes. |
HTTP/1.1 404 Not Found
Date: Mon, 14 Mar 2022 07:23:17 GMT Server: Apache-Coyote/1.1 Access-Control-Allow-Origin: * Cache-Control: no-cache, max-age=0, must-revalidate, no-store Content-Type: text/html;charset=utf-8 Content-Language: en Content-Length: 949 |
| Response Body - size: 949 bytes. |
<html><head><title>Apache Tomcat/7.0.70 - Error report</title><style><!--H1 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:22px;} H2 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:16px;} H3 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:14px;} BODY {font-family:Tahoma,Arial,sans-serif;color:black;background-color:white;} B {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;} P {font-family:Tahoma,Arial,sans-serif;background:white;color:black;font-size:12px;}A {color : black;}A.name {color : black;}HR {color : #525D76;}--></style> </head><body><h1>HTTP Status 404 - </h1><HR size="1" noshade="noshade"><p><b>type</b> Status report</p><p><b>message</b> <u></u></p><p><b>description</b> <u>The requested resource is not available.</u></p><HR size="1" noshade="noshade"><h3>Apache Tomcat/7.0.70</h3></body></html>
|
| URL | http://zero.webappsecurity.com/resources/js/bootstrap.min.js |
| Method | GET |
| Parameter | |
| Attack | Origin: http://4qCMHsQq.com |
| Evidence | Access-Control-Allow-Origin: * |
| Request Header - size: 332 bytes. |
GET http://zero.webappsecurity.com/resources/js/bootstrap.min.js HTTP/1.1
Host: zero.webappsecurity.com User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0 Pragma: no-cache Cache-Control: no-cache Referer: http://zero.webappsecurity.com Origin: http://4qCMHsQq.com Content-Length: 0 |
| Request Body - size: 0 bytes. |
|
| Response Header - size: 361 bytes. |
HTTP/1.1 200 OK
Date: Mon, 14 Mar 2022 07:23:17 GMT Server: Apache-Coyote/1.1 Access-Control-Allow-Origin: * Accept-Ranges: bytes ETag: W/"26898-1358437290000" Last-Modified: Thu, 17 Jan 2013 15:41:30 GMT Cache-Control: max-age=2678400 Expires: Thu, 14 Apr 2022 07:23:17 GMT Content-Type: application/javascript;charset=UTF-8 Content-Length: 26898 |
| Response Body - size: 26,898 bytes. |
/**
* Bootstrap.js by @fat & @mdo * plugins: bootstrap-transition.js, bootstrap-modal.js, bootstrap-dropdown.js, bootstrap-scrollspy.js, bootstrap-tab.js, bootstrap-tooltip.js, bootstrap-popover.js, bootstrap-affix.js, bootstrap-alert.js, bootstrap-button.js, bootstrap-collapse.js, bootstrap-carousel.js, bootstrap-typeahead.js * Copyright 2012 Twitter, Inc. * http://www.apache.org/licenses/LICENSE-2.0.txt */ !function(a){a(function(){a.support.transition=function(){var a=function(){var a=document.createElement("bootstrap"),b={WebkitTransition:"webkitTransitionEnd",MozTransition:"transitionend",OTransition:"oTransitionEnd otransitionend",transition:"transitionend"},c;for(c in b)if(a.style[c]!==undefined)return b[c]}();return a&&{end:a}}()})}(window.jQuery),!function(a){var b=function(b,c){this.options=c,this.$element=a(b).delegate('[data-dismiss="modal"]',"click.dismiss.modal",a.proxy(this.hide,this)),this.options.remote&&this.$element.find(".modal-body").load(this.options.remote)};b.prototype={constructor:b,toggle:function(){return this[this.isShown?"hide":"show"]()},show:function(){var b=this,c=a.Event("show");this.$element.trigger(c);if(this.isShown||c.isDefaultPrevented())return;this.isShown=!0,this.escape(),this.backdrop(function(){var c=a.support.transition&&b.$element.hasClass("fade");b.$element.parent().length||b.$element.appendTo(document.body),b.$element.show(),c&&b.$element[0].offsetWidth,b.$element.addClass("in").attr("aria-hidden",!1),b.enforceFocus(),c?b.$element.one(a.support.transition.end,function(){b.$element.focus().trigger("shown")}):b.$element.focus().trigger("shown")})},hide:function(b){b&&b.preventDefault();var c=this;b=a.Event("hide"),this.$element.trigger(b);if(!this.isShown||b.isDefaultPrevented())return;this.isShown=!1,this.escape(),a(document).off("focusin.modal"),this.$element.removeClass("in").attr("aria-hidden",!0),a.support.transition&&this.$element.hasClass("fade")?this.hideWithTransition():this.hideModal()},enforceFocus:function(){var b=this;a(document).on("focusin.modal",function(a){b.$element[0]!==a.target&&!b.$element.has(a.target).length&&b.$element.focus()})},escape:function(){var a=this;this.isShown&&this.options.keyboard?this.$element.on("keyup.dismiss.modal",function(b){b.which==27&&a.hide()}):this.isShown||this.$element.off("keyup.dismiss.modal")},hideWithTransition:function(){var b=this,c=setTimeout(function(){b.$element.off(a.support.transition.end),b.hideModal()},500);this.$element.one(a.support.transition.end,function(){clearTimeout(c),b.hideModal()})},hideModal:function(a){this.$element.hide().trigger("hidden"),this.backdrop()},removeBackdrop:function(){this.$backdrop.remove(),this.$backdrop=null},backdrop:function(b){var c=this,d=this.$element.hasClass("fade")?"fade":"";if(this.isShown&&this.options.backdrop){var e=a.support.transition&&d;this.$backdrop=a('<div class="modal-backdrop '+d+'" />').appendTo(document.body),this.$backdrop.click(this.options.backdrop=="static"?a.proxy(this.$element[0].focus,this.$element[0]):a.proxy(this.hide,this)),e&&this.$backdrop[0].offsetWidth,this.$backdrop.addClass("in"),e?this.$backdrop.one(a.support.transition.end,b):b()}else!this.isShown&&this.$backdrop?(this.$backdrop.removeClass("in"),a.support.transition&&this.$element.hasClass("fade")?this.$backdrop.one(a.support.transition.end,a.proxy(this.removeBackdrop,this)):this.removeBackdrop()):b&&b()}};var c=a.fn.modal;a.fn.modal=function(c){return this.each(function(){var d=a(this),e=d.data("modal"),f=a.extend({},a.fn.modal.defaults,d.data(),typeof c=="object"&&c);e||d.data("modal",e=new b(this,f)),typeof c=="string"?e[c]():f.show&&e.show()})},a.fn.modal.defaults={backdrop:!0,keyboard:!0,show:!0},a.fn.modal.Constructor=b,a.fn.modal.noConflict=function(){return a.fn.modal=c,this},a(document).on("click.modal.data-api",'[data-toggle="modal"]',function(b){var c=a(this),d=c.attr("href"),e=a(c.attr("data-target")||d&&d.replace(/.*(?=#[^\s]+$)/,"")),f=e.data("modal")?"toggle":a.extend({remote:!/#/.test(d)&&d},e.data(),c.data());b.preventDefault(),e.modal(f).one("hide",function(){c.focus()})})}(window.jQuery),!function(a){function d(){a(b).each(function(){e(a(this)).removeClass("open")})}function e(b){var c=b.attr("data-target"),d;return c||(c=b.attr("href"),c=c&&/#/.test(c)&&c.replace(/.*(?=#[^\s]*$)/,"")),d=a(c),d.length||(d=b.parent()),d}var b="[data-toggle=dropdown]",c=function(b){var c=a(b).on("click.dropdown.data-api",this.toggle);a("html").on("click.dropdown.data-api",function(){c.parent().removeClass("open")})};c.prototype={constructor:c,toggle:function(b){var c=a(this),f,g;if(c.is(".disabled, :disabled"))return;return f=e(c),g=f.hasClass("open"),d(),g||f.toggleClass("open"),c.focus(),!1},keydown:function(b){var c,d,f,g,h,i;if(!/(38|40|27)/.test(b.keyCode))return;c=a(this),b.preventDefault(),b.stopPropagation();if(c.is(".disabled, :disabled"))return;g=e(c),h=g.hasClass("open");if(!h||h&&b.keyCode==27)return c.click();d=a("[role=menu] li:not(.divider):visible a",g);if(!d.length)return;i=d.index(d.filter(":focus")),b.keyCode==38&&i>0&&i--,b.keyCode==40&&i<d.length-1&&i++,~i||(i=0),d.eq(i).focus()}};var f=a.fn.dropdown;a.fn.dropdown=function(b){return this.each(function(){var d=a(this),e=d.data("dropdown");e||d.data("dropdown",e=new c(this)),typeof b=="string"&&e[b].call(d)})},a.fn.dropdown.Constructor=c,a.fn.dropdown.noConflict=function(){return a.fn.dropdown=f,this},a(document).on("click.dropdown.data-api touchstart.dropdown.data-api",d).on("click.dropdown touchstart.dropdown.data-api",".dropdown form",function(a){a.stopPropagation()}).on("touchstart.dropdown.data-api",".dropdown-menu",function(a){a.stopPropagation()}).on("click.dropdown.data-api touchstart.dropdown.data-api",b,c.prototype.toggle).on("keydown.dropdown.data-api touchstart.dropdown.data-api",b+", [role=menu]",c.prototype.keydown)}(window.jQuery),!function(a){function b(b,c){var d=a.proxy(this.process,this),e=a(b).is("body")?a(window):a(b),f;this.options=a.extend({},a.fn.scrollspy.defaults,c),this.$scrollElement=e.on("scroll.scroll-spy.data-api",d),this.selector=(this.options.target||(f=a(b).attr("href"))&&f.replace(/.*(?=#[^\s]+$)/,"")||"")+" .nav li > a",this.$body=a("body"),this.refresh(),this.process()}b.prototype={constructor:b,refresh:function(){var b=this,c;this.offsets=a([]),this.targets=a([]),c=this.$body.find(this.selector).map(function(){var c=a(this),d=c.data("target")||c.attr("href"),e=/^#\w/.test(d)&&a(d);return e&&e.length&&[[e.position().top+b.$scrollElement.scrollTop(),d]]||null}).sort(function(a,b){return a[0]-b[0]}).each(function(){b.offsets.push(this[0]),b.targets.push(this[1])})},process:function(){var a=this.$scrollElement.scrollTop()+this.options.offset,b=this.$scrollElement[0].scrollHeight||this.$body[0].scrollHeight,c=b-this.$scrollElement.height(),d=this.offsets,e=this.targets,f=this.activeTarget,g;if(a>=c)return f!=(g=e.last()[0])&&this.activate(g);for(g=d.length;g--;)f!=e[g]&&a>=d[g]&&(!d[g+1]||a<=d[g+1])&&this.activate(e[g])},activate:function(b){var c,d;this.activeTarget=b,a(this.selector).parent(".active").removeClass("active"),d=this.selector+'[data-target="'+b+'"],'+this.selector+'[href="'+b+'"]',c=a(d).parent("li").addClass("active"),c.parent(".dropdown-menu").length&&(c=c.closest("li.dropdown").addClass("active")),c.trigger("activate")}};var c=a.fn.scrollspy;a.fn.scrollspy=function(c){return this.each(function(){var d=a(this),e=d.data("scrollspy"),f=typeof c=="object"&&c;e||d.data("scrollspy",e=new b(this,f)),typeof c=="string"&&e[c]()})},a.fn.scrollspy.Constructor=b,a.fn.scrollspy.defaults={offset:10},a.fn.scrollspy.noConflict=function(){return a.fn.scrollspy=c,this},a(window).on("load",function(){a('[data-spy="scroll"]').each(function(){var b=a(this);b.scrollspy(b.data())})})}(window.jQuery),!function(a){var b=function(b){this.element=a(b)};b.prototype={constructor:b,show:function(){var b=this.element,c=b.closest("ul:not(.dropdown-menu)"),d=b.attr("data-target"),e,f,g;d||(d=b.attr("href"),d=d&&d.replace(/.*(?=#[^\s]*$)/,""));if(b.parent("li").hasClass("active"))return;e=c.find(".active:last a")[0],g=a.Event("show",{relatedTarget:e}),b.trigger(g);if(g.isDefaultPrevented())return;f=a(d),this.activate(b.parent("li"),c),this.activate(f,f.parent(),function(){b.trigger({type:"shown",relatedTarget:e})})},activate:function(b,c,d){function g(){e.removeClass("active").find("> .dropdown-menu > .active").removeClass("active"),b.addClass("active"),f?(b[0].offsetWidth,b.addClass("in")):b.removeClass("fade"),b.parent(".dropdown-menu")&&b.closest("li.dropdown").addClass("active"),d&&d()}var e=c.find("> .active"),f=d&&a.support.transition&&e.hasClass("fade");f?e.one(a.support.transition.end,g):g(),e.removeClass("in")}};var c=a.fn.tab;a.fn.tab=function(c){return this.each(function(){var d=a(this),e=d.data("tab");e||d.data("tab",e=new b(this)),typeof c=="string"&&e[c]()})},a.fn.tab.Constructor=b,a.fn.tab.noConflict=function(){return a.fn.tab=c,this},a(document).on("click.tab.data-api",'[data-toggle="tab"], [data-toggle="pill"]',function(b){b.preventDefault(),a(this).tab("show")})}(window.jQuery),!function(a){var b=function(a,b){this.init("tooltip",a,b)};b.prototype={constructor:b,init:function(b,c,d){var e,f;this.type=b,this.$element=a(c),this.options=this.getOptions(d),this.enabled=!0,this.options.trigger=="click"?this.$element.on("click."+this.type,this.options.selector,a.proxy(this.toggle,this)):this.options.trigger!="manual"&&(e=this.options.trigger=="hover"?"mouseenter":"focus",f=this.options.trigger=="hover"?"mouseleave":"blur",this.$element.on(e+"."+this.type,this.options.selector,a.proxy(this.enter,this)),this.$element.on(f+"."+this.type,this.options.selector,a.proxy(this.leave,this))),this.options.selector?this._options=a.extend({},this.options,{trigger:"manual",selector:""}):this.fixTitle()},getOptions:function(b){return b=a.extend({},a.fn[this.type].defaults,b,this.$element.data()),b.delay&&typeof b.delay=="number"&&(b.delay={show:b.delay,hide:b.delay}),b},enter:function(b){var c=a(b.currentTarget)[this.type](this._options).data(this.type);if(!c.options.delay||!c.options.delay.show)return c.show();clearTimeout(this.timeout),c.hoverState="in",this.timeout=setTimeout(function(){c.hoverState=="in"&&c.show()},c.options.delay.show)},leave:function(b){var c=a(b.currentTarget)[this.type](this._options).data(this.type);this.timeout&&clearTimeout(this.timeout);if(!c.options.delay||!c.options.delay.hide)return c.hide();c.hoverState="out",this.timeout=setTimeout(function(){c.hoverState=="out"&&c.hide()},c.options.delay.hide)},show:function(){var a,b,c,d,e,f,g;if(this.hasContent()&&this.enabled){a=this.tip(),this.setContent(),this.options.animation&&a.addClass("fade"),f=typeof this.options.placement=="function"?this.options.placement.call(this,a[0],this.$element[0]):this.options.placement,b=/in/.test(f),a.detach().css({top:0,left:0,display:"block"}).insertAfter(this.$element),c=this.getPosition(b),d=a[0].offsetWidth,e=a[0].offsetHeight;switch(b?f.split(" ")[1]:f){case"bottom":g={top:c.top+c.height,left:c.left+c.width/2-d/2};break;case"top":g={top:c.top-e,left:c.left+c.width/2-d/2};break;case"left":g={top:c.top+c.height/2-e/2,left:c.left-d};break;case"right":g={top:c.top+c.height/2-e/2,left:c.left+c.width}}a.offset(g).addClass(f).addClass("in")}},setContent:function(){var a=this.tip(),b=this.getTitle();a.find(".tooltip-inner")[this.options.html?"html":"text"](b),a.removeClass("fade in top bottom left right")},hide:function(){function d(){var b=setTimeout(function(){c.off(a.support.transition.end).detach()},500);c.one(a.support.transition.end,function(){clearTimeout(b),c.detach()})}var b=this,c=this.tip();return c.removeClass("in"),a.support.transition&&this.$tip.hasClass("fade")?d():c.detach(),this},fixTitle:function(){var a=this.$element;(a.attr("title")||typeof a.attr("data-original-title")!="string")&&a.attr("data-original-title",a.attr("title")||"").removeAttr("title")},hasContent:function(){return this.getTitle()},getPosition:function(b){return a.extend({},b?{top:0,left:0}:this.$element.offset(),{width:this.$element[0].offsetWidth,height:this.$element[0].offsetHeight})},getTitle:function(){var a,b=this.$element,c=this.options;return a=b.attr("data-original-title")||(typeof c.title=="function"?c.title.call(b[0]):c.title),a},tip:function(){return this.$tip=this.$tip||a(this.options.template)},validate:function(){this.$element[0].parentNode||(this.hide(),this.$element=null,this.options=null)},enable:function(){this.enabled=!0},disable:function(){this.enabled=!1},toggleEnabled:function(){this.enabled=!this.enabled},toggle:function(b){var c=a(b.currentTarget)[this.type](this._options).data(this.type);c[c.tip().hasClass("in")?"hide":"show"]()},destroy:function(){this.hide().$element.off("."+this.type).removeData(this.type)}};var c=a.fn.tooltip;a.fn.tooltip=function(c){return this.each(function(){var d=a(this),e=d.data("tooltip"),f=typeof c=="object"&&c;e||d.data("tooltip",e=new b(this,f)),typeof c=="string"&&e[c]()})},a.fn.tooltip.Constructor=b,a.fn.tooltip.defaults={animation:!0,placement:"top",selector:!1,template:'<div class="tooltip"><div class="tooltip-arrow"></div><div class="tooltip-inner"></div></div>',trigger:"hover",title:"",delay:0,html:!1},a.fn.tooltip.noConflict=function(){return a.fn.tooltip=c,this}}(window.jQuery),!function(a){var b=function(a,b){this.init("popover",a,b)};b.prototype=a.extend({},a.fn.tooltip.Constructor.prototype,{constructor:b,setContent:function(){var a=this.tip(),b=this.getTitle(),c=this.getContent();a.find(".popover-title")[this.options.html?"html":"text"](b),a.find(".popover-content")[this.options.html?"html":"text"](c),a.removeClass("fade top bottom left right in")},hasContent:function(){return this.getTitle()||this.getContent()},getContent:function(){var a,b=this.$element,c=this.options;return a=b.attr("data-content")||(typeof c.content=="function"?c.content.call(b[0]):c.content),a},tip:function(){return this.$tip||(this.$tip=a(this.options.template)),this.$tip},destroy:function(){this.hide().$element.off("."+this.type).removeData(this.type)}});var c=a.fn.popover;a.fn.popover=function(c){return this.each(function(){var d=a(this),e=d.data("popover"),f=typeof c=="object"&&c;e||d.data("popover",e=new b(this,f)),typeof c=="string"&&e[c]()})},a.fn.popover.Constructor=b,a.fn.popover.defaults=a.extend({},a.fn.tooltip.defaults,{placement:"right",trigger:"click",content:"",template:'<div class="popover"><div class="arrow"></div><div class="popover-inner"><h3 class="popover-title"></h3><div class="popover-content"></div></div></div>'}),a.fn.popover.noConflict=function(){return a.fn.popover=c,this}}(window.jQuery),!function(a){var b=function(b,c){this.options=a.extend({},a.fn.affix.defaults,c),this.$window=a(window).on("scroll.affix.data-api",a.proxy(this.checkPosition,this)).on("click.affix.data-api",a.proxy(function(){setTimeout(a.proxy(this.checkPosition,this),1)},this)),this.$element=a(b),this.checkPosition()};b.prototype.checkPosition=function(){if(!this.$element.is(":visible"))return;var b=a(document).height(),c=this.$window.scrollTop(),d=this.$element.offset(),e=this.options.offset,f=e.bottom,g=e.top,h="affix affix-top affix-bottom",i;typeof e!="object"&&(f=g=e),typeof g=="function"&&(g=e.top()),typeof f=="function"&&(f=e.bottom()),i=this.unpin!=null&&c+this.unpin<=d.top?!1:f!=null&&d.top+this.$element.height()>=b-f?"bottom":g!=null&&c<=g?"top":!1;if(this.affixed===i)return;this.affixed=i,this.unpin=i=="bottom"?d.top-c:null,this.$element.removeClass(h).addClass("affix"+(i?"-"+i:""))};var c=a.fn.affix;a.fn.affix=function(c){return this.each(function(){var d=a(this),e=d.data("affix"),f=typeof c=="object"&&c;e||d.data("affix",e=new b(this,f)),typeof c=="string"&&e[c]()})},a.fn.affix.Constructor=b,a.fn.affix.defaults={offset:0},a.fn.affix.noConflict=function(){return a.fn.affix=c,this},a(window).on("load",function(){a('[data-spy="affix"]').each(function(){var b=a(this),c=b.data();c.offset=c.offset||{},c.offsetBottom&&(c.offset.bottom=c.offsetBottom),c.offsetTop&&(c.offset.top=c.offsetTop),b.affix(c)})})}(window.jQuery),!function(a){var b='[data-dismiss="alert"]',c=function(c){a(c).on("click",b,this.close)};c.prototype.close=function(b){function f(){e.trigger("closed").remove()}var c=a(this),d=c.attr("data-target"),e;d||(d=c.attr("href"),d=d&&d.replace(/.*(?=#[^\s]*$)/,"")),e=a(d),b&&b.preventDefault(),e.length||(e=c.hasClass("alert")?c:c.parent()),e.trigger(b=a.Event("close"));if(b.isDefaultPrevented())return;e.removeClass("in"),a.support.transition&&e.hasClass("fade")?e.on(a.support.transition.end,f):f()};var d=a.fn.alert;a.fn.alert=function(b){return this.each(function(){var d=a(this),e=d.data("alert");e||d.data("alert",e=new c(this)),typeof b=="string"&&e[b].call(d)})},a.fn.alert.Constructor=c,a.fn.alert.noConflict=function(){return a.fn.alert=d,this},a(document).on("click.alert.data-api",b,c.prototype.close)}(window.jQuery),!function(a){var b=function(b,c){this.$element=a(b),this.options=a.extend({},a.fn.button.defaults,c)};b.prototype.setState=function(a){var b="disabled",c=this.$element,d=c.data(),e=c.is("input")?"val":"html";a+="Text",d.resetText||c.data("resetText",c[e]()),c[e](d[a]||this.options[a]),setTimeout(function(){a=="loadingText"?c.addClass(b).attr(b,b):c.removeClass(b).removeAttr(b)},0)},b.prototype.toggle=function(){var a=this.$element.closest('[data-toggle="buttons-radio"]');a&&a.find(".active").removeClass("active"),this.$element.toggleClass("active")};var c=a.fn.button;a.fn.button=function(c){return this.each(function(){var d=a(this),e=d.data("button"),f=typeof c=="object"&&c;e||d.data("button",e=new b(this,f)),c=="toggle"?e.toggle():c&&e.setState(c)})},a.fn.button.defaults={loadingText:"loading..."},a.fn.button.Constructor=b,a.fn.button.noConflict=function(){return a.fn.button=c,this},a(document).on("click.button.data-api","[data-toggle^=button]",function(b){var c=a(b.target);c.hasClass("btn")||(c=c.closest(".btn")),c.button("toggle")})}(window.jQuery),!function(a){var b=function(b,c){this.$element=a(b),this.options=a.extend({},a.fn.collapse.defaults,c),this.options.parent&&(this.$parent=a(this.options.parent)),this.options.toggle&&this.toggle()};b.prototype={constructor:b,dimension:function(){var a=this.$element.hasClass("width");return a?"width":"height"},show:function(){var b,c,d,e;if(this.transitioning)return;b=this.dimension(),c=a.camelCase(["scroll",b].join("-")),d=this.$parent&&this.$parent.find("> .accordion-group > .in");if(d&&d.length){e=d.data("collapse");if(e&&e.transitioning)return;d.collapse("hide"),e||d.data("collapse",null)}this.$element[b](0),this.transition("addClass",a.Event("show"),"shown"),a.support.transition&&this.$element[b](this.$element[0][c])},hide:function(){var b;if(this.transitioning)return;b=this.dimension(),this.reset(this.$element[b]()),this.transition("removeClass",a.Event("hide"),"hidden"),this.$element[b](0)},reset:function(a){var b=this.dimension();return this.$element.removeClass("collapse")[b](a||"auto")[0].offsetWidth,this.$element[a!==null?"addClass":"removeClass"]("collapse"),this},transition:function(b,c,d){var e=this,f=function(){c.type=="show"&&e.reset(),e.transitioning=0,e.$element.trigger(d)};this.$element.trigger(c);if(c.isDefaultPrevented())return;this.transitioning=1,this.$element[b]("in"),a.support.transition&&this.$element.hasClass("collapse")?this.$element.one(a.support.transition.end,f):f()},toggle:function(){this[this.$element.hasClass("in")?"hide":"show"]()}};var c=a.fn.collapse;a.fn.collapse=function(c){return this.each(function(){var d=a(this),e=d.data("collapse"),f=typeof c=="object"&&c;e||d.data("collapse",e=new b(this,f)),typeof c=="string"&&e[c]()})},a.fn.collapse.defaults={toggle:!0},a.fn.collapse.Constructor=b,a.fn.collapse.noConflict=function(){return a.fn.collapse=c,this},a(document).on("click.collapse.data-api","[data-toggle=collapse]",function(b){var c=a(this),d,e=c.attr("data-target")||b.preventDefault()||(d=c.attr("href"))&&d.replace(/.*(?=#[^\s]+$)/,""),f=a(e).data("collapse")?"toggle":c.data();c[a(e).hasClass("in")?"addClass":"removeClass"]("collapsed"),a(e).collapse(f)})}(window.jQuery),!function(a){var b=function(b,c){this.$element=a(b),this.options=c,this.options.pause=="hover"&&this.$element.on("mouseenter",a.proxy(this.pause,this)).on("mouseleave",a.proxy(this.cycle,this))};b.prototype={cycle:function(b){return b||(this.paused=!1),this.options.interval&&!this.paused&&(this.interval=setInterval(a.proxy(this.next,this),this.options.interval)),this},to:function(b){var c=this.$element.find(".item.active"),d=c.parent().children(),e=d.index(c),f=this;if(b>d.length-1||b<0)return;return this.sliding?this.$element.one("slid",function(){f.to(b)}):e==b?this.pause().cycle():this.slide(b>e?"next":"prev",a(d[b]))},pause:function(b){return b||(this.paused=!0),this.$element.find(".next, .prev").length&&a.support.transition.end&&(this.$element.trigger(a.support.transition.end),this.cycle()),clearInterval(this.interval),this.interval=null,this},next:function(){if(this.sliding)return;return this.slide("next")},prev:function(){if(this.sliding)return;return this.slide("prev")},slide:function(b,c){var d=this.$element.find(".item.active"),e=c||d[b](),f=this.interval,g=b=="next"?"left":"right",h=b=="next"?"first":"last",i=this,j;this.sliding=!0,f&&this.pause(),e=e.length?e:this.$element.find(".item")[h](),j=a.Event("slide",{relatedTarget:e[0]});if(e.hasClass("active"))return;if(a.support.transition&&this.$element.hasClass("slide")){this.$element.trigger(j);if(j.isDefaultPrevented())return;e.addClass(b),e[0].offsetWidth,d.addClass(g),e.addClass(g),this.$element.one(a.support.transition.end,function(){e.removeClass([b,g].join(" ")).addClass("active"),d.removeClass(["active",g].join(" ")),i.sliding=!1,setTimeout(function(){i.$element.trigger("slid")},0)})}else{this.$element.trigger(j);if(j.isDefaultPrevented())return;d.removeClass("active"),e.addClass("active"),this.sliding=!1,this.$element.trigger("slid")}return f&&this.cycle(),this}};var c=a.fn.carousel;a.fn.carousel=function(c){return this.each(function(){var d=a(this),e=d.data("carousel"),f=a.extend({},a.fn.carousel.defaults,typeof c=="object"&&c),g=typeof c=="string"?c:f.slide;e||d.data("carousel",e=new b(this,f)),typeof c=="number"?e.to(c):g?e[g]():f.interval&&e.cycle()})},a.fn.carousel.defaults={interval:5e3,pause:"hover"},a.fn.carousel.Constructor=b,a.fn.carousel.noConflict=function(){return a.fn.carousel=c,this},a(document).on("click.carousel.data-api","[data-slide]",function(b){var c=a(this),d,e=a(c.attr("data-target")||(d=c.attr("href"))&&d.replace(/.*(?=#[^\s]+$)/,"")),f=a.extend({},e.data(),c.data());e.carousel(f),b.preventDefault()})}(window.jQuery),!function(a){var b=function(b,c){this.$element=a(b),this.options=a.extend({},a.fn.typeahead.defaults,c),this.matcher=this.options.matcher||this.matcher,this.sorter=this.options.sorter||this.sorter,this.highlighter=this.options.highlighter||this.highlighter,this.updater=this.options.updater||this.updater,this.source=this.options.source,this.$menu=a(this.options.menu),this.shown=!1,this.listen()};b.prototype={constructor:b,select:function(){var a=this.$menu.find(".active").attr("data-value");return this.$element.val(this.updater(a)).change(),this.hide()},updater:function(a){return a},show:function(){var b=a.extend({},this.$element.position(),{height:this.$element[0].offsetHeight});return this.$menu.insertAfter(this.$element).css({top:b.top+b.height,left:b.left}).show(),this.shown=!0,this},hide:function(){return this.$menu.hide(),this.shown=!1,this},lookup:function(b){var c;return this.query=this.$element.val(),!this.query||this.query.length<this.options.minLength?this.shown?this.hide():this:(c=a.isFunction(this.source)?this.source(this.query,a.proxy(this.process,this)):this.source,c?this.process(c):this)},process:function(b){var c=this;return b=a.grep(b,function(a){return c.matcher(a)}),b=this.sorter(b),b.length?this.render(b.slice(0,this.options.items)).show():this.shown?this.hide():this},matcher:function(a){return~a.toLowerCase().indexOf(this.query.toLowerCase())},sorter:function(a){var b=[],c=[],d=[],e;while(e=a.shift())e.toLowerCase().indexOf(this.query.toLowerCase())?~e.indexOf(this.query)?c.push(e):d.push(e):b.push(e);return b.concat(c,d)},highlighter:function(a){var b=this.query.replace(/[\-\[\]{}()*+?.,\\\^$|#\s]/g,"\\$&");return a.replace(new RegExp("("+b+")","ig"),function(a,b){return"<strong>"+b+"</strong>"})},render:function(b){var c=this;return b=a(b).map(function(b,d){return b=a(c.options.item).attr("data-value",d),b.find("a").html(c.highlighter(d)),b[0]}),b.first().addClass("active"),this.$menu.html(b),this},next:function(b){var c=this.$menu.find(".active").removeClass("active"),d=c.next();d.length||(d=a(this.$menu.find("li")[0])),d.addClass("active")},prev:function(a){var b=this.$menu.find(".active").removeClass("active"),c=b.prev();c.length||(c=this.$menu.find("li").last()),c.addClass("active")},listen:function(){this.$element.on("blur",a.proxy(this.blur,this)).on("keypress",a.proxy(this.keypress,this)).on("keyup",a.proxy(this.keyup,this)),this.eventSupported("keydown")&&this.$element.on("keydown",a.proxy(this.keydown,this)),this.$menu.on("click",a.proxy(this.click,this)).on("mouseenter","li",a.proxy(this.mouseenter,this))},eventSupported:function(a){var b=a in this.$element;return b||(this.$element.setAttribute(a,"return;"),b=typeof this.$element[a]=="function"),b},move:function(a){if(!this.shown)return;switch(a.keyCode){case 9:case 13:case 27:a.preventDefault();break;case 38:a.preventDefault(),this.prev();break;case 40:a.preventDefault(),this.next()}a.stopPropagation()},keydown:function(b){this.suppressKeyPressRepeat=~a.inArray(b.keyCode,[40,38,9,13,27]),this.move(b)},keypress:function(a){if(this.suppressKeyPressRepeat)return;this.move(a)},keyup:function(a){switch(a.keyCode){case 40:case 38:case 16:case 17:case 18:break;case 9:case 13:if(!this.shown)return;this.select();break;case 27:if(!this.shown)return;this.hide();break;default:this.lookup()}a.stopPropagation(),a.preventDefault()},blur:function(a){var b=this;setTimeout(function(){b.hide()},150)},click:function(a){a.stopPropagation(),a.preventDefault(),this.select()},mouseenter:function(b){this.$menu.find(".active").removeClass("active"),a(b.currentTarget).addClass("active")}};var c=a.fn.typeahead;a.fn.typeahead=function(c){return this.each(function(){var d=a(this),e=d.data("typeahead"),f=typeof c=="object"&&c;e||d.data("typeahead",e=new b(this,f)),typeof c=="string"&&e[c]()})},a.fn.typeahead.defaults={source:[],items:8,menu:'<ul class="typeahead dropdown-menu"></ul>',item:'<li><a href="#"></a></li>',minLength:1},a.fn.typeahead.Constructor=b,a.fn.typeahead.noConflict=function(){return a.fn.typeahead=c,this},a(document).on("focus.typeahead.data-api",'[data-provide="typeahead"]',function(b){var c=a(this);if(c.data("typeahead"))return;b.preventDefault(),c.typeahead(c.data())})}(window.jQuery) |
| URL | http://zero.webappsecurity.com/resources/js/jquery-1.8.2.min.js |
| Method | GET |
| Parameter | |
| Attack | Origin: http://4qCMHsQq.com |
| Evidence | Access-Control-Allow-Origin: * |
| Request Header - size: 335 bytes. |
GET http://zero.webappsecurity.com/resources/js/jquery-1.8.2.min.js HTTP/1.1
Host: zero.webappsecurity.com User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0 Pragma: no-cache Cache-Control: no-cache Referer: http://zero.webappsecurity.com Origin: http://4qCMHsQq.com Content-Length: 0 |
| Request Body - size: 0 bytes. |
|
| Response Header - size: 361 bytes. |
HTTP/1.1 200 OK
Date: Mon, 14 Mar 2022 07:23:17 GMT Server: Apache-Coyote/1.1 Access-Control-Allow-Origin: * Accept-Ranges: bytes ETag: W/"93436-1358437290000" Last-Modified: Thu, 17 Jan 2013 15:41:30 GMT Cache-Control: max-age=2678400 Expires: Thu, 14 Apr 2022 07:23:18 GMT Content-Type: application/javascript;charset=UTF-8 Content-Length: 93436 |
| Response Body - size: 93,436 bytes. |
/*! jQuery v1.8.2 jquery.com | jquery.org/license */
(function(a,b){function G(a){var b=F[a]={};return p.each(a.split(s),function(a,c){b[c]=!0}),b}function J(a,c,d){if(d===b&&a.nodeType===1){var e="data-"+c.replace(I,"-$1").toLowerCase();d=a.getAttribute(e);if(typeof d=="string"){try{d=d==="true"?!0:d==="false"?!1:d==="null"?null:+d+""===d?+d:H.test(d)?p.parseJSON(d):d}catch(f){}p.data(a,c,d)}else d=b}return d}function K(a){var b;for(b in a){if(b==="data"&&p.isEmptyObject(a[b]))continue;if(b!=="toJSON")return!1}return!0}function ba(){return!1}function bb(){return!0}function bh(a){return!a||!a.parentNode||a.parentNode.nodeType===11}function bi(a,b){do a=a[b];while(a&&a.nodeType!==1);return a}function bj(a,b,c){b=b||0;if(p.isFunction(b))return p.grep(a,function(a,d){var e=!!b.call(a,d,a);return e===c});if(b.nodeType)return p.grep(a,function(a,d){return a===b===c});if(typeof b=="string"){var d=p.grep(a,function(a){return a.nodeType===1});if(be.test(b))return p.filter(b,d,!c);b=p.filter(b,d)}return p.grep(a,function(a,d){return p.inArray(a,b)>=0===c})}function bk(a){var b=bl.split("|"),c=a.createDocumentFragment();if(c.createElement)while(b.length)c.createElement(b.pop());return c}function bC(a,b){return a.getElementsByTagName(b)[0]||a.appendChild(a.ownerDocument.createElement(b))}function bD(a,b){if(b.nodeType!==1||!p.hasData(a))return;var c,d,e,f=p._data(a),g=p._data(b,f),h=f.events;if(h){delete g.handle,g.events={};for(c in h)for(d=0,e=h[c].length;d<e;d++)p.event.add(b,c,h[c][d])}g.data&&(g.data=p.extend({},g.data))}function bE(a,b){var c;if(b.nodeType!==1)return;b.clearAttributes&&b.clearAttributes(),b.mergeAttributes&&b.mergeAttributes(a),c=b.nodeName.toLowerCase(),c==="object"?(b.parentNode&&(b.outerHTML=a.outerHTML),p.support.html5Clone&&a.innerHTML&&!p.trim(b.innerHTML)&&(b.innerHTML=a.innerHTML)):c==="input"&&bv.test(a.type)?(b.defaultChecked=b.checked=a.checked,b.value!==a.value&&(b.value=a.value)):c==="option"?b.selected=a.defaultSelected:c==="input"||c==="textarea"?b.defaultValue=a.defaultValue:c==="script"&&b.text!==a.text&&(b.text=a.text),b.removeAttribute(p.expando)}function bF(a){return typeof a.getElementsByTagName!="undefined"?a.getElementsByTagName("*"):typeof a.querySelectorAll!="undefined"?a.querySelectorAll("*"):[]}function bG(a){bv.test(a.type)&&(a.defaultChecked=a.checked)}function bY(a,b){if(b in a)return b;var c=b.charAt(0).toUpperCase()+b.slice(1),d=b,e=bW.length;while(e--){b=bW[e]+c;if(b in a)return b}return d}function bZ(a,b){return a=b||a,p.css(a,"display")==="none"||!p.contains(a.ownerDocument,a)}function b$(a,b){var c,d,e=[],f=0,g=a.length;for(;f<g;f++){c=a[f];if(!c.style)continue;e[f]=p._data(c,"olddisplay"),b?(!e[f]&&c.style.display==="none"&&(c.style.display=""),c.style.display===""&&bZ(c)&&(e[f]=p._data(c,"olddisplay",cc(c.nodeName)))):(d=bH(c,"display"),!e[f]&&d!=="none"&&p._data(c,"olddisplay",d))}for(f=0;f<g;f++){c=a[f];if(!c.style)continue;if(!b||c.style.display==="none"||c.style.display==="")c.style.display=b?e[f]||"":"none"}return a}function b_(a,b,c){var d=bP.exec(b);return d?Math.max(0,d[1]-(c||0))+(d[2]||"px"):b}function ca(a,b,c,d){var e=c===(d?"border":"content")?4:b==="width"?1:0,f=0;for(;e<4;e+=2)c==="margin"&&(f+=p.css(a,c+bV[e],!0)),d?(c==="content"&&(f-=parseFloat(bH(a,"padding"+bV[e]))||0),c!=="margin"&&(f-=parseFloat(bH(a,"border"+bV[e]+"Width"))||0)):(f+=parseFloat(bH(a,"padding"+bV[e]))||0,c!=="padding"&&(f+=parseFloat(bH(a,"border"+bV[e]+"Width"))||0));return f}function cb(a,b,c){var d=b==="width"?a.offsetWidth:a.offsetHeight,e=!0,f=p.support.boxSizing&&p.css(a,"boxSizing")==="border-box";if(d<=0||d==null){d=bH(a,b);if(d<0||d==null)d=a.style[b];if(bQ.test(d))return d;e=f&&(p.support.boxSizingReliable||d===a.style[b]),d=parseFloat(d)||0}return d+ca(a,b,c||(f?"border":"content"),e)+"px"}function cc(a){if(bS[a])return bS[a];var b=p("<"+a+">").appendTo(e.body),c=b.css("display");b.remove();if(c==="none"||c===""){bI=e.body.appendChild(bI||p.extend(e.createElement("iframe"),{frameBorder:0,width:0,height:0}));if(!bJ||!bI.createElement)bJ=(bI.contentWindow||bI.contentDocument).document,bJ.write("<!doctype html><html><body>"),bJ.close();b=bJ.body.appendChild(bJ.createElement(a)),c=bH(b,"display"),e.body.removeChild(bI)}return bS[a]=c,c}function ci(a,b,c,d){var e;if(p.isArray(b))p.each(b,function(b,e){c||ce.test(a)?d(a,e):ci(a+"["+(typeof e=="object"?b:"")+"]",e,c,d)});else if(!c&&p.type(b)==="object")for(e in b)ci(a+"["+e+"]",b[e],c,d);else d(a,b)}function cz(a){return function(b,c){typeof b!="string"&&(c=b,b="*");var d,e,f,g=b.toLowerCase().split(s),h=0,i=g.length;if(p.isFunction(c))for(;h<i;h++)d=g[h],f=/^\+/.test(d),f&&(d=d.substr(1)||"*"),e=a[d]=a[d]||[],e[f?"unshift":"push"](c)}}function cA(a,c,d,e,f,g){f=f||c.dataTypes[0],g=g||{},g[f]=!0;var h,i=a[f],j=0,k=i?i.length:0,l=a===cv;for(;j<k&&(l||!h);j++)h=i[j](c,d,e),typeof h=="string"&&(!l||g[h]?h=b:(c.dataTypes.unshift(h),h=cA(a,c,d,e,h,g)));return(l||!h)&&!g["*"]&&(h=cA(a,c,d,e,"*",g)),h}function cB(a,c){var d,e,f=p.ajaxSettings.flatOptions||{};for(d in c)c[d]!==b&&((f[d]?a:e||(e={}))[d]=c[d]);e&&p.extend(!0,a,e)}function cC(a,c,d){var e,f,g,h,i=a.contents,j=a.dataTypes,k=a.responseFields;for(f in k)f in d&&(c[k[f]]=d[f]);while(j[0]==="*")j.shift(),e===b&&(e=a.mimeType||c.getResponseHeader("content-type"));if(e)for(f in i)if(i[f]&&i[f].test(e)){j.unshift(f);break}if(j[0]in d)g=j[0];else{for(f in d){if(!j[0]||a.converters[f+" "+j[0]]){g=f;break}h||(h=f)}g=g||h}if(g)return g!==j[0]&&j.unshift(g),d[g]}function cD(a,b){var c,d,e,f,g=a.dataTypes.slice(),h=g[0],i={},j=0;a.dataFilter&&(b=a.dataFilter(b,a.dataType));if(g[1])for(c in a.converters)i[c.toLowerCase()]=a.converters[c];for(;e=g[++j];)if(e!=="*"){if(h!=="*"&&h!==e){c=i[h+" "+e]||i["* "+e];if(!c)for(d in i){f=d.split(" ");if(f[1]===e){c=i[h+" "+f[0]]||i["* "+f[0]];if(c){c===!0?c=i[d]:i[d]!==!0&&(e=f[0],g.splice(j--,0,e));break}}}if(c!==!0)if(c&&a["throws"])b=c(b);else try{b=c(b)}catch(k){return{state:"parsererror",error:c?k:"No conversion from "+h+" to "+e}}}h=e}return{state:"success",data:b}}function cL(){try{return new a.XMLHttpRequest}catch(b){}}function cM(){try{return new a.ActiveXObject("Microsoft.XMLHTTP")}catch(b){}}function cU(){return setTimeout(function(){cN=b},0),cN=p.now()}function cV(a,b){p.each(b,function(b,c){var d=(cT[b]||[]).concat(cT["*"]),e=0,f=d.length;for(;e<f;e++)if(d[e].call(a,b,c))return})}function cW(a,b,c){var d,e=0,f=0,g=cS.length,h=p.Deferred().always(function(){delete i.elem}),i=function(){var b=cN||cU(),c=Math.max(0,j.startTime+j.duration-b),d=1-(c/j.duration||0),e=0,f=j.tweens.length;for(;e<f;e++)j.tweens[e].run(d);return h.notifyWith(a,[j,d,c]),d<1&&f?c:(h.resolveWith(a,[j]),!1)},j=h.promise({elem:a,props:p.extend({},b),opts:p.extend(!0,{specialEasing:{}},c),originalProperties:b,originalOptions:c,startTime:cN||cU(),duration:c.duration,tweens:[],createTween:function(b,c,d){var e=p.Tween(a,j.opts,b,c,j.opts.specialEasing[b]||j.opts.easing);return j.tweens.push(e),e},stop:function(b){var c=0,d=b?j.tweens.length:0;for(;c<d;c++)j.tweens[c].run(1);return b?h.resolveWith(a,[j,b]):h.rejectWith(a,[j,b]),this}}),k=j.props;cX(k,j.opts.specialEasing);for(;e<g;e++){d=cS[e].call(j,a,k,j.opts);if(d)return d}return cV(j,k),p.isFunction(j.opts.start)&&j.opts.start.call(a,j),p.fx.timer(p.extend(i,{anim:j,queue:j.opts.queue,elem:a})),j.progress(j.opts.progress).done(j.opts.done,j.opts.complete).fail(j.opts.fail).always(j.opts.always)}function cX(a,b){var c,d,e,f,g;for(c in a){d=p.camelCase(c),e=b[d],f=a[c],p.isArray(f)&&(e=f[1],f=a[c]=f[0]),c!==d&&(a[d]=f,delete a[c]),g=p.cssHooks[d];if(g&&"expand"in g){f=g.expand(f),delete a[d];for(c in f)c in a||(a[c]=f[c],b[c]=e)}else b[d]=e}}function cY(a,b,c){var d,e,f,g,h,i,j,k,l=this,m=a.style,n={},o=[],q=a.nodeType&&bZ(a);c.queue||(j=p._queueHooks(a,"fx"),j.unqueued==null&&(j.unqueued=0,k=j.empty.fire,j.empty.fire=function(){j.unqueued||k()}),j.unqueued++,l.always(function(){l.always(function(){j.unqueued--,p.queue(a,"fx").length||j.empty.fire()})})),a.nodeType===1&&("height"in b||"width"in b)&&(c.overflow=[m.overflow,m.overflowX,m.overflowY],p.css(a,"display")==="inline"&&p.css(a,"float")==="none"&&(!p.support.inlineBlockNeedsLayout||cc(a.nodeName)==="inline"?m.display="inline-block":m.zoom=1)),c.overflow&&(m.overflow="hidden",p.support.shrinkWrapBlocks||l.done(function(){m.overflow=c.overflow[0],m.overflowX=c.overflow[1],m.overflowY=c.overflow[2]}));for(d in b){f=b[d];if(cP.exec(f)){delete b[d];if(f===(q?"hide":"show"))continue;o.push(d)}}g=o.length;if(g){h=p._data(a,"fxshow")||p._data(a,"fxshow",{}),q?p(a).show():l.done(function(){p(a).hide()}),l.done(function(){var b;p.removeData(a,"fxshow",!0);for(b in n)p.style(a,b,n[b])});for(d=0;d<g;d++)e=o[d],i=l.createTween(e,q?h[e]:0),n[e]=h[e]||p.style(a,e),e in h||(h[e]=i.start,q&&(i.end=i.start,i.start=e==="width"||e==="height"?1:0))}}function cZ(a,b,c,d,e){return new cZ.prototype.init(a,b,c,d,e)}function c$(a,b){var c,d={height:a},e=0;b=b?1:0;for(;e<4;e+=2-b)c=bV[e],d["margin"+c]=d["padding"+c]=a;return b&&(d.opacity=d.width=a),d}function da(a){return p.isWindow(a)?a:a.nodeType===9?a.defaultView||a.parentWindow:!1}var c,d,e=a.document,f=a.location,g=a.navigator,h=a.jQuery,i=a.$,j=Array.prototype.push,k=Array.prototype.slice,l=Array.prototype.indexOf,m=Object.prototype.toString,n=Object.prototype.hasOwnProperty,o=String.prototype.trim,p=function(a,b){return new p.fn.init(a,b,c)},q=/[\-+]?(?:\d*\.|)\d+(?:[eE][\-+]?\d+|)/.source,r=/\S/,s=/\s+/,t=/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,u=/^(?:[^#<]*(<[\w\W]+>)[^>]*$|#([\w\-]*)$)/,v=/^<(\w+)\s*\/?>(?:<\/\1>|)$/,w=/^[\],:{}\s]*$/,x=/(?:^|:|,)(?:\s*\[)+/g,y=/\\(?:["\\\/bfnrt]|u[\da-fA-F]{4})/g,z=/"[^"\\\r\n]*"|true|false|null|-?(?:\d\d*\.|)\d+(?:[eE][\-+]?\d+|)/g,A=/^-ms-/,B=/-([\da-z])/gi,C=function(a,b){return(b+"").toUpperCase()},D=function(){e.addEventListener?(e.removeEventListener("DOMContentLoaded",D,!1),p.ready()):e.readyState==="complete"&&(e.detachEvent("onreadystatechange",D),p.ready())},E={};p.fn=p.prototype={constructor:p,init:function(a,c,d){var f,g,h,i;if(!a)return this;if(a.nodeType)return this.context=this[0]=a,this.length=1,this;if(typeof a=="string"){a.charAt(0)==="<"&&a.charAt(a.length-1)===">"&&a.length>=3?f=[null,a,null]:f=u.exec(a);if(f&&(f[1]||!c)){if(f[1])return c=c instanceof p?c[0]:c,i=c&&c.nodeType?c.ownerDocument||c:e,a=p.parseHTML(f[1],i,!0),v.test(f[1])&&p.isPlainObject(c)&&this.attr.call(a,c,!0),p.merge(this,a);g=e.getElementById(f[2]);if(g&&g.parentNode){if(g.id!==f[2])return d.find(a);this.length=1,this[0]=g}return this.context=e,this.selector=a,this}return!c||c.jquery?(c||d).find(a):this.constructor(c).find(a)}return p.isFunction(a)?d.ready(a):(a.selector!==b&&(this.selector=a.selector,this.context=a.context),p.makeArray(a,this))},selector:"",jquery:"1.8.2",length:0,size:function(){return this.length},toArray:function(){return k.call(this)},get:function(a){return a==null?this.toArray():a<0?this[this.length+a]:this[a]},pushStack:function(a,b,c){var d=p.merge(this.constructor(),a);return d.prevObject=this,d.context=this.context,b==="find"?d.selector=this.selector+(this.selector?" ":"")+c:b&&(d.selector=this.selector+"."+b+"("+c+")"),d},each:function(a,b){return p.each(this,a,b)},ready:function(a){return p.ready.promise().done(a),this},eq:function(a){return a=+a,a===-1?this.slice(a):this.slice(a,a+1)},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},slice:function(){return this.pushStack(k.apply(this,arguments),"slice",k.call(arguments).join(","))},map:function(a){return this.pushStack(p.map(this,function(b,c){return a.call(b,c,b)}))},end:function(){return this.prevObject||this.constructor(null)},push:j,sort:[].sort,splice:[].splice},p.fn.init.prototype=p.fn,p.extend=p.fn.extend=function(){var a,c,d,e,f,g,h=arguments[0]||{},i=1,j=arguments.length,k=!1;typeof h=="boolean"&&(k=h,h=arguments[1]||{},i=2),typeof h!="object"&&!p.isFunction(h)&&(h={}),j===i&&(h=this,--i);for(;i<j;i++)if((a=arguments[i])!=null)for(c in a){d=h[c],e=a[c];if(h===e)continue;k&&e&&(p.isPlainObject(e)||(f=p.isArray(e)))?(f?(f=!1,g=d&&p.isArray(d)?d:[]):g=d&&p.isPlainObject(d)?d:{},h[c]=p.extend(k,g,e)):e!==b&&(h[c]=e)}return h},p.extend({noConflict:function(b){return a.$===p&&(a.$=i),b&&a.jQuery===p&&(a.jQuery=h),p},isReady:!1,readyWait:1,holdReady:function(a){a?p.readyWait++:p.ready(!0)},ready:function(a){if(a===!0?--p.readyWait:p.isReady)return;if(!e.body)return setTimeout(p.ready,1);p.isReady=!0;if(a!==!0&&--p.readyWait>0)return;d.resolveWith(e,[p]),p.fn.trigger&&p(e).trigger("ready").off("ready")},isFunction:function(a){return p.type(a)==="function"},isArray:Array.isArray||function(a){return p.type(a)==="array"},isWindow:function(a){return a!=null&&a==a.window},isNumeric:function(a){return!isNaN(parseFloat(a))&&isFinite(a)},type:function(a){return a==null?String(a):E[m.call(a)]||"object"},isPlainObject:function(a){if(!a||p.type(a)!=="object"||a.nodeType||p.isWindow(a))return!1;try{if(a.constructor&&!n.call(a,"constructor")&&!n.call(a.constructor.prototype,"isPrototypeOf"))return!1}catch(c){return!1}var d;for(d in a);return d===b||n.call(a,d)},isEmptyObject:function(a){var b;for(b in a)return!1;return!0},error:function(a){throw new Error(a)},parseHTML:function(a,b,c){var d;return!a||typeof a!="string"?null:(typeof b=="boolean"&&(c=b,b=0),b=b||e,(d=v.exec(a))?[b.createElement(d[1])]:(d=p.buildFragment([a],b,c?null:[]),p.merge([],(d.cacheable?p.clone(d.fragment):d.fragment).childNodes)))},parseJSON:function(b){if(!b||typeof b!="string")return null;b=p.trim(b);if(a.JSON&&a.JSON.parse)return a.JSON.parse(b);if(w.test(b.replace(y,"@").replace(z,"]").replace(x,"")))return(new Function("return "+b))();p.error("Invalid JSON: "+b)},parseXML:function(c){var d,e;if(!c||typeof c!="string")return null;try{a.DOMParser?(e=new DOMParser,d=e.parseFromString(c,"text/xml")):(d=new ActiveXObject("Microsoft.XMLDOM"),d.async="false",d.loadXML(c))}catch(f){d=b}return(!d||!d.documentElement||d.getElementsByTagName("parsererror").length)&&p.error("Invalid XML: "+c),d},noop:function(){},globalEval:function(b){b&&r.test(b)&&(a.execScript||function(b){a.eval.call(a,b)})(b)},camelCase:function(a){return a.replace(A,"ms-").replace(B,C)},nodeName:function(a,b){return a.nodeName&&a.nodeName.toLowerCase()===b.toLowerCase()},each:function(a,c,d){var e,f=0,g=a.length,h=g===b||p.isFunction(a);if(d){if(h){for(e in a)if(c.apply(a[e],d)===!1)break}else for(;f<g;)if(c.apply(a[f++],d)===!1)break}else if(h){for(e in a)if(c.call(a[e],e,a[e])===!1)break}else for(;f<g;)if(c.call(a[f],f,a[f++])===!1)break;return a},trim:o&&!o.call(" ")?function(a){return a==null?"":o.call(a)}:function(a){return a==null?"":(a+"").replace(t,"")},makeArray:function(a,b){var c,d=b||[];return a!=null&&(c=p.type(a),a.length==null||c==="string"||c==="function"||c==="regexp"||p.isWindow(a)?j.call(d,a):p.merge(d,a)),d},inArray:function(a,b,c){var d;if(b){if(l)return l.call(b,a,c);d=b.length,c=c?c<0?Math.max(0,d+c):c:0;for(;c<d;c++)if(c in b&&b[c]===a)return c}return-1},merge:function(a,c){var d=c.length,e=a.length,f=0;if(typeof d=="number")for(;f<d;f++)a[e++]=c[f];else while(c[f]!==b)a[e++]=c[f++];return a.length=e,a},grep:function(a,b,c){var d,e=[],f=0,g=a.length;c=!!c;for(;f<g;f++)d=!!b(a[f],f),c!==d&&e.push(a[f]);return e},map:function(a,c,d){var e,f,g=[],h=0,i=a.length,j=a instanceof p||i!==b&&typeof i=="number"&&(i>0&&a[0]&&a[i-1]||i===0||p.isArray(a));if(j)for(;h<i;h++)e=c(a[h],h,d),e!=null&&(g[g.length]=e);else for(f in a)e=c(a[f],f,d),e!=null&&(g[g.length]=e);return g.concat.apply([],g)},guid:1,proxy:function(a,c){var d,e,f;return typeof c=="string"&&(d=a[c],c=a,a=d),p.isFunction(a)?(e=k.call(arguments,2),f=function(){return a.apply(c,e.concat(k.call(arguments)))},f.guid=a.guid=a.guid||p.guid++,f):b},access:function(a,c,d,e,f,g,h){var i,j=d==null,k=0,l=a.length;if(d&&typeof d=="object"){for(k in d)p.access(a,c,k,d[k],1,g,e);f=1}else if(e!==b){i=h===b&&p.isFunction(e),j&&(i?(i=c,c=function(a,b,c){return i.call(p(a),c)}):(c.call(a,e),c=null));if(c)for(;k<l;k++)c(a[k],d,i?e.call(a[k],k,c(a[k],d)):e,h);f=1}return f?a:j?c.call(a):l?c(a[0],d):g},now:function(){return(new Date).getTime()}}),p.ready.promise=function(b){if(!d){d=p.Deferred();if(e.readyState==="complete")setTimeout(p.ready,1);else if(e.addEventListener)e.addEventListener("DOMContentLoaded",D,!1),a.addEventListener("load",p.ready,!1);else{e.attachEvent("onreadystatechange",D),a.attachEvent("onload",p.ready);var c=!1;try{c=a.frameElement==null&&e.documentElement}catch(f){}c&&c.doScroll&&function g(){if(!p.isReady){try{c.doScroll("left")}catch(a){return setTimeout(g,50)}p.ready()}}()}}return d.promise(b)},p.each("Boolean Number String Function Array Date RegExp Object".split(" "),function(a,b){E["[object "+b+"]"]=b.toLowerCase()}),c=p(e);var F={};p.Callbacks=function(a){a=typeof a=="string"?F[a]||G(a):p.extend({},a);var c,d,e,f,g,h,i=[],j=!a.once&&[],k=function(b){c=a.memory&&b,d=!0,h=f||0,f=0,g=i.length,e=!0;for(;i&&h<g;h++)if(i[h].apply(b[0],b[1])===!1&&a.stopOnFalse){c=!1;break}e=!1,i&&(j?j.length&&k(j.shift()):c?i=[]:l.disable())},l={add:function(){if(i){var b=i.length;(function d(b){p.each(b,function(b,c){var e=p.type(c);e==="function"&&(!a.unique||!l.has(c))?i.push(c):c&&c.length&&e!=="string"&&d(c)})})(arguments),e?g=i.length:c&&(f=b,k(c))}return this},remove:function(){return i&&p.each(arguments,function(a,b){var c;while((c=p.inArray(b,i,c))>-1)i.splice(c,1),e&&(c<=g&&g--,c<=h&&h--)}),this},has:function(a){return p.inArray(a,i)>-1},empty:function(){return i=[],this},disable:function(){return i=j=c=b,this},disabled:function(){return!i},lock:function(){return j=b,c||l.disable(),this},locked:function(){return!j},fireWith:function(a,b){return b=b||[],b=[a,b.slice?b.slice():b],i&&(!d||j)&&(e?j.push(b):k(b)),this},fire:function(){return l.fireWith(this,arguments),this},fired:function(){return!!d}};return l},p.extend({Deferred:function(a){var b=[["resolve","done",p.Callbacks("once memory"),"resolved"],["reject","fail",p.Callbacks("once memory"),"rejected"],["notify","progress",p.Callbacks("memory")]],c="pending",d={state:function(){return c},always:function(){return e.done(arguments).fail(arguments),this},then:function(){var a=arguments;return p.Deferred(function(c){p.each(b,function(b,d){var f=d[0],g=a[b];e[d[1]](p.isFunction(g)?function(){var a=g.apply(this,arguments);a&&p.isFunction(a.promise)?a.promise().done(c.resolve).fail(c.reject).progress(c.notify):c[f+"With"](this===e?c:this,[a])}:c[f])}),a=null}).promise()},promise:function(a){return a!=null?p.extend(a,d):d}},e={};return d.pipe=d.then,p.each(b,function(a,f){var g=f[2],h=f[3];d[f[1]]=g.add,h&&g.add(function(){c=h},b[a^1][2].disable,b[2][2].lock),e[f[0]]=g.fire,e[f[0]+"With"]=g.fireWith}),d.promise(e),a&&a.call(e,e),e},when:function(a){var b=0,c=k.call(arguments),d=c.length,e=d!==1||a&&p.isFunction(a.promise)?d:0,f=e===1?a:p.Deferred(),g=function(a,b,c){return function(d){b[a]=this,c[a]=arguments.length>1?k.call(arguments):d,c===h?f.notifyWith(b,c):--e||f.resolveWith(b,c)}},h,i,j;if(d>1){h=new Array(d),i=new Array(d),j=new Array(d);for(;b<d;b++)c[b]&&p.isFunction(c[b].promise)?c[b].promise().done(g(b,j,c)).fail(f.reject).progress(g(b,i,h)):--e}return e||f.resolveWith(j,c),f.promise()}}),p.support=function(){var b,c,d,f,g,h,i,j,k,l,m,n=e.createElement("div");n.setAttribute("className","t"),n.innerHTML=" <link/><table></table><a href='/a'>a</a><input type='checkbox'/>",c=n.getElementsByTagName("*"),d=n.getElementsByTagName("a")[0],d.style.cssText="top:1px;float:left;opacity:.5";if(!c||!c.length)return{};f=e.createElement("select"),g=f.appendChild(e.createElement("option")),h=n.getElementsByTagName("input")[0],b={leadingWhitespace:n.firstChild.nodeType===3,tbody:!n.getElementsByTagName("tbody").length,htmlSerialize:!!n.getElementsByTagName("link").length,style:/top/.test(d.getAttribute("style")),hrefNormalized:d.getAttribute("href")==="/a",opacity:/^0.5/.test(d.style.opacity),cssFloat:!!d.style.cssFloat,checkOn:h.value==="on",optSelected:g.selected,getSetAttribute:n.className!=="t",enctype:!!e.createElement("form").enctype,html5Clone:e.createElement("nav").cloneNode(!0).outerHTML!=="<:nav></:nav>",boxModel:e.compatMode==="CSS1Compat",submitBubbles:!0,changeBubbles:!0,focusinBubbles:!1,deleteExpando:!0,noCloneEvent:!0,inlineBlockNeedsLayout:!1,shrinkWrapBlocks:!1,reliableMarginRight:!0,boxSizingReliable:!0,pixelPosition:!1},h.checked=!0,b.noCloneChecked=h.cloneNode(!0).checked,f.disabled=!0,b.optDisabled=!g.disabled;try{delete n.test}catch(o){b.deleteExpando=!1}!n.addEventListener&&n.attachEvent&&n.fireEvent&&(n.attachEvent("onclick",m=function(){b.noCloneEvent=!1}),n.cloneNode(!0).fireEvent("onclick"),n.detachEvent("onclick",m)),h=e.createElement("input"),h.value="t",h.setAttribute("type","radio"),b.radioValue=h.value==="t",h.setAttribute("checked","checked"),h.setAttribute("name","t"),n.appendChild(h),i=e.createDocumentFragment(),i.appendChild(n.lastChild),b.checkClone=i.cloneNode(!0).cloneNode(!0).lastChild.checked,b.appendChecked=h.checked,i.removeChild(h),i.appendChild(n);if(n.attachEvent)for(k in{submit:!0,change:!0,focusin:!0})j="on"+k,l=j in n,l||(n.setAttribute(j,"return;"),l=typeof n[j]=="function"),b[k+"Bubbles"]=l;return p(function(){var c,d,f,g,h="padding:0;margin:0;border:0;display:block;overflow:hidden;",i=e.getElementsByTagName("body")[0];if(!i)return;c=e.createElement("div"),c.style.cssText="visibility:hidden;border:0;width:0;height:0;position:static;top:0;margin-top:1px",i.insertBefore(c,i.firstChild),d=e.createElement("div"),c.appendChild(d),d.innerHTML="<table><tr><td></td><td>t</td></tr></table>",f=d.getElementsByTagName("td"),f[0].style.cssText="padding:0;margin:0;border:0;display:none",l=f[0].offsetHeight===0,f[0].style.display="",f[1].style.display="none",b.reliableHiddenOffsets=l&&f[0].offsetHeight===0,d.innerHTML="",d.style.cssText="box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;padding:1px;border:1px;display:block;width:4px;margin-top:1%;position:absolute;top:1%;",b.boxSizing=d.offsetWidth===4,b.doesNotIncludeMarginInBodyOffset=i.offsetTop!==1,a.getComputedStyle&&(b.pixelPosition=(a.getComputedStyle(d,null)||{}).top!=="1%",b.boxSizingReliable=(a.getComputedStyle(d,null)||{width:"4px"}).width==="4px",g=e.createElement("div"),g.style.cssText=d.style.cssText=h,g.style.marginRight=g.style.width="0",d.style.width="1px",d.appendChild(g),b.reliableMarginRight=!parseFloat((a.getComputedStyle(g,null)||{}).marginRight)),typeof d.style.zoom!="undefined"&&(d.innerHTML="",d.style.cssText=h+"width:1px;padding:1px;display:inline;zoom:1",b.inlineBlockNeedsLayout=d.offsetWidth===3,d.style.display="block",d.style.overflow="visible",d.innerHTML="<div></div>",d.firstChild.style.width="5px",b.shrinkWrapBlocks=d.offsetWidth!==3,c.style.zoom=1),i.removeChild(c),c=d=f=g=null}),i.removeChild(n),c=d=f=g=h=i=n=null,b}();var H=/(?:\{[\s\S]*\}|\[[\s\S]*\])$/,I=/([A-Z])/g;p.extend({cache:{},deletedIds:[],uuid:0,expando:"jQuery"+(p.fn.jquery+Math.random()).replace(/\D/g,""),noData:{embed:!0,object:"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000",applet:!0},hasData:function(a){return a=a.nodeType?p.cache[a[p.expando]]:a[p.expando],!!a&&!K(a)},data:function(a,c,d,e){if(!p.acceptData(a))return;var f,g,h=p.expando,i=typeof c=="string",j=a.nodeType,k=j?p.cache:a,l=j?a[h]:a[h]&&h;if((!l||!k[l]||!e&&!k[l].data)&&i&&d===b)return;l||(j?a[h]=l=p.deletedIds.pop()||p.guid++:l=h),k[l]||(k[l]={},j||(k[l].toJSON=p.noop));if(typeof c=="object"||typeof c=="function")e?k[l]=p.extend(k[l],c):k[l].data=p.extend(k[l].data,c);return f=k[l],e||(f.data||(f.data={}),f=f.data),d!==b&&(f[p.camelCase(c)]=d),i?(g=f[c],g==null&&(g=f[p.camelCase(c)])):g=f,g},removeData:function(a,b,c){if(!p.acceptData(a))return;var d,e,f,g=a.nodeType,h=g?p.cache:a,i=g?a[p.expando]:p.expando;if(!h[i])return;if(b){d=c?h[i]:h[i].data;if(d){p.isArray(b)||(b in d?b=[b]:(b=p.camelCase(b),b in d?b=[b]:b=b.split(" ")));for(e=0,f=b.length;e<f;e++)delete d[b[e]];if(!(c?K:p.isEmptyObject)(d))return}}if(!c){delete h[i].data;if(!K(h[i]))return}g?p.cleanData([a],!0):p.support.deleteExpando||h!=h.window?delete h[i]:h[i]=null},_data:function(a,b,c){return p.data(a,b,c,!0)},acceptData:function(a){var b=a.nodeName&&p.noData[a.nodeName.toLowerCase()];return!b||b!==!0&&a.getAttribute("classid")===b}}),p.fn.extend({data:function(a,c){var d,e,f,g,h,i=this[0],j=0,k=null;if(a===b){if(this.length){k=p.data(i);if(i.nodeType===1&&!p._data(i,"parsedAttrs")){f=i.attributes;for(h=f.length;j<h;j++)g=f[j].name,g.indexOf("data-")||(g=p.camelCase(g.substring(5)),J(i,g,k[g]));p._data(i,"parsedAttrs",!0)}}return k}return typeof a=="object"?this.each(function(){p.data(this,a)}):(d=a.split(".",2),d[1]=d[1]?"."+d[1]:"",e=d[1]+"!",p.access(this,function(c){if(c===b)return k=this.triggerHandler("getData"+e,[d[0]]),k===b&&i&&(k=p.data(i,a),k=J(i,a,k)),k===b&&d[1]?this.data(d[0]):k;d[1]=c,this.each(function(){var b=p(this);b.triggerHandler("setData"+e,d),p.data(this,a,c),b.triggerHandler("changeData"+e,d)})},null,c,arguments.length>1,null,!1))},removeData:function(a){return this.each(function(){p.removeData(this,a)})}}),p.extend({queue:function(a,b,c){var d;if(a)return b=(b||"fx")+"queue",d=p._data(a,b),c&&(!d||p.isArray(c)?d=p._data(a,b,p.makeArray(c)):d.push(c)),d||[]},dequeue:function(a,b){b=b||"fx";var c=p.queue(a,b),d=c.length,e=c.shift(),f=p._queueHooks(a,b),g=function(){p.dequeue(a,b)};e==="inprogress"&&(e=c.shift(),d--),e&&(b==="fx"&&c.unshift("inprogress"),delete f.stop,e.call(a,g,f)),!d&&f&&f.empty.fire()},_queueHooks:function(a,b){var c=b+"queueHooks";return p._data(a,c)||p._data(a,c,{empty:p.Callbacks("once memory").add(function(){p.removeData(a,b+"queue",!0),p.removeData(a,c,!0)})})}}),p.fn.extend({queue:function(a,c){var d=2;return typeof a!="string"&&(c=a,a="fx",d--),arguments.length<d?p.queue(this[0],a):c===b?this:this.each(function(){var b=p.queue(this,a,c);p._queueHooks(this,a),a==="fx"&&b[0]!=="inprogress"&&p.dequeue(this,a)})},dequeue:function(a){return this.each(function(){p.dequeue(this,a)})},delay:function(a,b){return a=p.fx?p.fx.speeds[a]||a:a,b=b||"fx",this.queue(b,function(b,c){var d=setTimeout(b,a);c.stop=function(){clearTimeout(d)}})},clearQueue:function(a){return this.queue(a||"fx",[])},promise:function(a,c){var d,e=1,f=p.Deferred(),g=this,h=this.length,i=function(){--e||f.resolveWith(g,[g])};typeof a!="string"&&(c=a,a=b),a=a||"fx";while(h--)d=p._data(g[h],a+"queueHooks"),d&&d.empty&&(e++,d.empty.add(i));return i(),f.promise(c)}});var L,M,N,O=/[\t\r\n]/g,P=/\r/g,Q=/^(?:button|input)$/i,R=/^(?:button|input|object|select|textarea)$/i,S=/^a(?:rea|)$/i,T=/^(?:autofocus|autoplay|async|checked|controls|defer|disabled|hidden|loop|multiple|open|readonly|required|scoped|selected)$/i,U=p.support.getSetAttribute;p.fn.extend({attr:function(a,b){return p.access(this,p.attr,a,b,arguments.length>1)},removeAttr:function(a){return this.each(function(){p.removeAttr(this,a)})},prop:function(a,b){return p.access(this,p.prop,a,b,arguments.length>1)},removeProp:function(a){return a=p.propFix[a]||a,this.each(function(){try{this[a]=b,delete this[a]}catch(c){}})},addClass:function(a){var b,c,d,e,f,g,h;if(p.isFunction(a))return this.each(function(b){p(this).addClass(a.call(this,b,this.className))});if(a&&typeof a=="string"){b=a.split(s);for(c=0,d=this.length;c<d;c++){e=this[c];if(e.nodeType===1)if(!e.className&&b.length===1)e.className=a;else{f=" "+e.className+" ";for(g=0,h=b.length;g<h;g++)f.indexOf(" "+b[g]+" ")<0&&(f+=b[g]+" ");e.className=p.trim(f)}}}return this},removeClass:function(a){var c,d,e,f,g,h,i;if(p.isFunction(a))return this.each(function(b){p(this).removeClass(a.call(this,b,this.className))});if(a&&typeof a=="string"||a===b){c=(a||"").split(s);for(h=0,i=this.length;h<i;h++){e=this[h];if(e.nodeType===1&&e.className){d=(" "+e.className+" ").replace(O," ");for(f=0,g=c.length;f<g;f++)while(d.indexOf(" "+c[f]+" ")>=0)d=d.replace(" "+c[f]+" "," ");e.className=a?p.trim(d):""}}}return this},toggleClass:function(a,b){var c=typeof a,d=typeof b=="boolean";return p.isFunction(a)?this.each(function(c){p(this).toggleClass(a.call(this,c,this.className,b),b)}):this.each(function(){if(c==="string"){var e,f=0,g=p(this),h=b,i=a.split(s);while(e=i[f++])h=d?h:!g.hasClass(e),g[h?"addClass":"removeClass"](e)}else if(c==="undefined"||c==="boolean")this.className&&p._data(this,"__className__",this.className),this.className=this.className||a===!1?"":p._data(this,"__className__")||""})},hasClass:function(a){var b=" "+a+" ",c=0,d=this.length;for(;c<d;c++)if(this[c].nodeType===1&&(" "+this[c].className+" ").replace(O," ").indexOf(b)>=0)return!0;return!1},val:function(a){var c,d,e,f=this[0];if(!arguments.length){if(f)return c=p.valHooks[f.type]||p.valHooks[f.nodeName.toLowerCase()],c&&"get"in c&&(d=c.get(f,"value"))!==b?d:(d=f.value,typeof d=="string"?d.replace(P,""):d==null?"":d);return}return e=p.isFunction(a),this.each(function(d){var f,g=p(this);if(this.nodeType!==1)return;e?f=a.call(this,d,g.val()):f=a,f==null?f="":typeof f=="number"?f+="":p.isArray(f)&&(f=p.map(f,function(a){return a==null?"":a+""})),c=p.valHooks[this.type]||p.valHooks[this.nodeName.toLowerCase()];if(!c||!("set"in c)||c.set(this,f,"value")===b)this.value=f})}}),p.extend({valHooks:{option:{get:function(a){var b=a.attributes.value;return!b||b.specified?a.value:a.text}},select:{get:function(a){var b,c,d,e,f=a.selectedIndex,g=[],h=a.options,i=a.type==="select-one";if(f<0)return null;c=i?f:0,d=i?f+1:h.length;for(;c<d;c++){e=h[c];if(e.selected&&(p.support.optDisabled?!e.disabled:e.getAttribute("disabled")===null)&&(!e.parentNode.disabled||!p.nodeName(e.parentNode,"optgroup"))){b=p(e).val();if(i)return b;g.push(b)}}return i&&!g.length&&h.length?p(h[f]).val():g},set:function(a,b){var c=p.makeArray(b);return p(a).find("option").each(function(){this.selected=p.inArray(p(this).val(),c)>=0}),c.length||(a.selectedIndex=-1),c}}},attrFn:{},attr:function(a,c,d,e){var f,g,h,i=a.nodeType;if(!a||i===3||i===8||i===2)return;if(e&&p.isFunction(p.fn[c]))return p(a)[c](d);if(typeof a.getAttribute=="undefined")return p.prop(a,c,d);h=i!==1||!p.isXMLDoc(a),h&&(c=c.toLowerCase(),g=p.attrHooks[c]||(T.test(c)?M:L));if(d!==b){if(d===null){p.removeAttr(a,c);return}return g&&"set"in g&&h&&(f=g.set(a,d,c))!==b?f:(a.setAttribute(c,d+""),d)}return g&&"get"in g&&h&&(f=g.get(a,c))!==null?f:(f=a.getAttribute(c),f===null?b:f)},removeAttr:function(a,b){var c,d,e,f,g=0;if(b&&a.nodeType===1){d=b.split(s);for(;g<d.length;g++)e=d[g],e&&(c=p.propFix[e]||e,f=T.test(e),f||p.attr(a,e,""),a.removeAttribute(U?e:c),f&&c in a&&(a[c]=!1))}},attrHooks:{type:{set:function(a,b){if(Q.test(a.nodeName)&&a.parentNode)p.error("type property can't be changed");else if(!p.support.radioValue&&b==="radio"&&p.nodeName(a,"input")){var c=a.value;return a.setAttribute("type",b),c&&(a.value=c),b}}},value:{get:function(a,b){return L&&p.nodeName(a,"button")?L.get(a,b):b in a?a.value:null},set:function(a,b,c){if(L&&p.nodeName(a,"button"))return L.set(a,b,c);a.value=b}}},propFix:{tabindex:"tabIndex",readonly:"readOnly","for":"htmlFor","class":"className",maxlength:"maxLength",cellspacing:"cellSpacing",cellpadding:"cellPadding",rowspan:"rowSpan",colspan:"colSpan",usemap:"useMap",frameborder:"frameBorder",contenteditable:"contentEditable"},prop:function(a,c,d){var e,f,g,h=a.nodeType;if(!a||h===3||h===8||h===2)return;return g=h!==1||!p.isXMLDoc(a),g&&(c=p.propFix[c]||c,f=p.propHooks[c]),d!==b?f&&"set"in f&&(e=f.set(a,d,c))!==b?e:a[c]=d:f&&"get"in f&&(e=f.get(a,c))!==null?e:a[c]},propHooks:{tabIndex:{get:function(a){var c=a.getAttributeNode("tabindex");return c&&c.specified?parseInt(c.value,10):R.test(a.nodeName)||S.test(a.nodeName)&&a.href?0:b}}}}),M={get:function(a,c){var d,e=p.prop(a,c);return e===!0||typeof e!="boolean"&&(d=a.getAttributeNode(c))&&d.nodeValue!==!1?c.toLowerCase():b},set:function(a,b,c){var d;return b===!1?p.removeAttr(a,c):(d=p.propFix[c]||c,d in a&&(a[d]=!0),a.setAttribute(c,c.toLowerCase())),c}},U||(N={name:!0,id:!0,coords:!0},L=p.valHooks.button={get:function(a,c){var d;return d=a.getAttributeNode(c),d&&(N[c]?d.value!=="":d.specified)?d.value:b},set:function(a,b,c){var d=a.getAttributeNode(c);return d||(d=e.createAttribute(c),a.setAttributeNode(d)),d.value=b+""}},p.each(["width","height"],function(a,b){p.attrHooks[b]=p.extend(p.attrHooks[b],{set:function(a,c){if(c==="")return a.setAttribute(b,"auto"),c}})}),p.attrHooks.contenteditable={get:L.get,set:function(a,b,c){b===""&&(b="false"),L.set(a,b,c)}}),p.support.hrefNormalized||p.each(["href","src","width","height"],function(a,c){p.attrHooks[c]=p.extend(p.attrHooks[c],{get:function(a){var d=a.getAttribute(c,2);return d===null?b:d}})}),p.support.style||(p.attrHooks.style={get:function(a){return a.style.cssText.toLowerCase()||b},set:function(a,b){return a.style.cssText=b+""}}),p.support.optSelected||(p.propHooks.selected=p.extend(p.propHooks.selected,{get:function(a){var b=a.parentNode;return b&&(b.selectedIndex,b.parentNode&&b.parentNode.selectedIndex),null}})),p.support.enctype||(p.propFix.enctype="encoding"),p.support.checkOn||p.each(["radio","checkbox"],function(){p.valHooks[this]={get:function(a){return a.getAttribute("value")===null?"on":a.value}}}),p.each(["radio","checkbox"],function(){p.valHooks[this]=p.extend(p.valHooks[this],{set:function(a,b){if(p.isArray(b))return a.checked=p.inArray(p(a).val(),b)>=0}})});var V=/^(?:textarea|input|select)$/i,W=/^([^\.]*|)(?:\.(.+)|)$/,X=/(?:^|\s)hover(\.\S+|)\b/,Y=/^key/,Z=/^(?:mouse|contextmenu)|click/,$=/^(?:focusinfocus|focusoutblur)$/,_=function(a){return p.event.special.hover?a:a.replace(X,"mouseenter$1 mouseleave$1")};p.event={add:function(a,c,d,e,f){var g,h,i,j,k,l,m,n,o,q,r;if(a.nodeType===3||a.nodeType===8||!c||!d||!(g=p._data(a)))return;d.handler&&(o=d,d=o.handler,f=o.selector),d.guid||(d.guid=p.guid++),i=g.events,i||(g.events=i={}),h=g.handle,h||(g.handle=h=function(a){return typeof p!="undefined"&&(!a||p.event.triggered!==a.type)?p.event.dispatch.apply(h.elem,arguments):b},h.elem=a),c=p.trim(_(c)).split(" ");for(j=0;j<c.length;j++){k=W.exec(c[j])||[],l=k[1],m=(k[2]||"").split(".").sort(),r=p.event.special[l]||{},l=(f?r.delegateType:r.bindType)||l,r=p.event.special[l]||{},n=p.extend({type:l,origType:k[1],data:e,handler:d,guid:d.guid,selector:f,needsContext:f&&p.expr.match.needsContext.test(f),namespace:m.join(".")},o),q=i[l];if(!q){q=i[l]=[],q.delegateCount=0;if(!r.setup||r.setup.call(a,e,m,h)===!1)a.addEventListener?a.addEventListener(l,h,!1):a.attachEvent&&a.attachEvent("on"+l,h)}r.add&&(r.add.call(a,n),n.handler.guid||(n.handler.guid=d.guid)),f?q.splice(q.delegateCount++,0,n):q.push(n),p.event.global[l]=!0}a=null},global:{},remove:function(a,b,c,d,e){var f,g,h,i,j,k,l,m,n,o,q,r=p.hasData(a)&&p._data(a);if(!r||!(m=r.events))return;b=p.trim(_(b||"")).split(" ");for(f=0;f<b.length;f++){g=W.exec(b[f])||[],h=i=g[1],j=g[2];if(!h){for(h in m)p.event.remove(a,h+b[f],c,d,!0);continue}n=p.event.special[h]||{},h=(d?n.delegateType:n.bindType)||h,o=m[h]||[],k=o.length,j=j?new RegExp("(^|\\.)"+j.split(".").sort().join("\\.(?:.*\\.|)")+"(\\.|$)"):null;for(l=0;l<o.length;l++)q=o[l],(e||i===q.origType)&&(!c||c.guid===q.guid)&&(!j||j.test(q.namespace))&&(!d||d===q.selector||d==="**"&&q.selector)&&(o.splice(l--,1),q.selector&&o.delegateCount--,n.remove&&n.remove.call(a,q));o.length===0&&k!==o.length&&((!n.teardown||n.teardown.call(a,j,r.handle)===!1)&&p.removeEvent(a,h,r.handle),delete m[h])}p.isEmptyObject(m)&&(delete r.handle,p.removeData(a,"events",!0))},customEvent:{getData:!0,setData:!0,changeData:!0},trigger:function(c,d,f,g){if(!f||f.nodeType!==3&&f.nodeType!==8){var h,i,j,k,l,m,n,o,q,r,s=c.type||c,t=[];if($.test(s+p.event.triggered))return;s.indexOf("!")>=0&&(s=s.slice(0,-1),i=!0),s.indexOf(".")>=0&&(t=s.split("."),s=t.shift(),t.sort());if((!f||p.event.customEvent[s])&&!p.event.global[s])return;c=typeof c=="object"?c[p.expando]?c:new p.Event(s,c):new p.Event(s),c.type=s,c.isTrigger=!0,c.exclusive=i,c.namespace=t.join("."),c.namespace_re=c.namespace?new RegExp("(^|\\.)"+t.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,m=s.indexOf(":")<0?"on"+s:"";if(!f){h=p.cache;for(j in h)h[j].events&&h[j].events[s]&&p.event.trigger(c,d,h[j].handle.elem,!0);return}c.result=b,c.target||(c.target=f),d=d!=null?p.makeArray(d):[],d.unshift(c),n=p.event.special[s]||{};if(n.trigger&&n.trigger.apply(f,d)===!1)return;q=[[f,n.bindType||s]];if(!g&&!n.noBubble&&!p.isWindow(f)){r=n.delegateType||s,k=$.test(r+s)?f:f.parentNode;for(l=f;k;k=k.parentNode)q.push([k,r]),l=k;l===(f.ownerDocument||e)&&q.push([l.defaultView||l.parentWindow||a,r])}for(j=0;j<q.length&&!c.isPropagationStopped();j++)k=q[j][0],c.type=q[j][1],o=(p._data(k,"events")||{})[c.type]&&p._data(k,"handle"),o&&o.apply(k,d),o=m&&k[m],o&&p.acceptData(k)&&o.apply&&o.apply(k,d)===!1&&c.preventDefault();return c.type=s,!g&&!c.isDefaultPrevented()&&(!n._default||n._default.apply(f.ownerDocument,d)===!1)&&(s!=="click"||!p.nodeName(f,"a"))&&p.acceptData(f)&&m&&f[s]&&(s!=="focus"&&s!=="blur"||c.target.offsetWidth!==0)&&!p.isWindow(f)&&(l=f[m],l&&(f[m]=null),p.event.triggered=s,f[s](),p.event.triggered=b,l&&(f[m]=l)),c.result}return},dispatch:function(c){c=p.event.fix(c||a.event);var d,e,f,g,h,i,j,l,m,n,o=(p._data(this,"events")||{})[c.type]||[],q=o.delegateCount,r=k.call(arguments),s=!c.exclusive&&!c.namespace,t=p.event.special[c.type]||{},u=[];r[0]=c,c.delegateTarget=this;if(t.preDispatch&&t.preDispatch.call(this,c)===!1)return;if(q&&(!c.button||c.type!=="click"))for(f=c.target;f!=this;f=f.parentNode||this)if(f.disabled!==!0||c.type!=="click"){h={},j=[];for(d=0;d<q;d++)l=o[d],m=l.selector,h[m]===b&&(h[m]=l.needsContext?p(m,this).index(f)>=0:p.find(m,this,null,[f]).length),h[m]&&j.push(l);j.length&&u.push({elem:f,matches:j})}o.length>q&&u.push({elem:this,matches:o.slice(q)});for(d=0;d<u.length&&!c.isPropagationStopped();d++){i=u[d],c.currentTarget=i.elem;for(e=0;e<i.matches.length&&!c.isImmediatePropagationStopped();e++){l=i.matches[e];if(s||!c.namespace&&!l.namespace||c.namespace_re&&c.namespace_re.test(l.namespace))c.data=l.data,c.handleObj=l,g=((p.event.special[l.origType]||{}).handle||l.handler).apply(i.elem,r),g!==b&&(c.result=g,g===!1&&(c.preventDefault(),c.stopPropagation()))}}return t.postDispatch&&t.postDispatch.call(this,c),c.result},props:"attrChange attrName relatedNode srcElement altKey bubbles cancelable ctrlKey currentTarget eventPhase metaKey relatedTarget shiftKey target timeStamp view which".split(" "),fixHooks:{},keyHooks:{props:"char charCode key keyCode".split(" "),filter:function(a,b){return a.which==null&&(a.which=b.charCode!=null?b.charCode:b.keyCode),a}},mouseHooks:{props:"button buttons clientX clientY fromElement offsetX offsetY pageX pageY screenX screenY toElement".split(" "),filter:function(a,c){var d,f,g,h=c.button,i=c.fromElement;return a.pageX==null&&c.clientX!=null&&(d=a.target.ownerDocument||e,f=d.documentElement,g=d.body,a.pageX=c.clientX+(f&&f.scrollLeft||g&&g.scrollLeft||0)-(f&&f.clientLeft||g&&g.clientLeft||0),a.pageY=c.clientY+(f&&f.scrollTop||g&&g.scrollTop||0)-(f&&f.clientTop||g&&g.clientTop||0)),!a.relatedTarget&&i&&(a.relatedTarget=i===a.target?c.toElement:i),!a.which&&h!==b&&(a.which=h&1?1:h&2?3:h&4?2:0),a}},fix:function(a){if(a[p.expando])return a;var b,c,d=a,f=p.event.fixHooks[a.type]||{},g=f.props?this.props.concat(f.props):this.props;a=p.Event(d);for(b=g.length;b;)c=g[--b],a[c]=d[c];return a.target||(a.target=d.srcElement||e),a.target.nodeType===3&&(a.target=a.target.parentNode),a.metaKey=!!a.metaKey,f.filter?f.filter(a,d):a},special:{load:{noBubble:!0},focus:{delegateType:"focusin"},blur:{delegateType:"focusout"},beforeunload:{setup:function(a,b,c){p.isWindow(this)&&(this.onbeforeunload=c)},teardown:function(a,b){this.onbeforeunload===b&&(this.onbeforeunload=null)}}},simulate:function(a,b,c,d){var e=p.extend(new p.Event,c,{type:a,isSimulated:!0,originalEvent:{}});d?p.event.trigger(e,null,b):p.event.dispatch.call(b,e),e.isDefaultPrevented()&&c.preventDefault()}},p.event.handle=p.event.dispatch,p.removeEvent=e.removeEventListener?function(a,b,c){a.removeEventListener&&a.removeEventListener(b,c,!1)}:function(a,b,c){var d="on"+b;a.detachEvent&&(typeof a[d]=="undefined"&&(a[d]=null),a.detachEvent(d,c))},p.Event=function(a,b){if(this instanceof p.Event)a&&a.type?(this.originalEvent=a,this.type=a.type,this.isDefaultPrevented=a.defaultPrevented||a.returnValue===!1||a.getPreventDefault&&a.getPreventDefault()?bb:ba):this.type=a,b&&p.extend(this,b),this.timeStamp=a&&a.timeStamp||p.now(),this[p.expando]=!0;else return new p.Event(a,b)},p.Event.prototype={preventDefault:function(){this.isDefaultPrevented=bb;var a=this.originalEvent;if(!a)return;a.preventDefault?a.preventDefault():a.returnValue=!1},stopPropagation:function(){this.isPropagationStopped=bb;var a=this.originalEvent;if(!a)return;a.stopPropagation&&a.stopPropagation(),a.cancelBubble=!0},stopImmediatePropagation:function(){this.isImmediatePropagationStopped=bb,this.stopPropagation()},isDefaultPrevented:ba,isPropagationStopped:ba,isImmediatePropagationStopped:ba},p.each({mouseenter:"mouseover",mouseleave:"mouseout"},function(a,b){p.event.special[a]={delegateType:b,bindType:b,handle:function(a){var c,d=this,e=a.relatedTarget,f=a.handleObj,g=f.selector;if(!e||e!==d&&!p.contains(d,e))a.type=f.origType,c=f.handler.apply(this,arguments),a.type=b;return c}}}),p.support.submitBubbles||(p.event.special.submit={setup:function(){if(p.nodeName(this,"form"))return!1;p.event.add(this,"click._submit keypress._submit",function(a){var c=a.target,d=p.nodeName(c,"input")||p.nodeName(c,"button")?c.form:b;d&&!p._data(d,"_submit_attached")&&(p.event.add(d,"submit._submit",function(a){a._submit_bubble=!0}),p._data(d,"_submit_attached",!0))})},postDispatch:function(a){a._submit_bubble&&(delete a._submit_bubble,this.parentNode&&!a.isTrigger&&p.event.simulate("submit",this.parentNode,a,!0))},teardown:function(){if(p.nodeName(this,"form"))return!1;p.event.remove(this,"._submit")}}),p.support.changeBubbles||(p.event.special.change={setup:function(){if(V.test(this.nodeName)){if(this.type==="checkbox"||this.type==="radio")p.event.add(this,"propertychange._change",function(a){a.originalEvent.propertyName==="checked"&&(this._just_changed=!0)}),p.event.add(this,"click._change",function(a){this._just_changed&&!a.isTrigger&&(this._just_changed=!1),p.event.simulate("change",this,a,!0)});return!1}p.event.add(this,"beforeactivate._change",function(a){var b=a.target;V.test(b.nodeName)&&!p._data(b,"_change_attached")&&(p.event.add(b,"change._change",function(a){this.parentNode&&!a.isSimulated&&!a.isTrigger&&p.event.simulate("change",this.parentNode,a,!0)}),p._data(b,"_change_attached",!0))})},handle:function(a){var b=a.target;if(this!==b||a.isSimulated||a.isTrigger||b.type!=="radio"&&b.type!=="checkbox")return a.handleObj.handler.apply(this,arguments)},teardown:function(){return p.event.remove(this,"._change"),!V.test(this.nodeName)}}),p.support.focusinBubbles||p.each({focus:"focusin",blur:"focusout"},function(a,b){var c=0,d=function(a){p.event.simulate(b,a.target,p.event.fix(a),!0)};p.event.special[b]={setup:function(){c++===0&&e.addEventListener(a,d,!0)},teardown:function(){--c===0&&e.removeEventListener(a,d,!0)}}}),p.fn.extend({on:function(a,c,d,e,f){var g,h;if(typeof a=="object"){typeof c!="string"&&(d=d||c,c=b);for(h in a)this.on(h,c,d,a[h],f);return this}d==null&&e==null?(e=c,d=c=b):e==null&&(typeof c=="string"?(e=d,d=b):(e=d,d=c,c=b));if(e===!1)e=ba;else if(!e)return this;return f===1&&(g=e,e=function(a){return p().off(a),g.apply(this,arguments)},e.guid=g.guid||(g.guid=p.guid++)),this.each(function(){p.event.add(this,a,e,d,c)})},one:function(a,b,c,d){return this.on(a,b,c,d,1)},off:function(a,c,d){var e,f;if(a&&a.preventDefault&&a.handleObj)return e=a.handleObj,p(a.delegateTarget).off(e.namespace?e.origType+"."+e.namespace:e.origType,e.selector,e.handler),this;if(typeof a=="object"){for(f in a)this.off(f,c,a[f]);return this}if(c===!1||typeof c=="function")d=c,c=b;return d===!1&&(d=ba),this.each(function(){p.event.remove(this,a,d,c)})},bind:function(a,b,c){return this.on(a,null,b,c)},unbind:function(a,b){return this.off(a,null,b)},live:function(a,b,c){return p(this.context).on(a,this.selector,b,c),this},die:function(a,b){return p(this.context).off(a,this.selector||"**",b),this},delegate:function(a,b,c,d){return this.on(b,a,c,d)},undelegate:function(a,b,c){return arguments.length===1?this.off(a,"**"):this.off(b,a||"**",c)},trigger:function(a,b){return this.each(function(){p.event.trigger(a,b,this)})},triggerHandler:function(a,b){if(this[0])return p.event.trigger(a,b,this[0],!0)},toggle:function(a){var b=arguments,c=a.guid||p.guid++,d=0,e=function(c){var e=(p._data(this,"lastToggle"+a.guid)||0)%d;return p._data(this,"lastToggle"+a.guid,e+1),c.preventDefault(),b[e].apply(this,arguments)||!1};e.guid=c;while(d<b.length)b[d++].guid=c;return this.click(e)},hover:function(a,b){return this.mouseenter(a).mouseleave(b||a)}}),p.each("blur focus focusin focusout load resize scroll unload click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup error contextmenu".split(" "),function(a,b){p.fn[b]=function(a,c){return c==null&&(c=a,a=null),arguments.length>0?this.on(b,null,a,c):this.trigger(b)},Y.test(b)&&(p.event.fixHooks[b]=p.event.keyHooks),Z.test(b)&&(p.event.fixHooks[b]=p.event.mouseHooks)}),function(a,b){function bc(a,b,c,d){c=c||[],b=b||r;var e,f,i,j,k=b.nodeType;if(!a||typeof a!="string")return c;if(k!==1&&k!==9)return[];i=g(b);if(!i&&!d)if(e=P.exec(a))if(j=e[1]){if(k===9){f=b.getElementById(j);if(!f||!f.parentNode)return c;if(f.id===j)return c.push(f),c}else if(b.ownerDocument&&(f=b.ownerDocument.getElementById(j))&&h(b,f)&&f.id===j)return c.push(f),c}else{if(e[2])return w.apply(c,x.call(b.getElementsByTagName(a),0)),c;if((j=e[3])&&_&&b.getElementsByClassName)return w.apply(c,x.call(b.getElementsByClassName(j),0)),c}return bp(a.replace(L,"$1"),b,c,d,i)}function bd(a){return function(b){var c=b.nodeName.toLowerCase();return c==="input"&&b.type===a}}function be(a){return function(b){var c=b.nodeName.toLowerCase();return(c==="input"||c==="button")&&b.type===a}}function bf(a){return z(function(b){return b=+b,z(function(c,d){var e,f=a([],c.length,b),g=f.length;while(g--)c[e=f[g]]&&(c[e]=!(d[e]=c[e]))})})}function bg(a,b,c){if(a===b)return c;var d=a.nextSibling;while(d){if(d===b)return-1;d=d.nextSibling}return 1}function bh(a,b){var c,d,f,g,h,i,j,k=C[o][a];if(k)return b?0:k.slice(0);h=a,i=[],j=e.preFilter;while(h){if(!c||(d=M.exec(h)))d&&(h=h.slice(d[0].length)),i.push(f=[]);c=!1;if(d=N.exec(h))f.push(c=new q(d.shift())),h=h.slice(c.length),c.type=d[0].replace(L," ");for(g in e.filter)(d=W[g].exec(h))&&(!j[g]||(d=j[g](d,r,!0)))&&(f.push(c=new q(d.shift())),h=h.slice(c.length),c.type=g,c.matches=d);if(!c)break}return b?h.length:h?bc.error(a):C(a,i).slice(0)}function bi(a,b,d){var e=b.dir,f=d&&b.dir==="parentNode",g=u++;return b.first?function(b,c,d){while(b=b[e])if(f||b.nodeType===1)return a(b,c,d)}:function(b,d,h){if(!h){var i,j=t+" "+g+" ",k=j+c;while(b=b[e])if(f||b.nodeType===1){if((i=b[o])===k)return b.sizset;if(typeof i=="string"&&i.indexOf(j)===0){if(b.sizset)return b}else{b[o]=k;if(a(b,d,h))return b.sizset=!0,b;b.sizset=!1}}}else while(b=b[e])if(f||b.nodeType===1)if(a(b,d,h))return b}}function bj(a){return a.length>1?function(b,c,d){var e=a.length;while(e--)if(!a[e](b,c,d))return!1;return!0}:a[0]}function bk(a,b,c,d,e){var f,g=[],h=0,i=a.length,j=b!=null;for(;h<i;h++)if(f=a[h])if(!c||c(f,d,e))g.push(f),j&&b.push(h);return g}function bl(a,b,c,d,e,f){return d&&!d[o]&&(d=bl(d)),e&&!e[o]&&(e=bl(e,f)),z(function(f,g,h,i){if(f&&e)return;var j,k,l,m=[],n=[],o=g.length,p=f||bo(b||"*",h.nodeType?[h]:h,[],f),q=a&&(f||!b)?bk(p,m,a,h,i):p,r=c?e||(f?a:o||d)?[]:g:q;c&&c(q,r,h,i);if(d){l=bk(r,n),d(l,[],h,i),j=l.length;while(j--)if(k=l[j])r[n[j]]=!(q[n[j]]=k)}if(f){j=a&&r.length;while(j--)if(k=r[j])f[m[j]]=!(g[m[j]]=k)}else r=bk(r===g?r.splice(o,r.length):r),e?e(null,g,r,i):w.apply(g,r)})}function bm(a){var b,c,d,f=a.length,g=e.relative[a[0].type],h=g||e.relative[" "],i=g?1:0,j=bi(function(a){return a===b},h,!0),k=bi(function(a){return y.call(b,a)>-1},h,!0),m=[function(a,c,d){return!g&&(d||c!==l)||((b=c).nodeType?j(a,c,d):k(a,c,d))}];for(;i<f;i++)if(c=e.relative[a[i].type])m=[bi(bj(m),c)];else{c=e.filter[a[i].type].apply(null,a[i].matches);if(c[o]){d=++i;for(;d<f;d++)if(e.relative[a[d].type])break;return bl(i>1&&bj(m),i>1&&a.slice(0,i-1).join("").replace(L,"$1"),c,i<d&&bm(a.slice(i,d)),d<f&&bm(a=a.slice(d)),d<f&&a.join(""))}m.push(c)}return bj(m)}function bn(a,b){var d=b.length>0,f=a.length>0,g=function(h,i,j,k,m){var n,o,p,q=[],s=0,u="0",x=h&&[],y=m!=null,z=l,A=h||f&&e.find.TAG("*",m&&i.parentNode||i),B=t+=z==null?1:Math.E;y&&(l=i!==r&&i,c=g.el);for(;(n=A[u])!=null;u++){if(f&&n){for(o=0;p=a[o];o++)if(p(n,i,j)){k.push(n);break}y&&(t=B,c=++g.el)}d&&((n=!p&&n)&&s--,h&&x.push(n))}s+=u;if(d&&u!==s){for(o=0;p=b[o];o++)p(x,q,i,j);if(h){if(s>0)while(u--)!x[u]&&!q[u]&&(q[u]=v.call(k));q=bk(q)}w.apply(k,q),y&&!h&&q.length>0&&s+b.length>1&&bc.uniqueSort(k)}return y&&(t=B,l=z),x};return g.el=0,d?z(g):g}function bo(a,b,c,d){var e=0,f=b.length;for(;e<f;e++)bc(a,b[e],c,d);return c}function bp(a,b,c,d,f){var g,h,j,k,l,m=bh(a),n=m.length;if(!d&&m.length===1){h=m[0]=m[0].slice(0);if(h.length>2&&(j=h[0]).type==="ID"&&b.nodeType===9&&!f&&e.relative[h[1].type]){b=e.find.ID(j.matches[0].replace(V,""),b,f)[0];if(!b)return c;a=a.slice(h.shift().length)}for(g=W.POS.test(a)?-1:h.length-1;g>=0;g--){j=h[g];if(e.relative[k=j.type])break;if(l=e.find[k])if(d=l(j.matches[0].replace(V,""),R.test(h[0].type)&&b.parentNode||b,f)){h.splice(g,1),a=d.length&&h.join("");if(!a)return w.apply(c,x.call(d,0)),c;break}}}return i(a,m)(d,b,f,c,R.test(a)),c}function bq(){}var c,d,e,f,g,h,i,j,k,l,m=!0,n="undefined",o=("sizcache"+Math.random()).replace(".",""),q=String,r=a.document,s=r.documentElement,t=0,u=0,v=[].pop,w=[].push,x=[].slice,y=[].indexOf||function(a){var b=0,c=this.length;for(;b<c;b++)if(this[b]===a)return b;return-1},z=function(a,b){return a[o]=b==null||b,a},A=function(){var a={},b=[];return z(function(c,d){return b.push(c)>e.cacheLength&&delete a[b.shift()],a[c]=d},a)},B=A(),C=A(),D=A(),E="[\\x20\\t\\r\\n\\f]",F="(?:\\\\.|[-\\w]|[^\\x00-\\xa0])+",G=F.replace("w","w#"),H="([*^$|!~]?=)",I="\\["+E+"*("+F+")"+E+"*(?:"+H+E+"*(?:(['\"])((?:\\\\.|[^\\\\])*?)\\3|("+G+")|)|)"+E+"*\\]",J=":("+F+")(?:\\((?:(['\"])((?:\\\\.|[^\\\\])*?)\\2|([^()[\\]]*|(?:(?:"+I+")|[^:]|\\\\.)*|.*))\\)|)",K=":(even|odd|eq|gt|lt|nth|first|last)(?:\\("+E+"*((?:-\\d)?\\d*)"+E+"*\\)|)(?=[^-]|$)",L=new RegExp("^"+E+"+|((?:^|[^\\\\])(?:\\\\.)*)"+E+"+$","g"),M=new RegExp("^"+E+"*,"+E+"*"),N=new RegExp("^"+E+"*([\\x20\\t\\r\\n\\f>+~])"+E+"*"),O=new RegExp(J),P=/^(?:#([\w\-]+)|(\w+)|\.([\w\-]+))$/,Q=/^:not/,R=/[\x20\t\r\n\f]*[+~]/,S=/:not\($/,T=/h\d/i,U=/input|select|textarea|button/i,V=/\\(?!\\)/g,W={ID:new RegExp("^#("+F+")"),CLASS:new RegExp("^\\.("+F+")"),NAME:new RegExp("^\\[name=['\"]?("+F+")['\"]?\\]"),TAG:new RegExp("^("+F.replace("w","w*")+")"),ATTR:new RegExp("^"+I),PSEUDO:new RegExp("^"+J),POS:new RegExp(K,"i"),CHILD:new RegExp("^:(only|nth|first|last)-child(?:\\("+E+"*(even|odd|(([+-]|)(\\d*)n|)"+E+"*(?:([+-]|)"+E+"*(\\d+)|))"+E+"*\\)|)","i"),needsContext:new RegExp("^"+E+"*[>+~]|"+K,"i")},X=function(a){var b=r.createElement("div");try{return a(b)}catch(c){return!1}finally{b=null}},Y=X(function(a){return a.appendChild(r.createComment("")),!a.getElementsByTagName("*").length}),Z=X(function(a){return a.innerHTML="<a href='#'></a>",a.firstChild&&typeof a.firstChild.getAttribute!==n&&a.firstChild.getAttribute("href")==="#"}),$=X(function(a){a.innerHTML="<select></select>";var b=typeof a.lastChild.getAttribute("multiple");return b!=="boolean"&&b!=="string"}),_=X(function(a){return a.innerHTML="<div class='hidden e'></div><div class='hidden'></div>",!a.getElementsByClassName||!a.getElementsByClassName("e").length?!1:(a.lastChild.className="e",a.getElementsByClassName("e").length===2)}),ba=X(function(a){a.id=o+0,a.innerHTML="<a name='"+o+"'></a><div name='"+o+"'></div>",s.insertBefore(a,s.firstChild);var b=r.getElementsByName&&r.getElementsByName(o).length===2+r.getElementsByName(o+0).length;return d=!r.getElementById(o),s.removeChild(a),b});try{x.call(s.childNodes,0)[0].nodeType}catch(bb){x=function(a){var b,c=[];for(;b=this[a];a++)c.push(b);return c}}bc.matches=function(a,b){return bc(a,null,null,b)},bc.matchesSelector=function(a,b){return bc(b,null,null,[a]).length>0},f=bc.getText=function(a){var b,c="",d=0,e=a.nodeType;if(e){if(e===1||e===9||e===11){if(typeof a.textContent=="string")return a.textContent;for(a=a.firstChild;a;a=a.nextSibling)c+=f(a)}else if(e===3||e===4)return a.nodeValue}else for(;b=a[d];d++)c+=f(b);return c},g=bc.isXML=function(a){var b=a&&(a.ownerDocument||a).documentElement;return b?b.nodeName!=="HTML":!1},h=bc.contains=s.contains?function(a,b){var c=a.nodeType===9?a.documentElement:a,d=b&&b.parentNode;return a===d||!!(d&&d.nodeType===1&&c.contains&&c.contains(d))}:s.compareDocumentPosition?function(a,b){return b&&!!(a.compareDocumentPosition(b)&16)}:function(a,b){while(b=b.parentNode)if(b===a)return!0;return!1},bc.attr=function(a,b){var c,d=g(a);return d||(b=b.toLowerCase()),(c=e.attrHandle[b])?c(a):d||$?a.getAttribute(b):(c=a.getAttributeNode(b),c?typeof a[b]=="boolean"?a[b]?b:null:c.specified?c.value:null:null)},e=bc.selectors={cacheLength:50,createPseudo:z,match:W,attrHandle:Z?{}:{href:function(a){return a.getAttribute("href",2)},type:function(a){return a.getAttribute("type")}},find:{ID:d?function(a,b,c){if(typeof b.getElementById!==n&&!c){var d=b.getElementById(a);return d&&d.parentNode?[d]:[]}}:function(a,c,d){if(typeof c.getElementById!==n&&!d){var e=c.getElementById(a);return e?e.id===a||typeof e.getAttributeNode!==n&&e.getAttributeNode("id").value===a?[e]:b:[]}},TAG:Y?function(a,b){if(typeof b.getElementsByTagName!==n)return b.getElementsByTagName(a)}:function(a,b){var c=b.getElementsByTagName(a);if(a==="*"){var d,e=[],f=0;for(;d=c[f];f++)d.nodeType===1&&e.push(d);return e}return c},NAME:ba&&function(a,b){if(typeof b.getElementsByName!==n)return b.getElementsByName(name)},CLASS:_&&function(a,b,c){if(typeof b.getElementsByClassName!==n&&!c)return b.getElementsByClassName(a)}},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(a){return a[1]=a[1].replace(V,""),a[3]=(a[4]||a[5]||"").replace(V,""),a[2]==="~="&&(a[3]=" "+a[3]+" "),a.slice(0,4)},CHILD:function(a){return a[1]=a[1].toLowerCase(),a[1]==="nth"?(a[2]||bc.error(a[0]),a[3]=+(a[3]?a[4]+(a[5]||1):2*(a[2]==="even"||a[2]==="odd")),a[4]=+(a[6]+a[7]||a[2]==="odd")):a[2]&&bc.error(a[0]),a},PSEUDO:function(a){var b,c;if(W.CHILD.test(a[0]))return null;if(a[3])a[2]=a[3];else if(b=a[4])O.test(b)&&(c=bh(b,!0))&&(c=b.indexOf(")",b.length-c)-b.length)&&(b=b.slice(0,c),a[0]=a[0].slice(0,c)),a[2]=b;return a.slice(0,3)}},filter:{ID:d?function(a){return a=a.replace(V,""),function(b){return b.getAttribute("id")===a}}:function(a){return a=a.replace(V,""),function(b){var c=typeof b.getAttributeNode!==n&&b.getAttributeNode("id");return c&&c.value===a}},TAG:function(a){return a==="*"?function(){return!0}:(a=a.replace(V,"").toLowerCase(),function(b){return b.nodeName&&b.nodeName.toLowerCase()===a})},CLASS:function(a){var b=B[o][a];return b||(b=B(a,new RegExp("(^|"+E+")"+a+"("+E+"|$)"))),function(a){return b.test(a.className||typeof a.getAttribute!==n&&a.getAttribute("class")||"")}},ATTR:function(a,b,c){return function(d,e){var f=bc.attr(d,a);return f==null?b==="!=":b?(f+="",b==="="?f===c:b==="!="?f!==c:b==="^="?c&&f.indexOf(c)===0:b==="*="?c&&f.indexOf(c)>-1:b==="$="?c&&f.substr(f.length-c.length)===c:b==="~="?(" "+f+" ").indexOf(c)>-1:b==="|="?f===c||f.substr(0,c.length+1)===c+"-":!1):!0}},CHILD:function(a,b,c,d){return a==="nth"?function(a){var b,e,f=a.parentNode;if(c===1&&d===0)return!0;if(f){e=0;for(b=f.firstChild;b;b=b.nextSibling)if(b.nodeType===1){e++;if(a===b)break}}return e-=d,e===c||e%c===0&&e/c>=0}:function(b){var c=b;switch(a){case"only":case"first":while(c=c.previousSibling)if(c.nodeType===1)return!1;if(a==="first")return!0;c=b;case"last":while(c=c.nextSibling)if(c.nodeType===1)return!1;return!0}}},PSEUDO:function(a,b){var c,d=e.pseudos[a]||e.setFilters[a.toLowerCase()]||bc.error("unsupported pseudo: "+a);return d[o]?d(b):d.length>1?(c=[a,a,"",b],e.setFilters.hasOwnProperty(a.toLowerCase())?z(function(a,c){var e,f=d(a,b),g=f.length;while(g--)e=y.call(a,f[g]),a[e]=!(c[e]=f[g])}):function(a){return d(a,0,c)}):d}},pseudos:{not:z(function(a){var b=[],c=[],d=i(a.replace(L,"$1"));return d[o]?z(function(a,b,c,e){var f,g=d(a,null,e,[]),h=a.length;while(h--)if(f=g[h])a[h]=!(b[h]=f)}):function(a,e,f){return b[0]=a,d(b,null,f,c),!c.pop()}}),has:z(function(a){return function(b){return bc(a,b).length>0}}),contains:z(function(a){return function(b){return(b.textContent||b.innerText||f(b)).indexOf(a)>-1}}),enabled:function(a){return a.disabled===!1},disabled:function(a){return a.disabled===!0},checked:function(a){var b=a.nodeName.toLowerCase();return b==="input"&&!!a.checked||b==="option"&&!!a.selected},selected:function(a){return a.parentNode&&a.parentNode.selectedIndex,a.selected===!0},parent:function(a){return!e.pseudos.empty(a)},empty:function(a){var b;a=a.firstChild;while(a){if(a.nodeName>"@"||(b=a.nodeType)===3||b===4)return!1;a=a.nextSibling}return!0},header:function(a){return T.test(a.nodeName)},text:function(a){var b,c;return a.nodeName.toLowerCase()==="input"&&(b=a.type)==="text"&&((c=a.getAttribute("type"))==null||c.toLowerCase()===b)},radio:bd("radio"),checkbox:bd("checkbox"),file:bd("file"),password:bd("password"),image:bd("image"),submit:be("submit"),reset:be("reset"),button:function(a){var b=a.nodeName.toLowerCase();return b==="input"&&a.type==="button"||b==="button"},input:function(a){return U.test(a.nodeName)},focus:function(a){var b=a.ownerDocument;return a===b.activeElement&&(!b.hasFocus||b.hasFocus())&&(!!a.type||!!a.href)},active:function(a){return a===a.ownerDocument.activeElement},first:bf(function(a,b,c){return[0]}),last:bf(function(a,b,c){return[b-1]}),eq:bf(function(a,b,c){return[c<0?c+b:c]}),even:bf(function(a,b,c){for(var d=0;d<b;d+=2)a.push(d);return a}),odd:bf(function(a,b,c){for(var d=1;d<b;d+=2)a.push(d);return a}),lt:bf(function(a,b,c){for(var d=c<0?c+b:c;--d>=0;)a.push(d);return a}),gt:bf(function(a,b,c){for(var d=c<0?c+b:c;++d<b;)a.push(d);return a})}},j=s.compareDocumentPosition?function(a,b){return a===b?(k=!0,0):(!a.compareDocumentPosition||!b.compareDocumentPosition?a.compareDocumentPosition:a.compareDocumentPosition(b)&4)?-1:1}:function(a,b){if(a===b)return k=!0,0;if(a.sourceIndex&&b.sourceIndex)return a.sourceIndex-b.sourceIndex;var c,d,e=[],f=[],g=a.parentNode,h=b.parentNode,i=g;if(g===h)return bg(a,b);if(!g)return-1;if(!h)return 1;while(i)e.unshift(i),i=i.parentNode;i=h;while(i)f.unshift(i),i=i.parentNode;c=e.length,d=f.length;for(var j=0;j<c&&j<d;j++)if(e[j]!==f[j])return bg(e[j],f[j]);return j===c?bg(a,f[j],-1):bg(e[j],b,1)},[0,0].sort(j),m=!k,bc.uniqueSort=function(a){var b,c=1;k=m,a.sort(j);if(k)for(;b=a[c];c++)b===a[c-1]&&a.splice(c--,1);return a},bc.error=function(a){throw new Error("Syntax error, unrecognized expression: "+a)},i=bc.compile=function(a,b){var c,d=[],e=[],f=D[o][a];if(!f){b||(b=bh(a)),c=b.length;while(c--)f=bm(b[c]),f[o]?d.push(f):e.push(f);f=D(a,bn(e,d))}return f},r.querySelectorAll&&function(){var a,b=bp,c=/'|\\/g,d=/\=[\x20\t\r\n\f]*([^'"\]]*)[\x20\t\r\n\f]*\]/g,e=[":focus"],f=[":active",":focus"],h=s.matchesSelector||s.mozMatchesSelector||s.webkitMatchesSelector||s.oMatchesSelector||s.msMatchesSelector;X(function(a){a.innerHTML="<select><option selected=''></option></select>",a.querySelectorAll("[selected]").length||e.push("\\["+E+"*(?:checked|disabled|ismap|multiple|readonly|selected|value)"),a.querySelectorAll(":checked").length||e.push(":checked")}),X(function(a){a.innerHTML="<p test=''></p>",a.querySelectorAll("[test^='']").length&&e.push("[*^$]="+E+"*(?:\"\"|'')"),a.innerHTML="<input type='hidden'/>",a.querySelectorAll(":enabled").length||e.push(":enabled",":disabled")}),e=new RegExp(e.join("|")),bp=function(a,d,f,g,h){if(!g&&!h&&(!e||!e.test(a))){var i,j,k=!0,l=o,m=d,n=d.nodeType===9&&a;if(d.nodeType===1&&d.nodeName.toLowerCase()!=="object"){i=bh(a),(k=d.getAttribute("id"))?l=k.replace(c,"\\$&"):d.setAttribute("id",l),l="[id='"+l+"'] ",j=i.length;while(j--)i[j]=l+i[j].join("");m=R.test(a)&&d.parentNode||d,n=i.join(",")}if(n)try{return w.apply(f,x.call(m.querySelectorAll(n),0)),f}catch(p){}finally{k||d.removeAttribute("id")}}return b(a,d,f,g,h)},h&&(X(function(b){a=h.call(b,"div");try{h.call(b,"[test!='']:sizzle"),f.push("!=",J)}catch(c){}}),f=new RegExp(f.join("|")),bc.matchesSelector=function(b,c){c=c.replace(d,"='$1']");if(!g(b)&&!f.test(c)&&(!e||!e.test(c)))try{var i=h.call(b,c);if(i||a||b.document&&b.document.nodeType!==11)return i}catch(j){}return bc(c,null,null,[b]).length>0})}(),e.pseudos.nth=e.pseudos.eq,e.filters=bq.prototype=e.pseudos,e.setFilters=new bq,bc.attr=p.attr,p.find=bc,p.expr=bc.selectors,p.expr[":"]=p.expr.pseudos,p.unique=bc.uniqueSort,p.text=bc.getText,p.isXMLDoc=bc.isXML,p.contains=bc.contains}(a);var bc=/Until$/,bd=/^(?:parents|prev(?:Until|All))/,be=/^.[^:#\[\.,]*$/,bf=p.expr.match.needsContext,bg={children:!0,contents:!0,next:!0,prev:!0};p.fn.extend({find:function(a){var b,c,d,e,f,g,h=this;if(typeof a!="string")return p(a).filter(function(){for(b=0,c=h.length;b<c;b++)if(p.contains(h[b],this))return!0});g=this.pushStack("","find",a);for(b=0,c=this.length;b<c;b++){d=g.length,p.find(a,this[b],g);if(b>0)for(e=d;e<g.length;e++)for(f=0;f<d;f++)if(g[f]===g[e]){g.splice(e--,1);break}}return g},has:function(a){var b,c=p(a,this),d=c.length;return this.filter(function(){for(b=0;b<d;b++)if(p.contains(this,c[b]))return!0})},not:function(a){return this.pushStack(bj(this,a,!1),"not",a)},filter:function(a){return this.pushStack(bj(this,a,!0),"filter",a)},is:function(a){return!!a&&(typeof a=="string"?bf.test(a)?p(a,this.context).index(this[0])>=0:p.filter(a,this).length>0:this.filter(a).length>0)},closest:function(a,b){var c,d=0,e=this.length,f=[],g=bf.test(a)||typeof a!="string"?p(a,b||this.context):0;for(;d<e;d++){c=this[d];while(c&&c.ownerDocument&&c!==b&&c.nodeType!==11){if(g?g.index(c)>-1:p.find.matchesSelector(c,a)){f.push(c);break}c=c.parentNode}}return f=f.length>1?p.unique(f):f,this.pushStack(f,"closest",a)},index:function(a){return a?typeof a=="string"?p.inArray(this[0],p(a)):p.inArray(a.jquery?a[0]:a,this):this[0]&&this[0].parentNode?this.prevAll().length:-1},add:function(a,b){var c=typeof a=="string"?p(a,b):p.makeArray(a&&a.nodeType?[a]:a),d=p.merge(this.get(),c);return this.pushStack(bh(c[0])||bh(d[0])?d:p.unique(d))},addBack:function(a){return this.add(a==null?this.prevObject:this.prevObject.filter(a))}}),p.fn.andSelf=p.fn.addBack,p.each({parent:function(a){var b=a.parentNode;return b&&b.nodeType!==11?b:null},parents:function(a){return p.dir(a,"parentNode")},parentsUntil:function(a,b,c){return p.dir(a,"parentNode",c)},next:function(a){return bi(a,"nextSibling")},prev:function(a){return bi(a,"previousSibling")},nextAll:function(a){return p.dir(a,"nextSibling")},prevAll:function(a){return p.dir(a,"previousSibling")},nextUntil:function(a,b,c){return p.dir(a,"nextSibling",c)},prevUntil:function(a,b,c){return p.dir(a,"previousSibling",c)},siblings:function(a){return p.sibling((a.parentNode||{}).firstChild,a)},children:function(a){return p.sibling(a.firstChild)},contents:function(a){return p.nodeName(a,"iframe")?a.contentDocument||a.contentWindow.document:p.merge([],a.childNodes)}},function(a,b){p.fn[a]=function(c,d){var e=p.map(this,b,c);return bc.test(a)||(d=c),d&&typeof d=="string"&&(e=p.filter(d,e)),e=this.length>1&&!bg[a]?p.unique(e):e,this.length>1&&bd.test(a)&&(e=e.reverse()),this.pushStack(e,a,k.call(arguments).join(","))}}),p.extend({filter:function(a,b,c){return c&&(a=":not("+a+")"),b.length===1?p.find.matchesSelector(b[0],a)?[b[0]]:[]:p.find.matches(a,b)},dir:function(a,c,d){var e=[],f=a[c];while(f&&f.nodeType!==9&&(d===b||f.nodeType!==1||!p(f).is(d)))f.nodeType===1&&e.push(f),f=f[c];return e},sibling:function(a,b){var c=[];for(;a;a=a.nextSibling)a.nodeType===1&&a!==b&&c.push(a);return c}});var bl="abbr|article|aside|audio|bdi|canvas|data|datalist|details|figcaption|figure|footer|header|hgroup|mark|meter|nav|output|progress|section|summary|time|video",bm=/ jQuery\d+="(?:null|\d+)"/g,bn=/^\s+/,bo=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/gi,bp=/<([\w:]+)/,bq=/<tbody/i,br=/<|&#?\w+;/,bs=/<(?:script|style|link)/i,bt=/<(?:script|object|embed|option|style)/i,bu=new RegExp("<(?:"+bl+")[\\s/>]","i"),bv=/^(?:checkbox|radio)$/,bw=/checked\s*(?:[^=]|=\s*.checked.)/i,bx=/\/(java|ecma)script/i,by=/^\s*<!(?:\[CDATA\[|\-\-)|[\]\-]{2}>\s*$/g,bz={option:[1,"<select multiple='multiple'>","</select>"],legend:[1,"<fieldset>","</fieldset>"],thead:[1,"<table>","</table>"],tr:[2,"<table><tbody>","</tbody></table>"],td:[3,"<table><tbody><tr>","</tr></tbody></table>"],col:[2,"<table><tbody></tbody><colgroup>","</colgroup></table>"],area:[1,"<map>","</map>"],_default:[0,"",""]},bA=bk(e),bB=bA.appendChild(e.createElement("div"));bz.optgroup=bz.option,bz.tbody=bz.tfoot=bz.colgroup=bz.caption=bz.thead,bz.th=bz.td,p.support.htmlSerialize||(bz._default=[1,"X<div>","</div>"]),p.fn.extend({text:function(a){return p.access(this,function(a){return a===b?p.text(this):this.empty().append((this[0]&&this[0].ownerDocument||e).createTextNode(a))},null,a,arguments.length)},wrapAll:function(a){if(p.isFunction(a))return this.each(function(b){p(this).wrapAll(a.call(this,b))});if(this[0]){var b=p(a,this[0].ownerDocument).eq(0).clone(!0);this[0].parentNode&&b.insertBefore(this[0]),b.map(function(){var a=this;while(a.firstChild&&a.firstChild.nodeType===1)a=a.firstChild;return a}).append(this)}return this},wrapInner:function(a){return p.isFunction(a)?this.each(function(b){p(this).wrapInner(a.call(this,b))}):this.each(function(){var b=p(this),c=b.contents();c.length?c.wrapAll(a):b.append(a)})},wrap:function(a){var b=p.isFunction(a);return this.each(function(c){p(this).wrapAll(b?a.call(this,c):a)})},unwrap:function(){return this.parent().each(function(){p.nodeName(this,"body")||p(this).replaceWith(this.childNodes)}).end()},append:function(){return this.domManip(arguments,!0,function(a){(this.nodeType===1||this.nodeType===11)&&this.appendChild(a)})},prepend:function(){return this.domManip(arguments,!0,function(a){(this.nodeType===1||this.nodeType===11)&&this.insertBefore(a,this.firstChild)})},before:function(){if(!bh(this[0]))return this.domManip(arguments,!1,function(a){this.parentNode.insertBefore(a,this)});if(arguments.length){var a=p.clean(arguments);return this.pushStack(p.merge(a,this),"before",this.selector)}},after:function(){if(!bh(this[0]))return this.domManip(arguments,!1,function(a){this.parentNode.insertBefore(a,this.nextSibling)});if(arguments.length){var a=p.clean(arguments);return this.pushStack(p.merge(this,a),"after",this.selector)}},remove:function(a,b){var c,d=0;for(;(c=this[d])!=null;d++)if(!a||p.filter(a,[c]).length)!b&&c.nodeType===1&&(p.cleanData(c.getElementsByTagName("*")),p.cleanData([c])),c.parentNode&&c.parentNode.removeChild(c);return this},empty:function(){var a,b=0;for(;(a=this[b])!=null;b++){a.nodeType===1&&p.cleanData(a.getElementsByTagName("*"));while(a.firstChild)a.removeChild(a.firstChild)}return this},clone:function(a,b){return a=a==null?!1:a,b=b==null?a:b,this.map(function(){return p.clone(this,a,b)})},html:function(a){return p.access(this,function(a){var c=this[0]||{},d=0,e=this.length;if(a===b)return c.nodeType===1?c.innerHTML.replace(bm,""):b;if(typeof a=="string"&&!bs.test(a)&&(p.support.htmlSerialize||!bu.test(a))&&(p.support.leadingWhitespace||!bn.test(a))&&!bz[(bp.exec(a)||["",""])[1].toLowerCase()]){a=a.replace(bo,"<$1></$2>");try{for(;d<e;d++)c=this[d]||{},c.nodeType===1&&(p.cleanData(c.getElementsByTagName("*")),c.innerHTML=a);c=0}catch(f){}}c&&this.empty().append(a)},null,a,arguments.length)},replaceWith:function(a){return bh(this[0])?this.length?this.pushStack(p(p.isFunction(a)?a():a),"replaceWith",a):this:p.isFunction(a)?this.each(function(b){var c=p(this),d=c.html();c.replaceWith(a.call(this,b,d))}):(typeof a!="string"&&(a=p(a).detach()),this.each(function(){var b=this.nextSibling,c=this.parentNode;p(this).remove(),b?p(b).before(a):p(c).append(a)}))},detach:function(a){return this.remove(a,!0)},domManip:function(a,c,d){a=[].concat.apply([],a);var e,f,g,h,i=0,j=a[0],k=[],l=this.length;if(!p.support.checkClone&&l>1&&typeof j=="string"&&bw.test(j))return this.each(function(){p(this).domManip(a,c,d)});if(p.isFunction(j))return this.each(function(e){var f=p(this);a[0]=j.call(this,e,c?f.html():b),f.domManip(a,c,d)});if(this[0]){e=p.buildFragment(a,this,k),g=e.fragment,f=g.firstChild,g.childNodes.length===1&&(g=f);if(f){c=c&&p.nodeName(f,"tr");for(h=e.cacheable||l-1;i<l;i++)d.call(c&&p.nodeName(this[i],"table")?bC(this[i],"tbody"):this[i],i===h?g:p.clone(g,!0,!0))}g=f=null,k.length&&p.each(k,function(a,b){b.src?p.ajax?p.ajax({url:b.src,type:"GET",dataType:"script",async:!1,global:!1,"throws":!0}):p.error("no ajax"):p.globalEval((b.text||b.textContent||b.innerHTML||"").replace(by,"")),b.parentNode&&b.parentNode.removeChild(b)})}return this}}),p.buildFragment=function(a,c,d){var f,g,h,i=a[0];return c=c||e,c=!c.nodeType&&c[0]||c,c=c.ownerDocument||c,a.length===1&&typeof i=="string"&&i.length<512&&c===e&&i.charAt(0)==="<"&&!bt.test(i)&&(p.support.checkClone||!bw.test(i))&&(p.support.html5Clone||!bu.test(i))&&(g=!0,f=p.fragments[i],h=f!==b),f||(f=c.createDocumentFragment(),p.clean(a,c,f,d),g&&(p.fragments[i]=h&&f)),{fragment:f,cacheable:g}},p.fragments={},p.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(a,b){p.fn[a]=function(c){var d,e=0,f=[],g=p(c),h=g.length,i=this.length===1&&this[0].parentNode;if((i==null||i&&i.nodeType===11&&i.childNodes.length===1)&&h===1)return g[b](this[0]),this;for(;e<h;e++)d=(e>0?this.clone(!0):this).get(),p(g[e])[b](d),f=f.concat(d);return this.pushStack(f,a,g.selector)}}),p.extend({clone:function(a,b,c){var d,e,f,g;p.support.html5Clone||p.isXMLDoc(a)||!bu.test("<"+a.nodeName+">")?g=a.cloneNode(!0):(bB.innerHTML=a.outerHTML,bB.removeChild(g=bB.firstChild));if((!p.support.noCloneEvent||!p.support.noCloneChecked)&&(a.nodeType===1||a.nodeType===11)&&!p.isXMLDoc(a)){bE(a,g),d=bF(a),e=bF(g);for(f=0;d[f];++f)e[f]&&bE(d[f],e[f])}if(b){bD(a,g);if(c){d=bF(a),e=bF(g);for(f=0;d[f];++f)bD(d[f],e[f])}}return d=e=null,g},clean:function(a,b,c,d){var f,g,h,i,j,k,l,m,n,o,q,r,s=b===e&&bA,t=[];if(!b||typeof b.createDocumentFragment=="undefined")b=e;for(f=0;(h=a[f])!=null;f++){typeof h=="number"&&(h+="");if(!h)continue;if(typeof h=="string")if(!br.test(h))h=b.createTextNode(h);else{s=s||bk(b),l=b.createElement("div"),s.appendChild(l),h=h.replace(bo,"<$1></$2>"),i=(bp.exec(h)||["",""])[1].toLowerCase(),j=bz[i]||bz._default,k=j[0],l.innerHTML=j[1]+h+j[2];while(k--)l=l.lastChild;if(!p.support.tbody){m=bq.test(h),n=i==="table"&&!m?l.firstChild&&l.firstChild.childNodes:j[1]==="<table>"&&!m?l.childNodes:[];for(g=n.length-1;g>=0;--g)p.nodeName(n[g],"tbody")&&!n[g].childNodes.length&&n[g].parentNode.removeChild(n[g])}!p.support.leadingWhitespace&&bn.test(h)&&l.insertBefore(b.createTextNode(bn.exec(h)[0]),l.firstChild),h=l.childNodes,l.parentNode.removeChild(l)}h.nodeType?t.push(h):p.merge(t,h)}l&&(h=l=s=null);if(!p.support.appendChecked)for(f=0;(h=t[f])!=null;f++)p.nodeName(h,"input")?bG(h):typeof h.getElementsByTagName!="undefined"&&p.grep(h.getElementsByTagName("input"),bG);if(c){q=function(a){if(!a.type||bx.test(a.type))return d?d.push(a.parentNode?a.parentNode.removeChild(a):a):c.appendChild(a)};for(f=0;(h=t[f])!=null;f++)if(!p.nodeName(h,"script")||!q(h))c.appendChild(h),typeof h.getElementsByTagName!="undefined"&&(r=p.grep(p.merge([],h.getElementsByTagName("script")),q),t.splice.apply(t,[f+1,0].concat(r)),f+=r.length)}return t},cleanData:function(a,b){var c,d,e,f,g=0,h=p.expando,i=p.cache,j=p.support.deleteExpando,k=p.event.special;for(;(e=a[g])!=null;g++)if(b||p.acceptData(e)){d=e[h],c=d&&i[d];if(c){if(c.events)for(f in c.events)k[f]?p.event.remove(e,f):p.removeEvent(e,f,c.handle);i[d]&&(delete i[d],j?delete e[h]:e.removeAttribute?e.removeAttribute(h):e[h]=null,p.deletedIds.push(d))}}}}),function(){var a,b;p.uaMatch=function(a){a=a.toLowerCase();var b=/(chrome)[ \/]([\w.]+)/.exec(a)||/(webkit)[ \/]([\w.]+)/.exec(a)||/(opera)(?:.*version|)[ \/]([\w.]+)/.exec(a)||/(msie) ([\w.]+)/.exec(a)||a.indexOf("compatible")<0&&/(mozilla)(?:.*? rv:([\w.]+)|)/.exec(a)||[];return{browser:b[1]||"",version:b[2]||"0"}},a=p.uaMatch(g.userAgent),b={},a.browser&&(b[a.browser]=!0,b.version=a.version),b.chrome?b.webkit=!0:b.webkit&&(b.safari=!0),p.browser=b,p.sub=function(){function a(b,c){return new a.fn.init(b,c)}p.extend(!0,a,this),a.superclass=this,a.fn=a.prototype=this(),a.fn.constructor=a,a.sub=this.sub,a.fn.init=function c(c,d){return d&&d instanceof p&&!(d instanceof a)&&(d=a(d)),p.fn.init.call(this,c,d,b)},a.fn.init.prototype=a.fn;var b=a(e);return a}}();var bH,bI,bJ,bK=/alpha\([^)]*\)/i,bL=/opacity=([^)]*)/,bM=/^(top|right|bottom|left)$/,bN=/^(none|table(?!-c[ea]).+)/,bO=/^margin/,bP=new RegExp("^("+q+")(.*)$","i"),bQ=new RegExp("^("+q+")(?!px)[a-z%]+$","i"),bR=new RegExp("^([-+])=("+q+")","i"),bS={},bT={position:"absolute",visibility:"hidden",display:"block"},bU={letterSpacing:0,fontWeight:400},bV=["Top","Right","Bottom","Left"],bW=["Webkit","O","Moz","ms"],bX=p.fn.toggle;p.fn.extend({css:function(a,c){return p.access(this,function(a,c,d){return d!==b?p.style(a,c,d):p.css(a,c)},a,c,arguments.length>1)},show:function(){return b$(this,!0)},hide:function(){return b$(this)},toggle:function(a,b){var c=typeof a=="boolean";return p.isFunction(a)&&p.isFunction(b)?bX.apply(this,arguments):this.each(function(){(c?a:bZ(this))?p(this).show():p(this).hide()})}}),p.extend({cssHooks:{opacity:{get:function(a,b){if(b){var c=bH(a,"opacity");return c===""?"1":c}}}},cssNumber:{fillOpacity:!0,fontWeight:!0,lineHeight:!0,opacity:!0,orphans:!0,widows:!0,zIndex:!0,zoom:!0},cssProps:{"float":p.support.cssFloat?"cssFloat":"styleFloat"},style:function(a,c,d,e){if(!a||a.nodeType===3||a.nodeType===8||!a.style)return;var f,g,h,i=p.camelCase(c),j=a.style;c=p.cssProps[i]||(p.cssProps[i]=bY(j,i)),h=p.cssHooks[c]||p.cssHooks[i];if(d===b)return h&&"get"in h&&(f=h.get(a,!1,e))!==b?f:j[c];g=typeof d,g==="string"&&(f=bR.exec(d))&&(d=(f[1]+1)*f[2]+parseFloat(p.css(a,c)),g="number");if(d==null||g==="number"&&isNaN(d))return;g==="number"&&!p.cssNumber[i]&&(d+="px");if(!h||!("set"in h)||(d=h.set(a,d,e))!==b)try{j[c]=d}catch(k){}},css:function(a,c,d,e){var f,g,h,i=p.camelCase(c);return c=p.cssProps[i]||(p.cssProps[i]=bY(a.style,i)),h=p.cssHooks[c]||p.cssHooks[i],h&&"get"in h&&(f=h.get(a,!0,e)),f===b&&(f=bH(a,c)),f==="normal"&&c in bU&&(f=bU[c]),d||e!==b?(g=parseFloat(f),d||p.isNumeric(g)?g||0:f):f},swap:function(a,b,c){var d,e,f={};for(e in b)f[e]=a.style[e],a.style[e]=b[e];d=c.call(a);for(e in b)a.style[e]=f[e];return d}}),a.getComputedStyle?bH=function(b,c){var d,e,f,g,h=a.getComputedStyle(b,null),i=b.style;return h&&(d=h[c],d===""&&!p.contains(b.ownerDocument,b)&&(d=p.style(b,c)),bQ.test(d)&&bO.test(c)&&(e=i.width,f=i.minWidth,g=i.maxWidth,i.minWidth=i.maxWidth=i.width=d,d=h.width,i.width=e,i.minWidth=f,i.maxWidth=g)),d}:e.documentElement.currentStyle&&(bH=function(a,b){var c,d,e=a.currentStyle&&a.currentStyle[b],f=a.style;return e==null&&f&&f[b]&&(e=f[b]),bQ.test(e)&&!bM.test(b)&&(c=f.left,d=a.runtimeStyle&&a.runtimeStyle.left,d&&(a.runtimeStyle.left=a.currentStyle.left),f.left=b==="fontSize"?"1em":e,e=f.pixelLeft+"px",f.left=c,d&&(a.runtimeStyle.left=d)),e===""?"auto":e}),p.each(["height","width"],function(a,b){p.cssHooks[b]={get:function(a,c,d){if(c)return a.offsetWidth===0&&bN.test(bH(a,"display"))?p.swap(a,bT,function(){return cb(a,b,d)}):cb(a,b,d)},set:function(a,c,d){return b_(a,c,d?ca(a,b,d,p.support.boxSizing&&p.css(a,"boxSizing")==="border-box"):0)}}}),p.support.opacity||(p.cssHooks.opacity={get:function(a,b){return bL.test((b&&a.currentStyle?a.currentStyle.filter:a.style.filter)||"")?.01*parseFloat(RegExp.$1)+"":b?"1":""},set:function(a,b){var c=a.style,d=a.currentStyle,e=p.isNumeric(b)?"alpha(opacity="+b*100+")":"",f=d&&d.filter||c.filter||"";c.zoom=1;if(b>=1&&p.trim(f.replace(bK,""))===""&&c.removeAttribute){c.removeAttribute("filter");if(d&&!d.filter)return}c.filter=bK.test(f)?f.replace(bK,e):f+" "+e}}),p(function(){p.support.reliableMarginRight||(p.cssHooks.marginRight={get:function(a,b){return p.swap(a,{display:"inline-block"},function(){if(b)return bH(a,"marginRight")})}}),!p.support.pixelPosition&&p.fn.position&&p.each(["top","left"],function(a,b){p.cssHooks[b]={get:function(a,c){if(c){var d=bH(a,b);return bQ.test(d)?p(a).position()[b]+"px":d}}}})}),p.expr&&p.expr.filters&&(p.expr.filters.hidden=function(a){return a.offsetWidth===0&&a.offsetHeight===0||!p.support.reliableHiddenOffsets&&(a.style&&a.style.display||bH(a,"display"))==="none"},p.expr.filters.visible=function(a){return!p.expr.filters.hidden(a)}),p.each({margin:"",padding:"",border:"Width"},function(a,b){p.cssHooks[a+b]={expand:function(c){var d,e=typeof c=="string"?c.split(" "):[c],f={};for(d=0;d<4;d++)f[a+bV[d]+b]=e[d]||e[d-2]||e[0];return f}},bO.test(a)||(p.cssHooks[a+b].set=b_)});var cd=/%20/g,ce=/\[\]$/,cf=/\r?\n/g,cg=/^(?:color|date|datetime|datetime-local|email|hidden|month|number|password|range|search|tel|text|time|url|week)$/i,ch=/^(?:select|textarea)/i;p.fn.extend({serialize:function(){return p.param(this.serializeArray())},serializeArray:function(){return this.map(function(){return this.elements?p.makeArray(this.elements):this}).filter(function(){return this.name&&!this.disabled&&(this.checked||ch.test(this.nodeName)||cg.test(this.type))}).map(function(a,b){var c=p(this).val();return c==null?null:p.isArray(c)?p.map(c,function(a,c){return{name:b.name,value:a.replace(cf,"\r\n")}}):{name:b.name,value:c.replace(cf,"\r\n")}}).get()}}),p.param=function(a,c){var d,e=[],f=function(a,b){b=p.isFunction(b)?b():b==null?"":b,e[e.length]=encodeURIComponent(a)+"="+encodeURIComponent(b)};c===b&&(c=p.ajaxSettings&&p.ajaxSettings.traditional);if(p.isArray(a)||a.jquery&&!p.isPlainObject(a))p.each(a,function(){f(this.name,this.value)});else for(d in a)ci(d,a[d],c,f);return e.join("&").replace(cd,"+")};var cj,ck,cl=/#.*$/,cm=/^(.*?):[ \t]*([^\r\n]*)\r?$/mg,cn=/^(?:about|app|app\-storage|.+\-extension|file|res|widget):$/,co=/^(?:GET|HEAD)$/,cp=/^\/\//,cq=/\?/,cr=/<script\b[^<]*(?:(?!<\/script>)<[^<]*)*<\/script>/gi,cs=/([?&])_=[^&]*/,ct=/^([\w\+\.\-]+:)(?:\/\/([^\/?#:]*)(?::(\d+)|)|)/,cu=p.fn.load,cv={},cw={},cx=["*/"]+["*"];try{ck=f.href}catch(cy){ck=e.createElement("a"),ck.href="",ck=ck.href}cj=ct.exec(ck.toLowerCase())||[],p.fn.load=function(a,c,d){if(typeof a!="string"&&cu)return cu.apply(this,arguments);if(!this.length)return this;var e,f,g,h=this,i=a.indexOf(" ");return i>=0&&(e=a.slice(i,a.length),a=a.slice(0,i)),p.isFunction(c)?(d=c,c=b):c&&typeof c=="object"&&(f="POST"),p.ajax({url:a,type:f,dataType:"html",data:c,complete:function(a,b){d&&h.each(d,g||[a.responseText,b,a])}}).done(function(a){g=arguments,h.html(e?p("<div>").append(a.replace(cr,"")).find(e):a)}),this},p.each("ajaxStart ajaxStop ajaxComplete ajaxError ajaxSuccess ajaxSend".split(" "),function(a,b){p.fn[b]=function(a){return this.on(b,a)}}),p.each(["get","post"],function(a,c){p[c]=function(a,d,e,f){return p.isFunction(d)&&(f=f||e,e=d,d=b),p.ajax({type:c,url:a,data:d,success:e,dataType:f})}}),p.extend({getScript:function(a,c){return p.get(a,b,c,"script")},getJSON:function(a,b,c){return p.get(a,b,c,"json")},ajaxSetup:function(a,b){return b?cB(a,p.ajaxSettings):(b=a,a=p.ajaxSettings),cB(a,b),a},ajaxSettings:{url:ck,isLocal:cn.test(cj[1]),global:!0,type:"GET",contentType:"application/x-www-form-urlencoded; charset=UTF-8",processData:!0,async:!0,accepts:{xml:"application/xml, text/xml",html:"text/html",text:"text/plain",json:"application/json, text/javascript","*":cx},contents:{xml:/xml/,html:/html/,json:/json/},responseFields:{xml:"responseXML",text:"responseText"},converters:{"* text":a.String,"text html":!0,"text json":p.parseJSON,"text xml":p.parseXML},flatOptions:{context:!0,url:!0}},ajaxPrefilter:cz(cv),ajaxTransport:cz(cw),ajax:function(a,c){function y(a,c,f,i){var k,s,t,u,w,y=c;if(v===2)return;v=2,h&&clearTimeout(h),g=b,e=i||"",x.readyState=a>0?4:0,f&&(u=cC(l,x,f));if(a>=200&&a<300||a===304)l.ifModified&&(w=x.getResponseHeader("Last-Modified"),w&&(p.lastModified[d]=w),w=x.getResponseHeader("Etag"),w&&(p.etag[d]=w)),a===304?(y="notmodified",k=!0):(k=cD(l,u),y=k.state,s=k.data,t=k.error,k=!t);else{t=y;if(!y||a)y="error",a<0&&(a=0)}x.status=a,x.statusText=(c||y)+"",k?o.resolveWith(m,[s,y,x]):o.rejectWith(m,[x,y,t]),x.statusCode(r),r=b,j&&n.trigger("ajax"+(k?"Success":"Error"),[x,l,k?s:t]),q.fireWith(m,[x,y]),j&&(n.trigger("ajaxComplete",[x,l]),--p.active||p.event.trigger("ajaxStop"))}typeof a=="object"&&(c=a,a=b),c=c||{};var d,e,f,g,h,i,j,k,l=p.ajaxSetup({},c),m=l.context||l,n=m!==l&&(m.nodeType||m instanceof p)?p(m):p.event,o=p.Deferred(),q=p.Callbacks("once memory"),r=l.statusCode||{},t={},u={},v=0,w="canceled",x={readyState:0,setRequestHeader:function(a,b){if(!v){var c=a.toLowerCase();a=u[c]=u[c]||a,t[a]=b}return this},getAllResponseHeaders:function(){return v===2?e:null},getResponseHeader:function(a){var c;if(v===2){if(!f){f={};while(c=cm.exec(e))f[c[1].toLowerCase()]=c[2]}c=f[a.toLowerCase()]}return c===b?null:c},overrideMimeType:function(a){return v||(l.mimeType=a),this},abort:function(a){return a=a||w,g&&g.abort(a),y(0,a),this}};o.promise(x),x.success=x.done,x.error=x.fail,x.complete=q.add,x.statusCode=function(a){if(a){var b;if(v<2)for(b in a)r[b]=[r[b],a[b]];else b=a[x.status],x.always(b)}return this},l.url=((a||l.url)+"").replace(cl,"").replace(cp,cj[1]+"//"),l.dataTypes=p.trim(l.dataType||"*").toLowerCase().split(s),l.crossDomain==null&&(i=ct.exec(l.url.toLowerCase())||!1,l.crossDomain=i&&i.join(":")+(i[3]?"":i[1]==="http:"?80:443)!==cj.join(":")+(cj[3]?"":cj[1]==="http:"?80:443)),l.data&&l.processData&&typeof l.data!="string"&&(l.data=p.param(l.data,l.traditional)),cA(cv,l,c,x);if(v===2)return x;j=l.global,l.type=l.type.toUpperCase(),l.hasContent=!co.test(l.type),j&&p.active++===0&&p.event.trigger("ajaxStart");if(!l.hasContent){l.data&&(l.url+=(cq.test(l.url)?"&":"?")+l.data,delete l.data),d=l.url;if(l.cache===!1){var z=p.now(),A=l.url.replace(cs,"$1_="+z);l.url=A+(A===l.url?(cq.test(l.url)?"&":"?")+"_="+z:"")}}(l.data&&l.hasContent&&l.contentType!==!1||c.contentType)&&x.setRequestHeader("Content-Type",l.contentType),l.ifModified&&(d=d||l.url,p.lastModified[d]&&x.setRequestHeader("If-Modified-Since",p.lastModified[d]),p.etag[d]&&x.setRequestHeader("If-None-Match",p.etag[d])),x.setRequestHeader("Accept",l.dataTypes[0]&&l.accepts[l.dataTypes[0]]?l.accepts[l.dataTypes[0]]+(l.dataTypes[0]!=="*"?", "+cx+"; q=0.01":""):l.accepts["*"]);for(k in l.headers)x.setRequestHeader(k,l.headers[k]);if(!l.beforeSend||l.beforeSend.call(m,x,l)!==!1&&v!==2){w="abort";for(k in{success:1,error:1,complete:1})x[k](l[k]);g=cA(cw,l,c,x);if(!g)y(-1,"No Transport");else{x.readyState=1,j&&n.trigger("ajaxSend",[x,l]),l.async&&l.timeout>0&&(h=setTimeout(function(){x.abort("timeout")},l.timeout));try{v=1,g.send(t,y)}catch(B){if(v<2)y(-1,B);else throw B}}return x}return x.abort()},active:0,lastModified:{},etag:{}});var cE=[],cF=/\?/,cG=/(=)\?(?=&|$)|\?\?/,cH=p.now();p.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var a=cE.pop()||p.expando+"_"+cH++;return this[a]=!0,a}}),p.ajaxPrefilter("json jsonp",function(c,d,e){var f,g,h,i=c.data,j=c.url,k=c.jsonp!==!1,l=k&&cG.test(j),m=k&&!l&&typeof i=="string"&&!(c.contentType||"").indexOf("application/x-www-form-urlencoded")&&cG.test(i);if(c.dataTypes[0]==="jsonp"||l||m)return f=c.jsonpCallback=p.isFunction(c.jsonpCallback)?c.jsonpCallback():c.jsonpCallback,g=a[f],l?c.url=j.replace(cG,"$1"+f):m?c.data=i.replace(cG,"$1"+f):k&&(c.url+=(cF.test(j)?"&":"?")+c.jsonp+"="+f),c.converters["script json"]=function(){return h||p.error(f+" was not called"),h[0]},c.dataTypes[0]="json",a[f]=function(){h=arguments},e.always(function(){a[f]=g,c[f]&&(c.jsonpCallback=d.jsonpCallback,cE.push(f)),h&&p.isFunction(g)&&g(h[0]),h=g=b}),"script"}),p.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/javascript|ecmascript/},converters:{"text script":function(a){return p.globalEval(a),a}}}),p.ajaxPrefilter("script",function(a){a.cache===b&&(a.cache=!1),a.crossDomain&&(a.type="GET",a.global=!1)}),p.ajaxTransport("script",function(a){if(a.crossDomain){var c,d=e.head||e.getElementsByTagName("head")[0]||e.documentElement;return{send:function(f,g){c=e.createElement("script"),c.async="async",a.scriptCharset&&(c.charset=a.scriptCharset),c.src=a.url,c.onload=c.onreadystatechange=function(a,e){if(e||!c.readyState||/loaded|complete/.test(c.readyState))c.onload=c.onreadystatechange=null,d&&c.parentNode&&d.removeChild(c),c=b,e||g(200,"success")},d.insertBefore(c,d.firstChild)},abort:function(){c&&c.onload(0,1)}}}});var cI,cJ=a.ActiveXObject?function(){for(var a in cI)cI[a](0,1)}:!1,cK=0;p.ajaxSettings.xhr=a.ActiveXObject?function(){return!this.isLocal&&cL()||cM()}:cL,function(a){p.extend(p.support,{ajax:!!a,cors:!!a&&"withCredentials"in a})}(p.ajaxSettings.xhr()),p.support.ajax&&p.ajaxTransport(function(c){if(!c.crossDomain||p.support.cors){var d;return{send:function(e,f){var g,h,i=c.xhr();c.username?i.open(c.type,c.url,c.async,c.username,c.password):i.open(c.type,c.url,c.async);if(c.xhrFields)for(h in c.xhrFields)i[h]=c.xhrFields[h];c.mimeType&&i.overrideMimeType&&i.overrideMimeType(c.mimeType),!c.crossDomain&&!e["X-Requested-With"]&&(e["X-Requested-With"]="XMLHttpRequest");try{for(h in e)i.setRequestHeader(h,e[h])}catch(j){}i.send(c.hasContent&&c.data||null),d=function(a,e){var h,j,k,l,m;try{if(d&&(e||i.readyState===4)){d=b,g&&(i.onreadystatechange=p.noop,cJ&&delete cI[g]);if(e)i.readyState!==4&&i.abort();else{h=i.status,k=i.getAllResponseHeaders(),l={},m=i.responseXML,m&&m.documentElement&&(l.xml=m);try{l.text=i.responseText}catch(a){}try{j=i.statusText}catch(n){j=""}!h&&c.isLocal&&!c.crossDomain?h=l.text?200:404:h===1223&&(h=204)}}}catch(o){e||f(-1,o)}l&&f(h,j,l,k)},c.async?i.readyState===4?setTimeout(d,0):(g=++cK,cJ&&(cI||(cI={},p(a).unload(cJ)),cI[g]=d),i.onreadystatechange=d):d()},abort:function(){d&&d(0,1)}}}});var cN,cO,cP=/^(?:toggle|show|hide)$/,cQ=new RegExp("^(?:([-+])=|)("+q+")([a-z%]*)$","i"),cR=/queueHooks$/,cS=[cY],cT={"*":[function(a,b){var c,d,e=this.createTween(a,b),f=cQ.exec(b),g=e.cur(),h=+g||0,i=1,j=20;if(f){c=+f[2],d=f[3]||(p.cssNumber[a]?"":"px");if(d!=="px"&&h){h=p.css(e.elem,a,!0)||c||1;do i=i||".5",h=h/i,p.style(e.elem,a,h+d);while(i!==(i=e.cur()/g)&&i!==1&&--j)}e.unit=d,e.start=h,e.end=f[1]?h+(f[1]+1)*c:c}return e}]};p.Animation=p.extend(cW,{tweener:function(a,b){p.isFunction(a)?(b=a,a=["*"]):a=a.split(" ");var c,d=0,e=a.length;for(;d<e;d++)c=a[d],cT[c]=cT[c]||[],cT[c].unshift(b)},prefilter:function(a,b){b?cS.unshift(a):cS.push(a)}}),p.Tween=cZ,cZ.prototype={constructor:cZ,init:function(a,b,c,d,e,f){this.elem=a,this.prop=c,this.easing=e||"swing",this.options=b,this.start=this.now=this.cur(),this.end=d,this.unit=f||(p.cssNumber[c]?"":"px")},cur:function(){var a=cZ.propHooks[this.prop];return a&&a.get?a.get(this):cZ.propHooks._default.get(this)},run:function(a){var b,c=cZ.propHooks[this.prop];return this.options.duration?this.pos=b=p.easing[this.easing](a,this.options.duration*a,0,1,this.options.duration):this.pos=b=a,this.now=(this.end-this.start)*b+this.start,this.options.step&&this.options.step.call(this.elem,this.now,this),c&&c.set?c.set(this):cZ.propHooks._default.set(this),this}},cZ.prototype.init.prototype=cZ.prototype,cZ.propHooks={_default:{get:function(a){var b;return a.elem[a.prop]==null||!!a.elem.style&&a.elem.style[a.prop]!=null?(b=p.css(a.elem,a.prop,!1,""),!b||b==="auto"?0:b):a.elem[a.prop]},set:function(a){p.fx.step[a.prop]?p.fx.step[a.prop](a):a.elem.style&&(a.elem.style[p.cssProps[a.prop]]!=null||p.cssHooks[a.prop])?p.style(a.elem,a.prop,a.now+a.unit):a.elem[a.prop]=a.now}}},cZ.propHooks.scrollTop=cZ.propHooks.scrollLeft={set:function(a){a.elem.nodeType&&a.elem.parentNode&&(a.elem[a.prop]=a.now)}},p.each(["toggle","show","hide"],function(a,b){var c=p.fn[b];p.fn[b]=function(d,e,f){return d==null||typeof d=="boolean"||!a&&p.isFunction(d)&&p.isFunction(e)?c.apply(this,arguments):this.animate(c$(b,!0),d,e,f)}}),p.fn.extend({fadeTo:function(a,b,c,d){return this.filter(bZ).css("opacity",0).show().end().animate({opacity:b},a,c,d)},animate:function(a,b,c,d){var e=p.isEmptyObject(a),f=p.speed(b,c,d),g=function(){var b=cW(this,p.extend({},a),f);e&&b.stop(!0)};return e||f.queue===!1?this.each(g):this.queue(f.queue,g)},stop:function(a,c,d){var e=function(a){var b=a.stop;delete a.stop,b(d)};return typeof a!="string"&&(d=c,c=a,a=b),c&&a!==!1&&this.queue(a||"fx",[]),this.each(function(){var b=!0,c=a!=null&&a+"queueHooks",f=p.timers,g=p._data(this);if(c)g[c]&&g[c].stop&&e(g[c]);else for(c in g)g[c]&&g[c].stop&&cR.test(c)&&e(g[c]);for(c=f.length;c--;)f[c].elem===this&&(a==null||f[c].queue===a)&&(f[c].anim.stop(d),b=!1,f.splice(c,1));(b||!d)&&p.dequeue(this,a)})}}),p.each({slideDown:c$("show"),slideUp:c$("hide"),slideToggle:c$("toggle"),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"},fadeToggle:{opacity:"toggle"}},function(a,b){p.fn[a]=function(a,c,d){return this.animate(b,a,c,d)}}),p.speed=function(a,b,c){var d=a&&typeof a=="object"?p.extend({},a):{complete:c||!c&&b||p.isFunction(a)&&a,duration:a,easing:c&&b||b&&!p.isFunction(b)&&b};d.duration=p.fx.off?0:typeof d.duration=="number"?d.duration:d.duration in p.fx.speeds?p.fx.speeds[d.duration]:p.fx.speeds._default;if(d.queue==null||d.queue===!0)d.queue="fx";return d.old=d.complete,d.complete=function(){p.isFunction(d.old)&&d.old.call(this),d.queue&&p.dequeue(this,d.queue)},d},p.easing={linear:function(a){return a},swing:function(a){return.5-Math.cos(a*Math.PI)/2}},p.timers=[],p.fx=cZ.prototype.init,p.fx.tick=function(){var a,b=p.timers,c=0;for(;c<b.length;c++)a=b[c],!a()&&b[c]===a&&b.splice(c--,1);b.length||p.fx.stop()},p.fx.timer=function(a){a()&&p.timers.push(a)&&!cO&&(cO=setInterval(p.fx.tick,p.fx.interval))},p.fx.interval=13,p.fx.stop=function(){clearInterval(cO),cO=null},p.fx.speeds={slow:600,fast:200,_default:400},p.fx.step={},p.expr&&p.expr.filters&&(p.expr.filters.animated=function(a){return p.grep(p.timers,function(b){return a===b.elem}).length});var c_=/^(?:body|html)$/i;p.fn.offset=function(a){if(arguments.length)return a===b?this:this.each(function(b){p.offset.setOffset(this,a,b)});var c,d,e,f,g,h,i,j={top:0,left:0},k=this[0],l=k&&k.ownerDocument;if(!l)return;return(d=l.body)===k?p.offset.bodyOffset(k):(c=l.documentElement,p.contains(c,k)?(typeof k.getBoundingClientRect!="undefined"&&(j=k.getBoundingClientRect()),e=da(l),f=c.clientTop||d.clientTop||0,g=c.clientLeft||d.clientLeft||0,h=e.pageYOffset||c.scrollTop,i=e.pageXOffset||c.scrollLeft,{top:j.top+h-f,left:j.left+i-g}):j)},p.offset={bodyOffset:function(a){var b=a.offsetTop,c=a.offsetLeft;return p.support.doesNotIncludeMarginInBodyOffset&&(b+=parseFloat(p.css(a,"marginTop"))||0,c+=parseFloat(p.css(a,"marginLeft"))||0),{top:b,left:c}},setOffset:function(a,b,c){var d=p.css(a,"position");d==="static"&&(a.style.position="relative");var e=p(a),f=e.offset(),g=p.css(a,"top"),h=p.css(a,"left"),i=(d==="absolute"||d==="fixed")&&p.inArray("auto",[g,h])>-1,j={},k={},l,m;i?(k=e.position(),l=k.top,m=k.left):(l=parseFloat(g)||0,m=parseFloat(h)||0),p.isFunction(b)&&(b=b.call(a,c,f)),b.top!=null&&(j.top=b.top-f.top+l),b.left!=null&&(j.left=b.left-f.left+m),"using"in b?b.using.call(a,j):e.css(j)}},p.fn.extend({position:function(){if(!this[0])return;var a=this[0],b=this.offsetParent(),c=this.offset(),d=c_.test(b[0].nodeName)?{top:0,left:0}:b.offset();return c.top-=parseFloat(p.css(a,"marginTop"))||0,c.left-=parseFloat(p.css(a,"marginLeft"))||0,d.top+=parseFloat(p.css(b[0],"borderTopWidth"))||0,d.left+=parseFloat(p.css(b[0],"borderLeftWidth"))||0,{top:c.top-d.top,left:c.left-d.left}},offsetParent:function(){return this.map(function(){var a=this.offsetParent||e.body;while(a&&!c_.test(a.nodeName)&&p.css(a,"position")==="static")a=a.offsetParent;return a||e.body})}}),p.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(a,c){var d=/Y/.test(c);p.fn[a]=function(e){return p.access(this,function(a,e,f){var g=da(a);if(f===b)return g?c in g?g[c]:g.document.documentElement[e]:a[e];g?g.scrollTo(d?p(g).scrollLeft():f,d?f:p(g).scrollTop()):a[e]=f},a,e,arguments.length,null)}}),p.each({Height:"height",Width:"width"},function(a,c){p.each({padding:"inner"+a,content:c,"":"outer"+a},function(d,e){p.fn[e]=function(e,f){var g=arguments.length&&(d||typeof e!="boolean"),h=d||(e===!0||f===!0?"margin":"border");return p.access(this,function(c,d,e){var f;return p.isWindow(c)?c.document.documentElement["client"+a]:c.nodeType===9?(f=c.documentElement,Math.max(c.body["scroll"+a],f["scroll"+a],c.body["offset"+a],f["offset"+a],f["client"+a])):e===b?p.css(c,d,e,h):p.style(c,d,e,h)},c,g?e:b,g,null)}})}),a.jQuery=a.$=p,typeof define=="function"&&define.amd&&define.amd.jQuery&&define("jquery",[],function(){return p})})(window); |
| URL | http://zero.webappsecurity.com/resources/js/placeholders.min.js |
| Method | GET |
| Parameter | |
| Attack | Origin: http://4qCMHsQq.com |
| Evidence | Access-Control-Allow-Origin: * |
| Request Header - size: 335 bytes. |
GET http://zero.webappsecurity.com/resources/js/placeholders.min.js HTTP/1.1
Host: zero.webappsecurity.com User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0 Pragma: no-cache Cache-Control: no-cache Referer: http://zero.webappsecurity.com Origin: http://4qCMHsQq.com Content-Length: 0 |
| Request Body - size: 0 bytes. |
|
| Response Header - size: 359 bytes. |
HTTP/1.1 200 OK
Date: Mon, 14 Mar 2022 07:23:17 GMT Server: Apache-Coyote/1.1 Access-Control-Allow-Origin: * Accept-Ranges: bytes ETag: W/"5615-1360116138000" Last-Modified: Wed, 06 Feb 2013 02:02:18 GMT Cache-Control: max-age=2678400 Expires: Thu, 14 Apr 2022 07:23:18 GMT Content-Type: application/javascript;charset=UTF-8 Content-Length: 5615 |
| Response Body - size: 5,615 bytes. |
var Placeholders=function(){var validTypes=["text","search","url","tel","email","password","number","textarea"],settings={live:false,hideOnFocus:false,className:"placeholderspolyfill",textColor:"#999",styleImportant:true},badKeys=[37,38,39,40],interval,valueKeyDown,classNameRegExp=new RegExp("\\b"+settings.className+"\\b");function cursorToStart(elem){var range;if(elem.createTextRange){range=elem.createTextRange();range.move("character",0);range.select()}else if(elem.selectionStart){elem.focus();
elem.setSelectionRange(0,0)}}function focusHandler(){var type;if(this.value===this.getAttribute("placeholder"))if(!settings.hideOnFocus)cursorToStart(this);else{this.className=this.className.replace(classNameRegExp,"");this.value="";type=this.getAttribute("data-placeholdertype");if(type)this.type=type}}function blurHandler(){var type;if(this.value===""){this.className=this.className+" "+settings.className;this.value=this.getAttribute("placeholder");type=this.getAttribute("data-placeholdertype");if(type)this.type= "text"}}function submitHandler(){var inputs=this.getElementsByTagName("input"),textareas=this.getElementsByTagName("textarea"),numInputs=inputs.length,num=numInputs+textareas.length,element,placeholder,i;for(i=0;i<num;i+=1){element=i<numInputs?inputs[i]:textareas[i-numInputs];placeholder=element.getAttribute("placeholder");if(element.value===placeholder)element.value=""}}function keydownHandler(event){valueKeyDown=this.value;return!(valueKeyDown===this.getAttribute("placeholder")&&badKeys.indexOf(event.keyCode)> -1)}function keyupHandler(){var type;if(this.value!==valueKeyDown){this.className=this.className.replace(classNameRegExp,"");this.value=this.value.replace(this.getAttribute("placeholder"),"");type=this.getAttribute("data-placeholdertype");if(type)this.type=type}if(this.value===""){blurHandler.call(this);cursorToStart(this)}}function addEventListener(element,event,fn){if(element.addEventListener)return element.addEventListener(event,fn.bind(element),false);if(element.attachEvent)return element.attachEvent("on"+ event,fn.bind(element))}function addEventListeners(element){if(!settings.hideOnFocus){addEventListener(element,"keydown",keydownHandler);addEventListener(element,"keyup",keyupHandler)}addEventListener(element,"focus",focusHandler);addEventListener(element,"blur",blurHandler)}function updatePlaceholders(){var inputs=document.getElementsByTagName("input"),textareas=document.getElementsByTagName("textarea"),numInputs=inputs.length,num=numInputs+textareas.length,i,form,element,oldPlaceholder,newPlaceholder; for(i=0;i<num;i+=1){element=i<numInputs?inputs[i]:textareas[i-numInputs];newPlaceholder=element.getAttribute("placeholder");if(validTypes.indexOf(element.type)>-1)if(newPlaceholder){oldPlaceholder=element.getAttribute("data-currentplaceholder");if(newPlaceholder!==oldPlaceholder){if(element.value===oldPlaceholder||element.value===newPlaceholder||!element.value){element.value=newPlaceholder;element.className=element.className+" "+settings.className}if(!oldPlaceholder){if(element.form){form=element.form; if(!form.getAttribute("data-placeholdersubmit")){addEventListener(form,"submit",submitHandler);form.setAttribute("data-placeholdersubmit","true")}}addEventListeners(element)}element.setAttribute("data-currentplaceholder",newPlaceholder)}}}}function createPlaceholders(){var inputs=document.getElementsByTagName("input"),textareas=document.getElementsByTagName("textarea"),numInputs=inputs.length,num=numInputs+textareas.length,i,element,form,placeholder;for(i=0;i<num;i+=1){element=i<numInputs?inputs[i]: textareas[i-numInputs];placeholder=element.getAttribute("placeholder");if(validTypes.indexOf(element.type)>-1)if(placeholder){if(element.type==="password")try{element.type="text";element.setAttribute("data-placeholdertype","password")}catch(e){}element.setAttribute("data-currentplaceholder",placeholder);if(element.value===""||element.value===placeholder){element.className=element.className+" "+settings.className;element.value=placeholder}if(element.form){form=element.form;if(!form.getAttribute("data-placeholdersubmit")){addEventListener(form, "submit",submitHandler);form.setAttribute("data-placeholdersubmit","true")}}addEventListeners(element)}}}function init(opts){var test=document.createElement("input"),opt,styleElem,styleRules,i,j;if(typeof test.placeholder==="undefined"){for(opt in opts)if(opts.hasOwnProperty(opt))settings[opt]=opts[opt];styleElem=document.createElement("style");styleElem.type="text/css";var importantValue=settings.styleImportant?"!important":"";styleRules=document.createTextNode("."+settings.className+" { color:"+ settings.textColor+importantValue+"; }");if(styleElem.styleSheet)styleElem.styleSheet.cssText=styleRules.nodeValue;else styleElem.appendChild(styleRules);document.getElementsByTagName("head")[0].appendChild(styleElem);if(!Array.prototype.indexOf)Array.prototype.indexOf=function(obj,start){for(i=start||0,j=this.length;i<j;i+=1)if(this[i]===obj)return i;return-1};if(!Function.prototype.bind)Function.prototype.bind=function(oThis){if(typeof this!=="function")throw new TypeError("Function.prototype.bind - what is trying to be bound is not callable"); var aArgs=Array.prototype.slice.call(arguments,1),fToBind=this,FNop=function(){},fBound=function(){return fToBind.apply(this instanceof FNop?this:oThis,aArgs.concat(Array.prototype.slice.call(arguments)))};FNop.prototype=this.prototype;fBound.prototype=new FNop;return fBound};createPlaceholders();if(settings.live)interval=setInterval(updatePlaceholders,100);return true}return false}return{init:init,refresh:updatePlaceholders}}(); |
| URL | http://zero.webappsecurity.com/robots.txt |
| Method | GET |
| Parameter | |
| Attack | Origin: http://4qCMHsQq.com |
| Evidence | Access-Control-Allow-Origin: * |
| Request Header - size: 272 bytes. |
GET http://zero.webappsecurity.com/robots.txt HTTP/1.1
Host: zero.webappsecurity.com User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0 Pragma: no-cache Cache-Control: no-cache Origin: http://4qCMHsQq.com Content-Length: 0 |
| Request Body - size: 0 bytes. |
|
| Response Header - size: 204 bytes. |
HTTP/1.1 404 Not Found
Date: Mon, 14 Mar 2022 07:23:18 GMT Server: Apache-Coyote/1.1 Access-Control-Allow-Origin: * Content-Type: text/html;charset=utf-8 Content-Language: en Content-Length: 971 |
| Response Body - size: 971 bytes. |
<html><head><title>Apache Tomcat/7.0.70 - Error report</title><style><!--H1 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:22px;} H2 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:16px;} H3 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:14px;} BODY {font-family:Tahoma,Arial,sans-serif;color:black;background-color:white;} B {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;} P {font-family:Tahoma,Arial,sans-serif;background:white;color:black;font-size:12px;}A {color : black;}A.name {color : black;}HR {color : #525D76;}--></style> </head><body><h1>HTTP Status 404 - /robots.txt</h1><HR size="1" noshade="noshade"><p><b>type</b> Status report</p><p><b>message</b> <u>/robots.txt</u></p><p><b>description</b> <u>The requested resource is not available.</u></p><HR size="1" noshade="noshade"><h3>Apache Tomcat/7.0.70</h3></body></html>
|
| URL | http://zero.webappsecurity.com/search.html?searchTerm=ZAP |
| Method | GET |
| Parameter | |
| Attack | Origin: http://4qCMHsQq.com |
| Evidence | Access-Control-Allow-Origin: * |
| Request Header - size: 329 bytes. |
GET http://zero.webappsecurity.com/search.html?searchTerm=ZAP HTTP/1.1
Host: zero.webappsecurity.com User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0 Pragma: no-cache Cache-Control: no-cache Referer: http://zero.webappsecurity.com Origin: http://4qCMHsQq.com Content-Length: 0 |
| Request Body - size: 0 bytes. |
|
| Response Header - size: 242 bytes. |
HTTP/1.1 200 OK
Date: Mon, 14 Mar 2022 07:23:18 GMT Server: Apache-Coyote/1.1 Access-Control-Allow-Origin: * Cache-Control: no-cache, max-age=0, must-revalidate, no-store Content-Type: text/html;charset=UTF-8 Content-Language: en-US |
| Response Body - size: 7,723 bytes. |
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Zero - Search Tips</title> <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"> <meta http-equiv="X-UA-Compatible" content="IE=Edge"> <link type="text/css" rel="stylesheet" href="/resources/css/bootstrap.min.css"/> <link type="text/css" rel="stylesheet" href="/resources/css/font-awesome.css"/> <link type="text/css" rel="stylesheet" href="/resources/css/main.css"/> <script src="/resources/js/jquery-1.8.2.min.js"></script> <script src="/resources/js/bootstrap.min.js"></script> <script src="/resources/js/placeholders.min.js"></script> <script type="text/javascript"> Placeholders.init({ live: true, // Apply to future and modified elements too hideOnFocus: true // Hide the placeholder when the element receives focus }); </script> <script type="text/javascript"> $(document).ajaxError(function errorHandler(event, xhr, ajaxOptions, thrownError) { if (xhr.status == 403) { window.location.reload(); } }); </script> </head> <body> <div class="wrapper"> <div class="navbar navbar-fixed-top"> <div class="navbar-inner"> <div class="container"> <a href="/index.html" class="brand">Zero Bank</a> <div> <ul class="nav float-right"> <li> <form action="/search.html" class="navbar-search pull-right" style="padding-right: 20px"> <input type="text" id="searchTerm" name="searchTerm" class="search-query" placeholder="Search"/> </form> </li> <li> <button id="signin_button" type="button" class="signin btn btn-info"> <i class="icon-signin"></i>Signin </button> </li> </ul> </div> </div> </div> </div> <script type="text/javascript"> $(function() { var path = "/"; $("#signin_button").click(function(event) { event.preventDefault(); window.location.href = path + "login" + ".html"; }); }); </script> <div class="container"> <div class="top_offset"> <div class="row"> <div class="span12"> <div id="nav" class="clearfix"> <ul id="pages-nav"> <li id="homeMenu"><div><strong>Home</strong></div></li> <li id="onlineBankingMenu"><div><strong>Online Banking</strong></div></li> <li id="feedback"><div><strong>Feedback</strong></div></li> </ul> </div> </div> <script type="text/javascript"> $(function () { var path = "/"; var featureIdToName = { "index": "homeMenu", "online-banking": "onlineBankingMenu", "feedback": "feedback" }; if (document.location.href.match(".*" + path + "$") != null) { $("#homeMenu").addClass("active"); } else { $.each(featureIdToName, function(featureId, featureName) { if (document.location.href.indexOf(featureId + ".html") >= 0) { $("#" + featureName).addClass("active"); } }); } $.each(featureIdToName, function(featureId, featureName) { $("#nav").on("click", "li[id='" + featureName + "']", function(event) { event.preventDefault(); window.location.href = path + featureId + ".html"; }); }); }); </script> </div> <hr class="row-divider"/> <h2>Search Results:</h2> No results were found for the query: ZAP </div> </div> <div class="clearfix push"></div> </div> <div class="extra"> <div class="extra-inner"> <div class="container"> <div class="row"> <div class="span4"> <ul> <li><span id="download_webinspect_link">Download WebInspect</span></li> </ul> </div> <div class="span4"> <ul> <li><span id="terms_of_use_link">Terms of Use</span></li> </ul> </div> <div class="span4"> <ul> <li><span id="contact_hp_link">Contact Micro Focus</span></li> <li><span id="privacy_statement_link">Privacy Statement</span></li> </ul> </div> </div> <div class="row"> <div class="disclaimer span12"> The Free Online Bank Web site is published by Micro Focus Fortify for the sole purpose of demonstrating the functionality and effectiveness of Micro Focus Fortify’s WebInspect products in detecting and reporting Web application vulnerabilities. This site is not a real banking site and any similarities to third party products and/or Web sites are purely coincidental. This site is provided "as is" without warranty of any kind, either express or implied. Micro Focus Fortify does not assume any risk in relation to your use of this Web site. Use of this Web site indicates that you have read and agree to Micro Focus Fortify’s Terms of Use found at <a href="https://www.microfocus.com/about/legal/#privacy" target="_blank">https://www.microfocus.com/about/legal/#privacy</a> and Micro Focus Fortify’s Online Privacy Statement found at <a href="https://www.microfocus.com/about/legal/#privacy" target="_blank">https://www.microfocus.com/about/legal/#privacy</a>. <br/><br/> Copyright © 2012-2018, Micro Focus Development Company. All rights reserved. </div> </div> </div> </div> </div> <script type="text/javascript"> $(function () { var path = "/"; var attachClickHandler = function(selector, handler) { $(".extra").on('click', selector, handler); } var footerLinks = { "download_webinspect_link": { absolute: true, page: "https://software.microfocus.com/en-us/products/webinspect-dynamic-analysis-dast/overview" }, "contact_hp_link" : { absolute: true, page: "https://support.fortify.com" }, "privacy_statement_link": { absolute: true, page: "https://www.microfocus.com/about/legal/#privacy" }, "terms_of_use_link": { absolute: true, page: "https://www.microfocus.com/about/legal/" } }; $.each(footerLinks, function(linkId, link) { attachClickHandler('span[id="' + linkId + '"]', function(event) { event.preventDefault(); if (link.absolute) { window.location.href = link.page; } else { window.location.href = path + link.page + ".html"; } }); }); }); </script> </body> </html> |
| URL | http://zero.webappsecurity.com/sitemap.xml |
| Method | GET |
| Parameter | |
| Attack | Origin: http://4qCMHsQq.com |
| Evidence | Access-Control-Allow-Origin: * |
| Request Header - size: 273 bytes. |
GET http://zero.webappsecurity.com/sitemap.xml HTTP/1.1
Host: zero.webappsecurity.com User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0 Pragma: no-cache Cache-Control: no-cache Origin: http://4qCMHsQq.com Content-Length: 0 |
| Request Body - size: 0 bytes. |
|
| Response Header - size: 204 bytes. |
HTTP/1.1 404 Not Found
Date: Mon, 14 Mar 2022 07:23:18 GMT Server: Apache-Coyote/1.1 Access-Control-Allow-Origin: * Content-Type: text/html;charset=utf-8 Content-Language: en Content-Length: 973 |
| Response Body - size: 973 bytes. |
<html><head><title>Apache Tomcat/7.0.70 - Error report</title><style><!--H1 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:22px;} H2 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:16px;} H3 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:14px;} BODY {font-family:Tahoma,Arial,sans-serif;color:black;background-color:white;} B {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;} P {font-family:Tahoma,Arial,sans-serif;background:white;color:black;font-size:12px;}A {color : black;}A.name {color : black;}HR {color : #525D76;}--></style> </head><body><h1>HTTP Status 404 - /sitemap.xml</h1><HR size="1" noshade="noshade"><p><b>type</b> Status report</p><p><b>message</b> <u>/sitemap.xml</u></p><p><b>description</b> <u>The requested resource is not available.</u></p><HR size="1" noshade="noshade"><h3>Apache Tomcat/7.0.70</h3></body></html>
|
| Instances | 19 |
| Solution |
If a web resource contains sensitive information, the origin should be properly specified in the Access-Control-Allow-Origin header. Only trusted websites needing this resource should be specified in this header, with the most secured protocol supported.
|
| Reference |
https://developer.mozilla.org/en-US/docs/Web/HTTP/CORS
https://portswigger.net/web-security/cors |
| Tags |
OWASP_2021_A01
WSTG-v42-CLNT-07 OWASP_2017_A05 |
| CWE Id | 942 |
| WASC Id | 14 |
| Plugin Id | 40040 |
|
Medium |
Content Security Policy (CSP) Header Not Set |
|---|---|
| Description |
Content Security Policy (CSP) is an added layer of security that helps to detect and mitigate certain types of attacks, including Cross Site Scripting (XSS) and data injection attacks. These attacks are used for everything from data theft to site defacement or distribution of malware. CSP provides a set of standard HTTP headers that allow website owners to declare approved sources of content that browsers should be allowed to load on that page — covered types are JavaScript, CSS, HTML frames, fonts, images and embeddable objects such as Java applets, ActiveX, audio and video files.
|
| URL | http://zero.webappsecurity.com |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Request Header - size: 213 bytes. |
GET http://zero.webappsecurity.com HTTP/1.1
Host: zero.webappsecurity.com User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0 Pragma: no-cache Cache-Control: no-cache |
| Request Body - size: 0 bytes. |
|
| Response Header - size: 242 bytes. |
HTTP/1.1 200 OK
Date: Mon, 14 Mar 2022 07:13:40 GMT Server: Apache-Coyote/1.1 Access-Control-Allow-Origin: * Cache-Control: no-cache, max-age=0, must-revalidate, no-store Content-Type: text/html;charset=UTF-8 Content-Language: en-US |
| Response Body - size: 12,471 bytes. |
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Zero - Personal Banking - Loans - Credit Cards</title> <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"> <meta http-equiv="X-UA-Compatible" content="IE=Edge"> <link type="text/css" rel="stylesheet" href="/resources/css/bootstrap.min.css"/> <link type="text/css" rel="stylesheet" href="/resources/css/font-awesome.css"/> <link type="text/css" rel="stylesheet" href="/resources/css/main.css"/> <script src="/resources/js/jquery-1.8.2.min.js"></script> <script src="/resources/js/bootstrap.min.js"></script> <script src="/resources/js/placeholders.min.js"></script> <script type="text/javascript"> Placeholders.init({ live: true, // Apply to future and modified elements too hideOnFocus: true // Hide the placeholder when the element receives focus }); </script> <script type="text/javascript"> $(document).ajaxError(function errorHandler(event, xhr, ajaxOptions, thrownError) { if (xhr.status == 403) { window.location.reload(); } }); </script> </head> <body> <div class="wrapper"> <div class="navbar navbar-fixed-top"> <div class="navbar-inner"> <div class="container"> <a href="/index.html" class="brand">Zero Bank</a> <div> <ul class="nav float-right"> <li> <form action="/search.html" class="navbar-search pull-right" style="padding-right: 20px"> <input type="text" id="searchTerm" name="searchTerm" class="search-query" placeholder="Search"/> </form> </li> <li> <button id="signin_button" type="button" class="signin btn btn-info"> <i class="icon-signin"></i>Signin </button> </li> </ul> </div> </div> </div> </div> <script type="text/javascript"> $(function() { var path = "/"; $("#signin_button").click(function(event) { event.preventDefault(); window.location.href = path + "login" + ".html"; }); }); </script> <div class="container"> <div class="top_offset"> <div class="row"> <div class="span12"> <div id="nav" class="clearfix"> <ul id="pages-nav"> <li id="homeMenu"><div><strong>Home</strong></div></li> <li id="onlineBankingMenu"><div><strong>Online Banking</strong></div></li> <li id="feedback"><div><strong>Feedback</strong></div></li> </ul> </div> </div> <script type="text/javascript"> $(function () { var path = "/"; var featureIdToName = { "index": "homeMenu", "online-banking": "onlineBankingMenu", "feedback": "feedback" }; if (document.location.href.match(".*" + path + "$") != null) { $("#homeMenu").addClass("active"); } else { $.each(featureIdToName, function(featureId, featureName) { if (document.location.href.indexOf(featureId + ".html") >= 0) { $("#" + featureName).addClass("active"); } }); } $.each(featureIdToName, function(featureId, featureName) { $("#nav").on("click", "li[id='" + featureName + "']", function(event) { event.preventDefault(); window.location.href = path + featureId + ".html"; }); }); }); </script> </div> <div class="row"> <div class="span12"> <div id="carousel" class="carousel slide"> <div class="carousel-inner"> <div class="active item"> <img src="/resources/img/main_carousel_1.jpg" width="940" height="401" alt=""/> <div class="custom carousel-caption"> <h4>Online Banking</h4> <p>Welcome to Zero Online Banking. Zero provides a greener and more convenient way to manage your money. Zero enables you to check your account balances, pay your bills, transfer money, and keep detailed records of your transactions, wherever there is an internet connection.</p> </div> </div> <div class="item"> <img src="/resources/img/main_carousel_2.jpg" width="940" height="401" alt=""/> <div class="custom carousel-caption"> <h4>Online Banking</h4> <p>Welcome to Zero Online Banking. Zero provides a greener and more convenient way to manage your money. Zero enables you to check your account balances, pay your bills, transfer money, and keep detailed records of your transactions, wherever there is an internet connection.</p> </div> </div> <div class="item"> <img src="/resources/img/main_carousel_3.jpg" width="940" height="401" alt=""/> <div class="custom carousel-caption"> <h4>Online Banking</h4> <p>Welcome to Zero Online Banking. Zero provides a greener and more convenient way to manage your money. Zero enables you to check your account balances, pay your bills, transfer money, and keep detailed records of your transactions, wherever there is an internet connection.</p> </div> </div> </div> <a class="carousel-control custom left" href="#carousel" data-slide="prev">‹</a> <a class="carousel-control custom right" href="#carousel" data-slide="next">›</a> </div> </div> </div> <hr class="row-divider"/> <div id="online_banking_features" class="row divider"> <div class="span3"> <h4><i class="icon icon-bookmark"></i> Online Banking</h4> <p>Click the button below to view online banking features.</p> <a id="online-banking" class="btn btn-small btn-info">More Services</a> </div> <div class="span3"> <div> <h4><span class="headers" id="account_activity_link"><i class="icon icon-user"></i>Checking Account Activity</span></h4> <p>Use Zero to view the most up-to-date listings of your deposits, withdrawals, interest payments, and a number of other useful transactions. </p> </div> </div> <div class="span3"> <div> <h4><span class="headers" id="transfer_funds_link"><i class="icon icon-random"></i>Transfer Funds</span></h4> <p>Use Zero to safely and securely transfer funds between accounts. There is no hold placed on online money transfers, so your funds are available when you need them. </p> </div> </div> <div class="span3"> <div> <h4><span class="headers" id="money_map_link"><i class="icon icon-list-alt"></i>My Money Map</span></h4> <p>Use Zero to set up and monitor your personalized money map. A money map is an easy-to-use online tool that helps you manage your finances efficiently. With Money Map, you can create a budget, sort your finances into spending and savings categories, check the interest your accounts are earning, and gain new understanding of your patterns with the help of Zero’s clear charts and graphs. </p> </div> </div> </div> <script type="text/javascript"> $(function() { $("#carousel").carousel({ interval: false }); $("div").on("click", "a[id='online-banking']", function(event){ event.preventDefault(); window.location.href = "/" + "online-banking" + ".html"; }); var path = "/bank/"; var featureIdToName = { "account_activity_link": "account-activity", "transfer_funds_link": "transfer-funds", "money_map_link": "money-map" } $.each(featureIdToName, function(featureId, featureName) { $("#online_banking_features").on("click", "span[id='" + featureId + "']", function(event) { event.preventDefault(); window.location.href = path + featureName +".html"; }); }); }); </script> </div> </div> <div class="clearfix push"></div> </div> <div class="extra"> <div class="extra-inner"> <div class="container"> <div class="row"> <div class="span4"> <ul> <li><span id="download_webinspect_link">Download WebInspect</span></li> </ul> </div> <div class="span4"> <ul> <li><span id="terms_of_use_link">Terms of Use</span></li> </ul> </div> <div class="span4"> <ul> <li><span id="contact_hp_link">Contact Micro Focus</span></li> <li><span id="privacy_statement_link">Privacy Statement</span></li> </ul> </div> </div> <div class="row"> <div class="disclaimer span12"> The Free Online Bank Web site is published by Micro Focus Fortify for the sole purpose of demonstrating the functionality and effectiveness of Micro Focus Fortify’s WebInspect products in detecting and reporting Web application vulnerabilities. This site is not a real banking site and any similarities to third party products and/or Web sites are purely coincidental. This site is provided "as is" without warranty of any kind, either express or implied. Micro Focus Fortify does not assume any risk in relation to your use of this Web site. Use of this Web site indicates that you have read and agree to Micro Focus Fortify’s Terms of Use found at <a href="https://www.microfocus.com/about/legal/#privacy" target="_blank">https://www.microfocus.com/about/legal/#privacy</a> and Micro Focus Fortify’s Online Privacy Statement found at <a href="https://www.microfocus.com/about/legal/#privacy" target="_blank">https://www.microfocus.com/about/legal/#privacy</a>. <br/><br/> Copyright © 2012-2018, Micro Focus Development Company. All rights reserved. </div> </div> </div> </div> </div> <script type="text/javascript"> $(function () { var path = "/"; var attachClickHandler = function(selector, handler) { $(".extra").on('click', selector, handler); } var footerLinks = { "download_webinspect_link": { absolute: true, page: "https://software.microfocus.com/en-us/products/webinspect-dynamic-analysis-dast/overview" }, "contact_hp_link" : { absolute: true, page: "https://support.fortify.com" }, "privacy_statement_link": { absolute: true, page: "https://www.microfocus.com/about/legal/#privacy" }, "terms_of_use_link": { absolute: true, page: "https://www.microfocus.com/about/legal/" } }; $.each(footerLinks, function(linkId, link) { attachClickHandler('span[id="' + linkId + '"]', function(event) { event.preventDefault(); if (link.absolute) { window.location.href = link.page; } else { window.location.href = path + link.page + ".html"; } }); }); }); </script> </body> </html> |
| URL | http://zero.webappsecurity.com/ |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Request Header - size: 214 bytes. |
GET http://zero.webappsecurity.com/ HTTP/1.1
Host: zero.webappsecurity.com User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0 Pragma: no-cache Cache-Control: no-cache |
| Request Body - size: 0 bytes. |
|
| Response Header - size: 242 bytes. |
HTTP/1.1 200 OK
Date: Mon, 14 Mar 2022 07:13:39 GMT Server: Apache-Coyote/1.1 Access-Control-Allow-Origin: * Cache-Control: no-cache, max-age=0, must-revalidate, no-store Content-Type: text/html;charset=UTF-8 Content-Language: en-US |
| Response Body - size: 12,471 bytes. |
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Zero - Personal Banking - Loans - Credit Cards</title> <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"> <meta http-equiv="X-UA-Compatible" content="IE=Edge"> <link type="text/css" rel="stylesheet" href="/resources/css/bootstrap.min.css"/> <link type="text/css" rel="stylesheet" href="/resources/css/font-awesome.css"/> <link type="text/css" rel="stylesheet" href="/resources/css/main.css"/> <script src="/resources/js/jquery-1.8.2.min.js"></script> <script src="/resources/js/bootstrap.min.js"></script> <script src="/resources/js/placeholders.min.js"></script> <script type="text/javascript"> Placeholders.init({ live: true, // Apply to future and modified elements too hideOnFocus: true // Hide the placeholder when the element receives focus }); </script> <script type="text/javascript"> $(document).ajaxError(function errorHandler(event, xhr, ajaxOptions, thrownError) { if (xhr.status == 403) { window.location.reload(); } }); </script> </head> <body> <div class="wrapper"> <div class="navbar navbar-fixed-top"> <div class="navbar-inner"> <div class="container"> <a href="/index.html" class="brand">Zero Bank</a> <div> <ul class="nav float-right"> <li> <form action="/search.html" class="navbar-search pull-right" style="padding-right: 20px"> <input type="text" id="searchTerm" name="searchTerm" class="search-query" placeholder="Search"/> </form> </li> <li> <button id="signin_button" type="button" class="signin btn btn-info"> <i class="icon-signin"></i>Signin </button> </li> </ul> </div> </div> </div> </div> <script type="text/javascript"> $(function() { var path = "/"; $("#signin_button").click(function(event) { event.preventDefault(); window.location.href = path + "login" + ".html"; }); }); </script> <div class="container"> <div class="top_offset"> <div class="row"> <div class="span12"> <div id="nav" class="clearfix"> <ul id="pages-nav"> <li id="homeMenu"><div><strong>Home</strong></div></li> <li id="onlineBankingMenu"><div><strong>Online Banking</strong></div></li> <li id="feedback"><div><strong>Feedback</strong></div></li> </ul> </div> </div> <script type="text/javascript"> $(function () { var path = "/"; var featureIdToName = { "index": "homeMenu", "online-banking": "onlineBankingMenu", "feedback": "feedback" }; if (document.location.href.match(".*" + path + "$") != null) { $("#homeMenu").addClass("active"); } else { $.each(featureIdToName, function(featureId, featureName) { if (document.location.href.indexOf(featureId + ".html") >= 0) { $("#" + featureName).addClass("active"); } }); } $.each(featureIdToName, function(featureId, featureName) { $("#nav").on("click", "li[id='" + featureName + "']", function(event) { event.preventDefault(); window.location.href = path + featureId + ".html"; }); }); }); </script> </div> <div class="row"> <div class="span12"> <div id="carousel" class="carousel slide"> <div class="carousel-inner"> <div class="active item"> <img src="/resources/img/main_carousel_1.jpg" width="940" height="401" alt=""/> <div class="custom carousel-caption"> <h4>Online Banking</h4> <p>Welcome to Zero Online Banking. Zero provides a greener and more convenient way to manage your money. Zero enables you to check your account balances, pay your bills, transfer money, and keep detailed records of your transactions, wherever there is an internet connection.</p> </div> </div> <div class="item"> <img src="/resources/img/main_carousel_2.jpg" width="940" height="401" alt=""/> <div class="custom carousel-caption"> <h4>Online Banking</h4> <p>Welcome to Zero Online Banking. Zero provides a greener and more convenient way to manage your money. Zero enables you to check your account balances, pay your bills, transfer money, and keep detailed records of your transactions, wherever there is an internet connection.</p> </div> </div> <div class="item"> <img src="/resources/img/main_carousel_3.jpg" width="940" height="401" alt=""/> <div class="custom carousel-caption"> <h4>Online Banking</h4> <p>Welcome to Zero Online Banking. Zero provides a greener and more convenient way to manage your money. Zero enables you to check your account balances, pay your bills, transfer money, and keep detailed records of your transactions, wherever there is an internet connection.</p> </div> </div> </div> <a class="carousel-control custom left" href="#carousel" data-slide="prev">‹</a> <a class="carousel-control custom right" href="#carousel" data-slide="next">›</a> </div> </div> </div> <hr class="row-divider"/> <div id="online_banking_features" class="row divider"> <div class="span3"> <h4><i class="icon icon-bookmark"></i> Online Banking</h4> <p>Click the button below to view online banking features.</p> <a id="online-banking" class="btn btn-small btn-info">More Services</a> </div> <div class="span3"> <div> <h4><span class="headers" id="account_activity_link"><i class="icon icon-user"></i>Checking Account Activity</span></h4> <p>Use Zero to view the most up-to-date listings of your deposits, withdrawals, interest payments, and a number of other useful transactions. </p> </div> </div> <div class="span3"> <div> <h4><span class="headers" id="transfer_funds_link"><i class="icon icon-random"></i>Transfer Funds</span></h4> <p>Use Zero to safely and securely transfer funds between accounts. There is no hold placed on online money transfers, so your funds are available when you need them. </p> </div> </div> <div class="span3"> <div> <h4><span class="headers" id="money_map_link"><i class="icon icon-list-alt"></i>My Money Map</span></h4> <p>Use Zero to set up and monitor your personalized money map. A money map is an easy-to-use online tool that helps you manage your finances efficiently. With Money Map, you can create a budget, sort your finances into spending and savings categories, check the interest your accounts are earning, and gain new understanding of your patterns with the help of Zero’s clear charts and graphs. </p> </div> </div> </div> <script type="text/javascript"> $(function() { $("#carousel").carousel({ interval: false }); $("div").on("click", "a[id='online-banking']", function(event){ event.preventDefault(); window.location.href = "/" + "online-banking" + ".html"; }); var path = "/bank/"; var featureIdToName = { "account_activity_link": "account-activity", "transfer_funds_link": "transfer-funds", "money_map_link": "money-map" } $.each(featureIdToName, function(featureId, featureName) { $("#online_banking_features").on("click", "span[id='" + featureId + "']", function(event) { event.preventDefault(); window.location.href = path + featureName +".html"; }); }); }); </script> </div> </div> <div class="clearfix push"></div> </div> <div class="extra"> <div class="extra-inner"> <div class="container"> <div class="row"> <div class="span4"> <ul> <li><span id="download_webinspect_link">Download WebInspect</span></li> </ul> </div> <div class="span4"> <ul> <li><span id="terms_of_use_link">Terms of Use</span></li> </ul> </div> <div class="span4"> <ul> <li><span id="contact_hp_link">Contact Micro Focus</span></li> <li><span id="privacy_statement_link">Privacy Statement</span></li> </ul> </div> </div> <div class="row"> <div class="disclaimer span12"> The Free Online Bank Web site is published by Micro Focus Fortify for the sole purpose of demonstrating the functionality and effectiveness of Micro Focus Fortify’s WebInspect products in detecting and reporting Web application vulnerabilities. This site is not a real banking site and any similarities to third party products and/or Web sites are purely coincidental. This site is provided "as is" without warranty of any kind, either express or implied. Micro Focus Fortify does not assume any risk in relation to your use of this Web site. Use of this Web site indicates that you have read and agree to Micro Focus Fortify’s Terms of Use found at <a href="https://www.microfocus.com/about/legal/#privacy" target="_blank">https://www.microfocus.com/about/legal/#privacy</a> and Micro Focus Fortify’s Online Privacy Statement found at <a href="https://www.microfocus.com/about/legal/#privacy" target="_blank">https://www.microfocus.com/about/legal/#privacy</a>. <br/><br/> Copyright © 2012-2018, Micro Focus Development Company. All rights reserved. </div> </div> </div> </div> </div> <script type="text/javascript"> $(function () { var path = "/"; var attachClickHandler = function(selector, handler) { $(".extra").on('click', selector, handler); } var footerLinks = { "download_webinspect_link": { absolute: true, page: "https://software.microfocus.com/en-us/products/webinspect-dynamic-analysis-dast/overview" }, "contact_hp_link" : { absolute: true, page: "https://support.fortify.com" }, "privacy_statement_link": { absolute: true, page: "https://www.microfocus.com/about/legal/#privacy" }, "terms_of_use_link": { absolute: true, page: "https://www.microfocus.com/about/legal/" } }; $.each(footerLinks, function(linkId, link) { attachClickHandler('span[id="' + linkId + '"]', function(event) { event.preventDefault(); if (link.absolute) { window.location.href = link.page; } else { window.location.href = path + link.page + ".html"; } }); }); }); </script> </body> </html> |
| URL | http://zero.webappsecurity.com/index.html |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Request Header - size: 265 bytes. |
GET http://zero.webappsecurity.com/index.html HTTP/1.1
Host: zero.webappsecurity.com User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0 Pragma: no-cache Cache-Control: no-cache Referer: http://zero.webappsecurity.com |
| Request Body - size: 0 bytes. |
|
| Response Header - size: 242 bytes. |
HTTP/1.1 200 OK
Date: Mon, 14 Mar 2022 07:13:41 GMT Server: Apache-Coyote/1.1 Access-Control-Allow-Origin: * Cache-Control: no-cache, max-age=0, must-revalidate, no-store Content-Type: text/html;charset=UTF-8 Content-Language: en-US |
| Response Body - size: 12,471 bytes. |
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Zero - Personal Banking - Loans - Credit Cards</title> <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"> <meta http-equiv="X-UA-Compatible" content="IE=Edge"> <link type="text/css" rel="stylesheet" href="/resources/css/bootstrap.min.css"/> <link type="text/css" rel="stylesheet" href="/resources/css/font-awesome.css"/> <link type="text/css" rel="stylesheet" href="/resources/css/main.css"/> <script src="/resources/js/jquery-1.8.2.min.js"></script> <script src="/resources/js/bootstrap.min.js"></script> <script src="/resources/js/placeholders.min.js"></script> <script type="text/javascript"> Placeholders.init({ live: true, // Apply to future and modified elements too hideOnFocus: true // Hide the placeholder when the element receives focus }); </script> <script type="text/javascript"> $(document).ajaxError(function errorHandler(event, xhr, ajaxOptions, thrownError) { if (xhr.status == 403) { window.location.reload(); } }); </script> </head> <body> <div class="wrapper"> <div class="navbar navbar-fixed-top"> <div class="navbar-inner"> <div class="container"> <a href="/index.html" class="brand">Zero Bank</a> <div> <ul class="nav float-right"> <li> <form action="/search.html" class="navbar-search pull-right" style="padding-right: 20px"> <input type="text" id="searchTerm" name="searchTerm" class="search-query" placeholder="Search"/> </form> </li> <li> <button id="signin_button" type="button" class="signin btn btn-info"> <i class="icon-signin"></i>Signin </button> </li> </ul> </div> </div> </div> </div> <script type="text/javascript"> $(function() { var path = "/"; $("#signin_button").click(function(event) { event.preventDefault(); window.location.href = path + "login" + ".html"; }); }); </script> <div class="container"> <div class="top_offset"> <div class="row"> <div class="span12"> <div id="nav" class="clearfix"> <ul id="pages-nav"> <li id="homeMenu"><div><strong>Home</strong></div></li> <li id="onlineBankingMenu"><div><strong>Online Banking</strong></div></li> <li id="feedback"><div><strong>Feedback</strong></div></li> </ul> </div> </div> <script type="text/javascript"> $(function () { var path = "/"; var featureIdToName = { "index": "homeMenu", "online-banking": "onlineBankingMenu", "feedback": "feedback" }; if (document.location.href.match(".*" + path + "$") != null) { $("#homeMenu").addClass("active"); } else { $.each(featureIdToName, function(featureId, featureName) { if (document.location.href.indexOf(featureId + ".html") >= 0) { $("#" + featureName).addClass("active"); } }); } $.each(featureIdToName, function(featureId, featureName) { $("#nav").on("click", "li[id='" + featureName + "']", function(event) { event.preventDefault(); window.location.href = path + featureId + ".html"; }); }); }); </script> </div> <div class="row"> <div class="span12"> <div id="carousel" class="carousel slide"> <div class="carousel-inner"> <div class="active item"> <img src="/resources/img/main_carousel_1.jpg" width="940" height="401" alt=""/> <div class="custom carousel-caption"> <h4>Online Banking</h4> <p>Welcome to Zero Online Banking. Zero provides a greener and more convenient way to manage your money. Zero enables you to check your account balances, pay your bills, transfer money, and keep detailed records of your transactions, wherever there is an internet connection.</p> </div> </div> <div class="item"> <img src="/resources/img/main_carousel_2.jpg" width="940" height="401" alt=""/> <div class="custom carousel-caption"> <h4>Online Banking</h4> <p>Welcome to Zero Online Banking. Zero provides a greener and more convenient way to manage your money. Zero enables you to check your account balances, pay your bills, transfer money, and keep detailed records of your transactions, wherever there is an internet connection.</p> </div> </div> <div class="item"> <img src="/resources/img/main_carousel_3.jpg" width="940" height="401" alt=""/> <div class="custom carousel-caption"> <h4>Online Banking</h4> <p>Welcome to Zero Online Banking. Zero provides a greener and more convenient way to manage your money. Zero enables you to check your account balances, pay your bills, transfer money, and keep detailed records of your transactions, wherever there is an internet connection.</p> </div> </div> </div> <a class="carousel-control custom left" href="#carousel" data-slide="prev">‹</a> <a class="carousel-control custom right" href="#carousel" data-slide="next">›</a> </div> </div> </div> <hr class="row-divider"/> <div id="online_banking_features" class="row divider"> <div class="span3"> <h4><i class="icon icon-bookmark"></i> Online Banking</h4> <p>Click the button below to view online banking features.</p> <a id="online-banking" class="btn btn-small btn-info">More Services</a> </div> <div class="span3"> <div> <h4><span class="headers" id="account_activity_link"><i class="icon icon-user"></i>Checking Account Activity</span></h4> <p>Use Zero to view the most up-to-date listings of your deposits, withdrawals, interest payments, and a number of other useful transactions. </p> </div> </div> <div class="span3"> <div> <h4><span class="headers" id="transfer_funds_link"><i class="icon icon-random"></i>Transfer Funds</span></h4> <p>Use Zero to safely and securely transfer funds between accounts. There is no hold placed on online money transfers, so your funds are available when you need them. </p> </div> </div> <div class="span3"> <div> <h4><span class="headers" id="money_map_link"><i class="icon icon-list-alt"></i>My Money Map</span></h4> <p>Use Zero to set up and monitor your personalized money map. A money map is an easy-to-use online tool that helps you manage your finances efficiently. With Money Map, you can create a budget, sort your finances into spending and savings categories, check the interest your accounts are earning, and gain new understanding of your patterns with the help of Zero’s clear charts and graphs. </p> </div> </div> </div> <script type="text/javascript"> $(function() { $("#carousel").carousel({ interval: false }); $("div").on("click", "a[id='online-banking']", function(event){ event.preventDefault(); window.location.href = "/" + "online-banking" + ".html"; }); var path = "/bank/"; var featureIdToName = { "account_activity_link": "account-activity", "transfer_funds_link": "transfer-funds", "money_map_link": "money-map" } $.each(featureIdToName, function(featureId, featureName) { $("#online_banking_features").on("click", "span[id='" + featureId + "']", function(event) { event.preventDefault(); window.location.href = path + featureName +".html"; }); }); }); </script> </div> </div> <div class="clearfix push"></div> </div> <div class="extra"> <div class="extra-inner"> <div class="container"> <div class="row"> <div class="span4"> <ul> <li><span id="download_webinspect_link">Download WebInspect</span></li> </ul> </div> <div class="span4"> <ul> <li><span id="terms_of_use_link">Terms of Use</span></li> </ul> </div> <div class="span4"> <ul> <li><span id="contact_hp_link">Contact Micro Focus</span></li> <li><span id="privacy_statement_link">Privacy Statement</span></li> </ul> </div> </div> <div class="row"> <div class="disclaimer span12"> The Free Online Bank Web site is published by Micro Focus Fortify for the sole purpose of demonstrating the functionality and effectiveness of Micro Focus Fortify’s WebInspect products in detecting and reporting Web application vulnerabilities. This site is not a real banking site and any similarities to third party products and/or Web sites are purely coincidental. This site is provided "as is" without warranty of any kind, either express or implied. Micro Focus Fortify does not assume any risk in relation to your use of this Web site. Use of this Web site indicates that you have read and agree to Micro Focus Fortify’s Terms of Use found at <a href="https://www.microfocus.com/about/legal/#privacy" target="_blank">https://www.microfocus.com/about/legal/#privacy</a> and Micro Focus Fortify’s Online Privacy Statement found at <a href="https://www.microfocus.com/about/legal/#privacy" target="_blank">https://www.microfocus.com/about/legal/#privacy</a>. <br/><br/> Copyright © 2012-2018, Micro Focus Development Company. All rights reserved. </div> </div> </div> </div> </div> <script type="text/javascript"> $(function () { var path = "/"; var attachClickHandler = function(selector, handler) { $(".extra").on('click', selector, handler); } var footerLinks = { "download_webinspect_link": { absolute: true, page: "https://software.microfocus.com/en-us/products/webinspect-dynamic-analysis-dast/overview" }, "contact_hp_link" : { absolute: true, page: "https://support.fortify.com" }, "privacy_statement_link": { absolute: true, page: "https://www.microfocus.com/about/legal/#privacy" }, "terms_of_use_link": { absolute: true, page: "https://www.microfocus.com/about/legal/" } }; $.each(footerLinks, function(linkId, link) { attachClickHandler('span[id="' + linkId + '"]', function(event) { event.preventDefault(); if (link.absolute) { window.location.href = link.page; } else { window.location.href = path + link.page + ".html"; } }); }); }); </script> </body> </html> |
| URL | http://zero.webappsecurity.com/robots.txt |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Request Header - size: 224 bytes. |
GET http://zero.webappsecurity.com/robots.txt HTTP/1.1
Host: zero.webappsecurity.com User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0 Pragma: no-cache Cache-Control: no-cache |
| Request Body - size: 0 bytes. |
|
| Response Header - size: 204 bytes. |
HTTP/1.1 404 Not Found
Date: Mon, 14 Mar 2022 07:13:40 GMT Server: Apache-Coyote/1.1 Access-Control-Allow-Origin: * Content-Type: text/html;charset=utf-8 Content-Language: en Content-Length: 971 |
| Response Body - size: 971 bytes. |
<html><head><title>Apache Tomcat/7.0.70 - Error report</title><style><!--H1 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:22px;} H2 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:16px;} H3 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:14px;} BODY {font-family:Tahoma,Arial,sans-serif;color:black;background-color:white;} B {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;} P {font-family:Tahoma,Arial,sans-serif;background:white;color:black;font-size:12px;}A {color : black;}A.name {color : black;}HR {color : #525D76;}--></style> </head><body><h1>HTTP Status 404 - /robots.txt</h1><HR size="1" noshade="noshade"><p><b>type</b> Status report</p><p><b>message</b> <u>/robots.txt</u></p><p><b>description</b> <u>The requested resource is not available.</u></p><HR size="1" noshade="noshade"><h3>Apache Tomcat/7.0.70</h3></body></html>
|
| URL | http://zero.webappsecurity.com/search.html?searchTerm=ZAP |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Request Header - size: 281 bytes. |
GET http://zero.webappsecurity.com/search.html?searchTerm=ZAP HTTP/1.1
Host: zero.webappsecurity.com User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0 Pragma: no-cache Cache-Control: no-cache Referer: http://zero.webappsecurity.com |
| Request Body - size: 0 bytes. |
|
| Response Header - size: 242 bytes. |
HTTP/1.1 200 OK
Date: Mon, 14 Mar 2022 07:13:43 GMT Server: Apache-Coyote/1.1 Access-Control-Allow-Origin: * Cache-Control: no-cache, max-age=0, must-revalidate, no-store Content-Type: text/html;charset=UTF-8 Content-Language: en-US |
| Response Body - size: 7,723 bytes. |
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Zero - Search Tips</title> <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"> <meta http-equiv="X-UA-Compatible" content="IE=Edge"> <link type="text/css" rel="stylesheet" href="/resources/css/bootstrap.min.css"/> <link type="text/css" rel="stylesheet" href="/resources/css/font-awesome.css"/> <link type="text/css" rel="stylesheet" href="/resources/css/main.css"/> <script src="/resources/js/jquery-1.8.2.min.js"></script> <script src="/resources/js/bootstrap.min.js"></script> <script src="/resources/js/placeholders.min.js"></script> <script type="text/javascript"> Placeholders.init({ live: true, // Apply to future and modified elements too hideOnFocus: true // Hide the placeholder when the element receives focus }); </script> <script type="text/javascript"> $(document).ajaxError(function errorHandler(event, xhr, ajaxOptions, thrownError) { if (xhr.status == 403) { window.location.reload(); } }); </script> </head> <body> <div class="wrapper"> <div class="navbar navbar-fixed-top"> <div class="navbar-inner"> <div class="container"> <a href="/index.html" class="brand">Zero Bank</a> <div> <ul class="nav float-right"> <li> <form action="/search.html" class="navbar-search pull-right" style="padding-right: 20px"> <input type="text" id="searchTerm" name="searchTerm" class="search-query" placeholder="Search"/> </form> </li> <li> <button id="signin_button" type="button" class="signin btn btn-info"> <i class="icon-signin"></i>Signin </button> </li> </ul> </div> </div> </div> </div> <script type="text/javascript"> $(function() { var path = "/"; $("#signin_button").click(function(event) { event.preventDefault(); window.location.href = path + "login" + ".html"; }); }); </script> <div class="container"> <div class="top_offset"> <div class="row"> <div class="span12"> <div id="nav" class="clearfix"> <ul id="pages-nav"> <li id="homeMenu"><div><strong>Home</strong></div></li> <li id="onlineBankingMenu"><div><strong>Online Banking</strong></div></li> <li id="feedback"><div><strong>Feedback</strong></div></li> </ul> </div> </div> <script type="text/javascript"> $(function () { var path = "/"; var featureIdToName = { "index": "homeMenu", "online-banking": "onlineBankingMenu", "feedback": "feedback" }; if (document.location.href.match(".*" + path + "$") != null) { $("#homeMenu").addClass("active"); } else { $.each(featureIdToName, function(featureId, featureName) { if (document.location.href.indexOf(featureId + ".html") >= 0) { $("#" + featureName).addClass("active"); } }); } $.each(featureIdToName, function(featureId, featureName) { $("#nav").on("click", "li[id='" + featureName + "']", function(event) { event.preventDefault(); window.location.href = path + featureId + ".html"; }); }); }); </script> </div> <hr class="row-divider"/> <h2>Search Results:</h2> No results were found for the query: ZAP </div> </div> <div class="clearfix push"></div> </div> <div class="extra"> <div class="extra-inner"> <div class="container"> <div class="row"> <div class="span4"> <ul> <li><span id="download_webinspect_link">Download WebInspect</span></li> </ul> </div> <div class="span4"> <ul> <li><span id="terms_of_use_link">Terms of Use</span></li> </ul> </div> <div class="span4"> <ul> <li><span id="contact_hp_link">Contact Micro Focus</span></li> <li><span id="privacy_statement_link">Privacy Statement</span></li> </ul> </div> </div> <div class="row"> <div class="disclaimer span12"> The Free Online Bank Web site is published by Micro Focus Fortify for the sole purpose of demonstrating the functionality and effectiveness of Micro Focus Fortify’s WebInspect products in detecting and reporting Web application vulnerabilities. This site is not a real banking site and any similarities to third party products and/or Web sites are purely coincidental. This site is provided "as is" without warranty of any kind, either express or implied. Micro Focus Fortify does not assume any risk in relation to your use of this Web site. Use of this Web site indicates that you have read and agree to Micro Focus Fortify’s Terms of Use found at <a href="https://www.microfocus.com/about/legal/#privacy" target="_blank">https://www.microfocus.com/about/legal/#privacy</a> and Micro Focus Fortify’s Online Privacy Statement found at <a href="https://www.microfocus.com/about/legal/#privacy" target="_blank">https://www.microfocus.com/about/legal/#privacy</a>. <br/><br/> Copyright © 2012-2018, Micro Focus Development Company. All rights reserved. </div> </div> </div> </div> </div> <script type="text/javascript"> $(function () { var path = "/"; var attachClickHandler = function(selector, handler) { $(".extra").on('click', selector, handler); } var footerLinks = { "download_webinspect_link": { absolute: true, page: "https://software.microfocus.com/en-us/products/webinspect-dynamic-analysis-dast/overview" }, "contact_hp_link" : { absolute: true, page: "https://support.fortify.com" }, "privacy_statement_link": { absolute: true, page: "https://www.microfocus.com/about/legal/#privacy" }, "terms_of_use_link": { absolute: true, page: "https://www.microfocus.com/about/legal/" } }; $.each(footerLinks, function(linkId, link) { attachClickHandler('span[id="' + linkId + '"]', function(event) { event.preventDefault(); if (link.absolute) { window.location.href = link.page; } else { window.location.href = path + link.page + ".html"; } }); }); }); </script> </body> </html> |
| URL | http://zero.webappsecurity.com/sitemap.xml |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Request Header - size: 225 bytes. |
GET http://zero.webappsecurity.com/sitemap.xml HTTP/1.1
Host: zero.webappsecurity.com User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0 Pragma: no-cache Cache-Control: no-cache |
| Request Body - size: 0 bytes. |
|
| Response Header - size: 204 bytes. |
HTTP/1.1 404 Not Found
Date: Mon, 14 Mar 2022 07:13:40 GMT Server: Apache-Coyote/1.1 Access-Control-Allow-Origin: * Content-Type: text/html;charset=utf-8 Content-Language: en Content-Length: 973 |
| Response Body - size: 973 bytes. |
<html><head><title>Apache Tomcat/7.0.70 - Error report</title><style><!--H1 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:22px;} H2 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:16px;} H3 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:14px;} BODY {font-family:Tahoma,Arial,sans-serif;color:black;background-color:white;} B {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;} P {font-family:Tahoma,Arial,sans-serif;background:white;color:black;font-size:12px;}A {color : black;}A.name {color : black;}HR {color : #525D76;}--></style> </head><body><h1>HTTP Status 404 - /sitemap.xml</h1><HR size="1" noshade="noshade"><p><b>type</b> Status report</p><p><b>message</b> <u>/sitemap.xml</u></p><p><b>description</b> <u>The requested resource is not available.</u></p><HR size="1" noshade="noshade"><h3>Apache Tomcat/7.0.70</h3></body></html>
|
| Instances | 6 |
| Solution |
Ensure that your web server, application server, load balancer, etc. is configured to set the Content-Security-Policy header, to achieve optimal browser support: "Content-Security-Policy" for Chrome 25+, Firefox 23+ and Safari 7+, "X-Content-Security-Policy" for Firefox 4.0+ and Internet Explorer 10+, and "X-WebKit-CSP" for Chrome 14+ and Safari 6+.
|
| Reference |
https://developer.mozilla.org/en-US/docs/Web/Security/CSP/Introducing_Content_Security_Policy
https://cheatsheetseries.owasp.org/cheatsheets/Content_Security_Policy_Cheat_Sheet.html http://www.w3.org/TR/CSP/ http://w3c.github.io/webappsec/specs/content-security-policy/csp-specification.dev.html http://www.html5rocks.com/en/tutorials/security/content-security-policy/ http://caniuse.com/#feat=contentsecuritypolicy http://content-security-policy.com/ |
| Tags |
OWASP_2021_A05
OWASP_2017_A06 |
| CWE Id | 693 |
| WASC Id | 15 |
| Plugin Id | 10038 |
|
Medium |
Cross-Domain Misconfiguration |
|---|---|
| Description |
Web browser data loading may be possible, due to a Cross Origin Resource Sharing (CORS) misconfiguration on the web server
|
| URL | http://zero.webappsecurity.com |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | Access-Control-Allow-Origin: * |
| Request Header - size: 213 bytes. |
GET http://zero.webappsecurity.com HTTP/1.1
Host: zero.webappsecurity.com User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0 Pragma: no-cache Cache-Control: no-cache |
| Request Body - size: 0 bytes. |
|
| Response Header - size: 242 bytes. |
HTTP/1.1 200 OK
Date: Mon, 14 Mar 2022 07:13:40 GMT Server: Apache-Coyote/1.1 Access-Control-Allow-Origin: * Cache-Control: no-cache, max-age=0, must-revalidate, no-store Content-Type: text/html;charset=UTF-8 Content-Language: en-US |
| Response Body - size: 12,471 bytes. |
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Zero - Personal Banking - Loans - Credit Cards</title> <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"> <meta http-equiv="X-UA-Compatible" content="IE=Edge"> <link type="text/css" rel="stylesheet" href="/resources/css/bootstrap.min.css"/> <link type="text/css" rel="stylesheet" href="/resources/css/font-awesome.css"/> <link type="text/css" rel="stylesheet" href="/resources/css/main.css"/> <script src="/resources/js/jquery-1.8.2.min.js"></script> <script src="/resources/js/bootstrap.min.js"></script> <script src="/resources/js/placeholders.min.js"></script> <script type="text/javascript"> Placeholders.init({ live: true, // Apply to future and modified elements too hideOnFocus: true // Hide the placeholder when the element receives focus }); </script> <script type="text/javascript"> $(document).ajaxError(function errorHandler(event, xhr, ajaxOptions, thrownError) { if (xhr.status == 403) { window.location.reload(); } }); </script> </head> <body> <div class="wrapper"> <div class="navbar navbar-fixed-top"> <div class="navbar-inner"> <div class="container"> <a href="/index.html" class="brand">Zero Bank</a> <div> <ul class="nav float-right"> <li> <form action="/search.html" class="navbar-search pull-right" style="padding-right: 20px"> <input type="text" id="searchTerm" name="searchTerm" class="search-query" placeholder="Search"/> </form> </li> <li> <button id="signin_button" type="button" class="signin btn btn-info"> <i class="icon-signin"></i>Signin </button> </li> </ul> </div> </div> </div> </div> <script type="text/javascript"> $(function() { var path = "/"; $("#signin_button").click(function(event) { event.preventDefault(); window.location.href = path + "login" + ".html"; }); }); </script> <div class="container"> <div class="top_offset"> <div class="row"> <div class="span12"> <div id="nav" class="clearfix"> <ul id="pages-nav"> <li id="homeMenu"><div><strong>Home</strong></div></li> <li id="onlineBankingMenu"><div><strong>Online Banking</strong></div></li> <li id="feedback"><div><strong>Feedback</strong></div></li> </ul> </div> </div> <script type="text/javascript"> $(function () { var path = "/"; var featureIdToName = { "index": "homeMenu", "online-banking": "onlineBankingMenu", "feedback": "feedback" }; if (document.location.href.match(".*" + path + "$") != null) { $("#homeMenu").addClass("active"); } else { $.each(featureIdToName, function(featureId, featureName) { if (document.location.href.indexOf(featureId + ".html") >= 0) { $("#" + featureName).addClass("active"); } }); } $.each(featureIdToName, function(featureId, featureName) { $("#nav").on("click", "li[id='" + featureName + "']", function(event) { event.preventDefault(); window.location.href = path + featureId + ".html"; }); }); }); </script> </div> <div class="row"> <div class="span12"> <div id="carousel" class="carousel slide"> <div class="carousel-inner"> <div class="active item"> <img src="/resources/img/main_carousel_1.jpg" width="940" height="401" alt=""/> <div class="custom carousel-caption"> <h4>Online Banking</h4> <p>Welcome to Zero Online Banking. Zero provides a greener and more convenient way to manage your money. Zero enables you to check your account balances, pay your bills, transfer money, and keep detailed records of your transactions, wherever there is an internet connection.</p> </div> </div> <div class="item"> <img src="/resources/img/main_carousel_2.jpg" width="940" height="401" alt=""/> <div class="custom carousel-caption"> <h4>Online Banking</h4> <p>Welcome to Zero Online Banking. Zero provides a greener and more convenient way to manage your money. Zero enables you to check your account balances, pay your bills, transfer money, and keep detailed records of your transactions, wherever there is an internet connection.</p> </div> </div> <div class="item"> <img src="/resources/img/main_carousel_3.jpg" width="940" height="401" alt=""/> <div class="custom carousel-caption"> <h4>Online Banking</h4> <p>Welcome to Zero Online Banking. Zero provides a greener and more convenient way to manage your money. Zero enables you to check your account balances, pay your bills, transfer money, and keep detailed records of your transactions, wherever there is an internet connection.</p> </div> </div> </div> <a class="carousel-control custom left" href="#carousel" data-slide="prev">‹</a> <a class="carousel-control custom right" href="#carousel" data-slide="next">›</a> </div> </div> </div> <hr class="row-divider"/> <div id="online_banking_features" class="row divider"> <div class="span3"> <h4><i class="icon icon-bookmark"></i> Online Banking</h4> <p>Click the button below to view online banking features.</p> <a id="online-banking" class="btn btn-small btn-info">More Services</a> </div> <div class="span3"> <div> <h4><span class="headers" id="account_activity_link"><i class="icon icon-user"></i>Checking Account Activity</span></h4> <p>Use Zero to view the most up-to-date listings of your deposits, withdrawals, interest payments, and a number of other useful transactions. </p> </div> </div> <div class="span3"> <div> <h4><span class="headers" id="transfer_funds_link"><i class="icon icon-random"></i>Transfer Funds</span></h4> <p>Use Zero to safely and securely transfer funds between accounts. There is no hold placed on online money transfers, so your funds are available when you need them. </p> </div> </div> <div class="span3"> <div> <h4><span class="headers" id="money_map_link"><i class="icon icon-list-alt"></i>My Money Map</span></h4> <p>Use Zero to set up and monitor your personalized money map. A money map is an easy-to-use online tool that helps you manage your finances efficiently. With Money Map, you can create a budget, sort your finances into spending and savings categories, check the interest your accounts are earning, and gain new understanding of your patterns with the help of Zero’s clear charts and graphs. </p> </div> </div> </div> <script type="text/javascript"> $(function() { $("#carousel").carousel({ interval: false }); $("div").on("click", "a[id='online-banking']", function(event){ event.preventDefault(); window.location.href = "/" + "online-banking" + ".html"; }); var path = "/bank/"; var featureIdToName = { "account_activity_link": "account-activity", "transfer_funds_link": "transfer-funds", "money_map_link": "money-map" } $.each(featureIdToName, function(featureId, featureName) { $("#online_banking_features").on("click", "span[id='" + featureId + "']", function(event) { event.preventDefault(); window.location.href = path + featureName +".html"; }); }); }); </script> </div> </div> <div class="clearfix push"></div> </div> <div class="extra"> <div class="extra-inner"> <div class="container"> <div class="row"> <div class="span4"> <ul> <li><span id="download_webinspect_link">Download WebInspect</span></li> </ul> </div> <div class="span4"> <ul> <li><span id="terms_of_use_link">Terms of Use</span></li> </ul> </div> <div class="span4"> <ul> <li><span id="contact_hp_link">Contact Micro Focus</span></li> <li><span id="privacy_statement_link">Privacy Statement</span></li> </ul> </div> </div> <div class="row"> <div class="disclaimer span12"> The Free Online Bank Web site is published by Micro Focus Fortify for the sole purpose of demonstrating the functionality and effectiveness of Micro Focus Fortify’s WebInspect products in detecting and reporting Web application vulnerabilities. This site is not a real banking site and any similarities to third party products and/or Web sites are purely coincidental. This site is provided "as is" without warranty of any kind, either express or implied. Micro Focus Fortify does not assume any risk in relation to your use of this Web site. Use of this Web site indicates that you have read and agree to Micro Focus Fortify’s Terms of Use found at <a href="https://www.microfocus.com/about/legal/#privacy" target="_blank">https://www.microfocus.com/about/legal/#privacy</a> and Micro Focus Fortify’s Online Privacy Statement found at <a href="https://www.microfocus.com/about/legal/#privacy" target="_blank">https://www.microfocus.com/about/legal/#privacy</a>. <br/><br/> Copyright © 2012-2018, Micro Focus Development Company. All rights reserved. </div> </div> </div> </div> </div> <script type="text/javascript"> $(function () { var path = "/"; var attachClickHandler = function(selector, handler) { $(".extra").on('click', selector, handler); } var footerLinks = { "download_webinspect_link": { absolute: true, page: "https://software.microfocus.com/en-us/products/webinspect-dynamic-analysis-dast/overview" }, "contact_hp_link" : { absolute: true, page: "https://support.fortify.com" }, "privacy_statement_link": { absolute: true, page: "https://www.microfocus.com/about/legal/#privacy" }, "terms_of_use_link": { absolute: true, page: "https://www.microfocus.com/about/legal/" } }; $.each(footerLinks, function(linkId, link) { attachClickHandler('span[id="' + linkId + '"]', function(event) { event.preventDefault(); if (link.absolute) { window.location.href = link.page; } else { window.location.href = path + link.page + ".html"; } }); }); }); </script> </body> </html> |
| URL | http://zero.webappsecurity.com/ |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | Access-Control-Allow-Origin: * |
| Request Header - size: 214 bytes. |
GET http://zero.webappsecurity.com/ HTTP/1.1
Host: zero.webappsecurity.com User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0 Pragma: no-cache Cache-Control: no-cache |
| Request Body - size: 0 bytes. |
|
| Response Header - size: 242 bytes. |
HTTP/1.1 200 OK
Date: Mon, 14 Mar 2022 07:13:39 GMT Server: Apache-Coyote/1.1 Access-Control-Allow-Origin: * Cache-Control: no-cache, max-age=0, must-revalidate, no-store Content-Type: text/html;charset=UTF-8 Content-Language: en-US |
| Response Body - size: 12,471 bytes. |
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Zero - Personal Banking - Loans - Credit Cards</title> <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"> <meta http-equiv="X-UA-Compatible" content="IE=Edge"> <link type="text/css" rel="stylesheet" href="/resources/css/bootstrap.min.css"/> <link type="text/css" rel="stylesheet" href="/resources/css/font-awesome.css"/> <link type="text/css" rel="stylesheet" href="/resources/css/main.css"/> <script src="/resources/js/jquery-1.8.2.min.js"></script> <script src="/resources/js/bootstrap.min.js"></script> <script src="/resources/js/placeholders.min.js"></script> <script type="text/javascript"> Placeholders.init({ live: true, // Apply to future and modified elements too hideOnFocus: true // Hide the placeholder when the element receives focus }); </script> <script type="text/javascript"> $(document).ajaxError(function errorHandler(event, xhr, ajaxOptions, thrownError) { if (xhr.status == 403) { window.location.reload(); } }); </script> </head> <body> <div class="wrapper"> <div class="navbar navbar-fixed-top"> <div class="navbar-inner"> <div class="container"> <a href="/index.html" class="brand">Zero Bank</a> <div> <ul class="nav float-right"> <li> <form action="/search.html" class="navbar-search pull-right" style="padding-right: 20px"> <input type="text" id="searchTerm" name="searchTerm" class="search-query" placeholder="Search"/> </form> </li> <li> <button id="signin_button" type="button" class="signin btn btn-info"> <i class="icon-signin"></i>Signin </button> </li> </ul> </div> </div> </div> </div> <script type="text/javascript"> $(function() { var path = "/"; $("#signin_button").click(function(event) { event.preventDefault(); window.location.href = path + "login" + ".html"; }); }); </script> <div class="container"> <div class="top_offset"> <div class="row"> <div class="span12"> <div id="nav" class="clearfix"> <ul id="pages-nav"> <li id="homeMenu"><div><strong>Home</strong></div></li> <li id="onlineBankingMenu"><div><strong>Online Banking</strong></div></li> <li id="feedback"><div><strong>Feedback</strong></div></li> </ul> </div> </div> <script type="text/javascript"> $(function () { var path = "/"; var featureIdToName = { "index": "homeMenu", "online-banking": "onlineBankingMenu", "feedback": "feedback" }; if (document.location.href.match(".*" + path + "$") != null) { $("#homeMenu").addClass("active"); } else { $.each(featureIdToName, function(featureId, featureName) { if (document.location.href.indexOf(featureId + ".html") >= 0) { $("#" + featureName).addClass("active"); } }); } $.each(featureIdToName, function(featureId, featureName) { $("#nav").on("click", "li[id='" + featureName + "']", function(event) { event.preventDefault(); window.location.href = path + featureId + ".html"; }); }); }); </script> </div> <div class="row"> <div class="span12"> <div id="carousel" class="carousel slide"> <div class="carousel-inner"> <div class="active item"> <img src="/resources/img/main_carousel_1.jpg" width="940" height="401" alt=""/> <div class="custom carousel-caption"> <h4>Online Banking</h4> <p>Welcome to Zero Online Banking. Zero provides a greener and more convenient way to manage your money. Zero enables you to check your account balances, pay your bills, transfer money, and keep detailed records of your transactions, wherever there is an internet connection.</p> </div> </div> <div class="item"> <img src="/resources/img/main_carousel_2.jpg" width="940" height="401" alt=""/> <div class="custom carousel-caption"> <h4>Online Banking</h4> <p>Welcome to Zero Online Banking. Zero provides a greener and more convenient way to manage your money. Zero enables you to check your account balances, pay your bills, transfer money, and keep detailed records of your transactions, wherever there is an internet connection.</p> </div> </div> <div class="item"> <img src="/resources/img/main_carousel_3.jpg" width="940" height="401" alt=""/> <div class="custom carousel-caption"> <h4>Online Banking</h4> <p>Welcome to Zero Online Banking. Zero provides a greener and more convenient way to manage your money. Zero enables you to check your account balances, pay your bills, transfer money, and keep detailed records of your transactions, wherever there is an internet connection.</p> </div> </div> </div> <a class="carousel-control custom left" href="#carousel" data-slide="prev">‹</a> <a class="carousel-control custom right" href="#carousel" data-slide="next">›</a> </div> </div> </div> <hr class="row-divider"/> <div id="online_banking_features" class="row divider"> <div class="span3"> <h4><i class="icon icon-bookmark"></i> Online Banking</h4> <p>Click the button below to view online banking features.</p> <a id="online-banking" class="btn btn-small btn-info">More Services</a> </div> <div class="span3"> <div> <h4><span class="headers" id="account_activity_link"><i class="icon icon-user"></i>Checking Account Activity</span></h4> <p>Use Zero to view the most up-to-date listings of your deposits, withdrawals, interest payments, and a number of other useful transactions. </p> </div> </div> <div class="span3"> <div> <h4><span class="headers" id="transfer_funds_link"><i class="icon icon-random"></i>Transfer Funds</span></h4> <p>Use Zero to safely and securely transfer funds between accounts. There is no hold placed on online money transfers, so your funds are available when you need them. </p> </div> </div> <div class="span3"> <div> <h4><span class="headers" id="money_map_link"><i class="icon icon-list-alt"></i>My Money Map</span></h4> <p>Use Zero to set up and monitor your personalized money map. A money map is an easy-to-use online tool that helps you manage your finances efficiently. With Money Map, you can create a budget, sort your finances into spending and savings categories, check the interest your accounts are earning, and gain new understanding of your patterns with the help of Zero’s clear charts and graphs. </p> </div> </div> </div> <script type="text/javascript"> $(function() { $("#carousel").carousel({ interval: false }); $("div").on("click", "a[id='online-banking']", function(event){ event.preventDefault(); window.location.href = "/" + "online-banking" + ".html"; }); var path = "/bank/"; var featureIdToName = { "account_activity_link": "account-activity", "transfer_funds_link": "transfer-funds", "money_map_link": "money-map" } $.each(featureIdToName, function(featureId, featureName) { $("#online_banking_features").on("click", "span[id='" + featureId + "']", function(event) { event.preventDefault(); window.location.href = path + featureName +".html"; }); }); }); </script> </div> </div> <div class="clearfix push"></div> </div> <div class="extra"> <div class="extra-inner"> <div class="container"> <div class="row"> <div class="span4"> <ul> <li><span id="download_webinspect_link">Download WebInspect</span></li> </ul> </div> <div class="span4"> <ul> <li><span id="terms_of_use_link">Terms of Use</span></li> </ul> </div> <div class="span4"> <ul> <li><span id="contact_hp_link">Contact Micro Focus</span></li> <li><span id="privacy_statement_link">Privacy Statement</span></li> </ul> </div> </div> <div class="row"> <div class="disclaimer span12"> The Free Online Bank Web site is published by Micro Focus Fortify for the sole purpose of demonstrating the functionality and effectiveness of Micro Focus Fortify’s WebInspect products in detecting and reporting Web application vulnerabilities. This site is not a real banking site and any similarities to third party products and/or Web sites are purely coincidental. This site is provided "as is" without warranty of any kind, either express or implied. Micro Focus Fortify does not assume any risk in relation to your use of this Web site. Use of this Web site indicates that you have read and agree to Micro Focus Fortify’s Terms of Use found at <a href="https://www.microfocus.com/about/legal/#privacy" target="_blank">https://www.microfocus.com/about/legal/#privacy</a> and Micro Focus Fortify’s Online Privacy Statement found at <a href="https://www.microfocus.com/about/legal/#privacy" target="_blank">https://www.microfocus.com/about/legal/#privacy</a>. <br/><br/> Copyright © 2012-2018, Micro Focus Development Company. All rights reserved. </div> </div> </div> </div> </div> <script type="text/javascript"> $(function () { var path = "/"; var attachClickHandler = function(selector, handler) { $(".extra").on('click', selector, handler); } var footerLinks = { "download_webinspect_link": { absolute: true, page: "https://software.microfocus.com/en-us/products/webinspect-dynamic-analysis-dast/overview" }, "contact_hp_link" : { absolute: true, page: "https://support.fortify.com" }, "privacy_statement_link": { absolute: true, page: "https://www.microfocus.com/about/legal/#privacy" }, "terms_of_use_link": { absolute: true, page: "https://www.microfocus.com/about/legal/" } }; $.each(footerLinks, function(linkId, link) { attachClickHandler('span[id="' + linkId + '"]', function(event) { event.preventDefault(); if (link.absolute) { window.location.href = link.page; } else { window.location.href = path + link.page + ".html"; } }); }); }); </script> </body> </html> |
| URL | http://zero.webappsecurity.com/index.html |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | Access-Control-Allow-Origin: * |
| Request Header - size: 265 bytes. |
GET http://zero.webappsecurity.com/index.html HTTP/1.1
Host: zero.webappsecurity.com User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0 Pragma: no-cache Cache-Control: no-cache Referer: http://zero.webappsecurity.com |
| Request Body - size: 0 bytes. |
|
| Response Header - size: 242 bytes. |
HTTP/1.1 200 OK
Date: Mon, 14 Mar 2022 07:13:41 GMT Server: Apache-Coyote/1.1 Access-Control-Allow-Origin: * Cache-Control: no-cache, max-age=0, must-revalidate, no-store Content-Type: text/html;charset=UTF-8 Content-Language: en-US |
| Response Body - size: 12,471 bytes. |
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Zero - Personal Banking - Loans - Credit Cards</title> <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"> <meta http-equiv="X-UA-Compatible" content="IE=Edge"> <link type="text/css" rel="stylesheet" href="/resources/css/bootstrap.min.css"/> <link type="text/css" rel="stylesheet" href="/resources/css/font-awesome.css"/> <link type="text/css" rel="stylesheet" href="/resources/css/main.css"/> <script src="/resources/js/jquery-1.8.2.min.js"></script> <script src="/resources/js/bootstrap.min.js"></script> <script src="/resources/js/placeholders.min.js"></script> <script type="text/javascript"> Placeholders.init({ live: true, // Apply to future and modified elements too hideOnFocus: true // Hide the placeholder when the element receives focus }); </script> <script type="text/javascript"> $(document).ajaxError(function errorHandler(event, xhr, ajaxOptions, thrownError) { if (xhr.status == 403) { window.location.reload(); } }); </script> </head> <body> <div class="wrapper"> <div class="navbar navbar-fixed-top"> <div class="navbar-inner"> <div class="container"> <a href="/index.html" class="brand">Zero Bank</a> <div> <ul class="nav float-right"> <li> <form action="/search.html" class="navbar-search pull-right" style="padding-right: 20px"> <input type="text" id="searchTerm" name="searchTerm" class="search-query" placeholder="Search"/> </form> </li> <li> <button id="signin_button" type="button" class="signin btn btn-info"> <i class="icon-signin"></i>Signin </button> </li> </ul> </div> </div> </div> </div> <script type="text/javascript"> $(function() { var path = "/"; $("#signin_button").click(function(event) { event.preventDefault(); window.location.href = path + "login" + ".html"; }); }); </script> <div class="container"> <div class="top_offset"> <div class="row"> <div class="span12"> <div id="nav" class="clearfix"> <ul id="pages-nav"> <li id="homeMenu"><div><strong>Home</strong></div></li> <li id="onlineBankingMenu"><div><strong>Online Banking</strong></div></li> <li id="feedback"><div><strong>Feedback</strong></div></li> </ul> </div> </div> <script type="text/javascript"> $(function () { var path = "/"; var featureIdToName = { "index": "homeMenu", "online-banking": "onlineBankingMenu", "feedback": "feedback" }; if (document.location.href.match(".*" + path + "$") != null) { $("#homeMenu").addClass("active"); } else { $.each(featureIdToName, function(featureId, featureName) { if (document.location.href.indexOf(featureId + ".html") >= 0) { $("#" + featureName).addClass("active"); } }); } $.each(featureIdToName, function(featureId, featureName) { $("#nav").on("click", "li[id='" + featureName + "']", function(event) { event.preventDefault(); window.location.href = path + featureId + ".html"; }); }); }); </script> </div> <div class="row"> <div class="span12"> <div id="carousel" class="carousel slide"> <div class="carousel-inner"> <div class="active item"> <img src="/resources/img/main_carousel_1.jpg" width="940" height="401" alt=""/> <div class="custom carousel-caption"> <h4>Online Banking</h4> <p>Welcome to Zero Online Banking. Zero provides a greener and more convenient way to manage your money. Zero enables you to check your account balances, pay your bills, transfer money, and keep detailed records of your transactions, wherever there is an internet connection.</p> </div> </div> <div class="item"> <img src="/resources/img/main_carousel_2.jpg" width="940" height="401" alt=""/> <div class="custom carousel-caption"> <h4>Online Banking</h4> <p>Welcome to Zero Online Banking. Zero provides a greener and more convenient way to manage your money. Zero enables you to check your account balances, pay your bills, transfer money, and keep detailed records of your transactions, wherever there is an internet connection.</p> </div> </div> <div class="item"> <img src="/resources/img/main_carousel_3.jpg" width="940" height="401" alt=""/> <div class="custom carousel-caption"> <h4>Online Banking</h4> <p>Welcome to Zero Online Banking. Zero provides a greener and more convenient way to manage your money. Zero enables you to check your account balances, pay your bills, transfer money, and keep detailed records of your transactions, wherever there is an internet connection.</p> </div> </div> </div> <a class="carousel-control custom left" href="#carousel" data-slide="prev">‹</a> <a class="carousel-control custom right" href="#carousel" data-slide="next">›</a> </div> </div> </div> <hr class="row-divider"/> <div id="online_banking_features" class="row divider"> <div class="span3"> <h4><i class="icon icon-bookmark"></i> Online Banking</h4> <p>Click the button below to view online banking features.</p> <a id="online-banking" class="btn btn-small btn-info">More Services</a> </div> <div class="span3"> <div> <h4><span class="headers" id="account_activity_link"><i class="icon icon-user"></i>Checking Account Activity</span></h4> <p>Use Zero to view the most up-to-date listings of your deposits, withdrawals, interest payments, and a number of other useful transactions. </p> </div> </div> <div class="span3"> <div> <h4><span class="headers" id="transfer_funds_link"><i class="icon icon-random"></i>Transfer Funds</span></h4> <p>Use Zero to safely and securely transfer funds between accounts. There is no hold placed on online money transfers, so your funds are available when you need them. </p> </div> </div> <div class="span3"> <div> <h4><span class="headers" id="money_map_link"><i class="icon icon-list-alt"></i>My Money Map</span></h4> <p>Use Zero to set up and monitor your personalized money map. A money map is an easy-to-use online tool that helps you manage your finances efficiently. With Money Map, you can create a budget, sort your finances into spending and savings categories, check the interest your accounts are earning, and gain new understanding of your patterns with the help of Zero’s clear charts and graphs. </p> </div> </div> </div> <script type="text/javascript"> $(function() { $("#carousel").carousel({ interval: false }); $("div").on("click", "a[id='online-banking']", function(event){ event.preventDefault(); window.location.href = "/" + "online-banking" + ".html"; }); var path = "/bank/"; var featureIdToName = { "account_activity_link": "account-activity", "transfer_funds_link": "transfer-funds", "money_map_link": "money-map" } $.each(featureIdToName, function(featureId, featureName) { $("#online_banking_features").on("click", "span[id='" + featureId + "']", function(event) { event.preventDefault(); window.location.href = path + featureName +".html"; }); }); }); </script> </div> </div> <div class="clearfix push"></div> </div> <div class="extra"> <div class="extra-inner"> <div class="container"> <div class="row"> <div class="span4"> <ul> <li><span id="download_webinspect_link">Download WebInspect</span></li> </ul> </div> <div class="span4"> <ul> <li><span id="terms_of_use_link">Terms of Use</span></li> </ul> </div> <div class="span4"> <ul> <li><span id="contact_hp_link">Contact Micro Focus</span></li> <li><span id="privacy_statement_link">Privacy Statement</span></li> </ul> </div> </div> <div class="row"> <div class="disclaimer span12"> The Free Online Bank Web site is published by Micro Focus Fortify for the sole purpose of demonstrating the functionality and effectiveness of Micro Focus Fortify’s WebInspect products in detecting and reporting Web application vulnerabilities. This site is not a real banking site and any similarities to third party products and/or Web sites are purely coincidental. This site is provided "as is" without warranty of any kind, either express or implied. Micro Focus Fortify does not assume any risk in relation to your use of this Web site. Use of this Web site indicates that you have read and agree to Micro Focus Fortify’s Terms of Use found at <a href="https://www.microfocus.com/about/legal/#privacy" target="_blank">https://www.microfocus.com/about/legal/#privacy</a> and Micro Focus Fortify’s Online Privacy Statement found at <a href="https://www.microfocus.com/about/legal/#privacy" target="_blank">https://www.microfocus.com/about/legal/#privacy</a>. <br/><br/> Copyright © 2012-2018, Micro Focus Development Company. All rights reserved. </div> </div> </div> </div> </div> <script type="text/javascript"> $(function () { var path = "/"; var attachClickHandler = function(selector, handler) { $(".extra").on('click', selector, handler); } var footerLinks = { "download_webinspect_link": { absolute: true, page: "https://software.microfocus.com/en-us/products/webinspect-dynamic-analysis-dast/overview" }, "contact_hp_link" : { absolute: true, page: "https://support.fortify.com" }, "privacy_statement_link": { absolute: true, page: "https://www.microfocus.com/about/legal/#privacy" }, "terms_of_use_link": { absolute: true, page: "https://www.microfocus.com/about/legal/" } }; $.each(footerLinks, function(linkId, link) { attachClickHandler('span[id="' + linkId + '"]', function(event) { event.preventDefault(); if (link.absolute) { window.location.href = link.page; } else { window.location.href = path + link.page + ".html"; } }); }); }); </script> </body> </html> |
| URL | http://zero.webappsecurity.com/resources/css/bootstrap.min.css |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | Access-Control-Allow-Origin: * |
| Request Header - size: 286 bytes. |
GET http://zero.webappsecurity.com/resources/css/bootstrap.min.css HTTP/1.1
Host: zero.webappsecurity.com User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0 Pragma: no-cache Cache-Control: no-cache Referer: http://zero.webappsecurity.com |
| Request Body - size: 0 bytes. |
|
| Response Header - size: 349 bytes. |
HTTP/1.1 200 OK
Date: Mon, 14 Mar 2022 07:13:41 GMT Server: Apache-Coyote/1.1 Access-Control-Allow-Origin: * Accept-Ranges: bytes ETag: W/"115795-1358437290000" Last-Modified: Thu, 17 Jan 2013 15:41:30 GMT Cache-Control: max-age=2678400 Expires: Thu, 14 Apr 2022 07:13:42 GMT Content-Type: text/css;charset=UTF-8 Content-Length: 115795 |
| Response Body - size: 115,795 bytes. |
/*!
* Bootstrap v2.2.2 * * Copyright 2012 Twitter, Inc * Licensed under the Apache License v2.0 * http://www.apache.org/licenses/LICENSE-2.0 * * Designed and built with all the love in the world @twitter by @mdo and @fat. */ .clearfix{*zoom:1;}.clearfix:before,.clearfix:after{display:table;content:"";line-height:0;} .clearfix:after{clear:both;} .hide-text{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0;} .input-block-level{display:block;width:100%;min-height:30px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;} article,aside,details,figcaption,figure,footer,header,hgroup,nav,section{display:block;} audio,canvas,video{display:inline-block;*display:inline;*zoom:1;} audio:not([controls]){display:none;} html{font-size:100%;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%;} a:focus{outline:thin dotted #333;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px;} a:hover,a:active{outline:0;} sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline;} sup{top:-0.5em;} sub{bottom:-0.25em;} img{max-width:100%;width:auto\9;height:auto;vertical-align:middle;border:0;-ms-interpolation-mode:bicubic;} #map_canvas img,.google-maps img{max-width:none;} button,input,select,textarea{margin:0;font-size:100%;vertical-align:middle;} button,input{*overflow:visible;line-height:normal;} button::-moz-focus-inner,input::-moz-focus-inner{padding:0;border:0;} button,html input[type="button"],input[type="reset"],input[type="submit"]{-webkit-appearance:button;cursor:pointer;} label,select,button,input[type="button"],input[type="reset"],input[type="submit"],input[type="radio"],input[type="checkbox"]{cursor:pointer;} input[type="search"]{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;-webkit-appearance:textfield;} input[type="search"]::-webkit-search-decoration,input[type="search"]::-webkit-search-cancel-button{-webkit-appearance:none;} textarea{overflow:auto;vertical-align:top;} @media print{*{text-shadow:none !important;color:#000 !important;background:transparent !important;box-shadow:none !important;} a,a:visited{text-decoration:underline;} a[href]:after{content:" (" attr(href) ")";} abbr[title]:after{content:" (" attr(title) ")";} .ir a:after,a[href^="javascript:"]:after,a[href^="#"]:after{content:"";} pre,blockquote{border:1px solid #999;page-break-inside:avoid;} thead{display:table-header-group;} tr,img{page-break-inside:avoid;} img{max-width:100% !important;} @page {margin:0.5cm;}p,h2,h3{orphans:3;widows:3;} h2,h3{page-break-after:avoid;}}body{margin:0;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;line-height:20px;color:#333333;background-color:#ffffff;} a{color:#0088cc;text-decoration:none;} a:hover{color:#005580;text-decoration:underline;} .img-rounded{-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;} .img-polaroid{padding:4px;background-color:#fff;border:1px solid #ccc;border:1px solid rgba(0, 0, 0, 0.2);-webkit-box-shadow:0 1px 3px rgba(0, 0, 0, 0.1);-moz-box-shadow:0 1px 3px rgba(0, 0, 0, 0.1);box-shadow:0 1px 3px rgba(0, 0, 0, 0.1);} .img-circle{-webkit-border-radius:500px;-moz-border-radius:500px;border-radius:500px;} .row{margin-left:-20px;*zoom:1;}.row:before,.row:after{display:table;content:"";line-height:0;} .row:after{clear:both;} [class*="span"]{float:left;min-height:1px;margin-left:20px;} .container,.navbar-static-top .container,.navbar-fixed-top .container,.navbar-fixed-bottom .container{width:940px;} .span12{width:940px;} .span11{width:860px;} .span10{width:780px;} .span9{width:700px;} .span8{width:620px;} .span7{width:540px;} .span6{width:460px;} .span5{width:380px;} .span4{width:300px;} .span3{width:220px;} .span2{width:140px;} .span1{width:60px;} .offset12{margin-left:980px;} .offset11{margin-left:900px;} .offset10{margin-left:820px;} .offset9{margin-left:740px;} .offset8{margin-left:660px;} .offset7{margin-left:580px;} .offset6{margin-left:500px;} .offset5{margin-left:420px;} .offset4{margin-left:340px;} .offset3{margin-left:260px;} .offset2{margin-left:180px;} .offset1{margin-left:100px;} .row-fluid{width:100%;*zoom:1;}.row-fluid:before,.row-fluid:after{display:table;content:"";line-height:0;} .row-fluid:after{clear:both;} .row-fluid [class*="span"]{display:block;width:100%;min-height:30px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;float:left;margin-left:2.127659574468085%;*margin-left:2.074468085106383%;} .row-fluid [class*="span"]:first-child{margin-left:0;} .row-fluid .controls-row [class*="span"]+[class*="span"]{margin-left:2.127659574468085%;} .row-fluid .span12{width:100%;*width:99.94680851063829%;} .row-fluid .span11{width:91.48936170212765%;*width:91.43617021276594%;} .row-fluid .span10{width:82.97872340425532%;*width:82.92553191489361%;} .row-fluid .span9{width:74.46808510638297%;*width:74.41489361702126%;} .row-fluid .span8{width:65.95744680851064%;*width:65.90425531914893%;} .row-fluid .span7{width:57.44680851063829%;*width:57.39361702127659%;} .row-fluid .span6{width:48.93617021276595%;*width:48.88297872340425%;} .row-fluid .span5{width:40.42553191489362%;*width:40.37234042553192%;} .row-fluid .span4{width:31.914893617021278%;*width:31.861702127659576%;} .row-fluid .span3{width:23.404255319148934%;*width:23.351063829787233%;} .row-fluid .span2{width:14.893617021276595%;*width:14.840425531914894%;} .row-fluid .span1{width:6.382978723404255%;*width:6.329787234042553%;} .row-fluid .offset12{margin-left:104.25531914893617%;*margin-left:104.14893617021275%;} .row-fluid .offset12:first-child{margin-left:102.12765957446808%;*margin-left:102.02127659574467%;} .row-fluid .offset11{margin-left:95.74468085106382%;*margin-left:95.6382978723404%;} .row-fluid .offset11:first-child{margin-left:93.61702127659574%;*margin-left:93.51063829787232%;} .row-fluid .offset10{margin-left:87.23404255319149%;*margin-left:87.12765957446807%;} .row-fluid .offset10:first-child{margin-left:85.1063829787234%;*margin-left:84.99999999999999%;} .row-fluid .offset9{margin-left:78.72340425531914%;*margin-left:78.61702127659572%;} .row-fluid .offset9:first-child{margin-left:76.59574468085106%;*margin-left:76.48936170212764%;} .row-fluid .offset8{margin-left:70.2127659574468%;*margin-left:70.10638297872339%;} .row-fluid .offset8:first-child{margin-left:68.08510638297872%;*margin-left:67.9787234042553%;} .row-fluid .offset7{margin-left:61.70212765957446%;*margin-left:61.59574468085106%;} .row-fluid .offset7:first-child{margin-left:59.574468085106375%;*margin-left:59.46808510638297%;} .row-fluid .offset6{margin-left:53.191489361702125%;*margin-left:53.085106382978715%;} .row-fluid .offset6:first-child{margin-left:51.063829787234035%;*margin-left:50.95744680851063%;} .row-fluid .offset5{margin-left:44.68085106382979%;*margin-left:44.57446808510638%;} .row-fluid .offset5:first-child{margin-left:42.5531914893617%;*margin-left:42.4468085106383%;} .row-fluid .offset4{margin-left:36.170212765957444%;*margin-left:36.06382978723405%;} .row-fluid .offset4:first-child{margin-left:34.04255319148936%;*margin-left:33.93617021276596%;} .row-fluid .offset3{margin-left:27.659574468085104%;*margin-left:27.5531914893617%;} .row-fluid .offset3:first-child{margin-left:25.53191489361702%;*margin-left:25.425531914893618%;} .row-fluid .offset2{margin-left:19.148936170212764%;*margin-left:19.04255319148936%;} .row-fluid .offset2:first-child{margin-left:17.02127659574468%;*margin-left:16.914893617021278%;} .row-fluid .offset1{margin-left:10.638297872340425%;*margin-left:10.53191489361702%;} .row-fluid .offset1:first-child{margin-left:8.51063829787234%;*margin-left:8.404255319148938%;} [class*="span"].hide,.row-fluid [class*="span"].hide{display:none;} [class*="span"].pull-right,.row-fluid [class*="span"].pull-right{float:right;} .container{margin-right:auto;margin-left:auto;*zoom:1;}.container:before,.container:after{display:table;content:"";line-height:0;} .container:after{clear:both;} .container-fluid{padding-right:20px;padding-left:20px;*zoom:1;}.container-fluid:before,.container-fluid:after{display:table;content:"";line-height:0;} .container-fluid:after{clear:both;} p{margin:0 0 10px;} .lead{margin-bottom:20px;font-size:21px;font-weight:200;line-height:30px;} small{font-size:85%;} strong{font-weight:bold;} em{font-style:italic;} cite{font-style:normal;} .muted{color:#999999;} a.muted:hover{color:#808080;} .text-warning{color:#c09853;} a.text-warning:hover{color:#a47e3c;} .text-error{color:#b94a48;} a.text-error:hover{color:#953b39;} .text-info{color:#3a87ad;} a.text-info:hover{color:#2d6987;} .text-success{color:#468847;} a.text-success:hover{color:#356635;} h1,h2,h3,h4,h5,h6{margin:10px 0;font-family:inherit;font-weight:bold;line-height:20px;color:inherit;text-rendering:optimizelegibility;}h1 small,h2 small,h3 small,h4 small,h5 small,h6 small{font-weight:normal;line-height:1;color:#999999;} h1,h2,h3{line-height:40px;} h1{font-size:38.5px;} h2{font-size:31.5px;} h3{font-size:24.5px;} h4{font-size:17.5px;} h5{font-size:14px;} h6{font-size:11.9px;} h1 small{font-size:24.5px;} h2 small{font-size:17.5px;} h3 small{font-size:14px;} h4 small{font-size:14px;} .page-header{padding-bottom:9px;margin:20px 0 30px;border-bottom:1px solid #eeeeee;} ul,ol{padding:0;margin:0 0 10px 25px;} ul ul,ul ol,ol ol,ol ul{margin-bottom:0;} li{line-height:20px;} ul.unstyled,ol.unstyled{margin-left:0;list-style:none;} ul.inline,ol.inline{margin-left:0;list-style:none;}ul.inline >li,ol.inline >li{display:inline-block;padding-left:5px;padding-right:5px;} dl{margin-bottom:20px;} dt,dd{line-height:20px;} dt{font-weight:bold;} dd{margin-left:10px;} .dl-horizontal{*zoom:1;}.dl-horizontal:before,.dl-horizontal:after{display:table;content:"";line-height:0;} .dl-horizontal:after{clear:both;} .dl-horizontal dt{float:left;width:160px;clear:left;text-align:right;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;} .dl-horizontal dd{margin-left:180px;} hr{margin:20px 0;border:0;border-top:1px solid #eeeeee;border-bottom:1px solid #ffffff;} abbr[title],abbr[data-original-title]{cursor:help;border-bottom:1px dotted #999999;} abbr.initialism{font-size:90%;text-transform:uppercase;} blockquote{padding:0 0 0 15px;margin:0 0 20px;border-left:5px solid #eeeeee;}blockquote p{margin-bottom:0;font-size:16px;font-weight:300;line-height:25px;} blockquote small{display:block;line-height:20px;color:#999999;}blockquote small:before{content:'\2014 \00A0';} blockquote.pull-right{float:right;padding-right:15px;padding-left:0;border-right:5px solid #eeeeee;border-left:0;}blockquote.pull-right p,blockquote.pull-right small{text-align:right;} blockquote.pull-right small:before{content:'';} blockquote.pull-right small:after{content:'\00A0 \2014';} q:before,q:after,blockquote:before,blockquote:after{content:"";} address{display:block;margin-bottom:20px;font-style:normal;line-height:20px;} code,pre{padding:0 3px 2px;font-family:Monaco,Menlo,Consolas,"Courier New",monospace;font-size:12px;color:#333333;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;} code{padding:2px 4px;color:#d14;background-color:#f7f7f9;border:1px solid #e1e1e8;white-space:nowrap;} pre{display:block;padding:9.5px;margin:0 0 10px;font-size:13px;line-height:20px;word-break:break-all;word-wrap:break-word;white-space:pre;white-space:pre-wrap;background-color:#f5f5f5;border:1px solid #ccc;border:1px solid rgba(0, 0, 0, 0.15);-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;}pre.prettyprint{margin-bottom:20px;} pre code{padding:0;color:inherit;white-space:pre;white-space:pre-wrap;background-color:transparent;border:0;} .pre-scrollable{max-height:340px;overflow-y:scroll;} .label,.badge{display:inline-block;padding:2px 4px;font-size:11.844px;font-weight:bold;line-height:14px;color:#ffffff;vertical-align:baseline;white-space:nowrap;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);background-color:#999999;} .label{-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;} .badge{padding-left:9px;padding-right:9px;-webkit-border-radius:9px;-moz-border-radius:9px;border-radius:9px;} .label:empty,.badge:empty{display:none;} a.label:hover,a.badge:hover{color:#ffffff;text-decoration:none;cursor:pointer;} .label-important,.badge-important{background-color:#b94a48;} .label-important[href],.badge-important[href]{background-color:#953b39;} .label-warning,.badge-warning{background-color:#f89406;} .label-warning[href],.badge-warning[href]{background-color:#c67605;} .label-success,.badge-success{background-color:#468847;} .label-success[href],.badge-success[href]{background-color:#356635;} .label-info,.badge-info{background-color:#3a87ad;} .label-info[href],.badge-info[href]{background-color:#2d6987;} .label-inverse,.badge-inverse{background-color:#333333;} .label-inverse[href],.badge-inverse[href]{background-color:#1a1a1a;} .btn .label,.btn .badge{position:relative;top:-1px;} .btn-mini .label,.btn-mini .badge{top:0;} table{max-width:100%;background-color:transparent;border-collapse:collapse;border-spacing:0;} .table{width:100%;margin-bottom:20px;}.table th,.table td{padding:8px;line-height:20px;text-align:left;vertical-align:top;border-top:1px solid #dddddd;} .table th{font-weight:bold;} .table thead th{vertical-align:bottom;} .table caption+thead tr:first-child th,.table caption+thead tr:first-child td,.table colgroup+thead tr:first-child th,.table colgroup+thead tr:first-child td,.table thead:first-child tr:first-child th,.table thead:first-child tr:first-child td{border-top:0;} .table tbody+tbody{border-top:2px solid #dddddd;} .table .table{background-color:#ffffff;} .table-condensed th,.table-condensed td{padding:4px 5px;} .table-bordered{border:1px solid #dddddd;border-collapse:separate;*border-collapse:collapse;border-left:0;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;}.table-bordered th,.table-bordered td{border-left:1px solid #dddddd;} .table-bordered caption+thead tr:first-child th,.table-bordered caption+tbody tr:first-child th,.table-bordered caption+tbody tr:first-child td,.table-bordered colgroup+thead tr:first-child th,.table-bordered colgroup+tbody tr:first-child th,.table-bordered colgroup+tbody tr:first-child td,.table-bordered thead:first-child tr:first-child th,.table-bordered tbody:first-child tr:first-child th,.table-bordered tbody:first-child tr:first-child td{border-top:0;} .table-bordered thead:first-child tr:first-child>th:first-child,.table-bordered tbody:first-child tr:first-child>td:first-child{-webkit-border-top-left-radius:4px;-moz-border-radius-topleft:4px;border-top-left-radius:4px;} .table-bordered thead:first-child tr:first-child>th:last-child,.table-bordered tbody:first-child tr:first-child>td:last-child{-webkit-border-top-right-radius:4px;-moz-border-radius-topright:4px;border-top-right-radius:4px;} .table-bordered thead:last-child tr:last-child>th:first-child,.table-bordered tbody:last-child tr:last-child>td:first-child,.table-bordered tfoot:last-child tr:last-child>td:first-child{-webkit-border-bottom-left-radius:4px;-moz-border-radius-bottomleft:4px;border-bottom-left-radius:4px;} .table-bordered thead:last-child tr:last-child>th:last-child,.table-bordered tbody:last-child tr:last-child>td:last-child,.table-bordered tfoot:last-child tr:last-child>td:last-child{-webkit-border-bottom-right-radius:4px;-moz-border-radius-bottomright:4px;border-bottom-right-radius:4px;} .table-bordered tfoot+tbody:last-child tr:last-child td:first-child{-webkit-border-bottom-left-radius:0;-moz-border-radius-bottomleft:0;border-bottom-left-radius:0;} .table-bordered tfoot+tbody:last-child tr:last-child td:last-child{-webkit-border-bottom-right-radius:0;-moz-border-radius-bottomright:0;border-bottom-right-radius:0;} .table-bordered caption+thead tr:first-child th:first-child,.table-bordered caption+tbody tr:first-child td:first-child,.table-bordered colgroup+thead tr:first-child th:first-child,.table-bordered colgroup+tbody tr:first-child td:first-child{-webkit-border-top-left-radius:4px;-moz-border-radius-topleft:4px;border-top-left-radius:4px;} .table-bordered caption+thead tr:first-child th:last-child,.table-bordered caption+tbody tr:first-child td:last-child,.table-bordered colgroup+thead tr:first-child th:last-child,.table-bordered colgroup+tbody tr:first-child td:last-child{-webkit-border-top-right-radius:4px;-moz-border-radius-topright:4px;border-top-right-radius:4px;} .table-striped tbody>tr:nth-child(odd)>td,.table-striped tbody>tr:nth-child(odd)>th{background-color:#f9f9f9;} .table-hover tbody tr:hover td,.table-hover tbody tr:hover th{background-color:#f5f5f5;} table td[class*="span"],table th[class*="span"],.row-fluid table td[class*="span"],.row-fluid table th[class*="span"]{display:table-cell;float:none;margin-left:0;} .table td.span1,.table th.span1{float:none;width:44px;margin-left:0;} .table td.span2,.table th.span2{float:none;width:124px;margin-left:0;} .table td.span3,.table th.span3{float:none;width:204px;margin-left:0;} .table td.span4,.table th.span4{float:none;width:284px;margin-left:0;} .table td.span5,.table th.span5{float:none;width:364px;margin-left:0;} .table td.span6,.table th.span6{float:none;width:444px;margin-left:0;} .table td.span7,.table th.span7{float:none;width:524px;margin-left:0;} .table td.span8,.table th.span8{float:none;width:604px;margin-left:0;} .table td.span9,.table th.span9{float:none;width:684px;margin-left:0;} .table td.span10,.table th.span10{float:none;width:764px;margin-left:0;} .table td.span11,.table th.span11{float:none;width:844px;margin-left:0;} .table td.span12,.table th.span12{float:none;width:924px;margin-left:0;} .table tbody tr.success td{background-color:#dff0d8;} .table tbody tr.error td{background-color:#f2dede;} .table tbody tr.warning td{background-color:#fcf8e3;} .table tbody tr.info td{background-color:#d9edf7;} .table-hover tbody tr.success:hover td{background-color:#d0e9c6;} .table-hover tbody tr.error:hover td{background-color:#ebcccc;} .table-hover tbody tr.warning:hover td{background-color:#faf2cc;} .table-hover tbody tr.info:hover td{background-color:#c4e3f3;} form{margin:0 0 20px;} fieldset{padding:0;margin:0;border:0;} legend{display:block;width:100%;padding:0;margin-bottom:20px;font-size:21px;line-height:40px;color:#333333;border:0;border-bottom:1px solid #e5e5e5;}legend small{font-size:15px;color:#999999;} label,input,button,select,textarea{font-size:14px;font-weight:normal;line-height:20px;} input,button,select,textarea{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;} label{display:block;margin-bottom:5px;} select,textarea,input[type="text"],input[type="password"],input[type="datetime"],input[type="datetime-local"],input[type="date"],input[type="month"],input[type="time"],input[type="week"],input[type="number"],input[type="email"],input[type="url"],input[type="search"],input[type="tel"],input[type="color"],.uneditable-input{display:inline-block;height:20px;padding:4px 6px;margin-bottom:10px;font-size:14px;line-height:20px;color:#555555;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;vertical-align:middle;} input,textarea,.uneditable-input{width:206px;} textarea{height:auto;} textarea,input[type="text"],input[type="password"],input[type="datetime"],input[type="datetime-local"],input[type="date"],input[type="month"],input[type="time"],input[type="week"],input[type="number"],input[type="email"],input[type="url"],input[type="search"],input[type="tel"],input[type="color"],.uneditable-input{background-color:#ffffff;border:1px solid #cccccc;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);-moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);-webkit-transition:border linear .2s, box-shadow linear .2s;-moz-transition:border linear .2s, box-shadow linear .2s;-o-transition:border linear .2s, box-shadow linear .2s;transition:border linear .2s, box-shadow linear .2s;}textarea:focus,input[type="text"]:focus,input[type="password"]:focus,input[type="datetime"]:focus,input[type="datetime-local"]:focus,input[type="date"]:focus,input[type="month"]:focus,input[type="time"]:focus,input[type="week"]:focus,input[type="number"]:focus,input[type="email"]:focus,input[type="url"]:focus,input[type="search"]:focus,input[type="tel"]:focus,input[type="color"]:focus,.uneditable-input:focus{border-color:rgba(82, 168, 236, 0.8);outline:0;outline:thin dotted \9;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(82,168,236,.6);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(82,168,236,.6);box-shadow:inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(82,168,236,.6);} input[type="radio"],input[type="checkbox"]{margin:4px 0 0;*margin-top:0;margin-top:1px \9;line-height:normal;} input[type="file"],input[type="image"],input[type="submit"],input[type="reset"],input[type="button"],input[type="radio"],input[type="checkbox"]{width:auto;} select,input[type="file"]{height:30px;*margin-top:4px;line-height:30px;} select{width:220px;border:1px solid #cccccc;background-color:#ffffff;} select[multiple],select[size]{height:auto;} select:focus,input[type="file"]:focus,input[type="radio"]:focus,input[type="checkbox"]:focus{outline:thin dotted #333;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px;} .uneditable-input,.uneditable-textarea{color:#999999;background-color:#fcfcfc;border-color:#cccccc;-webkit-box-shadow:inset 0 1px 2px rgba(0, 0, 0, 0.025);-moz-box-shadow:inset 0 1px 2px rgba(0, 0, 0, 0.025);box-shadow:inset 0 1px 2px rgba(0, 0, 0, 0.025);cursor:not-allowed;} .uneditable-input{overflow:hidden;white-space:nowrap;} .uneditable-textarea{width:auto;height:auto;} input:-moz-placeholder,textarea:-moz-placeholder{color:#999999;} input:-ms-input-placeholder,textarea:-ms-input-placeholder{color:#999999;} input::-webkit-input-placeholder,textarea::-webkit-input-placeholder{color:#999999;} .radio,.checkbox{min-height:20px;padding-left:20px;} .radio input[type="radio"],.checkbox input[type="checkbox"]{float:left;margin-left:-20px;} .controls>.radio:first-child,.controls>.checkbox:first-child{padding-top:5px;} .radio.inline,.checkbox.inline{display:inline-block;padding-top:5px;margin-bottom:0;vertical-align:middle;} .radio.inline+.radio.inline,.checkbox.inline+.checkbox.inline{margin-left:10px;} .input-mini{width:60px;} .input-small{width:90px;} .input-medium{width:150px;} .input-large{width:210px;} .input-xlarge{width:270px;} .input-xxlarge{width:530px;} input[class*="span"],select[class*="span"],textarea[class*="span"],.uneditable-input[class*="span"],.row-fluid input[class*="span"],.row-fluid select[class*="span"],.row-fluid textarea[class*="span"],.row-fluid .uneditable-input[class*="span"]{float:none;margin-left:0;} .input-append input[class*="span"],.input-append .uneditable-input[class*="span"],.input-prepend input[class*="span"],.input-prepend .uneditable-input[class*="span"],.row-fluid input[class*="span"],.row-fluid select[class*="span"],.row-fluid textarea[class*="span"],.row-fluid .uneditable-input[class*="span"],.row-fluid .input-prepend [class*="span"],.row-fluid .input-append [class*="span"]{display:inline-block;} input,textarea,.uneditable-input{margin-left:0;} .controls-row [class*="span"]+[class*="span"]{margin-left:20px;} input.span12, textarea.span12, .uneditable-input.span12{width:926px;} input.span11, textarea.span11, .uneditable-input.span11{width:846px;} input.span10, textarea.span10, .uneditable-input.span10{width:766px;} input.span9, textarea.span9, .uneditable-input.span9{width:686px;} input.span8, textarea.span8, .uneditable-input.span8{width:606px;} input.span7, textarea.span7, .uneditable-input.span7{width:526px;} input.span6, textarea.span6, .uneditable-input.span6{width:446px;} input.span5, textarea.span5, .uneditable-input.span5{width:366px;} input.span4, textarea.span4, .uneditable-input.span4{width:286px;} input.span3, textarea.span3, .uneditable-input.span3{width:206px;} input.span2, textarea.span2, .uneditable-input.span2{width:126px;} input.span1, textarea.span1, .uneditable-input.span1{width:46px;} .controls-row{*zoom:1;}.controls-row:before,.controls-row:after{display:table;content:"";line-height:0;} .controls-row:after{clear:both;} .controls-row [class*="span"],.row-fluid .controls-row [class*="span"]{float:left;} .controls-row .checkbox[class*="span"],.controls-row .radio[class*="span"]{padding-top:5px;} input[disabled],select[disabled],textarea[disabled],input[readonly],select[readonly],textarea[readonly]{cursor:not-allowed;background-color:#eeeeee;} input[type="radio"][disabled],input[type="checkbox"][disabled],input[type="radio"][readonly],input[type="checkbox"][readonly]{background-color:transparent;} .control-group.warning .control-label,.control-group.warning .help-block,.control-group.warning .help-inline{color:#c09853;} .control-group.warning .checkbox,.control-group.warning .radio,.control-group.warning input,.control-group.warning select,.control-group.warning textarea{color:#c09853;} .control-group.warning input,.control-group.warning select,.control-group.warning textarea{border-color:#c09853;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);-moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);}.control-group.warning input:focus,.control-group.warning select:focus,.control-group.warning textarea:focus{border-color:#a47e3c;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 6px #dbc59e;-moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 6px #dbc59e;box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 6px #dbc59e;} .control-group.warning .input-prepend .add-on,.control-group.warning .input-append .add-on{color:#c09853;background-color:#fcf8e3;border-color:#c09853;} .control-group.error .control-label,.control-group.error .help-block,.control-group.error .help-inline{color:#b94a48;} .control-group.error .checkbox,.control-group.error .radio,.control-group.error input,.control-group.error select,.control-group.error textarea{color:#b94a48;} .control-group.error input,.control-group.error select,.control-group.error textarea{border-color:#b94a48;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);-moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);}.control-group.error input:focus,.control-group.error select:focus,.control-group.error textarea:focus{border-color:#953b39;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 6px #d59392;-moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 6px #d59392;box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 6px #d59392;} .control-group.error .input-prepend .add-on,.control-group.error .input-append .add-on{color:#b94a48;background-color:#f2dede;border-color:#b94a48;} .control-group.success .control-label,.control-group.success .help-block,.control-group.success .help-inline{color:#468847;} .control-group.success .checkbox,.control-group.success .radio,.control-group.success input,.control-group.success select,.control-group.success textarea{color:#468847;} .control-group.success input,.control-group.success select,.control-group.success textarea{border-color:#468847;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);-moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);}.control-group.success input:focus,.control-group.success select:focus,.control-group.success textarea:focus{border-color:#356635;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 6px #7aba7b;-moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 6px #7aba7b;box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 6px #7aba7b;} .control-group.success .input-prepend .add-on,.control-group.success .input-append .add-on{color:#468847;background-color:#dff0d8;border-color:#468847;} .control-group.info .control-label,.control-group.info .help-block,.control-group.info .help-inline{color:#3a87ad;} .control-group.info .checkbox,.control-group.info .radio,.control-group.info input,.control-group.info select,.control-group.info textarea{color:#3a87ad;} .control-group.info input,.control-group.info select,.control-group.info textarea{border-color:#3a87ad;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);-moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);}.control-group.info input:focus,.control-group.info select:focus,.control-group.info textarea:focus{border-color:#2d6987;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 6px #7ab5d3;-moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 6px #7ab5d3;box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 6px #7ab5d3;} .control-group.info .input-prepend .add-on,.control-group.info .input-append .add-on{color:#3a87ad;background-color:#d9edf7;border-color:#3a87ad;} input:focus:invalid,textarea:focus:invalid,select:focus:invalid{color:#b94a48;border-color:#ee5f5b;}input:focus:invalid:focus,textarea:focus:invalid:focus,select:focus:invalid:focus{border-color:#e9322d;-webkit-box-shadow:0 0 6px #f8b9b7;-moz-box-shadow:0 0 6px #f8b9b7;box-shadow:0 0 6px #f8b9b7;} .form-actions{padding:19px 20px 20px;margin-top:20px;margin-bottom:20px;background-color:#f5f5f5;border-top:1px solid #e5e5e5;*zoom:1;}.form-actions:before,.form-actions:after{display:table;content:"";line-height:0;} .form-actions:after{clear:both;} .help-block,.help-inline{color:#595959;} .help-block{display:block;margin-bottom:10px;} .help-inline{display:inline-block;*display:inline;*zoom:1;vertical-align:middle;padding-left:5px;} .input-append,.input-prepend{margin-bottom:5px;font-size:0;white-space:nowrap;}.input-append input,.input-prepend input,.input-append select,.input-prepend select,.input-append .uneditable-input,.input-prepend .uneditable-input,.input-append .dropdown-menu,.input-prepend .dropdown-menu{font-size:14px;} .input-append input,.input-prepend input,.input-append select,.input-prepend select,.input-append .uneditable-input,.input-prepend .uneditable-input{position:relative;margin-bottom:0;*margin-left:0;vertical-align:top;-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0;}.input-append input:focus,.input-prepend input:focus,.input-append select:focus,.input-prepend select:focus,.input-append .uneditable-input:focus,.input-prepend .uneditable-input:focus{z-index:2;} .input-append .add-on,.input-prepend .add-on{display:inline-block;width:auto;height:20px;min-width:16px;padding:4px 5px;font-size:14px;font-weight:normal;line-height:20px;text-align:center;text-shadow:0 1px 0 #ffffff;background-color:#eeeeee;border:1px solid #ccc;} .input-append .add-on,.input-prepend .add-on,.input-append .btn,.input-prepend .btn,.input-append .btn-group>.dropdown-toggle,.input-prepend .btn-group>.dropdown-toggle{vertical-align:top;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;} .input-append .active,.input-prepend .active{background-color:#a9dba9;border-color:#46a546;} .input-prepend .add-on,.input-prepend .btn{margin-right:-1px;} .input-prepend .add-on:first-child,.input-prepend .btn:first-child{-webkit-border-radius:4px 0 0 4px;-moz-border-radius:4px 0 0 4px;border-radius:4px 0 0 4px;} .input-append input,.input-append select,.input-append .uneditable-input{-webkit-border-radius:4px 0 0 4px;-moz-border-radius:4px 0 0 4px;border-radius:4px 0 0 4px;}.input-append input+.btn-group .btn:last-child,.input-append select+.btn-group .btn:last-child,.input-append .uneditable-input+.btn-group .btn:last-child{-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0;} .input-append .add-on,.input-append .btn,.input-append .btn-group{margin-left:-1px;} .input-append .add-on:last-child,.input-append .btn:last-child,.input-append .btn-group:last-child>.dropdown-toggle{-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0;} .input-prepend.input-append input,.input-prepend.input-append select,.input-prepend.input-append .uneditable-input{-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;}.input-prepend.input-append input+.btn-group .btn,.input-prepend.input-append select+.btn-group .btn,.input-prepend.input-append .uneditable-input+.btn-group .btn{-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0;} .input-prepend.input-append .add-on:first-child,.input-prepend.input-append .btn:first-child{margin-right:-1px;-webkit-border-radius:4px 0 0 4px;-moz-border-radius:4px 0 0 4px;border-radius:4px 0 0 4px;} .input-prepend.input-append .add-on:last-child,.input-prepend.input-append .btn:last-child{margin-left:-1px;-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0;} .input-prepend.input-append .btn-group:first-child{margin-left:0;} input.search-query{padding-right:14px;padding-right:4px \9;padding-left:14px;padding-left:4px \9;margin-bottom:0;-webkit-border-radius:15px;-moz-border-radius:15px;border-radius:15px;} .form-search .input-append .search-query,.form-search .input-prepend .search-query{-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;} .form-search .input-append .search-query{-webkit-border-radius:14px 0 0 14px;-moz-border-radius:14px 0 0 14px;border-radius:14px 0 0 14px;} .form-search .input-append .btn{-webkit-border-radius:0 14px 14px 0;-moz-border-radius:0 14px 14px 0;border-radius:0 14px 14px 0;} .form-search .input-prepend .search-query{-webkit-border-radius:0 14px 14px 0;-moz-border-radius:0 14px 14px 0;border-radius:0 14px 14px 0;} .form-search .input-prepend .btn{-webkit-border-radius:14px 0 0 14px;-moz-border-radius:14px 0 0 14px;border-radius:14px 0 0 14px;} .form-search input,.form-inline input,.form-horizontal input,.form-search textarea,.form-inline textarea,.form-horizontal textarea,.form-search select,.form-inline select,.form-horizontal select,.form-search .help-inline,.form-inline .help-inline,.form-horizontal .help-inline,.form-search .uneditable-input,.form-inline .uneditable-input,.form-horizontal .uneditable-input,.form-search .input-prepend,.form-inline .input-prepend,.form-horizontal .input-prepend,.form-search .input-append,.form-inline .input-append,.form-horizontal .input-append{display:inline-block;*display:inline;*zoom:1;margin-bottom:0;vertical-align:middle;} .form-search .hide,.form-inline .hide,.form-horizontal .hide{display:none;} .form-search label,.form-inline label,.form-search .btn-group,.form-inline .btn-group{display:inline-block;} .form-search .input-append,.form-inline .input-append,.form-search .input-prepend,.form-inline .input-prepend{margin-bottom:0;} .form-search .radio,.form-search .checkbox,.form-inline .radio,.form-inline .checkbox{padding-left:0;margin-bottom:0;vertical-align:middle;} .form-search .radio input[type="radio"],.form-search .checkbox input[type="checkbox"],.form-inline .radio input[type="radio"],.form-inline .checkbox input[type="checkbox"]{float:left;margin-right:3px;margin-left:0;} .control-group{margin-bottom:10px;} legend+.control-group{margin-top:20px;-webkit-margin-top-collapse:separate;} .form-horizontal .control-group{margin-bottom:20px;*zoom:1;}.form-horizontal .control-group:before,.form-horizontal .control-group:after{display:table;content:"";line-height:0;} .form-horizontal .control-group:after{clear:both;} .form-horizontal .control-label{float:left;width:160px;padding-top:5px;text-align:right;} .form-horizontal .controls{*display:inline-block;*padding-left:20px;margin-left:180px;*margin-left:0;}.form-horizontal .controls:first-child{*padding-left:180px;} .form-horizontal .help-block{margin-bottom:0;} .form-horizontal input+.help-block,.form-horizontal select+.help-block,.form-horizontal textarea+.help-block,.form-horizontal .uneditable-input+.help-block,.form-horizontal .input-prepend+.help-block,.form-horizontal .input-append+.help-block{margin-top:10px;} .form-horizontal .form-actions{padding-left:180px;} .btn{display:inline-block;*display:inline;*zoom:1;padding:4px 12px;margin-bottom:0;font-size:14px;line-height:20px;text-align:center;vertical-align:middle;cursor:pointer;color:#333333;text-shadow:0 1px 1px rgba(255, 255, 255, 0.75);background-color:#f5f5f5;background-image:-moz-linear-gradient(top, #ffffff, #e6e6e6);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#e6e6e6));background-image:-webkit-linear-gradient(top, #ffffff, #e6e6e6);background-image:-o-linear-gradient(top, #ffffff, #e6e6e6);background-image:linear-gradient(to bottom, #ffffff, #e6e6e6);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe6e6e6', GradientType=0);border-color:#e6e6e6 #e6e6e6 #bfbfbf;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);*background-color:#e6e6e6;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);border:1px solid #bbbbbb;*border:0;border-bottom-color:#a2a2a2;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;*margin-left:.3em;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);-moz-box-shadow:inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);box-shadow:inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);}.btn:hover,.btn:active,.btn.active,.btn.disabled,.btn[disabled]{color:#333333;background-color:#e6e6e6;*background-color:#d9d9d9;} .btn:active,.btn.active{background-color:#cccccc \9;} .btn:first-child{*margin-left:0;} .btn:hover{color:#333333;text-decoration:none;background-position:0 -15px;-webkit-transition:background-position 0.1s linear;-moz-transition:background-position 0.1s linear;-o-transition:background-position 0.1s linear;transition:background-position 0.1s linear;} .btn:focus{outline:thin dotted #333;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px;} .btn.active,.btn:active{background-image:none;outline:0;-webkit-box-shadow:inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);-moz-box-shadow:inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);box-shadow:inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);} .btn.disabled,.btn[disabled]{cursor:default;background-image:none;opacity:0.65;filter:alpha(opacity=65);-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;} .btn-large{padding:11px 19px;font-size:17.5px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;} .btn-large [class^="icon-"],.btn-large [class*=" icon-"]{margin-top:4px;} .btn-small{padding:2px 10px;font-size:11.9px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;} .btn-small [class^="icon-"],.btn-small [class*=" icon-"]{margin-top:0;} .btn-mini [class^="icon-"],.btn-mini [class*=" icon-"]{margin-top:-1px;} .btn-mini{padding:0 6px;font-size:10.5px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;} .btn-block{display:block;width:100%;padding-left:0;padding-right:0;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;} .btn-block+.btn-block{margin-top:5px;} input[type="submit"].btn-block,input[type="reset"].btn-block,input[type="button"].btn-block{width:100%;} .btn-primary.active,.btn-warning.active,.btn-danger.active,.btn-success.active,.btn-info.active,.btn-inverse.active{color:rgba(255, 255, 255, 0.75);} .btn{border-color:#c5c5c5;border-color:rgba(0, 0, 0, 0.15) rgba(0, 0, 0, 0.15) rgba(0, 0, 0, 0.25);} .btn-primary{color:#ffffff;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);background-color:#006dcc;background-image:-moz-linear-gradient(top, #0088cc, #0044cc);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0044cc));background-image:-webkit-linear-gradient(top, #0088cc, #0044cc);background-image:-o-linear-gradient(top, #0088cc, #0044cc);background-image:linear-gradient(to bottom, #0088cc, #0044cc);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff0044cc', GradientType=0);border-color:#0044cc #0044cc #002a80;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);*background-color:#0044cc;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);}.btn-primary:hover,.btn-primary:active,.btn-primary.active,.btn-primary.disabled,.btn-primary[disabled]{color:#ffffff;background-color:#0044cc;*background-color:#003bb3;} .btn-primary:active,.btn-primary.active{background-color:#003399 \9;} .btn-warning{color:#ffffff;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);background-color:#faa732;background-image:-moz-linear-gradient(top, #fbb450, #f89406);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#fbb450), to(#f89406));background-image:-webkit-linear-gradient(top, #fbb450, #f89406);background-image:-o-linear-gradient(top, #fbb450, #f89406);background-image:linear-gradient(to bottom, #fbb450, #f89406);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffbb450', endColorstr='#fff89406', GradientType=0);border-color:#f89406 #f89406 #ad6704;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);*background-color:#f89406;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);}.btn-warning:hover,.btn-warning:active,.btn-warning.active,.btn-warning.disabled,.btn-warning[disabled]{color:#ffffff;background-color:#f89406;*background-color:#df8505;} .btn-warning:active,.btn-warning.active{background-color:#c67605 \9;} .btn-danger{color:#ffffff;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);background-color:#da4f49;background-image:-moz-linear-gradient(top, #ee5f5b, #bd362f);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#ee5f5b), to(#bd362f));background-image:-webkit-linear-gradient(top, #ee5f5b, #bd362f);background-image:-o-linear-gradient(top, #ee5f5b, #bd362f);background-image:linear-gradient(to bottom, #ee5f5b, #bd362f);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffee5f5b', endColorstr='#ffbd362f', GradientType=0);border-color:#bd362f #bd362f #802420;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);*background-color:#bd362f;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);}.btn-danger:hover,.btn-danger:active,.btn-danger.active,.btn-danger.disabled,.btn-danger[disabled]{color:#ffffff;background-color:#bd362f;*background-color:#a9302a;} .btn-danger:active,.btn-danger.active{background-color:#942a25 \9;} .btn-success{color:#ffffff;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);background-color:#5bb75b;background-image:-moz-linear-gradient(top, #62c462, #51a351);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#62c462), to(#51a351));background-image:-webkit-linear-gradient(top, #62c462, #51a351);background-image:-o-linear-gradient(top, #62c462, #51a351);background-image:linear-gradient(to bottom, #62c462, #51a351);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff62c462', endColorstr='#ff51a351', GradientType=0);border-color:#51a351 #51a351 #387038;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);*background-color:#51a351;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);}.btn-success:hover,.btn-success:active,.btn-success.active,.btn-success.disabled,.btn-success[disabled]{color:#ffffff;background-color:#51a351;*background-color:#499249;} .btn-success:active,.btn-success.active{background-color:#408140 \9;} .btn-info{color:#ffffff;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);background-color:#49afcd;background-image:-moz-linear-gradient(top, #5bc0de, #2f96b4);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#5bc0de), to(#2f96b4));background-image:-webkit-linear-gradient(top, #5bc0de, #2f96b4);background-image:-o-linear-gradient(top, #5bc0de, #2f96b4);background-image:linear-gradient(to bottom, #5bc0de, #2f96b4);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff2f96b4', GradientType=0);border-color:#2f96b4 #2f96b4 #1f6377;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);*background-color:#2f96b4;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);}.btn-info:hover,.btn-info:active,.btn-info.active,.btn-info.disabled,.btn-info[disabled]{color:#ffffff;background-color:#2f96b4;*background-color:#2a85a0;} .btn-info:active,.btn-info.active{background-color:#24748c \9;} .btn-inverse{color:#ffffff;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);background-color:#363636;background-image:-moz-linear-gradient(top, #444444, #222222);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#444444), to(#222222));background-image:-webkit-linear-gradient(top, #444444, #222222);background-image:-o-linear-gradient(top, #444444, #222222);background-image:linear-gradient(to bottom, #444444, #222222);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff444444', endColorstr='#ff222222', GradientType=0);border-color:#222222 #222222 #000000;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);*background-color:#222222;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);}.btn-inverse:hover,.btn-inverse:active,.btn-inverse.active,.btn-inverse.disabled,.btn-inverse[disabled]{color:#ffffff;background-color:#222222;*background-color:#151515;} .btn-inverse:active,.btn-inverse.active{background-color:#080808 \9;} button.btn,input[type="submit"].btn{*padding-top:3px;*padding-bottom:3px;}button.btn::-moz-focus-inner,input[type="submit"].btn::-moz-focus-inner{padding:0;border:0;} button.btn.btn-large,input[type="submit"].btn.btn-large{*padding-top:7px;*padding-bottom:7px;} button.btn.btn-small,input[type="submit"].btn.btn-small{*padding-top:3px;*padding-bottom:3px;} button.btn.btn-mini,input[type="submit"].btn.btn-mini{*padding-top:1px;*padding-bottom:1px;} .btn-link,.btn-link:active,.btn-link[disabled]{background-color:transparent;background-image:none;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;} .btn-link{border-color:transparent;cursor:pointer;color:#0088cc;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;} .btn-link:hover{color:#005580;text-decoration:underline;background-color:transparent;} .btn-link[disabled]:hover{color:#333333;text-decoration:none;} .btn-group{position:relative;display:inline-block;*display:inline;*zoom:1;font-size:0;vertical-align:middle;white-space:nowrap;*margin-left:.3em;}.btn-group:first-child{*margin-left:0;} .btn-group+.btn-group{margin-left:5px;} .btn-toolbar{font-size:0;margin-top:10px;margin-bottom:10px;}.btn-toolbar>.btn+.btn,.btn-toolbar>.btn-group+.btn,.btn-toolbar>.btn+.btn-group{margin-left:5px;} .btn-group>.btn{position:relative;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;} .btn-group>.btn+.btn{margin-left:-1px;} .btn-group>.btn,.btn-group>.dropdown-menu,.btn-group>.popover{font-size:14px;} .btn-group>.btn-mini{font-size:10.5px;} .btn-group>.btn-small{font-size:11.9px;} .btn-group>.btn-large{font-size:17.5px;} .btn-group>.btn:first-child{margin-left:0;-webkit-border-top-left-radius:4px;-moz-border-radius-topleft:4px;border-top-left-radius:4px;-webkit-border-bottom-left-radius:4px;-moz-border-radius-bottomleft:4px;border-bottom-left-radius:4px;} .btn-group>.btn:last-child,.btn-group>.dropdown-toggle{-webkit-border-top-right-radius:4px;-moz-border-radius-topright:4px;border-top-right-radius:4px;-webkit-border-bottom-right-radius:4px;-moz-border-radius-bottomright:4px;border-bottom-right-radius:4px;} .btn-group>.btn.large:first-child{margin-left:0;-webkit-border-top-left-radius:6px;-moz-border-radius-topleft:6px;border-top-left-radius:6px;-webkit-border-bottom-left-radius:6px;-moz-border-radius-bottomleft:6px;border-bottom-left-radius:6px;} .btn-group>.btn.large:last-child,.btn-group>.large.dropdown-toggle{-webkit-border-top-right-radius:6px;-moz-border-radius-topright:6px;border-top-right-radius:6px;-webkit-border-bottom-right-radius:6px;-moz-border-radius-bottomright:6px;border-bottom-right-radius:6px;} .btn-group>.btn:hover,.btn-group>.btn:focus,.btn-group>.btn:active,.btn-group>.btn.active{z-index:2;} .btn-group .dropdown-toggle:active,.btn-group.open .dropdown-toggle{outline:0;} .btn-group>.btn+.dropdown-toggle{padding-left:8px;padding-right:8px;-webkit-box-shadow:inset 1px 0 0 rgba(255,255,255,.125), inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);-moz-box-shadow:inset 1px 0 0 rgba(255,255,255,.125), inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);box-shadow:inset 1px 0 0 rgba(255,255,255,.125), inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);*padding-top:5px;*padding-bottom:5px;} .btn-group>.btn-mini+.dropdown-toggle{padding-left:5px;padding-right:5px;*padding-top:2px;*padding-bottom:2px;} .btn-group>.btn-small+.dropdown-toggle{*padding-top:5px;*padding-bottom:4px;} .btn-group>.btn-large+.dropdown-toggle{padding-left:12px;padding-right:12px;*padding-top:7px;*padding-bottom:7px;} .btn-group.open .dropdown-toggle{background-image:none;-webkit-box-shadow:inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);-moz-box-shadow:inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);box-shadow:inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);} .btn-group.open .btn.dropdown-toggle{background-color:#e6e6e6;} .btn-group.open .btn-primary.dropdown-toggle{background-color:#0044cc;} .btn-group.open .btn-warning.dropdown-toggle{background-color:#f89406;} .btn-group.open .btn-danger.dropdown-toggle{background-color:#bd362f;} .btn-group.open .btn-success.dropdown-toggle{background-color:#51a351;} .btn-group.open .btn-info.dropdown-toggle{background-color:#2f96b4;} .btn-group.open .btn-inverse.dropdown-toggle{background-color:#222222;} .btn .caret{margin-top:8px;margin-left:0;} .btn-mini .caret,.btn-small .caret,.btn-large .caret{margin-top:6px;} .btn-large .caret{border-left-width:5px;border-right-width:5px;border-top-width:5px;} .dropup .btn-large .caret{border-bottom-width:5px;} .btn-primary .caret,.btn-warning .caret,.btn-danger .caret,.btn-info .caret,.btn-success .caret,.btn-inverse .caret{border-top-color:#ffffff;border-bottom-color:#ffffff;} .btn-group-vertical{display:inline-block;*display:inline;*zoom:1;} .btn-group-vertical>.btn{display:block;float:none;max-width:100%;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;} .btn-group-vertical>.btn+.btn{margin-left:0;margin-top:-1px;} .btn-group-vertical>.btn:first-child{-webkit-border-radius:4px 4px 0 0;-moz-border-radius:4px 4px 0 0;border-radius:4px 4px 0 0;} .btn-group-vertical>.btn:last-child{-webkit-border-radius:0 0 4px 4px;-moz-border-radius:0 0 4px 4px;border-radius:0 0 4px 4px;} .btn-group-vertical>.btn-large:first-child{-webkit-border-radius:6px 6px 0 0;-moz-border-radius:6px 6px 0 0;border-radius:6px 6px 0 0;} .btn-group-vertical>.btn-large:last-child{-webkit-border-radius:0 0 6px 6px;-moz-border-radius:0 0 6px 6px;border-radius:0 0 6px 6px;} .nav{margin-left:0;margin-bottom:20px;list-style:none;} .nav>li>a{display:block;} .nav>li>a:hover{text-decoration:none;background-color:#eeeeee;} .nav>li>a>img{max-width:none;} .nav>.pull-right{float:right;} .nav-header{display:block;padding:3px 15px;font-size:11px;font-weight:bold;line-height:20px;color:#999999;text-shadow:0 1px 0 rgba(255, 255, 255, 0.5);text-transform:uppercase;} .nav li+.nav-header{margin-top:9px;} .nav-list{padding-left:15px;padding-right:15px;margin-bottom:0;} .nav-list>li>a,.nav-list .nav-header{margin-left:-15px;margin-right:-15px;text-shadow:0 1px 0 rgba(255, 255, 255, 0.5);} .nav-list>li>a{padding:3px 15px;} .nav-list>.active>a,.nav-list>.active>a:hover{color:#ffffff;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.2);background-color:#0088cc;} .nav-list [class^="icon-"],.nav-list [class*=" icon-"]{margin-right:2px;} .nav-list .divider{*width:100%;height:1px;margin:9px 1px;*margin:-5px 0 5px;overflow:hidden;background-color:#e5e5e5;border-bottom:1px solid #ffffff;} .nav-tabs,.nav-pills{*zoom:1;}.nav-tabs:before,.nav-pills:before,.nav-tabs:after,.nav-pills:after{display:table;content:"";line-height:0;} .nav-tabs:after,.nav-pills:after{clear:both;} .nav-tabs>li,.nav-pills>li{float:left;} .nav-tabs>li>a,.nav-pills>li>a{padding-right:12px;padding-left:12px;margin-right:2px;line-height:14px;} .nav-tabs{border-bottom:1px solid #ddd;} .nav-tabs>li{margin-bottom:-1px;} .nav-tabs>li>a{padding-top:8px;padding-bottom:8px;line-height:20px;border:1px solid transparent;-webkit-border-radius:4px 4px 0 0;-moz-border-radius:4px 4px 0 0;border-radius:4px 4px 0 0;}.nav-tabs>li>a:hover{border-color:#eeeeee #eeeeee #dddddd;} .nav-tabs>.active>a,.nav-tabs>.active>a:hover{color:#555555;background-color:#ffffff;border:1px solid #ddd;border-bottom-color:transparent;cursor:default;} .nav-pills>li>a{padding-top:8px;padding-bottom:8px;margin-top:2px;margin-bottom:2px;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;} .nav-pills>.active>a,.nav-pills>.active>a:hover{color:#ffffff;background-color:#0088cc;} .nav-stacked>li{float:none;} .nav-stacked>li>a{margin-right:0;} .nav-tabs.nav-stacked{border-bottom:0;} .nav-tabs.nav-stacked>li>a{border:1px solid #ddd;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;} .nav-tabs.nav-stacked>li:first-child>a{-webkit-border-top-right-radius:4px;-moz-border-radius-topright:4px;border-top-right-radius:4px;-webkit-border-top-left-radius:4px;-moz-border-radius-topleft:4px;border-top-left-radius:4px;} .nav-tabs.nav-stacked>li:last-child>a{-webkit-border-bottom-right-radius:4px;-moz-border-radius-bottomright:4px;border-bottom-right-radius:4px;-webkit-border-bottom-left-radius:4px;-moz-border-radius-bottomleft:4px;border-bottom-left-radius:4px;} .nav-tabs.nav-stacked>li>a:hover{border-color:#ddd;z-index:2;} .nav-pills.nav-stacked>li>a{margin-bottom:3px;} .nav-pills.nav-stacked>li:last-child>a{margin-bottom:1px;} .nav-tabs .dropdown-menu{-webkit-border-radius:0 0 6px 6px;-moz-border-radius:0 0 6px 6px;border-radius:0 0 6px 6px;} .nav-pills .dropdown-menu{-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;} .nav .dropdown-toggle .caret{border-top-color:#0088cc;border-bottom-color:#0088cc;margin-top:6px;} .nav .dropdown-toggle:hover .caret{border-top-color:#005580;border-bottom-color:#005580;} .nav-tabs .dropdown-toggle .caret{margin-top:8px;} .nav .active .dropdown-toggle .caret{border-top-color:#fff;border-bottom-color:#fff;} .nav-tabs .active .dropdown-toggle .caret{border-top-color:#555555;border-bottom-color:#555555;} .nav>.dropdown.active>a:hover{cursor:pointer;} .nav-tabs .open .dropdown-toggle,.nav-pills .open .dropdown-toggle,.nav>li.dropdown.open.active>a:hover{color:#ffffff;background-color:#999999;border-color:#999999;} .nav li.dropdown.open .caret,.nav li.dropdown.open.active .caret,.nav li.dropdown.open a:hover .caret{border-top-color:#ffffff;border-bottom-color:#ffffff;opacity:1;filter:alpha(opacity=100);} .tabs-stacked .open>a:hover{border-color:#999999;} .tabbable{*zoom:1;}.tabbable:before,.tabbable:after{display:table;content:"";line-height:0;} .tabbable:after{clear:both;} .tab-content{overflow:auto;} .tabs-below>.nav-tabs,.tabs-right>.nav-tabs,.tabs-left>.nav-tabs{border-bottom:0;} .tab-content>.tab-pane,.pill-content>.pill-pane{display:none;} .tab-content>.active,.pill-content>.active{display:block;} .tabs-below>.nav-tabs{border-top:1px solid #ddd;} .tabs-below>.nav-tabs>li{margin-top:-1px;margin-bottom:0;} .tabs-below>.nav-tabs>li>a{-webkit-border-radius:0 0 4px 4px;-moz-border-radius:0 0 4px 4px;border-radius:0 0 4px 4px;}.tabs-below>.nav-tabs>li>a:hover{border-bottom-color:transparent;border-top-color:#ddd;} .tabs-below>.nav-tabs>.active>a,.tabs-below>.nav-tabs>.active>a:hover{border-color:transparent #ddd #ddd #ddd;} .tabs-left>.nav-tabs>li,.tabs-right>.nav-tabs>li{float:none;} .tabs-left>.nav-tabs>li>a,.tabs-right>.nav-tabs>li>a{min-width:74px;margin-right:0;margin-bottom:3px;} .tabs-left>.nav-tabs{float:left;margin-right:19px;border-right:1px solid #ddd;} .tabs-left>.nav-tabs>li>a{margin-right:-1px;-webkit-border-radius:4px 0 0 4px;-moz-border-radius:4px 0 0 4px;border-radius:4px 0 0 4px;} .tabs-left>.nav-tabs>li>a:hover{border-color:#eeeeee #dddddd #eeeeee #eeeeee;} .tabs-left>.nav-tabs .active>a,.tabs-left>.nav-tabs .active>a:hover{border-color:#ddd transparent #ddd #ddd;*border-right-color:#ffffff;} .tabs-right>.nav-tabs{float:right;margin-left:19px;border-left:1px solid #ddd;} .tabs-right>.nav-tabs>li>a{margin-left:-1px;-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0;} .tabs-right>.nav-tabs>li>a:hover{border-color:#eeeeee #eeeeee #eeeeee #dddddd;} .tabs-right>.nav-tabs .active>a,.tabs-right>.nav-tabs .active>a:hover{border-color:#ddd #ddd #ddd transparent;*border-left-color:#ffffff;} .nav>.disabled>a{color:#999999;} .nav>.disabled>a:hover{text-decoration:none;background-color:transparent;cursor:default;} .navbar{overflow:visible;margin-bottom:20px;*position:relative;*z-index:2;} .navbar-inner{min-height:50px;padding-left:20px;padding-right:20px;background-color:#fafafa;background-image:-moz-linear-gradient(top, #ffffff, #f2f2f2);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#f2f2f2));background-image:-webkit-linear-gradient(top, #ffffff, #f2f2f2);background-image:-o-linear-gradient(top, #ffffff, #f2f2f2);background-image:linear-gradient(to bottom, #ffffff, #f2f2f2);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#fff2f2f2', GradientType=0);border:1px solid #d4d4d4;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:0 1px 4px rgba(0, 0, 0, 0.065);-moz-box-shadow:0 1px 4px rgba(0, 0, 0, 0.065);box-shadow:0 1px 4px rgba(0, 0, 0, 0.065);*zoom:1;}.navbar-inner:before,.navbar-inner:after{display:table;content:"";line-height:0;} .navbar-inner:after{clear:both;} .navbar .container{width:auto;} .nav-collapse.collapse{height:auto;overflow:visible;} .navbar .brand{float:left;display:block;padding:15px 20px 15px;margin-left:-20px;font-size:20px;font-weight:200;color:#777777;text-shadow:0 1px 0 #ffffff;}.navbar .brand:hover{text-decoration:none;} .navbar-text{margin-bottom:0;line-height:50px;color:#777777;} .navbar-link{color:#777777;}.navbar-link:hover{color:#333333;} .navbar .divider-vertical{height:50px;margin:0 9px;border-left:1px solid #f2f2f2;border-right:1px solid #ffffff;} .navbar .btn,.navbar .btn-group{margin-top:10px;} .navbar .btn-group .btn,.navbar .input-prepend .btn,.navbar .input-append .btn{margin-top:0;} .navbar-form{margin-bottom:0;*zoom:1;}.navbar-form:before,.navbar-form:after{display:table;content:"";line-height:0;} .navbar-form:after{clear:both;} .navbar-form input,.navbar-form select,.navbar-form .radio,.navbar-form .checkbox{margin-top:10px;} .navbar-form input,.navbar-form select,.navbar-form .btn{display:inline-block;margin-bottom:0;} .navbar-form input[type="image"],.navbar-form input[type="checkbox"],.navbar-form input[type="radio"]{margin-top:3px;} .navbar-form .input-append,.navbar-form .input-prepend{margin-top:5px;white-space:nowrap;}.navbar-form .input-append input,.navbar-form .input-prepend input{margin-top:0;} .navbar-search{position:relative;float:left;margin-top:10px;margin-bottom:0;}.navbar-search .search-query{margin-bottom:0;padding:4px 14px;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:13px;font-weight:normal;line-height:1;-webkit-border-radius:15px;-moz-border-radius:15px;border-radius:15px;} .navbar-static-top{position:static;margin-bottom:0;}.navbar-static-top .navbar-inner{-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;} .navbar-fixed-top,.navbar-fixed-bottom{position:fixed;right:0;left:0;z-index:1030;margin-bottom:0;} .navbar-fixed-top .navbar-inner,.navbar-static-top .navbar-inner{border-width:0 0 1px;} .navbar-fixed-bottom .navbar-inner{border-width:1px 0 0;} .navbar-fixed-top .navbar-inner,.navbar-fixed-bottom .navbar-inner{padding-left:0;padding-right:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;} .navbar-static-top .container,.navbar-fixed-top .container,.navbar-fixed-bottom .container{width:940px;} .navbar-fixed-top{top:0;} .navbar-fixed-top .navbar-inner,.navbar-static-top .navbar-inner{-webkit-box-shadow:0 1px 10px rgba(0,0,0,.1);-moz-box-shadow:0 1px 10px rgba(0,0,0,.1);box-shadow:0 1px 10px rgba(0,0,0,.1);} .navbar-fixed-bottom{bottom:0;}.navbar-fixed-bottom .navbar-inner{-webkit-box-shadow:0 -1px 10px rgba(0,0,0,.1);-moz-box-shadow:0 -1px 10px rgba(0,0,0,.1);box-shadow:0 -1px 10px rgba(0,0,0,.1);} .navbar .nav{position:relative;left:0;display:block;float:left;margin:0 10px 0 0;} .navbar .nav.pull-right{float:right;margin-right:0;} .navbar .nav>li{float:left;} .navbar .nav>li>a{float:none;padding:15px 15px 15px;color:#777777;text-decoration:none;text-shadow:0 1px 0 #ffffff;} .navbar .nav .dropdown-toggle .caret{margin-top:8px;} .navbar .nav>li>a:focus,.navbar .nav>li>a:hover{background-color:transparent;color:#333333;text-decoration:none;} .navbar .nav>.active>a,.navbar .nav>.active>a:hover,.navbar .nav>.active>a:focus{color:#555555;text-decoration:none;background-color:#e5e5e5;-webkit-box-shadow:inset 0 3px 8px rgba(0, 0, 0, 0.125);-moz-box-shadow:inset 0 3px 8px rgba(0, 0, 0, 0.125);box-shadow:inset 0 3px 8px rgba(0, 0, 0, 0.125);} .navbar .btn-navbar{display:none;float:right;padding:7px 10px;margin-left:5px;margin-right:5px;color:#ffffff;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);background-color:#ededed;background-image:-moz-linear-gradient(top, #f2f2f2, #e5e5e5);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#f2f2f2), to(#e5e5e5));background-image:-webkit-linear-gradient(top, #f2f2f2, #e5e5e5);background-image:-o-linear-gradient(top, #f2f2f2, #e5e5e5);background-image:linear-gradient(to bottom, #f2f2f2, #e5e5e5);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2f2f2', endColorstr='#ffe5e5e5', GradientType=0);border-color:#e5e5e5 #e5e5e5 #bfbfbf;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);*background-color:#e5e5e5;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.075);-moz-box-shadow:inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.075);box-shadow:inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.075);}.navbar .btn-navbar:hover,.navbar .btn-navbar:active,.navbar .btn-navbar.active,.navbar .btn-navbar.disabled,.navbar .btn-navbar[disabled]{color:#ffffff;background-color:#e5e5e5;*background-color:#d9d9d9;} .navbar .btn-navbar:active,.navbar .btn-navbar.active{background-color:#cccccc \9;} .navbar .btn-navbar .icon-bar{display:block;width:18px;height:2px;background-color:#f5f5f5;-webkit-border-radius:1px;-moz-border-radius:1px;border-radius:1px;-webkit-box-shadow:0 1px 0 rgba(0, 0, 0, 0.25);-moz-box-shadow:0 1px 0 rgba(0, 0, 0, 0.25);box-shadow:0 1px 0 rgba(0, 0, 0, 0.25);} .btn-navbar .icon-bar+.icon-bar{margin-top:3px;} .navbar .nav>li>.dropdown-menu:before{content:'';display:inline-block;border-left:7px solid transparent;border-right:7px solid transparent;border-bottom:7px solid #ccc;border-bottom-color:rgba(0, 0, 0, 0.2);position:absolute;top:-7px;left:9px;} .navbar .nav>li>.dropdown-menu:after{content:'';display:inline-block;border-left:6px solid transparent;border-right:6px solid transparent;border-bottom:6px solid #ffffff;position:absolute;top:-6px;left:10px;} .navbar-fixed-bottom .nav>li>.dropdown-menu:before{border-top:7px solid #ccc;border-top-color:rgba(0, 0, 0, 0.2);border-bottom:0;bottom:-7px;top:auto;} .navbar-fixed-bottom .nav>li>.dropdown-menu:after{border-top:6px solid #ffffff;border-bottom:0;bottom:-6px;top:auto;} .navbar .nav li.dropdown>a:hover .caret{border-top-color:#555555;border-bottom-color:#555555;} .navbar .nav li.dropdown.open>.dropdown-toggle,.navbar .nav li.dropdown.active>.dropdown-toggle,.navbar .nav li.dropdown.open.active>.dropdown-toggle{background-color:#e5e5e5;color:#555555;} .navbar .nav li.dropdown>.dropdown-toggle .caret{border-top-color:#777777;border-bottom-color:#777777;} .navbar .nav li.dropdown.open>.dropdown-toggle .caret,.navbar .nav li.dropdown.active>.dropdown-toggle .caret,.navbar .nav li.dropdown.open.active>.dropdown-toggle .caret{border-top-color:#555555;border-bottom-color:#555555;} .navbar .pull-right>li>.dropdown-menu,.navbar .nav>li>.dropdown-menu.pull-right{left:auto;right:0;}.navbar .pull-right>li>.dropdown-menu:before,.navbar .nav>li>.dropdown-menu.pull-right:before{left:auto;right:12px;} .navbar .pull-right>li>.dropdown-menu:after,.navbar .nav>li>.dropdown-menu.pull-right:after{left:auto;right:13px;} .navbar .pull-right>li>.dropdown-menu .dropdown-menu,.navbar .nav>li>.dropdown-menu.pull-right .dropdown-menu{left:auto;right:100%;margin-left:0;margin-right:-1px;-webkit-border-radius:6px 0 6px 6px;-moz-border-radius:6px 0 6px 6px;border-radius:6px 0 6px 6px;} .navbar-inverse .navbar-inner{background-color:#1b1b1b;background-image:-moz-linear-gradient(top, #222222, #111111);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#222222), to(#111111));background-image:-webkit-linear-gradient(top, #222222, #111111);background-image:-o-linear-gradient(top, #222222, #111111);background-image:linear-gradient(to bottom, #222222, #111111);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff222222', endColorstr='#ff111111', GradientType=0);border-color:#252525;} .navbar-inverse .brand,.navbar-inverse .nav>li>a{color:#999999;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);}.navbar-inverse .brand:hover,.navbar-inverse .nav>li>a:hover{color:#ffffff;} .navbar-inverse .brand{color:#999999;} .navbar-inverse .navbar-text{color:#999999;} .navbar-inverse .nav>li>a:focus,.navbar-inverse .nav>li>a:hover{background-color:transparent;color:#ffffff;} .navbar-inverse .nav .active>a,.navbar-inverse .nav .active>a:hover,.navbar-inverse .nav .active>a:focus{color:#ffffff;background-color:#111111;} .navbar-inverse .navbar-link{color:#999999;}.navbar-inverse .navbar-link:hover{color:#ffffff;} .navbar-inverse .divider-vertical{border-left-color:#111111;border-right-color:#222222;} .navbar-inverse .nav li.dropdown.open>.dropdown-toggle,.navbar-inverse .nav li.dropdown.active>.dropdown-toggle,.navbar-inverse .nav li.dropdown.open.active>.dropdown-toggle{background-color:#111111;color:#ffffff;} .navbar-inverse .nav li.dropdown>a:hover .caret{border-top-color:#ffffff;border-bottom-color:#ffffff;} .navbar-inverse .nav li.dropdown>.dropdown-toggle .caret{border-top-color:#999999;border-bottom-color:#999999;} .navbar-inverse .nav li.dropdown.open>.dropdown-toggle .caret,.navbar-inverse .nav li.dropdown.active>.dropdown-toggle .caret,.navbar-inverse .nav li.dropdown.open.active>.dropdown-toggle .caret{border-top-color:#ffffff;border-bottom-color:#ffffff;} .navbar-inverse .navbar-search .search-query{color:#ffffff;background-color:#515151;border-color:#111111;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.1), 0 1px 0 rgba(255,255,255,.15);-moz-box-shadow:inset 0 1px 2px rgba(0,0,0,.1), 0 1px 0 rgba(255,255,255,.15);box-shadow:inset 0 1px 2px rgba(0,0,0,.1), 0 1px 0 rgba(255,255,255,.15);-webkit-transition:none;-moz-transition:none;-o-transition:none;transition:none;}.navbar-inverse .navbar-search .search-query:-moz-placeholder{color:#cccccc;} .navbar-inverse .navbar-search .search-query:-ms-input-placeholder{color:#cccccc;} .navbar-inverse .navbar-search .search-query::-webkit-input-placeholder{color:#cccccc;} .navbar-inverse .navbar-search .search-query:focus,.navbar-inverse .navbar-search .search-query.focused{padding:5px 15px;color:#333333;text-shadow:0 1px 0 #ffffff;background-color:#ffffff;border:0;-webkit-box-shadow:0 0 3px rgba(0, 0, 0, 0.15);-moz-box-shadow:0 0 3px rgba(0, 0, 0, 0.15);box-shadow:0 0 3px rgba(0, 0, 0, 0.15);outline:0;} .navbar-inverse .btn-navbar{color:#ffffff;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);background-color:#0e0e0e;background-image:-moz-linear-gradient(top, #151515, #040404);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#151515), to(#040404));background-image:-webkit-linear-gradient(top, #151515, #040404);background-image:-o-linear-gradient(top, #151515, #040404);background-image:linear-gradient(to bottom, #151515, #040404);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff151515', endColorstr='#ff040404', GradientType=0);border-color:#040404 #040404 #000000;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);*background-color:#040404;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);}.navbar-inverse .btn-navbar:hover,.navbar-inverse .btn-navbar:active,.navbar-inverse .btn-navbar.active,.navbar-inverse .btn-navbar.disabled,.navbar-inverse .btn-navbar[disabled]{color:#ffffff;background-color:#040404;*background-color:#000000;} .navbar-inverse .btn-navbar:active,.navbar-inverse .btn-navbar.active{background-color:#000000 \9;} .breadcrumb{padding:8px 15px;margin:0 0 20px;list-style:none;background-color:#f5f5f5;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;}.breadcrumb>li{display:inline-block;*display:inline;*zoom:1;text-shadow:0 1px 0 #ffffff;}.breadcrumb>li>.divider{padding:0 5px;color:#ccc;} .breadcrumb>.active{color:#999999;} .pagination{margin:20px 0;} .pagination ul{display:inline-block;*display:inline;*zoom:1;margin-left:0;margin-bottom:0;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:0 1px 2px rgba(0, 0, 0, 0.05);-moz-box-shadow:0 1px 2px rgba(0, 0, 0, 0.05);box-shadow:0 1px 2px rgba(0, 0, 0, 0.05);} .pagination ul>li{display:inline;} .pagination ul>li>a,.pagination ul>li>span{float:left;padding:4px 12px;line-height:20px;text-decoration:none;background-color:#ffffff;border:1px solid #dddddd;border-left-width:0;} .pagination ul>li>a:hover,.pagination ul>.active>a,.pagination ul>.active>span{background-color:#f5f5f5;} .pagination ul>.active>a,.pagination ul>.active>span{color:#999999;cursor:default;} .pagination ul>.disabled>span,.pagination ul>.disabled>a,.pagination ul>.disabled>a:hover{color:#999999;background-color:transparent;cursor:default;} .pagination ul>li:first-child>a,.pagination ul>li:first-child>span{border-left-width:1px;-webkit-border-top-left-radius:4px;-moz-border-radius-topleft:4px;border-top-left-radius:4px;-webkit-border-bottom-left-radius:4px;-moz-border-radius-bottomleft:4px;border-bottom-left-radius:4px;} .pagination ul>li:last-child>a,.pagination ul>li:last-child>span{-webkit-border-top-right-radius:4px;-moz-border-radius-topright:4px;border-top-right-radius:4px;-webkit-border-bottom-right-radius:4px;-moz-border-radius-bottomright:4px;border-bottom-right-radius:4px;} .pagination-centered{text-align:center;} .pagination-right{text-align:right;} .pagination-large ul>li>a,.pagination-large ul>li>span{padding:11px 19px;font-size:17.5px;} .pagination-large ul>li:first-child>a,.pagination-large ul>li:first-child>span{-webkit-border-top-left-radius:6px;-moz-border-radius-topleft:6px;border-top-left-radius:6px;-webkit-border-bottom-left-radius:6px;-moz-border-radius-bottomleft:6px;border-bottom-left-radius:6px;} .pagination-large ul>li:last-child>a,.pagination-large ul>li:last-child>span{-webkit-border-top-right-radius:6px;-moz-border-radius-topright:6px;border-top-right-radius:6px;-webkit-border-bottom-right-radius:6px;-moz-border-radius-bottomright:6px;border-bottom-right-radius:6px;} .pagination-mini ul>li:first-child>a,.pagination-small ul>li:first-child>a,.pagination-mini ul>li:first-child>span,.pagination-small ul>li:first-child>span{-webkit-border-top-left-radius:3px;-moz-border-radius-topleft:3px;border-top-left-radius:3px;-webkit-border-bottom-left-radius:3px;-moz-border-radius-bottomleft:3px;border-bottom-left-radius:3px;} .pagination-mini ul>li:last-child>a,.pagination-small ul>li:last-child>a,.pagination-mini ul>li:last-child>span,.pagination-small ul>li:last-child>span{-webkit-border-top-right-radius:3px;-moz-border-radius-topright:3px;border-top-right-radius:3px;-webkit-border-bottom-right-radius:3px;-moz-border-radius-bottomright:3px;border-bottom-right-radius:3px;} .pagination-small ul>li>a,.pagination-small ul>li>span{padding:2px 10px;font-size:11.9px;} .pagination-mini ul>li>a,.pagination-mini ul>li>span{padding:0 6px;font-size:10.5px;} .pager{margin:20px 0;list-style:none;text-align:center;*zoom:1;}.pager:before,.pager:after{display:table;content:"";line-height:0;} .pager:after{clear:both;} .pager li{display:inline;} .pager li>a,.pager li>span{display:inline-block;padding:5px 14px;background-color:#fff;border:1px solid #ddd;-webkit-border-radius:15px;-moz-border-radius:15px;border-radius:15px;} .pager li>a:hover{text-decoration:none;background-color:#f5f5f5;} .pager .next>a,.pager .next>span{float:right;} .pager .previous>a,.pager .previous>span{float:left;} .pager .disabled>a,.pager .disabled>a:hover,.pager .disabled>span{color:#999999;background-color:#fff;cursor:default;} .thumbnails{margin-left:-20px;list-style:none;*zoom:1;}.thumbnails:before,.thumbnails:after{display:table;content:"";line-height:0;} .thumbnails:after{clear:both;} .row-fluid .thumbnails{margin-left:0;} .thumbnails>li{float:left;margin-bottom:20px;margin-left:20px;} .thumbnail{display:block;padding:4px;line-height:20px;border:1px solid #ddd;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:0 1px 3px rgba(0, 0, 0, 0.055);-moz-box-shadow:0 1px 3px rgba(0, 0, 0, 0.055);box-shadow:0 1px 3px rgba(0, 0, 0, 0.055);-webkit-transition:all 0.2s ease-in-out;-moz-transition:all 0.2s ease-in-out;-o-transition:all 0.2s ease-in-out;transition:all 0.2s ease-in-out;} a.thumbnail:hover{border-color:#0088cc;-webkit-box-shadow:0 1px 4px rgba(0, 105, 214, 0.25);-moz-box-shadow:0 1px 4px rgba(0, 105, 214, 0.25);box-shadow:0 1px 4px rgba(0, 105, 214, 0.25);} .thumbnail>img{display:block;max-width:100%;margin-left:auto;margin-right:auto;} .thumbnail .caption{padding:9px;color:#555555;} .alert{padding:8px 35px 8px 14px;margin-bottom:20px;text-shadow:0 1px 0 rgba(255, 255, 255, 0.5);background-color:#fcf8e3;border:1px solid #fbeed5;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;} .alert,.alert h4{color:#c09853;} .alert h4{margin:0;} .alert .close{position:relative;top:-2px;right:-21px;line-height:20px;} .alert-success{background-color:#dff0d8;border-color:#d6e9c6;color:#468847;} .alert-success h4{color:#468847;} .alert-danger,.alert-error{background-color:#f2dede;border-color:#eed3d7;color:#b94a48;} .alert-danger h4,.alert-error h4{color:#b94a48;} .alert-info{background-color:#d9edf7;border-color:#bce8f1;color:#3a87ad;} .alert-info h4{color:#3a87ad;} .alert-block{padding-top:14px;padding-bottom:14px;} .alert-block>p,.alert-block>ul{margin-bottom:0;} .alert-block p+p{margin-top:5px;} @-webkit-keyframes progress-bar-stripes{from{background-position:40px 0;} to{background-position:0 0;}}@-moz-keyframes progress-bar-stripes{from{background-position:40px 0;} to{background-position:0 0;}}@-ms-keyframes progress-bar-stripes{from{background-position:40px 0;} to{background-position:0 0;}}@-o-keyframes progress-bar-stripes{from{background-position:0 0;} to{background-position:40px 0;}}@keyframes progress-bar-stripes{from{background-position:40px 0;} to{background-position:0 0;}}.progress{overflow:hidden;height:20px;margin-bottom:20px;background-color:#f7f7f7;background-image:-moz-linear-gradient(top, #f5f5f5, #f9f9f9);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#f5f5f5), to(#f9f9f9));background-image:-webkit-linear-gradient(top, #f5f5f5, #f9f9f9);background-image:-o-linear-gradient(top, #f5f5f5, #f9f9f9);background-image:linear-gradient(to bottom, #f5f5f5, #f9f9f9);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#fff9f9f9', GradientType=0);-webkit-box-shadow:inset 0 1px 2px rgba(0, 0, 0, 0.1);-moz-box-shadow:inset 0 1px 2px rgba(0, 0, 0, 0.1);box-shadow:inset 0 1px 2px rgba(0, 0, 0, 0.1);-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;} .progress .bar{width:0%;height:100%;color:#ffffff;float:left;font-size:12px;text-align:center;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);background-color:#0e90d2;background-image:-moz-linear-gradient(top, #149bdf, #0480be);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#149bdf), to(#0480be));background-image:-webkit-linear-gradient(top, #149bdf, #0480be);background-image:-o-linear-gradient(top, #149bdf, #0480be);background-image:linear-gradient(to bottom, #149bdf, #0480be);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff149bdf', endColorstr='#ff0480be', GradientType=0);-webkit-box-shadow:inset 0 -1px 0 rgba(0, 0, 0, 0.15);-moz-box-shadow:inset 0 -1px 0 rgba(0, 0, 0, 0.15);box-shadow:inset 0 -1px 0 rgba(0, 0, 0, 0.15);-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;-webkit-transition:width 0.6s ease;-moz-transition:width 0.6s ease;-o-transition:width 0.6s ease;transition:width 0.6s ease;} .progress .bar+.bar{-webkit-box-shadow:inset 1px 0 0 rgba(0,0,0,.15), inset 0 -1px 0 rgba(0,0,0,.15);-moz-box-shadow:inset 1px 0 0 rgba(0,0,0,.15), inset 0 -1px 0 rgba(0,0,0,.15);box-shadow:inset 1px 0 0 rgba(0,0,0,.15), inset 0 -1px 0 rgba(0,0,0,.15);} .progress-striped .bar{background-color:#149bdf;background-image:-webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));background-image:-webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);-webkit-background-size:40px 40px;-moz-background-size:40px 40px;-o-background-size:40px 40px;background-size:40px 40px;} .progress.active .bar{-webkit-animation:progress-bar-stripes 2s linear infinite;-moz-animation:progress-bar-stripes 2s linear infinite;-ms-animation:progress-bar-stripes 2s linear infinite;-o-animation:progress-bar-stripes 2s linear infinite;animation:progress-bar-stripes 2s linear infinite;} .progress-danger .bar,.progress .bar-danger{background-color:#dd514c;background-image:-moz-linear-gradient(top, #ee5f5b, #c43c35);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#ee5f5b), to(#c43c35));background-image:-webkit-linear-gradient(top, #ee5f5b, #c43c35);background-image:-o-linear-gradient(top, #ee5f5b, #c43c35);background-image:linear-gradient(to bottom, #ee5f5b, #c43c35);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffee5f5b', endColorstr='#ffc43c35', GradientType=0);} .progress-danger.progress-striped .bar,.progress-striped .bar-danger{background-color:#ee5f5b;background-image:-webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));background-image:-webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);} .progress-success .bar,.progress .bar-success{background-color:#5eb95e;background-image:-moz-linear-gradient(top, #62c462, #57a957);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#62c462), to(#57a957));background-image:-webkit-linear-gradient(top, #62c462, #57a957);background-image:-o-linear-gradient(top, #62c462, #57a957);background-image:linear-gradient(to bottom, #62c462, #57a957);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff62c462', endColorstr='#ff57a957', GradientType=0);} .progress-success.progress-striped .bar,.progress-striped .bar-success{background-color:#62c462;background-image:-webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));background-image:-webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);} .progress-info .bar,.progress .bar-info{background-color:#4bb1cf;background-image:-moz-linear-gradient(top, #5bc0de, #339bb9);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#5bc0de), to(#339bb9));background-image:-webkit-linear-gradient(top, #5bc0de, #339bb9);background-image:-o-linear-gradient(top, #5bc0de, #339bb9);background-image:linear-gradient(to bottom, #5bc0de, #339bb9);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff339bb9', GradientType=0);} .progress-info.progress-striped .bar,.progress-striped .bar-info{background-color:#5bc0de;background-image:-webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));background-image:-webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);} .progress-warning .bar,.progress .bar-warning{background-color:#faa732;background-image:-moz-linear-gradient(top, #fbb450, #f89406);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#fbb450), to(#f89406));background-image:-webkit-linear-gradient(top, #fbb450, #f89406);background-image:-o-linear-gradient(top, #fbb450, #f89406);background-image:linear-gradient(to bottom, #fbb450, #f89406);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffbb450', endColorstr='#fff89406', GradientType=0);} .progress-warning.progress-striped .bar,.progress-striped .bar-warning{background-color:#fbb450;background-image:-webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));background-image:-webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);} .hero-unit{padding:60px;margin-bottom:30px;font-size:18px;font-weight:200;line-height:30px;color:inherit;background-color:#eeeeee;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;}.hero-unit h1{margin-bottom:0;font-size:60px;line-height:1;color:inherit;letter-spacing:-1px;} .hero-unit li{line-height:30px;} .media,.media-body{overflow:hidden;*overflow:visible;zoom:1;} .media,.media .media{margin-top:15px;} .media:first-child{margin-top:0;} .media-object{display:block;} .media-heading{margin:0 0 5px;} .media .pull-left{margin-right:10px;} .media .pull-right{margin-left:10px;} .media-list{margin-left:0;list-style:none;} .tooltip{position:absolute;z-index:1030;display:block;visibility:visible;padding:5px;font-size:11px;opacity:0;filter:alpha(opacity=0);}.tooltip.in{opacity:0.8;filter:alpha(opacity=80);} .tooltip.top{margin-top:-3px;} .tooltip.right{margin-left:3px;} .tooltip.bottom{margin-top:3px;} .tooltip.left{margin-left:-3px;} .tooltip-inner{max-width:200px;padding:3px 8px;color:#ffffff;text-align:center;text-decoration:none;background-color:#000000;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;} .tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid;} .tooltip.top .tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-width:5px 5px 0;border-top-color:#000000;} .tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#000000;} .tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-width:5px 0 5px 5px;border-left-color:#000000;} .tooltip.bottom .tooltip-arrow{top:0;left:50%;margin-left:-5px;border-width:0 5px 5px;border-bottom-color:#000000;} .popover{position:absolute;top:0;left:0;z-index:1010;display:none;width:236px;padding:1px;text-align:left;background-color:#ffffff;-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0, 0, 0, 0.2);-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0, 0, 0, 0.2);-moz-box-shadow:0 5px 10px rgba(0, 0, 0, 0.2);box-shadow:0 5px 10px rgba(0, 0, 0, 0.2);white-space:normal;}.popover.top{margin-top:-10px;} .popover.right{margin-left:10px;} .popover.bottom{margin-top:10px;} .popover.left{margin-left:-10px;} .popover-title{margin:0;padding:8px 14px;font-size:14px;font-weight:normal;line-height:18px;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;-webkit-border-radius:5px 5px 0 0;-moz-border-radius:5px 5px 0 0;border-radius:5px 5px 0 0;} .popover-content{padding:9px 14px;} .popover .arrow,.popover .arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid;} .popover .arrow{border-width:11px;} .popover .arrow:after{border-width:10px;content:"";} .popover.top .arrow{left:50%;margin-left:-11px;border-bottom-width:0;border-top-color:#999;border-top-color:rgba(0, 0, 0, 0.25);bottom:-11px;}.popover.top .arrow:after{bottom:1px;margin-left:-10px;border-bottom-width:0;border-top-color:#ffffff;} .popover.right .arrow{top:50%;left:-11px;margin-top:-11px;border-left-width:0;border-right-color:#999;border-right-color:rgba(0, 0, 0, 0.25);}.popover.right .arrow:after{left:1px;bottom:-10px;border-left-width:0;border-right-color:#ffffff;} .popover.bottom .arrow{left:50%;margin-left:-11px;border-top-width:0;border-bottom-color:#999;border-bottom-color:rgba(0, 0, 0, 0.25);top:-11px;}.popover.bottom .arrow:after{top:1px;margin-left:-10px;border-top-width:0;border-bottom-color:#ffffff;} .popover.left .arrow{top:50%;right:-11px;margin-top:-11px;border-right-width:0;border-left-color:#999;border-left-color:rgba(0, 0, 0, 0.25);}.popover.left .arrow:after{right:1px;border-right-width:0;border-left-color:#ffffff;bottom:-10px;} .modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040;background-color:#000000;}.modal-backdrop.fade{opacity:0;} .modal-backdrop,.modal-backdrop.fade.in{opacity:0.8;filter:alpha(opacity=80);} .modal{position:fixed;top:10%;left:50%;z-index:1050;width:560px;margin-left:-280px;background-color:#ffffff;border:1px solid #999;border:1px solid rgba(0, 0, 0, 0.3);*border:1px solid #999;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;-webkit-box-shadow:0 3px 7px rgba(0, 0, 0, 0.3);-moz-box-shadow:0 3px 7px rgba(0, 0, 0, 0.3);box-shadow:0 3px 7px rgba(0, 0, 0, 0.3);-webkit-background-clip:padding-box;-moz-background-clip:padding-box;background-clip:padding-box;outline:none;}.modal.fade{-webkit-transition:opacity .3s linear, top .3s ease-out;-moz-transition:opacity .3s linear, top .3s ease-out;-o-transition:opacity .3s linear, top .3s ease-out;transition:opacity .3s linear, top .3s ease-out;top:-25%;} .modal.fade.in{top:10%;} .modal-header{padding:9px 15px;border-bottom:1px solid #eee;}.modal-header .close{margin-top:2px;} .modal-header h3{margin:0;line-height:30px;} .modal-body{position:relative;overflow-y:auto;max-height:400px;padding:15px;} .modal-form{margin-bottom:0;} .modal-footer{padding:14px 15px 15px;margin-bottom:0;text-align:right;background-color:#f5f5f5;border-top:1px solid #ddd;-webkit-border-radius:0 0 6px 6px;-moz-border-radius:0 0 6px 6px;border-radius:0 0 6px 6px;-webkit-box-shadow:inset 0 1px 0 #ffffff;-moz-box-shadow:inset 0 1px 0 #ffffff;box-shadow:inset 0 1px 0 #ffffff;*zoom:1;}.modal-footer:before,.modal-footer:after{display:table;content:"";line-height:0;} .modal-footer:after{clear:both;} .modal-footer .btn+.btn{margin-left:5px;margin-bottom:0;} .modal-footer .btn-group .btn+.btn{margin-left:-1px;} .modal-footer .btn-block+.btn-block{margin-left:0;} .dropup,.dropdown{position:relative;} .dropdown-toggle{*margin-bottom:-3px;} .dropdown-toggle:active,.open .dropdown-toggle{outline:0;} .caret{display:inline-block;width:0;height:0;vertical-align:top;border-top:4px solid #000000;border-right:4px solid transparent;border-left:4px solid transparent;content:"";} .dropdown .caret{margin-top:8px;margin-left:2px;} .dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:160px;padding:5px 0;margin:2px 0 0;list-style:none;background-color:#ffffff;border:1px solid #ccc;border:1px solid rgba(0, 0, 0, 0.2);*border-right-width:2px;*border-bottom-width:2px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0, 0, 0, 0.2);-moz-box-shadow:0 5px 10px rgba(0, 0, 0, 0.2);box-shadow:0 5px 10px rgba(0, 0, 0, 0.2);-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box;}.dropdown-menu.pull-right{right:0;left:auto;} .dropdown-menu .divider{*width:100%;height:1px;margin:9px 1px;*margin:-5px 0 5px;overflow:hidden;background-color:#e5e5e5;border-bottom:1px solid #ffffff;} .dropdown-menu li>a{display:block;padding:3px 20px;clear:both;font-weight:normal;line-height:20px;color:#333333;white-space:nowrap;} .dropdown-menu li>a:hover,.dropdown-menu li>a:focus,.dropdown-submenu:hover>a{text-decoration:none;color:#ffffff;background-color:#0081c2;background-image:-moz-linear-gradient(top, #0088cc, #0077b3);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0077b3));background-image:-webkit-linear-gradient(top, #0088cc, #0077b3);background-image:-o-linear-gradient(top, #0088cc, #0077b3);background-image:linear-gradient(to bottom, #0088cc, #0077b3);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff0077b3', GradientType=0);} .dropdown-menu .active>a,.dropdown-menu .active>a:hover{color:#ffffff;text-decoration:none;outline:0;background-color:#0081c2;background-image:-moz-linear-gradient(top, #0088cc, #0077b3);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0077b3));background-image:-webkit-linear-gradient(top, #0088cc, #0077b3);background-image:-o-linear-gradient(top, #0088cc, #0077b3);background-image:linear-gradient(to bottom, #0088cc, #0077b3);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff0077b3', GradientType=0);} .dropdown-menu .disabled>a,.dropdown-menu .disabled>a:hover{color:#999999;} .dropdown-menu .disabled>a:hover{text-decoration:none;background-color:transparent;background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);cursor:default;} .open{*z-index:1000;}.open >.dropdown-menu{display:block;} .pull-right>.dropdown-menu{right:0;left:auto;} .dropup .caret,.navbar-fixed-bottom .dropdown .caret{border-top:0;border-bottom:4px solid #000000;content:"";} .dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:1px;} .dropdown-submenu{position:relative;} .dropdown-submenu>.dropdown-menu{top:0;left:100%;margin-top:-6px;margin-left:-1px;-webkit-border-radius:0 6px 6px 6px;-moz-border-radius:0 6px 6px 6px;border-radius:0 6px 6px 6px;} .dropdown-submenu:hover>.dropdown-menu{display:block;} .dropup .dropdown-submenu>.dropdown-menu{top:auto;bottom:0;margin-top:0;margin-bottom:-2px;-webkit-border-radius:5px 5px 5px 0;-moz-border-radius:5px 5px 5px 0;border-radius:5px 5px 5px 0;} .dropdown-submenu>a:after{display:block;content:" ";float:right;width:0;height:0;border-color:transparent;border-style:solid;border-width:5px 0 5px 5px;border-left-color:#cccccc;margin-top:5px;margin-right:-10px;} .dropdown-submenu:hover>a:after{border-left-color:#ffffff;} .dropdown-submenu.pull-left{float:none;}.dropdown-submenu.pull-left>.dropdown-menu{left:-100%;margin-left:10px;-webkit-border-radius:6px 0 6px 6px;-moz-border-radius:6px 0 6px 6px;border-radius:6px 0 6px 6px;} .dropdown .dropdown-menu .nav-header{padding-left:20px;padding-right:20px;} .typeahead{z-index:1051;margin-top:2px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;} .accordion{margin-bottom:20px;} .accordion-group{margin-bottom:2px;border:1px solid #e5e5e5;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;} .accordion-heading{border-bottom:0;} .accordion-heading .accordion-toggle{display:block;padding:8px 15px;} .accordion-toggle{cursor:pointer;} .accordion-inner{padding:9px 15px;border-top:1px solid #e5e5e5;} .carousel{position:relative;margin-bottom:20px;line-height:1;} .carousel-inner{overflow:hidden;width:100%;position:relative;} .carousel-inner>.item{display:none;position:relative;-webkit-transition:0.6s ease-in-out left;-moz-transition:0.6s ease-in-out left;-o-transition:0.6s ease-in-out left;transition:0.6s ease-in-out left;} .carousel-inner>.item>img{display:block;line-height:1;} .carousel-inner>.active,.carousel-inner>.next,.carousel-inner>.prev{display:block;} .carousel-inner>.active{left:0;} .carousel-inner>.next,.carousel-inner>.prev{position:absolute;top:0;width:100%;} .carousel-inner>.next{left:100%;} .carousel-inner>.prev{left:-100%;} .carousel-inner>.next.left,.carousel-inner>.prev.right{left:0;} .carousel-inner>.active.left{left:-100%;} .carousel-inner>.active.right{left:100%;} .carousel-control{position:absolute;top:40%;left:15px;width:40px;height:40px;margin-top:-20px;font-size:60px;font-weight:100;line-height:30px;color:#ffffff;text-align:center;background:#222222;border:3px solid #ffffff;-webkit-border-radius:23px;-moz-border-radius:23px;border-radius:23px;opacity:0.5;filter:alpha(opacity=50);}.carousel-control.right{left:auto;right:15px;} .carousel-control:hover{color:#ffffff;text-decoration:none;opacity:0.9;filter:alpha(opacity=90);} .carousel-caption{position:absolute;left:0;right:0;bottom:0;padding:15px;background:#333333;background:rgba(0, 0, 0, 0.75);} .carousel-caption h4,.carousel-caption p{color:#ffffff;line-height:20px;} .carousel-caption h4{margin:0 0 5px;} .carousel-caption p{margin-bottom:0;} .well{min-height:20px;padding:19px;margin-bottom:20px;background-color:#f5f5f5;border:1px solid #e3e3e3;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.05);-moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.05);box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.05);}.well blockquote{border-color:#ddd;border-color:rgba(0, 0, 0, 0.15);} .well-large{padding:24px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;} .well-small{padding:9px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;} .close{float:right;font-size:20px;font-weight:bold;line-height:20px;color:#000000;text-shadow:0 1px 0 #ffffff;opacity:0.2;filter:alpha(opacity=20);}.close:hover{color:#000000;text-decoration:none;cursor:pointer;opacity:0.4;filter:alpha(opacity=40);} button.close{padding:0;cursor:pointer;background:transparent;border:0;-webkit-appearance:none;} .pull-right{float:right;} .pull-left{float:left;} .hide{display:none;} .show{display:block;} .invisible{visibility:hidden;} .affix{position:fixed;} .fade{opacity:0;-webkit-transition:opacity 0.15s linear;-moz-transition:opacity 0.15s linear;-o-transition:opacity 0.15s linear;transition:opacity 0.15s linear;}.fade.in{opacity:1;} .collapse{position:relative;height:0;overflow:hidden;-webkit-transition:height 0.35s ease;-moz-transition:height 0.35s ease;-o-transition:height 0.35s ease;transition:height 0.35s ease;}.collapse.in{height:auto;} .hidden{display:none;visibility:hidden;} .visible-phone{display:none !important;} .visible-tablet{display:none !important;} .hidden-desktop{display:none !important;} .visible-desktop{display:inherit !important;} @media (min-width:768px) and (max-width:979px){.hidden-desktop{display:inherit !important;} .visible-desktop{display:none !important ;} .visible-tablet{display:inherit !important;} .hidden-tablet{display:none !important;}}@media (max-width:767px){.hidden-desktop{display:inherit !important;} .visible-desktop{display:none !important;} .visible-phone{display:inherit !important;} .hidden-phone{display:none !important;}}@media (max-width:767px){body{padding-left:20px;padding-right:20px;} .navbar-fixed-top,.navbar-fixed-bottom,.navbar-static-top{margin-left:-20px;margin-right:-20px;} .container-fluid{padding:0;} .dl-horizontal dt{float:none;clear:none;width:auto;text-align:left;} .dl-horizontal dd{margin-left:0;} .container{width:auto;} .row-fluid{width:100%;} .row,.thumbnails{margin-left:0;} .thumbnails>li{float:none;margin-left:0;} [class*="span"],.uneditable-input[class*="span"],.row-fluid [class*="span"]{float:none;display:block;width:100%;margin-left:0;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;} .span12,.row-fluid .span12{width:100%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;} .row-fluid [class*="offset"]:first-child{margin-left:0;} .input-large,.input-xlarge,.input-xxlarge,input[class*="span"],select[class*="span"],textarea[class*="span"],.uneditable-input{display:block;width:100%;min-height:30px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;} .input-prepend input,.input-append input,.input-prepend input[class*="span"],.input-append input[class*="span"]{display:inline-block;width:auto;} .controls-row [class*="span"]+[class*="span"]{margin-left:0;} .modal{position:fixed;top:20px;left:20px;right:20px;width:auto;margin:0;}.modal.fade{top:-100px;} .modal.fade.in{top:20px;}}@media (max-width:480px){.nav-collapse{-webkit-transform:translate3d(0, 0, 0);} .page-header h1 small{display:block;line-height:20px;} input[type="checkbox"],input[type="radio"]{border:1px solid #ccc;} .form-horizontal .control-label{float:none;width:auto;padding-top:0;text-align:left;} .form-horizontal .controls{margin-left:0;} .form-horizontal .control-list{padding-top:0;} .form-horizontal .form-actions{padding-left:10px;padding-right:10px;} .media .pull-left,.media .pull-right{float:none;display:block;margin-bottom:10px;} .media-object{margin-right:0;margin-left:0;} .modal{top:10px;left:10px;right:10px;} .modal-header .close{padding:10px;margin:-10px;} .carousel-caption{position:static;}}@media (min-width:768px) and (max-width:979px){.row{margin-left:-20px;*zoom:1;}.row:before,.row:after{display:table;content:"";line-height:0;} .row:after{clear:both;} [class*="span"]{float:left;min-height:1px;margin-left:20px;} .container,.navbar-static-top .container,.navbar-fixed-top .container,.navbar-fixed-bottom .container{width:724px;} .span12{width:724px;} .span11{width:662px;} .span10{width:600px;} .span9{width:538px;} .span8{width:476px;} .span7{width:414px;} .span6{width:352px;} .span5{width:290px;} .span4{width:228px;} .span3{width:166px;} .span2{width:104px;} .span1{width:42px;} .offset12{margin-left:764px;} .offset11{margin-left:702px;} .offset10{margin-left:640px;} .offset9{margin-left:578px;} .offset8{margin-left:516px;} .offset7{margin-left:454px;} .offset6{margin-left:392px;} .offset5{margin-left:330px;} .offset4{margin-left:268px;} .offset3{margin-left:206px;} .offset2{margin-left:144px;} .offset1{margin-left:82px;} .row-fluid{width:100%;*zoom:1;}.row-fluid:before,.row-fluid:after{display:table;content:"";line-height:0;} .row-fluid:after{clear:both;} .row-fluid [class*="span"]{display:block;width:100%;min-height:30px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;float:left;margin-left:2.7624309392265194%;*margin-left:2.709239449864817%;} .row-fluid [class*="span"]:first-child{margin-left:0;} .row-fluid .controls-row [class*="span"]+[class*="span"]{margin-left:2.7624309392265194%;} .row-fluid .span12{width:100%;*width:99.94680851063829%;} .row-fluid .span11{width:91.43646408839778%;*width:91.38327259903608%;} .row-fluid .span10{width:82.87292817679558%;*width:82.81973668743387%;} .row-fluid .span9{width:74.30939226519337%;*width:74.25620077583166%;} .row-fluid .span8{width:65.74585635359117%;*width:65.69266486422946%;} .row-fluid .span7{width:57.18232044198895%;*width:57.12912895262725%;} .row-fluid .span6{width:48.61878453038674%;*width:48.56559304102504%;} .row-fluid .span5{width:40.05524861878453%;*width:40.00205712942283%;} .row-fluid .span4{width:31.491712707182323%;*width:31.43852121782062%;} .row-fluid .span3{width:22.92817679558011%;*width:22.87498530621841%;} .row-fluid .span2{width:14.3646408839779%;*width:14.311449394616199%;} .row-fluid .span1{width:5.801104972375691%;*width:5.747913483013988%;} .row-fluid .offset12{margin-left:105.52486187845304%;*margin-left:105.41847889972962%;} .row-fluid .offset12:first-child{margin-left:102.76243093922652%;*margin-left:102.6560479605031%;} .row-fluid .offset11{margin-left:96.96132596685082%;*margin-left:96.8549429881274%;} .row-fluid .offset11:first-child{margin-left:94.1988950276243%;*margin-left:94.09251204890089%;} .row-fluid .offset10{margin-left:88.39779005524862%;*margin-left:88.2914070765252%;} .row-fluid .offset10:first-child{margin-left:85.6353591160221%;*margin-left:85.52897613729868%;} .row-fluid .offset9{margin-left:79.8342541436464%;*margin-left:79.72787116492299%;} .row-fluid .offset9:first-child{margin-left:77.07182320441989%;*margin-left:76.96544022569647%;} .row-fluid .offset8{margin-left:71.2707182320442%;*margin-left:71.16433525332079%;} .row-fluid .offset8:first-child{margin-left:68.50828729281768%;*margin-left:68.40190431409427%;} .row-fluid .offset7{margin-left:62.70718232044199%;*margin-left:62.600799341718584%;} .row-fluid .offset7:first-child{margin-left:59.94475138121547%;*margin-left:59.838368402492065%;} .row-fluid .offset6{margin-left:54.14364640883978%;*margin-left:54.037263430116376%;} .row-fluid .offset6:first-child{margin-left:51.38121546961326%;*margin-left:51.27483249088986%;} .row-fluid .offset5{margin-left:45.58011049723757%;*margin-left:45.47372751851417%;} .row-fluid .offset5:first-child{margin-left:42.81767955801105%;*margin-left:42.71129657928765%;} .row-fluid .offset4{margin-left:37.01657458563536%;*margin-left:36.91019160691196%;} .row-fluid .offset4:first-child{margin-left:34.25414364640884%;*margin-left:34.14776066768544%;} .row-fluid .offset3{margin-left:28.45303867403315%;*margin-left:28.346655695309746%;} .row-fluid .offset3:first-child{margin-left:25.69060773480663%;*margin-left:25.584224756083227%;} .row-fluid .offset2{margin-left:19.88950276243094%;*margin-left:19.783119783707537%;} .row-fluid .offset2:first-child{margin-left:17.12707182320442%;*margin-left:17.02068884448102%;} .row-fluid .offset1{margin-left:11.32596685082873%;*margin-left:11.219583872105325%;} .row-fluid .offset1:first-child{margin-left:8.56353591160221%;*margin-left:8.457152932878806%;} input,textarea,.uneditable-input{margin-left:0;} .controls-row [class*="span"]+[class*="span"]{margin-left:20px;} input.span12, textarea.span12, .uneditable-input.span12{width:710px;} input.span11, textarea.span11, .uneditable-input.span11{width:648px;} input.span10, textarea.span10, .uneditable-input.span10{width:586px;} input.span9, textarea.span9, .uneditable-input.span9{width:524px;} input.span8, textarea.span8, .uneditable-input.span8{width:462px;} input.span7, textarea.span7, .uneditable-input.span7{width:400px;} input.span6, textarea.span6, .uneditable-input.span6{width:338px;} input.span5, textarea.span5, .uneditable-input.span5{width:276px;} input.span4, textarea.span4, .uneditable-input.span4{width:214px;} input.span3, textarea.span3, .uneditable-input.span3{width:152px;} input.span2, textarea.span2, .uneditable-input.span2{width:90px;} input.span1, textarea.span1, .uneditable-input.span1{width:28px;}}@media (min-width:1200px){.row{margin-left:-30px;*zoom:1;}.row:before,.row:after{display:table;content:"";line-height:0;} .row:after{clear:both;} [class*="span"]{float:left;min-height:1px;margin-left:30px;} .container,.navbar-static-top .container,.navbar-fixed-top .container,.navbar-fixed-bottom .container{width:1170px;} .span12{width:1170px;} .span11{width:1070px;} .span10{width:970px;} .span9{width:870px;} .span8{width:770px;} .span7{width:670px;} .span6{width:570px;} .span5{width:470px;} .span4{width:370px;} .span3{width:270px;} .span2{width:170px;} .span1{width:70px;} .offset12{margin-left:1230px;} .offset11{margin-left:1130px;} .offset10{margin-left:1030px;} .offset9{margin-left:930px;} .offset8{margin-left:830px;} .offset7{margin-left:730px;} .offset6{margin-left:630px;} .offset5{margin-left:530px;} .offset4{margin-left:430px;} .offset3{margin-left:330px;} .offset2{margin-left:230px;} .offset1{margin-left:130px;} .row-fluid{width:100%;*zoom:1;}.row-fluid:before,.row-fluid:after{display:table;content:"";line-height:0;} .row-fluid:after{clear:both;} .row-fluid [class*="span"]{display:block;width:100%;min-height:30px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;float:left;margin-left:2.564102564102564%;*margin-left:2.5109110747408616%;} .row-fluid [class*="span"]:first-child{margin-left:0;} .row-fluid .controls-row [class*="span"]+[class*="span"]{margin-left:2.564102564102564%;} .row-fluid .span12{width:100%;*width:99.94680851063829%;} .row-fluid .span11{width:91.45299145299145%;*width:91.39979996362975%;} .row-fluid .span10{width:82.90598290598291%;*width:82.8527914166212%;} .row-fluid .span9{width:74.35897435897436%;*width:74.30578286961266%;} .row-fluid .span8{width:65.81196581196582%;*width:65.75877432260411%;} .row-fluid .span7{width:57.26495726495726%;*width:57.21176577559556%;} .row-fluid .span6{width:48.717948717948715%;*width:48.664757228587014%;} .row-fluid .span5{width:40.17094017094017%;*width:40.11774868157847%;} .row-fluid .span4{width:31.623931623931625%;*width:31.570740134569924%;} .row-fluid .span3{width:23.076923076923077%;*width:23.023731587561375%;} .row-fluid .span2{width:14.52991452991453%;*width:14.476723040552828%;} .row-fluid .span1{width:5.982905982905983%;*width:5.929714493544281%;} .row-fluid .offset12{margin-left:105.12820512820512%;*margin-left:105.02182214948171%;} .row-fluid .offset12:first-child{margin-left:102.56410256410257%;*margin-left:102.45771958537915%;} .row-fluid .offset11{margin-left:96.58119658119658%;*margin-left:96.47481360247316%;} .row-fluid .offset11:first-child{margin-left:94.01709401709402%;*margin-left:93.91071103837061%;} .row-fluid .offset10{margin-left:88.03418803418803%;*margin-left:87.92780505546462%;} .row-fluid .offset10:first-child{margin-left:85.47008547008548%;*margin-left:85.36370249136206%;} .row-fluid .offset9{margin-left:79.48717948717949%;*margin-left:79.38079650845607%;} .row-fluid .offset9:first-child{margin-left:76.92307692307693%;*margin-left:76.81669394435352%;} .row-fluid .offset8{margin-left:70.94017094017094%;*margin-left:70.83378796144753%;} .row-fluid .offset8:first-child{margin-left:68.37606837606839%;*margin-left:68.26968539734497%;} .row-fluid .offset7{margin-left:62.393162393162385%;*margin-left:62.28677941443899%;} .row-fluid .offset7:first-child{margin-left:59.82905982905982%;*margin-left:59.72267685033642%;} .row-fluid .offset6{margin-left:53.84615384615384%;*margin-left:53.739770867430444%;} .row-fluid .offset6:first-child{margin-left:51.28205128205128%;*margin-left:51.175668303327875%;} .row-fluid .offset5{margin-left:45.299145299145295%;*margin-left:45.1927623204219%;} .row-fluid .offset5:first-child{margin-left:42.73504273504273%;*margin-left:42.62865975631933%;} .row-fluid .offset4{margin-left:36.75213675213675%;*margin-left:36.645753773413354%;} .row-fluid .offset4:first-child{margin-left:34.18803418803419%;*margin-left:34.081651209310785%;} .row-fluid .offset3{margin-left:28.205128205128204%;*margin-left:28.0987452264048%;} .row-fluid .offset3:first-child{margin-left:25.641025641025642%;*margin-left:25.53464266230224%;} .row-fluid .offset2{margin-left:19.65811965811966%;*margin-left:19.551736679396257%;} .row-fluid .offset2:first-child{margin-left:17.094017094017094%;*margin-left:16.98763411529369%;} .row-fluid .offset1{margin-left:11.11111111111111%;*margin-left:11.004728132387708%;} .row-fluid .offset1:first-child{margin-left:8.547008547008547%;*margin-left:8.440625568285142%;} input,textarea,.uneditable-input{margin-left:0;} .controls-row [class*="span"]+[class*="span"]{margin-left:30px;} input.span12, textarea.span12, .uneditable-input.span12{width:1156px;} input.span11, textarea.span11, .uneditable-input.span11{width:1056px;} input.span10, textarea.span10, .uneditable-input.span10{width:956px;} input.span9, textarea.span9, .uneditable-input.span9{width:856px;} input.span8, textarea.span8, .uneditable-input.span8{width:756px;} input.span7, textarea.span7, .uneditable-input.span7{width:656px;} input.span6, textarea.span6, .uneditable-input.span6{width:556px;} input.span5, textarea.span5, .uneditable-input.span5{width:456px;} input.span4, textarea.span4, .uneditable-input.span4{width:356px;} input.span3, textarea.span3, .uneditable-input.span3{width:256px;} input.span2, textarea.span2, .uneditable-input.span2{width:156px;} input.span1, textarea.span1, .uneditable-input.span1{width:56px;} .thumbnails{margin-left:-30px;} .thumbnails>li{margin-left:30px;} .row-fluid .thumbnails{margin-left:0;}}@media (max-width:979px){body{padding-top:0;} .navbar-fixed-top,.navbar-fixed-bottom{position:static;} .navbar-fixed-top{margin-bottom:20px;} .navbar-fixed-bottom{margin-top:20px;} .navbar-fixed-top .navbar-inner,.navbar-fixed-bottom .navbar-inner{padding:5px;} .navbar .container{width:auto;padding:0;} .navbar .brand{padding-left:10px;padding-right:10px;margin:0 0 0 -5px;} .nav-collapse{clear:both;} .nav-collapse .nav{float:none;margin:0 0 10px;} .nav-collapse .nav>li{float:none;} .nav-collapse .nav>li>a{margin-bottom:2px;} .nav-collapse .nav>.divider-vertical{display:none;} .nav-collapse .nav .nav-header{color:#777777;text-shadow:none;} .nav-collapse .nav>li>a,.nav-collapse .dropdown-menu a{padding:9px 15px;font-weight:bold;color:#777777;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;} .nav-collapse .btn{padding:4px 10px 4px;font-weight:normal;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;} .nav-collapse .dropdown-menu li+li a{margin-bottom:2px;} .nav-collapse .nav>li>a:hover,.nav-collapse .dropdown-menu a:hover{background-color:#f2f2f2;} .navbar-inverse .nav-collapse .nav>li>a,.navbar-inverse .nav-collapse .dropdown-menu a{color:#999999;} .navbar-inverse .nav-collapse .nav>li>a:hover,.navbar-inverse .nav-collapse .dropdown-menu a:hover{background-color:#111111;} .nav-collapse.in .btn-group{margin-top:5px;padding:0;} .nav-collapse .dropdown-menu{position:static;top:auto;left:auto;float:none;display:none;max-width:none;margin:0 15px;padding:0;background-color:transparent;border:none;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;} .nav-collapse .open>.dropdown-menu{display:block;} .nav-collapse .dropdown-menu:before,.nav-collapse .dropdown-menu:after{display:none;} .nav-collapse .dropdown-menu .divider{display:none;} .nav-collapse .nav>li>.dropdown-menu:before,.nav-collapse .nav>li>.dropdown-menu:after{display:none;} .nav-collapse .navbar-form,.nav-collapse .navbar-search{float:none;padding:10px 15px;margin:10px 0;border-top:1px solid #f2f2f2;border-bottom:1px solid #f2f2f2;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.1);-moz-box-shadow:inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.1);box-shadow:inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.1);} .navbar-inverse .nav-collapse .navbar-form,.navbar-inverse .nav-collapse .navbar-search{border-top-color:#111111;border-bottom-color:#111111;} .navbar .nav-collapse .nav.pull-right{float:none;margin-left:0;} .nav-collapse,.nav-collapse.collapse{overflow:hidden;height:0;} .navbar .btn-navbar{display:block;} .navbar-static .navbar-inner{padding-left:10px;padding-right:10px;}}@media (min-width:980px){.nav-collapse.collapse{height:auto !important;overflow:visible !important;}} |
| URL | http://zero.webappsecurity.com/resources/css/font-awesome.css |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | Access-Control-Allow-Origin: * |
| Request Header - size: 285 bytes. |
GET http://zero.webappsecurity.com/resources/css/font-awesome.css HTTP/1.1
Host: zero.webappsecurity.com User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0 Pragma: no-cache Cache-Control: no-cache Referer: http://zero.webappsecurity.com |
| Request Body - size: 0 bytes. |
|
| Response Header - size: 347 bytes. |
HTTP/1.1 200 OK
Date: Mon, 14 Mar 2022 07:13:41 GMT Server: Apache-Coyote/1.1 Access-Control-Allow-Origin: * Accept-Ranges: bytes ETag: W/"21752-1360580252000" Last-Modified: Mon, 11 Feb 2013 10:57:32 GMT Cache-Control: max-age=2678400 Expires: Thu, 14 Apr 2022 07:13:42 GMT Content-Type: text/css;charset=UTF-8 Content-Length: 21752 |
| Response Body - size: 21,752 bytes. |
/*!
* Font Awesome 3.0.2 * the iconic font designed for use with Twitter Bootstrap * ------------------------------------------------------- * The full suite of pictographic icons, examples, and documentation * can be found at: http://fortawesome.github.com/Font-Awesome/ * * License * ------------------------------------------------------- * - The Font Awesome font is licensed under the SIL Open Font License - http://scripts.sil.org/OFL * - Font Awesome CSS, LESS, and SASS files are licensed under the MIT License - * http://opensource.org/licenses/mit-license.html * - The Font Awesome pictograms are licensed under the CC BY 3.0 License - http://creativecommons.org/licenses/by/3.0/ * - Attribution is no longer required in Font Awesome 3.0, but much appreciated: * "Font Awesome by Dave Gandy - http://fortawesome.github.com/Font-Awesome" * Contact * ------------------------------------------------------- * Email: dave@davegandy.com * Twitter: http://twitter.com/fortaweso_me * Work: Lead Product Designer @ http://kyruus.com */ @font-face { font-family: 'FontAwesome'; src: url('../font/fontawesome-webfont.eot?v=3.0.1'); src: url('../font/fontawesome-webfont.eot?#iefix&v=3.0.1') format('embedded-opentype'), url('../font/fontawesome-webfont.woff?v=3.0.1') format('woff'), url('../font/fontawesome-webfont.ttf?v=3.0.1') format('truetype'); font-weight: normal; font-style: normal; } /* Font Awesome styles ------------------------------------------------------- */ [class^="icon-"], [class*=" icon-"] { font-family: FontAwesome; font-weight: normal; font-style: normal; text-decoration: inherit; -webkit-font-smoothing: antialiased; /* sprites.less reset */ display: inline; width: auto; height: auto; line-height: normal; vertical-align: baseline; background-image: none; background-position: 0% 0%; background-repeat: repeat; margin-top: 0; } /* more sprites.less reset */ .icon-white, .nav-pills > .active > a > [class^="icon-"], .nav-pills > .active > a > [class*=" icon-"], .nav-list > .active > a > [class^="icon-"], .nav-list > .active > a > [class*=" icon-"], .navbar-inverse .nav > .active > a > [class^="icon-"], .navbar-inverse .nav > .active > a > [class*=" icon-"], .dropdown-menu > li > a:hover > [class^="icon-"], .dropdown-menu > li > a:hover > [class*=" icon-"], .dropdown-menu > .active > a > [class^="icon-"], .dropdown-menu > .active > a > [class*=" icon-"], .dropdown-submenu:hover > a > [class^="icon-"], .dropdown-submenu:hover > a > [class*=" icon-"] { background-image: none; } [class^="icon-"]:before, [class*=" icon-"]:before { text-decoration: inherit; display: inline-block; speak: none; } /* makes sure icons active on rollover in links */ a [class^="icon-"], a [class*=" icon-"] { display: inline-block; } /* makes the font 33% larger relative to the icon container */ .icon-large:before { vertical-align: -10%; font-size: 1.3333333333333333em; } .btn [class^="icon-"], .nav [class^="icon-"], .btn [class*=" icon-"], .nav [class*=" icon-"] { display: inline; /* keeps button heights with and without icons the same */ } .btn [class^="icon-"].icon-large, .nav [class^="icon-"].icon-large, .btn [class*=" icon-"].icon-large, .nav [class*=" icon-"].icon-large { line-height: .9em; } .btn [class^="icon-"].icon-spin, .nav [class^="icon-"].icon-spin, .btn [class*=" icon-"].icon-spin, .nav [class*=" icon-"].icon-spin { display: inline-block; } .nav-tabs [class^="icon-"], .nav-pills [class^="icon-"], .nav-tabs [class*=" icon-"], .nav-pills [class*=" icon-"] { /* keeps button heights with and without icons the same */ } .nav-tabs [class^="icon-"], .nav-pills [class^="icon-"], .nav-tabs [class*=" icon-"], .nav-pills [class*=" icon-"], .nav-tabs [class^="icon-"].icon-large, .nav-pills [class^="icon-"].icon-large, .nav-tabs [class*=" icon-"].icon-large, .nav-pills [class*=" icon-"].icon-large { line-height: .9em; } li [class^="icon-"], .nav li [class^="icon-"], li [class*=" icon-"], .nav li [class*=" icon-"] { display: inline-block; width: 1.25em; text-align: center; } li [class^="icon-"].icon-large, .nav li [class^="icon-"].icon-large, li [class*=" icon-"].icon-large, .nav li [class*=" icon-"].icon-large { /* increased font size for icon-large */ width: 1.5625em; } ul.icons { list-style-type: none; text-indent: -0.75em; } ul.icons li [class^="icon-"], ul.icons li [class*=" icon-"] { width: .75em; } .icon-muted { color: #eeeeee; } .icon-border { border: solid 1px #eeeeee; padding: .2em .25em .15em; -webkit-border-radius: 3px; -moz-border-radius: 3px; border-radius: 3px; } .icon-2x { font-size: 2em; } .icon-2x.icon-border { border-width: 2px; -webkit-border-radius: 4px; -moz-border-radius: 4px; border-radius: 4px; } .icon-3x { font-size: 3em; } .icon-3x.icon-border { border-width: 3px; -webkit-border-radius: 5px; -moz-border-radius: 5px; border-radius: 5px; } .icon-4x { font-size: 4em; } .icon-4x.icon-border { border-width: 4px; -webkit-border-radius: 6px; -moz-border-radius: 6px; border-radius: 6px; } .pull-right { float: right; } .pull-left { float: left; } [class^="icon-"].pull-left, [class*=" icon-"].pull-left { margin-right: .3em; } [class^="icon-"].pull-right, [class*=" icon-"].pull-right { margin-left: .3em; } .btn [class^="icon-"].pull-left.icon-2x, .btn [class*=" icon-"].pull-left.icon-2x, .btn [class^="icon-"].pull-right.icon-2x, .btn [class*=" icon-"].pull-right.icon-2x { margin-top: .18em; } .btn [class^="icon-"].icon-spin.icon-large, .btn [class*=" icon-"].icon-spin.icon-large { line-height: .8em; } .btn.btn-small [class^="icon-"].pull-left.icon-2x, .btn.btn-small [class*=" icon-"].pull-left.icon-2x, .btn.btn-small [class^="icon-"].pull-right.icon-2x, .btn.btn-small [class*=" icon-"].pull-right.icon-2x { margin-top: .25em; } .btn.btn-large [class^="icon-"], .btn.btn-large [class*=" icon-"] { margin-top: 0; } .btn.btn-large [class^="icon-"].pull-left.icon-2x, .btn.btn-large [class*=" icon-"].pull-left.icon-2x, .btn.btn-large [class^="icon-"].pull-right.icon-2x, .btn.btn-large [class*=" icon-"].pull-right.icon-2x { margin-top: .05em; } .btn.btn-large [class^="icon-"].pull-left.icon-2x, .btn.btn-large [class*=" icon-"].pull-left.icon-2x { margin-right: .2em; } .btn.btn-large [class^="icon-"].pull-right.icon-2x, .btn.btn-large [class*=" icon-"].pull-right.icon-2x { margin-left: .2em; } .icon-spin { display: inline-block; -moz-animation: spin 2s infinite linear; -o-animation: spin 2s infinite linear; -webkit-animation: spin 2s infinite linear; animation: spin 2s infinite linear; } @-moz-keyframes spin { 0% { -moz-transform: rotate(0deg); } 100% { -moz-transform: rotate(359deg); } } @-webkit-keyframes spin { 0% { -webkit-transform: rotate(0deg); } 100% { -webkit-transform: rotate(359deg); } } @-o-keyframes spin { 0% { -o-transform: rotate(0deg); } 100% { -o-transform: rotate(359deg); } } @-ms-keyframes spin { 0% { -ms-transform: rotate(0deg); } 100% { -ms-transform: rotate(359deg); } } @keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(359deg); } } @-moz-document url-prefix() { .icon-spin { height: .9em; } .btn .icon-spin { height: auto; } .icon-spin.icon-large { height: 1.25em; } .btn .icon-spin.icon-large { height: .75em; } } /* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen readers do not read off random characters that represent icons */ .icon-glass:before { content: "\f000"; } .icon-music:before { content: "\f001"; } .icon-search:before { content: "\f002"; } .icon-envelope:before { content: "\f003"; } .icon-heart:before { content: "\f004"; } .icon-star:before { content: "\f005"; } .icon-star-empty:before { content: "\f006"; } .icon-user:before { content: "\f007"; } .icon-film:before { content: "\f008"; } .icon-th-large:before { content: "\f009"; } .icon-th:before { content: "\f00a"; } .icon-th-list:before { content: "\f00b"; } .icon-ok:before { content: "\f00c"; } .icon-remove:before { content: "\f00d"; } .icon-zoom-in:before { content: "\f00e"; } .icon-zoom-out:before { content: "\f010"; } .icon-off:before { content: "\f011"; } .icon-signal:before { content: "\f012"; } .icon-cog:before { content: "\f013"; } .icon-trash:before { content: "\f014"; } .icon-home:before { content: "\f015"; } .icon-file:before { content: "\f016"; } .icon-time:before { content: "\f017"; } .icon-road:before { content: "\f018"; } .icon-download-alt:before { content: "\f019"; } .icon-download:before { content: "\f01a"; } .icon-upload:before { content: "\f01b"; } .icon-inbox:before { content: "\f01c"; } .icon-play-circle:before { content: "\f01d"; } .icon-repeat:before { content: "\f01e"; } /* \f020 doesn't work in Safari. all shifted one down */ .icon-refresh:before { content: "\f021"; } .icon-list-alt:before { content: "\f022"; } .icon-lock:before { content: "\f023"; } .icon-flag:before { content: "\f024"; } .icon-headphones:before { content: "\f025"; } .icon-volume-off:before { content: "\f026"; } .icon-volume-down:before { content: "\f027"; } .icon-volume-up:before { content: "\f028"; } .icon-qrcode:before { content: "\f029"; } .icon-barcode:before { content: "\f02a"; } .icon-tag:before { content: "\f02b"; } .icon-tags:before { content: "\f02c"; } .icon-book:before { content: "\f02d"; } .icon-bookmark:before { content: "\f02e"; } .icon-print:before { content: "\f02f"; } .icon-camera:before { content: "\f030"; } .icon-font:before { content: "\f031"; } .icon-bold:before { content: "\f032"; } .icon-italic:before { content: "\f033"; } .icon-text-height:before { content: "\f034"; } .icon-text-width:before { content: "\f035"; } .icon-align-left:before { content: "\f036"; } .icon-align-center:before { content: "\f037"; } .icon-align-right:before { content: "\f038"; } .icon-align-justify:before { content: "\f039"; } .icon-list:before { content: "\f03a"; } .icon-indent-left:before { content: "\f03b"; } .icon-indent-right:before { content: "\f03c"; } .icon-facetime-video:before { content: "\f03d"; } .icon-picture:before { content: "\f03e"; } .icon-pencil:before { content: "\f040"; } .icon-map-marker:before { content: "\f041"; } .icon-adjust:before { content: "\f042"; } .icon-tint:before { content: "\f043"; } .icon-edit:before { content: "\f044"; } .icon-share:before { content: "\f045"; } .icon-check:before { content: "\f046"; } .icon-move:before { content: "\f047"; } .icon-step-backward:before { content: "\f048"; } .icon-fast-backward:before { content: "\f049"; } .icon-backward:before { content: "\f04a"; } .icon-play:before { content: "\f04b"; } .icon-pause:before { content: "\f04c"; } .icon-stop:before { content: "\f04d"; } .icon-forward:before { content: "\f04e"; } .icon-fast-forward:before { content: "\f050"; } .icon-step-forward:before { content: "\f051"; } .icon-eject:before { content: "\f052"; } .icon-chevron-left:before { content: "\f053"; } .icon-chevron-right:before { content: "\f054"; } .icon-plus-sign:before { content: "\f055"; } .icon-minus-sign:before { content: "\f056"; } .icon-remove-sign:before { content: "\f057"; } .icon-ok-sign:before { content: "\f058"; } .icon-question-sign:before { content: "\f059"; } .icon-info-sign:before { content: "\f05a"; } .icon-screenshot:before { content: "\f05b"; } .icon-remove-circle:before { content: "\f05c"; } .icon-ok-circle:before { content: "\f05d"; } .icon-ban-circle:before { content: "\f05e"; } .icon-arrow-left:before { content: "\f060"; } .icon-arrow-right:before { content: "\f061"; } .icon-arrow-up:before { content: "\f062"; } .icon-arrow-down:before { content: "\f063"; } .icon-share-alt:before { content: "\f064"; } .icon-resize-full:before { content: "\f065"; } .icon-resize-small:before { content: "\f066"; } .icon-plus:before { content: "\f067"; } .icon-minus:before { content: "\f068"; } .icon-asterisk:before { content: "\f069"; } .icon-exclamation-sign:before { content: "\f06a"; } .icon-gift:before { content: "\f06b"; } .icon-leaf:before { content: "\f06c"; } .icon-fire:before { content: "\f06d"; } .icon-eye-open:before { content: "\f06e"; } .icon-eye-close:before { content: "\f070"; } .icon-warning-sign:before { content: "\f071"; } .icon-plane:before { content: "\f072"; } .icon-calendar:before { content: "\f073"; } .icon-random:before { content: "\f074"; } .icon-comment:before { content: "\f075"; } .icon-magnet:before { content: "\f076"; } .icon-chevron-up:before { content: "\f077"; } .icon-chevron-down:before { content: "\f078"; } .icon-retweet:before { content: "\f079"; } .icon-shopping-cart:before { content: "\f07a"; } .icon-folder-close:before { content: "\f07b"; } .icon-folder-open:before { content: "\f07c"; } .icon-resize-vertical:before { content: "\f07d"; } .icon-resize-horizontal:before { content: "\f07e"; } .icon-bar-chart:before { content: "\f080"; } .icon-twitter-sign:before { content: "\f081"; } .icon-facebook-sign:before { content: "\f082"; } .icon-camera-retro:before { content: "\f083"; } .icon-key:before { content: "\f084"; } .icon-cogs:before { content: "\f085"; } .icon-comments:before { content: "\f086"; } .icon-thumbs-up:before { content: "\f087"; } .icon-thumbs-down:before { content: "\f088"; } .icon-star-half:before { content: "\f089"; } .icon-heart-empty:before { content: "\f08a"; } .icon-signout:before { content: "\f08b"; } .icon-linkedin-sign:before { content: "\f08c"; } .icon-pushpin:before { content: "\f08d"; } .icon-external-link:before { content: "\f08e"; } .icon-signin:before { content: "\f090"; } .icon-trophy:before { content: "\f091"; } .icon-github-sign:before { content: "\f092"; } .icon-upload-alt:before { content: "\f093"; } .icon-lemon:before { content: "\f094"; } .icon-phone:before { content: "\f095"; } .icon-check-empty:before { content: "\f096"; } .icon-bookmark-empty:before { content: "\f097"; } .icon-phone-sign:before { content: "\f098"; } .icon-twitter:before { content: "\f099"; } .icon-facebook:before { content: "\f09a"; } .icon-github:before { content: "\f09b"; } .icon-unlock:before { content: "\f09c"; } .icon-credit-card:before { content: "\f09d"; } .icon-rss:before { content: "\f09e"; } .icon-hdd:before { content: "\f0a0"; } .icon-bullhorn:before { content: "\f0a1"; } .icon-bell:before { content: "\f0a2"; } .icon-certificate:before { content: "\f0a3"; } .icon-hand-right:before { content: "\f0a4"; } .icon-hand-left:before { content: "\f0a5"; } .icon-hand-up:before { content: "\f0a6"; } .icon-hand-down:before { content: "\f0a7"; } .icon-circle-arrow-left:before { content: "\f0a8"; } .icon-circle-arrow-right:before { content: "\f0a9"; } .icon-circle-arrow-up:before { content: "\f0aa"; } .icon-circle-arrow-down:before { content: "\f0ab"; } .icon-globe:before { content: "\f0ac"; } .icon-wrench:before { content: "\f0ad"; } .icon-tasks:before { content: "\f0ae"; } .icon-filter:before { content: "\f0b0"; } .icon-briefcase:before { content: "\f0b1"; } .icon-fullscreen:before { content: "\f0b2"; } .icon-group:before { content: "\f0c0"; } .icon-link:before { content: "\f0c1"; } .icon-cloud:before { content: "\f0c2"; } .icon-beaker:before { content: "\f0c3"; } .icon-cut:before { content: "\f0c4"; } .icon-copy:before { content: "\f0c5"; } .icon-paper-clip:before { content: "\f0c6"; } .icon-save:before { content: "\f0c7"; } .icon-sign-blank:before { content: "\f0c8"; } .icon-reorder:before { content: "\f0c9"; } .icon-list-ul:before { content: "\f0ca"; } .icon-list-ol:before { content: "\f0cb"; } .icon-strikethrough:before { content: "\f0cc"; } .icon-underline:before { content: "\f0cd"; } .icon-table:before { content: "\f0ce"; } .icon-magic:before { content: "\f0d0"; } .icon-truck:before { content: "\f0d1"; } .icon-pinterest:before { content: "\f0d2"; } .icon-pinterest-sign:before { content: "\f0d3"; } .icon-google-plus-sign:before { content: "\f0d4"; } .icon-google-plus:before { content: "\f0d5"; } .icon-money:before { content: "\f0d6"; } .icon-caret-down:before { content: "\f0d7"; } .icon-caret-up:before { content: "\f0d8"; } .icon-caret-left:before { content: "\f0d9"; } .icon-caret-right:before { content: "\f0da"; } .icon-columns:before { content: "\f0db"; } .icon-sort:before { content: "\f0dc"; } .icon-sort-down:before { content: "\f0dd"; } .icon-sort-up:before { content: "\f0de"; } .icon-envelope-alt:before { content: "\f0e0"; } .icon-linkedin:before { content: "\f0e1"; } .icon-undo:before { content: "\f0e2"; } .icon-legal:before { content: "\f0e3"; } .icon-dashboard:before { content: "\f0e4"; } .icon-comment-alt:before { content: "\f0e5"; } .icon-comments-alt:before { content: "\f0e6"; } .icon-bolt:before { content: "\f0e7"; } .icon-sitemap:before { content: "\f0e8"; } .icon-umbrella:before { content: "\f0e9"; } .icon-paste:before { content: "\f0ea"; } .icon-lightbulb:before { content: "\f0eb"; } .icon-exchange:before { content: "\f0ec"; } .icon-cloud-download:before { content: "\f0ed"; } .icon-cloud-upload:before { content: "\f0ee"; } .icon-user-md:before { content: "\f0f0"; } .icon-stethoscope:before { content: "\f0f1"; } .icon-suitcase:before { content: "\f0f2"; } .icon-bell-alt:before { content: "\f0f3"; } .icon-coffee:before { content: "\f0f4"; } .icon-food:before { content: "\f0f5"; } .icon-file-alt:before { content: "\f0f6"; } .icon-building:before { content: "\f0f7"; } .icon-hospital:before { content: "\f0f8"; } .icon-ambulance:before { content: "\f0f9"; } .icon-medkit:before { content: "\f0fa"; } .icon-fighter-jet:before { content: "\f0fb"; } .icon-beer:before { content: "\f0fc"; } .icon-h-sign:before { content: "\f0fd"; } .icon-plus-sign-alt:before { content: "\f0fe"; } .icon-double-angle-left:before { content: "\f100"; } .icon-double-angle-right:before { content: "\f101"; } .icon-double-angle-up:before { content: "\f102"; } .icon-double-angle-down:before { content: "\f103"; } .icon-angle-left:before { content: "\f104"; } .icon-angle-right:before { content: "\f105"; } .icon-angle-up:before { content: "\f106"; } .icon-angle-down:before { content: "\f107"; } .icon-desktop:before { content: "\f108"; } .icon-laptop:before { content: "\f109"; } .icon-tablet:before { content: "\f10a"; } .icon-mobile-phone:before { content: "\f10b"; } .icon-circle-blank:before { content: "\f10c"; } .icon-quote-left:before { content: "\f10d"; } .icon-quote-right:before { content: "\f10e"; } .icon-spinner:before { content: "\f110"; } .icon-circle:before { content: "\f111"; } .icon-reply:before { content: "\f112"; } .icon-github-alt:before { content: "\f113"; } .icon-folder-close-alt:before { content: "\f114"; } .icon-folder-open-alt:before { content: "\f115"; } |
| URL | http://zero.webappsecurity.com/resources/css/main.css |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | Access-Control-Allow-Origin: * |
| Request Header - size: 277 bytes. |
GET http://zero.webappsecurity.com/resources/css/main.css HTTP/1.1
Host: zero.webappsecurity.com User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0 Pragma: no-cache Cache-Control: no-cache Referer: http://zero.webappsecurity.com |
| Request Body - size: 0 bytes. |
|
| Response Header - size: 347 bytes. |
HTTP/1.1 200 OK
Date: Mon, 14 Mar 2022 07:13:42 GMT Server: Apache-Coyote/1.1 Access-Control-Allow-Origin: * Accept-Ranges: bytes ETag: W/"15037-1360116138000" Last-Modified: Wed, 06 Feb 2013 02:02:18 GMT Cache-Control: max-age=2678400 Expires: Thu, 14 Apr 2022 07:13:42 GMT Content-Type: text/css;charset=UTF-8 Content-Length: 15037 |
| Response Body - size: 15,037 bytes. |
.btn-info {
background-color: #0098D8 } /**************************************** Menu top ***************************************/ .top-menu divider-vertical { height: 57px; } .top-menu .navbar-search { margin-top: 14px; } .top-menu .label { margin-top: 14px; } .top-menu .nav > li > a { padding: 18px 10px; } .dropdown a.btn { color: #ffffff; } .dropdown .modal-footer { padding: 7px 15px; } .dropdown-menu .modal-body a { padding: 3px 0px; float: left; clear: none; } .dropdown-menu a.link-modal { padding: 3px 23px 3px 0; float: left; color: #4572a7; } .dropdown-menu a.link-modal:hover { color: #4572a7; text-decoration: none; } .navbar .bar-root { margin-top: 10px; } .navbar .bar-root .dropdown-menu a { color: #999; } .navbar .bar-root .dropdown-menu a:hover { background: #222; } .navbar .bar-root .dropdown-menu img { border: 1px solid #888; margin-right: 4px; } .navbar .bar-root .label { position: relative; top: -9px; } /*#####################################################################*/ body, html { height: 100%; } .wrapper { min-height: 100%; height: auto !important; margin: 0 auto -121px; } .push { height: 147px; } /*#####################################################################*/ div.item img { width: 940px; height: 401px; } /*#####################################################################*/ .content { padding: 40px 60px 40px 60px; min-height: 100%; } /*#####################################################################*/ .row.divider:last-child { margin-bottom: 40px; border: none; } .row-divider { border: none; margin: 10px 0 21px; border-bottom: 1px dotted #0098D8; } .content-divider { margin-bottom : 10px; margin-top : 10px; border: none; border-bottom: 1px solid #0098D8; -webkit-box-shadow: inset 0 16px 8px -20px rgba(0, 0, 0, 0.4); -moz-box-shadow: inset 0 15px 8px -20px rgba(0, 0, 0, 0.4); -webkit-mask-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0), black 20%, black 80%, rgba(0, 0, 0, 0) 100%); -moz-mask-image: -moz-linear-gradient(left, rgba(0, 0, 0, 0), black 20%, black 80%, rgba(0, 0, 0, 0) 100%); } /*#####################################################################*/ #nav { margin-bottom: .5em; } #nav > #pages-nav { padding: 0; margin: 0; border-top: 1px solid #A1A1A1; } #nav > #pages-nav > li { position: relative; top: -1px; float: left; padding: 0 40px 0 0; margin: 0; list-style: none; border-top: 1px solid #A1A1A1; } #nav > #pages-nav > li:last-child { padding-right: 0; } #nav > #pages-nav > li > a { position: relative; top: -1px; display: block; padding: 15px 5px 5px; color: #888; text-transform: uppercase; border-top: 1px solid transparent; cursor: pointer; } #nav > #pages-nav > li > a:hover, #nav > #pages-nav > li.dropdown.open > a { color: #0098D8; text-decoration: none; border-top-color: #0098D8; border-top-width: 1px; } #nav > #pages-nav > li.active a { padding-top: 12px; top: -2px; color: #0098D8; border-top-color: #0098D8; border-top-width: 4px; } #nav > #pages-nav > li > a > .caret { position: relative; top: -2px; margin-left: .5em; } #nav .dropdown-menu a:hover { background-color: #0098D8; } #nav .dropdown-menu > li > a { padding: 6px 12px; } #nav .dropdown-menu i { margin-right: .5em; font-size: 14px; } #nav .dropdown-menu::before { content: ''; display: inline-block; border-left: 7px solid transparent; border-right: 7px solid transparent; border-bottom: 7px solid #CCC; border-bottom-color: rgba(0, 0, 0, 0.2); position: absolute; top: -7px; left: 9px; } #nav .dropdown-menu::after { content: ''; display: inline-block; border-left: 6px solid transparent; border-right: 6px solid transparent; border-bottom: 6px solid white; position: absolute; top: -6px; left: 10px; } /*#####################################################################*/ #welcome { padding-left: 90px; text-align: center; } /*#####################################################################*/ i.icon, .slash, i.icon-middle { margin-right: 5px; color: #0098D8; font-size: 18px; line-height: 18px; } i.icon-middle { font-size: 20px; margin-right: 10px; line-height: 30px; } /**************************************** Footer ***************************************/ .footer { margin-top: 0; line-height: 12px; border-top: 1px solid #292929; } .footer-inner { padding: 15px 0; font-size: 12px; background: #111; color: #999; } .footer a { color: #999; } .footer a:hover { color: #FFF; text-decoration: none; } .extra { border-top: 1px solid #E5E5E5; background-color: whiteSmoke; } .extra-inner { padding: 20px 0; font-size: 11px; } .extra span { color: #666; cursor: pointer; } .extra h4 { margin-bottom: 1em; font-weight: 400; } .extra ul { padding: 0; margin: 0; } .extra li { margin-bottom: .6em; list-style: none; } /***********************************************************/ .hero-home { background: url('../img/online_banking_hero.jpg') no-repeat; color: #0082D8; position: relative; } .hero-home p { color: #0082D8; } .large-btn:hover, .large-btn:active, .large-btn.active { background-color: #5BB900; } .large-btn { font-size: 24px; padding: 12px 32px; font-weight: bold; margin-top: 15px; background: #65C31F; color: white; border-color: #57AF17; font-weight: bold; } .text-shadow { text-shadow: 1px 2px 5px black; } .btn.text-shadow { text-shadow: 2px 1px 1px black; } .feature-description { border-radius: 15px; padding: 15px; position: relative; background: #383838; } .margin15 { margin-bottom: 15px } .margin7top { margin-top: 7px } .margin20top { margin-top: 20px } a.actions { padding: 4px 9px!important; border: 2px solid #A1A1A1; border-radius: 4px; font-size: 11px; line-height: 1; margin-left: 20px; text-transform: uppercase; margin-top: 10px } .accordion-heading { background-color: whiteSmoke; } .footer.fixed { position: fixed; bottom: 0; right: 0; left: 0; } .carousel-caption.custom { top: 0; width: 200px; background-color: rgba(0, 0, 0, 0.8) } .item > img { margin-left: 230px; } .carousel-control.custom.left,.carousel-control.custom.right { font-family: 'Helvetica Neue', Helvetica,Arial, sans-serif; background: white; border: none; color: #2F96B4; top: 50%; } .carousel-control.custom.left { left: -50px; } .carousel-control.custom.right { right: -50px; } .button-large { font-size: 20px; padding: 20px 50px 20px 50px; } .carousel-btn,.hero-btn { position: absolute; border-radius: 15px } .carousel-btn { bottom: 80px; left: 27px; } .hero-btn { right: 130px; top:35%; } .signin-controls input { padding: 8px 15px 8px 50px; background-color: #FDFDFD; width: 255px; display: block; margin: 0; box-shadow: inset 0 0 2px rgba(47, 150, 252, 0.8) } input.login { background: url(../img/user_login.png) no-repeat; } input.password { background: url(../img/password_login.png) no-repeat; } .account_summary th { color: #AFAFAF; } .account_summary tbody tr:last-of-type{ background-color: rgba(3, 152, 252, 0.1); } .account_summary .activities { text-decoration: underline; } span.headers, span.link { cursor: pointer; color: #333; } span.link { color: #08C; text-decoration: underline; } #account_summary .accordion-toggle { text-decoration: none; } .top_offset { padding-top: 70px; padding-bottom: 20px; } div.pictured { position: relative; } div.pictured i { position: absolute; top: 1px; left: 1px; font-size: 18px; background-color: #E5F2FE; padding-left: 13px; padding-right: 13px; box-shadow: inset 0 0 2px rgba(47, 150, 252, 0.8); border-top-left-radius: 2px; border-bottom-left-radius: 2px; padding-bottom: 7px; padding-top: 7px; color: #2F96FC; width: 16px; height: 22px; } div.pictured textarea { box-shadow: inset 0 0 2px rgba(47, 150, 252, 0.8); } hr.wide { margin-bottom: 30px; margin-top: 30px; } /* Sidenav for Docs -------------------------------------------------- */ .bs-docs-sidenav { width: 228px; margin: 30px 0 0; padding: 0; background-color: #fff; -webkit-border-radius: 6px; -moz-border-radius: 6px; border-radius: 6px; -webkit-box-shadow: 0 1px 4px rgba(0,0,0,.065); -moz-box-shadow: 0 1px 4px rgba(0,0,0,.065); box-shadow: 0 1px 4px rgba(0,0,0,.065); } .bs-docs-sidenav > li > a { display: block; *width: 190px; margin: 0 0 -1px; padding: 8px 14px; border: 1px solid #e5e5e5; } .bs-docs-sidenav > li:first-child > a { -webkit-border-radius: 6px 6px 0 0; -moz-border-radius: 6px 6px 0 0; border-radius: 6px 6px 0 0; } .bs-docs-sidenav > li:last-child > a { -webkit-border-radius: 0 0 6px 6px; -moz-border-radius: 0 0 6px 6px; border-radius: 0 0 6px 6px; } .bs-docs-sidenav > .active > a { position: relative; z-index: 2; padding: 9px 15px; border: 0; text-shadow: 0 1px 0 rgba(0,0,0,.15); -webkit-box-shadow: inset 1px 0 0 rgba(0,0,0,.1), inset -1px 0 0 rgba(0,0,0,.1); -moz-box-shadow: inset 1px 0 0 rgba(0,0,0,.1), inset -1px 0 0 rgba(0,0,0,.1); box-shadow: inset 1px 0 0 rgba(0,0,0,.1), inset -1px 0 0 rgba(0,0,0,.1); } /* Chevrons */ .bs-docs-sidenav .icon-chevron-right { float: right; margin-top: 2px; margin-right: -6px; opacity: .25; } .bs-docs-sidenav > li > a:hover { background-color: #f5f5f5; } .bs-docs-sidenav.affix { top: 90px; } .bs-docs-sidenav.affix-bottom { position: absolute; top: auto; bottom: 270px; } /* Responsive -------------------------------------------------- */ /* Desktop large ------------------------- */ @media (min-width: 1200px) { .bs-docs-container { max-width: 970px; } .bs-docs-sidenav { width: 258px; } } hr.gray-dotted { border-bottom: 1px dotted #D9D9D9; } .blog { padding-right: 30px; } .blog > div { padding-left: 10px; } .blog p.date { text-align: right; padding-right: 10px; } button.signin { margin-right: 5px; border-radius: 20px } button.signin > i { padding-right: 10px; } .accordion-inner form { margin-bottom: 0px; } .board { background: white; padding: 3px; box-shadow: rgba(0, 0, 0, 0.3) 0 1px 3px; margin-bottom: 25px; -webkit-border-top-right-radius: 4px; -webkit-border-bottom-right-radius: 4px; -webkit-border-bottom-left-radius: 4px; -webkit-border-top-left-radius: 4px; moz-border-radius-topright: 4px; -moz-border-radius-bottomright: 4px; -moz-border-radius-bottomleft: 4px; -moz-border-radius-topleft: 4px; border-radius: 4px 4px 4px 4px; -moz-background-clip: padding; -webkit-background-clip: padding-box; background-clip: padding-box; } .board-content { display: block; height: 100%; -webkit-border-top-right-radius: 3px; -webkit-border-bottom-right-radius: 3px; -webkit-border-bottom-left-radius: 3px; -webkit-border-top-left-radius: 3px; moz-border-radius-topright: 3px; -moz-border-radius-bottomright: 3px; -moz-border-radius-bottomleft: 3px; -moz-border-radius-topleft: 3px; border-radius: 3px 3px 3px 3px; -moz-background-clip: padding; -webkit-background-clip: padding-box; background-clip: padding-box; background: #F3F3F3; background: #F3F3F3; background: -webkit-gradient(linear, left top, left bottom, from(#FBFBFB), to(#F3F3F3)); background: -moz-linear-gradient(top, #FBFBFB, #F3F3F3); } h2.board-header { font-weight: normal; letter-spacing: -1px; padding: 5px 10px; margin: 0; text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.2); font-size: 24px; line-height: 36px; } .board .table { margin-bottom: 0; border-collapse: collapse; border-spacing: 0; } .board .table th, .board .table td { font-size: 12px; padding: 5px 20px; font-weight: bold; border-bottom: 1px solid #DEDEDE; } .board .table thead th { vertical-align: bottom; } .board .table td { border-bottom: 1px solid #DEDEDE; border-top: 1px solid white; padding: 5px 20px; text-shadow: 0px 1px 1px white; } .board-content .control-group { margin: 0px; padding-top: 10px; padding-bottom: 10px; } .board-content hr { margin: 0; } article form { margin-bottom: 0 } #nav > #pages-nav > li.active div { padding-top: 12px; top: -2px; color: #0098D8; border-top-color: #0098D8; border-top-width: 4px; text-decoration: none; } #nav > #pages-nav > li > div { position: relative; top: -1px; display: block; padding: 15px 5px 5px; color: #888; text-transform: uppercase; border-top: 1px solid transparent; cursor: pointer; text-decoration: none; } .number { margin-top: 6px; width: 40px; height: 40px; font-size: 28px; font-weight: 600; text-align: center; line-height: 40px; color: white; background: #08C; border: 3px solid white; box-shadow: 1px 1px 3px rgba(0, 0, 0, .4); border-radius: 40px; text-shadow: 1px 1px 2px rgba(0, 0, 0, .4); } ol.questions > li { padding-bottom: 12px; font-size: 15px } div.disclaimer { border: 1px dashed #0098D8; margin-top: 10px; padding: 10px; } @media (max-width:979px) { button.signin { margin-left: 15px; border-radius: 20px!important; } } @media (max-width: 260px) { .nav.float-right { float: left!important; } } @media (min-width: 261px) { .nav.float-right { float: right!important; } } |
| URL | http://zero.webappsecurity.com/resources/img/main_carousel_1.jpg |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | Access-Control-Allow-Origin: * |
| Request Header - size: 288 bytes. |
GET http://zero.webappsecurity.com/resources/img/main_carousel_1.jpg HTTP/1.1
Host: zero.webappsecurity.com User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0 Pragma: no-cache Cache-Control: no-cache Referer: http://zero.webappsecurity.com |
| Request Body - size: 0 bytes. |
|
| Response Header - size: 349 bytes. |
HTTP/1.1 200 OK
Date: Mon, 14 Mar 2022 07:13:43 GMT Server: Apache-Coyote/1.1 Access-Control-Allow-Origin: * Accept-Ranges: bytes ETag: W/"78506-1358497020000" Last-Modified: Fri, 18 Jan 2013 08:17:00 GMT Cache-Control: max-age=2678400 Expires: Thu, 14 Apr 2022 07:13:43 GMT Content-Type: image/jpeg;charset=UTF-8 Content-Length: 78506 |
| Response Body - size: 78,506 bytes. |
����JFIFHH���ExifMM*V^(1f2x�i��HHPaint.NET v3.5.102013:01:16 15:54:06������(HH��XICC_PROFILEHLinomntrRGB XYZ � 1acspMSFTIEC sRGB���-HP cprtP3desc�lwtpt�bkptrXYZgXYZ,bXYZ@dmndTpdmdd��vuedL�view�$lumi�meas$tech0rTRC<gTRC<bTRC<textCopyright (c) 1998 Hewlett-Packard CompanydescsRGB IEC61966-2.1sRGB IEC61966-2.1XYZ �Q�XYZ XYZ o�8��XYZ b����XYZ $����descIEC http://www.iec.chIEC http://www.iec.chdesc.IEC 61966-2.1 Default RGB colour space - sRGB.IEC 61966-2.1 Default RGB colour space - sRGBdesc,Reference Viewing Condition in IEC61966-2.1,Reference Viewing Condition in IEC61966-2.1view��_.���\�XYZ L VPW�meas�sig CRT curv
#(-27;@EJOTY^chmrw|������������������������� %+28>ELRY`gnu|����������������&/8AKT]gqz������������!-8COZfr~���������� -;HUcq~��������� +:IXgw��������'7HYj{�������+=Oat�������2FZn������� % : O d y � � � � � � ' = T j � � � � � �"9Qi������*C\u����� & @ Z t � � � � �.Id���� %A^z���� &Ca~����1Om����&Ed����#Cc����'Ij����4Vx���&Il����Ae����@e���� Ek���*Qw���;c���*R{���Gp���@j���>i��� A l � � �!!H!u!�!�!�"'"U"�"�"�# #8#f#�#�#�$$M$|$�$�% %8%h%�%�%�&'&W&�&�&�''I'z'�'�( (?(q(�(�))8)k)�)�**5*h*�*�++6+i+�+�,,9,n,�,�--A-v-�-�..L.�.�.�/$/Z/�/�/�050l0�0�11J1�1�1�2*2c2�2�3 3F33�3�4+4e4�4�55M5�5�5�676r6�6�7$7`7�7�88P8�8�99B99�9�:6:t:�:�;-;k;�;�<'<e<�<�="=a=�=�> >`>�>�?!?a?�?�@#@d@�@�A)AjA�A�B0BrB�B�C:C}C�DDGD�D�EEUE�E�F"FgF�F�G5G{G�HHKH�H�IIcI�I�J7J}J�KKSK�K�L*LrL�MMJM�M�N%NnN�OOIO�O�P'PqP�QQPQ�Q�R1R|R�SS_S�S�TBT�T�U(UuU�VV\V�V�WDW�W�X/X}X�YYiY�ZZVZ�Z�[E[�[�\5\�\�]']x]�^^l^�__a_�``W`�`�aOa�a�bIb�b�cCc�c�d@d�d�e=e�e�f=f�f�g=g�g�h?h�h�iCi�i�jHj�j�kOk�k�lWl�mm`m�nnkn�ooxo�p+p�p�q:q�q�rKr�ss]s�ttpt�u(u�u�v>v�v�wVw�xxnx�y*y�y�zFz�{{c{�|!|�|�}A}�~~b~�#��G��� �k�͂0����W�������G����r�ׇ;����i�Ή3�����d�ʋ0�����c�ʍ1�����f�Ώ6����n�֑?����z��M��� �����_�ɖ4��� �u���L���$�����h�՛B��������d�Ҟ@��������i�ءG���&����v��V�ǥ8��������n��R�ĩ7�������u��\�ЭD���-�������u��`�ֲK�³8���%�������y��h��Y�ѹJ�º;���.���!������ �����z���p���g���_���X���Q���K���F���Aǿ�=ȼ�:ɹ�8ʷ�6˶�5̵�5͵�6ζ�7ϸ�9к�<Ѿ�?���D���I���N���U���\���d���l���v��ۀ�܊�ݖ�ޢ�)߯�6��D���S���c���s���� ����2��F���[���p������(��@���X���r������4���P���m��������8���W���w����)���K���m����C ��C ����"�� ���}!1AQa"q2���#B��R��$3br� %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz��������������������������������������������������������������������������� ���w!1AQaq"2�B���� #3R�br� $4�%�&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz��������������������������������������������������������������������������?�@! ���Zi,��Lch�N�p{�PNp[�<�+�>�B?�1?��N+��F@�����c��Ɯ �\CHcW$�<�p �����$�>a�zR�X9=x‸|���3ҜC)����<GjS�ۜ��qh!J�>`I>�����SK������q��ߚv��G��R(��>��?���B�Ӱ l$��4�@y�($�=x�.�r� �Ѡ b08 ޔ�6�������8\6y4#a ��s�5�8PKB)�m���@#;O$��i� �2#�-І�z��z�R��ќ����҅S�H��Q��F���Jh �����Ü�f��#'<�zU0�7$�;s�p�8��Ф�@�ا ����@ � |�\R��8��rT} I'q>�����4HF:�Ҳ��=s�֑�(���N�0i�p"�lz|ݿ�T�p;����F1��-ר)Î1�~��b<�?o��:Hb/#��I��oNh�l�=�i�㞹�: �RF�}Xz�t��:�S��zt�d�+��q֩�FN0;�)AVǠ�"@��iO ��=�c����H�?x�<�Ib� m��2N#���ov������ .{f��{�������A���$�P�&s���sA�Q�GR3(�N�9���8��ʒ��R�H�s�R�u���.�`g�#�Q`BH��M�ހ���w��z�S�p�P�=F�3בJ9���ў0{�E<�x��S����h>�<P�'��� �!z�)�9� �q֫��Q�ǽZn��֫���*����r:~��21�O8�*u��Қ�K?T�)�A9�L���G_ZIRNFOAH:���X}OZV�tn}1H��I��Zv�' ��[��+��4��O,� �t�$.y �J����������S���`.v知7,=z�W@p� ��X0<�t>b@휊]�����$d�\u�Rw��NO�曼c9ڇ��C$��=��z�݆H�nS��Mg,�,z�z�B��q���ub�c�x�}� ��ɎA��u�1���*��8�<u�~���.6�℅�f� �8�^j9�Xӊ�tS-�:����J������ԅ�\� ��݅�G�j����$��lVE��g��Z�r�q�֚�P���j���_���~�R�v�ޕF]P������X���ӕX���9>��_S��} =듸�P��CҠ:��y���J�W�G\u���{S�PR>�=돋Q�-�j�j8��Ga�%; �����%��\rh7Y\���ڹ�}��|��OK��v�9�ީO�-� �pv�O�$W�N�u�(��ޔ�y� 0'?��K��p�:X5�<���r��O�k���Vp3�v�Zг�P�C����m����r:�'�ֶ,��~��\���������J�FI$��Zɐ���V�9�$c�}��b�9<�ƴ ��n;�ֶM2.^PX��c�O#��l�������=����{�N��&8�՛uFp��N2Ek�I�w���H�r0:Ri3E#N���SK��=j��I��\ҩ�܀A㿭dՍ�Lv7b�ߜ3Bp��/cM�w ��=�!�`�V'g!{b�1�r2Ojq ���1O��*�ri8 ��s�qϷjk� �q�s�L�99S�4rs�8�ϥ-�������CҐ}nj�?����b�<u�魍ŏ������s��1�Qڐa������t���!v�Ӝt�H�t�~����1�;�H�3�G�1�{�����>� �#��Mn8�'-�!���d�ڍ��#*;��C��/�Fs�=(Pq�3�^���9��n��lҡIJi��$�4�����77N��� qܓޓ\�y�⇰��n�x��9�r� !@FGB)A88$��B�8�c� r�R��G$})O�=8�� ��g�Jw|�r8� ���4��+DZ�O�@wd��&�3�4�K>�=idž?/^�ҋ��B��ւG�?��+����)�u���$sM�p�H��I�r2��gh�ԛ�Ie�J6�����3#y��Ҝ����~=i��˞Grx���b ��)ÚnpNq�aG�!䀁�9�����}=)s��nH���n�V �88����rz��RrF1��@��}OaN�8��,{�9�8)��ǭ/ dsD&J���My�����B�.@bZT���j��/���֣ld�'�z�h�y�#8�:��@�h�'��+��ߍLQG^�y��9��1I�a�n�\�4���:ZU��@�✤�I����$ �=8�oL6I⃟^��)q끞M?QvF:���c���RP��Ӟ���OnƤ!A'�/]�#ʢ���'=�7t�2?<�*\�U���w����A���Wg�n�F~^�4�v0H#����r���r��J[�A����U|��RJkL�Ϲ�u��\��#�+�c����R2����<����j}����[9#v4��q��#�Us�pzdҬ�$u���� �a����$c'#��Y�pc�EX�� 21O�.串�i�N��?�z�_r���`Ա7<~4�QXp�e���9��Ո�N���Ӝ����S��e:1'(G�Ud����[�1�_�S��G�J���i!?)�#�{Pzᶞ:Ջ�0��9\pz�'���;U\v����q�9=�iT���#4�s�i�����}�K ���Z{�9�x�8,H횧��46x��:f��s�ǿz\��};�Ԁj��?�)8�o����I�qHa��"�����ps�c� ����g�I�� v8RyFO���)41�R��:h�$(\v��cr�j!t����sYsY�Cn@c��M]�;A����k��r����mPGL}*ԯ����%wm�1���g�O�Sk�����ڡ��R?��櫙6G�6��OJ�5K�Vtbx� ���x$�+����fÓ���\�diʺ���v�0x�`�:��F���j-j�pb��\��z��{��)&�:f����O�N�CY7:�%�y�לV%��6T9�3ҳn��q�>�!ݝ���<��2i �w��\�H�ZL��7�SqV���^�`c*=^��fq��N{�5��O e�v��Zذr�9���՜���3�#=;T���p��7OB~� µ,!ڤ����r���n�������*\���#��1Z��>���#�W��\A�?J��r�7͓���ZW�s��{w�t$�$��#��<q�ߠ��@��i��y�;Mt:f�0� �3���#MU�s�5�eⅆA��}8��6�"Qv=�O��1�Z��� ���:��9���7#>j�ӼihG�F� [�����=cD��Fя¸k/��0�u��VFO���ҴU������5� I���z�+�:�g�s��➗��`=*��z���'�=q֠��C)�lUv��P=*A8` b =0hn�,���s����<� �X�g��M �s��R�4�x��G�qN�9�G�!h7N}��J��?�R��1���P�#�a6O��8�R���v����@��� �X�'��H�#�J@ f`A�)�v�m9��ñ!H<�SX��S�ZB�.z��HGF=� 2�t�)�y<dz�'�����G�1�s�����<p8���A �#�8�n�/# 暤6�ӚZH��IR>���1�z{R���:�[C���7qp��<m4tA �C��0=i�rs��F���})T.:Κ~`}OO�8c'�*S�2�r:z�/���\�FpO~�~P8��Zjf8� �L9�<����ѻ�)�X�[�=F� �h' �H ��N$m��"�����X`��<��z88�on��r�H��4�*��g��8�Q��,y����O=}iۈ �A�����r���ZO��n��.тI�>��A`O���J\�`�4['�%���9�H98#�>�(��rI��9�x���N���ߡ�I�1���F =3�;�1�7 A���lT������y���R���(N;�����A��=1֗��O�52��?�<��t���Ln2�й���Ɵ�@������s�C*�$w��=3��sۮE6.��^���c��sMl!�e�����zVv��w����đ�@�w#�1��Q��(2q��������UFH=��O'ˀ@Ǡ�Ck��s������3ޠi��z~���8�$�*�D�(np~n��/��ǎ~��p'��D�(�du�u Q,�pq���4����G`j��nݸ����#78�Y:�娲y���ǧ�?ˀ:s�Z ��n�P�J�s1l���uIiW���L�>�?JF��2����m�\�@ �Ԃ+RM�Ѐ;�m�7�"�B�!}F+f*�4�EӶx5͜�9�$tǥm!&��8� |���L��s��8��f�O��n*�п�Tc#ҳuj�Z�i����I��� 9�^!��q9�i�e�W�}*f��\�dq�ږ;�V*��T<�g�H�sMVSb��H'�z֕��L���$�+g�Z6.p��\k܇L��^�1�5r�'�j³�rW�Z6gp�O��l�" $�~3������j��R7x�3�����'�5���RT5$�A3�f�\�6��4�0���N8�M�EْA9��T��8�����ppED�Crx�r�@���C8S��5.G(��� ��J������R���{��3�2ke+�Z>H���E�c�zps���&A8�q�~������P��u�?x��vy����r <�jZ��u ;���yu�F}�X�e�{�W=����F:b���RWu|�gc�qUS@9n=z�\���a�[�ֱ.u�V�ϡ��GU�A�X�;=O$|�ȭ�WvFH�Ҽ��Y��I_z贽P˸j�U��Gp���r뚂k���l�1'�b�8$dq��n��d>[��<v�C5{X�#�!�-q^#բ�~|Vf��0$>���rڞ��6<�`�=kI�CH���u s��:sڹ��%���g��w�N�$<�z������ta�9�Z&�#�O. ����&��c�G�z��]���*#3�9z�H�#��.vY�O�:0GJ�\���˭6�D��Tg��Y��!�)����9��p�9[R:�23��J��6H�=�Ixfe,���~ubѲ����T��;�o�cH�� ּD+`�\���@F�W�I�E�ʲ�І����Ε�U����y�CqӯJ�K�@�\�����s�L�[`l�y��/���=O��g��*r�<՛.��"PN};�U95�a����"�[�ӹo(na�������n���As�[��Y�$zVu��m���y9�R���}����'i�=ET�P��n]H� �^�=�������W����?���Y3PrA5�xs�I) r#�:f�=<��;����]�Ɇ��A��M�D:q�z����įᗞ�z�Wb�9��J�=,�Y�����2V��$l��.��\�tBVv;K]O��ןzճ�V!��au�b3��3��5��ީ�H�#�\g��*�a�����MY�q�'���K[�@���z�Q�nq���T�-#Y~���+~�9'��E�&3��J~�T�������`�m�چ�ۏ9�n0�~��q�с��N�'?@)�~l��� 1�0bs��Z^CCH����R�w-�'4r1Ȥ~sӧ^���Wzp9��H��Oa�J��8�!<g�꾔i�����i��8��� ��\�i?7aޒ�08��) z�oj:� ����ZN�`bN3�AH�끞��=�\ӆ��7~i0Þzf�5P�jq8B�4�[��lQmCr�y �>�ԣ"NXr8��bI�ܑ��Zr�pq�դ@2�pO�0)�9�c�10T�;�{w��+��~�/ �I#�_�@q�Fi�>Ps���R��N��@1C3�p��7)���ѷ�I�q���?��� �FrA��(t�B�b��ɥQ����� đ�qߧz\���S_s73�Әd��;`�^~�i�F3��J��1���ƀ�c�f�+�����8\��(e��qO�<�F^��c8�}:Q���OZQ�)_���0 �)��� �r3J��iF��)�z�8��r�s�L.�-����9ɤ$��s�>�6�bL�c�R���#���S0��#�=1B.�s�ƞ��BE���qۊq㩦�`.��Mvڤg��`$`��k�#��ب���=�#ˀ�'�z�Jð�|�=}Gj�wn���R�c���;㩧���� ��A�Us�����������U� �u���;w6y'�`+ U��N��{T.�v�Ǟj���N8� KH�'��v�%P��V���B2�d��[:b�6��"��m��eTt����@*3یQ�D�c"=&20���J��(T2����o�`�zV��@ v�2uˮ���⤏Oh�r����j)-�$�hpA����;� Ւ���ҵ�>��\S��r�s�ڧ�9��]i�[G务�!S��8��[sj���To�B�`篭e(#X�9 �G$�q֡6�I%>��tm�QԚ��%�yȬyQ��rKq��W9�U|�e �pO_A[s@P�O�:~5D�W� fᦃL�d�U���>��o�Q���O�Q�3�=}j�� �Oֲ��ZW6�ۨYD�pA���>��g��H ^;��VX�U��~F���C�98�ZF�V��6�ծѓ����'�[x��Es�\ʄ-�inu ��A�bj���N�������>+��zs����j�>c9S랕f;� �9Q�}*c�w�n����� �)��+�Ny��;�5��~fa�8�5?��w���j�Z�R�[i��H9���@�*pN�`)���I��T2p��X0/�iS��3֫���@�V{��z�Jw�5mi��$t�.����EYR�H�S�!�q��x�A�]Q��p �ָ�N� �{�W�1�á'��|JH����V]M��;ķ�+n�k�7�$�|��@�5����\��_3r��H�ef��w: >�#]��y��RI�\+9 ���L.03�1��+ �B�GN=)-:����eʜp{�u�����02:ֳ�i��c�2*��Y��\�g'��i���\�X_ݩ�G�:)����L��qҺ�:�;����H��.x���Rw�ᴋfE,~W2:~u�m �0����i�4XhrA�#�1���a�'��7t �S�Ԓ<�[V��U�f;���s[��~�V���[��@Rب��!=:V���rrIɩk����9t%����#b2�z��*��x�W��s��G+��ߊ�ul�Q*�ȩq9k�!FR8�MP��p������B�i#��x�W���8愣'b�Ι�u��ꎥr�w3v��k���@~�q'�Bh�S��z�5j�k}M;��/�\�ֳo��Ơ�As�9��I[���GJ�F�e;���pi�[M+�0X�ƺ=;C�t��O����QC�Y8��{T��7A��H�U9��Ҽ:c s���Y��v3��oF5���1eF8<�^Rv!���xp0�=+V���J�.v�Oм5�5���M.�~�c�济���ϡ�x9cP����=m�`S��W��(��Q�{W#�F�:�ڳ�O�R�.c��*U%��ҭi��I0���\,[���VZ�F�K�`��;i������r8�miWa��O=~��:^�$�j� ��C� P���Ш�fl��z ��b��ԓWbq��G<��t۰ʿ0q�k[�G�I�:v������&�$��敉��8��T��BaX.9�^�'�9�$���C�=y�y�,���Y��c#�ooƢk�;RuP�j����8���RN1�:���z�I��k�c�O�In5�e#>��cJ0N++�rF;�Tm�bBK�����,k�A8��Lc�uzVO������=��^��a���Yl�f�57ez�w��Y��lu�5N�xlS�S��mw�=�D����0`���(��#=�$r�/l�:Ո��>S���j���G\����kr~W =*�٣`Fz�8��8�����1s"�<s���� ũ���8<��zRJ�8''"��!N7Oh�Xs��>_�K&2�ךNI۟��V�ăړn�#�q�˓�Z[�� ����$�jdm���<S�$��ҝ�+�8�t�c��M �$�sK��<�ҁs�qڜ3�ױ���3� �7sC%�#��:�ql��=x���nj�8�X��P�1�� �~���?�5����: y�I�zP����9b~��c�i����8�)$�}����qc��8��#0�y����c�=sN�e?.=�Z����T@[��=(R ^��;rǥ@A�o�J��3�?R0����e` ���Q�!��`ݏ�@�d���9#�#���8'�)Tg���S-!���Tѫ�'�ӭ�?�'�CV�2w��Nk L,D0.^��I;r?K�x�� j{x�������J%arI#Js�1P;�:V��=3�r)Y&㎆�1��gp8�F�RL�� j�^C��ӽDВ���R���<G]�#?Z���n�q��M��`��+f�E��A>��cds�ݗ6$s�jUq�O�Uن�֫^Α�}+}-����y�j32n���Eަc��|��:�x;�Y�j���Wi �;Z���1�����#�TRꀜ�${Vni��3j��3Ԩ�U9dV ǩ�w��2;����w5�����b�o$t�j�� ��t"��^s��Pel z��\I�'#�8�i$e�뎽*�D��A�5���M2�N;��$���ћ��C�:u�qx�[�㚃W�t,eM��z�'��c~�#Ҹ''{#��;k+ĕb� ���וZx��;�1|���4mad(��n��i95�\�R� ��j��"2����E�DT�q�梑ö�I�V����2� ]�b��X�9��(�ӵ�\�c֭��(,����@�#��pz�U��r�Ϻ�g!�x�j�m�+���M������'ץXI���8��;i�lքNpT��ס��s�״�##'���_��!}��[b���d�h;��Z���i���9���U�L��t�z��`d�nj+�\)'8�v�*��;�:�����H�p#���=�����#�1X����I!����8�}����4�W<s��9���+!-�B��Z��G����m�;��S�ML��4��j�oR��E��,�`��5WP��`C�ˎ}A�Co jE��s�To�?��'Npy5<����6�D�Ha�w��+�c��'��xoXi �=�Ӵ��e�ԏn�|���4tX$� ��rq]&�h2��{~�am2��;� t1�" ���h�]L�Z `��B��VN��O�[i{ֆ�8�H`3��¹�nu.�*��bH�!��c���M�4�Y� �,k��gQ)S&H�ɬͬ��i�1��l�;I���#��S�Ce}5�c����m�s��(^8'֝����u�g.~`?�X�]a-ٺv�svw�GȕH�hԵy]v�\���݁[\���'�ps��#Z���`�9����G|��NՏ�@ +eO͚��ݜM�O�?�=�5!,����� t�5���9p���R�X���r:��h�?2^��:u�c�x��趸���Q+�;�VjU"�����ksM���Sv��²Z�(�{�:�Ӑ���Fzҍ6��]���B����]n�kH���{�ô�>\`�'���5x� �C�We8#�l� M��l��Q�J<'?�UV�S��H�Oz�}w ��|��+f݈�P ��<���Z�Ƅ�;��\F#%��ץyg���t�m峀=+����I#����eǙ���珮�IrDg OZ���5�]�������������a�֢�)�k��BQH�/���<��ӟ�Ú�u�95�Z6�s�<M�c����ZNc����5�VJ.撚h�}#S��ٵԷ�<�\e�Sā��g5� � +�9��c����:���F�=)�|���zW?-�T&#���TV����ܑ��K�]Վ��{���f� �3+��ұooYb,��w�5�����G��d�,,tk��&��)��e�X�u�Yy�j�؝�"��hgX���>c����1�P��T�Ĭ<�}��Q]��'-�����z\i<گά�����=���~c�q��� }LF>�`���T���?�3��?i+ ����l?7�S��˂7s��߽y����A�;�4 q��`/�jY���m�0e��g�.�_J�{?��*�9�kgLח$����4C�=_O�^��l��h�=��|9�+>D�ד]U��DX�S[�Ů�mXy�d�a��@ ���H����z�qϮA랢��1U�Q�)��Q�<``�R@m鎸�9�;�>��LCI �7\�B��I�����.I��8�1�x$��v�\����3��pzr8�����l��L�t�;89'�2=)���pۥ�{���� a��3�R��`�{�K�Gz�r�H�(@8`)�s�4�ـ�(\�6�JP2{n����|�tR�\�c��h?|��#+��9��� ���.3����h�.��9��2h�}zd}�SOp21N�[�^ԤrGO�S2O>��` YN;�J8�q�:��֜���D̓���d�*�͓�u#�K9��y<�k������fˊ#�?��5n�c��Vr6��=�oi�� �<g5�)ݚX�m21��8�(��;y8�S;AL��=�n�z�rz�t@aL�r9�p,9����x�Ud��?�jn4�4c��{�#�[����f늣`��9���c���AU9��Ҝ�23���Tў�����X�9�(�(��sZ8{Ws�x��0�)�s�^���J�2zc=�e\Z�\�����3T�,G{"�2��u���)��u��BI�cY�Gr3g�No�j���Mp�Y�s�Wf�E� ǵ4r�q��Y�HQ�r:Vm�5H�`!���4*}}qW�{��:w譲6���S˨�e��3`w"�X�N�r=kz+M�ALm=���'�>N��T��C�c��̖��9�֕m���Wۯ��6�'h���*���1m��>�r�ωH��8�M���'�����H9=�9Lj���99���<���%L��$W��$��oq^��@�H��θ[f*O�H��2��~�e)YXᡷ.0 '��[�Pc'4��/�i�+K]��)<�����,d$�Ԏ l��H==}Nk"*��;��KN_߀���Qz؉msb��#�S��J� �W�tD����We1�* ��I���S��UC�0@��r�\�Nx9>��x���@�CQ;� zڰ�lˋ�z w2��>�֤.J�3�?�bY��>�����eFx��f�KF9628�m8��x��q��1�<��~�~�Qcw �bR��2�ή�Q�l��Y�#dq�+���'���?�ڴc�P2��8�� ��խs?e�����r�LqS�l��ߊǵ���sܠNx�^��I�1��-随m�.:�I�XBye��u�"�p@Q����[��Ϟ��k9<chee�H���4���l��o�Y$��qҲ�4�$����Z�?��yH�Y���om�?�����H��Ze�4��A(�x'=��8�Y7�:���$r8�Ao�Ms�x$��/���}��:)$�Q�{U�*�A16��S[��L��.�x���e2�Dr3��s����#�6���}�*?�9�qz��&�c�L-����9�s)�whe� �z`~5J��%F��$in�Ȼx=2+J���k#�kk�Z�mt*�~Rɨ����g9=k��EQhsU�鲫[ȼ���*$�~G �s��=��0ǑT�0��&�Q��l��;p�q���b�9�8��� y��%S�������v�F%�J���"���>���:�<Vuź���8�*Fh�� e_Y[�N%/���b�9�-K�Ǘל�)5 �_�9�9���HT��0A�:�h�B��@�p)�X.�7K�J2��`�H�]����H�w��Y��KL�0 iA1++�zJ��Z�Fh��b�<S�5QT �X�uML�6C�G_zͺ���O��Zr�z '��g����U}s��X��M� �&��_/���9��WWFbl�c������=f��JF�s�Է!����l��>���$Ɍ�:⢻�V�z&�w�y�Zʺ�������8��=j�#��#�q�ָh~!i���kkJ���V7 d�j��E���t_�(�(Q�;t���N�D�+�1�P�|]�^H�+ȉ>��>���0<��}�����vg6���T��vc�&�)e]����]�� �!q��9<�F�n\?*r����*��s>�sev�������v6��+ԯP� S�zs��?Y�31t�Ã^n'���oJ��g*�?�X�Ӝ��K�c��֔�$@ ���g�H�0T��+ϕ9Eꎕ$�-_(̬H#�1X�`�S���sQ�jo8' ��ԙ��X�J��w�W���� ���5[�Ls�7V*^�ϒG9�K5ˑ�bG\��}j�-��.K�*\�)�n���syw1 �z�6�!|��H�֛�� �{M�oa�mM���H$p9�*�v��\6s�u��m?RVa�/�ٱ�C��'=)I4=�O<d7��_d�e�=*�2۴d���j9%�I�x��P�[���xgڠ���m3LUB@ �i�H�+�kZ�X�nNq��JSvW)���\�r�PqZ ��0��]�ET�D��<�{SnfE����"�4�d'��kp $��0p:R��@'��J�U��8�ђv����}a�aS��ӷj~v�E^O�M�x���o$u���@�R ��>���s��@�W�Jhm�g<t���A��3M��ȥ��ǿzQ�rr<qK�XR�H��ZO�I ӾE�ŏRA�c�dz�S�ʐ7�&��3�{Ҩ�˔�qN#-��0)� �v����A�I��4&9��<{SI$���9�M_c���Mb������Zi�`�g?JOa�wd���<ԉ�C�:�*$Uc�Ҥ���*��L@��'�>��r}ǿ_�����Bz��r8'�v��)�:��c���# �©�EI��@^k:�b[���к�8��f���\d���ןC�бa'�_�;z�E�1�=z��4�L����X#UB8�k�l�#b�GJ��P���bb�z}*��w��n�լ��������Ҫ��x+>�匸��I�0$>�ֹeQ7cU �H�U��5�铒����Y��ܧ<���A��(���[S���Jz\뭟 ����) {v��+�H����5BCg�+���Q5�J���X�̨J�}*��7'$t�P�d�^ry�ۻ���R��I�� �W�Z��� �Iu�� eN��Qv4�KC��XdgwLV��H��z�l&Q���=i��]g!}��j.��}I .>qש�@+� k��r0�r:Uv����O~��F͢N3��5n(A�o qX�W�0H'=�Z����T]̤�b]C��I����(X�N8��sX���yd������g^�(���zλբ(Ap1�U}R'ÞA�=���z�-J�lu�$ڭИ�Sׯ8�[�̇���*�q�����V�fm�<ם6��Έ�f[Z(��'�T�[�J�s�k2$+��Y�,�w=��PՑ�ԥ�hn�=��I����Ay,aO# s�⪵ϗ��s��PN�%���]:t�n.�c��k���,0�6��^ǭt��(�_j��F���k����� ��9j;>$�n���aF #�Vr��f����;'�G���0���s�X�2��֬[9�A$:��d�_-٣��ۤ�.H���r�6Ռ��wQ@#<@�Es�6�$��g�i��g@�(�rWv�8��RI�^��-��W;��^��ҙ� .U��¯��C����8�:�kɥ��'#j��ڥڨv�$u���\����(H�X��ާ�M��ȍ��/�fa��L�[r�we�8�*Ar���u���ڲ�|�%Ȓ@Kuԥ���:��dr)�=j���"H�9��2�Yd_����NO�j������`b��q8\�֭��#��'��}�R�zWmu�l�z��0̀��;S�{ J�5�[\'��)s"q������}�M��A�J˰��#����uJlVOBm3^���4ș7J���mP� �B8q�^yr�%�� I�-/I�8����a��ɣ)�n���Z"�i�")*2�^k��Ios��=����<+!�O�!�{ה�F�6ws:�*���ⶋt�E�dYU���E:���1��t�q�@�Ι0��p���)��g$��{p��x����x�3�������v��`��Ҙ֎e�y�Wmt�q�)$~�IY�N�5渇�J����������d����m�(��Fx���B�pX��CVav֥�3���ԛ G�x��D˳,A����7�p�3�+99�/֯«Nԗ� �z�N4�����~ ��䈘���V嶹p�6g�#�v�)�F��l'$+\��<��uR�$��8���������R��t���$�'9��?�)@7sҮ����-�nrA��[�]��sr[��1����ƛI�^�zV�����@��� �G��6;)����*E����x��(@�zV���yev��9zͼ�d��X�zR{��<�P���!$t��A��P_�rFk�m<,�1��� $g����#�J�4��v��R}u��4 уF ~�k�<8����̠����G��X��FT��T�nZ����J�^K[��Z;t�գ�8����_Ƴo~!�Z���n�x� ���������r;0�_�j��$hNpGC�V��8��j�%����.�1��[�^U��$^%��`�BI� ^��^�Ą%I8�O��J���?ҦmO[�(r�BY�Vn�dXe�Rs�+�𦷭�b�x�]�&��W��2��J�2�(�b��_V�q!Vlc��s ���]��b&��22+��ų�s��Ƽ괜� �s cĘ�4�"F '��Z���}�N��d{��?±�5HøO'�1���}�>���]A0��Zroʶ�`��!��|�zr5�m~�R�׃֫���s�LԂ�Ɲ����sV=T���q�j_��y��ְ�)��qޘ�B�L�n�ܤ·�Q�1��`���W��oPT���u88�����~��S��hβ��Q�����=p8y�|��"�v���q�d a�t'�J"��JTz+7J-頛���`}��鞴�rWvx�Ԃ0���گZB�=O<W�J��ͱJ4� ���S%��p>��ͭ�d���ո�@�>�V/��0��p!�Rǥ�m�1��ޕ����z��ݙ����&��f 觜�z�R'o<�3�l���(ܤd�A�f� �2���Sƒ��\n�\V�W��T��wqϭ)b�����C��<c�)�G��~keB�-��P� O���SX��]���6Ӏ0���ȋ��s��t��`u��i|�v��bX�g0�m�c��z��'E%�3J�#E'F'�J�q6A\�q�]j>c��S;�=���E�ޣ�5�O�@�ڣ��u� m�<V��E���T��w�i�C9#?�=̈́� �E:��yN ���鋸s"� �i&6���8��}���I��i1�Ol�N��%U�9i�w^�67R7���1�є!W�q��Q�cr��W%L�Z��'g�ݼ��X_\�+r���:v�qҷ"�Ce�t�R���9=��J9{�!�U���/��:�U�����drF��s���=���aT�.Z�$r��e�oJ��r(���zV��st1��;qҜ��yy(CcV-l�c�f$/��w�^�7X�m;�q�����c$z��2���j����6g%��1Q#b�7/�8G�\�s�?J��|-e}EO��?oM��G#H[��q�"*�qS-�Y ݐ} iZZn@3���s��)ԍ�%� t��m��ʩ�v���>���j������WM83���E�A,�ױ�zcz��#��M����s].���_n�c���E\�����_T@�����]���)����Vr$r=k��Rz�e����]�ʏJ���� KzV�!�f"�݊ӟC������Xr�{���}���-�|Մ�H����Y�n��PNTu�?J��E 㜏�j����TW��Gr0z�����O����Θ��{�ekwQ���s�k9�i��6ѡ�=�%�聀#=�����l�Ǧϵd���k�=+ϖ��M�^�mį�5�.��@y�qQ�$�/�p ���>�1pź��k���"n���O<Tr���pO����9�!���c5���/�����j���9�b�������,ڀx��8���Q�-�H�r��x?N���eݫI �G�f�!ę#�Z�u\)��PΈQ� �Vr�����.v�#�X�w"0F} ^hA�z��֎�%��N��Sz"'Q#�L�q����W-�V8���]妌�D7|�q��m12m�;+�a�`��<�S�#Xy608�s�+�Q��+�|F��ۊ���u(���7OZ�ٴ�Z���k`�8$�Ҵқf�]F���� @��*��&g+�9���q:�5��,�=J���*���+���i<�r��>��/F,C�,{��a�K։��3)Q�N+B{��s]?�a��Es>+Ԡ����=��L�"�V����YNN@�)��<�d'>ݫ����j�<18�Xr���D��=p���'$��)\�VH��������8j�kkv�,&أ��Gֻ��M�]-�Ĭ ������0�Z�K�e��P+��I-l�9�%���i�l�$�ѱ�9��R���H~˽�8=������qn4���S�CZ�� l�ی�e줤��MjS�hnl4=F�� yĕ��^_��;{)�n���:�J�[� -�NE ��d�a_*�מ-���cM}�n7�HG*�]*��V�5�p��R�7>9���f%�� �h�%h��p+��gm6J���2O8�����En ��8>���ӊW�� ��tb���>a@��V,4ԍ���GN9�n�T�ہ��V@���$Z��71�d-e��~uN�L���x?�L����w���ސjV�f7/�zMDf��n-��G((�`+�|-�ir�`I�8���'��&�T6�s��U��U~`�m��ZӫЙE���x� �+6��9�A�;���K��x=G�P�5�Q<�4��FZ���.����s�vC�Z�׆�Ց]T+`A]�z$"�r�ch$��ו���S�,�\]^��]R<C8[�Q��t�(l�����'�"�?yi�:���.���C��$�\�s�#�ҕ������|�Z��ּ=e��ӵgE�F����v��{�.[7��ܑK�#��T���Fd�t k�מ�ol�H99��Ceuu<��l6I�W<+��KZ�x`p�8,F҅�BrKvq�f]rܞEe���31 zװ�?5k[r�@��95�>#��ү���?(�{�uiN�Ju#-��Hm�B�h汼M{juX��_��i,sO����m�HW{�p�Ԛ����¯�Y�{$z/��m�;Lm�=1IQ��ib����ϵ` z�|=��3�U��+�ԣ����"WS�� ��W����:xgD��u� �������13���Qѹ��V>:�d�Pj�I2Hq\��yy}pg���u��M�=�{��{���x���ֲu�s�Ӯp:�/���|'���y0��k����ZHT�eQ�z��%�4�w#9��#9��W�l`pz���:�6�fq� -�̥x��w�x׳:��R�դ%T�S,4Y\d� q���S�h7��%s����[)����$(��{�O�Y �r�::�����Vu/��J��] ���� �R�O�m�P�2s��e*���y���J��n1Q��c;�������v��z��Y�Wr�N����)wf&��4`�sڨZ�I�[�L֦���A���f�.�.�,q�錢���Bk?�%88��z�A@2,2j�ݐ�#?(�Ȭ���Iv�� �IlTWs�O0+��w*Ŭ�c����zù�+.��{��,/@m���}�O�c>C��~��<���R���s0j�*����i�����Ұx��eL�&�A*��G��>_߽q���-�!���y�-�e8�Vr�0P�;�.���u�S��k����B��D�"��*��֧�{���U��R1��&�G8 �W�i�"��, >�֜:ޢ�p��~�����t��]�hN��⡒�p8�?��/��3��1ҳS����84}c���=<�^wx棷�C'\�S^w� �\�<��+�K�p# ���g4�Zrv�8(�zť�f��V���'>��x6=KPU�x�Hޠ��lm�?��:⽜>�Ev�*��aa���~Էq��c��Iw�E�E�k(��΅͌Far�⽪8A{ۜs�I����Y��< ���`o��Vmm�uM:[�X�H�j��]���έ4�s�v*q�C�.�n�I@/Ӑ1V���m�a�nDڞ�gk���`�= G�x��R8b����h�ݙ�;�Zs�j����>�Su -a����,~oQ\֣�k�*�[�'OLV>���va��v��'�p��d���V��X�g��5�id&�k(�"��R�^�m0iئG`b�K�fI2��@������S���Ӗ�!�0:��ޝ5�`dz� s^�Ʃutw]8sֵ���#�ViO\� �^�{6{���T2o�o��)҆�Y�,���^1�>�ki+�u<rV��/�A$M��N~ojn����3�����}��V��l���6t\�f�}_���V�� I�o�x�SeO0����5���X���=2}1�,��9�W�]�M��v�I�=Ѽtg�I.��C��v'�m�.w�a� ��J2�E��6�E�0�c!O5J+�m��:���]}�����dV��Q�e�zU�����d��4(U�d�E�7�A>��00�}kϮt�Fȉ�o����x,�(�R����5��ui*�H�T�2�_je��7����v5�6ӆ�#�U���ى�2K���g�,��v��k����c��Ză*r@���j��=zQ�M�;b�6�ˎ��v�"�g�=*K�1��s�Qj���L���O�.P��M�1�s\�x����W��Z�q�WwP3ɮ?Z�3�8��rԚH�cF]Tc>��_j��5#(����eڇy>g��3���?LY�̼���2��t\�pF3�Ҥ:m�S�&�+]"T������0�� 2�#���$��s�9t��[j��+R�ES��>����#�ҵ��Å���1["���2�Ubg$����{��0W�ch�Q� ��Ҷ$X�3c'��o�e�q�D���SB��QG�N+��ڸ#�H�,LM;�#�<RTbޣsf�qX|�@��W�<7�ڈ|�W]r�6R�`w�H7Ĺ&���ֱ<���~x�b�ÞÊ��f:}�[�!GBz�Y*�"�'=ꎻ��%��?�G�F\�N��d"��h�(�j��^==��ےG�e[�\�,�� �kZ)�M1�Ȩ��4��M=��w<�s��A�6Q{b��ڣ�|�UI�}5ם�bs�9�����Faq"������ 3u5�ujF1(Gip���iG<���)��L�Y>V\�f�u���ebx�Aǽy��_^M��嵴�;�L�һ�Qq����ksJ�C�𦞓�]\���?�m��i�Q\)PI$�����C�ӃcO�J��������x$���?+8�ʾ¸�-9b���'b�<I&�t�v���9��8�t>�J�Eo��ifc�Fz-t� �+����U_����ףiΉe�+�c�ޝ�=LjUiZ&���uH��B�M���mm�gE+9�^�]��͔�3�KW-�_���Mq�i6�'�I�L��F�П_jג��V��:�r{"���W������i�#Qֶ$��l���K�n�*�QW|aj<1��ڣ-�ޡ)���bx��9�W��+�Ul�g���b�@���v?Z!M)8NV��Jr�R��Lkm;�7���?p�������V6ڜ:�ŝƒ���ɑ�a��@����!1E���Ks'u$��,�J��{���� �]�C[�H��?����U(B2��� J�G������/iѯ��:�D��$ؒ�摻���ާ�|M�^�mB�+�%����#�sd�'�Vu��'���2]j�O������p1�<j�[�i��Nw7�W��e���Z�]<��x�X�p;��zб�#��n澐����f!�p=+��!�IWi!�k���m�v�l%f*1��4�Nh��)F�>�����<y�l�x�]���TV��#���8��4]f��E"C�^k�Ү�Q�#�\��:Ȏ��C,Ӻ�''��f�K`��8�b��8���5��t�ʏy=��d��Y��5�3gb��{��j���8�Z��<1{�ތBQr8#�zN��4� ʄ�=�kh)nK�g:�]�:� �u�Wg��A���Kɜ@\C��h�vH�d�1�h�*�!��J�nfʅ�"�x�+��W�ڱ���j�@���:�ܲF eDQ�bz}i�� K��-�� 9��H؆w۷#�5�}�$���+?<J��&��/0�mׯ-�)9� :k�Z����B��UojD��a}}�H�V=+?�z\?�m�'���P�����,���ŤFV1�`1�Z�M�y��C��/�m4k�,vJ��"����a�k7W�&���n(~����uq)yS�?���kJ���D����D1���)+3��6x�v��xH����M/U�ZM'������E|����:u�@��[�y\�"��&Uc���=�^�%��F,���:<2�����t/���s�<��#¿t�x���X���d>r����A�hҔ۷CwQEjy�džo.4Ė������Mc\�Vk� �Q⾎�g�|[�o�%���$��!J�Ӛ��~#i��g�<M����kF�q��XX�������ϑUX�<x$csb��K{���M�����Z���]�&��ѧ��d�=��I�j�u�+0������xǩ�{药kw�<���9/ݠ�X�h~)�T�..�_!�~u�|I�V��=JK��ٹ���v���c�7�g ]���XV�0�=K��9j{���E �4<�:�zVZH���y�?B֚E��'k��/�[tss�5���86u��ǸxN���h��{[��b(��<��*����@V��x{֣�W����H��7{\V�5�^Y����TrMrc �J�j�g$��+A�����0>����QF5�����MTm&y�s]]��d��}��1��8�%R�cL�UXoA�1늒x��MŰO"�o�U��ְ��K��b�����ޢ�:��H����eI�����rt��]����D��sӎ��md�У���[|(�����g��\��c�f����Q�= z:������j�4;6]�t�7Fr���p^��I��=���tl�<�n�Lv�h��J���d��px�赸�����/<�� ��V���\�� t&�5%�=zu���g�ST�Ps�C��*A8�lU�M�:�8���FP[1U�B�䊩Q� �<��Lx��c8�쬂��N}�Vц/7�G��(mcq�oOJQ��S��q7�{�O������;�6��@Ğ1]ư#1��4��5���I8K���#8#�^�)��w�sT�ƚ<��D�..6��#sm�^������f%���a�ڻOO����sB�Fde��덱�5��� ��S�����A_K���am}Y�T�β:�CHт�4�\���5X�j�����xcq��1N��}�P[�u�Y��gs�����o8h�o�����>��y7W ~�P��'8�_����E`4���.�t�'`�K}k�Ԯ$��6��2R)I��{�Z����1 X��ޕ��\jj��S�ʵm�+�6ܺ�8����~U�y�0¬P�9��Ф����"Gf����Ny!���ra�SW,�e���$�R�r(�N�u-�_"f5l����Y���]�+�{� �����rѶ�ʰ�J�+�Q�B�Qx�D�r�����u֙���E%����!�&K�H��"D���Ҩ�zd7���ݎA"�+�^�>���Di:(^��5�z>�wm}x|�;d#�j��i�Te{�.�R� �V���m��ԕ=N;�T}յ���a���x�Q7`Vr����E\z��u� HU~p7�T?.����2I����+B�>�Y���#h'�����fВ �P!*3�p+8sI�[�Q����l�H�L�݂q�5�ki c���k|P���aԣS�\�:�Y~u���>F1�5�S�+�ЂX��G�zTj3Cr}���1ZwVP�%��Տ��p2����T�.�Z�2��S�u�9ف+���oܕ�m�Fܓ��Ou��U�s�����P�ܡc!�:hU%S��_�֗�)�Dvn\��U�������c�׆��-T���[�u��d�5{_��q�XYl8���X�5fe:n:��x�W�6����6�9�[¾"���.�%RH��+#V�����Ioz�����J��(�� CᗎŕڻYLx� �q�������۞ͫN��� ᵽf���$Sҷ<a#���0�%Pp�z�v�'�r�;��}+��Eғ]_ �8����Tw�1<pj��/���`s\���Fʩ�>�*[ˆ�>0+��i����q�He�� ⣻R~e��"�%X"fw\�M����n�Da��X$�J�G�o �� �pqt���F�q[ZE�Ѕ�iב�n�Q�#ס * ����U��[��nj���0�VA'8���VRc����R��7Ev^��v��Il\�Ά����{�����[��O\�-�������}��v~����N+I&k$�4� $���� »�o@+&��V�5�2���۵6��K��(�5��'�fi-�I5�H���T�������ԡ�%���BҴ�O����ku����p�q�D(M��D�%�G���Yh�:��.�&���2eT���o��:<f8�!�d:��G�Q^��Y.e0�v�'̯c{T{XmMķ�d�j�&�5���t� .��l�1�[�W6���mnzs]n����Ӽ�x�G9�e�f����U���� ��3�į"�-,�7��F<=�x,��H�@�I����|E�[}~M;Wg��-��Rߠ�4o+69T���-�k�Cb��.�g�XW�5<��ѣA�L�������^��N��K)��G����fkz�ٴ����R���F��8Q��hu��_�*q����_�)��|Ҷ�NȜʠ����W�-$[���?+%��ݛ�� ���)��E�]#F�������5#�滿xj�N��M�������Hs�v�j�z��._ xz1����3��MS�c���j�9�E���>����n��t�X���C����[���.�X�v�@.}�JG�E�@~�j�)��8�c��i)�n.O��m��d�,�G�u�h�['�N�Wg%�zy�/N��V�ǫ\Oe4ҍ���G\�=? �3��V��^�������R�2QI�3ПnkX9����ԉrA{��ϳ�W�?���B�16B���[��-����m/&�������g��T��+�u8,�I�Yj6)0g�&��rdx�!o�X�!^���1��}�.��$��V�2�s��~[~%��xz�^�X���V��`�=�*�����ñ$�����Y.���h,.��m(��W���>��x������5y��0-�9Rz�G~ܚ�_�_u��d�akfO��cc����*^v駆m�I�γ�����kq�x�پG�����{g־[�N��7�4,�;����Zw��'���d!#p��r,v�6<��5��0QK�[��\��SVC&��a�6Cd1-ޢ��u'P8>�,ք]��v!T秭D�d�2�0���r<�Q�S���6�PmJѰf.��wZ˵�_,7PN8��*"dX�����1�Ù�N��/"H0I^�Wm�]�p鵏#<�?�� ���z �-�9 h�_�.>N^-M^�jz���.]dTe��[:����Ȓ=0�Î[�5�X�&�24Q�g'=q[�V��)��/200�9��5���C�?�_�c��i�\�h�'�g�֎�um��w|���?�q����>:^�c�j��&�^RVH�8z��o�� �n�4�(q,h�u��]npJɜ�3oTz�ݤ�u(�d9��z�͕���7��O�u�Ҽ�Y�W���&�im�a�����A� `���}B��Y2w<Ğy#�7Y����|mf>�k�����H�#�s�\�������]ۄg�~U�� ���i��$�T3��56�5��dҤLN�=@�a\����RIX���v�5���K,��H-��x�Mf�ė�N�<ħ X�Aiq+e�坠"��z��k�-��u�3��($��҇q�X����o�g�#WSu>�X�����5Z3��+?����V���%��a�S�[K-�rF��#<���>|W�uhmu�#�鏸�$[nLX��y$�끚�J��̇8G�皍���Q�"������X�Kwq��*�6F�_B�|5��oO�������Ce{o�y��UT��w�����?x^�����T|�YUs�A\�jU(Ξ����T*F{2��r���Q�9b��,�ev'�Mci�C6��݉�W��J�QNsӷ~��n��wY���Fm�/�[<�ViX�\��Vg��M� �=֟_����;B���7'�#��-t�N���l�v�8h��2y�Y�Ҵ�e�I�+�@�o����h�åZmj�-��]��[��KY��|d�E�{c*K����5?k�c ��|��>������b�C�G ����#�n1�'����w_H%r���PB��f<��4�Fޚ�F���~gO��ג����XYi%�ǫ��+ʼG��Ӷ$/#�[s���V|U�G0Qnv"�A\���<��ß�ִ�M�ޑ�(Ɗ�QZ�r�;~j�K��0q����.6%�#�k�I7�ׯG���"�nI5���ݮ��$W��>�'�Y�\�&��O�� >��k���88`ן�a]���%t�g�hУڇ\c�V��٤� ��"����)" ��rz�uX݂�ۘcoLW�N��&�=&�F�w���`�>�=�%㽖�Ώ!J�{�jȽ�~��\ﴩ#����A��Mέ��%`�/#�\�i�" ��08ɨ�#��)�� �, �r85r�×zO�"}@��~u9:�O�'�7Щ*Υ��s�[��PKv�}s]::�����h )�3ް��gЮC����p>a���>ga��=#J�P��_��+ڳ5?47e<��=s���ū�/dP��*z����u�ώ�˫�=��庂6�Ek:pQM3��fz�1H+��X�e�ej���v��ҹ-_ėA�@��=x�䢵!&�; B�%��q�@k�Q�2���pڦ�w#嘁�{�\�� Č���\Ӭ��i����m&œК}���c����\qN�;�M^��n\�,^��R�Gw���&�1�z�q�e�x�g��5.�*�'h�P-���� r��[�ȷ;MA�m�����W�w_��b&��z��5=a,,�����_o�J����q��]V�8��W��s_I�e�֕C��bR�<'� �=r�������6�cI�]�jR,�(�P�R{ךx�ƾ!������^�E���8i���h�3�Or�!?6J��^�9���+��y�=_���[�}OZω�e��A�+��'�+�t�"�I�e��ڵqoo� ����mV4���33l��E��Q�?zN��Ԕ�KB���J� #��3PG�C$�)C��s�T�YdFO$ǹ����jd��N�{;y�s�����3��V՚�N�9#5F�����w�Z<}��U�%Ӯ�'3�э����+���.�ɯ${���w��W>��6�f��6�iV<]��� ���&���Y�%�����,I� \��ox��Ǣi�����j�;����&�� =܍(<�%T���X{[�wR�4���o��)����9f<c�{�W?c�gY������,���8>��_�;�/ �:|�m��ߗ�jΛᐑ�mmɺ�8r:�j�U���$�.p��5[�/J�%w����b���q�~[ԙ��ϥv��< ��բ%~֪~�8$�j%����%�b�䁂}FhTuW�]*����M�I4��rX��G�"k����6~i=?����xr+��!i��HԺG!ۿ���U���Ɛm�In2���u4:r�|�2��Z[YY��Ƃ{�0Cr@�XCӮo�!���B�*�*濣�s��/n��ٱ�0~P�u�5�h�/t����z|���,��u��' T����� >s!�#�O�{E��][��]P����w���id-����q&Hc�W�M����-��������wN1QVJ���]D��G��}��1�("5n��ʱ��V ����G(%�q�ߏz��X��:]��4���� k�A��_�R�m�ֱ����@�rF��ukWI;}��T��_j����FԘ�ʧ�ڽH<�ּ�4�mč�.�[�/w�[x�I�,��pKI���Khu_ r#.�$@2Q���rJ�O�m{��"A�J�'�;�x<�w��O�:�QӓP�Jf3ܹ���}�kv��9̣�=���o��<�Ȩ��z�V���]_�kIn�]���C�r���v�*r����<�e2Z������1�S��i�^�������C�C���̨���5��h�X�齞ɞ�L?��%~��_�����Ϧ�I#���&ݾ������k�&��G��g9<��1^�Z�Kc�ܕS������7�� ŷ�7P�d�W��w�V�*Ik+F��{ ����t����0�)V^&S�GC�zW �T��>,kL��KrReFL�/\��f�|ƚ�����.�#�����ѫ����I�:��*����0Ea��1ּ���C���+��[K5�3)V'�|�RJ���%�?����"ߍ����o�i������種7�l|�^6�$�s[Z=���,[�� 3��UВR�&��=?Oif�����X���%��fp�09��']���2��z�����u<8���h�g_���=�mv�?9%���g��CP����ҫ�Q�<��F8=+��ci�Kis�r6��\u&�:"����}�H��<��5�-�p:��M+�1�zg��Diڪ�\@d�O#���)S�R��ѹ�[�k��!0�a�t����ZhGR����zc�k��5�5m<Z�ba*g�s��v�ƺ�4���Wj���5�B-�s����V:o�~&�/�eէ6�8�?���_����L�V7�-�l�,}��x,k"�c9^j�����Ӛ�U�J%�V����kW���n&3�~Q�ZRx+Q�� ުJAx�@n��qJg�j6�d��^�}�|6�ð����j1ۅ�!�F��$q�jt�:m���o����g{y��c�L��Q��z���_<�:�\jp5��Be����:��:͇�N�e�]���;' ?����x��߈-��֯��"�{����\��í��))i��u������Aw�i5���3�0����Lq^{u3>�>�5��=�bO����Vy�I�|�i�����7�~���e~�CXμ��}�Ŷ��o�t���E�x���uz��z%�-=�u�{�zW�iZ��[�u_0y���ijض�Q�+�m�k�ԼC������y�5o-��UN ��)|.���6��&�� �Co����=��R���������{"{K+kf|�̧5��ڶg�,��1Y,J�@��X��v�Z�> ��j�֕sq4���q�++�:͂x��@�\i�4(�Kj�{�-����u;���B�HTH�����*��ե�֝bn�O1.⺄�s���?�Z��5���t��m���g��u���ynJ��lq�4)�r���N��|�B��'��@�]B�t��l7�>���h���ɦk�i�S�<7�{W��ך���vrx\�J� �C���_���N7.�ZB|��QԥA��dz}�ޕ��ͩ��A�����&�N���v����b$}߽|zs^3�ω��d�8�i%�e�s��k�5�v��C��ܮr���Mj���U�Q����<�!�9�+5;#83�˿�\�ư�vfq;�U��6Ms���$��S� F�`��+�i�hҊ�9�kM�=�=Vt��g����{v�����>�WR�]�c���V��t�̓c�7A]��8���c�{D��u佷����)^ ~�%����.do��HT��֬�>�B!�_[^\i�"t��c�꤂?J��h߳����oj�:�Ϛ�Pӷ��Dlcߊ��5g�43�����_����u}N���O�G'��,["F�� c8�k���kt�s����t�_@�w��MOFkm3��[�K|R"�}��º�o���--�M�:e�k4wQȧ�s^mJ�*+F:.�����O_3��M��a[rg��Z�s�H,mp�0��g!��ڽ{�E����o����eޙ���{�YG�\釦�lm'�(�_>�%�Cd�/Դ�c�-'wX��̆VRX8zq]�Si�|0�&���$�asn�F�8��}���f�?��G�S����n?2'�֣�|�-��%��Z��r3�8<c���١���K�������A�i�{0H���$��*�[��u_�7����ſ��3(�6���l�rq������t�4H��6v��eH��0x$�2k�д�u� ��t�na�q�$��9��ݚO_��4q�����i^����}N���r\�8]���C�u��嵮�ykki%�ɑ�Qf��eG$�&�{�v����m-�����B-�x8�:����}Tҵx���]���PA*� -��v�S~��]��,5 �+y����߆����#��G�����sc�#��]w�_\�-����Е��$m ;?ƹk�E��Xn�x77!���}*[��%tR�R0����+`�}*ƒ��<��& 9xE<�@O=�ԑj��6r�#�ȓ=��d�^)�S��3�瓊Z��b��������1��P[ܴE��Ǧ~���&���UYo�o��iQ�ξK<����k �1�ǞX��|�E+���'�m��(���3�E�TjJ���ƨJzr���O�^?�M��y2=��@o4�-��h��a��ů�x�U��V���(�q���1�H<��5���/�Y$,�� Rk��Җ6��VB̫���-���0�OG��k��ť�Ms����X ���U�u���"����M�m�s��>������E-�͆<y���]^O<�͑����q�#�/"����jz��b�\�#~�K�e+��\���qw{��g����eqQߨf{�B��+6}@���$g%������m���V����#���1wbrnjV|w^dϾFڭ��n�+=NzU۸���3j, ���ҷ�q��J�m�脞E�,c*���b����e�Y��EP��L�:2��y�c?A\�<�ZG,ǹ�G�{�E����=_~��ג�Ld���c���T#99?JXz���zVIY'�����r�;@�y<U�:�@�{@�e��Kg��k:�R���Դ=G���ա��UD�@z���:����\�X��en1_2�n�#��Y2Q$˞�<��گ�|)wਓM�U�6�L,~tlt�^��Y� ´\o��ak)GSw�Α� �R��`�e\cw=A�����g�����j���V�J� ֛,���T�0�����cY�[��d�+�a�N��6:��f��O���?O�I��V��)����=k�<#�����K�"��;�q�WͰh�]G<ʱ*�����N��Q&����*�9�]R�����I=�Y�,�������@O���ڹ�x�mm��Q~�6Er�zƌ��2>r9Ϧk*�Ķ���lM�#����ݣXӖ�Mo<Ҩ\��<����*ӵ�V-�^��x�g"����6��b�8�����D� c�t����#����#�R��}��[�*y�3�]:��gl��v�Ĵ�\d�y5#vsFI4�䍱rGqVc����<�u�D�N�x@��W. ��ԒOJ:ǞZxm���c5�g���\dWT���y�����^�ST�%�l��M28��*0;⼷�������t3�w`%d<������>9��~0��^]|���W?��{�/�+D ���j$�zw�rT�c�{ױ��(������U�>Ǯxu|;������S����V<�����G�u��^;��t �4�l�S��h��������m�)t�����v��:��+��e��s��8�NBM�8��U�995B�����r��/kS��~G]�g��>ѭ��)#����B�T�`�� � �fn��T��F�[������F8�b�(э��T���#?�ZUޥqv��0?�����������u��5��ޛ$�[�8�&*�F"�K�`�zٲ�4��Պ\Fφ��A��W�>v�O��S������BY!r~y��Ҫ�7��s�X�!�0�N�ît�d�߭�i!%��ĭp�zg��5�m�ǩx�]�&��*�:$q/9$�q��L�)JϠ�0^��F*�$ǧ�@��3�K��+���u{H�x�ç@w��z��o�ې�/�=�z3�ȴ��D���Ԃ����i�1��e%�}a����v�M$�6���Z�z���w3�<��3�|�<H�nᶵ�[˻�0�r�s�H{WU���s�LQ�,Sr=��%�{�O�����|Os�K��X� ��Ƨn�=@8�o(��������;��铉���{��$����Q�J�+KK+���9V��ż�)O��5�%IoĈ�a�A�9����뺲�:l��"�K�P|�����8��:t����9��z�^�,uSJ��ݵ�"!�w������4Kk8�e�X�B�X���{SfҴ�{�[Gh�L���7�{�O$�͍��#�ǖ9�����JR�zo���)%c���y~!�jq��4�kUY�l1a�ޜ�M�=SH��S���6ܖ�#��*�ٻ�Fr�c=D����D�yg�#P�LD|�[pڦܳ�M�x�����wmc�;\��e��'�qgt�#��� Z�$����m$�S�9�� :�=��?�mB ,��y-f�y]�x뷽Vm"��1���;Y�w(a��Þ@��*�M���֖9{o�� ����֮c�4��]i�fՒ>�g��^� 3�>���ƞ�#ۀ���䋌3`����A�5��4�cc���>W1ܯ��_��-u��=6���s�}i�,�=�}iFxx�u������Y������5��5Uִu7����ݑ��A�J��I�4͗����q��%<ϥ.��u ⵃ��.��,�F"'����I��{�*[�U����s�P��Һc��}��>���1�{�O� 05-3K���^�چ�zŚ4�b��j�С��f�yp-Vk�&�����O»-/K6)s���Ӯ �2s����?M�� Q�Y�|�+��ڲx�nI��g�E�2�M�_�yn��Ht��6�����<qܻ�G8�}A�A�Q������ңC5с���7o�q�+�<I���X�ӧ�+m*�����/�^�<E�=T�Z6��Ms1t�g�{�4����v��:!NW\�.eZ�:M"�ь��ϰ�I[&6�r�I�����~����Q��HF�5�1<�۳��G�4�/P���F�tk�*e�*��Ϝ��gh�ҍh7d�*5�G]���]��Yn�s$���>��C�g[T�!��ܵ�b�o���8�k��Q�x�.����Paܑ��]�+���UdicfQ#a�Oa�㞵�a��7�qUW�o#�~ۍK���i�6�)�yʓ�=Ȭ?�~����f��y�ooo������~��|�_�-[V�6�i����;��~���'�4���^6�vI#�\B[���@��hލ����~'U7%98���~]������=�g'���V��SJ�3�$|��J�-s��f�f�5�oAe�ח����Y��kxЎp:�ֹ��h�6�+���9�8YG�i[� ��ֱ�t��o��2���-Ұ�����g�.�[��"Fڪs�]�6��m�F������J��G�iRF��l�.b���U��5-D�Z",�q��W=�cB�a��f��-��Q�k��b�g�>�c�]$���f�{��O�j�,ӎ���>�:]�\˫A4i��1�q���� {���^Q�r�/�?_z�R�Y�������D� ��9�s��py��f��\�O{�X��I�b)�s�c�z����ZM�1|���4]F��Iekq�s�ȅ�I�<��~�-�o.!������9߹��+Sg��Ϋl�,�-�����6����'���y�_^ej�\�Mb�cO��)��=FGs�B�t�-˖J�3����~�ݦ�ү��[�4$�����pdp��pO�Wm�뺤o�Xjj�? �J�ĭ��ǏS��~��̶Z<�X%����p�>s��Ѥn����T�1O�eÙ�y�ֳ\9�$�I��#��lP�;XI2������$EHb}��u�{���w��~J�K�(/���}��q�o���Ko<�C)�q.y��G��I(r���)9m�o�M�0����TZ�%Ub"@8'hϾ3]���C��|�����w� K���>�U�xG���-��ܖ�B��Q�'�C�*V�����^[� ��$�� �!�f8�X�r�L���1�����'����OZ]��UfH4����I=Z�|G�ξ�o%$�39n}�#d�����|7��d��?}��N�I��M�u��J�Ӣ���H�[g%N�3Ȯv�C�7�T��I?Z쵿�^ }�PE�� �?�Z|ˡ�\�M_�4~�A���X4 W±�2�.#��'_^ v~;��5��K�i�&�����'�|�x��:e��}B�!��@��nk���������1�_�1�k��:ա��۶ֲ�m��eR���Թ{߯ɻ~�~!�&i|I}m,���x}y�u �I0�m�'��j�����VG�;d#�+��� ���{��$sԳ]���5]�i��' K�_�c���H�ƋhK�<���Sӵy���P�2<�;'���k����2|�x�OZ�C�c#��>EF+�wg5L�KJq����.or VB���j��:��+=�ȇ8Rk2��I�B*�c�տ��!��d����{&$��<^3�}?2��y�O0���EX����������cm��FS���e^j�7Ǵ��;r�#*ؚ{���4/n�c�#�#�Ȼ��v=�늄��$���>����6xX�ƥoui��P=�K�(�3�ўzc��V!��C��n�td����Uf��y$G��Pq]&��^*m[��[�Y�qQ1' ��kJ�VR���#%sա^Jڞ��uR�R�*�%L��ii���2��oO��{aO�qZr�!�a����D���9� 3º��^1���ќ�����O��k��r����ϵC�<UL���7�|��4;�#e��s��V�t� nm�pq� r]����uF~����G�����]=��j^ �Ծ�w��t�g�*9�U�;;�r�N���hѓq�p��~ Kj3��5�����#��x��Q����l��f��H�l������79�$�'}���?�����j2ɂ���7x�������1ҕ&�cϖ)�9��r�az�<���Jm/q�8+�i�r���-��Q�9Lo�t�=���0��H��Ԋ�<2%s��N}*����DX����a|���Sׁ��j�8�Ҭ��;�_�-$V*k�k/\���G�Y�s���~�X�m��y�_{�����mU9�p}RQ��Ռ�c��k��e� $�2q�ͅ.�'dS�A�k��#�1�[�On>���kQJ����?�z�.մG-Z�ܩ�;x���y�\fG�8���t�8X<�G�#|��z������I,��w��f˦���doʽZTi��)��b%�xĻy�k��g B�7����{wuw1��i%f<��44n�2���� T�Q����_�&E�y��I���^F;�Tu��.�̅x8Ҟ�i�H>��m=:�.�3�����2DbǥX�fn6u���!8�S�1��{`VrN�D)�����ܺtR�G�:�]�x���Q*%�1#���^}�� � �~����ϴ4�ڼ<m7y��>� F.)B�Go��g��*忋ү�k�6�{T�'v9�ʪ�n�8�9��֔��v���j�j{�����]Y�����qq|�냀+*h.%q�I$$�z�W=�7�b����U�K(Dh��H�8b�+?B��O�ε��ߗ*��5��Y���Y'��]�X��p�����/�m�viT��WM*�r�\S����C�M V�^: ��A@a��w.�w�"����e�/�}Mz����-�A n%�V-���z�t<��p�_,W3>ȶ�H;O5ji�8�;�R�Lj�XTcӊ͖��,W��_5*rZ��U�+i�*�Y�ӡ�T/���?9��Ҟ'� -�g�P\�9�ڳjIX��w����$������bą���M$00�\���w&��Z�9�qjB������y��%iV1dԕ����i��G�;��ͧ۸TA��:w��ƻ� ~x{kE�Q8�]�A�w�\����r�^#��C���0��^��~�Z����}��o��j6ְ��"��=�澊�\����a5z����s�<���4���{œ}�rK�I� tg�c����-�`�d��6����_���A{��k�����Z 7ʘ?�}k饐�ۙ��/L�=y�����Q���sf��C%5kX�BZ�@ ����\���?�o�FB,�nO#�����agE�:x�����y��Z��7����i�Om����������ir�����~'�l�g�jwW��YI&8�q���5�[i5L�p+r�e��Nru�{�i��[��}������s�xE��fԯ/,�v�K{{�c�o�O&��]Ֆ��$ӻ����������� U��#��ݏ��$���������t.�`\�Od,8,88�V��^�Q4�M��a�73I>b+It�]7J�4KK{(G8 �܀0*jѕD�d����c��w��ڳ��:l�U䨟�F@@?�<�u��ͤ�o-����K���z���k�;m�Ք�E@�����)���'�j���I�D�X�~g���F�n����.У,�*m#$7�{�pmCG�O�yow$�8bᑏ˂>��1]�����_.�q�n��(�i ��yl�H"��+�����wS�>��;��rs��ҹ�Z�m�+��_�D56���C���A%��n�k6�Kt��ȡ]pC���4�kW(�.0���Pq���*��������f o������6�� ��ddw5ˈ̩+E��血���k��y��c@��Bc�s�А�˔`9Vۀ�Ұ��/�b� F<�3V�m����,���>Y�Ii�88GY�e1 ��,s�|��f��LHI,�I<�l�74�H��}�[���(.�1�w5�=W�e5J:#&�2�(��V�O�FR;P�8�sZ�}��6�=M6;�]��3�i�.k�)�\�T�z`{�V�s4bO1�rU:�ba�U9�Է��7#<�5%}H��z"�q�|��Z��d�%���۽BW]�ܑ�U��ʇ��M>d���F�ei��m���Z[~M��M�H��s�������i�;Ԫ�ԧE�ή���Ho�ݎ��F=qapw䎢�G�Q�֑��g:n����?�fh�d#�9�ڗ��˴ϔ�������t�L� ;���L@>��'M�Q��V��zZ]��Ē�a�k/�j�~&��2����2X�:}k��V\c��k�:+�˅#�:�O4�`�xTJm�G�ߴ'�G�?�WZl���d���'R~��t��5)���9�.���by'������߆�w���^&��=�x%��A�_��HG�wB��qb�S�#��Y���Rn2���u��|Ic�$�ڻ��7����b�A�q6ז�I����=�+����v�Z�'g��?zW��4�c�?�W����w%� !e˪����w�k�~��;)���A���R��wS�+��OI�^�]��rrG��>"xWP��͚ݻ��3�ZὌ��WI��ԝEO������ �mf��1\iL�G��HpRG#�5�i�x/S[e�״٣��4C�@�n���f�;�e���ң��xf��#!ᔑ���*p�M�N߉ڕ4U"~�x}cE�?���;��ġeC�5[�^+�.����"��R~��`4��H�����x�C�W��+YT�����k�����a�|�|UqtX�?hU|����I��9a5o��6����\�Z�x s���߶�J�Ԫ�0M�8��5�|Y��֯�l�;�ţC-h�Fd�';�r��=��?�������Ǥ�m�ndzc���Oڛ�6��?��)C���0���I��ע��Yp��)}��Q����J�Q%���2�n�2P{Wa6���S��+�Z���k\��G�zW�v���mu��SE��9�;`�� ���i/���ߛ{i�J$d(�9�O)�(��?��e��{�Kz_���>,�@�,t�/�䱆?i�D 8�'߭G�oä�q&��3�L[�`�Y��_'����튼+��Fa��5_���� a6��^���������cb���K��Ab������䏬O�mF�MmFY`X����K����YvW�v�r�Mi`�O4*�ξE��o�֘�~�� A�G������j��ԧ�7sLX�^Bs���=Y�eo����R���[�>�����X�L�j1MqԈ���W)q�$��lดG�Bp�=��������y�REwu�G������8�YjB�!{(_�{����\��������gb���(�uW���a���u����C�3��v?�9�S]�\�E�E~g-|ui���� qv�y$wn�c��5�wpz�ers���FF1^��J��)��=����;�݃ޓh�y�y� �\G�i��{���,�##�2h�w`9<u��.ݗ������z���ov���m>�!�}���C�*�����f���3T�G��U�%lμӍ켃%��4u�=;�;t&�G��n�R{s@�?� =�����A�4`�h� :Uc؏Ƃ6�0I�����$k�=�K�Z�HS����!��$t�4;y�'�O^8��x1�yQ��Oz�=���X����ו��S^�o ����?h�QXά�#�u:~���|�8&�����< �w���X)@;��x����=E�%[x�l��<��X��9��ƣ�k��1�[�sY�S�%zu�E�eh�e��W�<��j�k ��G�˿�E%��\B�H���}�������E; w3f�۴�\���q�H�.GrOJe��5ߝ���k���s� :�Sr��$�F�DU�:s���*���*�� �=����۸f�O5����:��v���%KS/L�ί ��T��j-b8F@Q�:c�U��@�]0;)=���Y6�>����K�����,6O�z�;���yQ�5+ġ����\�ͅ`02���S��k�-����Z>����F]����� F�9�B��2O��M��\f�/�[Z��nm�o^ա�h�1!�}�ǭrw2J]'�!��Ezw���gA��8���p�f�̖�I�;h�D���7���{U���:sDW��Å+�W<[".������Ӛ�4k���-u,�(�鷃���R��I�ʵO��LH���@��u����l�����?Ͻ{������u#o��Y����8��c[�}+��z��dD��䮏��� �l�;�ISo��+T��f�I���>լ]沄��Q�yg��f-?V����ٝ�!B�kц*�~8�y��tg�������)2 �*��?<_ᴒe�k�W$2&N+�5-6��v��'���#�GJ������1� ��ں�<~T�����*� ����9����x�'�z�A�MliZЅ����>��/Rs�(��I���xTVg]έ7�=7I�5�Pn㡧��(�q �F3^``�ӂ���aۻ���?�����h̅\�ڨj~=����<��k�17�� K*�g� R�p����i��읽�^ ��~���Ƶ>xn�Ş"K/5���ĝ�s�k���Z�c�a�m�����f���R�_@8Νi-M$̤��sU�e�k-@��N1���a����:�fX�a"��r�dק|U�Eҥ[�0��ׇ��;��]��A�yT9&ۘ�%����G�j�z�U�I>j�ߞ��W0֙���Ve�u�8;1���_5<\���=2��s��j�֣d����95��z��ya7\���i:���=Oz�۩l��em�ծ�n�*u5�������B �cF*q���@�J����?�g�����7um9��_)n �gw�5�`�t����p������I�]�Ho�g�ǿhm9?h)$�G�� S�s���,v�-�=;⻟�3[�=�N��RB[�k���4v}gI�z\S�H�d�� 3?�5�R|�n^��LM�����x�K�r˟/M�����e���r�C�#� ����(�ͽ���}cn�A���07}[��\�6�pw��9`W�:�v_Q{.��8�?l�r{�,d��4%�S4e����ҩ��jw�Լ��[�t̮��T�u�"m<m+M���W.�9l��8�]Nz��F 6_�$F���+���l�U&�Y�g�#���MbiC��y����O�����]��f�e�,p�jF�$u{�K��'����[Z��^��-���y��-.凙�|�(�CÃ�����G�� �L9%B�?��*��u�D�e�X����<��jpJ��,��z��?ʵ�b���_���'e�~�I��C(��y!�y0\9��Ѓ��ejϤ�Ti�#�݈F�����4�rivom�Z�;:�Ïñ�-ռS{���$�Pnj���+�Q�����ў�V����������Ė�}��!��B[�o����k�Ե۫��`G�ۀ�xcJ����yӝ�x��WI�xma f�o�;׃V�j����4h-5g/��DMw1bG�����5���P{�[Gɶ>]��f�P�%�v+���T*Q��:���;i�dC��z��ӿ����$0���U m��v�EIe��Q�$t5���#>X�w&��>Q&Lx튤51��l��5v�G���ӹ��lUI�t�S'$T�+͖#h�jU�B7�����,�c�HQ�4��ݰ��:g�O3/�%�r�ŋrz{TgTE?>3���y��$�8��F�A�3}�{��v�R����`�e��/�EV��r� �p:��Z&ѕ\�WhRq�9��_��7�Z�����������)�oJ�6��7�5g�I�f���ĕ��B�U��n��ٖ�v��N���i^yPc1�����Ɖ��U��+��kwÞ"�Y����ēG���:t�l��!p�J��)E���IA��t��;\�}{�E�kPM�p�����ޯ�����3t��W�Y�S ��n�1|G\W%�� /#ǔ#�MѼB�*�+�z���k������#'�H�Z����<C���&��Ht�zzW5g��h���u�v��EqPA�יx����lyBY��sԧ*R�6:�R5�g�S�>�<Kb���.NOW��^��|[��q=����,����½�������+ 猳}kѡ��|�ã��� ������&��y���hTj6���χ����6�%���ɂxLn��\F���N�\\Z���F��U��>��?� Q�N�{�"X�8��ǵ|e�7�_~;�ֶ~/�-�RK�2@�0H;�v&���z� 5���tӝ ��"����>m��/pc�J�c��]���)�b�˟�#��60�Lڃ������ƴLq�k`�����+�6:��ر�%�a.���sމ��:R�j��vQ�᷍H��s8h����#V8ێ�����%�`~\�zf��wY�d�[�a*�>Vc�y5SW�Ò=�]f�m��d�+=A�:�M9A���*�_,���\���pj+���x��]�ſ��W�ߩ)��I�K�Ҥ��.�������X�/���ͭ��_���o��玹�H�i�g���sm��L�� d�2��8k�6އ�i1�[�Rq�~ԍu��b�7-�=�ّ*��ԝc!�EO��wA����N~|��L2ɟ�}�I���ciE�j�Us9-ܓQ���A��Z�vsՉ�5����(T��%���Ļ5ʎz�y&r}�Ds�G4���E�:�ʲ�$�<���zю3�^��W&ެ@A㹠�<�4�y�4�=�Jb��� �K��L�K�4�Z0zR6'9�NU'�I��@U'��j���"{Ҩ;��Ҵm�������8۹���c,E8�Ϊx*�բ��j |�U����d��Z�<�T�`n��.���}1�|^���������Fc�����?QU<Com�k�7�zw�"�B� 3Ҽ ���-ջk����(S�{G^�N��y晤[���1����F� �6�ps��I���$� ��:�[�Q�dڸ]�7OK�Z����2�!O=i�C-��a"�#5��s�jIB_���YO���6����Q�F4���������kco����,H���7Cc9��+������T��:�r:�Y�9X��4՞�^N��;V-���ian3]7��Vm�C�ݿ��ݥ�ܬ�(�N߅-. ir�D��"P�G=� ���Q���q�ߊI�$g��~�V{�+��ڂ�,Mw _�CܞEK5�3a�� ��bX�2y㚇�;(>�Q@ѿw"aQF윒*�Ì��:S"�$[��������,�Y�� ��Va���ߌܜS%��=믻ѭ 2�Xb9=�բk��I^W��Ƽ�V�I8�P��;|��z~T�jU�``��]��'a��J��p*�TTk7x+�8�Sh�MLUIbp=El������߹5v�*�o^*[�9��ye`[&�� �h�[�at[O�c8>��{����Y3�i�u�3�ޒz�I���$�\��1���U����{X��P {��#���a��!�����j��ж��.��SWNⶖ=�@��u�;[�P���q�~���x�@�-����l� ѓ�¾R�u[Y .K������_iڛ�i��IS�w��x���1�3]��u�����ѕ�#ּ;�O��x�9n,m���zK�o��R�i�)o-���^���-*��Sӣ���9b�C#)�A֣K�߾��U��G������?�A���<�V���+ʮ��`A��~��E𭆱�Iͪ8e#����h�?�sK��1�2��UU\<�j�ǿoS� �%{���џ/���N=i��|b���f��x\��*����^�5�ƪ��9�E��D��?-=#��ƮCc$�V;��k����`s�cSNVoKR[# ���������W��kᮡv2��]��>Ip�>U������:�eKe��S�r�ɞ;�%`���WҟMݿ�m핏�$ J玝j?� �]��c� ����ۤ��n�sn�G�+��#�5�x�ǒ���~#Iwl��%В8�^q�]�-ѕbU.2���z狭��pRT�s��V̻����,* �{���?G�<-�O�����Y���R`Q��Ns�̓�f���d����$\G��{�M���fa���?���J�T�����QK<K1C�a��Z-kg#���1�x���KS�V��H�~��]_�Z���m���T,E<=f�g��a�� �5��2��=�������F��5�x�Ă/��ݝ��d�+���ޥ�\隅�*����P�($㸖 NWg1w��ï��M�ҵi<�y�*P�Q�+��%xO�ׁ�O�gD�a��F��].�� k�%/mu��g��ҳ�y��N�=\����{��&^��� Zp�2���3� l�%���M�U���[緱��A�F^A؊�� �Դ�����̡G���|������Iyͻ�1�Y��uu��E4�Q���o�0�?�M�>�*C���Q�,O����d�l������`�ɊR��6����KIףԣo"Edc����W�x� ��=Ez����4i���9r}��ޝ:�8�Y�'M��壘]�2����5)c� �cہ�+9�PW{���^����v#nz��Ox�����R)?{���)�(�4��Ga�j������-�29�>���bs)M�@�h`#�2-B{�n�/���������veg\.쌊��yUv��X��`� GLW=3�摥|R���-6-v�\��[�nŃp���8-�~<�My#��� �b�<�)�ȡҁ^�����'`n1�Jѱ��1�ZP�}�5�(�H�x��g���o��S�EQ�iUݴz ���H&��@s�XZ��l\��5�W%�gUd%�Z�l`[�R��=*���M�zq�jYA巖X��ҧ{U�@-��B��Z�r�s�}=A=�R�� �9�{��m��u��o0f9�b��K*��3)��5������� ��P8�����FpI��zT��H���e;kA$��x�Z������m��1��h2�j6����:�u1.�0r�=�UD�������Z:��� �'<}k���Q/�)���YO�3ZjM�i��=��TR�㎛�M��C<ds�z�;�'�H�Ғ�ay"��� U�9���n$���f�n%7`��+"��l�I�i[R���{t�}y�n`2j���,y��<�u��r�&�rx�+6�6I�Y'��.��8�]ׄ5M�F�WmlӸ`9�@3[�=��̯��ӵ:\�wDUJQ�=&�@����1f��� �A�D 8=kR�Kf+Բ�ɻ�P�`�L�4e[9T�o�H��F�MJ�K�{��E��������Q���^My�����4�6�顔^\7ޑ�g�>��N���c��R ��-�����Y�%������Ѷ��UuM�QY{dL��s�Tq�ipYĢ(a� Tn�W��"��Pu-ֽwQ8�/��(�����V����,�:}��xe�+c���^$����œ�i7���&�Lm�=M}���-$�p����'��d�s�[�4�� ��I�v�c�5���:c6�����f�x?P{v�l�W~-��!}N:W�����&s�\�z�'��#gk�h��ť�ul����Ϲʫ�ax{ƗW�k&<�l���Lz���n������j~mˤ^Dp�I��ۃUZ�x�k��}��}G�Δ����=�ңr����V�>x2��2�ms�т>��ަ���K A�FL�Ȕ�L�� �ʾհ�9�+=A�l�T�%��[�/��]g��b�u{�5k:M��������k‧$��/�~X���v������Zo��Z��k}�!�#���ʤ���x����A�q_Eh���/�.�>�BMk��?Nx�ݬ�K�ܜ�� �*9V���ℎ3H�{g�����~�^����R3#m�P+'ǟ���gk,�e�ۆv��j����pv�����ύ���fk��#�fկ�:�ȧ�:Ԓ�������^�қ���__����5��43�ڽ��??�!b�)���\��9��m�p��5T�\=GdɖQQ+�s� ��9T���Y��X��8�+sG�uqq��p99�� [����:X�s���������;��m�>@?֮y���?����`t�\S�i�h��lm�3���?}:q�ۭmi>���yd�^�x(�B�<��������c9��f�_á�pT#��M?���eGS�s�{V��F��ne9�u�T�-�K���=�i�<�4�� �q�VNґ�N���$��BUT8 ��k`�tT�� 뤱��<�$�:��Z)�<WifIe H�ު8��5t���3�>��������������b�JF����M�o=��C¾�����*c@��hi��bd����49��y�f�ܗS��k�0��t�\Ɲ��,n�N���rԴt���;�A�\��d��a������^���m �Wݱ�MmV�["d���Xw�;5�xTn1ڻ˽$�#�nj��P�iMm`��w�*o��f�k�Hn�IJ`1�$t5�I�v�n�7�Z��q���EIi��e� ���MrEh�L�]��'`#$����x��^(��H<����-�h�8$��±5+`"���M��Pg��,,�����5yzK�Pq�W����� s\6��?�ِ�t�L]����ƒg/�s���N�ذRH=OƧH.���8�sO���s�"����-���@Q��|'���앗�_�Gv��.������d-a�Esn��N ��qY=G��*�����=�d�P2�������+�Xc�Ú��#�J1bX��WVЈ��y���|���Oҙ ��+LZ:����9���\�h�i��ֱzZV�,c���+���Ek2�*�xr+�a�m���Ցh��H sS(��;=�`�����I��e�Zj�,:��)�~���yo�~��z�ya�A�[���`沷rZkc�խZ)U�s�KXZ�f2)��Cլ�p���_[0,��i� �1��%8�PX�sWt�N�襉98�;IКU��'��]���t��ʒOC�U&� ��9'iC�"�:}���{7�������Kk��i���W��Z�D�+���^{ai7��0�*y�ڦ3�_4tbn-r�}�e�Xx�F���A"J��v�▕����q�ǵy���K��0��Ѻ�+���v CO� !�=r+�U�V�L�t�)��>8���qm�Ksc��+�mlKJT�J�c�o�{X�!������I�v�Y1��8��J��'�n��$��</����W�\�+�6��7��W��}ڥ�����1��M{�d��Ed�>N6���R��ͫ�������N�-��$����u:=���yJ@\o�C�fm�~06�ᚽ�<���%�`�$��ܟª�l��9][^�}$�U9g m���~,>$�hD�ѳ��d�õ{�=�٤�e6�p ��9韭xW�}.I�M�I8�y�? *�5r�$��s��͕���Gs ��(���x6�b�F���a�,�1\F�d_������C&$p� ���N��Ty��N�������{xm�4��Pp����z��,��4���I����zv�y_�<��D�R6�o�ڏ��8��oP��[4?bp �4��b�o�N�W���Z'S�N�י����}V��H�}�1�Rq]�Z��\�2�FM��!�e��̝��j��Ѿx�QP�Di�e��ץq;�Z�J1\�Ŀ<3�_ZK}�x����y�W���[:��+���q��R���q�����x+�^�c��*�������`k��~/���sgy}���~奡"C����+��)�6T��sw�my/ԥ⩧���5="ɬ���3����sM�O�-�v��j�&kl�m��O��&��?h��c�i|=�/ O����E�y�� >����u��3V[�&eul�q^�]��ӄ�7��1�P|����ϼ�����7֒pH?2�s~1Ь�����h��h�����Zӣ���|��@'��Z�<O�i7@�X�5�}�[S�R��ݚ�3�� ��v�h���k��[yZG�F���'����|3�7U *6��=�돸���� J��c�n�8������*� i�* �ؘ�U���=~�V�H����N��r�&� )��[�㹒��?Q�֗C����I ʃ�u漜^>u_,t=,>4�٩�M:k��<���,XW�x[GH�YeQ�8���!��]�� .;�i���\�_["K0�p�wX�q��G�v��;U9$v;L}:f�\��5��q������+&]RC9]�pzӟ��c�?:����yH��k)�hޝ4��X�ew�*����{���I��#v�s�5����1�Nj�P��M��Y���u����&��a�Wq�^�5k�q���Uy5k��W�wH�2F[�=�K�Ev��w���֪^3�2��}j=����%-��h��qT�g ���&���Jy�=��V||���S���h��q�ߗn~\s�֣p��ٮu�y}��J��v�7^H�J�����qF�RƹRG�k/]���@�*����~�?�z�����NO^}jjT�l��I9]��u�d���'��j��?�'��i��5�4�x�+K�As����z�m�+A�o$d�7qWቘw��8����V=�U�x�0r9��0�EЩ5��_�X�դ�(~}k��%#p���o��P@��4քB���f��Ym��`�&�x�;���p���Y�s��u��f�}��Ҥ�54X�̓�=Ej����/m��<�������q�V��J�n�n�[���&d�t1\f>Nsǽp��ܙsֺ��� � �?v�%zi���V'wq��\�_Eg(�~��nx�����9�:�Ԁ���=�j�R���ޖ����I��W���}�k��I�"?6��Җ��;�/,`��k���ڻ��Vl��+YՒ����]�S��K�67Ӯ6͌�N5�?��$���%�9WC֦�6�g�D��/��P�A���Nw+����5���E��M^-��ki.]��"�+��͍��Ei���/Z>�<m5��[2����w�� �@�ɬ�S��K���ytq���^x\|ĸ�8����i�;���k����X��(�Xo����$�g,*Oz�NKaƢh�u�K;I!��FE[�/�z��$r}OҺ O��*�c���������;L��;��c�5�Z��,� b7�mx�W�ivZ�v��wA�^�k2XH<��@���=�WU��oom��q�;��^�8ݜ�iNn��]B-� �mrOP�U][FКTami2���7���Y%@s�:V?�ψ0��[��א�c��c)�㇟2Z��7��=CO�k,��c*�H�y��<�X^Imq3��s�V����m5�.=?T`Ӫ�e�x��Ś���l��z�+�ƅz*pv�e�^�G j�Bb�����-���r�wų�W�(�a�A�נ��P��%����oO�y�A������d\���:�Q��:`�w��x��[��KˍăҸyth�M�^�9�a���5���I��ARx{H��RÓ������N:��q4�� 죥nY�b8U���^���h%�P@<�V՞�]@T^OJ��OC7Qw<��B*���T�q�j��9P�n{W��xm�����q�K'�اt�_oʭ������֖&>�2�<c���� A ����^�y�Y����7��(m\r��t��+�=)�4i��.9�[�Vr�9#��^��ixX�'ۊ"� ������*}�N��Y#�+�`��'�/J�I�n��(���BV��ҾC{j>�D�%sX�-�3q�F�*��ݹ~��؈Ǚ� X�nV���h�/�n���#L��gz�Oʲ�(�\rMy����� �� ��~�j`D `���Uqn2fU��ow:Z St��y���Y6U[p�3����#, �I�ں=6�d��N1�k�Vj��2wG�x�C�,�A1���+��P�Y�?�ʂG����7�v��²�F y��<k3Iqj�\��Z��uGU:���C�DH�J8m�9�k3�v��1�zt�+j/��]��3�x5�&�lR{+��R��7��<��[��tu�}+|��ىN�urh�Oi��}k�J��B#oݾ~_JN�:��kr������[T��&(Tx�+Я�e�ԁ�sڽ�X�ǷJ�VE��/t�R�/C�Rxv�%���rs����B�,����$n����=*�en�:�L�j��Vt�B'p<V�jQ�[�w�=�k;T� ���i+�E�9C�X�Oj� WF��=j���ی�⬶|�����S����Ml�\�:���T����ϵuZ��������pr�Pn�q}I��Q��?ʭ B0H�i-� 7z�*O^}�Jm���`��R��w=�]n�3[J���1X�FE?*тL/�܁�5-�Ώ�A�1��ҹ�$� ��� !�e<����#�݅m�'��Q]N�@�h�ãO��ѣi�� W?g3iv�;��Tr�>P��c��E��W:�*["X]�Ƚ �+_g;x���� �p�k��M����FH����!�;�ܺ��{$��P����<�i$�Z d�#�vk�uK�v��#�Ҵ|7�Kok��v��\oP�Z������[��u�=���Oug���s�b�/�"�FO<渿�/���S��-N�3qz��v�-&ެ�`OOz�41"1h�j����w���V�pv�_���Y|e���� ��O�����]e��e����;? �|uoq���;��ls��;��=B)cT�l��t�g��KS�JqaS����\�ƌ�X��J��{��9�Ո�q� ����z�uݥc�A!�A����nܹ8�:Wiᯊzd����`�k���rr�74�>�['J���Q*A�{�B�+�H%���W��>�n�����kee.���O|�������~�y���`�mȵ]OR��V�w~,Es:����M���>=Ċ�[۠�Z�#���xR�X5}*�,�C�θ�Za�8��{�`�G�.���G�:ҋ���m��#�/�۞9�hƁ��Z0NY��{?>�Ҽ��>'x�U��Q�U�!�����Q��ؖY6�I�z�E�钅Vpv������0�#{}���8N���_#^�[�錷sI,�rZG,[�5ql �X�T�}�m:�\0�OwYԴ�E[����9�+͝IJ|�G�S�F�2dӉM�P}:�!�Kw��-�q[t��Ej^E�z��_Ox1�\w�l��%��fx�'':���K�O_h��,.˂<ש���Q�dQ"Cg�}���˄��˅nƶ- �*����ֳ�e�z�璳9�x��*;���?��e�F�ֽkO�`��?8`��5�G��!�#�{���Vfҙ����'�|�*����.��%��=��f�����<�o��8 #_/�7�[/6�8��k�<1h�7�8�ҹ���|�μ�U��xr ��Q��� �#�b��`��>��Y8e5�t�c����d�6���##4�Pc�rO���Y��wlў9ݪ�O��)��Ve+�>��ϥs��v?)oAںWw ���X��"��9�XTWGM7����H��=�+ɂ0Grj��(;���T8�E�:sְ�:��kp�&T�֮Yje�V?6{�U���#�j������~�����H��4@�8�] h��"�4K�p7=y�K�/ϸ���G3����1���黀*����T�8���Z7V��?1'�Ԗ�̠���\ֻ:��G?3�,�``T�]H��+{V�͊�9��:;z�����^�䃜q�T̒�Hr@\�ؾ�]WhQ�y�j��|���qRԯ��]��� �u�W���=�Q:t'�ϥ>?0ߞ)�h �7A��X�vVzƊv�<��$��P�����d�ɩ�\�#֢��ԐxG�rww��! ��Icv�bL�%Z��TR�ѽ�J��e��K|��@+RVPӓ�?Τ{$ld���7!�(��1�8�֮YY���Z��Dd�}�hZ[L���:��OP�[!�E��������y���qU�$`�OX�[{v�^���П*9���C�=����y<ח_�-���w�=kk⎮ XɌry�^)?�7j�W8$�y�Nu��_�=�H��mf���Uu�#��h��n��r�՚K L�p8��%�z�]њ�lx�̻��2�Ko#+�ps]��&��h�h�\~��k0�� ��9�=~����z�GLJ��;E���yFk�3�� (<v1Y:G�-�"�`�i������Б��?s�t~5���Iߩ��������ǘ(S֪�KP�5/2i�=3Ҽ��K�V%�r�W4��!wez�Y�bNW�~�%������5������{՛+[;���Dw�$�_>A�˵@�Vn>V�Y�G�,u��m�Z�X��G?�_F{G���8X�<�W�W��:V���D��A�O_����!Yf��1X��2��w�9�ֹ���MaFQZ�> iV���D<��x5�ɥ^j'��a��ٮ�[�gԋ4�N��Ri_e�X�k�E�n�⎏�]��u�sDA�q��c�iok�g =�k�%�b��H-���Y���s<7���^zڝGN<��P�����Z[YfhnU��s�Ҽ�Y����DE܄��4��&|��<�g����!�q$�3Y˚OcH�ĭ���1We�~Gz�9n�B��raTt�:8HbH�ekj�"�Q�Ҷ�I�S9�HسX��F=kFh2��A��r���_;F8<U�:� ���닳1q;������趍�t��]7S�����o���GnA���3)E�[]:��䞤r)�Z*�E�~:U�G^��l �(8#��0L�M�����ʶ-4k{U\D�=N*kf� ��ZM���;W]:P��Ӝ�,m!��T�j�� .+�gVbբ�F��g��. .v�ⶨ��k\�Nw��tC�yQ W���I����m`~`��}���a=3���~9�7W21�8������=�4�g��*��!�/U&��3PR��y�����4{�6"˴�]��� �r���@��Gڴ���U����{q�BC�����MJ"��9�D���+ =��K�Xa��W�������v:�����|{KNՓu�&�3�W5i�7�������[V^#��@D�8�qR� nW,�½��NW�J���2(U�09t���9#'��y�Z�եV̉ۦzTJ:h4�]N�U�;��W9���_ �?J��L���Edޤ%0Y�9�z咹�[G-}j�`|�0+���ǖ>خ�VT�܃�i���ݨ��:�\�CD�y��r� ��A���������'Б��.g��Esz߇�f�� �ڛN+`M=�����N~��bYv)���<m��*z�v!H���+�E~�T��z泄JA~�h:�_��1���E�۷ �� 2���c��K$?�\1`�Fj7�6C@E-��p��OOjtk�A9#�>��٦�x T�q��F$��R<��װ�����8�H�39�����2'�8^ǂh�p�ѥ�Wv�\���{�lzt� ͉�_vX�"���M�ZL�=(�r��IտvA�5D�0��gP;��ҫ�2���uqVEH�b�=�H�(A��`�sD���Tc�"D��q�qN��(�� �wܼ�9��AsĄ|���N !`GJ�t��<�1�z�r�ǣ��cQ��;�e^X�D���p�q�I�}���U�Oa���*��8�Cr��{з�I{���[�8�<���%RO�:���Lh�W���aֶ.������8<�+kH�!�ڊg���ؼ?�j̫ǿ��1��;(���y��<G>�t`��7ݽ+�t�D�JL���^A�]{;�aڧ��d[�V��`��X��Q���tU� j~�x��^ ���kw�<���#�|{�J��i>��Eۨ�cQ��_Jh'W���dۨ]Ɇ�����q�j�E2h��D��y��CSK�.d�[�U�͟�[�����k�����G·�֚�J���/�a���Sh �FFq_���w�����Ó�5�G1R�`��_����^�%���Ո���&�V��K��g�UZ��G�6�n�5�x�Z�f��(��ˏʳd�Y\��;�Գu�D*p�с�GZ��AZH�*�����1�АGzv�"���u�ڌx�]�U��dksú���bo�X��^��<����9�k�N 3���¬R�}S�=[H����pH���k��7�,:g���3h�\�3�_�bb�����]�/�20�d`�k��?�9^ǃ��� pz����h�6v��[a>�����1�ҵ��C����2A9=��@�)'��W�����̵;H����9����A\Ο��98�+b�|� <�^drN�.��-�R[Փ�hˁۚ�!`�$�Q�@2:����Wjy��c���Q�Y��uڞ�CQǡ��I�T����>pq�zt�)!�*�@����J˞��ZX�dps�:Ӧ��q���+��L�b|��y��k�91��=9�b� JA8���3��t�*+�]�y�p8�V�vL��،�4���P}�G ǥm�g<��0u�����I��M.)��@�*���U'8қ��'�\zq֡Gޱ|���-2�O~j&�]��C��հu��R4=x��F>��}5\`��<QͥE�^�y��c5 ���$R��k���f`���Z�uy% ��=����� ����b �O�5�({�T�+jeCj�ˁ�z�N@ I�+V�O���s�Z�X�hv���4�D�v2�� ��m��=�U��l��|Ҙ��:���g�P�(n��J��q�t�M(`���j�s2���h�BՍ��"]��\G����B��$�+K����&���^A�Ă(�s �1��M{{�s� A�vq<H�Z�L�c5�Ծ٭gsޢ���w��x"�19�5��*g���NA ]�l��[���H�SG�� �d0�`��1xW*k r5�+��NW�}�(mg�3��������d��*����'����KR?2@�������d %�g�J�?���b#�bz��և�ы���j0O��YA���B��`��\��>������U& ~���-����9{m���ޢ�x Rw����C�u *���V<�ph��r���J��h�tp0�.3R�~�TڷV�p}�U�NR���մ������dt��yt}D�DlT�9�^�c����(=q�s�Vb�J��:{�TpZ��M�<FO j3�2��^8�~�����G5���Ìt����pcC�]�WS'�g��xJV�;psЎ��x&@��0���������pK�|S��c90x��e�Kc?�3���:��z�v��~ qԑ�+���9�����T���x#9=)g�;X[g��xUT�xV�:P~@�8kГG��Oz���X��EWԣ���pGNp�֤M1�c����O�H�����s �x�R��*�!%���AO�#�����W[.�<�� ��K�7h����j�1m�N���H�Mz'��@��� ���vߺz�\DU��{�F���*��C���݀�W��U�mb �`�M��[��������q�]Q��rK��d��ߚ�;�b��s�'��P�U9�_Z��]Ho.�����QE�9nv�N��������c_.97���j��u�G;n8c�u`�~%�6giW��z����<9�k7��D���NOZ��^����8�?�P���(>A<�W����pB$&RH3���؎edwR��c|H���bz����uƷ�I��q��ɬx����ÎxZ�.5�r���t0�j��mE�Ꮚ[����,��=G�]L~;���̹?Ú��MH����*K}v�%+ߩ�Ň���~�L�!�J���OR&��)1Q��q^c�ɗ呹��c�u�$�=j]:�z���=�þ5�$��eV�'�b�&�r�U�s۸�����Hl�9���[_��%���S�Q�'����푇_��Q�]�����pk�?�+�d�>�����R�Ų��9�Sv�kS҄�bA�f�1ZVѪō������W*��$g��vi�?+d�G=*�+�N �dL�*8�zb�5��F���V��$�<��w�ʇ�;Q)��F�n� K(ۃҲg`A$��V��������`Kx��'#�g��'dXv�'<�lr�`��j�-�(w�ǵD�`)9'�+5��I|�p;v�U�q�p�#ӑ��j;�1�8�����+�=M; ŏ�+���?^i��ʐp;���^sW,-Fx`8��+�خ�+m~�����p�t��kf-4:�z�9��0��u��q۹��Ӽd�9�Z|�0,x]���G%T�x�Ikހw��C�m�Q�sf��$�_��5l�g������α���NEV�v�'=@�L�[��)6a��m���#�lvAs��_o�l�8�������8�1ӭsʻz�h$b_"ƾ���Q������a[^"�DDr���Ep���Fe'5ч��t��W{u�v0pr0z�ov�y��j�no��9�>��]���q^��_.����s���x��:�����,�K�I���Er ��y���I��g\*�w��Lw ��u�e�ݨA���t�D��'ԓ^��/.刿�?�x��4�$n���s�<_�xus(�>�W��1X_�E{���U� �1��Z7��M�g�"��u�R�Ma_�I�w5��$��5�> ��f�T�B�g�?Ƹ�]YI���|�&$My!�Y[��k��r���x�{����d̈́K�q�#^K�^|&�<C�i�K;H�F���u��[�D������n��D�42X^.�9:�q^�:�p����;�ѩ������'×�-��2��"��BǑ_c�؟����"ɕ�8���ྦྷ�#�R9�w�������4�E*���y;�ў9�$�NH���^��J�=pdx�b ��@�k����Hc�{x�ߛ ��oEl����Y#�e������4].�K�6PY�N}Qo�+KDGL���*����aqXm���r���{�穛�]"mCJ3O���"��c$��k�H�و��=Fk�<;v&��C��:��zׂ� �I�<W�b[u\�n�����O_�_��F��J������穮R��|�9�=�oL�وܑ�Ʈ��p�W:x�WE9�4�7<玕B�o�x#�����FGz���^[2�7@���u���\���1�S��(�yr=��m=馎�N�kE0�- �1P,q����~�k��G$y���.�X���5��r)FGC[��#��ʽR��{UUZ;��58^���-����=s�m�� HR�1<b���o��xv�s��V�ÿ�l����<RE.����ӌ��O�;�I`�#��Rַ.2R���d��v0GZ�@p ��4����q��+���YFOn���)+X¤Ze�����*cE��0[�qRr�O^�Ӈ�\�#�j�g�P`�,�G<s��J�,��G4g���4�t�c��k�'��ZYY0zqڨ��I���4���*y���D�_����S��̓�Nz*� ����Vb�A���M��k�q�lv��=?:C"����w�ߥZ]�۸��t�N�pw�i�$��沵F8Ԝ�TJqF��z�\"���=k��&������C�Enzy�^e����zU{�=+��b�Z�;oQ�5�(��m�p �+�o�~6WG�)���ߊ�;�8e�)��5�~#�&��i��8��f_:���6;�Ԇc�{��2F�c�WI��!�n{��\]��%��Prz �<#�H�!|�~C�}2�,y�Jrrg��Q����KVیg�����������g�^�ȶF7��:�ֺ�5���:��(5>d:�MY�c���t���ƍ�������4@��G8�����+���lV����hx�P�q�Ć�jڰ�Ǘ[Jz���2^�ȥ��Gֱ5���܄�>�ƾ$�6��p@뗭=?Ǟ!`�ڃ��I�Ww�gQk�a!M�#ڼE��[��&1�ڹ[����ۃ�\ޝ�^��{�+�{V�=��v,{�jڝ4��Lݺ�:v�*0�ƺ2�6�W>���� \�=k�ӭ���$+��C�Roqm��9��j:m{U�Pl<`T�z[�6�b�@��ҕ�@�z������}���fL�c9�&����µ��$ �3�LVrI�2��q�N=EQ��X����Y�_�0�T�ePF1���k'fZ��m\�>�� ������U�#����U?�n���Dw2��7m �*�!�c�j�DS���."F眎>��t���jT��U-R�8���1�Ҵ���:���x������R����i��iO�p��M,2�-��pe�o�U�wob@��UA$��:}��Ϲ�7�)�0&��8=�'R�P�F��Ҹ��(�XH�L~5�{tT�Xu�*)#h��6u�e�qC��`���~X�9���mM�j2,dn��<�\�&�@y'�יV���;iY-��L�d`Lט����HIi�������j&fb��yεɐ�g���n �㦥NX��/uw�RFG<�V�bA?�Vu��f�����W��T�I��/�6:���F2O�Y��0Ny���G����%�6"�'8=sV��]yV�X1J9�Y���s����5�c���eE�{sZ6����8�r0υ<�j�WXO�q�ç��Y���W�f�b�Z�����#��>)�l�~���;*���+�T:��wV!��X�i�w�����[[��ƼR;�3��n�����\�Ú�FJ��[�z;��/����R��^;��y-��<x +�<`�ȵK��������kA�:;�@�1-�rH����<���u ymÎy�=��c�G����>���w*<���\l$t��.I=3���#��W���'#�SG>O�O>��.��B�=�Z��A^x��`tv��zq��[:{���'orB� �=k^��o>�N1Y��`uP:;u2��t��;k�28��i˨��w�qך��J�7`T�=O֠�E�pz�e>��n���5V�P� �Ts�5�КU,r8�CM�Av;�= c�j0��A#���s��R}��Oc�R: �U�>N�J����0H`�<��`\�[��vry#��]SVg�q�=*��'���Y������Ӹ�_�����k:�l�xj��.N>��X/.���+"s��x8�j����}3U���52�:q�z�G��cJ�LG�~ُ�9�˶'��jY�`��8� �#��ɴ^B�Cd�ׅnd��J��b�!�*V��<��s�Z�+Yţѧt�{�Y����V���o=A=�+�j�)��$|�s�]妿��>���`�6o8sjz���#�&��qʯ\U�X�r#�a����Ήj�;}:��n�Z>X��W�J7<�{�^���uǨ��\��'�Y��y�T�T9���\f�N�n��9k�x�/ڢ��H/Td��>�W9��L{���!L�ȭԷֺ�*�N�� �|���Փ�Q�O �k�#���ֻpvx�}������k�Ot�pO����3Wt�K��fڊ��W^H��-�m���)w���BY!Aq�� ��6�k�P���nrz\������y,�yb2@���ןkj���#b7gzצH�h�I�ZM�m踮kX��v"|�~�#��SR K�*������8��3���'���:���RDa !OcRx�E�H�$��A��0O��\4W�am��q���Q^^&�kCӣ%4{���+���1��uVW��w��>���&�Ę�:W{�k�a�1+�y�^|y��0�H�;y�rX6��֮�rv����h��8�[����K��S���]����)��LJ:��t=zg5QK!���㊖9H|0��[ngckH�ʙH�]~�v���WgpU�={��i��rFG�mF�+9k��GI��w�n�����p�9ӥ�([��s���TTF���R�n#��TK����&���Fp+(Y�Y���m��߽R����Rv�kz�T�x�Eu9�u��I8�F�R8+�:Ky�QǠb�Yy������� {��t�Tt��WVv��ȵm9��9�qV�{UH�2�9Q�[���z�y\�@�I,� 8ϧ�E�$L�d��' �\����Ȉ�1�*�NI�U�o,\z�Ue�U<�sY�Y�(��߉?��� �rCg�ְ�ԓp� U��c���j}�E*M�������T7Z�h��>��j^ �G���5��+D.<Ìt�z�x�ټ0������b$ ;��o*Fʯ�� p^%�w<ߚ���;X����p�=+�U�U�,������x��+;<�3�^�W�NU㷗,r�������8���Fϵy����.^W,OPk���g&�V ��t��-k��֡)y\�OAӯ5[N���m���cB�%���fk�|/��U :zb��؈P�,"ӭ.z���߇J�>oS�k��t�*l�j�a`�����k�@�6�s���kƩU�we9$��t��@�J�3[�B�����U("lw?ʦ-��`d����yJ�6�-�s�K�q&_��Ms��$6��>ƢI�ˇbA�A��itF2}Ε5��g�kWG�~�=}�����F ���C@�*�8n�5�Os�o���~,���Wy�M�� ��#l>F~{�+��$�`&N#*vi\��iȑ���_Zֵ�j��aq���hYNH���uFV9�mE6A� N�Џ֨Z�힟֮ō�թ14_����3Oij��q�8����M_=��b핐� Y�O�0<R�8�5��\�lg���e;�i6w;����Q�� ��C]I<�*�s8�ɬ[4.C1��d���į>��6Ȱ� g'���g��U�,� ��9=� �������d��>�^�n�\���h9�qYZ��i�9��V��U���R=+P��~r@��ɻ+�����F0}kT����Ҵ� �F���MB���6x鎂����3n�z08\��qX�Gs0�����\�H�H�^��,�$:�#5�-MS���B�0��y�cX�$��J��Q$������Y�S��z�,���D&y������A�+��� b��J��V���N8�+��t�� �z���7M�P�u��z��ۊm|zW���BVFp���� �d����}+����+���Svn&1-��)��}i*y)s�zZ3��䝉����@3�J��^)YS��-$��9�Z�` ����z���֤ ���)�z4�&k�ps�q��V����+&9���Gb{��ƹ�B�},E���q��W8�Y�h��s�ֹ��xl�����tݑ�����D�@[��� ��3����@@ǭ]�Q\���s�r�4wү ��r=i�+�=+.�b@9p*Cv��ǁ�\Δ�;��E�a��Qڐ3��g�Sk��=s�L7 .T�{qMSc�4�=H�Ӗm����Ymw�Q�9��{�i{b��lM$nAtC�*j�������\|����/N*Ԝ0���z��G#9J(�]E:Sd�������~��ǡ�R��2��������wW#r�cl�����s>[�펦�!t�㧥*����s����X�U�,���,�s뚭6��r� ���Gh��$֙)�#8�Oj��`�֓4�@����� H�J��f���۞O5��<�����ti�VsԩRJȩ4��Ȧmn�q�փM���u&�]0�{��X�N9ajOs W���z|*Ĝq[�Jb8�1ӥM�?�q��K�H̱��c�95�a �>^�}������(m�d�W�_���Pø�#�T�Q��Ց�dzzT2���1����s�Fȵ�ߴ<��] ��G�v�s\�E+���Q������{���?A�t���1P_[��� ��]&����;����}���P]9�|��V�j���fRU~Nk���[�� pO_Z�M��T�r8��jb���6�����qm��H��VYŻ�n�0+��meg9��>���j���Rh��3�k��|Lt�ȢW�'�]XN��s�O���Z�Y+e�}kH�����LW��;�!��;���^�m�$�0\`����U��U)r�#F��6{f���|?j�;c�R�\l��S���'I��@� ��j�Z�5������ɗ���t�x���Z\9� ��Gbk߯�q ]��N:�'�o���K$jU�B+���څnF|���\*�a���q�{�S��#/�Мֿ�<,�(Ҫm ��[�.�0E5�V��g�J�j+3ܼ?�H}��#Y��_��J�? kK.%�H�]���X�c,?:�e A�)�=��Z���~�TF@C�v/�����kOK�*`!��V�N�<��Ayxa�Mk�Wȭ� �@�^Se�E���:sҵ�<H7����5�q1����X������d_�DpI�7��*2�Ϗaޭ�B������c�]����;�.�[,��|����0���/~OJ�[��������Z��+���~�X^+G�`T�̅x?J�'�*1���J�>#�����t��l�Ia5��_L�O�X�S���l�˼�`s'�d�k�'̬:VS�oN����?��*�����g���c�� ��j�ψc^L��Z��#��a�P���~5�ʨ'w^íy���WL7B3Ҳ�M2q�欥�KK��~���k�܉G�qY�~ E ��O~}��5/�C�Ф�Z��|_��e��篭`�RzD��[�G�� ��3\��⑴����W��2Nd�5r�ߎ��6��<瞕+�U��T0v=K\�NqׯZ�M�ȡs��J�����7�ץp:sp�c�_z���=J��*��F7g����39h�$���:��Ew}!V�ߥa\ܼ�3Tc�?����4���q9����DYgwl瞼WA�K��6��G��=6�z�$ga?��{G��3�(ف�X�1���70�.y�߇<5�F�� �5��i�L\�6�ю���Yik�W<t=M%���8���!�'��R�DV�J���qV#��3��튰c ��GP���H,G��t0��sr��H<q�e���)# !�j�wu�;�7r�4�q�`��<���!��,��:�=k[O��/�V�`bPs�N�Z��=�nv=o#v[�,�܌\�x����ö���l�y<��Yzu����9'8�4i�3�x�"��F2}�G �l 1[�R:��@�r:\�*T��]V��jeX�+�2�b��i�4��A�]&�a!a#t�G�W�Ɩ#P�7�J��zWTݜ�v�#DA��� �}��T���q��u���B#�=V�@s�ۚ.gؤ���wu�<���-��,�89sޱ�����~}*+�D(a���;VD�&R[vH�}�H���`�vd�ǽ'�*H�<�X�^�ޝ,�.I�c��Ӊ���M�屓�V\3�L})Z��z��AcE��j�qr1�rOJ�5���5�yy�.V���r1�;�Ⱦ�9���������q�͚������5��lז�y)� ��y�X���g�����b�����YW�6I�9�IhRZ���OBx�Yw��I+��zI���ɻ������Z����Ek�͌�9��ҞdVQ�έYc|�ÜRZ^b^A�̮SB��<a��9� `�[� m�ӭt���ڣ�}�I{f��(���JPR]�/�t��%2��?�f���G��z������+���̏�#���2pi�x�m�i�B�g<VK1�8�Y9f9�J�MV������+��bUEg���p���Q����I��b�z�O)h����OPG���ڤ�g9/c��oac瀣��~����Ջkp[p���<� �yf��Z0G�G*��fA�~4�9��Wk�R��H*����7�.�Fq\�0÷f�uK*ĥxjr~~� �➷G;��x5.���v,V{Y���2���:�\]9����,EiţN+ҧ�8�:U���8lV~���Ą�ʦXx�jY����Ϸ���ޜ�̓�~���=?� ��� �m��ՎI%�@�z�沣���}��J�督��C��uG�6,<��y��7$�yw�O�1��sR-���pG��bW4�D�s�z�����2}�J�kd̠�#�u�֚y�Ҽt�z�B�3c�cʯ�Z�Cf�9^G_O��mA�@�*�:\�9�)���70a�,A*9� a0�t���MՇ_aW�t�t'���i� �Au9ht���8�&�Ǥc�z�ֺ�m#�9�`i� �'s\�ƾ�QG#�6d�8��O}0�.<du��,p^y��)�`��>��֙|�G�i�c�:ӓO�x\�zWQ%�+��y����e��3�J>�Ñv��Pj�:{2���0=�*۲�W�)�����v�H%F�:���LE��G�T�HU��T�ӧ�T�#�W��b� ��3�U�����ӥLqM�<���X�sҚ�䜪�{WU�i�*;�����!F��Z�U%r\O�۸�Ǵ�cd[0}s�[Ƅ��4�u澂XDσU����x�1��q�;�㾅�G��qڽ�3�ι�3n��%������s�?�? �{�."��q�N���0��c�y� *��qֿBu�C<,6�z��<K�ky��s��&�y���,�KI#�"k� �@����~e�e=u�ZZ���apY`U猎I�Z/��-�_,6:b���g�c�X�T���b� v��l�:ҵ|=��+�I�]$��0���z�&�9V�ݜA�e|Lu�o�X��=8�G��G�C�@�_ ����`qZ{9�fG��C���&W�9�N��>-��]ϖp8Z��R��""���J��xj$�IA@�+���飋I�|���7ܻ *GRjώ�P�%]�Pz�W�x�C��P;��:�o��8^8<u������_C6/�N7H@�'5�a���}�5���yR��략��js��F''�kH�Ѫ�4x�G�=��Ń��#�OJֲ�X8������œ�~s�>�Ҵ�|m�&fS���+:�%E��hK��ŧ� �d=1��W2���_7[x�0�q�z�5�o�#Ù3��\���G��>��� L��5j?��� ��t_���z�$~4L����}e�����F��$R1p2f��;T^e�>���O�.��I�ژ�2^A����ZKX=����r ��#=j�Ǎ@��A���Rx�s'8��T.�b��_�^y��]Y�)S��}���D�s��+:���U�:}��K��<���T��2�H�Һ#�U{���Os��d��\w5�� ��r:ׯ�x�x�ys��I�wz��>i[���[C&w��J�=[Q�n$I�u'�s�����F���y�֠�d��U���ýw��`�"x�q��u/�\)c�<����!bҞ8ұ��!~��T-q�I&�:XCdpV�V�-\\3���U9Hc��ґ�.r8�_zo��:�ta�y�>Љ�np+K�c�Z�@9Rz�h �$ؼ�<q^���^Z�����b�v[��0�9��-��|;����<��w���p?��Z�ET�U�����ʾm]��֤�d�a3�J���ݾ���6����5����l������j���9�����QKue��g��^;�c��c���O;9l�q�� <�n#�w�U�q=�#���ۭo�:s�W�z ��X�uު���]Ƈj"�]͌���QW2l��h�T�g�Eh}���`}�_δm�X���MH���c��5Ԣ�1rm����a'��C�.;UT%���]^��}�2)��k� ��rZ��,&�u2�5�� �`ڹꇆ��{{UT@����� 9 0?uG�uS��l�s���,��4$������|�� ��+�Y��v)��RL�L�z���T�;�ʩ�!-Y�������=z�73m+��_j����Nq�&�n�%rܓҰ���ǘ��ǯn*%a���Uۄ�~�JD%w���)j*������zӕ�@����w#`a�������K�O�sR�ZF��?�Fx����� Pi����zT�<��P�>TKst0~lAڳ�� ��`�ң������ӎ��2�A!۟����\P�B�2�����Vlӱ\��<��bXU~i�y��K�R�}+�rՊW7 ��{�I�w�'���:�������;�1i���R�j7&�}���b������C��6�P�ON�ʩ�0l�B�뎕��Z��\6I��9�U���v,���g�U��rX�L�IM����O�t�2,����1��%vB>PO8n+����('�p��8��WF�8����\����8�]���b�ON:� ^�p�������'��fH�Q����1���f����+��=:W���GY�t I�+:5eJi�))Ǖ�<�)Y0ÿzf8��U`mo\��+�$c���Ӛ�SG�bh:shrpI��<c��\r2G��S�b�x�h�4�^��U�ֻX�`��d �4�3 �=��<"��9�s^b��ˣF���;��� ��9��FУ(2��g�dxY2����ƫ��G9���I��%���xB��W����\���:m�1�R`�Pq^�F0x�MT�#6�3�ڦ�.�)^h������ϑ�Q��Qә�Yp����i���Rh�_[x�N���E9��k�|S��Yn�Kd�_K��j;*�瑊�p���_���X�{�⅙��z��q!��+1�$��r}�܆cJkC���p��0��/�w�?Zӂİ���m����q�Z6֘c�5�[}��Q��+��>�օ���d���lNF@#�zճӎ��9�םS��PKs�N���jװҋ�����+;3�q��z�C�Y�Q���;��>�%��PHĴ�cW*с�������x�N+[���=E9Tg��1��qJ�}KE�Ǵ��y��V</>����ޣ��� (�?{���-[��h� ����Q�0F8�ң�!0T䚞f�&B���O� ��I9��������y���U+���?ݐq�p�DJ �@���A ��(����銽l= � 42n�8���C �c�_S\����T�=s]�x{%ېp �V���{��"�|�^����d���Z���,��s\���*���4���e���g�H�dU�ʃW�ўS��z �"a��ǵw���.��4:�w~��q|�~l��I�n�k�mBX�ӯj������!���0$ը���k���"O��x�n�@�����(+?gR��f���F�.3�Z�`r~�3��kw涴Z1M�p��B1��H���z:�6d�9"�K�eݞ >�X`�c��I\�U��z\c ɭXm���5%�� �8�"x�9���f�HlKՅ9�w#^D��.��憠�"���ԭ@B��V9���M�?1^�tѿ��]n�f���8�k ����R�S�o��e����b�?Ƿ�cv����π���Gv�\�+��5KD�x\���@�&�7�[C���"կ��.�t�!�'�sҹ}V�y�:Wy��jZ|� blw W�iW8c���K *zj,L��0��s�3�����j[�9#$m5U�����ڏ+ZD�$�'Ing۽H�R��$#=z�>����sM�/��^Kf^K�ps!�8�N�Ӄ�� ���R�>^�j=�_Cx��w4��VV ��K�ۓ̬}r՞[��sҞ��88��R�DZ��T�b�\�rK�>��p���ߚ����S�2:�4�<\�����r�T���N}�2Ӧ)�4B�I;�iu��?y�y�ZC��F�Oz^�,�In^��8�U�|��判�|V��Q�W2���4��F����*��ۊ�T�7��d�'9�Y�C��P��55��T�S(�:(�9���g�� ޥFx��<#b#��(1�k�~�dB���9��p����T������)���ذs��L��b�0@�G����h��)�SZ�P@�ʚ��F>��q�|.�I⼓������>cC�������R<F������szw��,^l��&��OBQZ�TP��%p �9��F��ig�+��A�����������v��T�fRi��1m�����u6��r�8�Mbiv�[L2�d������/0<�f����M���[�c�����q6���ҳl�F�����:�0éS�}+�&�^��}0U������Y� ����K�� � �Z���'9����Cz�և:�(#;zV�� ��'�ựv<����� a��]0��0��:I�7�Ӷ�O�+��uP7 JuD#p$���&����sr��<�]��!8�j���$@zSL�A� nw�2p6d�qY�����ל�W�e�#��U.YBc������d�G�玣��s�ձq��=�d����㟭d�R��l�H�ҩ�&�����Fu#�*��1����dٲZ f;���� �t�S&�z�߇�\�[�Y��O�K�i����{���/���5���1�U ��f����f �t�eZ�.�NH����LB������� L���Z��pq�ͦ�F�ŏ��O�QԴ�X��q�]�z|P������m!�;+*�Rp�jV��mR�i%Oӷ��`ܱBK�랕��0#�'��k�Գ��F}:W,���d�vc95Y������q�d��4�%p �>� Ϙ�t&f� 㜎�����F�3�U`�m�-��*���e)�S�)-�����<���\�ZWօ����g�й���d���w�D��}=}+�6�.c?vG�ُ,��z��Ob�����R֭�s�X�C��q�"�8O9�Z��7�#����?�#Hx�י�)Wa�E} �?N�fpUx��֡�o0x&�l����̱Թ������zf�~����kֽ�.��&��]g��Hm�X�>����\�!���R 9��B��#��b*������ �-�c]�)�Gz�"��3_h����:�2�#�x�Q�'��m���k��5X7(j�����b�ϱ�"ܮ ,}*���-�y+���Yk{x����S���[�q�5��)E٣������ֹ=mw��8<qZ��bF##>Օ~D�`s��]T��Z�7�[�o�O���jX6�pO���1�09��������Q�c7̄Ӂ\��zzU�k,H� ӊ27�㧭Mm F���7T\��H� I&��[��ܓ��U!NH�[�RT7�A\Ҩ�a�� t������G���`��k'yS���ֵ��I���s\��Q1��y�M1����ۑRN�'������A!���Eg��N ^~P3���=���M��� a����J��)�*ҹI�a�2)��{�ꊹc��9�:��l��8��*Ļ���q�Z��qC��<��y�=j䏻��T��ApHm�8R*y�3�ղ�G-��j9m�'����42(n^ ����x{_��%��#��n�\l���c�*&�A�#=�ʔf�L�֧�_O�)?)#���������88��Mf� #Qُ5e/Vf� ���@��� *99<qL�\�=9�N�a88�)m^#*9lU^Ȥ��"�%��n�:�I.A�;x�@ ����R�ņ=+�g��H� c�#��u��\mb8�X˵�85n v��ߵRZܖΖ�ue�9#��I�-Xv���<��6��Z�ٛE���<{�b��2橹m�����I��J��V�<�8lx9�H�˴�)�8 ����'�*���Gjn(JMQ^.>r>�4q��k�k�!$u�U�M��^k�n��&u+t$b��O�Ix�s�}���� �[\��ӻ�%l0Bm�?�\Ǎt�.�]J�w������μ�Z���Cg0;��'��g͞<��ij����8q��_� @�`p���b�\�3^k�hK6�̱�w>��:mlz���9��((dh�;`J��~�b"un��������G�U��ۏ��듎hu1�R-T��h����Դ��4d�xlV#�����z���6�7֬>Τ��5���Ճ~�i9�ڻ)����Җ�����ɓ�������j_ �����\rx�6� ..!0=qҺVkje�5ў*��d|� u��s�k�!�QA���L��a$Q�?��j^m��pi}��e���=��L�|��k�ȡ�B;�\��|-$q1����s8Iيx'ot����H�Z�{k%��6�=�����^�����N h�c���F9�jx��SOu�j�sΛ�����O4�q�qHzqA���䜌s� �(��g��V!�s[�7���PMds�s�+��Kb^�M��3���U�t$����5k�����ۢ��q�t5���x�s��UE���t�Ia���־N[��f�5,A 3��V�zm����H�-�j����1���79�A~��[����J��vrNv����̌��}��Ko���:��u��%�sOӭ[�O�h���Һ#�\�錪�-O=���N��{֕��l)A��ֶ.4VYN��Ջ+%�G��N┴9=KI`8BlsQZ#G�F@���P�@�X{��-�n~UlV���B9̴�H�eA��54S���9sD�$�^�����ޚM ��n�w@�,Ż ߷�J�y��;�d�˃�q]��.�7���_BY�k >F3ڶ,u�#�8��覍y�??֡���H��sZ'aZ�Qw�/�dg�q�J��U27,��5�����NA�}}�B��#�jM��A���g>Ƨ��x��뎵ԟ��q�z����yl�SZ)�d�c��� �=��J6�z�=���㹪��/^1ߚNcP��ut�O#����w0*�6~��=�s����T�f ����Ϲ��r��$�y����u���,�πs۵2A���j/�V+Z���-���jp��E���\[eaG^�P�% N���.�B�8�U�B[z�����![<c��db��c��*:3�� �0�溻==#�#��G�=+8�dH �?9Դ�����=ri+7�J�+��AW�8�W[;������3�+�G�r�ŷ�O��j&���j Yp8��O��m�XGޮ�Z ��z�¹�؝���5�4o��3�ߥS2�H%s�4�v�o����C&p ?�X�km�J�rpO�S�݃��qS�\����i�`�A���7'c��p�F�<�W����c#�v���4Κ� 9��z�kd �s����4Ee�f&�Nx�@���kv�R�N�ɮ�S��ܠ)�W5�ؒ�A�z��aM�G�m4��n[�+��m�:jo�2�+��wJBc�t⼫�^��`�O@:�5�F��N�J��Vx@��?�L�k>C�^�<,��� t⡸��.~L�/j�y��c��h�D/+�qҘm~nrsһ���?'g�5�y�l8����iz����A�(�=GzUܭ��=�b��Ӱ����<㧥uª�!�p���������5��>>��'9��p��?>�5�\%�M�c+A���� �1]m�(��5�����t�k��r�A�ں�2�u`�<�����No�����Z��2�H��N)S$6���M�۾2����(�܀�Ϧ+�Pq��rY88��:��4�A�<�ʑ�ǎ�ؘ�!�J���/\��zqZ02����uϭP�ǘI?�j�R�I�Q&H�~}nsO���2���<��Iއ�ڑ#B���8��4�$1 ���h�dt��GJ��W�:�^>�Ҡd������W���� �2rH�����;�ҙ<����qQ�8#�����z\��L��;u���1�3�ڪ�ɸ�g#�;~�|�ێ��ҕ��3�N@{t2ġT��U�y%�F:�����S'g��3o!�ң�5'8��*f<����099��ژ�)�Ca����6��\�{t�&����'�=i�����0q��jԬ;�2���d��Zu�|�<b�����G{d_���۞�� �jÜ�RD��۞s�*��6�#� �L�enT;t�9�x5�͌qL1`c9��!X��뤒��?�}É�ʓ3��:�?�[�&_�Ҕ�+��Z9,7!������i@����y���;��J�`��)(قe�\�r? �rTd�⧄�s�I4!��|յ�_R���?7�G1;z�ǭI<ArO �9�w,0rx���@ʗ� ��U_� ]N1�*I��!�sR@��I�¹*4tAX����匳c�����l��W�Z��!���:՛�1�S����tj����W�r�q,Lq��Ey�[�þ�0qW� >2���\���]�|*A���Ʊ�Bk�^9CE�� �vV�I�:��j���^}O�V[�1�e�T�4&�&��Īru�UN��.�g����Sv���֯ B�`a&{c���%��ѓ�iȐ���qXqhd$G����]��ݝ���r}kJ��4�G��R�I��iw7���ʅ-�Y>��������NM���:��DF7ƹ�G�bī��,|4���u�3��M�Ȟ6 bs�F+ӯ�8�L�����4�h�Uϯ�/��b�����x5X0G^+μY�Dh_1��⾧��� !;zW�x�D�Ċc�?�j�C��:ib.|S�;Ík3���zc���]���:澤�����:F23�:�͞$�6��\�{9^'�.tN.�iTFY.y����K��!nk�<�!�g�בK��{R����ٔ�4������F;�0�����Lϔ�ןj�?��"���H�^anH0F �h�AjJF�;q��Z�YڒG����R=_èLXQ�@�]���f`6�1��<7o�:sȮ�D�AF�z�`�������vc����u�;Rz�8wIX�h�J��)�v���ޯN��'�(�S+���ϽtV��h뎝듲��� @�����æF �m"Z�z�`���O��d,J�t�OwU�b�ݖ�Y7�7E<�ո�gԯz��!~a�u� 7AבO0�����N��H�ASf=�*���N���[�S�rzzѸB��∣,O@W��=I�_N�C�<բ�܌�EH���\�s�멢��)�zq���$&�I">R;� �]Ò9�)N8��NG��i��S[C�S�jE��8< Ў,�:�~t<aN:�9�]�,�7)���Jg!r ����F1�U9Ѓ����M��5� �AUnn�7率ޫݱ�H��|�M�ӮWr2}�9Y��^|�\�Oo.�$��V� �I�$�ѷ�霜�>Ս����G~+J�ݺC�yGE��L��:V����9�T���x��Ƕy�_ؖu*�<��V� ����r*�R�+����ES���;��lb���J��a����ZҿF����{��e���$���Kr�0:c8�0]��F�2:g�X�:�� ��0EWiٟvH��ܯ�v�h��e�pG��Y�)B��$�U-�ʈ��nSֲ/�G�y��Rzh#3Yϒ��מ���m�����W_�K��8F����> <����Oֹ*��7�����r�����з$nj���N���( ��3�Mdѭ�(ă��ҞIٖ�;�^7]��t�Zt� �Vt�+��(L��sӟa^�eX1��Ҽ��o�a=���\��q��D�pwҺ�/tʳ��1�!�m�{}+&��p;�H=���� A��������S�P9�02�s۽r^'�VYr"����0pW���� f�2�<�+�祇����� �v�5B�A�NP��j��`���W���X�3�����wƥ�!�<<����A�T���d�+�/�d`���=OE��l�`�c9��qgDj�sµ� �X���cT�3�c��5��Y}���x���\���k��-��h��!����`T����C�@�vZ��ۜl9>�N�D� h�s��z��A�S���+�h���[�6�� ��Si�yU�p8�[z~���R~��W����q� ���n�;��]�鎕5��FQ�=q���:�[M�=�<W�R���E�`� ��^�Buh��w���$~�R���V% `q�j#;;�h�' @R8��i X��'����$��#��Ur�Q)`��Zs�TIq$9,�u0OC�:�W��g-�ǥHA\O���]�BC~Xf`UOn��S�U� �4�� ���Tr0�W��z�We�YŰ�g�9�����]�����c�`t�o�d(Fӻ� ��$��1���pM"��� �@��Q�pZ�C�,r8�2�F ���;��zVrBd�'��js���ބ,1���4�����s����͠���S$�w,A���ґ�#�`��Lt��}C�ϕK6F��Q�g�J���O�Hb!Nѐ?ZӟPM!VU�=���qٽ�y`�F@�9��GR�0��ݷ�?QN?x~4Q_�t?8$����o�� (�{1���?r�Z(���<}�q��J(���Z���c^�?O�E���C��'�}j���ڊ+���M'���VO��?J(��������U���(���i�$_��N��T~�QK�Os.��y���>�E��^��c{M��O������]M[��z�?֏�V�c����֠O�� (�Տ�C�?����^y�?��O�ʾ��v<o��x��?ʾN���!��(����O�3�����W�=�B�P~�RF]��Q�QE_bz���Q^���<���E���D�2��H����WU�����֊+ƥ� ��Ɖ���Qx��=h��J{S��x~��S'���4QJ�C�5_����H�t�G�!������jh:��QE_�%|"���_��V��=�V��:����QE5���t_}��ҥ�����QMn���.[}���#����=袷��"z��uQ��������R{��}��6��?E�B�f��:ч�=���4QP�#C����yU����US�Q/����]��Z�C�袢}}JE����Z��'���E�P](>��WS�/��(�����.E]G�I�>��'�_��QED���?�O�+���ֿ��:(�>ѯC2O�~��UQտ�VOo�.;������w�� (�E���ٻ�E���U��ǹ�x�EwQ� �_�*jOҨI���(����!�G�Y:���Ί+ϟ��v;��A���*d���(���u-��ލYw_�?ϡ����� ��W�>��x��x�QEr�s������?�Z�m��� �+�u44��?Ӄ��ErT��bh��������}(��'�� ?u���[�E���?�ҩ��U��E�?������W��d�[�h���B)�������UC��ċ�i.��������n4V|�i���V李 ?��?����o��ܢ����,G����Js�S���Ee-���o�)�}����E���6?��T����?�E��=��*��ESٍ�� |
| URL | http://zero.webappsecurity.com/resources/img/main_carousel_2.jpg |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | Access-Control-Allow-Origin: * |
| Request Header - size: 288 bytes. |
GET http://zero.webappsecurity.com/resources/img/main_carousel_2.jpg HTTP/1.1
Host: zero.webappsecurity.com User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0 Pragma: no-cache Cache-Control: no-cache Referer: http://zero.webappsecurity.com |
| Request Body - size: 0 bytes. |
|
| Response Header - size: 351 bytes. |
HTTP/1.1 200 OK
Date: Mon, 14 Mar 2022 07:13:43 GMT Server: Apache-Coyote/1.1 Access-Control-Allow-Origin: * Accept-Ranges: bytes ETag: W/"112646-1358497020000" Last-Modified: Fri, 18 Jan 2013 08:17:00 GMT Cache-Control: max-age=2678400 Expires: Thu, 14 Apr 2022 07:13:44 GMT Content-Type: image/jpeg;charset=UTF-8 Content-Length: 112646 |
| Response Body - size: 112,646 bytes. |
����JFIFHH���ExifMM*V^(1f2x�i��HHPaint.NET v3.5.102013:01:16 15:54:14������(HH��XICC_PROFILEHLinomntrRGB XYZ � 1acspMSFTIEC sRGB���-HP cprtP3desc�lwtpt�bkptrXYZgXYZ,bXYZ@dmndTpdmdd��vuedL�view�$lumi�meas$tech0rTRC<gTRC<bTRC<textCopyright (c) 1998 Hewlett-Packard CompanydescsRGB IEC61966-2.1sRGB IEC61966-2.1XYZ �Q�XYZ XYZ o�8��XYZ b����XYZ $����descIEC http://www.iec.chIEC http://www.iec.chdesc.IEC 61966-2.1 Default RGB colour space - sRGB.IEC 61966-2.1 Default RGB colour space - sRGBdesc,Reference Viewing Condition in IEC61966-2.1,Reference Viewing Condition in IEC61966-2.1view��_.���\�XYZ L VPW�meas�sig CRT curv
#(-27;@EJOTY^chmrw|������������������������� %+28>ELRY`gnu|����������������&/8AKT]gqz������������!-8COZfr~���������� -;HUcq~��������� +:IXgw��������'7HYj{�������+=Oat�������2FZn������� % : O d y � � � � � � ' = T j � � � � � �"9Qi������*C\u����� & @ Z t � � � � �.Id���� %A^z���� &Ca~����1Om����&Ed����#Cc����'Ij����4Vx���&Il����Ae����@e���� Ek���*Qw���;c���*R{���Gp���@j���>i��� A l � � �!!H!u!�!�!�"'"U"�"�"�# #8#f#�#�#�$$M$|$�$�% %8%h%�%�%�&'&W&�&�&�''I'z'�'�( (?(q(�(�))8)k)�)�**5*h*�*�++6+i+�+�,,9,n,�,�--A-v-�-�..L.�.�.�/$/Z/�/�/�050l0�0�11J1�1�1�2*2c2�2�3 3F33�3�4+4e4�4�55M5�5�5�676r6�6�7$7`7�7�88P8�8�99B99�9�:6:t:�:�;-;k;�;�<'<e<�<�="=a=�=�> >`>�>�?!?a?�?�@#@d@�@�A)AjA�A�B0BrB�B�C:C}C�DDGD�D�EEUE�E�F"FgF�F�G5G{G�HHKH�H�IIcI�I�J7J}J�KKSK�K�L*LrL�MMJM�M�N%NnN�OOIO�O�P'PqP�QQPQ�Q�R1R|R�SS_S�S�TBT�T�U(UuU�VV\V�V�WDW�W�X/X}X�YYiY�ZZVZ�Z�[E[�[�\5\�\�]']x]�^^l^�__a_�``W`�`�aOa�a�bIb�b�cCc�c�d@d�d�e=e�e�f=f�f�g=g�g�h?h�h�iCi�i�jHj�j�kOk�k�lWl�mm`m�nnkn�ooxo�p+p�p�q:q�q�rKr�ss]s�ttpt�u(u�u�v>v�v�wVw�xxnx�y*y�y�zFz�{{c{�|!|�|�}A}�~~b~�#��G��� �k�͂0����W�������G����r�ׇ;����i�Ή3�����d�ʋ0�����c�ʍ1�����f�Ώ6����n�֑?����z��M��� �����_�ɖ4��� �u���L���$�����h�՛B��������d�Ҟ@��������i�ءG���&����v��V�ǥ8��������n��R�ĩ7�������u��\�ЭD���-�������u��`�ֲK�³8���%�������y��h��Y�ѹJ�º;���.���!������ �����z���p���g���_���X���Q���K���F���Aǿ�=ȼ�:ɹ�8ʷ�6˶�5̵�5͵�6ζ�7ϸ�9к�<Ѿ�?���D���I���N���U���\���d���l���v��ۀ�܊�ݖ�ޢ�)߯�6��D���S���c���s���� ����2��F���[���p������(��@���X���r������4���P���m��������8���W���w����)���K���m����C ��C ����"�� ���}!1AQa"q2���#B��R��$3br� %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz��������������������������������������������������������������������������� ���w!1AQaq"2�B���� #3R�br� $4�%�&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz��������������������������������������������������������������������������?�.�f�Z�4��Q@���4�}h�����(��(P(����ih:Q�i?�JZ?:9����(�@v��P߭��K@9��S@jJ:�w���-'n����������4qG�����ʌҚ?J?J^}h����"� ��zP}9���P(�Rw��4�i�֗�w�(�����zP�t��4����*?�J?:�9�x���PG����Lњ?iz�@ ֔�=i)G4���ڊ 擊:�Q���z�g�)A���%�2hh4�ю(��Z)(�����u�w��w�Pi)�ܚZCGJS@ ���(i:R�A��i���h&�����>��ޔ� Z(�֎�rhM&h�Gj�Ҕ;���}h�i{PqA �JJZA�R�;b� �G��s�J8��zSހ��f�Gj3�Gn)i�^�i:h��x�&��Z(�)h;��Hz�G�h�������@'�KEZZY�*�X�;����1FW#�`V�G�iGkd�,]�3�b���Y�M�f�RqO���&q�@�Ն�ld�el���R-����z�i���x�x�V���Z(z�@��մU�?���֓��2��E�}?Z���R�@ GlR�@!�h�x� ��~|S��ʁ�U�c8 ���� ��� �g�Q`+�d��ir�� psQ:4g�O�����P(�S�-%-7�����E�-!4R�f�})E��Ԝ�R��FOJNԴ~~8��4Q���)�p9��h���v��?��x�PA���zӨ {R�QHiGҀ �? ? Nؠ��_Q@��G�'�(��4R�����}�M-%%-���f���3E(�����:��4���PsK�Rc��K�4u��@�i1�-�ڀ▒�O�G9��Ҍv�ރGjA@GQցG� � _jC@�1GzN�(�:����@�P�JN��i(���t��J;�ޗ4���A����4�Ҏ�){f�����Jh�i(�JI�(h�Pϥv�f����c�@j8��zs@ �(�Qޔ�P�_˺�\�#�[#���}E�[����Y�t �dS��R@A������ާu�Hl[|��;D��p��>�ތ�tg5���G���ʹ�w�߃ב�2&ѡ�w�!ך�?���k/��~�h�Y��V�#���h6 ���?9Ht6 �n �M�ς�N����4[�y��ѲO%��=;֮��#�>j�d����ñڃ��?:�$�ߖ����W�x�E���ba�^{����!v6�vCg����'{�R�- ��$ �xڭ#ˊ̽���,T�'9�����%�p�.��G�늡��RJq��Y��5�'�Z:U*�*A����A@��t����g�.9���~ �<I�Mw�����)�2J08L����ך�����7�a�XO�]�����@~��m���ln<9u����\3j&D��mWb�8���8�"��sg�����'KW���z*j6���ww�� zsZ��L�ݶ�ͫo)�$�t(P��N���y�:g_'�� }���o��Z�K�=�Mυ�JZ&��<���W�3�k�/X[���?-�k����Z��G�u��s�H�t��9��+q���˫R����<��ΨM�~�`���!nM>�iv �91�ލ�v� P�!F���{��[n�}����͔�����RmLo� :Qۥ�H���Rf���P:Q�((�b�):u�#4PT�ʏsrH#GuVr>�'��S4��dS@{G��g��Ѥ���5X� �k���=8�?�t7�Ǥ�k�OGt���jv��C]����=:��:F����mܯi\B���ѱ��#�W��Ң���n/4Fu@#G�d���G�z�:�QIhL5?=<K�c�φ�Z�ÿZ2u>He��s\�Ɖ���ݫ.rf��>�f�������Oo�Fe������ ���_!x��Z�7�I|�-���ZI��d��9yp��j��*$H�w;9�}GJ����s�*��Y�V��l��FTZ�pF}���0�P��O¡������RsP��sG&�Ζ� �?*Z(�����-%-�(�G�� �I��pSҚM�u�q�.>y��dSŔC�;}J|� "�ʴ%���g�����Gu��(�`S�������2�;w��ԩ��f�CKIE q�E&��@j=���Z? :�O8��ZO�����i����h�SG|Rs�ih�� J^�PzQ@�旷Z3�;w�G�A�- ��>�w��9��}i9J>� ^3Ҁ�4��P(i;��I���w��G�@�<���4P)G���ڀ=)(ϱ�� �=(=i>�dPx���ր�q� �@�� (�ހ�� -&;ө(�P1�"�1@IA�ހ�����PG�n����g��Ŝ�+%�l���Yd*x �Dנ��P��%��tmL �bIܼ�µ����^���A{x�L���d�X�f�O���o����4��鮺w�>'D�Qg�8\�o�2?O����&��ƛtdb>Ԟ)�ء����q��]k��[��е�CC��r�y=�Y�2��Gþ?�ԅ���Y���υ�{�GJ��I-��y$<�U?�����1agp��&�`�1�\��dJ�]n)#�ek� ���v}�f�fz$e�Kyd������#_--�=N[�⬬#���E�-$����۶���$�0"��n�-��^R�ʼn�Ozm+SsR�t�RP���4f�Ҁ=��Dԣ�ԯ�&h�;�)p��������+�7�o������z���imƯ���c������f�Au{|�c̫v�̌�VE�"���;����=#�_����3�6y�����Һ-x#8�L_�^��i�km'����Ɣ�c���6e�����C�Q����þ$�vJ� ��g����'j�\鳫��GԖ%�˪��e�� �=_#�T�ٌ���-�H�He}����6������,ҟ6K��U�>��{z��\�r<� �_�n�H�'�{�@�Nk"����K�tH�ʲh����O;� ,�s�_(��8���I !�s����I��I��&}i{Q�Ԅ'j? _ʓڀs��Η�E��>�R�ZN�R���ޕU݂"�v8P;��P����y���"��G���a 2�*��:`��W�΅i������������g} i�����mDK4�z��1F��>S�e�n��o�f�}&8��w�%wI%��;��+F�B��������CD���R������c?�O�Z��z���aL����17��zW��uM����o��i2Z��`� *�#��,o:\+��$K�0��p�p�)r<�X��|��G}zu�;�V$�3��K�Z����!w��X�X��θ��N?����2�H�(E��(�X��nr�8�*��}й�mƪ�{�1�����@�A����֖��@�g�攚%���p+ҭ>x�T�T�<���,�t��3���������$ifH��p��q_Z|�7�C�.�e�]��'������0�M����ޒN�3�j�>x�g�<e�K��<)�h�`��YI �p�6����>��bW�G��[M��H_xn ���n�d��[h��5�_|7� Mnf�Ҽ7s4��2�B�PI�J �)Yligk������Ԏ�l'F��W�����]�ˈt��A��l�ܚ���R?��vW�qC��-Na�w�,6�����^�$>x#�^֚$;V�v}�+b7�����jo��0����V`������AK@�@�ގii(�E���:�𥤠<�P:�Gz(�G�A���֎��c� J(Ԙ��(<�E�ƀG�QZN٢��G^�Cҗڂ3@){�ފJZZ(��E�G��K�K@ �E/zLPE�(�@QHx��I�4u��Z:R��AҔZO���z��撖�}�i;�Gj:�{R��h��u����@ZZm/"�ƻ����x�g�y`����>b��1�}95�q���g \h�;����jZЀ�7)�COʮ��L���(�+�˫|=dQ�m_O�&�]�>��������!m������t����I�?�~&��_,k�gbu]y9邱��u�Ɨcc��f�9pYP-&�pc\kY�ӵ���5��r��[��7�i�L�F{n9���<Cg>���Łn<�c��+��,����E��t��;��p;W�j��y�Q���vK`v��%���$�d�� �{T:�Dm�3M&�@���:�x1ϕ���SP�l������ϚĤc�.��B��j3O���#�֣?�&!ԟ�4�� ���N1@��[[���\���L/UVUP�nΌ��M}{�U����5-ǐ0u^�S�3�2G��Z�s�b��j��$�"Tā��w��T�j�_���ɢ�������"@WV����}��3����D��Ƚ��]�O��x�RF ����I�7�b+�O����Z�>S+1&ي��'����~#��M��M�ϋ�����֬L��7� ����|w6��,v��l.�q1�����S����,��n����f2��k�N�v���X(�1]�&���%�19�%���s���O��$��w��רv&�N��O���oƨ� �tʮvđ�N���˓�Ε���<��G�A��B�((��ր�4PtiM�����qI�|������[4�|i�YK����eh�YSvY������c�k[o��U��Զ�6v�h��VM�nGpz�T~$)l}��� ܇�i�-�(��ppy_�s��dz��������|�b{_*E�6(��\���>�8�o�L\d��s���W�v�J���>�̗^ ��G�����&+YL�ώ��6��F@�]֗��;�'�|��K]s�R;[ڠ�)0]�߯��:X�Z}�A��{$%��u5���~�+�? ��<7k�b������HR���X/|�fǦ�A���&���ܮO����Z��Le+��v��?�zȻ��� �H[�+����c���95W5$� �~���`��4~�~4�� 'zu'��9�h>���8��4sá[_�WP�nc�'�ý}e��U��:u�z^������$#�F g�����Q����[i�EPބ�3��ᧈo4먴�XY��Q��1�Ny��R+j{#��k��=1��7��0�0�l�ud��+�.1��5��|K���f�?iWWL�C]�G��Ry������Ť�(��֗�M.B t�����q�L[2Os^_��_�Y�Q��3�;uMc�wn>����Z�O#�.�4����O�HNҷ�b��gG��7;�o�,?�uZ�1$Җ�����僴D���k?g�����rē2{rj%q+X��>̊T][�m�<�γ.J��MZ���Udܿ�E�V{�NMK;��R�"E!ϭ-��sGz`ڊ?: ���R�@�<�@)��� 6�߭IJ2���MH- #��}��k�^��N�9����;�M��.V\^�dZp�s�G?�1�\���<,����)sN�>��i�ך %O �Ҧ����T�b��]�GP(��!�[6�,��b��\����r�Z�Փ��`i�s�N)� �AǭKqC��9�ޢ��N�sCR���X}ix�R���J3ޓ��)X�������G=�{�J�<R�b�O�Ҋ��4w��)?���4�s@� 8�>�dz�LP�z�=3GJ �Ps@x�����piq�Iב@G^��J@h����K�'O�������|R�n2� 9��W1[�t��[�PX+�����Y��R7c��L�}��Aѣ�����G�����7G��w��oi�`�-[������k�����J�� Դ��B��#��N���!��W�Z�I��O u��>V�0��?����[J)�A��<?�džd[����Ò/��C7�d0���.�r���pv;�\�}��P�<���$�n�&�,�!��>��>+����{R����?��C^�M�r��m��-�w���U[�i����F3(��5~�&,f�F�2����%�d�aq��I>T�-���?�b4r�+���� [�#H� '�l�S5"ZJC�Qۊ1�SX��s#�RDk���������q�]�$�$- ������ĸ�+��2iږ��}��=�̇��7����7��|!�,�>"�[;�x.|�xa����w�C?k�o���Ҁ����.�Z�O�M����D�?��5�ر^�γ����h35�Z�P��Z�b�Eok�x���)h�E$ҥ���H�22�t?)#��}�㩼Kg�ۈ��=:���u�c�0�?��7��4�da�������G&�-Xڥ�<f��;�BM���6���Yw��ˤ��2O��t��t�c��+�6�/'𬻈�T���C��9��Y��W��^�@��jGe����z��MX�l���T��(���ށ�!s����t���d8��tY���ӄNF�Ҵ���v @��2OO�]m�a��nG�ҝ����u����EE42�G�!=2+�����4���9@��:��/�Ȋ�$�E�qԽG4��$����L�j���Ҏ�~��S�j9~!��j�]��n���,k��e����c�z��i%ߌ�K|;q!��7��`2�ԎG#�]5y-��~ ���6~\?ĝ*�9�>�~bc�+�o�v�����{�#|14n0��9I2_����/�K�Y_[�7�'�f�`"�X���s�G�����<9��r��%�yP�?��A�dl3ZMj]=�_��I͕����I�Gנ`��u� �I�+�|�!.}~��_|6�}��:v�'h����o�xι �s�d�d���=>�����%�g_iSE���\d3?ʺ�*ż��[f�+���,���-�~f�g��;�W�٬JDW�Ċ �B~`��U��+��������9��v�H��)i1@n�b����F-��)�Db�����=������ai�X��d��ox�'o ך,^z�8�}�g\�����}>[y�C���y�n�9=T�y��_8�z�/��G��w�X̊3 �͍�?�_��j��L��b�|;,I:|>խ�#�/|-�}���o0������0 "���Ϳ��D�L^ �~Z��>���YH�W�|@,/���)��Oz�~2뷶L"d�HJ�Z֞Өn��Wh#ޯ�SK�S�|Q�ffm_K���� ��?1?�p���n��0:!��������V:s�Le ���/S��8G�C�"L�I2S]����ˎ�FN�U��؏����D���=���Ա�:?�*+7�R~�5*Z\7��#�I\D4U��.XH�Bj�Ү唜��y�?,M�t��U�g��ϻ���o.d�c#Њ.��4���ڒ�zb��t���y/oೋ���cRzN9���WI��+� ��\�\�7�i2@�I�*���'����A�v�����F�a,h�5��w��ݐ������4�E���Ҿ,j�r��&���p�}3���Z��%t��f�Ş&����R��x��I�;~�k�Gĺ�Z)k��Փa�/!�n�Y�O�[OM,�z�|@�����Ǻ�������ds�z��k������EŜ��6c���+�ύ~ �f�y/��L�&Xشc��K�^�}Q����Dp�@Q����ڊB{�q��{����8��?ʝ����1��1�W�S�*���0�e�rs4���0i��,��d�� �����l��>Dr�_/mgE#E:J��\����Gz��yf��F,s��~����}W���|�x�U�q���x].R����GV*~PW#={ק�_� k�³�-���O�� �^�z��u�V����dd�;�#a�9�I���J��%��R^�s�n� ��nq�֍ɕ�~ ~�>��O��#�pB���X�}�=#�#�'�{]>v�z��m�?A_X|a�:ls\?�5�8�0����������D"y����x8{F�䒢�'k�RQL���&$�n��!w��e_iw!K��p �!b?�k[�%Ԓ�jx�C*��ӭ`__<��ى��g���j�2[|I*�UVb=*y�}�W=��@�jv��v4����JҁҐ`��1@�ڒ��0�(��)Rs@4w&��!���'�x����ހ�SҊCӵ0 Q�R�QH84��ΐ�4������h�' �-�sGCE!�gڎ�P}(��?JQ�V�=SPѵH�.�Kk���D�=A���3J(N�{g�O�3⎕4vZc[\Ƞ�P�f�������������n��K9��������k����Cq��2��H�9��٥r�2#�8澯�K���@�I|9q�uW���z}�O�kx'%vE��^��}��I��i�vy'�* �?w=kμW��<��L0q�Քs��_n]x�X�M�<C=�ʧ���H�ă^�M:����<�X�-4Եb=Ǔ�j�l�����Z�$ƶ����{~u�qw?p�nHPv#��\���z��[p>�(�W�@7P/?���e%f[NP�-�+��S���<�]]��{B�hܨ�����\��FY��c?t���+b��iG�=�����n|d�{(�&�ɎicW�#5��{7�oqi'��/Q�������\`)<���}�ȫ��=����𦲮_C�R�8��n18}Q����J��<]��<;����=��a5����E�'�&}�¿�c����*��0n����_Y���RD��9�>-�~)���[^]�oĶ��ُS��:�Wq�>��\�����ً�⎃�ZKi�im@�g�+�&��PW�?��jRO��%�1�WQ�܃��S�Q��w��<#�ڇR��� ��JGZ�?�h�I�]U $�d �>��|+Be�R����>k���n��N*ɕ"�`N�h����?Ϋ!"�X�9�k;V��C��'m�˸�3X�F���l���w2\9��B����CἺ �Dv������6P�w��>���+�_����b�h�����Oi��b�bb����"x���W$pA�ֈ��[��|A�ƺ�O��K[� �VF{w�Źq�Jķe�1l�op��ps�&�M|)���7VM{�^x�A�@}�v�g�Tq�H�G�?�q��m���4��Hb�����\� sK�F�6�-��MV4$^HB��s߿"���,^����>���?tJEY�U�C�c1�M�p�����o�ZK�����g�:�vN)���a�V->*��d�ۜqY����œ�a1G�ߌ���^�F��c���pE��p�����V>�y&�e���y[%�]v������jn� ��}���g�4Է+��l�߭Gޛ$Zm�ΐ 9��ྥ�i�lA����10���*s�g�J�k�e]'L�|Oy6�cqqB5�KfİI�CG8�Ү �&[_�ּK{�o��i)\�Ϧ�y��,?J���"����xV�������9& :M�K��^�� �Sk����5�z��o-�i���H���i[�1�U��\��֝���#����2���Y]��7��m��a�W��7:{T�gR��#�ϯޯ��2�)��;�oar�]9P��Dc�^�:R�$vP$jO����:��n�!�s��H^S�%�<~�\u�Mg]�E9A�G���J��-�9�x �K��Jʾx�O��1-b�e\����<db��n�\�������18�斵�1��ir�m"��qG�1<�Ȧ�b2\�ϦkB�I�'æ�J�|���G�����A�SӅ���~i��#��pif�ة�ޝI5c⎑�c�r}�Zе8��|�O��=ə��V�.��kC�uѯ�y�G���jd��)��\�� � �}C�����,���{x`Ǥ@����\Υ���HP�q� ᣴ���>��T�`s�[��g��}��5nș��%����C �K��Rz����� Ym�u���]�T�����+�n�v�����cF-�M�F�T�����:խ"�H/���[q"���W9�E,s��ʬ0pz)4�!���Hу�ym���О�g�?���BS�x��̪A6z�=����N���W���� ����b��=@]D{��q�����i�j�0:WďnU��ؘ$s�Ԝ+��<��Y���j��U}�Lxo;B��Rx82���+{]�v��~&��K��w� �f�g��`۬h-�(=Z;pO��\���RɨĿݕQ��=�2�mBV ����}k)�h��[���,̷J�S�C��L���a\yq������|#C��5��r�]��0.�H�3���g�x[�Z��Phs��2j�pS��� QW@���[�#v�S��Gr1U��m�#�b�>��=7�_��i~�J��d�icS���Tz���~4�xC�$];�։l��A�*��'��N-��:rJ���7ko2K,���F��#ӭ>�ff���HP8\�ںms^��-t]*���@��(�9�j��C#��6�#8���Rj�DXYeo ���ZW�u8�k�צ3^\�n#{�Z���I9���5�|Ir �q���m ���)��@O4A�� C�z���/��hm'Ak���S����@���=?�w���"��E֫�Yĵ� {�xtc�G^�ך�|B{|�k�>Q7����6��i��TU=>_�<�+����Oy�Ig�7QE|�>���';�����~ ��E��6��闛��o/��207`��;�����h�jj^$��h����#�!W�#�\���"�������g��M�M��i�nߐl~�>(�t�G��N���~��z��h��Ć�� 33e��9a��'�Z��c��D�l�'��H����mL�R՚�G��k`��H���&�� 5�7�r�ˏ��F�!��S���@.{c85��갴&?-� ��l���3�ұe$s�.C��<Q�T���ne۞��b=��N���)4��4��� �9Sv:0#�Wڟ|:��$�M-v���Q�g,|'�/[�]�p>��[NLv��h����A>���+o�`�Z<��|�a�r�V�\��j;�w����m͕��/Ai���{����_0�D�4�G��Φ��L��<�r:��?S]}:�G�B�����|���V7m��q��H�����pi��4��Ɵ�4���|����fM�ڛG�%�DGb��8#���oN�^B��� 80>��d�D��IaS�?��b�OS�9Tx�;E��T9����^8����)��<��F��jU;s�͡�� :���9�:��o+H����2������h��4 )ڲs���L֖����uo ��v��+�O���~5j:\WG0-ԟ����3m.��*ґ�$�'Ў>���O��2�Q��Q�wV8��4���Tv��洚(]��t ��$��� p�A�(�-���+�:��*#[�� I�ʅ�u�c]0i��@�L�C#�A�GL�QҤ?OҎ�g�� ;��4���0 OjQ��'�@��gց��(�zQҐ�c@<H~����Z)(�ZJ9�8����z�JhLb��Gj^�Rb��R��NM���3� 2�p�0���'�|E;%Əgx_;��7R�uP��� ���Q�X�d�ծ����%���__|-:���q�:��m�?�H��g���E%��������>�c�K�2p��o�뷕W�S�:��d��5{�1殥�,l���'<w�d�l��m]Yit���&��;��c#1�W��e����$�U��6�~Y�<�[�)롷C�<[}w-��.�f�B �n3�W%������x�9�����Y�Os����+ϘH����a7�5٣[x�R�-�����?1JWؕkm��22���������:��V��%|��j��/�z#� ��� ���_Z�Ziq��۴ә�|��Z�be;ep����J@���}��Ž����w7�b]^�/6MSH���R��K��uO>{yI ���[^���ic��|Y�����U�7c�7J}�<��:�ֻ����{/�u;cD2�� ���s�qҽ.��wz��2��4�K9����F�9�(lwV���i�n��ׅ4��&y���Zs<|s�پl�o�jpVw Y�#�߀^*a�4�_U��h&��!hN!����K�CY�o��Hn�#���������� ����� ��&���5C"`�K���+�9��o�_�������W�������W&�ŞQ:y�s�sT✮� ڍ��?n&�o:��kp��;Ę9����� �.��\N�."^��v�W��q3l���'�-��3�@��W�x�B�w�Y�� ��j&E��vi��R�.���1��P֚7�[��E��ߏZ߇������39�������;�Or�1�1,x��̣��5��kT�k�D8O�F��s�b:�ڴ!����oL���l��pi��wZn�:˵��X�Щ�w��i�Y�KM��> x�,�Զ:��|���o�a��������<��Gm��|Π��>��^7��6��-���kk�Go��w��W��V�ĩ�]X���. �ڐj����?� ��3j6g�|WyF�+�ǵ��m0Ǹ���2���IJ���j�B��֫5�����H�B"����ȑs�;��na��X IH�by�E9�s\��"%,���*Ҝ�ʢ���F��>8m��Q�~�պ��<��6>����O��[g�;��0V�ۗ�����@7��s�''��t���!YVT�C��B�i�]�ʌ~�����O�v����1�B�9�����͇��L2�#��(� e�����rr��q*<dvpA�kw�|�E��[%�r1�c>�H����UGF'��g�-R�H�}KQ��G����c�,_|��a�SZ�C�&��4���G���q�q���n�<ֱYG�[�S30B��n�R��E�G{{�y��W�Q���9�̇=z�T�sZ{'|SѮ�5U�����2�井�z��<���'մ9���������n�1^��Y�V�y`�<:����HX0=�xƹx�Zt��X���յ��m�s��[�+�ڌ1�I�y#�X�v�H��k�ܽd�ɉ�Sda��K�]���s�ndq��s�2��F 9!���=*l������鍵�H������4���Z��B���UQ���P��|"�nɎ��mD`Uc��RI����w��Ƶw�=��:�O/�����?Q��ǰ5��1��l�P�g=9 W�|8���� �����Vy�u]P��Q�s\$c�kK�:�!K���<7)c<�r$��K���o?Z�WQ�n"+�[�l ���F�g���1^��@�Օ��]�|-�c��v�`e��R$s���5��]2�x�+ҿu�b�Dc�eُ��M%��&�w�gw�<΄�oe�rq��s,V�b�Aut���=j��Bt�Y��i0�mΨ_�$!��G1����C]�32�q$���\�#�A�{���٭�ŐZm��(���H��?�~k&����J��'��c;��Q�[;x�k����wvv�<J��\�������╻�s���D��A�f����(��7}��U��w\�;Fz6#�]}u�V??S�-/��s:��v퓀N~�i����դ�L�d��|�~�U9.�z�_�)o�O��7q�Am'����үX}�K9M���`-��T6��9�弹���"8�ۃ��nq_E|)���=�+�^Y� �����q�7q^!���w��]�2�����ӭ{���5e���j �.ؕ�m�=�88��� 9� �n��S��$ҼC�$b�9Cj����G;�=9�2���B����[��k�� ��Ns�] ��3��{�߄�Ì���&{)bO�5����r���OM���_WF�N�:�Q.k�j�{�5�$1�'�}�HБ�*u�L����#s�6�s���?!ֺ�{G�|�DK��I!z�����wY�m�^�گe���e{��mh��-ˆ� a���*˽�%���dJpώ��ֶ�c�i����-��I�1YZ��-�,)�n�+��ޥ��=��8�g���c%N�+�Pz������{c�����'�,uz'��ya�;��d�Ʃ/��8� �?{�=�v-�ܩ#p�2��������O�����i9��Q��'��۟��B[g�ִ70SV�a��HW#��^���#%�4Z����>~���.}Ƒ?�p�>"oX�����rl1jv&H�=��������w���#7�5-�kt�8'���?^��\U�.2������"����v���<?�;ڼ�X�4u���k���nZ��i��?СA�������¼���L�p�+�\�.?�?zRH�f�b-&Ԧ������� ]��pv��ק��kU�X9�ure����w#g{7=6����`J��KI����5�'"5������ƻ$�op�R��]�iu��-�Y�+�D,��9ǽ}���Z$�����}�"w�@Z�cJе����H�b>ceq��?���L���T���8��a�4�}���:֑��4�wgӿaK�y�D{�|��L=�寋6~&�f��02��c���ǵ{/�-]�1��S�ȑ�%h����}���'��Eԯ���|5�n�����Q�ܹM5���!�X7L$#=p���3Y�W̸�LI ��]�/�[2G�[D�x��OMԒ;���Xz�x�q�8���=�ѕ~Z[r�i% �Ȉ��i��#nߩ���z���>�Ԧ�>�*�� �1����R��p?���w���*�����@4r)FW!�sҾ����}U�I�M�*�1"i����``l�+���uΫ��>��;�4j�)8�W���3j%�ı0gK�kI��H�oƴ���Q�G��g�^���M�x7B���N�5?��#�z*g=��+�_�_D�KGnwmSit�= ������m�MZ���2�3�'v��C�u����� �\H��rr{瞴�;�T����:���,�$h�{� �t���cY v��PD\�ǔ�H9��#]g��,W�[+,9#��01\�i H|�v=U-K����0{��������0n�E��VS�<Vψm�n�[O[�^$�~=�Y&���=GJ��юs�3�4���`!�GJ^�ڀ�3ړ�/j �'8���J(��iN;�R�o�i?s}����ړ����ހ&h�����z)z�ځ�@ ����2��###�Ps�/ÿ�Z��F��j���As�x<{���t8�1jZO�5c���M=�^I%P~k�?g�3���ݺ�x��G3��J1�:�S�dw�_^x��r�]ݏ�u�ɂbԖ6��&/^��~H��幇aa�i�KMm����F������9�+�>,x�9 x�\�Z #���L��0<��^��S�^�t�<7 �\I=x�$a���=���\�zf����d�9���pGޥK��eis��u[����&#'w��Z�B�5[�GOռ4�72C�a)H���h���0H ��z���x,L���2��FO�KdW�|9�.eK����FH��[�es�����Ҕ_5�k�#����}O@��E���U��ٵ[2�o���`H��9"�X���&F����P����𖥧i�7�y����!�F����� Da��ָO�zF��X���~!�E�ҝ�9_�v���U7i�����%��>���f�F�I���m$dg�U�a��0E�۷��R~��?�����֤��1�@��zW�����H�=0�=�����t�}��r]��Ã&6��`d��g�ƽ�Rua��mR�*�P�όd��>��Ku."%�R��G��~�eK���Gl���j[li$[�N��>!�Z��}�HYn���kr�9���>��p�U�u *MK��r�#�^3��s9����+�Пl���P�i=H����>'��W�I�_E�K"#��p?*qk�m�����Z�K� ���4 6 ��r1�~�!��c{r�J7!N�����֛��ho�/�[Y"b��a�p�<P8S���k�o�^7Դ�����V�p:U�W8�1�# �ꢪZj���!n-�sM ��90璬��S�ZU�K\8������T�<?{,�����iI��YW'�;��\��ב\M ������@``#U,8҄��EUG�t�E�pce��t^���Q2���6s���=3����&�\�-$Ś<$J �q֒\,K-��Br�-�n��f�5�kcج5{:�|�KtR�`l���q�^E��p�ޙ��(��tK��{x�yh_��~0`Er�'�5�V�Z���7�%�����z�u;�d�����` ��rs���[nǮ�?�VY��d��<5χ����}����n`y�h� � (?��rv���o�Q�NJь�!n��7'��T�tE�z�K1y�S:�BĀg�x�uF�Ͽ���aA�����=:؏J���]�isp�$I01D�ߝzï[�������Yi��`��]�-�bs�~`��d�{�J�o���'��n��Bɸ��oNs��U�B� ��xm��;⽫^�k�SL���5k�@A������I�ƹ+٢���-'�%a�H ����UdK��hVV��˛'�*�[��Ӄ��sWe��VU�3kĕKU?9?���Ϲ����`�P��L`խ;�H��snC?���.}w�O�����Ym��i�)�9F�#�W�+ Bq����4���`�J���`�٣�4�EWP�I��[0�)>����;�mKƲY�<�|̆yd�o}��OQ��?��Ú�i�����g'��y�$_uߌ�}k�_��ŷ���~.�݂����6����/01����MF��U���F�i�/#���I�^���s��������Jׄ$����?�5+� ]=f����E-�ū=BWBZ=GBkwS���q�J�~di�����0a`1��߉~4�� m�(�] P.�c�u���2:~u�*��.��i�����S~�Kr�=���;�� 9vNG��]OI.�&��J�A$�����d������� ,�a����dx��V7�5 $��A����#�ћI�^�{Y"���ī���ڝ�xفP����}��/ xsĉk�x�Kҵ"#mu�Ѹ�ɸ\��!]Ρ�!|8���Ӵ/�Įb:f��<��,����ZIX��#�ͱ�+��1�2�"���`%;�p��֯r���=�$[��Uʱܷ�J��3�Y9={ �]OB����:�NG�l��M u�-xr��?�l�3�� �M��s]���Fd� �1D�cb�|ǹ?���F�jE:���cf�鞔�����P�[F~\�*{�M����:'���X�\�|�7�Kp�3����}�k�o����5��ȴ��� rڋ�p$��>�$��g�.��v��Z���Ё���?�օ2Z:���̒��,�R��8�f���l���mգ!��[��k1u9nn5 ؞������֬+��%�,�Ț�>�&�cH��)��r0nen�Bz~��-��x���H�TF�䞁Gzv�$��L���]���ٻM��~ �y/�����˧�����O(q�%s��R3K����]|-Ʊy� �a|ٱ�2O�5�� �/����sq�&�8�.�9r�)�k�<?���-������%�3�9�~\�pz���x���M��$���$�m�S8�f�9^�ܐ�<�_�g,�%�!K��������u���;M���[̙�ɽ=�?�]���Y$o�r|�1��1����ҹ�_�>V��K����38�:p��ѓщ�x�[�Km6(��������ȯY��hSY���6w�t��u=�?_-�������̳�� ��i1���kQ~!Yi�Ŭ-$�VP��Fqӓ��(�@�=��M������c,� ���v+�ː�ǡ�5�7�庻�!�-�]� ���d6=��������N�xŌ"v2��j���k����HY�!`�s��U�Y���^k�5�G�5�G�H�뛹����B���^����%�Iђ0H�'��x�����F?(\�~*���¶~'��#�����7�����2FH�#8#�ڧ��W�F]�?��m2� ؞�(}��5����5�[��a��_�Up�x$���_�7�&����V�� ����$�~F�:�^���~*�"�|6�D0�"S��PEbO�/YK��P�������+��x���4cA�m�9-��� gebk��)蚝��'���$����X�4Ջ��&�xt���9q�jX4{�KJR�prd�Z��-�|<ڡ�9��M��E��f�ܦUO-y)`=�I�T��E�� �S�@c��G���:~u�����ud2M4��Ð�y=�+cTm6<��L���YÀ÷?�j�5��oj ml�&+p~g>���MM�/�9j����[a���P��O�}�ߋ������'�e��Լ<a��GX�ߡ���K�>�t�ɴ::�B z��?��%��� :O�����t�?��-�hu�)�MB��I��6��p��+��{i2�=��v,��!��E��$�5�}��_ܻD� ������U�z/�����"���-���{��e#��#��6����x�rW~�n��baI2n$����W�?�����:S���_��"��K���'�����o�/����h��41��V� ?x#ˁY�sZ������Kq�+r�����54m��'�#�ץx���zl�SÓF�ă ȕB��d9��W wbѱ0�`�@`~�ꚱ��k»�v�8��1e��> h�V�$Q���2yp�/ʬF2���<ל_\I ������s��o��k�����+ȕǗ}KcM��4Y�����x��v�����ݎ?�Ԛ��]ˡ���ăך<Q��kʮ�K��$�UUI���ZӰ��{��Us�I32���O����Cg`#�����-�~F��2�y|��Ԯ�r(����.������1��������w.���B5�� �6�����J��5���o��D�T����־��]�ħO��]y�����6.�$N� Υ�b��=j��>�m�ԡ�i�Ztz&�' n��y��5)<6�� B |�-����9�_�����|Qiegysk�'���q���#�����_1t[��1'�������w��+uj$��dx��3���ѷ�q��*� ;3��^�u�m&R�b�e�l������j���.��}��a��,C�w�����1}ޔ֑���1Lɴ�k��|��ci�����_�`�sIuM���/X�RH3�*���(Sk�����=�m%�.��I����kp;��;���{��l���A�[�(���$֗�|Kܲ=���S s�m`��nQ6�9''�t�w.*�f-ߡ���M����BD8!���T��Vԏ#|ǎ��x��l�.��T6�wi��6�g�5�23pH�ݪ]�#�N��?ZN�)��%(��4��)h���g�(?C@/jOΔ~4���?V1���,�;zBs@(�(8����9�y��#PG��F9�=(�ȡ�h?Z����*xv�^إ͌��і� �89GJ�3�6������x���u 5��~RP~U�w���5�ı��}��k�4,@$��A㡯�>^�\[��ׅ�<�xy8���[�ֺ�Lչ��O�4�Ӛ��[�Tl�m�(.29貦���~�o�#�߹:�2<��JF3����>�ԬR��M� ���[���'�<w���oi(�i���#��9�Wh�Vz�v�s�>�^x�����d���;mOZ���#B�ʼnE�kT��̑�N��#��J��t�&�'�O�8���?��{{Wz�CI�t���Q��|x��t�G�9�҃�n��>��w'��=)�t�G�J�|�Ծ�i��A8��[↳�jVR�����0;uO�z�p�W��ıZ�d�.洑�u��&�z�֗�|U⫨�k�Y�S�7�p�:0����t��j���c�����h,�%? W��$m��`��;�u�Y��&e�-���<�Q��J�咽�@���q��;�5�r����ˆ�<�����ꆳf-b�;�fٝ�����>�U�3ħ�O�Xڥ�K;JD��r^���M�S��9o<����Y"�Yp�Ê�I�I'9�՛2����j�{O�;�b�O���Q��R��g��c�`��y�|>����Lm�q�k�f��̲��*��=~�k�?gk���V���&�n��!��'�$g v�3���<�O�*8��r� �d�״����]�F>ઔ��#���sſ�=Q�I����Lwr4~��8?�|��6�Jy�h�W'����p?�ʌ�����x"]9�-#��H~y�즵�p��Q|���)�D����rܕB}04��.�����Ip�y1�&Q��]m��Z�z\�3|�#�1����sO����it�d��g�XW�a���vw%���֤�2����{�n�N�2�z����r�n�+ �����5����Q��%-сy��r�Q-�H.��ڄ�X�( �z�5���#�e�g�;�ӊô�e?*o�b���v �R&���P#oTko���E�;xi&�Dz��ֽ������ӵMJxT���{`�}��r̸�a� W�(�m���:�����+ݾ^�ޗb/mf�kh�6��@7G�s�ׁ�z���F)t=����-�_l�o�K�2b��.����t�-�F�����'X��mg�}Kź�Y�. �������xk��L:jx�C��p<��yrǎ��u�}�7⾏zD�A�� LY��B�ev�Y�c��SE��W�|��wX�T�:i4�A��c���^y�꺃;���&G$+~dWs�m#cJR�OH�Ѿ� ���7�pZ���e��B9!�.G�1�ӒH��,��L�R��l�����P�r�"JaHJ�Ȏۙ��'?Ҭ�\�D���G1�Ǹ��ʨO����N�!��ݽ��)%�<�rO�]�f���M�ܮFNc#�����y7Os��5j��Td� =z�˲ӭ�����M���p�ة��VD�i��(�^�]��=k��]V��5m6� ��C{���[�W8H]2���U�]��c�[�˦H�v�!�]g����<[�;��`q��2J�Wx��s�/H�� �~��K�x��J�VY��+ɼ���9�T%�}��_�v~��Ԍ7V�o&��][�}��C�Z���O� ���U�|�^��@�I #�_���n�}oc O+D���\ƣ��p���k�x�}-_X�� �n1jz+�+�]ꠑ�Z�v��'s���#3m<C�ȿv=�X�:��k�������&�`/��E�'��s�}���7�eY��,�J���H�r���_2x��~����ڈまF8�ԏjJܻ�{��3|��Y/n��1Z�?< �wkF$0\��{q����)����$�!�W��HTc������(x�bV�e;��<�SZ%�0�`2������k Gj�����3�/���q'���$�f�Ñ�0+j̘���xɹ�Ҳ-!�C�8N:��h�j���$ �ΊG! ��M&2 FKf�����������N�o��JKO�x.m�42���Y-X>��ws��Tc�[?��n��~5�]i�=��ɔD�gr+���!��� �W�x��Z������ȸ���Ns��z�����?��ũjZLJ���4��[��^E!YA�*J���>���q[A?��=,��gܬ�1#��\?�S(�6�.�|@� ڹ[��%0͙����5����t��Df��9(�+9�z`^���$�1��ڄѸ C�Id���;ׁk���Vα���w����4Һ�S��0�?��DKm~��Ս`�ڂI�τ�Wvr=����mC��eW�b���'�<�sY7V6��yZ���lÞ:z;�(i���SHmc�f����� �Ga�;P�m�������1I�+��3Z6ڢ �h!#k4�b��u5��G[%y9%��7�a�N�kB��,��ft�ɪןny}F%8��.��M<Ʈ>q��7`V��Y������"��qE��ss��y-��М~���#�͆��z�Z���eK��A��9���%Ȏ����?�Pi��6��WV��"6r�qޚvbh���X��J������h�V�r{<�����IH%����� �̲�k 2��q�ݱ�xW����n��!���ge ��F��g9,�}��lz���e+���a��kL}>f��?u��)�ef|��/m{q�&�!RO7�Nx�z��V��^�O���~�bk��Z��j��j�!X�U�I���"�;�S�p\I�?�!#�ר��W����C�����nX�C��ƘC��t����-*��Z�Y�-#�G�h�s�?�kCsv'=)�!�_Q�ܣ=0qT�Cp��jѼr~K-:,�g�����@����i��Z�yL�$oC� ��I��Qn"���%��*�*_���9c�0S��|�����"b��\��J���qj�Y�{˙���|i-#��`W�t�/Z�6��Gqoum,��/h�7�B�j�j�\�1-�R�>l@�ۭ{�����G�[K Ķ�K��^rC'�{���ә�E$ϭ�_�����پ��j���� :Ki��� S#���)���Zҝ���� �s��,t���"�5;���M�(E!�9wl�ް�/�� ��i��k�+���-�I؇�{V_j�JK�C�_�L�\NG�.v)�>ͯ .z���W��y�iE��7e�6�$שx���Yjq�n<�T#�a���<ז�$,�08�u��\�NkI6�l��kH�9$h,t�YPaY{ 8�>^k�O4�e�9#��1�n����q�/쭟i�v�ϡ9���\������՝�� ���}�Ɛ������$88��d�Z���g�U2��rܓ�hX��3v�O����<7g���l<�*����}��mb��-64�#d+�u���V�I8��ɯY����Ś�wĶ�M&��hs�� ���s�i��4�]>�_.I�2�,�e���;��P��9d� -�w+3�*��Nk�=�w��@?��{��,O�sg?�+��VG������?ٿ�l0�枾/���&�H�� ��a<v��6�e8ͣ�Ƕ��<�&ew�٩m�ԕJ�9���ױx��/���t���w�l7��z�ǽq�އ�[�-����fK1M��ԃ�sZX�W������Ap0����^צG���H��%�F�\H�=X��z&�{M������^�u |�o���EU�v�}y3[��j��n�����E&�m�G�?� C�:���W�-o,Ts�kj��[�ȯ��\q�5�6�k����^��bI�K�FCו���W��w���d��{&B�=�]�&���F`�������� �|���b���A�7 �������寴�%�>~��1?��pP��R�����V�>����� =��*6Яg�������-�{���pm��"���#B���$�n����Oҹ[ۉe's�������m��P��ZɅ����U>���U�܁��}O45bO�H:t�#���@;ѓ����1A8�iy�?�ZN�Q�(�h�Iޖ�f�� (������i�R���zP���=�K@h⁚3@�"��c��~4��I�����3O�%f�>��;��I�s�[�%��FN~b���n��k�W�V+H�Ӽe�K�Zj�h���gl�~�t���y�lm͌څ���٬ġu�.��w�<M��X�=k������_ �N�C��i��5{3��.Ԟ�F��|� �������~�¼c�:���<~���Ǒs&��c^��:�a$V�~�_�{8e�p�썋�ڼ+\��]D@�c�1jD)��ZIhh� ���v>�a�'}��s)�߂� 6�K;���G��E²@�H��+˼[ap��XзV�Qr?�>��މ�^�5����DK�?{�z�R��a;#�����V�����U��.�u�u�T�k����?H�F�����3�L�g��z ����.ѡ��֕t@�����u8�\+��C�f�L�v��ɥ�Uv��j�'����I��.����Ǿ��f��5PS�����z����9H�M9wK�~Mzg�R�&��or�1e�}����S�k�Wd�vr��zRV2��6B�P&�mc�� ��f��� �@o����U��ɷ9Dn�!����t��Tr8;�9���2�C��z��)�!�r5H����M�D�=y����]��O��[�X�F���t��$��}���~�m.����|�.0�}oJ�-�c��!_�y�_#~�Ƒs��[ܕ�s���p��8##��~������ag�<l��)�i�<��<��x� �+��]H�&���J)7Í.&9t�L��)#'$���zW͟/�8.�=3�w�s�$�n��ˁ��U������R��\|��,�������#7��>V��U��sY�II��/e��i�E�]�_C�bMJ�qJ#X� ���W�G/��v�9ʃ#�g�*��h��@0C��h�J�3VD"�b�j�K+�7��O�i�?�t�:f����7 %����;����A�}+XѸ�ԗD�d#�?�MYh'܂�n�X��N+J#j>]�g�����m�wό{�V�Y��f����Nom���Z� �͌���g�;��a���-�bf���H�#r��'>��Er��)�A��-��V��V]?ǖ�gx�ۢg�����M4���o�߈MƆ��Ktch��Դ$�����z�?�| �i-q�\�dHs2=ͻ��M�@�\��I��x��m#_ҭI�o����f��r6��z_�>)�#�O�丟]��q��7�!�L�'����V�sH+���^;��kIm%�S�D���\&���Gf����8,|ٙ��+�~)k>�Ԥ�O���D����ё��� �mJ�LK�Hmt�S#z����tQ#.�L�g��1�-p �;���)�cr�s�q�y�[�=�-ι7�b���yQn��U�ͫ�\�M g&[������̽UUe � ��U�8�K{�wR�8�؉���R8c��T��[�:´!�-e�N]�~;*xE��߯E���P{dG��V�rkN�0����q"�3���!�E �f���d.���k����j6��k;��B.8S�ܜc5��Z���a yo6�����xn���9�����Skn`�w�$�)���x�F�U���v�s�0���?�����{曦��H�t=a! g��g��,�5�'��hs\Eso�j^�����ͻs�H����Ҿ��&��M/IYW����\��nl�e�Y"�s��k$�<s���trݙ�� B��ʭ��'?���� �~���*�&8@��'�><\�];�[����\�ȇq�q����+t�/$R]ʙ�++����T����8��މ��պ�+���̓��S6�ac2Z�*�ɹ��FG��\��G�̕��zf{�;�U��5�Z�،�8�#����p:��8�w{9.�0Y��g>K��8���为,���䓓U��V;T�zB4mА@�=d��[3��W��L���Tl� *\Ĝ�v�kX�[LD?ng���;d>��H62od�%8F'?zF�V��u�AQ��Mjk�YM��n�WN��u32aۿ��;4jY�Cm�<~di8!&�A:/q_f|.�:trx��:��;A�F������E��5�_����.|��z����i%�r(�b��s�r�Gz���,m�>��/�Xˎi⿀���*��oB`�c|_��i��^M̌��P2��"A�z����ugu��@�e;�@��c!� z����,�~0E<]��I�N+��?J�o� �I|�o�s���_�C�J1[��MhR����R=/�)�A,P�?�G5�q���#=��0F3��6b0l3f�u+Ek��"�]Ǔ� �횅��w�ēk�ܪ��q�:����ׯ�y�n��Cʙd-�ç�+���Yg/#e���kX��T0��*7ѷ3�k�� �N�� f6ʟph%�i�iA���QV���Yhf;{�0~N#p�������ʗo%}�A��P}��$(� �(�����;'ʬ���_z��;D���җKt[�][h�!�}�߾ ���� ���/PV<�]N"-�7���k�o/�4_$>$�W>أ 'ӵX��8��=�_|����-�,��4;�<n�ݢ�A�����Q���<9K��� �Z�EtdA�(�vH֔V��W�$�dW�4��ta��<�5�.���2��I�ͷ+��We�4�E$�e����-k�s�w�� /%��ܘl-�1��ҩh�"[�l�o.����ǜn��,q��E���Ӆ��p<��A��G~����c��������O=�K�KC:���<�+��܍��G9����Ĭq��<촆G<�Oz��U���)Y|�5��W��Z�u u ��k�O�>����k�y��ݣ�*�@lps���q�b!$�u�W�=b���C̊͝�fS��$n�8�x�V����6Pi1��$��;�����8�¿��1�ɥ^kV�,w��Fc�����\�< ���0"O1� G yfT�����R���O���o&m@��VXa�'`x$�U'?�-��k���|<�śE��*8�T���}+�������kh����/�+�p������B}���D�FՏRTU������g$�֛��%��YV���/?��&Ȟk{6&��|]ao9�O]�8����O,���� ��/W���{�<���[K�,�_�kzu����K�i������|c}j�-�\N�ߺ|�}p8��Q3�q�N=q�X�Z(ܲ����P������,�9��d�`{�Qf;��!`���r7F3^��Y�Ϫ�w�����(�����,��ס�Y�c���^��?���C�%Ɲ�����::y�vpd��@@>� r�>�$�E�ɞ3�&��ʂs����V����a.�b�K�)�!<�=�XI�����U��::���d��"L�#m�׀u�u,��U�Ė>R1^C�#��g�g%ijo���ߤ��ټw�I�����2D��^&�'Gf_�E2��X�N;���B�v�����]>�&M����'ӡ�mB��=��.�h͆M��T��Ҵ�Bi�8���I��5�V#V�c��Ӈ�\��-��"��U��}A���{i�����:���r@��fC����k��ڄ.����{v���#Tfұ�k���8�d�S�����:H']���C CTuY��q3��Q���=��u�yB��˃�ej]�V;U�7�Z-T���p�q�f�KW�4�+|��Wi�~F��L迾�.���A�n�r�Y��O��:q̲n��&����Q�c��x��F�H��t�'��1�W1unğ.)�z�˴�U�jz�Zi��q8`x ���ָ�X�wj�]�>�\m��u5Z��c0�##�Cӊ\{�c�����R��Z%�P1@O4 S�Rh{{�x����8ǽ��������?Z)�z�=��Ҋ>�c4uǵQ@y�GZ:�Iڀ�b�h(�)M-v��?�S�#IpVA���{e���_i��|���Z\k�-����wb��$��_ �5��M�D~tP� ��N%8��������g��6m��~)��UG�%��(�q����a$�fd�S�=_⇉4��d�W�o���%ދ�y���Ym�1�5�O��� �����A������WY���j��t�o�Fڐ�z,7{����^��K�P�6Rh�qq�_��#��O�o�jb�ͥf�嚗�4���D��Ws����t�P�N�����ۋkkd0M0+tޣ18�`�!u��l��, 'U����]�����W��m��3{ ���f. ==�g�Ʀ;�5��>�~"h���N}{Np!5(�GM� s� a|O�������M��W����]@���W�:�e��g�O�k;�v��[�5���/��6��M�X��x=�n��+�>e���y�V��V8/p'�;��V��,�xĒ�x5�~>�Idg�e a��m�=���dm�H�s Z�^�h�<�D1�hO@Oֱ�� )Ԟ�Nq�5�%�Xx��v,O�8�}I��n0zap? ���Z� ����7Zt[3��(B:��L'O��.���Շo�f���%����>-����_Z8��v�*O����B��Cl˽@l�+���zWן/uMxg�Uմ�d#e��. ���R�O^�?J����iu_����Yl4)��ƛ�7U�$������q���:U��y�V!7j^~��^k�mN[�WM�����?����V��ƾx��] ZW�� 9}��=�"�ovo;[c�SO�}�����|vw�����ko2�'C��������x��#�`ͧ�쏕N=���>�ip�g��ǡ ��uwt����e��/#>�q�떾\I�#�WZCEm#��5ۆ�y�7�n���[TUB�O~N=������!��>fߨȭ�1#u�m��wGҹ�!O9�|V��bk��ݴ����I�e�K�"���@��g�q��8�#ur���(!x9��� !|�<�oUT�*��A���wS�b��~cI�-���q�kp�{��Ox�F�6��k�p���#���=�5��ܾ'����'�uV�f����v�1�7�k��xz���X����Z�ͻ{�d�C�5�.��t�|��h�m;V;���:��SЪZ�=�_���0��xr���`q�W��zƖ�?�la#��o��������).#c6�W�x�}�ļIy��d�8��� )���(rv��ʝR�C��7X��C�U.��dAs+���z�Gζ$��-�!s ^q$�s� �]��%�erY�?�k;��k���nB�2�[.�_J�]��A� hk�d+�r��^՟20*H#ޘ���Tڌ6)��f^Nࠜ}s�*�w���Lqީ�6�q��k-J�K}�K}Yy���Gq�+����?��$���ǔ�i�����u���� �<� ,�����K>�����3���+�J���c+!�#��E_C�/��j:�N���4��ϧn�H���� �l�Ƈ$Ҩ2],B�$X܂q��k�_�o�Z���j�0Y�G��B�X0q���C�W����LJ�hu�Q�o���6mߋC'_���ɤ]$���:h���=��$j�T[_I����s�+�ub�i���62n[�}k�/��k�0mO��|9b��B����W��'6��0��KO��&)�Jwv�%}�<��a��V�6�?x|�S/%����}��|�����j?�-��X��]�qߥV�;��<֞��H�1/��Q���Q�:t9 N�`F"���Ƈ;~�J5b~������-����!��q��k(a���1��h~s#��,���H�����dZ�� ���o�k���wpUDا��^�n��#I*��&�����:�<�U��,��X$;~'�`:����d�%�`�ź��|-����5���:� �8�:�⾼� �����[��U�/9Fx���ƿ6e]kY���ȴ{������.�$���z�����n�� ���� �t!�r?S+X�w�[��^"�[��$�x��9�@�_3x��O�n�4�bp-�$��_W�hOM����5(\�{$� =��ھU�悳4r]x�q�#�"=%y�?��k4qz���,��Wgc�k�I�ю+��n��y��<�����}v�O���$�3�A≕Ng��A�ȟT���|E���y'��P� ;6sw���[�!h�T9�6ȇ=����%�"�p���n�.�Pd�7r�Z���딹�����3lElq��ҳg�(���J#4�jm4v�8S��zT�-����]�IW�#�G�|;�ޫ}}�xe�Gf�6�(��[�־���}ß����<z��v���H�5��5=F�5�Y���`�q����c�`��W�F�յ�a(����|�W'!B�^p M\�w����>!�5��m�΅��R�Q�s����0�O���O.��㏴\1=}Z��xb{WmCQ0jH��1�6���:�\ƫ��0j�i�B�1y��v��N(Sm�y�ze���D��]?j���$��������*�.t����RM�*R=A��2Z�;N�����3��H�❈8ټ'��#.����Ir?�����,&M.�s�� Ď۽~��E����)eg�=d�&���N�X�֣��7r4���w���Fޣӡ�};��Ҷ��)�$�v�Dex3��]�i��wS�=wL��\XL!���AW�A�'��%��y���C{{>�m����a�<������e�Qӭ����=)�������S��������[���U���q$ �c� G���>!k�k?xK_m� $��V�rH��Nk��u�/ 2;t��"�^`zi��]����c���K�h���X�O��|��x~�]A'!��^j���t����y��h,��Y� }��\���V���k�2����l�U��7���QQе����X�~ӭ�}��6c��x�}:��& �>���?"���p;�5>����]癎rO8"�W��{�}��:<��{t~���^ty\[����ߥE�b�ӚUm� 0>�>7qSZ��$���J$��e\,��7W]�*mP�M��J�Yn!�G*���G=k����zܨ9�C5����Ξ>'Ii�F�v�����~Y!u`U����1�]|�Kz�ei7O�#i ���� �<W�x���+�F[I?�-"���.�:n]���ָ���%��Y���(��ꖥ����ezu��^����:�5��x�S�]�P���w����sm3x$���O�j� ��3p��O�,&�:��hR+:�?�{�����h���#j����$9+}�g��8_�yF��iNŭ�J[�X� ��aZ�;nD�����>�ow��j��iօ�'�� ���L�j#V��1-��݂G��=\�n4����_ɵG?ٶ�9l�'��u[1%��!pZI5+�s����)�>�8�Q��xE�Q>2�.Ojv�sy��RL6��U�\E7�kk2y1u;v+�:��=MWѬ��ܶ3���:�.�S��rƬ�iZ{3��f�����0c�hZR���lO>ۍQ���FF/Iq�~�3ӷZ���+�!3qx�?%��Y�|A�4�[f��G*�m=5��R�4������溟�ntS��6?��Y���d�9�ڛx�epX�d'����Z�I���M��RHR���P@��G P�����)h���ޓ�/l�~������4������R�v�ފ(h��(��qG�E�GҌP�Y��Y�:�G�oQՔr@����>h��H����7`Zjmi(9�D��oĊ�����������c�Q_N|>��ũˤJ�s��r&x���������͞�e�/]X�=��[�BP%��wбQ�VX�ޯ4���[ݟ�ۛ���?���������U����5%����$ �}Ʃ�{%�?�y'��3S��� _��X��n�S�?4g�O]���csac��N�=���KGj�����^��k{�GԠԟM��%um��[i#m�jx���v5�W�z����m����Aӡnks��7Cm46ҭ�Ҫ��p���y`�#�z��{ӱ�>����]�̧�~ �jl��?|-��*<db��?���H4���|<�Ɲ VR����tc#����>5頼:�è/d^^�O�o<{����g���U|Q���Ikڦ�pA�7���<q�h���m�]�UiGs�|o��5 x���s��ar��gּ�R�*̱�����e��>7�g�/�&��,��%�S�*��z͘��$|�Tc�\Q)&�'��R�K�K7��l,��L�3}��Ċ���-�ԣ��R\�0��#3͓���M9�� ���#WIr6��W 7�=O�,H��s�R����T�f�RA׀F=�F��خ��*�1C,���E9b�¾��o�x��;w<g9�4�ĊPGP�I���_i:}�7��I�H9NT������^G�։�߱ _1y��� ���V�b~��^��h�Ƴ���5 $.}��[w�}��⡩�r���")Ķ�k��Oz����1{���xg�1D0�|��`T�N�^#�j���jS�����;��,�r/�1�51�zɦ�+�编�������Ǵ1�mҲ�%����?*����ܮ�4�6��q߾k!�ɅV )���.�vge�^�f���;���\Ψ"G��0�ސtϠ����]�ŀ^3��;W=m"Ά5'��c�P��gս9�$dU?�G�UyJ��:�ʒ�ځ���n �@�`5cD����VMw��y�gTL�`����T��'��V��#x���U�U���ʧ- a��G�4��}C�/C�P��-���b�xdI�R�9���}sc���mP�u{pc��[,�{�A��˟�7���sxo\ӥ��p�yD��A_�⾧�.|mg�#�xj�2f��\ �A��c�)�苤�Ϛ>4��7�K%ݺ2���b3q��ׄ�s�ֳ���N��pdgsϱ�}I��\�|�A�e^X��X�Hē�t������1;;B9�4��~���� ���lwZ�����n������P]h����Nv��O1��裁Z���|OzrIxQO�DX��{Y�n@�q2F�C�;}X�Mg�'���m!tU|��}�����e�*��� l�~��5O� �R!�N�B��M?|ki29�͍�?T��I)o�x���� ���كʡ��V0����r;n�1`wc�����waX�gb�dk([8�#�A��V��x7-'�P"jK���=�I�z�TL����ݴ����_5)������G�Z���Zd���h�d�y����m?P��u}nܴ{I��eN;����w��] ��Sx{ē���"���w����0�#Ҿ��A�k�=�E�^Z�v�7���b��r�:zӓ�QA��g|f��q`ӯ�'w�4W�rÏl�O־f�7����b�G�[��JF=��O־�����ڥ����#t��Hq�ۼ��P����}�1ҕ]� �<�x=?JK�-Md��_X�k�}�D�*�}��<���P�D��<�\��_>a�?���kF�B�D�n��u���="�<����2�H�!W�֕-#RK���g����r���˱�x�)���DUO-�k��JJ@<v>��ꖖ���Ks���$�l��ƹ@�\o�d�d��C�]�j�6���X���ޝ� ����W�j��+����t��Z�R�2�ťn����t�k��yW:�0�(H9��"��/16�����~u�i{ol�c��� ulO���sS�n�ms��8v����+�����d��t��j 2{褆�iI��)7m��+>��]Ǧ�F{VS�;��/L�^1ߐ+��{�K�o!��qo"����� �b����S��t�����Cl7~�3�T��<SoM�sn}!�K�.4wH�t+�SwUR��W��m!��&ңS�o���O^G�_Y����R�Ǚym�+-�!��d��W�|W���'���t��C;4M�az�De��I�s�}_M�y0�sGԓ-��>��Ph��Hy���M��C̗����x��ګG� �U�����G�� rW:��)���E����Ao�'�2O_«�#'r��I,��cUȖ���(�%~d 9s��>���4��[��F|�2�W뷏�k����S��[�p���q���,�i�~\m��ּ>�$ A#����CO:,H �b�r��M�G�H���յ�eL ����h��M�hӢ9�����(��]ɧjq\E"� ̭��������~,�ޫሯ��o��"� Z�x�g�GÑ��Ҿd��t��l��-e'�l���zt?�z���[��m����~���/gԮt�0x������J���8�O�����Ɵ�/�~��*�oe���������,|,�wu�M>��o�(\�/��� 0=��<��iYǦ-��w��2��XX�M��p#�Aۚ�+�b�H�j����!X���I+�� E(l��s�YJ��&���o�ֱ������\��i���H��G�yƷ��࿗�iv��L�m)P�W�_�mH�<%�+ˋ��xǒ�x�4-&[�#��+����Ms&���j����3�����|��|J�p� ���퓟�a\O��O����ˉ@d�Eb%����q[��H��YxX�$f�D۫1�Lb��,Loymfi���֥�\�=��{_x�Bͻ䳌���x��+�֧i�˙�V3$�J��^zb�[�.�?�zK���ڼc�8��f�'� �er� �~�/����5g��}��m��Mυ��_�>+æ�tMZ�؍�=��_!^�yN��wC(e �<�d���� ^H�8��ۯ�i+ �OF#��Я-ݖ��S��7��>Z˞�<�cXp:�Zw��N����W<�ڍ� ���ś��*Ͼ�|��Xj3�3�R̃�PҸ\�cb�D�i�;�۠�S����s�b���̒n���C�Af�l�[Zn�uw�F�M#J87���Edk�79I5Y��d��*�����!�9{��� :d�M�?ڧ�,{���nN 5 ��.B�|�Wm�R3o�cz�|��3 �3����p��]�R��i�^���];čy�yN�$��B?�S�S��g��n��i���- ���"-�#8<�#�5�>3��%���a�=��Kj��̚�:'�u�&;��\�ү6��B�{m�|}ѓL�����V�6�����1 ���S%yX�\�<����Z��䶩l2HD��^}pN+˵���*�eo�������j_C�)%d���� ��>���ס� Y5GU�>s-�cr�[Q!��փ^�$yU��m�'�r��=5��F�y�y%�LG_�p\���^j�6�L��u�d\m���%�>�8������-o�w5�~W9��SD�c��Q{��(�?xJ���t�״��c��l��h�W���J�[���9n ��-���M@;(�1!��5����U��s��=����^y����Ohl�<7`�H����ڹ�m&Ё��RP���'~kGѭ���!��'.N"ڡ=rY�������*�����%���<���1��y���\J���䞤�g��]'I�0}�\��jq�9*H�\m��)���ʠt���+(4v�Qց�R�@�h����<��b����(���Sҏ�'JB�u��s�t��{�/:n�u�"��|��빱��5����>;� �w�G��ܹ�IT�&���#ސR��������(�Q@���-&(=MQҊ8������PG�%� ����k$� �D��3&䍋7��+�/���!�\Xî�n�&����O�P�g�����l��hu �ӅIW��?>+�i7�9�߇��������eM��C x�"+h�����F��b�y�hbtA���M��Rb�^k�~*��sl���m�$�_H���p�5�6�6��I��N����-��Z�.�~S������ڮ�w# oI��Rq$�Xr~���IO����溔���$�.����@�*����!�m��9L��.>����9����!���s��u*y��c� ��d�ۢx�O��V����;��,�T^�D��g��\Yì�o��|�)Fh��f��z��}��SL�)�Oyf�L��wJ�@�'�Z��.�}��x��A7�Q�7Zd͞��X�{�����OX�������G�y���P�"��@��&��OYhx�/��W���f��r��o(=����y-�y�H�A��������K�+s���iM*�w��z��������]��ipٰ�S�wؕʧu�幍:�� #�YDs��Csl6o��O�}����a�ʭ��n��c�]�t��h�g���"n�C�c��f���j�CH�?��Ucp�\ւG;/��O��֪@H|�=������:1�1]'ýkW�n1ax#��>\˺&?C��\��6����k��ig �¡�%p�+0&7���Q�R>��g�x�V�"m�S+s̰'��@�ֶ�w��ƚ�9��{���ˬ�&�8�W~x#PӜ^XE�9�_��Ce���z��6:u5�x�Oca0_K�!>Ӧ=��{��MSJ�. ����7j�r�����0��rS���j���g�u�_/'yA���l�����,���4��Fy��)8�OQ�P�!�/C�R�a퓀*��%�hD�?@����J�[D��a��s��Y:���˹,C��e {��խ$��R6������V?+��Z���Z�0i"b�c؞���j;啨��OqR%v�m��{՛=GH���od�����=3��R����,.ۜ$����>���> j�zi��SE����$����Ѹ�y���-*�[�T�ɦ$� #u�٤f#8�0�|��/���:[��sZNO2!$M��B��<;�xoR�VG�t�$�G�m���Eq���$�ʢ��<�����_�+=�3�˹�*]�~w-x��]�y]\), ��a�E{�ƻ[�.��ȶ�T����h��9��<[��Xo��Ꮣ��}(卵*R�f&�s<ٹ��&b6�̰��8�g�[��xl�����$o^x�jܑ\��G���q��(�b�Dls5�(���~\I�[��Ӣ%���_Ukd���''o��6���J��F+s�6��"C�"(�'�?���V�A�_��u@������[K����w�φ�l�ٍ��GM����0��WӮ˩��'^y�*5���]c�wyU��rҡ�U�+�v�㈑�(=wM0>��kW�-�R-�`Q���)kq�'���������hL��>������<�>�N.�m�Hǧ��?����?�3c�[���K ���1U>�rW�5�~�c�b7~�4��l���wqmv��M��{Sr�����M[w�ʋ�4�J�+o�$�n�xG�ҭ��Ku<q�t�������~)־2i�-���9.�ȹ�m̈́1�^&�?:���8��O;U�y��/�{�j�����6��g�x��o)k����ړ�s�\D��+7����D��y�=����|KvJIz�r|˞}}ie�$ .��,��,m������Q��ͯ��ZW��0/����\ ��4�ۓ�kr�B�Q=ޣo6J���aX�Q,dR�X���Ļ�!1��V?CZ�p��E�leCo#�C'^���9�@���3��[\ +r�!l-�:��G��:��<`Gq4���"~}�:����H[�j�'ɉI�rj���4v���>:�?��q�C��v��������;� [��ȋ���V�3�����2F=��Y�M�ˌ ������t+φw���-�'����s<h�V_�M�<g�iݭEdݏ�~�X��F�=?'a���+ׅ;��+��h��zT�i���6o�Ē�$B;B���v����-4�f�e��Z�1�a��e|R�-�����5��È�<�c߆�=��+�|�g��%����H?���e�����V&-N�G���� ���kؾ![�\��$7z�ẇ��W=�����z�0����T��6�0�ו�cT�c�%��|K�Nm���t�g��_N�����v�N�;�h�3i��v���]Z#�C�) ��S�Ü�� �KA���3Mt�c\3q�� ~������֏�:Tz��%���R�yV+�Q�1�~4�'��5_�����a��@?��ٺ��� �#���~}?O��3^��'%�C��A�#���K} /��Omݢ-v��1�t�c��^g�_�J陴��<�"H���� =�OR�����/��cRM��P�{�����n�7f��C��=�zq�|���<G��~(o�0���ħ=z ��[�Z��̞����<H�mnt\v�R+ya �w�b�<��W<q��'I��Ŵ�0�(��4V�r�����T���_�}�x�ɲ�o,���\/�g���Ƨ��o��KՕ�>����GW��>�3I��7"?6��uR1�_f|*�:��Ơ��n��w�\���dg���ʿ�<O��U-�f"ْ�u%� ������{Q�x��ݕ��������ȃ�B���B�=g�σ��^+��iת I�E=F?Ԝ�Z��ź��D�m��o��)X�D����2:��m�߈?�q7�>��#܋l�q�W�x�Ok1,�_ ��q�p3X0zs��0�[��roE���k~�ݕ�Cy+���@w�>�^�[�� '�ׇ�I�A�ܘ����,�'�j�/��� g�$��F]�FG>�[Q�'�5� ��f�j�©$d�����r������%�����~��mF�;Hv����,Q���Q��z��>���GI��}�O�� �5���k`e����Ӓ�����|�o�S%���R`2 \�� �$ �ПT�?*��Y�8ɤBA�8�i ݧ��k29�F���K��AIۺ)�(��>�k���a�9��z� �M1dԭ��B�����B���c���Z�������(�PK`U�`�p� I���|+�0�0���|�]�չH5h��Yc��q�W�������G��t��c"m2�����b0)h��gk�ƥ%��y�qR,1�� ?��+�[�&hn�/m�~u����"�U�� �? �E�e(m�#`s���~��Z] �ib*w+����Vд=_T*�Z]���#�~0?�|=!k��8,Q�����ր��?��fv�]>�7����3�j$7�*7��\���|T�<K�Z<WV8ЗE �ɹ�'=wyk��5�7��R5�qj�-�$1�����C��sϮk��>%^�(�ּA`�@ ��<J�уB�n扴�wZ���潟B��?����~��sz��!p����r{�8�Sx�Y�����'^x{���x��5˵���V�utY�ȥ���l�]���is�e���r�K�XH�B�`�Ƽ����.dO���M�����u�k��Z�ª���X+���~U��� A>�ֺ|g$���u�NMBh�K�%,X����[H�/��m�m=}j�� �Kv�3��Y~��v&�`�2����P#��I֞3�i�n;.�)��E���;�@�q��Dr�j����4+-�[*�o��cW�m�3������#>�� ��n̿闺lg���O�E���d+4������2G=Ǜw�,����=0���a�Ey,�,�Z��A2��I��@�LTP@�&���(���@'Ҍ��*��4 ST��� Cf�yr�(��pO�������ϥlxC�����~͢i��m`$���E��9�}:�U���-!uMZ�H,I����`���F�HObq���� � b6����iZx��[�n;f6�lq�T=�EO��؟��_x�-J���=���!��>c��]���O�X�7�K���Ov��.O?J�J��O[��VӴ)go��?�z���J�9?�)|Q� +A�N���ǂ|��f�\�H}"�I9�P��yRA��u�j�WͶ��)�.T����N�b}V+(��%Ny�6�Lv��շ�_���ss�^i>,B�Uby��Trs�Ik�� �4=.=?N�Q"^I0+�������е�g��̍���c�%r�ZN�qҏ�Ҁ JS�84s@QE���RR�Tt���y�Ҁ:�PY]���.V���e�|��ݎ@#��_B�:��)hh���^xcS��Aw�M�y�;y��yk��bżem�q-�2Q,}Q���C�����w�������� ;�#Z:]���>Y?L����L�jD~0���"����$@/����?��?�yf��Z��_T��v!Y�[�c�^����ߊ-�7���D������!�s_=|K��n/��{�9��l�Z�ی�ᏽB��k'��v�w�<���a��lg�_��h�j�uۆ�Ծ߶ل�`>V̌���>���]Q��Ԝ6�;�},ˑ�ul�n��z���}��l��Y^�@!$�x\�8���R�������I���ot��OæV�m~٧I��v�����v��Z1��/�J�|�kx,�c����^U�A��t K|�q���B�����g�g�z��cڴ7~#��W�=o��$��~e9�vֵ-�T���_��!1����7�˴�/�xϮ v�u�u�A��uu��������v�\��FIX�0H��q��_?���%˫�B����)Ih ���x�����/9���أ����Xd�!h�D�y��]�Ԗ�՝+��H��y0e��Ny�����XC��q-������Y44�&��fc���OzXC��Ƥ��l$�3�?�«�>��:�y(W�5�|2����'�Y*\|��:N��z����Ų�Rk9��<~dM�R?���v)=x�'��Y��oÚ���u���l��V�����EԼ�xz@�*��Ԭ��F R%Q�Ҷ>��\� ����1�>�L�f��I��@�����u�ev����D �n. �^�煽�Q+�X֞�>G�恡���\�X�-b�瞄5��irڤ��C}8�z����o.N�wX�a[��b����&r-�$�F ��8��fA�N��8���.A�k/\����� ?Һ�k[P�Z�7H~��\���Hyb���v���'�jHJ��T�EFT�H�zT��! ��-'�F@�O֣�b(pA�*�`����J��'�T�V�0�߹@S���R{}J[�.o2�5F�����s�¾�𭯑�,PMms(;�g�s�r{u����xq$6��}�\[L>Smv"���Cو'N~����M?�:v��|@������[��F08̈�.��a���$�ɭ�d�����ϙi}�BxA����k�֎- ����?�:��㞝5�����.�����h�<q�@�ξT�ݏ�|����!-�,��c�9�����s�D�����yg��x��U��Pb��I�'+kW?^��ZI�Ǟ��v/�qR:��{����+�;T�>����,�9�aܻ$��c���}�d/ޭmnh�GkE=pI?�<�H���ï����&�,q�&c�n�>����pE ��t������Vw�ȭn������W��&��ƺ�LYY��iW�`�N�@�d��IhK0������H���+?]Qa<�m��";������-��=/FV�I��OӥA�����s�峵��#5�Z����5��_��0��e����K]@m����Tc��� ���76%�V� ����m�5t�I��뷊�;�Z!���KԸ* �2Fr~`?�}K�þ+���S��bF�/��6�ɔ��Ur�!�\�����w\���4�V�[��6��^��'�I�Z�tf�����+l��g�q_��|:�xe��.�[]��1��{21����f�n7<z�H��X�i��*#��MZ�>e�~An��*h�]�v�H�q��=��k��0ۯj���,�p3��k��u���.%�M��N2Ovw�k�V�u��蠃���a\u�pƝ���s��V~ϦCd1���d�i?��KS��9vr���c?A�]O�f����f����p��֮F�JK���H�61�w�t�%�rhY�FJl�b)��kSC�T}�����n��(x�<`��-@����i�:hkr�m��;�{T�Ԛ�!����t�٪]�\�$���#����^�#�g����oѬ��N���lo��y�9W^���+µ�kH��$oYh?�+�ٖ�A��U��rd�H�h�-���Y�!�84�� Z��O|6�t]CH�x��J�K�絝�$#�P9rEc|^�|?�X��MO�q�:��f��0��Z�Юm�o4K�Ț�����dz�Ey�ŝ:��;���3�f���� V�u�= Ji����D��2 Fo7ľ'Ev$���s��+����Ԯs}��רX��S���J�c��]~���d��R%by�-s��V��x5�Rď9� 9��)#+>�_i������I9��rF?һ�C������,����m���M�~�aʑ�㱮+��Oٴ��5�W��s�����e��[h��Q<���ui�6�C� ��B�{�J�� �3�υ��5�,c��V��0'�q��<��濴��"Ka�}L���.tb�3��l��~XYY����"�#��}���F2pB�ϯz��v��_�S�j�0��Tވ������/5�bۍ��<]��3O��%�P������3�8�z+Y����3��z�Q�Р��X<[���J���;�+�ucf�x�f��}�U���ұ���̈́vz��!�2����`��Mp�>Q-�k�,�;p1��tVWN�r����B���j� �����\cm���w�:��P�]58R��C_N��>��|?K�W�r�v� ��9���%̩$�� �f�g�F�"��E�Ѯ��[/�$�O�y����STN��/��x3M�"Դ�E�LTfM\��I� �@���ߍ~���:N�*��G�Yǰ��^k�<?�x����[�è���`��d�<Y���z�O�-����_�%s�,��ϼr��Φ6���� �Z����_`i���+�7�����v�mB����3���������4/Arl��I"R܃�F:��ڪ���}�� Zg���3��n*�2�WS[V}B�H[-C�S=��b;].�Ac�?!��,���v������������G��s�KZ��( ��v����-P�|?������k{v8��]������K��7R9��"����a�R�������!�/=ϭa�!�c@��ឍ6�{"�����'����־��[��K�E'��R��3(z6��y�L�Hާ�P�Gj�w�v��W�m��~�#��q��g�5��Z-�:i�#��u�v��Րc� V8Ϧ:��8����ς>�o���2�u�k�i =YU�s�(���g����d��'��Urz�� Ҍz1��,j|;h��#Z��Y����I$����yE�(��g��]���|W�d4:���B-(��5~��x��:���q�].�8�F����.;W)���Y�f�]ODVnO�b��A��]&��oP���,���o��-�A��X�>:�x�[[]�JSZ��*>�:~4�}Q:w!�I��M���ֳ|�:D�����b+μp��dMuu�*D0$�l���z����5�L��?bL��w��P�bEyޠ�b�ɹ�<���i2d�7�I���Ns�����^[�Q,��s�ְcM�p��Z�V�q#.�Y�s��J=c�עk1(�$�����_ `� ��/�/?N �� 'ڼ���v�c�պ7h�~D��Y�F��-�F� �?�(�ˋ�܆V���kw�v�V�1��c�Z�'��2�t� �����������3[�a$��f��2q�Q�dӌ�8&�/Gl%s�at����q�rq�M5��'����?%���e�A��X�ob���q���STr�{c_�GB3�����ys��}�M��E�k[�Z�I�:�?¤Mv`�=A�n��0=�;�O@2t���l�ң��� ����@��)!���f�K�K+]:�9���*`C��gڴuI����&��L� ˘r@l��L�7��f�|���}���~0�N��7<��+,@{`߀��{��j�|���~1u:N��jN�pR�������|9��ޯ��]/%��H����S�W�KM��}Q�𥜕PU|V��p��?���7���5����3�-����/��+��|�Y^�xtԹ�A�&�|Ƅz ����P)�����O��'s�%?�*O4ij���Un��㡻�]�*�$����:ƶ����W�����)�Gd!� ]c�Qj���͒7 Z_4Y���6��aY��wS��p�/�< :M7�1�����wi���Jz��a��Z� ��� �F{����͜dן��?�<K�[��%-���:�tmRT���u�T� �Mχ�x�>{�{q��?iQ�K�q`��ݗ���Yu9o���'����ԑ�p'Q̑/�1. �<Wu��KU���/����jr�^���X��{(S��=������I4��.& K��2qֳ ߍYT��NBG+�qϮ�BW`��|>�|�h����� �Q����hh��ڀ ?�Z=���QG4Q�;RP��W��9�F7c��}���F�-�մ9�m���͌�F0~��Μ�^��~YT��#�z������E��-��-�I�,퓏�°U�oKfg-�z��V�w�,���D����}����Ff��^g�&��:E܉&��;h�?�������_jcR��!��뱕�M�Ŕ�ܨ�,m��|Z�H�ܞ[�6ڡ�y��J�٣o�x����e�#��� R�ֿ��uݮ�k�Ļ�XnQ��c� �G��ֳ�o��z?�K���A��Em|:� �/��[{{uR��y� ј;m�x�;H[��_�����5���J�>f���dߩ��_ܓ��^ �V���� ��l�ϗy�-�m�4`��y��[M:��_[ٕGi�/�Q��fd�}W�U�m�s� l�<~$M�t�I?眮?,S�%�:I�����z��ȷƛv9��ţ���*e5��֫q��_'LR8��d��U��t���M&��T}��z�μC^����q%��s�|�6�l&��i4����J��#� �$��5���$Kl9'���~=�班_���B �V��5�ю{sU�7R�Ƨ;b]���J�G#2����>�F��2*]FP�a#�����Ϙ�؊C���|�J��s�^iZ�b����29��>��d����:"UI3Г�дWG��~%��ii���F.H�4,O����C�Oh���g��V2����������_5��g�4���P���G>������_���چ��۷R���R{ 7~&��C�<_�˸��5��������M��c����H(p;��^���=kJ��ِ��-��v�OM�"�Ҽ�_y��N�-��%�u����W@ՙ�w�)��H,W�����ֱo�m�2C��q�����o*�nȳ����� ���9��NK�1��eB�s��b��nIiy`O�JlG6�c�P�a6ʼnb�'�+�. \g����m�c�s������i<�;����֫�2�����c�<���Z`v�^o69b��>P�[a9�"9^k�/�:��F�l���շ8��V�&��BOOQ_#�uX!��J�,�7�%Ȍ�ǥ}W��/��D�:$� ��2Z6{aԄϾkEk�#��agw6�� d��K� mt,���;W�^/��9% �ˇ�Hy1�gۭ}7�D�:���_�h5���*=��|���;Y[����'9$��>�鯄s��n#R���a���8a�9g�Ywd���z��if�n�b�Ev˞IB?�9d����ϛ6��Y�b��#D�H����c�q�t7��ܱ��F����\���$�֤��ܪ��PM-��`��3�a����eӮ˶�����/N��+�4���Bu'�63��o�Bh ��Ǝ��$YF?�$ի ���o���c��`IUmkV���?������ă�ֲ��M�����4����o㌕\��"��t,n5?�A��B�Cm,�=� �= �W��e�5��C{�ۛpJ�d�����o��5��[�G 1H�������_l��>/��<;c�"_�*�O{�)9 =FzӋ�+�a�hxX���|����{�b�B��i�j2���A�b�pq�{f�Ѵ߉Z����G�ֲc�pK\XL�����*���7�>)�w;�����d��:\F��>S��RM#i+�� �4l&�QbNv� 1�{�=�C�d6�c�������a�Z����;�*��e9���0�ڹ��b�F�ҡ�b�m���.G$;�3�(o��H�<H�8,�)��ʣ�N�D.H����,c5�x�AU�f�<K��I�DQ����Ms�������3#�_�������E��m���J�PoC���1\�Hݑ�+��}�#[���$�VN~������SQ#7�w噡�άZ��m�l��4��.ه�d���o�l�AH䅢�mBs��@W?���&s�i-�-��9�>�H�w����P�-s�� ����{���n�l�W��Z��<UW�J��ٰ�q�@=�+�O�~�qp�ä�^-��#71�v�˓����ipoS��;�cž�����N 5_5��8��( `��Cּg���;T"(��w�6�&�v?�.���}3�������F���l(ޱ�pb\uǙ'�?�+� �=��=טK+]�ۻ�d�3;Q��6�������7��Ft��9�������l>'i'9�t�{It�����Z��F��N��Y�=6گ�����kS����S���`��\~���!I���&�u�\�1؈�B#D�,I� ���&�ei��2Oh7W��gGU����U@��I�08�+�π����[m2wK+���ծH`&B���{�1�_j�K�mis�����{9#3ٖ''a��r;�\,� [���>�ë�9-��E�l��բ ѱ�?�t�㞞.4ۙ��n��6�9��2ƽ�o xcU��c�~�����E�D���Sg�~=�7ᖜΚw��oLp�q�[�0?�:�}�R���j:�M]HM��G�T�"��ָ�*�d-5�p�9&i���@3]�t-��� iY�#�s����:\�]t�V�'~�6�͇�S�F��+]^�6V�滁���c� T\�9�m����R[���9I���K�֒�|3�Z89Q���r[?��/�4����I���U�v��Aԟz�.7{]��`ӓw��O��9ďt���{��:o�5���l�Ә�ق������¿�)��k�V�wQ��n�S�� O��/����\j.�g'���͝���<���y�k�߃�c�i{.�v��?o�h��rs�\ V4���9?��a�C,�/�۫M��kw�Z���$!��_5��Y�f �0�"����2z���C��í�5͆�fdb�M��=;�ooOJ���^�,�{x��C������4+[a�;�q����}1}O�����YL�n�Z�K��/����F������z�3@�U�Pz�A�Os�M��4]^C�]"S��V����M�}ݎ����Eo����;r{}�N�X��j���d����J~@Wj�~Uĸ;�{���?m>`�� ��@|���'��ּ��̗NČ��#���)+2{ 6�q⾶���m֝m�t��2���Uq،�G�}+�k& $A��y�R���ي��.W削��i�=Oҝ~�B����pE�d�w㪆;^+�ω�=���m�W�\���;���T�:���k�.��^{�B��f���ǝ_�+ɾ3x�>�^�����W~��[��!�qJ*��R�8�r�+�⛄8Sd���+X7Z-���_Z�� V%#�O�Yz߈�sk#%���H�Fߚ߰�#5��x��J�Wm�p<�ǯlӱ�2:h:E��x4���~�s9?�a��}�+��G$h��j��x���8��1b�C�<G��q�rbk^��n�5MBեV�%��\�����K9�����J���g+c+tT�MPԕ-���W4���Ex�VV<>9�[�TV��-UF0Bʇ���]D2jEH���� ��4����\�bO-t;�mwa���6��L�4�̻��p��b���D��yn�Z�)�q�&�@;��ؚ�����:�� ��ǚ�v�6�a=�Z@q��"N=w+��tǶ����2Ƚ�;�>�qLM�R��|���־���{�Q�A@k�b��{_1C ���I�jX�{�2ڊ�;��S��8k���*S ����Q�h�<<���k���x�R���,_�^o�+��H��~�ވ��y�ċ����͚�<���~%�����i 7I�jʄ/��-�{��~��q�uqi���'-s}eS�}��r}��t�-�qu5��iP�h�6�0#��Ҷ�>�fx��O�^Ӭa�o���d�XḍM�HOFڋ�zg'p���q��ÂFI8�Q�^�o�G5����z]��IKBK�z�p2q�M.���iO����%�M�,��0� ��q� kd�F�u�;J�o.t�*]v���h�e!(�n��FO�g� �5��/��ioyd"��%��$�Pyj��lş���<���]�`��k�~�2�?��ux�`��u��Gk�>�HV�,lT�p �t��]N�_�|?���i�䖗�1����_r�3~5�\����.��dn��?�y���Y�]kڞ��i�7�䴘G#x��mCP��#�89a]f��x��Ėַ��J����N+�� q�1ާ�@Fi�$iϥi������$��I��oҙ �ݶ�_��Nq �Y}6� ��x���!��m�Ƽx�ɞ+��-ٲ��%�'�q[z~��kֹ�/l5[h%Y��@'n;"�Mzكy67� �+B���F�B�q��Ƭ���ň# ��]џ��_֯O�"6�y^܁�I�"�O��v�w���B��������H�{kx29������8���wqHRj��������.��9��օ���,AC��"�}����.��>���4>?x����s��q!��zPJ? ZB1I�Ӊ��QEQ�A�@ K���G�@��=ֽ������}�gy��8��Jy���'�GҼ �^����쯴/O�_�`�y�$��*��#�U����7Љ�>��<Q�N�)��,צ*����$��c�Y ���;�q��B��F��#�r�i�у����`}Eki���W�Sþ�%��qu��R+�F:������~$k��қ��:ɀ�k;y�q�}���������_iv�\��M�/P%��)�s���Q�]j��B�I��0�V`� �F�ʾ����_�9si���@�?M�g�:����ɰ��{0#��{�����t�>��/�6�t#}b�FVo�éY�� O�.C~��\cw�����5�����}�V_�w�����_,2<�)�i�12ˡ���#����@Ǹ��rj��4�2ms��r�9���c���jG�z��] ��|��R�{_9G��3e����0{dH���>'յ�l���'��2{WП,-Vsh1�.<���:�zs����E�+1lE���\�&� =L�n�1�N�\�? ���-¾��㍋�����h��,�!Sԁ��Ar�^D|�f��|mA���j G7p�~�})a����}V��`h\��C�uN@�a}��W��"�fn�z*����o8,q�����H}�j)�G���쟳Ž�ͧ���xTnkl���=~�}k�O�>��[]�Z��&@k{�VO�B��5|�Bծ!0v�be����3�+v�x��>��~�.�ME��x[}WL����Þ�:f���-ͩc��my���-W�:�,��k1��*�zt5�G��5����!�B1����|p>���� x2�r���ld���%A��3i_i �b�3��q�c��ώ�+��4���:ƕsf�5�i�l0�ξC�Ӂ�ʱ漱1���lyءa���֨��-�F)��Ÿ前�~3D�ۭ̓� 1lac��G�ѓ������wR�h��ڡꄍ���X���n{���-���Y����������˹I���H�h�.D�NUɨ��T|����p��h]����+��s��O�"����汫�~.H����k�`c�n�f 0�:�k������Kx�ᅣ4k�^��ac�."(��[5��"k�[�>��Nq�ھ��+5�{0x��×rcx�:>�H$}7 �mh$�"���<}`�e���*P0�[jW(�$�Glךx�hV�"�z�e�8�F+��^�ŷ::�%����4�4��c�,�����xŔ�{�Z�ᶙ��Y���C����R�l�N�s����5�}r1���=�d4� V������_�����h,.|��!�O��/��M�=:�{�e��&����Rԍ���usz�uX�����O�k���a�WG�Gk&����Qe����I��\����ˀe�*F.�$q^#ȱ2�gi����� "]�6�L�o[[��b}�@G�q\'�!��[�i��E3��n��#����Y�<Kd?�4�4��C{9�`�W�bY�,3R���@�A�l���1��_�@������ӠO��RN�����qm �s��Rƌ�g����S! ��6⾢��Z����GY����@�����r㧽|��ؤ?�.D�{*׳��� �O١��iS�U�ba��Q����US�R�����K�: 9��HJ���A#qف���=���k�k[�,,����$W1̛�������v���I'�$�,�w��㞪���~Ժ6�gj�,���h��F��t�o~�B��>W�����MWV�lm!`�qד����-�?���JV����X���rB�U����]%� �'q����Z⤎00ܻ0=-m���4�u3rfEɼm� ��cّ빺�7y�,ŷy5���v��G�}��s-�ɞB}v�T~U�jR��3rs�v��RPz��/ �Q�$�y`��2 XӐ5҂���W O�h������գr�[l���Q�:Y9�Q|�mc�#�m����� Z$`0L��G�Z�U���}E�����M�S5|!go7��I-�eHز4��0p=FsҾ��)g{%�b���PaDO8��p����+�/#�x�Ֆ�X�ݴ<�vq����¸���r'Y�J��i��x=�eC~d��j�7z���K���R��<RK%�����s���_7|P�e����<S<�In�C`s��k�uu�I��U_��nm@g�P����u���u}<��(Ԧq���!��r�Y��G�j:�{��� =$#��52}W���O��ځ�������ՍK\ 6"�X�� ����q�ހ��ڭ��rb;A�A�e+�V���:��եj��[K9<�&k��z�Krp7c�1_�u-J��y��]2�S�)<�L�����~cx��Q����a�Dy6>�8��c�Vmo�m��O���X�@�Q��[';dM���:E+&�O[^���o>�Lii,�e�����|��s_:x�^��W��O%\Ckmp�;sׯ�z�ڧ�d�ѓ\�m/UPl�`�Or �q�^!�KU�`��{3l���A���\����/���RU3-d�|��{W�/ꓡy��6��]�p����|Qu�Ἥ?U�3��K����Z{���;�3){]>�<S�0�o�G+3r�A�j��ktW�b+L���x�y�̦��'/���ס���q���vэ��?"��Kc��}~����b�:z���ziY��s=+��U��3�ڛ���Ԗ� ~tq>8W��N+�`s����{��+�J���v��4" KL��K�Y�����D�/��ٓ�%������MU1>R�Z��g�8=����n<a����ƃ�h����i�k�s��BYz�"��k��!���o2�HW�MV�9:�`p: ���?<:���7zM˂V;�$$d�$]A���.�����>5x�N��z'���5���,.���_5��ő��;*�1� ���Q�d9�]G��- ����m F���7��9�}+���KMF�����@b�[�����{h9_���j�w2��^8bG�E䍷�M�~u�s��钷�ܱ?��c���K��y`?b���&�.���+���Z��&u �$3��Wlʹfx�]k�hB������s�$��V dF�#mQ�nߝF��pH�F���I(�&�G}���{�meoK�'I�U� v��[)�L��<�߀�����A4����,+�O����gԟ���WM��5v ֑}����Σ�*_��Y��A��K'�4Mӏ��ȯO�1��W������c8w��m:�[�Hڹ�Սr��o��+%���qsbFՋP��QB��(>�5�ln�ϟ�cW��#_�a��C �z�ο�p��1r:)�ҥ� ��.ek�B�B�6!���F1\����N�/N�^B>e�����Է�)�mOX���W�����c�z��E��w!�\^�aB��1��Me�^�Z>����$��h����zv�q�,�/�n�^�,�xڏ����SB�0�,�T�)b>��zT�V�"d)�����*wR��VloQ&Sݓ#���#��!� d��1�]F�=�n\[H�H�Ps�̾�`��k��,��T���F8�.>�U���c�5[)NzF5+��Z�E�f)�s4�+á�7�7^c?�K�c��+R�4��yұ8Qdn>����7්�F�>�C���7 �ģ���#8��Q�<����bp$�b�k���kr��V�z]�a�5zx?u>��+ؾ�5�燡�='J�ME�L����ς{�c��薚%���s,�s��U���Xn�9�{V��Պ�����5F��D����u6��.�ё�B���^�#��9W������e�x�?�&{� ;"�S������O��w��CϷ�/a��H�-��G}\7䎼�+d�=��C$�qq�e�_���?,��F` �9>�=~���> ���X5���9�� ����ZD^����� J��Zi7ЈXF���2�Y-�r��=�E�s� �R� �ޚ�ryhYs�G5�^�E���2?��������́b�#���~u�?�$�����/"D�6�2OW�@���L.t���������9�H\�����^��ũAe5�+�(l7^�����Ǡ����Y��<6y$�̹�+�X��(��s�ޒ���`�ei��utV��9�J��t�.<?q�_ߍ2����ܬ��!�$q�<�u��m%����l�Z5�гc���s�� [��OR�8O�}:K�Ȓ���X�ۆ�y��x��F�?�a�/�����\Ld�w1�!F࠱�Oj��4�k}J�N [M�A��F���]��s��4�+�Ƴ����H�3���L��j����ui��֧��A�Z���99!��O���+y����O���e�j����~�Bt�fg�S�q�7n�������i��Y�3y��ZFP��>S7 c'>�����mH�2<c�R�^�黠���o%�G��[I��G?����ʐg��RV}e-S�+t�nA�ޫ[vW�V�5��o$MʲH�� :T�Y1,y ���?�eM�/ O3�'��by"�1��u��y�@��������1Ei�b�� \�K�i�;R�j@%c�n�Z(�z\Pz����^���V�/R_�.� �Zj��{�02q�Bq�_Ҽ���Q�Z��œ(����^���Ic�9癔����Fl�LK����:�4�.H��D�}R�n�*;���=�_�j���Ů�s@I�|m��'�$���`.�n��[������f�/������ ���犳co���r�wL�8���0����s�z�ͺ]Bw$䖐�P���E��A��,͐2z��$�-7>��n�&��mo�I�ܺLJd��zy��������5֣��y1�/ZM�|z����8�Y%�u�g���4�#X_�F2?Ѥ��,�g��9�$^�nk�φ�ϊ�����TQ�� ��w8��;�Ns[T�S R|ǐ|[ӥ�;�u� �y�Wϱ*�y��f�N����l��U�ñŎr���&���������x�kZ"q꤀+�Aj&���܆��q�j��*[�i��� ��P?����!��[�)�=ry��+Q�%��[B ��̃��u�I�sz�?���1�v䏥CLH�5�);E���d���!�z����b]��;F?3ɪ'�K*J��`O��� ���8ȭ (�H��;y3�y ����-A�A�Cav�ۛ �(���F�$�A��W֟ot�=��[����-��Ќ�d���=x�멥k]�ZA̗v*/-�c�4D�~�}+�/�>#���$�Z�6�0�mr�?�F�S۽\�f���o����K�?�_]����������5�>*��\Is���r!�FG�ײ�Y�&�x\���^1�v����c1�1����އ$�����:��=~�$Ջ���5&�,z5�-����'5�wu,���z��a��<~U�6�}�x3"�Ě�s��h���� 0����0JW"�+��J��`hW�������7�?Z��F���0��z��V0�QH '�����k��o�R�E�� ��kx�h��.DV�� �g�;9��_X�5�t ���Ș���rTM�{|�3�_'� ������E,�G��7{1�g�<����ߊ��(�u}9T�$^X,�8�g�L}�R�Wgc��4�,S�>��~it]eb'�,W���ׁ|G�n~�.<��(����(�N�z��v� k�ŝ�����xp:��;/_j�Msƾ ����iyo��յ�8_�*��T�s���I�.�y��G�̿�$VjZI � ��[~m����u7���i"�c�@n?�ߥ`jR��������*d�.�<��Io�� zD�\*~��a\��̘㎘�=kQI\�Vc�n���),ۏ��q���`U�H<�+��D���*�l�&9�䉔�Xι�)R;�r��h�}=�f�\���}cQ�q�窱��UʗN���ԳsK�����?�$���B}�R�������s��l���Lh~��ܨ2����+��Q�8Y�I"�V+�e@�+��˱?λ��w����ܢ�KEt��A�=G#ֈ��w�|�n�h���i��ڳ�n�ģ�߅��y�O�~"����"���8U���\�B�����X� ��l��_A�X��R��ynFyܹ?ﺻ�{�."o��z�H����J���gE����K�]�f��2nf���9�8��'S�c��?=�?E���{�b&ҥc��h�W������<�n���T���표앙���[�'�k.�j�q.�ۛ&h��s�^0�0�q�l�I��b�!�B�1?�v�����[kO�q���S���&��,w�a>FQ����v��[8�'b3�� ݹkfϼ��5�n?�y�R،m@��qX�oR;���Z6�9�_J��\���A�d^[�Qj�,���9O��ˌI�]����h�]��6�;/�џ�1��o[ ]ϻ-a���s\�Цո�߈b��L�� g�+毋3��*\��x�%�R�`�{�+���v���&�{�����O�\�B�O�ּ��݆�e;�t{���Ykq]��AcU�m ٫�A��[��������?�}�Rop5���:�k���Χ��.�ϛ=F5e�����K��)�fi�۟�{VR���Nk[o�I ����&�Ϙ�O ~u�~����P�eb�Aa8�_���NEp�"�L�=��G/!��&�/ٜ��f�&�%��+��m��W� n�^Ԡ9`�,��Б�x����{K�D3���RA������M��o��lC�f�2#r|�~�W���|�C@Ԯ�f[_:m�Dm,�rz��Uϋ���|��ؚ��eP�h����<�z�E^�ї�s���:2[8MFnؿh�ك��]���J��WK��[h~�m�N˓ �����v1�{�`}n0��@�\�ޮ�R�����P�0�����5(�fU]_[����Fp-"1ƣ�,���/�_f�Fh�P8�sɽ����e�������/"��d�/��s�����\��ā�����iY �ffr͂MX�u�6�/4�m.c9I����Џ�U_���U���'�>���>7|Im6��bϕ �z�Y�p���5��ֳ�/\�{��a�g]��B}����f�a�=k�[�@�����7�Љ�d�$z�#��}�/U��i��GZg�,5w��^��!�qTҵ� 7>�ܛk�+DF-��BI�Я�\>��I��/� :~��G�$��^����� ��^��Y���4�t���b�^���G��ErH��|�i5�Nɔn�ċ���)�Gk��qX�Z>�m�G�[�pI��}�}v���K��RT;c�lcM���,?�W�Ѡ�>��6���1��[߿���ߙ1�]�bM����U���VƼb��3��<���nM4C.[m��J=�f�<.�� �V\����e��4���|Wm��G�|K��i�Z��ꄤ�{�`�0���#�}5����n����ʮ�Dz��`9���^k�<T�0i-$�N�x�d�Ɲ�O�=���\q�\/�O �%�>L�!����:C��p=�;�{�z�=WP�Lqw�x[]�G�G6�$z�U��5r��e����-u#���,[J�}�T:�u�yY����e��+H��.���3z.�������\n^��s�\��o3�Xw@�;rG��1$b�:.��$�����Mpc_�hι]h�:|�,4�u��I��rO�[z���{9ʏ�����7J�As=��E���?���CP�i.��f#�� ���X��$Ib9�dUK�i��-"���b�%.ŏ`S^����~���k6M��|�����H��T[������"������6F![�$ע�[�ֵ�Ƴ��Mgg��i�6Fp�}��| � N���䏚�R�I�����v�i2˩��`�������\�1ԁZF�ݕ������:.�k�E�!{�S�Q���۞pJ�t�+~�ЭƲ��!Qť̪#���|Q����Hѭ�14�M���+�d���=U�u+g� %\ya��h�m-W9���z�$�}M��K�.aT;���b�$rr�#��<�X&��H���[���ڐ���4��wx9>��9�H���^�Km�OL0��vw&�'ia�kME���v��zm.#*�V�%Q��9 '=zv��+�u캍����.����]2�2N:�D �<�u����l&�x,^�$pb�-M��H�[���g�sk=���s�߭��;�h&��2���s�Vt�u���5��xG<I}1F��9#��j��M�f�U6���y�1�a�ô���9Զr N���K�0��<3�Y����-�tQߵ7GM> >��=�L<�tK�*��$�23ڪ�t�w m}ym���͎ɡ��Ǒ��s�M!\��Xy�d�]�; ��Y�`�v2��#�^:Ӽ)��e�X���H%b��:��� �C.r��\�s�%��=.�]�'v��9��@9 };c�jW��"�[~Fd}2s �����=�Z ~�]���<A��h���C<`�����FrNp~���M��m��ĥ��x�G ��n8�Qү�6v�:�R��^E�UӖe\�H��q�'�K� -mD>��:���F��� �!A=�y��4Ҵ�i�.�J;�����+g�+��(c��1��B��.�g��H��bK(��f>c�hRP�l�U����K�'Y��ԤΔY����� �9皝t+h༁�#����ˇF�LRN��r��rrs@V������8K'��ڳ�$�ɹ=�i杧�3O�qq�j�t����������FT�$���W����ϫ���DEqnna���3&O9>ՁiVz��ޏ��z�ź����p�IE�G9��Ђ�L��*�8m���i{�Ǣ1\�F�~ƿڰ�@V�CJ�9�T;W���"�72�o�K� j@ i��P�!<*>�� ?��x�l�'��E�ƛ$M����5�@0��s�h)3�2,m�wt�����g��Xg��V:��Ū��4sB́$NOЊ��Me�zd��V?=X`��5�V?>1�*���0"X��"+j��d��r2|`����_���letyZCֽ���H��q���G���ڢ��ŏ�i�6^n���`d��W���.��H��E}7o�x���:��^�c�������uʑ�ϊLy�#�f#�S�ȁ��:J��?������� �z/�G�&�/� {�b�--��$��Ù!�C�&�Ĵ��>�o��>�r���h��֦��8~�o�Ŭx�Q��ܳ�#��"�MA�2>'�ޖ����G�+��7�|�j�]i�y���}r�mih�r}kß?g�G@�\�~kZΛ4FXo ��X�Q�T��wC�R�h��=�W�:��f�tq�X�)�U�[�q�24�F�|�l��1���m���> ���/�G����C Γ3�,�sڟ$��|#�1���Ad������� � O�� ��F���t�t�\�9���M���/}�]Oÿ �_�+\-�Z@�H���۹�:��h��~a�+0 rOa�[�ҵK��}2�`睳����o�[o�����}����n��b��U� �0zU?|d�����j0�.&�y-Ε4��<�G�QǕ,��(ρ|?��e߁��j�.6��g���r?+�~�?�Hxs��4u ~�;�>��ɯ�<!�;X�<m�O��=�ձ�i7��x�g�'�O|k��i�}֛>�� �����X��WHD��^GU�%�ĭ��Z�|F�5? x�M�K;�z��O��Y�|%��!�q��J�(���<g��k�߈����94��jV�2:���F��V� �=�y��?����������0��v@�����J�?PsE��n�<����8���\�J��E�NXV^��=|{��b�:��"8Wԡ�=��kپ6�O��m�i�� ��k��ip�u�V��xH��v$O\W�x���kM).�>'i.��&�i��@�C��K��W����<�2á[篙�����MiX~�% \����l�>?��\����⓹�> �J�~\Kc��?�b]|Z��u�G�x�����Ѐ��4��=r��!�C����g�Y��̊Ѷ��c�P�������^e�O__��^>�Y�dhn��Lzm.���U5��e�+_j�6��53"2u�ߏ�&�!]�V�_�U�χ����U����C]ƶt������J>=kV�JCJɫ[G���ۃ^!���_"Ks�W0�=>�͕����4�0q��z]����h���>�KC���o!�eKK8d�PH�͜����H��],Gm�hW���ɭʼ�#Cop��"!\f��N�U�������� �]t�����Q�e�ƽ]x��z}�>"ԓL����pZK �D��r��'��/��(�=ޚ|q� �Y�w�iv�m:ᣆw���M�7��FOl��ܙ溟��#�^.�nӷ���۾�V=���i�V�������?6?=�����x[ž�T�k�x�Wl�z~��&�+�QX6X�#h;�������N��?\���/�k���#����c���h���#yA�����z��+}n=.?x�T�n�Ik��O��v���R�y�ڽ��Ԭmb*���FT�GH���h��Z�> �zE宾�/���kY]�⑭��,����r q��u�Z�j���i�e���"�0��^�ٚ2)S��ɒks��!�O ���Gohv�[1wgsgq �W�� *#F8�c%����+S���5�x���Σ�i�.��Do��� �ar����{�_*\�sx�zo��=��-͍�]�Oo�_I(�� 2�9$_���C�����ϧ��5�w6^`�첌��t;�#�)N>���#�E��M�Y����N7�j���,�i��+��f�}6�tC�≁ �Ȫ?���f�m��Q���1��u0��rwF���B+ȆqQX�GS�m�.��[H�|z�.���î���O2���}��<]x�7.[W���w[io nzs�,<W��3��?ý;������n��Oeፕ���G9�R�� ��g�:���z;������da&�4�v�/�<U/�����c��r� ���Q����<T7�V���Aj������꽭�?�� �*���9ەf%`��noğ�Uxe�̸ϸ��V �3�n�3�#�Ϡ5�!��K��J� �˶Ԉ��9`+D�}�]g#H����E� O䤚��� ?w+8?8�0G���5�r4�8�s~���?x�����k�\���L����@�s]����[^�L�u������@@���ǥb�ܾ�r�L33�3��w�ZWF+��t�:�[�$�����&%X�+T㸮�� ���7V~���[��}B��Y��H�ں;�ه�Q�����2>˩���L)$�nw��E�u�� ��}�k���5d�"��Ϸ;��yk�|c�?�ך"Yj~8��a# �x��b���} ������8A��z��d$�O��c�~/ijV��^+�GS��+����Rm��{��iV��zb�%�.챎�%W��p��ՙ��t�:�(�M�dg���/S�����f�jGk�G����318/���]�U��<D\��A�8�?�\���*�l�Y�9� �Ҫp{�>�{T�+�9$�ހ)��,�AI��u�i=j����RI�i�t�!}���UN�)�`=����ĩe�j�/�ah��-Q�W � -�)���x�Ğ"���_��Vp�go<h20�m��O,C r��#"�m<CyTw����.�Czd~5��6-j�J��^!��{�=�5V Fq����W��n'vy/.�����N;����Vl�t�Sܾ�� h��O�#���5��fk�.o�c��hs�d�Fq�ֹk;���+(�c2L�C�3��d㷥w��h���"�-��`\$�N3�A��?����C�?�'�f�����F����.�.9���=�Z��^K� 鱶Ӊ�mZuB}|����c��Ѵv��u�g��:�)�_Y7��H�A�a�i��McU��d��{��!d��ln�>�����5S����>]ϛ��f�R��q������A����e$�j�HP��+��>��ۺ�6�bY�bՖP��0s���8�H����m'7�۽L�!&���XE�k�d�]���O3��B�F{�+��Us�b�U�b���.�;D�5�WI$W� �ҹ}c�vc&����4!�y�(�ܜ��g�D�v����i=����6�6붇j�=�$�?ޏ�����!��6�2j����q[�Ytېqд`?S_&���dX٤h��\S�3/�F�~����|y,ZH���R�2�������b�#���ik�2�3�$�����8�UU���kz#�3W�kwfQ�հS�ےz����~��9�:���Ηu$$�Jc�y���S�+e���V�#'�YMK���e��u$YaզS�Oz�i�s�������[,����<����I�+^�Mx�"�_��������;R��1iaZ���a�=z���Y�9����\��K�� �$����Z�!�X���O��_t���YNNr2I`M�����g�n��)�G��@�\��O�0�����zЙ�F Q���zSB{M�>�ݱ����>9��d`b� k�,��F;`1ǥv:��~9�hM+�����iڼr��9����?��?�b'�PĊ{�m�j�d�jݽp@�M�6���酭�� �q�y����}rl�4�.:����ZH��½bĨ`|� � ���5�[Y��z�o"d1�|��}���ac}o~����Ԁ���1���[H�.�}p&���{O0 �n�#8��֗+as�����h����L���BI�����[�F��*����c~�l��L=�I�W�>�ݕ�D�&�-�������>���Z��v�]�\4��� ����zn`8��<V����m���]��:��<!/�(���,RM'��� �.w��Ʊ�de�o1���O@>�L��G�Eg�[[��:(�~���G;�R)���]�F�=�9����mZxd�R��2�~�-�<�-�a�ư&��ַCz}�BK�I����r6�#�>�4>(��df�����ZK�5������?6j��k���g��c0.�eտ�q)a���@�n)�M���MO̚~��N�+�yfX��@�9=y8�ҡ�9�� [h�QM��V�d�,��� _����sH��N������{��OsX����g��7C��u�o/�o雔��yY�y�B������9ɠ��a4z]�k_ۖqJۊN��ٙ� Y�N~_A���gQS�鋪\[A�K�����{�p �������c=旦�se)_���v�*܌!#�g�}jοk�k�� ���)���X�bH�Eo���Nj+]�w:G�{@�Xc-s6��;p�2��;s�Gz��~�%��P[�Y[�r�z=�Si*r��v��^#��x���6+ֺ���b���H�q�A�=����3���K�̇�e^2H�LsLF[�c$�G�P��%C��m�p>pPF9�s��>��̹�]3Spq I8����囑�20 � ���{ŋL[�X��+Mm�F�V-� e�8��Q��A�d�[}'V�G[��VhT��s��g�AE�8��Kx��2Cք�4������\��U� Otu6�|�t�\G�,2�O�y�#���U+c.�C%����I��k��\D�7d��8����i2����-f���E�4r���"����y��ҝ�#���nm"K�9�,Z]>�+��$���wW�7�����դ��h�W2]��۫7PU���s�03Ӛ�����J�dW��Y~��C��>̀ ��Ywz��j�Z��yb��rj ��s�]����B��ƣh�����ϯL���U��8h��V���LcSk�NͼY�Y,���\OPO>�S�|+s��R�KX^4a��^�j'*����}*�� \Ok�j�Z�+/K��F0z���`�{P�2 Z+}I������Zi�Xܵ�0?1$0�@���g��V�m?T��8�v��UG�Q��uĄ�k4{z����i�%{k=n��ѤhF������"s��q�U� ��){;5 �� .���p�^:n�2(�vs[.� O}��� ��]�I8���?�x�^��w��_ϱ��dȚ��ݴ����{z�:^�z�r�l�F?�QE�T�M��G�ힹ���h��=�0k��fI�Hv�p$twitn7�4�]Y�[�lX�����1�+$����������z}�������Q��X'ʲ�Rrr9 �t)�����g�uH��0�t�Y��RFs��x��a�N����g�}=�g8ϧ=il4K�|A]_O�n/l��j1���S#�YD<�w�[�;�5��\A�X�w��|��� ��8##"���>6_|Rմ_�wz��Qi�� �f�|�1fS�q���9�i����(��-����W�<Q��{�9๖�I�dg���r3ҥm����<Ai�'\�e����e���#c�.�G��>`�v FG�tz����O���.��F�wq������^#����m</� �{R��xT[{�y$�pv����k����cQ���j��t�-����-B��X��t%����X�b[z�����[�hzw�n4 gdd��V�qS�Ls�x9��s�/I�6��ǁ�$�e�P�X̙]�B���r��Z���xWB�u��_�Wz���ľU1oa�>n~\�=*o���i�φ��]����������w��6�$4�P��Ԟ��}���Û���w�B����k5���jB"�D�gL���x��� ��m5��ciAs�ެ�:�I�)��rG�� [�_�5��w^��|�B�!�а�l����� 8���䎣��������q����Emk�k u�u�8�6��U�O��Cw�������~,�<'��xd��=���u���A�s�rq\Ν�m�_Ŷ��f�I�6�+3�Zk�H�.��&�eۜd�x��|"����SU��7�q����;w��!ʪ�;�;�S���~��_����]R�G��ݕ�B���!�V�1ކ�įf�3�X�W����L����2��4��oCʻ�e���3�S�_�_����*�R���<�3��m&�(+�'��kj_�dž�MB���,`���k�-���������69����׆|O�]#G��b�4E��ա�����Hb�O=I.I<��ܽ.r� ��m�{9�3��{O%��Ҟ����҄P@l����4�:6���h�T�����[�/N1%ã��a��X�տ'�[+�KmOU[�k;���K2b��v�Hw�8 ����%�a�A<Wz5̺U�V��� 3��rp8<��M�[jy��o��r�%����k���oX�~��/2�7j���3�Z=KU������o&�iv��[��$�D#�A�����'����ɫ�ی[����<�����kj��0�-�y7��[{�ְ~�8 ����^hyů�.�G�4�����.������X�R,~`]�N���=�#�I�O� �_i:ͧ���'�4��ڝB`&�O�"�Y�2&F;u�N������t{�.���8<�;;�`hm�s�S��$����MK���--�~;h����������(@��=�CSu�I=:�E���~\x�G�w��sk�-��wr<�o���'��\`�����M7O�G�x����o�=Q�����5���`�'gr���z����&�#���l �Q�|v!0�՛W�Ih�-bp7�&��>M���iw<����x�O�cP�U��|3�jZm�[Oa���^�\�������yN��U���Gm>xR�WY�-�Ӌp��u��c�+� Y| ��+u��br��Iu���Ѥ�=������ŗ��+�麭�݅����ܫ��ݵ\�9�=*\���������,�G�c��.�q�2�aiq� C�#]�~�&�ue"2��^!O/a+�93�rI�kgu-јG!K6�f ��*���>WK��Y6��2��ju�.���VT�I�?1���P��¶��8�[ڗ��8d��Z����$����t��6l��X�ѕ��X7+=��]��2,y���Q��v;A���inĎ��ii��ޫ�:s���O��c�]Uʧ ��A瓓��R��A��=Q0��y �>��H� ���9�=k�/|0����Cg��+�G���w(�e�1�����y>�ٞx4�k��(���+�-��עxr�'��3��V��øʼ�3��;*+���h����>'x'��-S�~3���5�.H`7N���#l�ȹ 8S� ��SP�����7��'�|m�x��O��n��O"�.c�FT#�\s�_8���Z������i"����v���PI:�%y#�J����q$����g�hn��ӡ�/�/��U�;��wT���$�lE�4�G0����� �L����)��zW�����xR�kw��-����e�A���dpM|���i\�v��Ͽ_�Cu*�b��6h�2pF �cҧ��G��a����������wo>���)p�>z��A�w|f�����}W���.�iqcy��;<֗vA����0`@;G� y�� �|��p��� ���(���!����"�&�ÕZǾ]��|wcmi}}��m���q �N&dD� ���W�~�&���<Z��?�^�)��[k�<�k'���9Q*�e\g��u��t��XIe���T1g�uC�?x'w�C�Z���X�������9�Il�)��!�d`���U�YX�3����5�v�6�ot�z���IB��ˇ��l7�y�0+�-��i��H������W��_�?�U|o<-�M��p��r��)'�=k�� �[M-�ĚN�yZ�����c�{0�l�6?�P�<�Q>��� i��Ҿ���<~��J�[I�4$���5�ٷ�� �K���\�[�|i>��zu����@U�-ّ����m�W��'��atd���Y��VǷ NrMj}�k��wv/����G>e��Z�p;�B��?���_���Z����h��+ėZU���b��2ӼC�]9�6:��*r���?,�k��7���:t�����B��4��8�Rlf��2�%9.�o�?��w�����!Ӑ&Y���jȧ�]�;W�k >��{?.L�V�g`���6���K����%p'���c9�a@�;���fS��zJ�ЈG4�"�m�5�oxCN��]o�V!cđ��x�kP��;g3B��C��ǚ�s{f�a{DU\ ��Fs�u�oė��Ku$�c>79x��Rq�5~���iP6Ԛܓ�&M6mj�[yh�I���ι`�X�G�ZMsp~_��ܜPQr�\�Y�A��+nB��2���_�^.��q��_j2=�3gpC�P���s_ ~]���+�o=ݙ;�p�Gi�cO R�v���+��ᧆn���?������K�~�E���#�5W��1��g�O_�����Wy��Ӂ��V�WI�~�>7��i�<=�����qߖ���|[�σ�{ 5_ ���ra�`��`|��W̿�=y�]}�_�7tu�w`�rÜnR0}�&�Pkm�lҿl�} �U�,r�q�;�ی��x���#�{Xu��!�)>n�i?Q���ҾM��y����ISZ6�`�𮧪XX\K��е�*f(c���'���֎k�%E�>���쑭Y���ø��1�mlO�2��ox��U�-'�ΰ��x5�b���+�/f�_�\�76'��_AT^I$��'oOj\�CH��i�'���K�<G`���[RI��KB?�s��,�I@�w*�.=��?�C�^��m�"ks�b1�Bz���E�e�W#9'����ӇUmJ�C.�Y\|��H�LV���)�R���.�#��6��.�Z[M9�Ci�wh��jxcºtZ���Ld;s ���A�� �W�x��-��t�6�m�����{�#�kV�K�GM��߇�&�h��X~j }���W��ߧ�}o8K��۶����p�@u>�8����|@�t�����Đ�I4q�:��>j���#�a���i"����h���O���i���j������O�(�k�O���z�G�4;i#����M#���ގ1>F�� b�����Ըh��hڋ���-�C~%A��G����?:01_mj~/����7_�����]���? ǻҿc L�k KL�77�/c�=:nT������\�s��'�;r+�~x�᮹<V�:��A��S�B��Lm�~���P��?쉮ɳJ��uc#�ʄ~�W#������[���Q���]���7Z �w.x3��%���~|x�b��ͮ��7'��H���ýdx�^֭���״_�.���4��i#�|�e�R_~�z�C~��6ɽ��^3����\Lj�cߌv � {A�}з�D���h�w�|ӵ�;���L���Z*�6��%\�*8�N���!N������@3ם� �5���㎙#,� ��U��e<S��|�J�u��t�����ځ�Ri���I�Wdz���#,����:,n�?���u��jWwL|�)�k�� ��X�ٹ[�;�fDв�Um˜�H�9=i4������s����;��O%��O ��H���8������me⻫t��|��r?1^@]:oZE�+G ø84�+�GS��~���qy�ho�(4E�0��[ɞ}�5��B�9�1qa:�0���T��-y�z��W�Y 7�i ����Y��#Rs� �4���o��D,����b?1YW:��@`�Z��=`��ڭ�����k����i�js����|�K[V? >)�,��<K(=ƛ*�� �A���ϗj�?�q&X�*ϔ���ҽ.����t/�55�x3<Q��N+cO��>2�(g����{\jp��1��s�z���~yf��=���,�3Ǹ��b�+�2A��WX�֛f��G����ixG�y��u����EռjYa�#��rW|�pq�*�ŰgW�j6�;i�ׄ cw��P[]�=Z?P��zΡ���S�H��(���=R(L�z [�v5���m4�%�¾����,�r�+�N� b1�k}�H��p��μ0��D>�����^Eԥ++m�&�F�q���� ��K1�o��S�9�X��,�#9��ڲu?�=��څ�]I!H�شP�yl|÷$S[x���O�j~�"l%�����I��C��K�'r�:���-sOt�U!��F����[�� O�{I�o5h��,P3����(9$�+��4�O�m�4m*�lBw���J�F���3�wS᥄���ίh�,�O �Ǖ�s��{Ղ�Usw���Q�A��a��ld}G\���mօ�Z�6���Q����VX��A|�秭r��B8./�,g���$�D�y-��1���u t�{�z^��������ZR�R�P�G3��\6�7`ۜ���߹�w`����W�:���s���!ݐr�'�Ҵo>ϩ[}���q*��6X�#��"��'�=y�z��#ԛL�4�+�T"�8p�?(��Cq���0N���� Z�=VȤ����L~�;T��1�בB��VPڮ��߮�$D-�h I��cdt���R����Q��C��d�Е�40���{�������E��&��`�J��3eq��rKzr:VF��h�E�����5˴q��d�2t�\��d�҅���#ե���Q�Z|��XO*O��3H�vIp1�5��ZǪ�O��|�A��R-ة��<ci����M�j�?�%��� P��j�d�OA�'��>����v��xn�̷�Z!',<zd���/WQ1C�_����w.~�p���ς��H���u ���=^�Z�{c���]��W���>��=+S�Mex�\�izF�,@+\�K9�F�#�z��W}uu�g���M ���<�";�b)���3�^�X.6��!-�j:^�g ��xL%L+2��e�s�8���m���T�nO���@�{6K�$��߁R�^k�{u[ nг��1��� �l�n�Q�X|-en$�u��*���Eʸ=�ª����u,��ٚ�����u��������=2�O@ �x��������- ؈�^m�������w�B-D�]i�v�.H�� ^#�K��<��b�k�1��_1I��NՄl���� ���1�Ҙ�)��F-#����H����r����9e<|�/��]���K�t����"/ *����c���N!���I�P���U����c������ium0>�>��{X�d���ͦ�y�����8GS���Lx��)%䍩>��\�!Kup%�U��"��Ǡ���D���"�X�C�Y�E�i��$�3��SIJ]�*t��_ٹ25����NF9 �î�5�W�Kj-�K$����Q�C��+�s��z�x�弙��;X/���#��L]����un��# q���������u�7!#�d�c�$��^�^x��K�ja��}V�J�.�b[bа=��w��qT�YS�R�\7�M�b;{�2�JX��$�GV `dP����֙��5��ilu5 Tɞ�������L���ޞ-;�S�c-ݵţ.����~S���ȭ)�s%��,�+���ʴ���\���� J謴뻫t[�%�0-�RҸ�L��^}�vFU��d���-�W��?t��$.2x��V��wwGκ�nRC�-����ɩ[U�4���t��{�/�K(�U���Fx�ޒ���<�柳����O�!�y��jY�����:�d�R~��2��e`Y|h��⫇��wH�v��v� � @>��]~���?���957��Z��a�t���l�\:���} ���z~�j.a�J dO��§!@��aP�ݜ�Kc��>?�0ڷ�.mī� ��/��s�*���?A,�M@(���Ӽ�[�߽$�ٚl�4YX�`n���V��Gs&s�������Q�^��ߏ�TF�7�F g��Y���X�ů����cM�.�,|+Z��G�y�Q_qN�!�Nv��?©�ڛ��\4O��J��@�ZV}��>C���Y�@�w�5�`^YZ_�}���^�������E���V���K�.C�ȲE�����k���%��w@�N��*G8�@aVb���í|�lfY$�����d���Rrkq��5����{%����h��� ��t�=�:���zw��O���P�Ʒa��0Kk:ɏ��ƿ(�=��~����{�N����f����Q�k��Ġ��^�w:~�� ���l,�T��K�)DZ ǟ��d�������?P@ ��NF9�zu��~�����w�`�o�|��F�I� 跖ǘ���ū���D�F�o�h���e:�9�}�=���ǚv������ c�"fP\�s�9��� �|�1Z:&��s��� �i=5)�x��>�n������Z��l��C�ݑ�����P�� �l���k������Z��q���Ҡ�d�o��:��#`��y��=��'�/Y"),Ѵ�3��� /��^�[�:�Y��/��WΊ��I��±�ګ�U��s���j�f��|I�^��u�gXuPͼ�œ�C�_�1�]7��_��i���T�n,n� �a�i8&Gr�n�}��|M����y4�R�9d��W1�nz�ف�G�O���}M����h۽�p��� a�����s�4�&���Z���H&�ѯc�͂�X �������H�J���~�5;�#�6�~���^\�GZ��*�G�Ӂ�7k�tO��0���;/\xC@ya�y!Ԗ��� ,��F/@ݎ���� _]k����"�ij/���1<&n���v�f�RQZ�덯j�c��Y�lU�(��TA�s�S���?xZx#U8"�}@�ƪ���kQ��̘�i2�R1� ��"��+��Gub��D���OO@8>���St�v�M��1���0�4�#���N=+W�Y�bq�1��t���]��U�ǧl ���42�/d�{p�ƕ�s&��ĚU� ���Y8����a�?vOQϧ��/��;�����Pk�d$7�$Ѱ��+s�Z��n<�kH��(�`����iI �2�`��p}k�մ������v�U�y+�'T�DԴ�;�F�?I�J���&E�Z�C�7����C�Ku��t����FA8�D�c>���|4MK���Qw}-�[�!�L�1=П|t��A/�`������4��O^�O^u?ц�i�}1����be�F�#o,}��j��]�G���ش�.��B�y�`�;>dn[�9$1W�-�� ��h�,I��_2I"���H+�q��6/ϭ�:{k{��i/-fd vA������ �Etzw��i4~5�m���s%��;B�GR�J�!� О�]�s[�c���%��8��r�K���q��r��Je�����a^���6���,���A�i��l�T��z�[צ�+� u�.5������Ӵn�B����$��JQlZa*FvH�r1��*���|��O@sɮ���� �Rnmb�2Iq�Z�u=>�HceA����j���X�a���PI!w��v�M�ȳ��B���5<vqC!v-�A����l$I!o-���a�Nkf�K�ԯ,-�mK۰ţ?*�� �rs� c�%���|L���n��+��e{p��v�ɛ������,�Y>���5��z��ٷ�^�go��CU���)>��of�@����G�-�/�- �N�g�Q��ɦL��s�����TjzO���g�K��4ϓL�-�59��@���^��?����u�U�t�n�j'@���2U��p�U���֧�i���2���D��x�fI��{��<[�/�ұDž"����K�?��_z��e�5�Q-��YUBg��=�ӮO&�o�g�[?��[ZA đ�]�@��d�D�$ښO��G��W?u������V2PI��]5߅�8��?�$�:j@��ͥ��GVeIK=G���.�J�jl�L�ݷ��U �5��^9�+�iF��"��4�CG�R5g?��6�r�,��Y�`v+��K����3[�;�-�����EH�����Fpv��VM��<Es;�����&d����gꚬ��� CQ��9�������5 �Vfx�H� ����gz�S}x>��o��-��A��E|�t�<��h��c���q�O����7�"� ��f����kq��~���&�L�����A�k�~ζv�\w�����,�����居^{���m�Ld�)�X'ߜ�V�q�䓟q_W�KD���D�+��m��Ѫ�9�gq\g��������=:X��Wg'����4���i�zt�(@��@�B�8s��ǰ��\��|�� i�7�����n$��D��@'�����l�YB�ך���Q[� �n]��+���ח�H��S֣��ԦҴ���ifb|���l��6��#o>¸�Zҗ���F ;/����~�xt�sU��n�IԌ��Cu7��j��^ߵμ���"s���� |�r =k��Z��_�3�2����WwP0��'Ns�T��jRiP̞a���c��`�<�FqӵzT�TkvqT��Gy�x���V=�ց��Y��J1B|]ۗP=�G�^��.�J��!���cF�5Ox��u-J��uQ$�����rY_�.U��_&Z�n��噎U\�C�w������x���y|=�^Y�����L��VH�(���J�{�y����$���=���;]_���αg��hl&�P�ʘ&?,��� �����~�<5�5�����WI��Llݲ����dW��'�]J�X xwZ]�V�c�N�O7H������!�K���:�J�i�kVv7J��d���z��F3��>���%%sD�R�Y#- �{I�w�0Ml��7 ۈ�z�zoƽ?��:�[�鋦�>W/�zn�l�� �J��t=FY��gY�!>��IGvB�z!��Ę� �N��sێ�J���p��Wj���?\���6X��9v�[�NI(U�s�_·�o��q#�ʶ�9k�������U��]�ƕF��o���i�����X��n`�˔�3�����ޗ���#T֯ẏFӴY���B1�>ygaB��G�a�+�p��lV� �" �7R2�c���t~����<�ڷ�"���w!�r�e���:ਗ਼�N�W;i��mY���@��$K�{�Y��R��2�� �`{s^O��_Ao��r�fV&��*`�##8���i7�I�-�?�i�[^����q���ц����@�� ����ݓ�6��o1�L�gÃ���qY�7mۓ�)���|���%ن��(�\�g�>�Z�:=�֤G| ���{�^�������ٴ��,�����r�x6����{Ɵ��$�P�=��p����d������쮦��>-��S�kT�$����ZK�q>� "�� 18c������-a�����Țs#p3����ɬ�i�V��Ei���md; �X��V�G�5px�B�|Wq�jr�iږ�� 婋8��-���]�d��s8��H�{���6���{#,�2^?�3�'�=�*�C�}�[Z��W(^�<��I%�{�+��5km5�+�����Y��fV�N����d����K�izh����3s"\]ܲ.IEW���{�������;o������v~8�.��M���,��f����\{��oi��E�,c�}� #������U�zωe��WMP[C!<+�q*�@�~��0��5�2�&e�.V��?Rs������>���_�<�����/0�%��"?\�*ʔ�#�s+���ܭ�<{�?� ��5�m��vX���^�gH��9/�����"yy�����C�C<Fo�_���Ձ�qPɤ|V*�G���+cn��A�ω$�t�e��\>"��}���>��U�.�W��0ip���l��G,���KE�nw��ӃT�X�ϫ��k]=�>����Pi1H�;eBU�o>A�A�hm��������/��Pn�+̾��P����/�-tmj��ʒ����J���`��:��ͷ���a������kK�,u�'˕0�$��,88���b��{�~x~[Cu�����PL��Ɍ�,W���SO��U���h�_�a��ԒH-o ��h��wD����N8��Ҽ/� Bj_�m^�U�{Y-����,bP���9\�"��#y�W��\��x�X�����_m��v_���~��)���w���=j�W�O�����/&�>�Bd�\��>%��L��D�z�>f������|�ܤ.q�$�N+�������_jau7��:���b���2�"���Z��R�D� Ҭ_1���t��>��nax���(��t���G�ks)���4����7��}rr8�5��������淀"�[�3����c�ˀG95���}� �j\�e�yA��qT�;�H�Z�v���pHT�г���j��\�Y�ge��l�� e�Y(��l� l���P+khA�&/�O�X�ذ}�Ğ!Kk��j�-n�IH������X|�NG�ⰵ�뉬��[Z���V�M�(�1�!������W`��Z��<�7�C2�G��e���e��8��F{��)��ng��]"��.�.��ʂGSۦz�$����qg�8�����~]�c�I�����k�QX�����u IY�5�|��dg�������И Ю��/,�mu+u���{����V��5[8DQ�:�����8m�&>Xa�<du�g�ż�� ��[[ڼ��"9��2�����A֣։���������2g�u(�,������N8�@���z���-ͽΟ�e#��[ݹ�5�#s��? =��[k=fYm%u���F29��c�x�N��j��젳��h�E��q:[��`[��0�pzzi���t�מ���Q�b,��?�dm* � ��Qq��o �xY`8�#�RD��)��A9����e���'Q�G�u���/��Я��s�O�?N��=���m}"j��]&X#�`��9#��K�z�+[��{�Wɺ�t��ʹ ,����}�\�8��\���Ju{y���ћ�'_����x��xcĞ�ֱ�?�n<7�����J���g�$��*0y�Z]�kډ���H�l�2_B�&I��������E(���DV~&�Al K+�,{IB��I ��=�5��o�9��4����He/-��>e�@�b}Z����_l����AȚ���X��2�q�s�1T<Iq-����v��Mi�{������|�~B����˪j���mWB�-�Cu�w�{�$���#h�R[#�`.u$�</q�Vz=��I'�+h�<�ǻ`0:�үE�ؠ�3kSK�YI�M�8v�K�Z�4+k���Ю_k��#\A>]����rOlս*_Y�.#��̓L�F��s*��DY �ʌ���[մ�]͞���-���Z}�sͅ��A8�*�2���c�k21�/1���E �����`���ฯ��.�um�d��4����]��Ō�9鞵���e��&�-�G7�ViL��\Qp��7.�|���OG�ܹX_F��w����'�{t��"n��H�k�Was��n�x \c�`��Zm#F��#���6��������X�����H�&��5=> ��,$��09V�I��ҁ5[��i�$� ��C�nR@��%X�����;V^�ss?�5��]Ӈ�Yc͏��ltO��Z7Z����b��R�dŧ�o" cS�̓�q�;t���FѢ���K���q<A�ٰr0s��i�I&��k��myISmcx��_P�y9�MCmy�Y�y0 W@���z�~�ps��6���K��-���;�:�p��o�H�\��Gu�:��Y��g��"�;K��|2��5��#;�I�8<{Q�;�ψ�!�[3ꖐij�/�jvR���L1 ��W^�H4�C�ZO�KnmRB�W=22I�=q���NӅ��x����y�`c���#ۥg�=���xv��S�<���R����h�f�3�-��wkZ�z���9-�,I�� �������-d���,�=2�g�[�f+�F����zT����~fn"?_���rj�Ճ�#�,�"(�[f9?('!���<��{�x,o��l���-"�R�2��*�PN3�p�o� �lEƯf�۲nK�0��=�c���?3�Κ�X������V���]��(3��� 5^k��;���w��[����(X������� )�2o�:��{y�麶�ko$�-�9�3�#����X�^��V�X�u&���m^�;�����ie.��,3��֖��_ "����Ѯ-�2Of�o�d� u�2;�Y��b������Y�;�ݠEYbC��b�g?�O�7�`�8������y1;lb �Wn_q9#���]�� �N���֮g�t�v�f��P�_�z��\����;��畉�8�{�;j[-�7L�埇u+�>V��,$��<���ؽ{����N�j������_*^Zi ��𗍥Զ�!#AO���|��y=��$��a�,X��hu��6s����?e�_i����y$w�l���o*葀C���#*8 �$�u�o��R�5��Q�:�'�F/}��OӮl,� $�۽�E'��Os�4��ګǺ�����]�0�:*�8�\��ׅq���դ�c@;�2O�\�Ƣ�ǹG�Jދq��,�ƪ�d�HC�X,� �x[]���-tå�ݱ�x�d�G'?)�9�TW��ǐ��ɿf�RĶq����ǣ�,�_��J�U�T"RA�9��O�Lm����-!Y�g�%��^�������cGӠ��y��X��� bߥy���h,䜐��R���8�犫��j�D��z���� �e�9}��GfM�C�o�߲O��닫�x��Zit��e2��w��M��������r�-�2�῍�u���[h��5LJ�� �����@��&���/Eh_������i,�eP���v׳�!���s���SŞ����}*�S���qʻ6�@c�'#�Z�FK����]�0�k�R���� 8�k����@�3ផ��a�7�5Wi�e�҅gb4��#L�I�����χ,����?D�J�2m� ��n�yS)����%�O5�~����(����oS�Z�[{Xt�{i��r��U��嚉o�A]y��6�����T��u�uX}��h���F�K�I曀G��<|�*���l�W2�+�7��f�����E+���qH'�x���� ���U���w����� �zr�y2�(R�[pF9�yW����{�52e��܉"�lG�����y$y��Vv����ek%���.`��ƕ����8��ϭG�o���j(.�Ј+��I�|�}��V���%��Y ��}�1�ާ[��c�o8�c+FW>�(�F>��|=��;q6��K��KG�M��srg�|0^z�Sߚ�t-/��Ua6��ߏ x��WJ��9����2<���u��?��1�B�]��w� ѢA����m��5x�%��d���y�-gh��;�`AF>� ��EG]��9o�߲�Ž!����MZ���q�N��P<��Яsɯ����"��E�Ol�y#*��#��^�����������x�M��(�o%��Z�Q����6��y3�]���\x�:k wJ6�H ��4d�L� ��~��/1�4|us�)�l��Q�w�F3P��u�HĖ�!a��lV���:����A��:E� �e��#��9+:���t�K=sO�����Q6s���)K�%$ݑቩx�+��v��D*�{���9Qޮ�S�Wm����x�be�Sl���^3��>'�:���m���8n|õ>e'�q�֮�,��`�Lgo�=�J-=PI[FzV�q)����ZF~I�R��E$;,k�wq��[��g�!d�Z ����A���p�L:��}��O@8�k���iJ���oa�)�xK�W�\��3oF$�\���;o��>��~ Ũ6�m�b�7q���9!�u�����~�ѿ�A��,<C����:�'�Y-�F R2@��?|���[e��R�,������ֶU�KY#,���7��d� ��B�}��n��{j���~~�6/s�kZ|����SlX��[�g�^I��~�9fn�����H����q8�s�x����z���Э����\�!W`�m��p�GZ�ud�홇��:���v:g���Q��R��W>����O�=����K�Վ���oR���=C<�n}���|����=q�4�a��2��|����2;��kS��ռ���3��s��OS��j��\�L���ܐ���g�eR�B�]DƤ���B����G�t�^�c�{�5a�ede!Xv��h�����VY7:��p�8�q��5�����(cRv�{gVNo��P�]�H�[[�$v��~�S^��o������kh�d�q��|�Kz8��U�]�A�j;Kf1y6~l����¯�]��?�k�j�w�4�u��~�[�����bw��T��\u��)�EjtS��j��<K����4�&��Z��}�h�s���=W�~�x��W�<��1�qk!'�$�A�+�x�S�Ӣ��/�d�fQ�-ӣ�q�!����p>xw�F�ws�|?�4�lSXұgs#z����H�����h����g���yV�Ҡf�(u{����ӾК�K-��Zb1#S.�}1�ֽ��^�?��~'xet�CM���NkFt"�QF6��F$������&�w�^��-��`��Mc���,�AI�7x#l�WN �����W��f�NК�,��-�%A2� o-���O<k��Ӡ�{]>�K�u8[��?�R7c>�Ump���Ŷ��5���c�{F�2w��*G �~��b�Mr���o��R@��A��s�����ZXɖH|��s�31��Җ+��@!�Nyf�+BM"�K��8Z8�y�:$s8�$30�*;k[�Oٖ��̐��w��������L�Qr-�X[j��O3^FB`8��y��&��7j�|0ͭ�@�n�T,��jv۱��[���W�[ <�R�фѶ�n�-�����V��.���D����#��ڳ|�)X�;Q������O��7�ώ��'���67�Uw���Ӹ��l����F�V��;g�Ť^��4�^&��7B+��:��_%�9�8'��@��ݜdy=�B��/�[=IZ�&�"��d�cУq�:W�,�;�M�~�|3��o ]�ZΫ��� �Aq8l�M.�L�?�'�<9i� ��F�{u�K5�����p7~���@���ŏxj t=ƺ�v1eZ�i7��0J����EV����k�O>x��� �^}�)�+))\�s�������+HӬg�K+�<�d��f����<q���W�Ij�,Ө�B�?�ܷ�;~���_���Z^�wiQ�^E��HEf�{�������x�kk�e��c �D���s�We.US���ֹ�V2T���M6�C{��Q���-��md'|z.��u_Y} RO�[��L��uh�1��,���z�A��09��Zv1@<�)�FB<���v8$r�ܵ�\=W햑�R/1�R�`s��ڴu��@�ƣ�r�w'��fl�r��",��n�$'��<דV����A�Vv!�O@��G3��V���麣�;���f�������<3�fn��]^(�Iw��E��:V�i���c���=��|�o��+��l��p;W�xo�4�Ҿ#i>����ĩr�N���λE� 9#��ݨ�ƛ\J�<�F�Ԭ���kZ��x+�aHF+��wt��k��e���w��Ͼ%�8Q����6���{I�_�xn�U��jzm��}��þ Q#�(T�k���:��5��� CI�6S�ZٝF�����y�{םV�2�s�Bܶ�D�Nj�x����Z�ir�o��xJɐ��Iw��N����7 �i�c��V~���,Y��H�2*�\�����r�<?i�x�-�K���KȢY np��J��>�����|;�My�xf+��'��_}�A+q$���f,1�q�1�+j)��{�3Mo�7�n-���F#���"O�F�;X��{�ב�k�j�WBm�]��m�Ge�P��JYԐ:��lW��]��nH��SKB�[r�T^W?"�,6�$g��|�Ok6Z~���^�l���ԯ��6V$La�r������iE���rjmk�>��V�^���~f�̳�us���J�&���=+����2O2���Ȍ(�`t��]�Ik+������tHQ���?�n�z��oj�]D��w:���Ͷ���}5����DH�p�)��ך�akjpN��O M{�[oiKnF�g�A"� �X� ���O���+A�M2��e�����B2~X��<�z+�Ѵ�5[����I>�s��U;����֓,�$S�ك��t:��w��4��fUS�wg�z�Gբ����Hج��fIt +�3ڽsS���Rmz�I{�[h�ɨ�Ϋ���A������_���W��6M�&��"���v�6lc(q�q�`v��_Q�g���?����6�� \�f�����/����]�0��l��$�q��'W��Ǵ����nk#[�o<'������x���l�[\k�x�,��� ���I.RU*�30;���8��ݤ��k�Jhm�9�,$-ݤ��=�&�eurga��²��Q#-�~}k:�F�bDFV���:Fԭ����sT�)��F,�G�?�}�0Y$c���7�ȹ���%���u��\0���VdFg2*?��!�F��l����WY��n���ڬ�����5�>�n.�0/%A���ۊ�Q�V��U�K�-\�lӳ��(,~��3�H�Y�,� ��om� �ᔌ{��:�}SP{!`ڕԖq�eHV�÷WN穭���3�>���Qpq#�@�?��#h��_F�&��,,�n|r�il�--�>^�le� l>}�jx��w�i�Ƶ�5�"(c;Go�w�ہ^�����y7�;��Q�C���&� �!*\��~k�t?xk@�F������A�QH�=x�P^ϡD~����d��z�ߢ:�Fõ�zn�sai����ehH��4Q�I�c��ZMk��!�����T|�7*�~��:�x�ڀ}2Gkf!H�g�߆֪�j6M��(�y#9�-�R�ﷰ�5`�>#� Gt"�oe�"���x_�A�#���8�ZȚyu 2KK�M7Q�LI�ܼR $tN a��Z'�t}~+�t;n"��o8 rs�~�Np85���M�-������R+h�F�����i����y�]2=�+&������n�éǯq�4[�m6�\��G��R ��n�2�r0�����c�Ҳ����e��x/�Jo��X���\2̹��3ߓ]F�����;v��m*w���A�e����ь�ҋl��E&� ���]���ÇqvB�@�~l�����,���%�I{�BKi~��tʁ���t�p��z n2���K�?�4�,��kk�X�����N)����}$�֗�\H�n'ԙ>f�pr#PX�=8���Hfo�uMI�Ye���g�E� I��������>�$dg)�v���^��]v�X�����R���&N �O@q��%��s�겾��C�F���}�r�%vg�:1ǽV�o ���Wz����9[d �}̼mt�p2s�Q�ͥ���O]�Ԣ���t�ѕR BN82 �ߑb-"�^��k8�t=fC�� �28����c$�k?W���N7���t�-OG�5�d�y�w>��t�x�ki~���/�v���d"g��:���J�kZ�G�-J� U<I ��=y��wb4xt�.�)��@�G��du@�����s�T�tmHE�io4;��k��ȭ$ .�Ɂ�p �@��-�u�i!V� v��C|�(�w�O^��b"��,,b���:^�,�*��c }� ®;d�ҭiWw��:}��F�mp�h�.%�+m8�z�g�����s}��O�X]2~�{��`�=I�W�!y�&��a�������>axR�L����A���*_[Xhw�a�ϯX��yd��H{�rNv�ӎǃL� J���s\�B w�����'��}{ի�N=Nk�B��dm 2U�@���v8�����.�R���'T��b8ЉCcf�#������l;�xN�k];TD�B��C���2��(��8�Xs^���m��>$����mw2*`�g=Fy�Q�׳�f CE�����6�K�؇��,���ҝa$��e�������,���,��{���'P+��wm>�k{�jZ&�;�{hg�]���ʪ�Y������ >Im��~�/Rh��*-�9%IR�x`�=6�@�ᶟ�~!�0 �\W� ��nm�I��V\�VvW�ke��W�#o��kR1�H���ǩՀ��'��`ږ�2jztҏ.��F����c컔�[��twi��#�Ѥ�����0���۷�)<"��mGM{��?j�u A\�<*�p�}kKTּ5�j��5՝�u!m^2�r�21�g=sHh.��?�۵�VV��.E�x9���}+7H���f�R�$�-�m�)���9��Q��J�uV���/�s#�G.-��w��8�4 R��9l�����Wo&+F��'i��*�J5 ���N�g�3�IK*��:{ߴ�Ț]���4���Mԟe��Qܠ`^�G����V>�G�'�=�Z���D�f�,i�3{z �s�(��c�݄����{��ۢec>�:(�i�>�3G}v������ȁ�$��O�c�|A�i�ҚU�� ��Ј1��-�����4�\��J�Vv��Z��G�8 =�ϥL��oG����D�,���$��:�#��k����$�5meD���J�0ڗ��|�z|Ű;�^���~��[(Eݥ���2�*4���"��o�'w^���s�M��Y��k�?� 'Ȯͻi`��cMqt]kR����U��l-��oq�y���s�8\ē]����!Z��-J(�ry�����Ó��^��ϥ�7�z��6�Q��;��YN�D�?y�I@�Nj��o� J��)��+`�\s-��ʐ���2H��@#`i�v6l������/o���ۀ��ĺu��۩o�l^A���G��C�x���Əm}tV��|@'�����$���j��;˗��8hl~-�s��x��O�In%`ǘ������|@��$�����-.���|��L��Ӄ�"���j}��|C����+�=��go��V����f�P����zzt?=s��a�=Y�}���a��K[}~)�y��I�����ǥoi��6�F�l@mFOC����dd����F9Mdž=H�_SE�O�/ė�f�X�ixk�T\�w�����˧�?ᆧ}j�=��2)����J�n;+�|�u�Mv8k�D�]�(c���矯�W} ��%b:.��+Ӽa���ѿÉm6��}i4�����z����5�������=��"�E���+��+>�쯦��῎�X.�%�1��2�8�+>���y$�'�BY�g,�ORX�I��c�kuas�����_��~�]fS�����{\[ �����\�q���c����d���:{��b�x�.��C{���@��8��A\�\�v�-,���`��k���ȭ��o�;����,���ڗV���� ���`ԩi�[��0��e�`_��Z�<�e��f�7j�8��J�`r9�A�5�/S���X��9�����Zm^_��}0�T���H�n��� v���%�h�{xs�ي�� I�`0D�{�ܫt*>���>����n��_��iwgq!D{C�8�IC�HR��ӎ��~��x{�� �u�wQ��II��^�#\�X�ݒ6�@,��1T���6v����H�O��Ʈؼ��-��'Ϙ��X��1�=+�o�h��9�#�X[��LT�e����r:�_�~��E害-�����G�R+��#�G*O��9�vC)�$pk�<Y����f? �K��f��[���4�u�m��V��y1�}k>�J�N'C���I.���d:B�uq��Q�[�z��C�i�Vd�2[��F�����V�+]���7>D�e'��G��'����E��A��ip ��49x��O-�A�pw9�*��bz.���kvѥ�����3�ar:+I�<g�k�O xz����� A�t�`Z�]2g�v�!\�̧�l��W���wz������M<e�+�ӭ���L��4���$�Fy���n��(ݓ\�5��_��Gi h�����&X �pCuJ ����]ں>�����G����ߊz����h����8ܷi�@���} y����[�v�*��ř�m���-�m��*�A�v{��^K�gZ�5x�$����4�]�%���4��ڧ�����|q-�çh�>����e�U-M�JD>P}�O�f��t�*S���|X�}��+O�]߈!��g��}�.���<�*�'�|�O��/%�kn�z*�;ᧂ|G�?ⅆ���l��PO:���ȉ} Ǯ+�o|!�I��D��{V�,\�څ�h�G_�s�P�Z�>dݑ�_� M&�-����q�)Qq�:� �q�r8 꿳m��c�V�q��wp�ݱ�>V���W���|[���'h��o�~����p>�������� ���e�-�p����Kt$dŁ\�u\Qq�ާϾ,� �{×��!�Kh�Ķї�1���/�|9���u� �}�c,��pz����������l�:T����\�'=��?3]5���Zr����?XI"�K�Cp���&��%�����s-�?���/5�N�Hך��e��4�nb}�#{>X�*s����_�< w� �4�7L�ա"-֗RC����1�m=y������^��^��"Vɚ}49�*�k��[���7��w� �M���H�膰�[�/S#RԮ��4��R�-OB�@-#HW�|0�>�>�on�Y�����HU�FT쌱� ��=k�M_��ɾݮ��[����<?�x�E�U�nWv�rjv:|�3]��."ڸ���L^b�&�得gF�ӽ���?��I�]]��;M�r֚�q��������/��ڀ�u{i�V�t���K`G־����U��vI��H-�3�]�K�VT���S�6�n�N{��M�o�S��[m[�|9:�Ɠ39�9�[�v�U�; ��j��8�8˽�~����t���M[�>!�.���>� �G�I��l1���1����G,e�����\}���ʛa1$Y3�pw�9�2q�=+ꏉ����8����4MR��I����l���x����czֲxn�W ��+$��n��8��m<�ӵU�i��իOތo��1��=$�q�W� ��w�%��I��X����V�8�Y@�5�h��m���TW0[X�r�^o�rd�!%�1,�'8k��o�<��ˢ�6�dU�9�����?) �]w���x4��.�?|�O�$�bIv����g�aW�rmT_z:)�뤓���{�-u�� 2����F15�H���Lq��Z�|yy6�����8�/��y#�y��5��X&�A��R���e�n3����3�����]o^�uҴ�cnF�?�|�ꣁ��\�z��*�H�Q�?� ��6���n%Ǜ����l�q�9�� �/X�[Ѵk��-tMkM�"Ӧ�Y��!P��6K����J�|o�n������ ^�c���f���|%u��s]�68���@9lw#��4����j����Q�NY��Yػ�-R��Tլg��UWA ʺ��`ÃǽGk-���c>RH��t 3g�v�^��MJ��]������-5F�\�a�@P�W����sѥ���h��$#ξҤx�HA�S�<��s�t-DZ���j������gŒ��Q^�t�.H��'��{՛>�e7zT7X�����9]�@ϥ{V��?�����Z;�V�0��N���'*=sN��[���f���iQ���,YG`��h���ing���]?�4��o=��Ьc�0�W��NJ3ml�q���5������}� "�#�tv�����n� 8�F3���O��������X[�;�Q# ��^2�]�i�O�O��WVE�8cB:�rG�Y<���m�_�k�-4_?���[����o�NO���{+_!Ϋ=�٭��˵�*�u���[�P�����V�$���&�ӯ?�q�|C�k[`|�O��7g��:���<�L+կ>XG�=���0�s�>iv_�+i�~��m@���د�|��*�)<�����]���NU};�6��ȖV��py `3�S~|�Njn4[<ni����$D���� �� x#^�e��d��<S�*��j��"#��{X��!��WZ����T��k�&T#NI����T��� �/����w�ߊ��S����ɹ�d3l#=c�A�z/��iml�~��[jM �f���ҩ������u�_|}Ѵ����tmcTX����AtTy�\NkO���7�|8�d�S_j3��Ӯw�%�?(�p��<o?<]J�����c���U/N��6�[���k=Y����.�s�,��}��P�"��y~����� �w�)����L˸���L�#$c�� ����Z���MY�m�|��1��s�pkv��:]�*�f�qc$�S�V�'L�)g8�2�E̿���C��)�hF�������˛�>{�����i��������sL�@�)M��T�M{��� ��]u{ >�8���KlI��==�]> �?VU{+�4Ր���$0$��n�\������̞M^;~:;�uu W�`�$\�,A��\q�U�.�wd��q��m��w�Ҹ� �c^ɬ~��R���}oC�*�m����3|3�{��Eɾ���U���1�MtS�pU����C e��}���_�f� Z�[�u2��[i8>��<�Դ{1��-���$�ȉ4l�H�� �3��p��}�9#H��.��J,�#���ٮ�������:$V�j��͟�/�r���뽤��2}k:��J*�uF�l=HO�n�I�����4{8���kQ�o���,6q�b�6G�u� ����N{X|'��RI�/& ���,A ������<'$�{,Z�"O5�4�X��S���Ev:G��tk[xl����r�=�er:�˷���O�y�Bڌ����a�M^m|��.|G�kͧx;Ph�'k\�G��3r8�+�<W��ź��m��?31ב��`�H�>�S�'��Ģ�it�*l�������֮]|]�(�W{�%m���qٰ�H!X�@�G85�G���e����7����7Mk�_X��-��r`<� �� ��^X4�,�S 휆{�#����_s[ߴ ���S~��~2�TH��:m�b��8L|�p}���O�oSs�yG��l���=+��ukR�[��Zߓ<<l�Fv�=;��e{����X�Ң�[�X�����`d��5�n�<�#��w���O�]֭��g h3�2C$��הR�]��>x��6W^�L�~��)����,r�!Y%U+���^����*�YM��i�,x��V��Ŭ�-��������;[��t��#=>|�k��m�#�4m>�?�,�SE3�7]�s����?�J���ힵ�3��|o��TZ�X����L�]��ќ�FI<+��M��]�:E�el]^it�`*�>�Z9�#�'�ڷ�{� Y�wĴ���� ���24��°c�D1�2�0v�w���_�q�Ǩ�{�hPOu$F9�.��@��W<���mz��mR�V���+jVS�"%�?�$��[�'5�"�ƒ]�����$;\YH �����*���R����/_k�5�~a9v �й�:7��m�Zix�d�Vx� d�2#~l`���:�Ɇ�Z�%�G�$��D_]Ϊ;�ϭu_>��f��w5��`�i�o$�(��n~��.�&xk��&�~�$�nn�Ҝʱ��3����{��OٳOӣ��|e{o�];����!\rC�e,F;`}kߥ�ż&���(eV8�AI�Rq�I�5WT��4�������p@1� �n\ �*��SP@�N�U� �<7� 7L��y'N��+q��h$��g<U�Ԣ�b� ��ԯލ%ߒ}����ǗU��t���(sc�,�Q(\�n0=�>���5D��;�� � �B��"�2������ԑ�I������;+���q)������ *��9?�*�Zm�Q�Q�_ýs�F��[��Z�;�1\ۿ���n@�N9<pz�g���ݧ����Zjpǝ�^�$�g������{��2h�Kvt>*��[�f�X��d��=��N��k&����<1���B�ns�ӓ����|s�NE��E�22,9U|6ߖF��s[����X4QAyo8d!�~G�Z��[�SQ������FM[M���7�{��t����5�=��\��d�7r�S�Y����a��+O\�dK��r�|�o�Y��o��c�aVX��2�:�����\3�G$�OQ��*.$���"4��c��U2Ecys�����Fz���MT�R;��ך��p��˔جvF�`��H�sWuɎ�l���uk�v��˸�Qʜ�<4����-uˋKegA�_�_5�~P�q���������̶��ڏ{�N��.!d�c�[p��H�g?�W�m4�7�m�Xx�[M@�pD��'�r0�8�͍wP�m!�]+R�-S��|�"c0���2O|U+]Z��FL�V�#,q�� �>\c<� ��h�DSl�����8A_����*Քz�ݿ�t��Y��{���`�������z�a��ii�;ۿ ��e����d��<`9��!MM#jog>�{�-��9�� \rTc�a�OLմ���P��sP�ܲ�<-4P�%��:�p*�E��UC=������ ���V�d#��O�+����?�a�.X�K]^�d��e;�0x�^�l���=>[kg����/<�#|�W���/�u�ͥ�I-���f����Ї�71N_��>�j6�{�����M6X�,�q�Н��1�qF�q��\����&��{I�\��x�#�==8��e����Ś"^[4d�9�U��(�)����5w�ȴ�Wv���1��� �'89�=�� ο��3���O�=�,S&�ʼ�NN0xaky�ӵ+{ݎ�se�D2�.q�� �Ѐ�����:��ڕ�o���N��<d��w�zp�4l+\�Ӯ..D�xg�#�Ui4�K�eq�r��q���=��h.`���u-�]��i����F�U<p���W"���P��6��Բ����i��e8r ���SX�c��������7�I�,��H#�`�|����L,�����㵻����Z��,pw4��9 1ר��{�P��4��gC�����2J���8���x��^�'�Vky�?Ӵ���$]��8<�ɫ�흗������ij2��fR��@8a�ߚY����koc���,y.m��?��B�c<���Q�����;�/[�6���q�# ���95F�/�D���Es�ݴ�'��bL� !w��=�9#�j/�&���um6=6�2�][�)���\����zPԂ�m��ӵ+��/�5���� B���#�'ۯ��X.��^x�HҚ�&�N�w W�6�!V4� n���&�c .�}�R?�@s�p8�zn�p����F��ޝ�/�-�# 9g�Z hk_��6��]J�^��9�D���'����U-CC�}�Z��&i���I���?�y7�:M��ڦ�f5و��/��G�l�m�U�8�1�/�h�sj:�ϖ�&鮮d�wcaO��K�e���."��u~H�|C�#W� �աk��ɊYŻ���q�Y�X��}v�\�����oas�Ɍ|���;��xUw4֢z�h�EƯ�q��5�JV;� �=@b3�X�,�5���h.R��k{O�"������=1�U�7�:]���Ckl�{�����H�#�{f�Ǩ[�6��dN7t�+�<����;4R�)��Q�k���ou�.�����?�s�K���̪����L���o�S��<���M3J�����ӭ湵ɷ�XC4D�|�1��rj�v�Yå�m���n#y1"��HV=�Nh]��� ծ59������eF��h��T`�xSb��8�+vh�iv���r�6�<�d; !9��m�QͧC.����㸑<��$�p��\��V������4E�ݸ�����G)�a�C�P�O��/��F���k7洶�X�� ��N@Ͻq���>���N���[u�e�{�A'�J����g������3[�J���n�!��R���JL�'#����4��-N��,3[��.!(��G#�����|�T�7����HQ�圳� X��~a�t#�ƹ�W�_�-VK�|�mE归���rP���*�����wzn���Y�":X�1���=ד�]����25��� ��fA�|�s��V.)����K�Muq���D� $�_W�����F�^>���O���em\ͬ�6M�s��HB�� �8�N��������%A~Y�dJ��c�s�>1����.���n��n��҅�W!I8���4�Kd6��}�� ���Owq5�E����[[���� �q�y���l_��A���'�!1��%��˫���!��aR�Ё�5�.��Tjך֛����A%ͬ�Wڗ�4�@�B�-��-��\��|p i� 4�pd�H� �>��+���8l~lg8*h�{�Mr��gP2�q$�U�p��i��W=��_���'�t���{�Zx�ɹ:s:Z�Q�������'�������_Ki�"�I���������VOpqiӮ-�%�`FT/�#��V��=�P@��iG�e_��~U�O�rk���&�Q�J�m-���mE�J��<qj"��}�;\dr3�WIz!�cy�x��B�>$�#;A�-����H�E�Cᔽo:� Tد�'<q�ہԓ��߈�7ks1�������H�'?{��2:���t���k8��#D�G�;�F��=��~0���9�Ɩ���s�����<'�&���qҾ���t�'���٤�O�u��.��fg�@Q�*2A��|9�;�i��h.�}N���F�Uf.[j�s�_gk�<�Z_�iW�Φ �(�T@9`ƍߩ8���� ���<o}�i�������]KI�ݓQY�I%� FCa�l(�Q�z�̟����l�����pV{yT���Gs�����6Ե-����U���4}9KG�d8��~��u�g��.��<g[��t�A�9��v����U_�ʌ��B�A���Y|>6����-���w*�ɕ#$<���C^��&��ZJ�Pf4��xۓ�$r{��N��.�����d�J}R^3�/gyF�O�'5��:&��h�Ҷ�}q�ź8���@��d䑂2�t�����9�8ܻN�8f\�O�H�y�<q��^��_�9��1ee����W�����%���np: r6�e����SФ���dP�k,nT��;�ڸ_�$~5���?F��{]>�Rկ""1o��4��#'��@o�}�h�&�ўпf�M���u��mmV�T�vzyR��+��Ŧ|9�_�G���iets��0 {���/`��鎽+���*��'o+�OmhE�u�죋��:��y����=��?�=_I��n�uɼC�h�d��#l��/���o%KlRrp�&��5cI-un��)9�����6����s�O�N���/�r� �z�!��GY�6���]ͽQZ���@#�1�vt�j3\o2y��$1@G�zWe����zM���~�����k�Yf:������*K ��y�ҹ]In�7Q��Zis��%����kF��C�H���W��mF�ImF;ۛX�B��m���5�������.���V� �orf�1m����9�9�T�m�|Qi�Ad�~�F8a�2,�@UD�I�sޓ��#L��&���!�ic��׆1���W,��8�:{ׯ|5�]*�m.�>�x�;�{;���sך��?��/.4[��1e���I��� �P�瓎�� i�5���5���hD�Vg��¡N8�:u��K}��E�y�K��$vv�x�Sr��B�\0���IbAd���*���xP�N��'��Qi h�@)8���F}Ef�K���m�LX��Lq��"�pK���`Q���|)=�1F�Dʻ/;~�<�+�E�I����-�;���7��/5� �K��+im�B��H9P���8*S�b���'��+m���O� �RKG�|,i+ ���A�#��aX�WԼ!y�K��,@��l��?�9�w��~ �|e�~#�Q��ʋmF˂ ��#�ǏUoz�ت9�=��g��p��)��>����)�)�&��k:E����m���;��ˑ���y��U�O|H����G�yeU�/�yB)�6���}��ȩ>j�.`�t�gG�j]a�V o{m>P�/.GO�ݹ�5ߍ~/��U|}��^�J��g5�Q�e�P``�}k�[����F��:`���Z��h-7����;������3��`��p��+�����f�M}� wN�PQ�������"�_=�.f��{��[����l`]W.UH\�������k�B��n%s#�r7�%��O,z�k�����νG$�6*�ׅ�iKW��H���?��{�����:"�H��c9=�\N����"�.�Oo�Āb+;Eg��I�OA^8�ߵ� ��������5�������U�8�9�B�G��F ���'=\�9k'���Mr�] c?�.nm���%hP>�C��_�5s��49�{�u8��fÈ7�$�0s^w���^��h�Mҳ� ���@����X�b��y������������Y"'�FV��H##q�N=�Z�,!Q*j��!GRPnn���t ᮉw?�$��I��Ԟ�e>�����k��}��o���ռa��L�{���y�*�����}CV��l|�]<��U�5��:1<��{�����)�ʸ��Vʓ�xɿ��ϖ�?�����|/�����[I�+ d�ɐ�c�<g��sX��kBԒmV�x�V�Jԛ�$�ɀN:{�;�E$�?�|:�����7x���4�5M5�'�.�DO�;��Pg9#*�k��B7�ϛ�����3��"�ݪ��kC���>4i�� ��)�&!����Ӑ��y��OŏGf����Է6k[˛9GЂ�ۺ�p���� ���9���q>���<�r�N���9Ջ?�z���N��Ϩ��$6v{��o�"� <��~�S�}�2������~�go=3N���]m��o���qo4���@��b�O�c^�s��<4�S��D�%����y-�`�}�e�u�=�όd�4�_���L�V��"� �Im��:�{կ����][Om�����mP���� �UxlEh�Q�j+�빝xQ�sm�_#���cS��#���ng�a�8BA��ҽ��^���>'���E���� �B��{��v�?���&���xfx�e!.4�^��P6H���9ݜw9��;��z���YxCI���O�,���7��퐶�p;��1�]X��J1�O/_#��=��z����[YF��f�F �Q�p7#A^]�-SR�?ٰ��gzH�T��!�;�N���B7ރ4�2+q%��w_��N+þ)�3�ܐ�tp�!� �Ÿ����N��5����7>�jZG���o�~�a��6�s{&�YAݍ�ˆ�=u���}úܶ�b�d��V����q�d�q'�p:d��,e���Xj^"�Ҭ�����)'�89i���}���c�k��ր��Z�U�K���E����*)���`����5�?R�Q��~ZÓF�����Ϫ�y����͠�����#i6��,9~H1���㏥p?~�1������e�� �� �?2.9,�}k�|�����`�|Q�����Y���%X�w(ifwQ0-��^#���c�[����Q[v�������P��6�q�U�/�����漇��;F;u�����Qͥ�i�go��L��h9��Kp��� ���GÚ����M���-�ҋ�@h.ZX���6�nO�yW͚���j,�8���ab� t'��XZ��/�#Ay�M8L�%����+�ޕ����BZ��?��q�Vm��:���V����C�ZG�o/l-���ߜ�*s�A������!x�M�Y�u��dQ�`�q�Ȭ�k\��:�^,�i�S"e�Wf-��rk�~|;���&�Y4MOSrm��x��V�sop.>�s�^��ӣA*�Rk}�y?Z�j��v^��j� �O����R�oo|�vy�HL�Oλχ�.�����jZ��ڄf�K6!$u=rq]&�����~ �K�����ޡ�:KI�s��r��<?5�x�C�ƥl͡�Oen�,:�M����8#��*��5J-F?$l�Κsi�_6u�m�)�%�-<Co�v��GSy�ܱi�*��1�sӥu�Ņ������m���&��3��6�]q�8ϧ�|��� IX��R�@��I�<���S��/� .K-j�O�^�F����>_�=�;�A,I�uc6Ȅ梖�N�������1��Ț�V�6Trʤ��I�*-wº$�L��w�!�����m-�B�̼�ע�W�~��<�z1|H�1��H��Ic��_�Z���RZX�[���n�.D8 >_�d�=�W%Ocy��loNU���:x�M{y���˂L��^7��:b��qq�M$xru���>|� �'�#�5��@�4��]��\�-��ݎ��"`3��c<PɵA�vG$�ߵz\U9.jN�9�Xj�������cO-���z:�J�ַA#On�rUJ�pI �Z��������E��^��G�F�(�`)ޫ��{w�2����'��Z�_���-��A�G[;UX��݉��i���V����>!�i����Lp[�9G$6�۟�rp*g_Qߙ��"�A[���x;O�<?�k������o�E���zn=k�~*�6Oy�̓3��9ٌ�q�r����}.�YImR��B���X�b0F�00y'���a���N�5+�g}���z��q��+�B�O��ww2�R�w<����.�S�#I�K�Ʋ�����5\�yWna^���+�X���ͯ�uv���/��ќ�6����5��D���O�źZ0<�����:c�i�Y�f��y6m{yy�%v�+z�N���W�O�����Օ� �3ugn�e��6M>�R�F��jԞ���k�#��o�['ڮ�>\+���=�H��lj����y1���b>Q���~��f�ZT�l��j7:i�N���P2O^�ؒF:�3�&��Й��s�>�U�\�t�H��^~����[�� ����bV34A�y ��9��:�]�~ӧL/<G��+�����7U��=�'�k>��[��k�.��X�v >��VTL�QW�In�NN��lt+�DǦ��dJ�o��L�-�(>�Y�z��\��2i��m�8-�DѲ��a���$��;�zU���W�LR� ��\�R�=����I�X���Z��H�ga��l��2��}:�� )�s>��xc^�g�s.��N�퓐���@��X�ѭ�X����^��Β�$��cn��a��:Zi$z���#�7�j�>�gs��H8�W���Ms�^��[kW �f}Rhݒ����ڹ��c ��ê�M&�]h�_%���cE,�*\|Ē9�s�����X<1�ij�$.�sdɴ�B�?($�����8=�k��\ͨh:�K�S$�e�r�Ɍ��-���G�VGӣ}cI�Q��ڎ�v��O�y�;��Кm ��g�1i�\���G��Q&��J�Ѱc�%���ӱ�5���[�&�na�R��ӟ�h<Ag�Gy��\k��6W���I'��H�:c����8�������K�nC��^A�I����ƙ�_�R�k�ymsuev~q4��=w��T���z4B���z���U�#ې=�O�P�������m���V��sku�h%��� :rzU�+� �Q�NK4��ڛ����M+�Us�<���0F��ײHt��*U&/��- 8��bsߟ�VM��~�.��xjX%�%��a+4$�r�Pl�k��o��э�a����B0�܉9g5T�&�/�4�� ��Q{�������+�l���/�4�B T:Ayi�ȇ?6#��Q�,�kO;�:6�kw��f��ތdu�Uq���J�^��:t�[��y��6L������ž՞/�ާ�jb2�8�G���X��^zB���,���E�M`�);����:�dqY��l[Q�t;�2wEO�黦�&<B1��z���vZ�����KK�:D,��Nz����Y>=�-*�oc�5K��q�i H؞11��1LV�A����Y5�7:^�!dMP�x`�\�LSAw�vڅ���Lp�����I�6\�J���H�\\i��r�z�'!���%ħdbAS�8��PxwP����Я����b+=NG��0��pNi�.� ԯ絖���mÂ֎�LȠ����'��v��",丛�1k{ۢ��f+l��?�ב��g[kx���=:}8�,������ �����;)�+? 0����RH�E&��� f�X�s�-L��K��g]o����[�)J1������Ԧ�K�C6��A�����v�k����븒08��C�Z�z=ܲ$�qaz7Gt�XF�Ł���NI�[�kI�ٮ�������7,�C�u99�H�I�G�Լ���2I�j���=������3�283�OJ�����(�:,�-��̷��O�0�>�(�9���y����B����"�)`FT���ڷtK�,�Q<�}� ,��M��`�c�c���m㴝��u����A(F0�� ����cZz<ׅe��Ŵ���#>㫞�x㠭;`[`��LeJ���'�����/���Mna����P1h@�RKl9��^1�Jڍ�b�<��meP;/j��h#!W#���-�W�]�qܥŬ��h��u�q�8����� �z�>���;�3T�a����#қe9�p;T*쩻`��s�*�ͬS�,�^)���N�S �<I���WV:~�i5��-�W=�L�t>՛�]x�N֍Ω��p6�,������yg��jҥ��}=��K5�H�ȣ�60��>r��u�}W�^�-j�r:�-�N��0�I?wnN㷧��R&�����u*��;��@R%a��Y�A�H����Dž����?UӶ� �b�����խue���-����yC�x�nX#���UC���Ʃyq��{֥�c��cs��-F�e��4�o�H���;��ʛ ��0xǚe����P��� �|Ns� �Ȯr���[�����{ ⸑-Y���` ��m�Q�sޫ�7�����������p/\��p;v����Mr�I�� �sEg�G��q�.Pz���P3�X6#U�{j"+S��θ��̪?�����$���V4mcNֵ�[\[��]�R�;3�m�s��Z���Ⱥ�Bmm����͞(叉lu[40N�F@�#��2q�2�����P�]��F����w ���w{-���e��O���t�Ox�m�x�55��zm�vwZ�3K��q*,�����v>��y6��3� <�(�2=1Q[�v+���=�|Ã��˕ �w�f�W·ͣ���� ,lq���m�5����Z|>)�R�K?��E�%��lg��U�$�B�����a�.K����|K�?��ǒ#k��1�ew�Q����Q���zKK�tՙ�'��?��ťi^0�5���H��m,�E0��+t�Y_?=�y5���~+���Ι��^�ቅ���r��t� �)�T����<� �O�F�;{���@�\3���6J�Cdyfu˟��,A�;V?��g_�� �M��&�����P�����I�\�ы)Ǫ7r)�KFDou��? �����W���x+��G ����\����� #pn��$g�]��uO�x:�������[R����M�R��q]a�� �ON���N��G,i�ۺ�]&����d�ɲ{}�Z*����FB�MB�~5j��{}� MaI�-/�E�W��+��l�߃���I�8�#������@�tz,��>�zN`�����X"��;W��O�y�[$�֩g�\1�Y>�$��G�>:v=8��t����W0����{O03ؤL����dV�~nG��� ��� �.Z�_��K�����+g��1т@��� 6V��&ϟ<9�[���;K};������-]6��N�T���� p+J��?í?���C��Bg`�]�}��ı[$�!��e�9��W]���;�8��$h�n-HO |$1��K�Ac����[��Y����[x��C�a�i��]�����k���`x)�����O�"���u��Β�����n�]=������v���,m��D��͙������I�)]�m�a���g�߇��4�nu��_ݟ2�V�ۏ�����|edR���V�ձ�s0��D��{�Z�Z�\��� �Z]����� ��)��Þ:Ծ0�P�R���n��n��@��e��u�q� ��RVg�~״�o����&��ꖺ���4�mVgӅ�ERE� �b%��!�~��0��?����]�I���2�R�&�M�7) K+�@b{קx7��߄4�mt%���>]֥5�w��C 8.�����us�߳w��kZ���b�SӢ�~�)"�ڶ�WD5��u�=�{�xcත���k�[ !��\Cf�>̪7� ?1Qך��g��?�o�/��Z��}�+�{H,��@F~ �,2�}3Z><��ŏ�>�������隄b;��1�(9d�rJ�Z��,�|:��M���ͦ�Y}��<8��۷b�\�h4�vz�~����W�G�4�W����#Y�O��ٮt����x�k0]�NP��]��Q���=i�3���rʶw�l�3"��W9U��y���>0�f�\z����*�N��ao�ہ,plم>y���߂�����ao��*Mm6�M��Bt��%H��ܥ$a���:�7 D%��^t�_�y�����d$1��J�e���<�-�>�Yk˼E�0��F�xoź=�k#��t{I�\�r��'�� ��Ú������^��R���m��k{�@����y<����Z��k�{�Zu�N�͍,eTQ�q��+�x|}h;���������%f|y���⎖��.�w~�����e`>b##�N*�?�"i�;E��fK�"]���(�(=w�zq�k��w�z_�K[S����{�Bv�8r��t�~`��\��K��W�*�U��C`��q��'Ҝkf_&T���L�4o��Z���y����H|�i.��w�.A�|��܌�/�/�7:DZv��\�������A�������^�W�<yk%�I���\�-InA*�y �+k�� ֩���Se���4�m��y����I|�^/�g�h��E���k�6XG.���#�;�^0�}��Ǻ�/��z�m�J��� �F�H�k�?g�^�c���9YZ6�E ����9������i��?���(�$�'�P|�&)�K���,9�SK 9k]���T��iN�6E����g&��I��UR�aH�@��$��'��I���kG�U�&��_�$���n�����C��ŏ��_���*)�H�|�#9D���2���g�.x����l���w<���mn�y(�9\�،��[���,�I��<D��?C4�~�xb�ׇ��~��1�~!�~��+���hN��u��u5O�x��'�����{f�>�k��F�����K��̮��n2�'n1����]/�ĝ#Q7z_��MbZM�-u��S��a[~�S%�SX���S�'I�����:��>#|3�e��r&��.-J�ۺ��Ӵd�zzf�q�������[����]Z�b���2��ޟm�I�����G%��m���U�{�,���VE�6H�i���B%�W�쮗d�Cp&d�wF͍˞���\��X�$��(���vK�ĥ�t���,�m�q�#��q]?��[%v��{dz}Err|W�m�A$ͧ�]b��"�c�>f����X|OT,f�g$��i#��-^��Rq�O=ԧi#�5�=�t�"�I�]2� ��,E�IQ�m����'�sZ�������Լ1q���U|����kx-����8y@�A�Ey>��d��-��2���xO�SKz��m�w������k S�N>�v��BP����C�7Z�'�4�/.{I����`��ڹ۫{���u :�+���x���.���\�}Flj� ��maI �A��c/�x~����]ZR�l}��#ד��qX���r�w���諀��I�z�[i��j[x�\K�"��`��=����Tw��qz.�h`Hd�R�<��<���ޮ6�ɢʶ�u��m1?��3���r�v��k:�K��5��}:ݤ-��9Y=r03�9滩�R����Lᜣ(�ľ(����AKIH�9 $a��fQ�1��ֺ�^���V<R����HY���������G�6Z|p;��i��sD��� V�H#��uC�vV�n�7J�+X<w d���<���)�h�v�" '���7��������wD�x� �����ֱ|K� �Y�D�-�!g���[�@lO9�y�*�/� լ>���ԂIe��Ƒ��C���dwҮXxoKoi�L��39���$4��!d�0������s�Z�ok'����j�i��T*0���xa��ƹ�n.�.��ต��K�0��p��I��f����H�|��Ʀ�b��V��8��+� ��:W�K���&�e��K����j �6� �d����t¤9|�g shd�jw1�jQ�e+��X�8RTBN�z����n��ĺ��s2K,�����d���J���i�j�LB��)�V�ܞkgCQEe>��v��Q�.��H��p��h�F���r��j»�Է��_Z�u-��nf�l�ٜ4r���w�W'��q�:�&�Im��E��j�e�fPH���>�kԼa�;�����"K���"�6� v��;� ���du���h�N�W&� ӌ[�k���K����<@�傀���e{gpG!�~U�C�Î �fEB�89�@���p>��I�fԲm9ޭ�}k�E�dq�]ܚYR,Z++�#b�h�s�#�{�T��s���||Ȭ���_]�d�t���0[�ڣ�NB���d-�iwPi���I�2�ٟ�U$n=��V��\�$�Zar����@~G�p����q�j;K����o�R&�6�W�G�8,��=1Z�$:n�%�ڬ�L/�o�K��� sXM���?���Y�����ϭ�x�ð�#\��P����Vh��&B+r��3x���[�OQ��N ��#bxP��'X�y�y>[m,�m����ʼ䏽��n5C4���Y$����lhz��==낦�W���c��"T��&�gԞ�i�[��uˈ��"$`�#��C~���_�7�uE�� |&��A�У�~�+��≴_���5]n�t�Y!��Nꠝ��� @�y;x���4�\��M?NѴ�Ñ�ܾՄ�:�0J����g�3�� �[�X�u�I-o��oV�g�Ț��L�]���1�~�t:�CǸ�[ľ�敡�Mq�]&->���������?�M�\��*�B�Isf�&�Q��*� �'!���d�\W��V����X_ص�4�"]�hp�09�c�E�Q�H\%V�V��c��>�k7�x������$���y�m���(0�`6�z����#Z��G�bI�g�]��)�������^�&��+����PH��un�<.���^+��.<P����Um�7պ�����JV����o���k�|�g�OP����V�s�|���DR��?� ��>�K}&�� X�-��Ũ��g�22���m-,m�:�����9�$�U/�G��5��p� ���</�_�ӂ\����9*b$ޚ#*�H����� ��1S�y�l�O�[=2Sm��22aJ�$�¯��+]���qW��O�{��?VǷ�����l-�:�υ�d`�����m��9�L����s9n��ys>�k}ous��9���� 7|z.=+��u�in��ԧ�4�-��Ha+yX��P�I9���7:��4�{��Gr��w�*1�FC3p1��׃I~�i�̲ͭx� ��pG�G�� 'q=:d��� x���I�j&MOvYn�*aE_�ܙwl���*��������t��-��]�6�e�c$�ۖ��,����1� �x�����V(�����A=��Fj-���RY.���S����P�$v?;~nJ�9�.���|e�겭���:�T=����������>�M�W&�`�65��bq��'=z�\��n�x��v�6W|��=�5���ir:I'oR9�_Ia�ٔ��氄��a!Uh�9C�3�� �`t�a��Ό�K�x/�aq�^#��Ԑ���p��=�>Ymf j��֮����IFȷ���Ԓ�ixs�z~�9��tK��4p�x�gQ�g��n�j���Ehk��F�q��V��{��F9� \�Gg�hw�[=f]#RTG�E���(,Q����8�Rx���i6�:է���� �LJp3�͌�{�U�n�Yc���/��4�%>b |�q������!6�>�W�o4������Ax#��'V%�V�wX�[�����H�\Ő@�8e��`*巇�"��P�o/<;H�y"�3�<��:�ӌU�oQ]:�[+�"�A�1�����ܰ�`�<�)�{k1�6{�(�EYSJ�2p�q�:���ҁ�/�m�[E�t��7�gӦ)n#9�F�ۀ?�/��Xi��iz�3�MG����B�IW�H�Fў�1[:����zH����I��#ay�������y�E{Τ��#�<D���a�X��zz�4_M�4�_�>[�fcwd�zr������nu}F//V�5��S�\��-�H)!T�p3ԓL��N��[$�φ�ە�Uy�ھ�zd����qZ��Z�R^X[���<�l�ʹcn�'�v㎴��|%a�ؙSP�4y�X�M*��J峵�g�A>�-����B-+T��e)���d�ڧL��f|p6�z�e�:k�ޝKU�/� ������� ��(� 8�R�iZ��+qs�i��d�{c.$�F��=:� �P�v?i:V������}J�5V�(%I��Ñ�p:�Һ��:6����^�l����/PT�1\7�-��ka}uis#{�<�|�j+ug�Fq[�֗��kq��O�_˺G����u�*��I�������oi&#g|���O~n&f�?���C�;�v�#A��:�á��g�1#����s�~e�������m�H"���Z��J�C�� �}@�呞i������;�"c��F�� 6�3��?O��5�����E�9�⌺�Q�5t,�B��A]���ͺ�YH�xgC����J|�����] ��o��C�E����<;m�jo�$�yw�p��#�=�pj��:��~5/n�٠��v�Z0�1Q�{�?QV���\�Mz������nGBW8'�V�uhK[���s���F��ߠ�~�XI�h���N�M&��[���>��Ҩ����(M:�+�/��d��b�)����=MT��Hb��<�O�,#p�q�9����ڣ�P�ծ��m쯴x��9M�Bɜ�5�s���I�;�Oou�i�ȵ��#����I+����q=�S�\U).��Kn�n���Mn��\��|��� ������z�P�tsi2��94�Z� ��eg���v�� ��ۙ����l�B�f��n� ��w ��0����|;s5��yն�q��'����r�{x�Y������|C�%�ٚ�ծ'FY�,�,�^���������5���\����J]�ݸ��ۮ��k�<:\Vv���@,��ui"�2H�s�r=��K��j��U���s�]�B������@P�W�u��5J��]=��ܲ[��mo������R3�~�=� ���\xf��H��(m�g��� 9U^9, �=��Ɠ�o<W�Aawm2�[a�Ĉ2���w�8���sj�]hd[mj�[�A��C'�����+Y.X�x��T�wg�GZ�4�=Ug���U:Η|��E,fGU(��N����zg���O4���֏*��6�=�,HeQA��<f��7��hW����7��:씁����:�\��&�P�H �<�_j失���[�CC����3������pI8� I.�=�os��Ay�CX�U����*�9QӜy� 7>��i&Ӯ�m�U�N��6���`d��U�,�#ҧ]��D$3�\K;����V<��$��RX�[�·��)&V������$1P�tnJ�Û�����y�rQ�?_P(ܛ����T�A�k1G�ZC���8�|�ylǻ�5xum7QEx�凜��q��T��q�b�[Դ��ó����V�';�*dc�a�=*�OJ�/n4I�[�*RWE>Z��px>�1j6�O���}ODռ�:���1����9O�*ƭ���{m�Mk%�z��؏$lV-�z��*�����{K������Ё�Ɗ�ؑ�`�sO���Z�b{�[K��y��ab��#�?Z^C:HD�� ��ğ*�0�v�a�:���.�4{y呾y6��qϽ`x{S�C�]-�E��^��O9�a�[=K` .4�2Y���Zs�:�;��h<(m0L�$���T�T����E=��Μ���QE&�?ZE�P�4QM���U7���-As���QSOb��?��_��u�?���\��ЅV�hq��t_�|%������5t���d���'�D�T-���������c��L3�����(��������W�����%h������~B����g������y���]-��}�ײQEy���uGg��3��5����+u����Q]��a�$�['���I��}G������c�������=�ϵS[0[���j'��5��p�h����G�_��%cU����Ы���T�Z(�h�(�_$��@�}O�5A袪;=ɴ����\d��M;U�����)���(����Ǿ~�{�_���U�����$�D��w�F�+���|�Sա������?���.�i���(��n�����������Ei� �#��i���B��t�h��$����O����T>�7�?����|q��<Y� �?����������s���W/�~�����!����Ŀ_�Q��:(��8������V-���V��q���*)�{�����ۯ���_����5������Vu���������?�J��u?�3\�O�&�����TQ\��]�����$y_���!/��:�����O�����)��o�D��(j?���C��x���~��7�4�Ere? ���Y�c���?TsG��:.����A���t0�ȿu���.�+*� ��e� �;��ֿͪ ���_��Z(��^F�s���]�ΰ�������Q\��*[�i���Z�W�{?��%t^�������E������=l�7�����\ ��u�_��%�t��EwῈ������?�$�W���X��~����$���8�(����n?��Y�Ȭ���h��;S�,��m�>���Vߎ��k���i���E7�P���C�"���{��וx7�J?���7��Eka���x��D;�����VW���@�����R�h��O�����ݿ�����+�����E[���_�w�E����Ut ��i�`��E��G/�|�����~-��ǭ�����QT9ã��=���K�k'�_������� (�B_�h�Lt���ה����m��kEK����?��?�����C����|C���(���ٞ��W�F���_�����u��w��FQE5�Dzݷ�����u��,V���eT��s���8o��A����_��x��I��qo�h��_ hO �.����Ƭ?����CE��k����� Q��D�_���S{!-�0���#���\���jתj��M����KE�TC������?��<I�%?� ��3E=�G���|I�?ּ@������i��-QؙK��������2J���=s�^�*�E�����sS����F�n�]�����`���T�B�ix�I������_����:��A4QM��������x����G�@�����d�������W����B������R��?�7��W1���>�_��E������,?��_�*k��*(������ |
| URL | http://zero.webappsecurity.com/resources/img/main_carousel_3.jpg |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | Access-Control-Allow-Origin: * |
| Request Header - size: 288 bytes. |
GET http://zero.webappsecurity.com/resources/img/main_carousel_3.jpg HTTP/1.1
Host: zero.webappsecurity.com User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0 Pragma: no-cache Cache-Control: no-cache Referer: http://zero.webappsecurity.com |
| Request Body - size: 0 bytes. |
|
| Response Header - size: 351 bytes. |
HTTP/1.1 200 OK
Date: Mon, 14 Mar 2022 07:13:43 GMT Server: Apache-Coyote/1.1 Access-Control-Allow-Origin: * Accept-Ranges: bytes ETag: W/"101493-1358497020000" Last-Modified: Fri, 18 Jan 2013 08:17:00 GMT Cache-Control: max-age=2678400 Expires: Thu, 14 Apr 2022 07:13:44 GMT Content-Type: image/jpeg;charset=UTF-8 Content-Length: 101493 |
| Response Body - size: 101,493 bytes. |
����JFIFHH���ExifMM*V^(1f2x�i��HHPaint.NET v3.5.102013:01:16 15:53:54������(HH��XICC_PROFILEHLinomntrRGB XYZ � 1acspMSFTIEC sRGB���-HP cprtP3desc�lwtpt�bkptrXYZgXYZ,bXYZ@dmndTpdmdd��vuedL�view�$lumi�meas$tech0rTRC<gTRC<bTRC<textCopyright (c) 1998 Hewlett-Packard CompanydescsRGB IEC61966-2.1sRGB IEC61966-2.1XYZ �Q�XYZ XYZ o�8��XYZ b����XYZ $����descIEC http://www.iec.chIEC http://www.iec.chdesc.IEC 61966-2.1 Default RGB colour space - sRGB.IEC 61966-2.1 Default RGB colour space - sRGBdesc,Reference Viewing Condition in IEC61966-2.1,Reference Viewing Condition in IEC61966-2.1view��_.���\�XYZ L VPW�meas�sig CRT curv
#(-27;@EJOTY^chmrw|������������������������� %+28>ELRY`gnu|����������������&/8AKT]gqz������������!-8COZfr~���������� -;HUcq~��������� +:IXgw��������'7HYj{�������+=Oat�������2FZn������� % : O d y � � � � � � ' = T j � � � � � �"9Qi������*C\u����� & @ Z t � � � � �.Id���� %A^z���� &Ca~����1Om����&Ed����#Cc����'Ij����4Vx���&Il����Ae����@e���� Ek���*Qw���;c���*R{���Gp���@j���>i��� A l � � �!!H!u!�!�!�"'"U"�"�"�# #8#f#�#�#�$$M$|$�$�% %8%h%�%�%�&'&W&�&�&�''I'z'�'�( (?(q(�(�))8)k)�)�**5*h*�*�++6+i+�+�,,9,n,�,�--A-v-�-�..L.�.�.�/$/Z/�/�/�050l0�0�11J1�1�1�2*2c2�2�3 3F33�3�4+4e4�4�55M5�5�5�676r6�6�7$7`7�7�88P8�8�99B99�9�:6:t:�:�;-;k;�;�<'<e<�<�="=a=�=�> >`>�>�?!?a?�?�@#@d@�@�A)AjA�A�B0BrB�B�C:C}C�DDGD�D�EEUE�E�F"FgF�F�G5G{G�HHKH�H�IIcI�I�J7J}J�KKSK�K�L*LrL�MMJM�M�N%NnN�OOIO�O�P'PqP�QQPQ�Q�R1R|R�SS_S�S�TBT�T�U(UuU�VV\V�V�WDW�W�X/X}X�YYiY�ZZVZ�Z�[E[�[�\5\�\�]']x]�^^l^�__a_�``W`�`�aOa�a�bIb�b�cCc�c�d@d�d�e=e�e�f=f�f�g=g�g�h?h�h�iCi�i�jHj�j�kOk�k�lWl�mm`m�nnkn�ooxo�p+p�p�q:q�q�rKr�ss]s�ttpt�u(u�u�v>v�v�wVw�xxnx�y*y�y�zFz�{{c{�|!|�|�}A}�~~b~�#��G��� �k�͂0����W�������G����r�ׇ;����i�Ή3�����d�ʋ0�����c�ʍ1�����f�Ώ6����n�֑?����z��M��� �����_�ɖ4��� �u���L���$�����h�՛B��������d�Ҟ@��������i�ءG���&����v��V�ǥ8��������n��R�ĩ7�������u��\�ЭD���-�������u��`�ֲK�³8���%�������y��h��Y�ѹJ�º;���.���!������ �����z���p���g���_���X���Q���K���F���Aǿ�=ȼ�:ɹ�8ʷ�6˶�5̵�5͵�6ζ�7ϸ�9к�<Ѿ�?���D���I���N���U���\���d���l���v��ۀ�܊�ݖ�ޢ�)߯�6��D���S���c���s���� ����2��F���[���p������(��@���X���r������4���P���m��������8���W���w����)���K���m����C ��C ����"�� ���}!1AQa"q2���#B��R��$3br� %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz��������������������������������������������������������������������������� ���w!1AQaq"2�B���� #3R�br� $4�%�&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz��������������������������������������������������������������������������?�'j�#�:�\g`�ӥ�A�jL�b8}��R�ʎ܌��'8�l�)H\t_Ɠ?9��p~�Ұ�㑁��T�8���;Ғ?:\p>�R�aGJBr�&�g��� ���?JV�:(��[$��N<���0�@1��Pʧ�'�G��Sֲ�N2E)4ʷ6���9���F�p���#���:W��9\*Ŧ��>%��=���r����!+�9����0$�V�fT������l�xi9Ah}�-LcG#�Z�w�Fy#�l��wt�U ��q�j�����s���T��=+*[f��l�WYsn���j��H\q�PV+��N��r�95z��>x�kVtT�k:�'=�*j�ݛ)J�O~��s�Ɣ�'Q�U `>fB��RC�A��G?.�vE�[�v�Zъ]�d����X����j�#n��vK-�4�Ğ�ic�ўi]�=k)��4D����"c�O�0��I� b��:T��`-�1��H{�X(���ӲH�qZ{owQr�8���sHI' ���~�T�������E�n�b���:�Y���RFrW�Oz�����t�������Z8��k̲��?� ǿz�9�<��c=k>Y@����h� umC0�ZG��5�����~�t��F3���x��Mhk�Ny�ϥ4�z��Ȥ'������I�����s���"���<��;��UqvLv�b�}܅�U��h''���@��Yά��Ф�H�s�E;��d���P��8���1�Q���7RI��2O��b{�T.n�^�u�s\�ѕ�=+xR�Q{��ŝN���z�9���-'֛�_�H��9k�<W�U���l�9 ���YeZӳBsQG|���`�[�������^�_��L��-v�=�g��H+���z5rEL�Z���J1�aU�� c/��k��TRs�z��߃e#������YJ��jX�d�A\8>���Ͼx�s^}o���ql����z�3��VR�Tw5SL�����z��L.>c��rP\�y'��5#�/p@�sX��'`�:C��q�<s�G��8�ۯJ���r1U%�@�A�x�2��1�g-��}i˫���p}�]S2t8J�5 Xa�o,�`�;a���V�NMM�a�c����?�OO�Ў��yrc��S�7Z�o��`��k����g��V��YW�g�5�<������.*d�RF���\%�� ?xӭh[j��#ך���ѝ���:�&� Ͻs������z�n�>�*����p6U���4o$�<��Q�v��8�Z���9��Z���;�1��i�>߅9�lὩw����l�& �L�� 7 �O�OL{�ɓ�'�P4`c4Ir20~���q�@$/ ���n�2��`��$�J�XFp3��+�_�SZ£��:���%�k�:=غf�d��N�-w �N*��Nv�קO*j�q���铅/� ���`� �wq��#�X�J��)�4U�L���jc%=�Q&��$��٭�Y���۽bD��{zS���f���V:�`���]��q��5��������׀���84"�f�s�5�����O�E�df�N^��L˻]ā������e�*H>����Un :��8IǨ�V�I��z�-�i�.Hf��&�R��#h%�T�r I�����fD�s��K�{ͭ3c?) ��t�fH�+Ly<�y���rd��qް���9r�8(N1��aʖ&&I8���j��b\�u��M�N�wf��K�|�!I���ں�#[F*rk��c����=?L��[�=�t�F�������Q��s�ڰ�n ����q��՞�ա �S�l58�V��°��zq^i��̬�ǏZ鴭X8\�;W�/S�����1ysZ��W�>���t�qY�bB>n���"�9���p�� JR�ԛ=���㓎ޔ��lc���5ߦ���s�#ґ��N���;�b�y�z,�������x��zt�h$3�J�v��.�W�Rg�P#�M��<J�}��`=*~@������s�k �@އ�v ��3����'�7#��4qz�{��� �K�m�8�9�{��r )�pO_�4n���c�C�CK����i8��� ��Oʐg'�ZA�u�9�8�~(�ohR0A=(�8�r��@!F9�v��9�A9� B��9�@��#��CKߡ┢��i�E4[��S�Y�ց�������S$PG��|n_ �j�]C�8�JÒ@�=k�9�����0Ɂް5];� sۊ��;��Rn�%�>��SVg-"��hԾv�kJ�ݕ��TB;u�_f�g��otd�Z����Vt��$#��+����g�ҳ�# �9�QQ��HďO.ű��*�V@!�U��:p3��ĊRx�(��{��+�`298?�*F�:�p�����k�M��^����y�����2q�Z��㼓h-�������>�w�II̾�����u��F ���� ���Z�Qqvq���OS�O@*��\g�9������#>�$��c�?:�H�1H���ӄ�ev \sŸ`~����<�8�Ml@�r8��D��$zt�J���ތ�o�$%����z�A#�9�-~�� �Z�/�6Eys�{W�B4�@���uepK�95������}k�͢�F@�jK+�<})��)�Eb��z�v�Mj$����\ ���8���{N�Ī9�kĭ��=�[� ��{�r���-nמ��<�1�Ao~�brA�jk.,@��r�>���ڒ�An;V�����7")6�s�k3P�R��5��j���s�Ճ}��� Ny����M��lm5�2�x�l�'���5�c� Ҵc1����М���T��N�����r����k�|\f�Re�lϥ{n��d� � y��4�qx�19����]Zpg-D�9M0�H؟\�+�ѯ.`�"m̀go�ғH�&��x��㝹5-�v$���]U�)��1���4�<�^s��yeY�)����!�j3Eu�:�hڣ���r�P���؈�z�Ygh2�Et�;d]ñ�Z���I��8��F�f%�mϡ� J.V�6m���c��z�Tr�͝�:����J����$w��s�H�m���u��8[��s���H�6})�ܶ�9�����I�c(�q��?�ni6a%�H�jB��M�2��fo^�k���O$����lt����嵋m�k��b��5�JQڦ̅�)�n�~�_�5��r�;�w6�Aaɮ�.�*�tv��2F;g�s���qR� p��sE�ɟ�r}�����Y]&F�����$���h��S��ӊ�X��&�D� ��W�_��dE\�>���2G zU�I��^j}�+/wP�Gs��A�-�l[�+���;ןX�g�� *�6>��έ��'�Z3���$?:��`�k�}�p��е}�<�J�Fg(�J�g~�p9 #��~����N��������� �����C:䜞E �i'���h<�:Q�N?B:�A��J�+�+.*?�/~? �=z{Ҫ�>a�åh�t#>�\���+Pr����t�QC�g��խخޠ~UJ��h�o�o$�����ac,��%���@�\��V�G����{X<5*�i�g98�4~+�L��OJ�ҵ�.ݮ=�kɭ��\e�=s]��mI���X:0���Ӝ�=;J��� �d�q�2G���j�^a�ݐJ����7GG gޣ��A��R�����Q� �9���E <_)�gި]��nO��Z'��s��M���������\�n!FOz立�s�ν�]�m:饈�6L�]Z��vebzqYm�sGq�5����H���#]�2�R@���8\M:��9��F���0c���Mt�V�T�����3�9PK/`{V���If=}y�y<*E�! �vg��:�p��3�9��6����+��/������u�f�>a����upӼ7:ӌ֧����H�0��O���u��+��V�> ��+Vx������SW%N���v+.�Ex���� ���e\2}���uu�6۵�V��s_���,DSN��bpS��F�#?����I��_��J0G־�RWG�Ճw�N��<s��!8ϭ!�}MQ#�,ӆFq�3��/q��@�Ȫ��`2G�Ҭs�<�k�h���X�� �|ghs�g҃ӡ��`��iPsӵ�n1H�?�������899���8�px=(o�i�猜z� �<���x��v�19"�}�NFZ��ր��n����t��A������`�x�8�G^zzP���@ z��~�t��4�'>�����Hb�b)1�28��'�z�ԭpP���*�ժ�A��WO#������\8�jŦ���pg1�i��b]۴/�x����� �.�d��b�6��wz���������9Y���]E�ӿ�l�99�5��Z��|�V�=�������&�ȍ�eI��[��Ȫ&$�Ͼf�i$;�W;G��\�&�k1���{r�5 ��!�{�Xṕ������� Ƚ�����O�^�؎P <W5�[�m�s���W-<$��i̛-6���1�OJ�U���s^_�8bs�=�����P��� ��˪r�KY��=N9�EX���vw��X�<���_j�P�FN=k������R�=)s�H��NLd�s�*[�C/AӥM�� �)��֘T���Ҝ'(��h���H���z���?(Q��z��wnZ�6��0O�z�0���;�>� ��C���sK��IIv�5�叝���ֹ�SDܘ �z��,\9l(ǹ�@�\4�H�ֽ�����q�������ľ��Fk�ԯ ���z�Lh�������j�7q�jܚ8pּ~+����ը���'�-\��j'}��z���d�q�X����g�?�rwz��北s�v�{��䔗%��]�\����3���%v�D��>����iyb{�TO���{�M37�?��X�SZ�3n�QÂ��Z6����==:���(�rGC��-Fv�5�V�&�4١q{�ۑۧZ�H��FB�sT#�@�I�_ �ޙ^�Մ�F���b�c�<"��+���KB�J�����!��VS����tR�RV{額�m&�1pg�Z���d1�<���� ��rB͞稯M>�[�I�Y��c�8XB��+��{NT�!CԮ�WE�t� }�V�i��2sn*{h���#�i��q��־f�2i���\���4(����@?Z���-�����]���Q��+X֠Y6o O���b�Rk��F(������r �G5�m�(��t�Өe+�{Mtb����8�38��B%k+0�}x_n�bPlq�R�&�}8���ȸ�9�˜�����$��c�8�6����'�f�8 u�k+u�@s\��--���ʌ���+�+��p��z�ժ�@�x��.���WV]���%�4svڢ��i�9=k^�R.�+������^6-��V���<sm��#�M}4��է�{;�=����j��aI�,��2�R3B9�u��NGcָ�Qte�w��gq=����c�M*���T�I��zG5%����r6jڼcV: ZΗw��w?�oZ�����'��<���I��x�ɯ��S�r���ߍ�ǜ�;qA�a�T�r29�|���'�$���WW�6-���<с����v�J�p�穮�MH�X$E'''�3�����,pip{t��78�@㜟���)��Sߌ~�)� �{ɟ��Ow#�)7�v5�g�,`�r��#�q�"���X��{W�L��,:Vn������u�K:N�c�{�{�Kiu�x���?"�6A�=k��4��X�x�z��KV��t�ac&�z����4��^T�3N��`q��X��H��=*+��<g��}�������5T3=kwM�A`u�0�Xh������u�g��ֳ���� RG��"��ޔ��2:��H�ۧ�n�N�&^�k͜^�V�=ƒH���~�������bƌ��u8Q�W;���`Pc��j�J�8���6��ӧ��(Ք�=O�7�%�G?Z�tǷ������vմ�Az�+���3*q_E��ޑ���_Tp}���w��M�#$�'nq�{�?��Khİ��o���Oŷ݁�?:�e���W0����&�����WS��"�X~u��C43)vo�q��o ��2�Y�>�5�٦B�Q�G��\��t!�����$+��^a�껀;��o��\��^�˪^NƕhB��G�i��p>`x�h'>��5��V�$%���]f��G"�_z�/!��UҌ��c�1�S��:�9�9�z�x�*��ڶӜ�W�n��X|]:�Y�?R�����c8=A��'���^=)s������W�`%\�������ګ_�L���q��;n�3H{g8�t�CpGN��5�4�iTg�h��4�����T��c�)OL�)#��(6:zq��q�Jq�i�A��~t��zs����@1K�3��rZ0��R���NRH�>��B�:�aF�4����J�px��0����#<P�s�Fp ;��B>^���*'�T�* �z�7C�p����rL�H��Yw��F�^jʤ�߭K�C7%�P3��k3Q�B��J½��n��Z�Լ@�۷��Z���Jmu6�7\��fS���;�v#<����x����4�?RY[!����M��K٭O���xn�� E$'y#<~�E0�FMJ���Ӯk��c!�]�:\Z+�����ܑ$$("�Ϊx�zURX�y��W��S�����`0�ץq>"�g����GzW�^�ː;�k�$�����t�9��.��[�aW$E�w'�����,��J��m�g�cW��}�'9�j���}�H�64��"�aq��ZMS~r;f��3�26��"�Z0V-���(خS���A9�lT��C��Z�K��8f�S�jG$y河�+��<�g҉Wtg:�PA:<]z�Oݹs����-��;x���L�q������y�H�n����X����3�5,6I$;��H�P=}j�W��`�]�jY�D�`x�L�F1�y���3�?(q�#9��N�2�W���is���uS�N��Etg�6�*XD˞0D�q��.8����P���q`��&��fFq��b��*�q�4}�\�e44��b�⻃�Pv��ynFӁ�>՝LN#�#& )㚲�tH>���Z+q 3�i�OH8�]z�z���C�ґ��cET�nv�����6�[��Yb��͍��a�u++܉M%��5�)�$�R�jꏈ�>���2_�M�Hpy��ƺ���F�H�g��N�(�'v�1�ǪJɝ�����Ӽ֙��=sN��.$]�:��k��N\~�}|�j�i�D�#6�H�zJ��̤y|�u���(F /�Skzt-lF��5,B�+�Nǚj��Y>9#��cXW�ί�v��&5���$����~Q�3^[▽Kf��}�q����v�x�mY��8��W�f���8���q��u� ��Oj�֡���)����~������@�8�ڎ��y��:���-����5���O دS��h��r �&���\F7�&�f��(m��q_�g����E�(�G�9���.8�����sǥM��>ڸ����L'̀�`VXj[�ͳ4o��kKأ�ֽ��E�f���[9�����+-u>���5Lj�j-Pԓ=%���pF+3U�����;���ˁ�}k���s�.}+Ŕ*a�f����"`ύ�� s^}����I��5�f������Ҹ�h ſv:���_Q�g��䩱�����hs�n�k���z�(9�Ϣ�{��cw$�����9�zU�S��DqV$�Wɦ<#g�ac�O_�FLgcֹT��>��(dp:WI��T>����!�`w���7�k�ǻ�\M�\����Z9-��8�P�?�8�6�9��˕������z� jp9$z�z�$d ڝf�-.O^q�N�N�'����q� zt��� w0ʐ?Zkd�~E<Gk�d�0��'SS��0�)��n��Sf�H��?�+��p1JpW9��+�8�5&+�(�w��X�Ύ�]Wˀr9�Q\*�d3�kHJ���QTu�ڸ=N���PrQ�:t�9�mլ<��h ���x�@�ؿ�2G��1��婪3�Z��QL�+3�El[�,H@��5��Oe6�`<�����Al7:����3�� Q1]�4��B�1�V|����+����@�Ցq�W ^�O�ֹ��*�"���z�$)"� wr����˼?�O��A?J�t�P2�<t�ί��)Y��gC���Tn>� c�"��\�$�8��Y��j��3�իg���JVP���b�MŁ��!Вh�Ju�:�g�Ll�\$��?½���HOJ�5�-r�����9��;Κ�<1�e��p@�=֭i�]ZbH��Oc]���ّ8�}��'I.3��~_�{��C����4t-sj*H�Z��\�Ͼs^FӲLL@�rW������K{�r�t'���dʺ|��8��F��,�G u�kf���`ѹ�k�<#�n�S���U�L0�9�_���aj^:X�R����6����������:����9��pEj�j�@��k�����Jޝ�7�B��w=2 �p0rje!��\���$�p�սevcp�+��9���i�'��Γ��w8$�}CpR�C������PO\W�Y�N�= &vc�u(��������������x��zӗ;� h�~(^��s�9-�t�})q��� �=�*7d�t��ڀw<gօ�*E���K�r)�ׯ�B�8����`s�j�4��l��Sߎ��&Q��E,�8B��(?0��^(�M�./���TnuR}+SԕA篽sZο�+I���y�iǩ^�]���X@�o�Y7��F��w�Q[�^`9뻥p~&��go�~�J��f��*4g'd�h�|L�ϙ��[ƐF 2��Ϟ!��q0+j���W���Y�c��[���U���H���_R[�}�/�6p+n��F�\'�>,�f[m�G�z��f��K+1�9�4?��\3�V��#���w��.>#ks�E��i9ϵz�O����^�ǽx(rT���A"I��5�f6����E�J�ZhhZ�sƤ09�tVw"H���|����i��;MF\I��CĶ��#$����k��!���9�ӹ� �h�d�����j��F?���u꺀rA⦐�eq� �6aF�yf�"\Z)O �gw�q�V�a�3��U��N�����0o�*T�=�Y�h���Ƞ�c�tW1�8�5�t����Z��%��rچ����X�W1�j��o�z�K�mqlJ� �ב��B��dfܘ|���b� ��݉U$� _�0[�l-�����R�����k�D:�ZNrK��[+�AB�c��vק�t�iF�q��z>�u,�����=k}v��Vɮ'�w��@#�t){���k�%��ݐ���c�9?�3���8�l�E�{�r�i�}��X��Y�+�� ̅b��'��aA�=�Gu!�3�z�T��f���nA8�W�����}��5(ϒ@�<�ڼ��Xd�e=HS���ۖь��� ��/�̗l�b2x�j�����Íޣ��Sr�$�z7����g�s_��J�M#�NL�۽j�2)F@2py�h�4e����ٮ�ĺ*^�ʩ�b���<#4ڇB@=��}�'E��&sNU��Ӧ�Ʋ�7�/���4�jK���1�f�iZ����l���H�Aqas �bG ǰ�:kR\�Ս��dt��}�<�N�dUKo ���Pͻ9#<T�U�v�L��zֽ��Ot��q�^]Yע���q����v��q�uZN���!q�����͍[Ϡ����0>��X�uZ��l��,���%p��i�l��j�B�pJ��]����>i4Ũۛ��R8��wX��=*��5m��zמkz��M�ry��+�/�U����o�MBp\�Gn�N��q]�F�w� ^�(\Nk�<;�:�p��^�<T������㚧��'͂_%��fA���l�9��W���A$g�#�W���yy��+��fr����8��a�w��� ��SW���9�f�Z��@+���ʅr1�q_3������W�s�����OLf���NFP<������(�eT�1[�0B�>j�iY.JZ i=�o;Z����5� ���wgBY@�����4x��%@f����l͜�@ ��j�2��&��WL�J�/��ov�S�9�^��?�p�g�k�|A���9��v����f���Dr�FX{}k�<� ��Ε��*����t�M.PG=�Q��9#'jw¹c�u=�b�R�� ����L�ղ��EMn' �X�ܣ��Wo�����T���ȯgF��3p? IX�A!�"�S���5&���FS�+�D����a��![6��g����a �Ñ�1Z�Lj����bj&�h�j� ��Ҭ �N �=j���Ƿ?��d��J�Bs�\����������՜����q\ƙv�A$�݂]�g<~5��1X�bq���Fűԏ\�Τ`֖��Up��i ��c㞾�.�Bx�uڤ�~�M��}+У]KC7w;�s�sLp6㌃�� ܞ�J~�#'��t:����@�݇�>��W��5���Ut���Lc�jGl���H��q�n)NphC����Uu :)c9��*��Q��G�<�kH�G�h�;��U�^xy�ѽ�8 w�[����8�>���F}MwS�Ԧ��ɞY}�1���8�k��z���C�?Qڽ�}2���������o�;N7DN�2ўC�j���0������!�u]́��+�ִ�$���*��aqo6���׳��E;��c�c�t-JM����d�v�����- d���J贽z)�A��k��ag 6�:SM�R��#�OV��v�:�ȻY�=sW�`Wp��\r�PS�=��k�d|p9���@�E2U�)+�T ����`{�h~j2�s��z<ц=�B��d��Q�t��J�����y`#��}�:}ki�$��n9 {���,���a��WS�J�N;��_G�͓����ws��3iΤƥs��u��@�Wrb�w��v�ۮӴ����y)�q�9��5�J1�G�@���=�D��B��I��s]-��ȣ���ҵ��0e9^�t��Þ'�R���k�1�$��uB�^��K;��������5�0�J����j�̠����j�Ua����p`3,V]S�z.�W�N�m$zn�~�Fs��� ��M��q�df�K}h4*w�Z�K+�U���ٟ=[+p���\N~���Ӏ���#�|��k����z�q�n�Z���9�8�'�u�a�w�s���Ȧocߵ#K��*\�M�(��I�I5��5��O�x�'��z�Ɠe�N��F�FO8���Q��Ug�W'?:��t��駅��k=��{UI�Pw�}��S<����D�������;i��ܼ�UA� ��5lCVm�܍�����x���|�/����x-���s�S�$��W�mj�Vu�H�L�[{j$���MSM �+��9�2n��wS��]#��ِ���8�yƱaq�$$���s^��i<�3�j��I���ۣLs]�~o�d\�G��� ��jf{�m���3�)�`{��q#�Oz��uc8�ҋC3�rq���t�0��#>��{w��H%'��ױ�%�i�O������k��u�i�&�OB��9n��ֺ��?��$sH��g�+\m�c�z����rI�*�(b):uct�_m8J�>��k��Z��H.Ar3���K���1�9�_�>����������� �����W��-�Gr����82t��W��_ ��OvZ3�hϨ枠��c�Z�7.��0ܽ1ھC �ʌ��#�:eN�����=1T儆 �$�*�6F~��m�=E{������ɾy_���[�)o�Q����o#o���~��Q�ę���N��f݁h`^�J ,0��^}�](�r����F=+ۤ���ث|�����f��D�I�z��xzPM[���oS��s\�9�����m�fh���~�c@�т1�*�ո�zB�q���r��)��N���?���h��5J�.���RDKgi���Я������*��p?�N�ʄ���*A�ۃKT��F�ZXXt���'�6?h�&����|�b���X�Ū�l�A'kL<� �il���.,��M��`�8��V�l�#�t��h�it�ĘBr��k���B��>��k���צ��s�4�,M�y���-�Q�]x��Ӽ�1�I��u2��J�X( ��/��1,3dg��'/f�=���v;֏M���z����?�^+�UW��}������/&52��W��kY������`2A��j0Ta^h��g�뗓��"�q������ܗѤ��Q��w���- ��b͒]Ku�֎��izX$;F0?N+��R��N(�����Y \� �>��n� 2�c���<��)��Px�qZ3�@�x��O�_�b2c���c��A�=a�D�p�����kp��}�8�ڼ�~#�JJy���:�Yz��t(��è�f���ا4�-����=�D�c�MyV��;�- ;��� �[Ԥ�Rds��1\��o�N�ϥ~��e��F�9kUg��'��YUߜ9�UUI$:����k���M����?A^��}z��H�F�#��_Z���.�k�} e���bF�f���6�<���3�mJ9"\���5Q�w����jќj{6t��,�<8t*���D-�g�+ϞK�y�|��3Z/p���$8�zWjʝF�!JIz�����ؓRh�0�[>`�5�<C{�6q���\����Kx��B{{��\'�R���"<�>�����U���y�����:�p����_¼���E��Bx�%�=�j�ֲ�o�\3��1]^�B��9\%Y[C���{�]���#;~u�h6֖� `��c���'U���s���<�£�5k����&p���W�b(V� tH��e�=��e�6ɀ�=j��$gۓ\�b��9�GZގ'\�q�_)����;��,�� �����rX)�Ìg;���6�{�ZbG/�r9F��-m���e`��Z�6��B�ڥ��2�b�ml�H��ּ�F/�IXm�����֯G��rjKXI�a��M ��"�y��m��$��+̗<s�V�0���[l�`���5T�J02��D���(����~*�PG9Ϯx�yg���G-n+��\c?�X��� �� L6x��"T~���d���`n3T�v>�m�yg���~�UBn,V��㩩���C��:���JF���ST�.%�p�I����r�=Ȫ��p�yǭ\����z]��d5a��@�zRH����=��$j=�{t�UsX���)�>=H��N;K;���Ts��]�nK�9�H0� �(��QQ�') �!�qX~ �l�zV�� �Q�ʤ��$�ʒ��r��>,���Rg�'�OP��Tl���J���OV�̥�A�zW�hSF\� ���Z�\&aNqT�F3��v�T ���Z<v�y�wd���7�er��\�'�G�y�� w��3�k�1�l�tc�P�H=y��D�3�$=y�&kY�9����rs��u^ԚX�ҼlV6扴d�Dr]2��s�=�f�j�b�j���R��.O^x5�2��e?C�J�@89�21�ӣ#�n�)!ܭ5�Ex_±�M(0,��tx�!��M�^TQiE�.yw��8��c�<�����uar�|�$�C�+��>9���\���8�� }3�W���S��e�2�5-O�q$%Y���AZȾ�g��(�r���x�óZH�VQ�XW��\eݱy�X��+�_W��*��j�:�IYnw?�[4�b�|q�z��mZ�sdu�:ׂ趍��wێ�u����4l��J��_;�e4�N���U �Q��l��I7�b��Uu�����8�NJ!������u�S�eW�G˃���O_ S��U�-O��;����\�?Z�%���zzUYo�G$ ���*Z���JLВ^5μ��ֱ�5^r?�R}Kg��J������맃���^*�dUY��N5�\�|��+�� ��}���q$#�;�eϩ�\j`��`��)�0x��a<�7�';��1�j� �O��j%��MA-ӑSW���J��jc�����T�����1֗�����:�rk�ɽM,W��<cFg#�U��B�~��#c=r+�RԤ��/��qǿ�~l��zԨp�u5���ƿ�T�`q\������n��v�Uo-ׁ�zW<��X��xω<=��¼�ľ� X������5�(2��'ڸ�hK e)�ڽ,�5�r�r��>|���6 ���עx��;w4)�W���|�W��}� Ѻg�8��'�J3��i�[�S��u�;�c�����j�y��S� �qK�8��W3'���]��Zϒ{�:�nl�h�C��y�g$��mXR9���'wg��h�^'�|��\E���_*N�O��_J�w��(��m��)��� �ֿ6�z��s�ŭW�7�Y�=ņ�'���W�q/��ӕ|��w�+��˒���g�FEބT#�8����^;ӵ�6;�k��]s���B��(e�&� �LF[[��#��u�M^"�jW�U{�PF�'�J׆���(z�^e�p������� � �vg2���f�6��֙n�eU�eNI�n������Ed][�10G�^S���ɤh��Z�λ��w4�>S�s�ެ����f0s�va��5nK���(�V;��zR!HAc�@�&��/���#$㯭g�z��DɁ��z��i��$f��]�m���`�Y�)<V����)��ÒA�+]��̹�$�V���t��ө�vl��1�G���Q[�ۀy�ޙ�K�4Y`pzg�kB�5�>��g*z�r��I���=����c[1�$�A�W��jv�Ԟ:�5��i�a*��C��t��>Te�Ы\�}[I3����:o�fK�\�p����z��8��%���䯯�\us�[�Si8$�__�ͩՏ�#)R��~���GA���_�-j�%������"��܂6���L��v�(�H�NN�<^�r+jp��Ԟ�Bђ��V=֟$��{���W����`)���5#i�� �g F1���ׯǓK+�J�Y���7�$�&3�z�V�[8ÉH�S�G���Ro �mD�|q�u x����h� bwdu��gVw�9��>郡��A;��$��V// ��v�ǎ3��/Cd�8�r�S� ���jZΫ�[fp3�5�<+w��F�$�b�Ά���A �&��SJ:��3�1��4w�T\)~2��rK}6�b�i�C�ּ�ⓧ%Ktw�o�9ltzo����7L�w��Kkr�F9���+cJ֡��#���a�!v�N��+�'��s>s�F=i7�ۜ6��:ֲ�&�2yoN���x��j�`���c��*�+B�3Z��^���bA���oE��q���c�*嘑�ʮ���6��5�:s���%ٜ���_�� U�����3��ji�3��u�>��J� ����54>��HWE|}�e�k�˳J�Vz�i�_t��ú����ı�������ҽ���7z^� +�����6�m$[���'�|� �~�ֳuM_O��d�UP�r�k��q���,��9����=O �g�%�֥%�(o�O&���z��Wh��������w�7���}����4��Qx��5��Cg]�Hu#���o��<eZVc�J���Y�[���"�#��T**vc֯[��#sԊҳ�v���dW�W�-�記�{DR�I�Mji�O$���ּvj���W,m�r��W�_)��ɒ-��c��SD� ���ui��|���+=��~Y��k΄��؉�P�)� ���3�9��5H9ws����M !]�GAMU�zzU��p�ҡ��A8�~�.I�3{��>������#��x�����<�{ԩ;�į�A�^��,[��ք鞣���s� ���V�wz�n�-���Zx����x����_�TB]�l��;ӕ6�h"��;�sm�@w��)8�{�&�r�c����Dب﵈ �LT�Sd�x�pj)�1��bm�G~9��U�5e�l=�>�Yd$��zR�(�����A�����U�܇s��'�zT��� ǧcP� ��� �8���]I�B$;���)�G���8�y���[�����6��M�9��'�ŗ�H�(�=3�ӊx=䓓�m4��̓�j��t՝[`��i�#��]��=8ǭTC�'� z�FY��+���6�ʜ�@q�ϭ}we��<Q�t�61�Fs��\o(ST�j�%E7̎[N��w��q���0[�o���\�����|�Gsx��kpIU��dd���EJ3���tÙ-���Y�P40�y�Sh�&�W��+�z����XX�`��ֹ��I����Z7Z�t�9狄]��t�R9C8 �5�V\�:W���w�u���1685����]�}���e��J�:)�SWF�g�9*r)���4F ����64' cp��*�VE�^{~v���naӡ��K�[�x�C��6���^k���y"�ֽ�U$è��[N��{�p�ڔe�.*[�;�C>�>��;�_��)�m[���N�ڽOž�YT+�Ha�W���E����`�OB~W��5�\U*�_��e �3m�o-/L���� 9� w��M5��pp3\"Z��+)a���W �H�hF=�����U'$�(���ެ6�1��ԙ�����ENrǯ�=b�����j�- ��z�į������I�D������+͝j�~�7QKb#���L9jG�{f�lf��h`�zG�#ڤ�<�>���!PI�~�"�#ڜ�v������ �9��*�J���}钐W�+F#>��Ef��@��s�<+>Q��'�i�R#��V��~�ZDГ��R��P�\TA��"�Q��i�9<v�M�H�yhp;q�V��������ny�=�����Ұ�.b��yf��,�����\��,%S8��4���NNzW/� xbW Ҟ_=v4�e��>��\ZJŇ��IT� �'�z�?xy][�Z��ok+���.�ሊ�S��lr�0~�� ��A�:�&W#�G���^���b�2���>���N>��>�i��{��Vd�*H���I$���fMjT���u�v��H�ɬ}B���=�ֽ���_mK? �{�x3RI�������= }�#�&��8�\��� vé���H�gj��P�����q�i��C�s^N<�r\�:?�+�TþW�OֽR���E ���{3y���k�٫����K֥[{�~c����_XxG�V���/�� b�+��Y5o���{�%����v�kI���N�_��R��Y�S�c[�ƛ�2,؎���c�ʥJ�ȭ�)EsCX2�Q?S�Ԭ�"!�L�]��U���s�[r;�=k/R� �A�;�i��Y��ި��Z2���:�+\!l��i�.�lUdF��%kc���y� �˅H�3��v*ج]x���N��ct"�.�h�^Q��E�K�R���3�0��^�m�Z�[y�c��V>��-?N��2(^�M},��eH)c+Z=�����N�֦.��}>�>}@����Ȯ���ak*�5)�i�6������nf�L�E��ML��7N*��6�j�y�'�i���U2��)����_��qP��Gp؍�p:�+�f���v:QN����'�b�/t���e��Q����S0$|�?��BZ���=�J�V�]�]5<�V��A�o���܊��t����ك �W��^���y�S+������ ����:ׯG4��}Edx��Y6�NO´��V2[��`dq�����W9�7���Y�h1y�X�0;/z�qJ[hO�L�/e�Kb�9�Bs�Z�|]����73!<�-�}oƽZ}��y��r�����=�gR�H�^�=�eI$sT����Ûhɚ�F���}��� xb�5D�C��<�+��7iW�u�:M�i��xW�iV�;�ԅ��;��v��p�+�!������-v��2�)�v��Rh�.�L!E���$��Gy^h���q���M�|C�9��.-��1U�?�r6�/��;��/R2rK)��8GMJU*%�4�މE������?-ʎ�m'@�� ҩdS������;�=�i#������^���"EhX��G�7�ʂr�f��q���$�{�����%�:��y����K�f�e8;pzW#��Z�fF�#Pr3����*�xע�9$�-f_�&p 2� �OS���m.�9Yn6�쫜V���\��Gl�;�5q0�[�F!�1��]��"�l-�Б�sUgҿz0��$֦�c(E'�炼 䯉��Y�:��3Y�/`<��y��h�k�-ё�g�,�HDM+:�����=�Pv =}*���ob��������x���k��m�~&�m7EK^[�+i!(�f���5f d�q�\8�ƽk���%�^@b��qO��B��AVs�9�:���w�כI�q��j�������ۦ%��x�Gb�rR�@'��˟֏���s�j=�D<�=*��|��B[���y;�z��Q�#�8?Qڤ�������iYϕ��:;U$ �B��i��9+���H#2��>�b�!C8��З@#��AS�|TWH�,3��B����/��L�c4���=�8PNx<S�)�ps��( ��s���3��#�j���ЌDž���<_6W?_J��I�jI�� �'�OjҜ�����:��J��Q�@�m�cJ�)N�k@��b ���B��H�h�2 <w�I��S�f2 :�嘳�q������� �2�G�I�!��(AQB�yS�g�sPI!B����H!�'�]�z丗q�,?���oC�j��$g9��1#�zWe�"�6���q���D#=�Zb��rq�s�D�KV���b˔ ��q֡\��z�IA8baRyJ�l���r��&G �I�?J�l�6����21��@y*Jt�3�~��#�0I8�(�5˵�''9\���^��e��j�卼�C����a1�p��Tg(��3�CFԾы�gO*y�� xgK��gk<H'ֽ�ƾ�XT�I�A�^emuu�j��Kn��Y�7�+�h��Ҵ4h�xhBWz�Əl��@ٷ.s���/0��F�2;f���� ��`#�@==���.���6��_Z��Щ* w��9.g�GMiU�d�u�[J ����:W���X�O�B�QI��hxG����=x���TUD_�\ܧ�$t�)�n{���Ƴ�j�@GE ���W �����Λ��4ܶ���F�Y� �@���pv�l����������+�&�I��"�_xr���`�u���r8�j�qt�F+J]9y���{ ʃ �u���� �����S�㸉����%�h�+ͭr��Ͻ{q�NQI����I���t�J�lE�y^M/nO�yΚD\��ZV��9��)�� ��V2�a�:?¢u�ޭH0{��U�<������`�sLb���֙,�!*y��N�F���k �Hv4g�D'$q�N�x��s����R֝e�7˜ܱ���gp���rra8��G0��VY*O"��Ť����3��s�Z��teR������{4�길s����x�vgrC�qڪ���8�_��W)���yrQ��c�>��3��J��4jP���F��IN<�P�G�i�N}=ix���=�4��)$��u�� �Fр8�{��@Y@ ?�X����H����8�;U�.�c�J�Y���Ȥ~5y�=���g�q�����l�u�0c�ּ��������Bx�Ұu�$H� y�;W,=�\�٪��g�~+����##���a�&;����g��ާ|Y8����L��G+�k�r�����2�B���IەZ�܌߮{V��g5��Y1����c$�ǥ}$$���9'>���j���q�)�O֔I�#�j�N��٫3Q�ާ����{d�����Ԍ�Y�� ���]�q-h�*�[����[iVH����YN=���?g���z5�O�'f�!c�'���x�֜��8�����z ��.�f�wG���C ka�x���i��ZtN���"���<���A��-l����/�_��j)I%ƘXn��c����O��?���n�.��Xr3ʟB=k�<��p��_�0�ߪ_�?�~�ZX��%�����2c�)$un���w��k[MN�<x9���wTҦ�r�IL�R�CG�IsE����sW�� h��5CH��J���� �U�p�XH@0:sTntԹ�������^Lq5p�o ѷ*j�n���cme+!#��QX'MIZ�F��gl�O�J���̅�aЎ����$�a�;X ��fu1�1�|��F���KA��فө5�y�=���aOr+����#<�Q �z�=��u��<�s�s����*t#V+Fs,R��^��w]���eF���s�V��l��''���Wa�x�Z�+j,����r�{ ��|1oyڅ�L�����W*� �vo���v����=���#��+�3+BB�'�� \h�r�h��@���k�U�HHَ;����0s��]�n�c@�kx��xUV�xc���V�\�hN�98*娎4 ��Ҹ-(���I4Q�8�����ǻ����S=�i s��=ˋ~�#���[����� ͍�px��Si��%��=��m��FT��s�V,�� f�R��ؖr�%�#�/].��)�E��l��Gp��+���e�<�J��% ��~c�ZΥV������˿�-32��zUV�-�f � vSG��������$����\�9�5���Rl89��W%�6�5wH�d$nPz��t��Cg`�GEI�O�[�Ԝl�s6�ɤ;Af�N8�Zi�b%��V����}9���Bs�+*rv�fLzXvɄ*����H�Bb�,�Dl�' �a����Xc���M��pԥ ����<p�Z�G���Ҧ�v��h�b�𡐮�c����>V��C&���}��S�L0�ɩhc�Gz7��p��js��P�+M #�E��}���0G�e�wjI`䍀��s\��oI�T�eo�� [gm�X�ϭ8�Rzc؊��4���<`���^��{(?{̗$��z�����Ғ4@�scֹ�s�_ض�MA����+��G����Q4�2!����溨����Px����[E�gU�z��� >ؙ�X��e5ok�|V[C!�^Q������|<�u5C�j3̧ƿ"7��z�'������Z�M�����B��dQF|�f�����c���/,�I�,8�fiӴ�h�V��:���I��R�� ^@��ul$� 1~�j謗B&��~u;\ �P?¡��<䢶\ K���{f��$���1����j��N�@�灊Զ���ԃQ]���e�OOJ�kj�bp� �jq_h�'�zU��*��c�@�Q<K ��L���>��A�bi�̅���4���B}GL��Dȯ'�psɥ'���z�AS��p9��?ҩ:���G�K^}�uS��{?-wO�cP��ё��U�%8�[�5�?PhsR�#�@��4�����q֧�Dю0Gh�kv=�.T���Q�xw�Ӄ��@�zw��BG=��Nq�9�JQz�UQ��?p ��?Ҡ�\��j�Z7��!�3�vЫ%����F˓�G�G7+�A4�0�G!��Z��B�ƽ8��d�i-�;`����8-�Ԧ2 ��8�;����J�O[H����ңe�/��>H�9�}i��W���i�,$>}0i�G'�1�?C����*Ϟ��08����.�= �²�b�F1���@�b�B�E��� �����09�Z��(�*z�ލyҒ���ՙ��\�W�c�#c8r8a]�/tōLL�O8�H���/����f��W�{����J������V�~[�r����~$ 2�Ŋ2m!Nz���!�/��!���J���M_��'��gf��mf�k��=����"�s����nS����P|���F�Gͥ�_-n���]�<���r9�^�m�[�`;�^I����V�DvEI����K�!w3���^.[�Vl�-��R��� ��*g%c ��ןi�#\,bSϩ�]���C{�@n�Z�BQE&_��7^}(x��F;3M�2n��>9�������Q���# ���zܽ�2��:}Mo�+�~Y�U�C(%T|�J��pad�beʀ:���^8i.$�@��x��j��,0��@I'�OҘ.<���F�� �Y��d�09=�P�)��Z��3n�z��X}�X�)q���k����FK���˞�umb-�!c���p*���!���{ܴ1���Bۊ�k��-��8!P���S[��HYpy������R��+�w�_C���Nm6>N�n�8<`��� �\P��}Ȭ��oݼ|��1t5��A$�0:��W���#-���'uv�C�ߕ Е��� ty��V�Ϊ���y�j�s����j��7�u{x<ƶ0�8vC��5�e�����$�k��%J ��g�[��� ݼ���dY_����^O?����n.w��Է��_R����Z�V�W��:��Tz<res�=j\�ǽai:�H2y���pW=�\Q��)��'�8$�I%�\qL�`Sѫh�L� �'9�ޥ��b ��L@H�~�4i�Z�:�4 �go�F���ZU��zƐ���8��Eӑ�I�W �����w��z��Q�Va���4�1N��xu�W%{t�z{��|��[$�F��¥���'c���Spf��p�k˵�&{)\m�ӎ+�ohQJ���x��ƾ��m��cӥ{y^y�/gXs�����f03�5�� pk��g��l'mѐ��K��V#�y�)�.�W<��ޕ�#�SM��G48�=1�V��2H��$j�V$c��g<���j�u��5JMl'��-�.H�kc��"ռ�-��r���ȿ�O�����OQX���&p���{/�EӨ��f3�h������w��x�� ��a��bH�������X���Y�#=~������������x�RX�������R����|k8�BBC|N����ߥ|6c�x��r��>�=�O�GE,}O�WݗF}w�i3X]����*��E��Ñ��m�C��Q�o2L�r�sY�6�d;��2y�Q�+��X�>�ь'i�?�12�=��P�xI��N���n�$ �X�S)dSt'����'���itc���@�y�]�����f�Q֚��7˓�nq���T��s|������"�K�4:�*¹8����-Fu_*�} P����3��څ���l�2�ؽ����Dž>!��#�Iac�����_X�n���\��Kd�ǯ�����e�o���Ť�Q"�I 9l�E}�_SK ��Sz;�v�ʧ-�<���ݽ��WJ��i�vxj��WͶ�����H�@�֪�6�;i����z܍uxm�9*��^�,l��h�!�=3^N?6���B\˪kF����]���|<���ң��$�W�'��ݗt��>��i܄U��1�q��j��"Ep#U�X���W��Y�u5Dp$KB�{��ķ���sY���B8�_j�k���"L�Om�2��Y��%�,��[�2s����ȹ,�V��l�<,˅��"���ě��:t��Ӱ�жoC�.T�s�S.��С�� UYeh�ס��-Yng�3����m4�[���eg�d䓃K{|��j+1=��U+I0%��z� J�'�]A2���hs��lV���]d,d��{U��-�N�#c���X� ���6����ܕ����R�`�^�����x�� '��,ac?9%{��rK1\aOC���l�JI�@����Q��Q�E��t���l�"�d�$�5�I���H��"�G���t��+��jd���ꧭU�$pŎ���jX�o-�� �9�4��!�sS����B5S7�@�S^�t�6<���3 �Z��i!WpAlk2�D��,hZX� 7<�]���Ju�P ��z�7p�Xt �V�������ϧJ�é�Z���t�Ae"\��=}��|'��]ޛYeOF|g7Nk��;�+��e���ۏ)T�ETR��x?�_�R�D���E+����2BŃz���W�uN�[4 �y�o�M/�����_��V�9S����yh�-��sC�3�.�����l��K�I"w���k��<=ii5�B��rۺY�&x/eU[�=�WC(ӌd�5��� ��FA#�Sȉ�"��y��cV��@f�o+8A�X�ص��$'�p��׃V�t����kԺH�9����H�l���k~)�t˜�^E�k��'�m�����L�-���o��1��/goA9�;�Ԥ�[��<W3u�KI��t�p@k��Ǟ9���������1Z��w� ���'>Zb���J8t卨��wr%M��ä�����{g�j]���q�;��c���Ö�� d!~�3d���[Y��q>��+�ӣ�h�2̸��p���#H�,q�Ҥ��W! �=A�r�43+�` ݿ �P��B� #�Hw��<V{بfdl�:��v���@�d1Q�6�2 D����%V�W#�����nBwթj�Q+"��pGze�0K�@��GsZs$��mw=�2� Oz``�B3�j_=B4X�G�&�� +IQ|��0�r[��P;U�yc��y"��X�ц�u�-�*�br8j�� �̤�1烎��fU��=�%�9�,a�W�XX7Dh9����(�.:� �kr��y���H����z�T �\������}QMɥt%�a���ޡc!L�~OJ�ei3m�i����Lq�=�]*����&��{�ќ���֠�)$�d1�S�ӀW�+ХZ2Vd5f0Jd����Xd�(=�4���أ'���SԈF%9���>��'��N����"�Ov4��.�8��n�q��%(ى&GU �9����8#�Rf��(lg��M 0Gj�s_�:.r����K�r�w��D��V�=�Ւ��g�瞕��ut#ʿho��Fk�X��n|� ����z�o��j�[Xܟ.T�H'�}1_N�ZJ]F�����5�_>#�ږ�����Ὀ���s*P��՝����9�ӓ�<~h�O ��6���6R�H��8�j?�7)V���>��E���q������5*´��n���H�#�ڽ�O��J3���i�*w����A�C��:��u@v�ܙ������?���7��3��Ҹ�v��]Z[;g(\p:s���I��+8���U��-���SJ�^%ZO�"��sj��zׂ�x��*)������4j`�o"�};M�����P{qڴ4�z�y�-09��k⤣Q�SZ��sE�kHj�[��1�D�C2 ��8����O9�L^��ڽӢ�g>��I�!�q[Z�.�q��W�[2K�I8�[ԃ汊:k;�p �;�ՠ��z�%�_*���GJش��;9隨Yn��v����EY�<�J���dA�:u&��9"��Z�S���<Q[��ٕq����/���R3�#�VY�$`��;�P��c��=�kԩ�ל=������SO���|��{Ka���~�z<_�{����(�_gNT��{ݥ������*E`(g�� ����r`����N�`��%)?}+ߡ�¤ꤖ���zZ�:��B�He1�H��Z�:��z4�{Z]X��n68��߇j�6�a�����C�; 9��b�� �,�g~�Zۇ+�%��;]hן�qѨ���'������)��D�U��vA9�u�:���5�ʓ�@�z��?<3���h���qm���`nn��y��:]�Z�V���$�h6�����05�R�f���x ֵ��i�鎕]��<&p9Vt�B;�X���_ ��+Gs��:tUe?��O��r{�5���tH ��8�Yz�]ɧ��2��������d�[�Ոr3�s�U���±t>8�+�ޠ�{Ӊ�Һ��DXcI�g�K�s��"���I#aA�=�,��,4�@늭5�<qQ� ��Up��'�L�\i�A/s�Y:Ɛ%��zr+I$d#8�jF�p��< �8�jRmU�o %�,�B㌊��>kVy"^�r+�Mv��V;zW����$��ߗfu0sP��M%Qj|�so$-�R�8 �s���N��v� ;k�5n-ܬ�Þ�b�@��)ׂ��զ�ƹÞ����:�*���0�5$3�<�_+0RM��7/�lv�m^�F�ҷU��1�_Zk���US���MJ*j����)�Y~�Q���s^��1I��\iQ�w�^�sh�`%ѝ����_�{s��<��#0 䖒�{z��j����$�<e�Ũiwq\E*�VF�3�#���z��|Nj�s�^l_2�9�ܞ��>�>�� ��7��/g_)z�~y�`�����Wu��7p��`����H�k���1����/���>&h� �X��A���@�3��=�w�\B"�l}�G#��_�P�K���gZ�Mt���fz�7���)j����i��t5��[�m��A$|����y�c�ȸé���Y��Gn�n�x���x��ԡ.]≋}NO��N�8��ݹ$�ǿ5j�kg���!!~V@���qt�OH���Y�\����iڎ��g7�P�� G*;�k[� 2�ܸ/����*��$v�����;S���+��3pP���+i�Q2FB��J˒Uڕ{m绸���ZcZ��t�ev�q�I��k�xO����ʼ�����:�����I��6��a�\�� B݀���6C��e:|������L�^��;�jz��{ci2��_�9?C�T`�4��E��oTH�w��U���M?D�*x�9��v�k݃)��m���Ğ�o����KT!���]��`8�Z� ��/��.��w��x�w�[����[�k�/����V�i����6�����p�����V����o��h�6��?u��߽z�н����%G$�_=��U�Ut�h��=� cQI^$֓��pf(r~@8?�"�!��S�b*��)-�C���?N��۬k+��9A��i�2I_B�Z��9v���_J��e*����*cF�2q��*�ݫE ��8<u�Q�5�����Uv�?U�X�ћv�A��T(e��8�G���;��4�����ΩM5il��V`_BU��M�0L���:U���a��2+8�=sWeӘZ�yc�H��#ZjK`�+�n���p��4�D�#�70"�Ոj�8db;��+��ڟ�e45U���r k<�Wv���_�W/\�61���:pj��,"�q�� �5�6������-gP�hbP����TqZ�-h�mtkZ[��h�l��;�Ѿ�� 4��9-���2���;�y�ߋ<?kq9��8�����+�x�O kͤ�e.�[�]��~�(��<1ޡo�eC0�Z�� �V�S�U�d2��WA����/�XZ��c4V���ku$�L�l<g��~m�%���gҸ����:㬷�]L[�Ff@CZz�ͧ�çi�|�j6��Ib>�����+}KZ�ݵ{��}�~u�ڶU焅��J_e����-y�W��/-b}^��)B�2��[kIs�9���= y���ij�^[��(�4en�l�O�I��\]�WO��D�a���=�� �8T��a���z_R���Q٣o�ʪJ�d���jƏrQLs($wR��k*�f�⥷��7�DPzW��ۤ�&��ƥ�7��&De'<��>%�TԼ%t|7*�z���h��譮QgU$�l��$Ur�яZ�2l�xi�R��J�E+�?.�ʬn����|C�/��4�IJ뺋��1�X��a��/O�^��_�~��I6��;��?��j��wK���H���sܙn'��N��Q��c��n����UFr���k�����vV�IZ�O�ȚtaM]��rO�z~���т8�^ X��G�?x��a�y���/�W-oi:�>��Ͽ^��.���=m�m_b7~=������S�5�c�h�����-D�FY�^��+������\��l�i�mD�$��ph~'�D���U��A#�<W�� �s}�x���V۱�Ȥ���֘��-��n�G:�"���B2�'����^��K9�MJ�Kq/�-����Z2η�a��RO>ճ�H��;2�عB1��x����o�i�n���T�H烏C^m,� �_�*JkxK}<�c�� �-n��-3�K��H㚷4~dr�˔q�z�t����WV�� G~+R�a�R͕!s�L�ׄ��:�Y�͟r���+yM�������MAB1��?�I��#�8a��95^K��Ao��1��K}ll�y����>��1&/8�^�o&�[1Glg��²�o�}Am�Trp���UүU'l.T�4�b*�'�*+��[��u8��k����afG_�IɮZ��2��A�D�ݗ�����a*VNi�n�/�m�s��b��3��VfhR����}}���qey����C.��`�o�8�_� �"9��/3�R)bp�hM)�__'�����B��B@q�QKi2G8�� %��K� }���k9���@FNq�@Ὠ�Q�o�FK�B�L� ��ױ�-\E�0���3i��1�����o ��D�u�k�[uCL��N\�����ԟh�N�Q�~~�Ka$ѥ�!I��a�5^X�N�����W �Z'�h."ap���^�hܫ�iT~�CU�����8�g�ǟ�֟E{'A���uG�d�%�I�#������F�2}�>�~�G�9V�9�j�#�s�=k����c=��˵�P ��Z(� ]��"��t��8���I���gg�J�NIj&6kL#I���i�Qٱ��6��qZXK$/�`Y�C-�߱�X�Wv�^e˗�x���8<�m�R������Ef ���l�t�ks�{ҩTIY�+���gv��&�n�X6|>���Y��v2ь����J��;u�ڡH��3� ��"����� 4�A�=ј��mbIl�aI����;7D���㚞���6 c'��;�M��܍�����MsJu\��ߨլs�-ѧ�_�L�6VE�:q\��"W���� 8ʨ���^���e��io�D���#+� q���=k��2��N)�QТ�,�Y�*;��R?�\�S�����Ck9AL�ՙ�E���T������Q��JòG�\�u9ǥs����9g-t����ҡ�����]�Z��28]J�U��H�x�� ���#��=k�����p���^-dg=x�N] �����*�QSt`�M%�������]���`U.d�f{)8������H��WCn0�G,.sE��~�㹭�� ՟�$�B�����V��x��M����>T)©��5��>[�S��y�^Ev��\f#�6��o�ʖ�'̖�����Ia����_��D�YȊS��p m]x-��n����.Gj������0[ɤ��ۇ���Ϩ#�W�uqiקd��w�}���B��.��b���E�FrMZ�s�k~�]gQ�͉lQ����5�������!Ӣ�Im�D�9*���Wq��V�N�x.A��e*~�ن��,�a1��To���:lcR������I�x_��:{�.�l�\�v���W�����֟�<�!q��f���w���]=ũy���6���O�ɚ��wW���I c�]�J�S�'�+�vv'.UT�ͷ�W��o����K������b��"�`���!�Yu�X$ #ȣ���v����GJ�b�,Sl�9>T�#���vI]�~������T��jo��[���)P�e�YVw� �H���n�՝4��i s�懛�9�����*�U��o���O��s*�b�2�Q��)��&��jn�ڣ�7f�g� ���V#�ld)���L��횱�M�q�0*���qڈ������<����� ;JukZ+X����S�z{ �Q�%���R��j�w�W���y����I!@ǽK���se���� ���� ����f��-�3ǭ}Oqf�G�Q��s"��s�@ ��*1X �Qw]�TԴ��lj�9u��0�"N8��'�"���>!�+����^)��Md�������e��,T--$s��������x�QR��N�b��H���T|�G�^�q�����/�FA9�M>r� �j��~_����=�VOsx���u�v$*�GL��.�%%w`q^�so�w/8�O�D�zW�CF�u|�+�r��C��rWE������$�?;�c_r~ʟ����8m�7����*HN"�>�OC���3_%&�l�T�i#+ �������$���������%��5�o�����Gu��9��-e�ayeO"S�Iʧ|�u��`�堊v�|J���x��/� �����M�"�a� �<��~�����;Ho�$���|I�|��9w�z�{VKˀ��rݸ���v~�z�G������Fu�՝�Bt泸l������y!��H���J�CD2=�h�7F@�B"�� �X�;q�O�R �L����(TB�U�wc��J6�[����� 霆�� 'DmSC����Z�?����xz��U�� G�r�4�r.&��v�ϥt�[��-"�Iן���dq����X�&�m�.��B5��Vh�k�GM���?J��x�~��?�E6s_���t�쥺7R��l���Vg8i���^A����G�m9>�%ׯ��M�܊#�����������{-��x���ca�1%�}wJj�`�?���[R6��_��E�� ~�$e�{W�`�T���H%t��j�oF��~G<��a._D|��|<���^�/�g�Y�ڀ�"�^��^����b���`��.� $P���b�x�b����������a��]��д�R҃����M�:�Z|9��BO�Eu˫�ic{�=X���냱�rFW#���b�ڼai 4䮔Z�/V�{���~f4�уr�o���P���i��W[[@a]���e�by����W���[�Y �ܳ� y5����'x3��-�hڍό�L�^�([H�����d�=9�;ms���]d�S�,�XiWH����̌�ؓ�ڸh�LJ�������=m��/3I��,U���>���Ή���Zkq�R�B*�%@��z_"Y/��^䑹�����*����^�m-o��X���KL�FN[��zχ�G���s����o��ps_+��P�Y�����\d�S{�\�; U�#F���z՛;��i�o0�"Sz��Q���f���)�\)�u@[���w릺xg��A�(,�|��ָm(��b�cma����veH���__ґ�G��;'��ܼ}��O�����hd�&��G�K�H�p��F�w^u�;�H@�-xH��]�f�� v�J�ZN ��;T��"�7&KQ�1D��t���o�L�J�]��YO��'���.ʤ�~i,�vqQ&企�Ihm&������8������sŞ*{"�����fD�@���� ��BӮJxa��(��&ID�cW���;��{X<Ƶ6�5x�f�����3p��]�.x�A����M���R�@��?�� �NsZ>��� ;�ڏ�&�A;fH����=��J�Q��~��Q��vzv��e& ���]��'Ҽ��ƾ2�ĺ�����V������o�S���W�a�⾖�g�b0|�%ӷٽ��-].��u�����ŢxP�h>�<�咅Gȸ�< �Þ7�<E�O� ol���G�q�8��1ֲ����F�vm�їhFE �ێ+�����xB]?C��U%s$���B�'9F@��y0p�^ӝ�S�;�g��n�F�3��e�����{)�i��O8��}j���E��1r,x"C�k�?fmg^֧��t?���e�B�4v�'�zٵ��o��Y!��x�;)�ڼl������SH�eq�6B�̆4S�n#-�=��V��Z^ImkTۜm�֛-�=��d��A�60�2q�jh��Sky2�p�nT�s݇q^=�����jCqe$rY�$�d��'�皒mj��\y����d���"(�$8b���+ۜU�9���e$[�m B�!%�N1��i�i6 �{��k�ib��b���3��ȱJ�\)�2q�P���iա��$XZ$��è4Zj���-��:a�����)�8I5x�����^K�Gez���Ź������kSͥ�E�A=����{�{�-�$}��ОĞ����j��^,ik8�R��-���bgJΒ����Wg��)Eu>_���w�ZO��u�hwr��!|ϳ=��z'�~x7@�ǫ}�Ry���I��Np+�=:�][v{[�B0VU ����_"�V��-��ݥ��u�>��0G�5��h�Q�eJik���-$�>��Nqm�����m.�3�Ζ\F�`>Z��#����x��~�f��w�������|�����/�O�u� Χ~�0��d�$�Ϛ��������|_���y%^m��O}���T��7����אJu����y���3\���MZ�i��%,~_�]�X��'�^�O���={�O;0#2�)R�ڽ��گ��j�Z�ڵ��ƙ7�nu�?��f� /ĺ6�f�C�,5(�|��8QȪ�gUp)��t��RN�����j;�|�]>��Z����`�6<���d�-���op�Y\?�k��F����M�of�C[���H�*SӚ�� �/Ҧ�s�[� �wh�\�pG_��+楆��j��g�����7{��K4��U]�kn�L��߇� �X��)�M�$���������.�'��6�ď$�<�,W�h�a���k����u��v���#�cǠ�|^�Z��kfm'����W������I�����V|p?3^1�4�=ֱ�]x����%��֗.U��^��W��@�lL�F ��s�"�q���S��hMD��ռ�^�=:Wv[�a��*���v����W�~��N�sSOn��.��қ{��H�IY��#�����S��K�& �4� �7jK�ۂA?�h�� �����ڶ�ckq���D$0zz���s�|�\^Y�"�K{k!�B�a��l(�)�yi��->f�����lL��H�eۿ�1��o��Ɵ4�Oğd����ɍcm�����Q���їLmJ�p�g<W�]k:������� ��iV("�r� ?(f��ڽF�������xn�@>����ܜ�;V��T�B�6|��8��I�j�+�J|�N���Qs,v�[*�1���W`����lL�*��W�jz���i7����˵�.�|�� �����4�Y��Y������ ��x%N�e�Nj�{7�6�U;Ǫ�.f��a�4r#���|qQ�mm2�����UkSHot�G�p��Z�ep�G�c�,�Yv��}�ϔ�Q[f^�E{��k$L�7F��Y�,�yf��A��V5���WgF �dϖv{)�11�q�� t䖣E�{h� ���$<`�~ƣ�l�-?u:�bx�'�X[�Ɯ�G+�'��J}��-��^���cNU}�[s�kU�z���ZPȒ�J�$q��S�� Ў#rzU�R��[�w�$����k ���&³��S�Ӻ�VM��lnX��ڠ���)��)/�#��y��w�ޥ�P���YT����t+��[!�ږ仂�-�A�wƪǨ�Ӵ(ꧮ 6�UJp��2z�. ��X�Q�7^��mx�w�!�d�u�h?{�P�,����R�ǯZd�y*#�0RF%�*�<��#�R�L�ֲJJ��-�-m��G�_���k{�m�"m9QLO��\Π1���{~:�"�]]���oL�k�ݻ��E�Tt8�9�zE�`����jh��3�2����zT� V����Ϳ�ʔ��+�s,d�T�QՇ_ǡ�-<��]���֭9!�d���0��c��� oen�Ky2'd�늇~� 4G�:}��t� �>�W?�4=�-�o�8<��j<M�5�$�B�~wn��/�l�c�Y�n)��y�ש��NMID�O��#������V���L *��ZR�S@N_�u�r����3g8 �F���� ���>��9��2*{���I6_����!�9$���r�p:Sm��0���]��J�����O#��9��R�s�d�1%H�e��i�-n��0���Q�W����G���j(~��ǭy��#��ϵV����H8���y���#k=u�s��F�M�0�$��j^%7�m�&���Pk:��+���\>�ه8��%��̊���Px�c�ZЊ�F[�����31n.�l�|���#���I-��|��@Mqèj����O^+���g��9X���jK���q������Ie,�"(�9�>��L�-�h�M���o��Bn��<�I���*L�ԃ�z���omtԆU��W�ޯ/�<el��kLݶ��Y��x�S��[�z�a,]+�5�o�}�t�g�nt_<P�r�2�W�O���=�Y1��aE��ٖK�y<�һ� �KaH�AXέU.iue(�m&^~qOI@`0F Md�#'��*�V$�y5�����YE��3����7<�������cW<�O�85� vFm�T��p0:{R�t8�|F���=)�>H����|J���h�p0�q�ML9��涁�{h#���9a�zS�9P;��K�ݪ�q q��[U*N��O �~��.8����V�=�h�L�Z0~��9�LW��#v88�_�6ߙG<��D�tW)��r��6��;IB���o�/�k4���OOz�MZ��r$B1���`��Oݎ�q�x'�?��5�X�#��5��y�%C���fӌ*�MϟD�6�j��[�ǥ7Ěd�7��A8�P;*�_e�⤏6�Y� x�qQe뚬.�B*6�8'#�����*�4D���W���~c�����{�mP��>l����/{R'Y��Gy���q�+���Hk�������<?#b{~b��'��zn��z��B�;k-cvl$�v#%��ҡ���%�֏��^:�gt�~��:�>&xN/�7W�P� �<���y���+C7V��F�� 4k VePO;���8�~c��~x�xb�`@��rL7�甑{�~�������'�~0�bݢO�m��.������r���W�� ��j��F�p��5;�����p���cf�/��#[;Ֆ���PD��E/�}�'��=1�U�|�Aq5�0�2F�� ��r�eyaI��[�C�"�^??zx���h��~q��Qo��q=���M��L�6��Q�����c^}8үR�{>����:�N�|]k�x�K������O�˲Kf9f;���z�^+��Lje�\�c�R4���X_I��!�H�G�������}l���ʢ8�-NX��m�g玕WĚ,w��ԣ���i��F�;+!te�2�p�px��<ђ����F��k��U�-Պ^;�t��R�ݬ���ab����rGPs������!�D���pt�1-��P�VmG 8sܓ����j��Es�O%���s��1��YD� ���#0EI# N�PX��WC�k�U���=>x�p�,�Dm�˗��? a����z*�q�:o�I��NV�Y_{%�ϡ��g�X��&�ݬPCM�-��,���볢�!�0���I�{������m6��I}'K����G�c�C���c����R���iw��%�ѣ��巌�pG�M:��Ѵ�a�;a��I��q�ٰ�9�O��\��a�����u�t�� �FL�\XM"�fm�Qsn���y���#�;ֆ�"���oD���kx�}�f8*:��:L�,�[Eu�d��`�SׂOA���Q����g�Kf-$r��bX*���<d`��A�hk}��k���K�id����pT�'�֙;����Y��D8��I�_;�@=0*ͥ�bHn/<�R67����%�~�����Y�Cky�t�0D���A��B��^�G8���F��i����jf��ƛ��������Q�3��*�-��kv�&S.nsrGB)�*�\v��αL����X�ͽF�q����or"�[2[J�������?y�����Җ/��&\�R(�����t�o�x`~��s�)u��kr#l � ����`�1Ҫ���Z�o�%��Ei%��˅U��A8q�)�wP�I�S��A�#r�p� e���T}]����ȟ��D6q)g݀��<��;Ս:�Iy�[��� �IQ�C�(�9=j���k�O/����� F�� *���מ�S-�m�W2�����:,.�FJ���Ni�<˞����t7�| � ������l���3�}k����X|s��(��֭m��Z}�o�FRU9ݻ�q�t��7v��r�b"�#�6��Ē��q��zԏ�O=��[����8���dnnp ��߭u�k���n-�[�K?=V�Wv�ؙEJͫاo�]^i���C����^c�1��n"�G�^�jz�xg��,��Su���@*�>�\ú���4������0m$���i�q<i=��y1�o2X6�# 1Ϡ�� g^�WR�n??Ԩ����i� 8ŦCX�G�(�Uu8 �Юq�U���]$y�]����#(���p3���G���*A;���"<JN@�wU�з�]_*�����%X��hKGn�0 �^r۰s�X:Rs�w�ƞ�[kF�ӀY�II�hdi ���29�1�l��=(���7x���!ܶܯ��'ګ\�[�u�:��#���wDN�01 �q���8#�����q�ʲL6���.�p�pG8�֛�˫`��3��zlQ�e��_:�1�8'���{�v��+t��|% �8]�w���:M���-�Y����!������ps�Ѣ�Ac=�i�14P���A�|���m�8��7Br�İë�� ���d�vg[3�J���t#��w�Q\O+�nv�-��U}r:ԖWhЖ���X#��G���rN��u�,�[�{Ȏ�l�$��4���Ԑ9Rr8 �3MRӳ��oߨ���:��;��ZXA��e��J��3���o�N�6K<�r���!s�*yOU��U����[Z[(�a��&&l2���`s��S���Gu��M���`��q�$`g�Oҭ~���5濯/������K۷��7:\�����|��[����1p&����[ΉF����#�d^��wkk<w���f,�g��,��6�v.��-��Ko%��ct����#���:�x���)G�f�*��t�S��ݤ�B�t�;/�gXZJ���H��g?�~Q����W�%���m�k�w����O-�k��(�h��N �px���&�kIɳ��aq��w�H��ps��W3�'�V��n�Iv�&��.��[�e�����xe8�A�����k ^����.��m]?�;tR��Д�̝�o��_��#�|9����nԴK�m��;L��*�g�W�|Y�cm���x�������������|���a��J�t������ ��N�ke�2�VJ`��d��R����F�2�Ox��o�Ť�ۙ6������f��s��Ұ�����ߕ�G�NQ�G�oN�R�B��۶��_�9�/�i����'�r��Ev-�J)�$�����j��~%�xxlծlt�iiuB0S��X�w�=�]�˧xW�vb������F��Σw�zs�^ ����ڥܷ�u��'W>lP<�OBX�@���&�¬��L����՞ݴv/���M?[��}Ǟ~��|k,�?��o��:�[�n6yQ��{�O9�U����!�ugo}-��Z��*0̀���U��Ï;Zx�\��W��B�I�^��c�8.�8��|z��ivp%��B;A��,�8�Z۬�q��0?t��_����-�7����n�~��*��Z��<��h�{��R�-��E3ɷ�wpE2w��UY��"��r�|���� x���+��M��W���d���\��rƥס��������X�\�d�^X��o,��0`�l|х%]wV w�J�,FK��G��4��ӳ�wB�9;&i�����>��=~q ��Asܩe��Gː1�{אx'�~9�/���V�n�ln;�������� �ҽ��m����)ay�Dn�H &��8=�Ve��[�������Z��� �0>���#�^0���<4��I���k;��t)RR���]O��o��Z����߈����[L��b��̊�N2y��o|v��nm�|M.�i�S�������NM}!�i�G�2��y�n�0�.T���^�b;�������MWI�U擩Ga#̲K��$G�#��ds�⽬�7O�hӋ��J�/�n���~XU��������q�����ۻmi��c�3ž���m���z����e�����1�'��<���}k���|%�o���ow�x?[ӭR+��j�%$�>W��o�28��K��>��i�<M}d�Z�QjW �<`�d{( f��bq���T�����R�is������&�b�R�k��Z�>���y�x�f��xUc$�|�}�^x�_,4qF�g%Y>��}�c����l����P�"H�A�u���9�'۵{恤�x{N��"�=Ljn�#ڣ���8|�����ּ<�+��mS���W�����tQ��o��~�xn���$��1��0;�z�e�������2r:f��)"�u��#�7�0�ב����ӊ��)nubn��i7���$8$��l�+���^߉��T�@�XMmWܥB�q֫۴��:������c���+�����ml-�;2��v'@9����u4KL� �r��r ��_l�g����Td�[��5��Ck�` �̸�9�K��LnZ�y# 8��8ڝc �) nR�� DQ`� �\c�4�'pIApC=�@c��L��Qq��^�֣oQ�Il�ٛ������,zU$�Ia��K���ȿ�=�j�Ȱ�D���4EZ+}��K~ufO�/-���QqÇyP�*8�ޮ���B �K���ʊ~f'�w��=�5�GL��;C.:g�Y�40ζ'S{K��"�G�������~��k觳̓8bQ���85�I��sjf�z��|�$S�1G�d��H@���R�c7����ȹ���5����[}�ݰ$ ����� {�u}XB�]_EH�vB"Q� ����Q�Vܝ�(�\[ɲ*�,���Ǟ�}�k�Ky��tr�(zs�XV�%ӯb��������>-�A;]�A�z�+��_�])!H5�.��U�4���%s�$nq��8J�~ϑ�������g)�*���(��σ�e��ˁ����ah涳���X����ג'�{+o��L�_\������H���'�8��#�q�,�����F������E���ܦأ���,���<��P��җ�ڊv�����9猂^��u����z���ϸ?�X�2P�gi+�<���^u��D�/t�[Q�֔-����Ϲ��#�ۀ����f�ť�[�/�Y��m�����zk 6�;�ܣg�&�<3�i:?���O�j�xl���d��?���Rp����G5�R��h��ޚ��M�Y.�}�?kR������c��:��kϩ�˪X̿��rOG-\���?��.�o���6���2��*O,9�}�jf���k�V�}m�[�m�ͻ���U��*�$�g��O{���G.��tr�soa��v�{�:���ӡ �Q�4��t�z5kmta��[��m��.�B��&��z��(FڛϧQUe���8�_ 'c�-����q�«��3�3�H���L����}+9����˓��{Th��d�zf�yry?�$R�3��P��`=�Jt�H�9'@�g�s���#m��4��cd���ڑ�'���*"�$��V����\m!�&A�V4���g?�h껕O�Xa���+������������'ں�w��ޭ�jn�'N+����?J��Fw#S�r�^5�˖kf9�(��t�YԾ$h��y�Av���=���5�O�_�o��]J�v�8X��U{}k�^ex��>�DZ�$� ��y�c��ni/%�ˇ�ѣ.d�<����1�=t���������=kya��V23�RH�8=ϵ|���O�N����4���1�5��2���U턠ڀ��m�gbI�8�%b.2��fI�ⴢc 99�J��+�=MC4��I2�{�[Ӈ*�Mܹ V�@PG���k�䷞8�Bv��6�i�d�xܸʺ�A`�1���G�����>D�!�E8�=UI����P�"�� Օ�@Oj�n�ЎH�629�L��3��WAC��J��16�w�q\�o���H ����� \Q�b�j����.�>����ܽG'ץJcB��j��qh?n�2&�&;�H�'"��j��x����A>��l`�����@��"#b�ս$�A�������:W-xB��I�>4�3�h���J�*@ȯ�5k9���J����v�ݣ.�I��������o���g9 ��^�O����)�=��*��ٟ-I&N;��7�<��?�t�;�f��_0h[�����L�� dpO|��*ӭ:n��*Fp���|;��B@��ǽD�'�zsO�?��l�!>�W6�����T��~b�5�T�g���e�#�*�U�/�3���9۽Y`r�s�1L��W�iz���w-�ݬ�H'����0�T�������<ⲍ��l�z0� ��^��>R�}��(���?���wė�����V���ԏ`ݣ��� =0x�x����f ��<�&�A�U�s� ǿ�~OZ�w/ *v�A__��_����Y[xC��_i��+=p��[/@������x�?"�n�_RX�^/Y���������8�T\����>���-��@�%Ă��L��m�RX��3�z�����g{�d�7$���(���#�>����uc팿j��c�`kI�8*ѷ �y����{岎�S���E� �l����־c�����K��}��v~L���vf5��W��� -��c��9�&Eú��` �=>R>j�u�.���~#��"[iܾ��]O�2��_�N�j�ga���r�vS���kBn!��(�y�|�!�3�� ��Wa�h7Eo���b^L���� ���8�ON�T1�������R�g/�^i��+��rv���O��вƍ�&Fg��w)x$ T7̶;᷎4V�>��C��,���� Sx���^M&��[�ѵ��sp>x��T��X�2��p8�⦍��z��ŭ̍�k�$��G;F��y��beG_�x����%z:����5_Ցqo�r5�uy��Vʟ6�l�Cp�t�8>�U}J� ����h�0�"`��7�p�á��x.mZ���=�3�+��.B�����9�9��[Z�p��-��2$�H���B��*B�u���F.�V�h�3Ng������ ���)&0AbO��&�����u_� q�k�ݙ�� U�R ��9�KKk�7LD�ٚ�h٥����7�`g��l?*�v�2��[�<2�42YF9���n@��,�i:�H��� ��^E�6�&�Y�����66F9���H�D����𰼴�c�d�z�H� L���Ir�w��7��(�I��7К�`��� Cܮ%؎R#��p@�I�)����,1Ȑ���3i����S4l�Oݐ�?('#<�R�qr�d0��� E�6��V�ȹ�PÓ�=�͚\���p�3I��r�$��� ��ҪCsq��,ֻ�)�g.eu�O@��w=)��� ��$�a%���l}�)̳ ��I9T Cp��CK��T��g����]��Ʊyys��;6����郙b:u��y"Z���}�T���v�F�����ӥQ�6wOm$�Vl��H����G>�����ǯ���#GWKk�G}���$h�$h�z�v����:�k2'wӢeڶm^\�8fe',d';H�� �^C\Xl��ڔ���C0�3q��뚞�#��Ӵ�c�f�5YЖ;���9����tH�AZ����G��;�vd��!R�`0��3d�ӎ��)`��7��3��=���>2I$�6�~i!��[Hoa����_3���c��*B�H�1��ޡ�]�jP�5���yȶ�H�A���/�0:�״�Y�)]�"�o>��1n�:�����ݧv:����}�@�y��kG�ٞhب��Fz����5b���,���ky��@�b����0>�s�c�#����d���ы*ݾmĖAa���#&��Ճ��։X�� <�8���!*��+��0q�ޫ�t����<���M"ۺ�l$���;�s��8njh ��[��RҖ�D�Dgh����� �~���������m1v�2(.�Ŋ��}� (�J����3;ò�u�yH�6'ʍ�o����$�\��[��,�g�m&�[i����Up�H�r89�H�⡸yM�Ԧsqi�1"�������v3�w�Յ���Զ��\2��E��� }�1�0��5�}�ר�u�$��>� �{<�$q[��x]�����x�y�0����G*�����:���HV�H,3�>��.�SL����.�v+2�-����xϳZ��;K�$)l�ln�$���v�;����c�@#���I�ş� Kk;�X��8�F��'��$b���xym���ky�L�[60�^H�����]����sL��K��X\���q�sK�i=�1Eax!�e�]�pR �2T}�ȫQ��x�ܿ�^ɦ_� �b�m�/�����T$�=���~�5�Q#��Z[_�� ĹV���X`�֫�Kb-��Ī����q�6p�ǦH�7��p�M�B���!dc�� ��G��a�H���j�m� -nI�a/.��l��u�IV���߂.�=�J�W76q�W+V�G�]��Nq��y��k�FX���hͻ�R��8��<2|��L��IF��:iE�V�3��g� v@��r����y�c�)�6{>����g1�L�[G�V���7�t�楧CH|�_�:�7r:y=G5��-;W�5��;���<C"���#{��'u�Wm���%���ڑ�Cp�(��~YTm#i���Z~���w�E8����Lh��ׅܸ�9�<UO��uf�շ'k���(F? I��<M�c��f�r�&���vk���ۑk��d��R�ppy���Əx�^�%��l�@�Mg����<��1��Ƀ�6��/����]I�O j6�>���[� J�۴� ��є��r� �xP�:��]�4�Ɗ��&�rp�H�Y���la� ��_g��S�ìE8�_T�����[g���U�>G+_�s��t[�Ff���J�p�6-��3c-�}zW�|9�3��b�Z��q/~@�� ���Q���eӓ¾ �����X�a�D���{�]#��9�y�= 7ž5�ӡK�j�N�ݴ�� �K}�����&i$����8���\�xY>�~Z~���R����������^��Xh?�&�T���Y�@�''8�!������~ Դw�m�� �{�����]��l�UK9lÃ�g�<]��ʶ���x�,�UC�4�!F!��-Ӿk��<E����r�m�;}����\g%�<�S��\x,�F��:����_f�̓�K�]/k��WU���_k}�|���4k�:�אַ�6�j�L�7��0�ۻ�ʎ1��H�ΰ�W1[��������,�2��'*���#=�yg�o�ڧ�m����,�1,V�G(/o�����<�Zi!:ɾ�Hm�p�p��V�T����nOPד���,T��z�_�ꢧȔ�,隍���Tw/y<ۑT�#YAl.P��o=�{�k�������o��t��Hw��-d�FNk����;���d�M;"���u,0�y�yj��Ţ�t�ZD�We!�R�Bs�$���8�Ň�����I�O��G�8��4���&H��euWX��Ui�}����e=2Ny� u� <M����ia�\��+��k��E ���M�YpPc���:�m�R�'��塚["�yї%KIIR���:8�>v�[d>�FmGǺ�6mn����g�3�v�� ��=~����(V�*��Z� �ok����Q�R1��.�ROw���ϥ�U�ӯ-��9��<NQS��R2�rs�5�C�^"־�y?ǽnk+�A6�¥Yq�6�d2Ҵ5o���/ �W�_�� ���tMg��+�>.���Z��~kƇ�9�Y��/�W���I�j��w�-�1�V�fַ����6����z����_���E�o�e���-�~1��ԦM@�y����%yc�a��G\q^��mF������-��6�����(<�[�����A�Q�g�k�5?�z���C�B�������R�V�����K���I����i��6�LX�M�>^����� �6�3z����z�s%��F�:���W,Z����Iu4ê�r��螯���KmF=7G�����:�7%�7�����T{at�Ko-�~\L�x���n둌�܃��Z]����._0�K�9��H�+m�$���Z�f�س�gC�M�l�����d�+ƍ%������}���b%�=��qoE0:�q�8l�pA#��j��b�`��K3��F�Tʜ�E��A�UAv^����m��bb�mͱ۷A���f�I�����YL^��̑B�e\ʫ��0��xmT��/�X"�d�A�?ѡ~��)��� j�jb����e^��2�<|�'q ��O<c�����E���J��2j1�dž%��~�b����Mgx��r���M2�K�P�[Z�w~}ܛY����j�z7ȇ8�]T2��-� ��;���r��ή��P�Qy�Cn]�d])`0[%�$`}�H�Ⱦ#�k���f���A��.�n�����\��NN>l`���$��Fu_ �����K�����-5�����Դ���3��9���P��-���^ ��H���L�6��il��L0�8c����] {x>u��RJ��m�vջ]]5S��>0W���z�Bx��z�K20��/yt�b���o5 �l��2#�䏙܅�#�º����O>���]�'I�}≃,$��e�@P�9�Ҽ���/�L��w�:�����s\�̺���Z�6��x�c�7`���U� �YxZ�R�<}�oi���W-���/��c�݊)@�F�����ҽu�S�Bֳ�xɧ��GͲ��ֶٜ�X�O�_����;мZ���<c�E�}CO�f���:As��x�C*�T 1�v��#� �7+iw+�y��$[�͆N�8P6 $�8����u�����Ȳ��O�麟�^56�˛y�*��b9�#pFpf�>��K{mK�:��^9�m_ZЛ�>�o=��`��+� RT�}L+� ~�.�\�_��Yn�ns�电�y���R�����o ���m΅z%�,��F�hCo�`G�_ ��q�g�~"��9x��N��x�YӚK���isK�[�Y�&&@]��tY�O߉�O[x��zm�o�LQ�Ei�a�]�m�;m�e��dQ�> \K�47��^��:w��:��L��\,*I\�/�s�N�c&��꺻�t��vz�;�/}�ݫ��^��w���+���x�t��L��9����Ls�����_� �z;/��͠xz���T�cӖu�"�{��1��$�Wg��ᅾ����xwC�/^d����S����T|�B��@|�g9�6҄���˭��ƺ��D6�)��F�W����fy��Q����Z[K4��ͧc|>�n�������6ZN��M+���%�u����i>�[}97�}Ӏ���`�{��U���N�����z&�E�2C/�u!m�7<�l�du�x�hR+X���;�$;�+�vd��sX^.��jI�S��ڥ�(S�bSda�u���g^SJ�vZ~V_�~gz����h��qi�Wn{ �H�8�J����$���K>�;���(�۰���*'RGR2j�FY�$��W�'.��s�YJ7J�h�j�8P1��&��u�qKq*Z�L�Fy��+����6F�� q����ZW;�h�`1�ֽ����jn���>g�q^]���s��,���s0�#<��ڷ�O�k�֭v,lH�rq�m{�VY��Br�[���'�����)4��p��=�@'��p^��e�_\��'��� ��vҒ���W�?vr�gc� y�0G^M`\�VV�� �89����7i�w9&��{��-o%�N��\�(�m #n��?U�{���<�+yd�H28�cּ^u�V�&��*8���=5�ل�a���95��:Iu�r�z����I�[G)�Ă}j��\� �y��Oq����S���%��_��?:��O0�J�eU��R�+��~�f��Ok�;���0�c��^�2;`w��Z��#FVB1��j�M��l�|g������v�y/��S��ϋ1''���:Ѣ������M�D��[�#ݒX��Y��8궾��$�v������ūY��+oFF�_�k?�n���ב����O��.� ��.�0�Ҹ/x�[�4���H�ǩ�:��XƔ�ڒ�D�WݡB�775O]�g�c��c�'�=뻰��!�ux/��6Z���b,�� �}M{�$�E�He�N:�S�\�;��N�Uǎ���#�.O�&�{k5�1�3�4�0T1������f���9���[F��O>�hD�DGc�jl�aN@�jeM�p���Q�ȩ�g�]ch��''���4��I���Z���w�m�OzU,���;�[�����&4`�4[K�*�d�r=�i�U�x��2�T2�r �4�Rm����=j���h� '�r+����Up�$����K���Ģ�j���X��\u��Rи��$�������=�)�J�������� `��v�k�4���fU�`Gz�&xZ�R�*-��z��2����+�WT\�*�Y#��H9�ȸ��SE�8<z��i������yiy`�%��6��ʺ�=���y�m%:n�L+���,0���K$[��MN֤��n�ݏ�m�ں���#ꊦN�})�Z���O�Z1������N0Fz��w���Lʆ���9�� �1�kFKpc$s��?��Wp�U����[Q��.[����oc��g��?Q�U�&�|%�<1,���ݙ-�y�~��T��ǚ���z��<i�_�j�-KM��z<2��r���#����fv,Ē}k��f��+�=�}�K��2��t���7+�?��ta��q_)�\g�vX�1+埓�=�Ϻ�&h�.Z��~���7�9y�B�A�.%g<�c��GcYW%�T����ң<nOl㟥E�s�W��,�au��9�0դ�K�7=U��цA�]�o�Fm�kv��0)����_�S��9P��:����~�����=�ՓZ����uM;M���G#�b�4�9ا's�5��~,]hv~#:��[x. ���.��Gps������rZG�E(���%���@�wN �ּ�R���j�1k~���G�Seqon���v<���=���o F�ە�ke��ӭ��O]�c�ͫ��>7�l��Ađ��06W�2�C���g��Z�o�i��Ռ�)ȍ<�>�&e�cnB�F@�b��V�/�߇o|qwl��U�^+i �*~��ֵ�d���n��a�[H��C!o0�}8#�'�>��ZJj6�k�/������H�oD[Xմ� �\[�[������#d��F���ɥ��4� ��r�+�$!$��1��I�>��S���Y���tqڴb2֮rl����rL�����bP�� S�����yҭ�_�rҹgY������-����Ř8���<���Zf�e ��I� l��1$R��D�F�����W�i���om�'%3����sY�͕���Akb|�6S��J����~C���H%e�pA��!��'�Z��`�j���Ԛdvj3 _(����OT+b�^��Q�0[ۮE�z0'�#��g�Đ_$�n�Z�����څVI=nJ�;����cw,���E{c��$0�Z��dWZ�v6��N�M��N�2C0�8��{�^��Q�{yH�hFp;t��jv���\��È��o�X�;y?Z��W��o��\v��S�z�%�#�L����0y�di�1�Cմ�2JN�"�D�d� �F����]:�^\�6^�o�x6�È،`�3��Y�6��]O%��B9C����8�Nj�UFv�n��D�Ԋ�+�Vȥû�O5�"��I1�;�#��q��64�ZŨ͘���Td�yy�;u���X.�7��)�(IS���ǶG�6���4ցdتv4��)��ާ�8�7��ԗȻ����y7̈��y�v�A�O#�z��o3���!��G�ʅ�x99�SA�O-��Q�yxԮ���\��N���G��ݾ�4��Vcy �x* ��(u}�_���;y� A�3n���))�8����ug?j���.)������NWh�#�m��;�0ݲ�`���U���hT��k=���RG4���L�> �#��'4��j�5f^��GrO�]����d�`ONr9��ӵ1mj���O�+�� ��rFI=95�q�5��[m�R:c �zU{�m �k!�l��A���Ts�q�T��`��Y��h�qon��`�m���� ͐}�>��{�(a�ⵌH�'�&U�#��/�^�����4�;}� $b��&��3d����N�C,��1��W j�+��X�F�Uk$�Zt�����BK���K`�!�dI#�6�" ;��*=�{Ye�_2�J���E���u^Nх u�*���G�xoI�X�"��̟2m��L�����㠦x3W�|[��kd�^[�*� ��]�o|c��Q���W�{y\���_��f�5 ��R5�h��X�ci�~t9=�^�MK�����MHF�G�s��,xi!|�,Nӑ�~x^;;{��qp�Z;X�QJ�.�uQ�?SYwo�QH��H�%اj��v����gw�_�mG�˛����\#D�.�$�P�a�V8�23�S[�5��ܭ�Bo-�a9]�01%X��T�z�����J�K��#\A�)��y�rH�ڑ$��V�攣�6�E3��9VPO=OZj�~���gb��m�|&�v r�(T���ۃ��ܩ��ڬh��Y�M��y֠g�R�sU��[In�K�v�DbK�Rbnd�<q�j�ڵiY�-%�DX��6( �YGS��ץ)WQ��z�^����MX�_����<Q�c�{z�b�|g�`�yծ��&�KE%�T0r8c�z���%H�m���V�s����y� jkw�=���ڙm�K(f'�]����jp���Y�P�(����e�{>�(FRNJ���|��?ğ��@�zv�{�ج �~��6~P��~�n+?���u��Hj�v�b�=j��3( ��p7v����zkj�;[UÕ�{�ZW'9 ���X����t�O�F�i��"1�\*�#��}2����*4�]�������� &���Z��_���`R(�N��>l��{ץi��-岷�ң�|�M6�`n�gh'sc�'&�ҭ'��㼷��T�ݴry)�B�%wq���+[=M~�omug� {�21��ҐG9#ڼlNg��Ϛ�K���zۧ�Ɯc���.�1�u}���d��J� #lecPW'����h�XP�%��h�Oea,.�#�<�t�s�s�b�P����H-�}ш����q#iG��OĞ�.��%�����瀡6Iq�6����Z�ד���.�+�8��]Bso ċ"�'���vA�cj F�o��� �~��Y��"�8I��6A�0l�/'�{� ^�Xm��n��Q��x$�z͝/�}.X#��R�K�~8V8�����G��Rko���X����-��-��MbVݰ>w$�x=��Uu.��.��ٶxm�1�L���~���с�d���J����m�+N0� ���Ny�㚜\�Ϩ<�l�Ӻ~���$Tle����� �֪8�F�����j��i�w,�̂�A\�98�*� +M�O���q���6����BpH�dc=kr����*\ov�Yg*n[ ���sS�e� .�+��a�E��y�c��yd�(<y�%��4�����ܕ���h� Dd�� VT� ;���7��?�����Q�^f�ۼQ�ݖ���A�#F�~\�z�\��������y�%�Jd�����r�a�,����^ 8��c#����Lľ�M�� ���'�]#Z�V���o�� �+sz[k�i�n��+�EW{+�-��Ea�/=�1Y�u� Z[���ݥ��~����~H#��Kc���^Y��Z4-e-Lj�����gM���f;�n��_��8s��,�%��c��'IѼ+a�Mo����V-F�%�r�^] ��`�<pFq^�$ĵ�WD�}�[�m�q�����u=g�>2�,#�o�6�Q���-L�1�[����i�Eq�5�A���k��v�h4����9u ��];�& _��+�����C¾!�.u���R�_�[�P�uy2 �dC�1�U�� ��_��5���6)�GU��6�9��I�&�����095�8L�E�)^��VM]wO�_�8g^��ӭ���l2���������^�����#ZѴ�Kh^�����H�ث){��I��S�&����:֝��H��걉?�fHD���V�ۆA��������S^6�,�ȵ��������2n@s�t�ȭ+o����\h:ޝ��i����jG��X앉��� ���Y[�Z� x�h�t��'���&��z�1Uu�u�]����������Դ���Kqqet<�����cGY�S�%�n�˻5�-�OY�v����I��qJҩ��Au����w��3�;m/L��>xj��Y��"ԥ� �\u���Z2��\(^8��/�5���~�I�m�՚�gY�i��V�8���6�¯ �T��+��#-�}{7e�M�}�*�y�GV��\��/x���:6��!�&+iͬ��{��v0�1zkR�A�ML�|��:����$���o8��0#H�!�1x-�����|��/-o�����r]��V��R�)@K����}+�4χ�k�������ѣ�i�].����Cm�U^��3�5Ǎ�5'�^�z]_�]�}�)T��J�ק��ïj�H�u��+�]��ť���� PY8�~�y��d���s�?���{��+����M�x��̿3�[(�@���yz�W�[��~��Ӵ�>+kiwo� j��"���=yE�Ծ\�ia�.#�7�����rZ��GV�������ߋ����0���_�c ��Vۡo\�Z�Vm#=��Բ��[DQ�AV�q[�R�^���nap�V����c���z��)a��[g�g����+I�F���{U��Sv�\�J@6�b#iun�>�}kȞ:u����|��N1�m//xXڻG�nU�9`ɍ��t����y.J�eK�1\�dupe��Ku�x v�����M�&��B��6%d�Ab7n*���c҇���L�jD�2����)�J釐ߴ�2�ukw38���\7�e�p�����:}Է����$~H��U �͐� �{�1R�$�mbqa���Ōr�.�N00T�'�5J�U:����#0�`�͎�sɯK ��9h��?���a��������M�<���k&�X��F2̫��H5���Z �\���v7����������_� }73�ne�j�VK�U�U7�� ?Y~ӑ����1�L ������� �E�X�u�|��x�H��-, ���7�/����O{�����5�N5hϚq���P��=Oö�ߏ��uE����g���������4��(�[�G���6��v�\�6�[?Ν��G�lV��cC� ��W���e��WU� Y��]�����M'R�\d���<Ike�\X�z��R7"/&2WۑU���[ �2��͏#v]�Ҿ���]�E�R�[C)/�Xt��Xo<5j��9Õ{W$��w�X�J0O[��ײ���+A�٦�G ���ݟ���c���A�V���몸�āK=�+�^�6�I�A����X�`��w^U�����8b�,�{q����9<D��R<�o���:���p����J�4Dc:�F���QԀÒ;W��(�?���Kk�h��Z)&6�v��z״j�J���tGj�g����w����ms����&�d0�ư����f` ۑ�����IJm|�7v簬���i �I8ܹ�\p�jۖ����9���F1/�g�by�F�E��.y��f���f-�ʝ�ҹ��U� ��J����Ҝ ӷQ��="�0�v�@:Ո�Ӈ�89"��;�k�}�v�f�V�W3�4|�5�NQVq3w�_�� $�+���m1�/��O-�bN[�@y~��"kY�C',H�+Cű�\�m�;-b���E���ܧ��s��_A�b�P�:�i)�GM���C�Ns��emO���'�e���2�&h��.Tッߚ�i�=�j�y��m?;,}���ú.���%�a�v�w��{ �E��Ud�=k�Y�Qֲ�߭�C����Њ�:?�$�%�m$0��Yع��z��&|7��֛��E|�m�ݬ�������U�T�ʇz����J�4�:��<�<f(�<��@ϵN#0�!G�UR�g��q����%�uo̹{?���Xծ���]6��d�p��z��g��K������<��[��]o��=��-m4q���*1���0�=��Wp��Hۗ��T������d�?����nfg�:�ɮ�eC*��&��g�P�Ӛ�ehت�rO|U+B )����.e"�u=}*X�@In{梷�g�Hn���o��M�٪WM�"̄4d�95\B����;T奉U�g��1��OLcN�`��������⣾O-_���� ��4�E$ ���iOD4�f�Yp�q�:��[3�$�ڢ��.W�?x l���m����51�KPݔ�1pb'��O��W!w`t���{�$�H��jY�9�'��X�)_�C�/;�Q���i���*�ہ�J�h�غ���뛍�9P��ֲ�"I��KVE�M��euVܽ@�|��wᕵ���Yõ��\���������y�;m,-�(�uZ�K�����>��4����~}x�J��n�x�+КȆLK���q�_Z�^�c�ӪۆnH`9���q�k�Qth`<;W���R䞓ꈩA�z��X�?p��dqH֬�0���O��P���J�[]̔]�+0�7�oZ��Z��dh�z�Vז�+2��N�5��y�����qJ�2����gB����bf\��-�MBR?r�r+�d���s�i� tT��z�&���缮7���?��ƞ�T&��7�r�'t�z2���k��{����O��K(��_�@olta�q��B.�����`����SRе�mGH�������<M�=�DZ����O���Nѭ�ik����t�v+����9�K:I����*W��;�-�_�'�gb��c��c�9��v���x�tI���v�vq�3����f�gP�C)��܌�:��X�f�娭il�n��~�N�T����|?��^�M�b��U�Jm�T�,6��q�߇>$}:�t��/]ԣ�Mך��7�۾���c��j��MNBƊw���Oμ�Z��~$��ҍ:l�+QP��8�yc(֤�֊J��ѷ�����waF6w6V�&V�Я"����^�V/$,?�I�ӃZQܵ��sZJ$�q�91��\����S�����c�,@e�?�Ml_Op4�mCF`�JC�hARF9���u��(N�-F��M�{w�5�-tt�ᬯ�f�q1�o��x���pc�%��.lw��9}qߵT��}Va�,���l�u��V-mXY�̅�;���e��������u�������!����O��?:�q`��S�,ɰ�nI���J��]�X%�C����T��X�)����9�c�Է6ې�d%��b[���[c��h�g���{I�)<ϕ���+:k�7�hQw�6���ۋ����@�-xr���uɪRkϧ��L�K��mV�O*he>\�0�Gؐi��m ���۪� +m @����צ(�[6�I,b>c��!�����#S�)��$��8��������-q���hvKR���S�_pH�Փ��,r\@�鴦ؿ��Z�q ����ᐎ*aqo#�+32�͵��>��Tי�h-a��e�slpE�i��)nf��=�R��n�o��8���I°�ga����i$�xbkf`�BXq�3��ӌ�6��5C.�V(�FB]v������4ԎK�%��w�ѝ���gGrM���^K�ޯXC:F���c�dn9�8�)6�p���q���2~c ���=I=kƗ���X�Ou>�{8�B����<��k{O���+k��Dæ0��z]WN��&���&��ddq��O ��E�R�F�{�+uKf��"n֬�)ZDl�m`D �"ݾ࣌�玂�'��`�&�G�]���J�Z�� ��G\{Wm�Zi$�K�&���,0��s&I��=)>��zV����4���-���'��־Ν\��8�+TS��Q\����W�s�ƻ\�z�� ��7㏉z�wZ���y\��wGi�z�5���?�����H�>ؒ�1>D.�ѻ��9��{�R�3j��_�a�Z%��,��YP7�:��f��Lt~�N<��/�O��)PT���e��_,Z�o�� wo8��'������6�����X�Vh�Col������"���jz$1��d�|�_C�?'�J�/�I{k$S�[�܌; q�u�ʼ�VW��N5�R��^L�2M��h��q$,�O&`�'��Y��C�X��#v!�}�Eo��=�2Y�Z ֥��n%'��}�V�?:W`�����}k�M�}���j��p�I��D[��̪GL�ޚ"h�ˮ˅ هP�(��T����sϩ�*ͅ�gI&hwa��9'�g��j�����Gyy%�PGp��F��3�<u�;<���?=6?��XN���~�^yYeFUR��I?AW.�njK?�Y0��>�_Z�7{�J�`�F�4���)��4v�p�G�/����V�6�6�-Q����4���גy�~�+��>_�~5Q#mH��s�3W*�Z��QV�f��J��1���v��@�MBѓ[���>+�y��^��z��vM�$�+�������7��p��s|��� �8'y�Ha��ׅ���@�d���sқ�]�=��[�31����RǑ�{�0��+�&{`�ʫ��V�RA}r��Q���&<|�ߥ5{Y=���i�4W�siq���A�X�o��Y�mnM,�O26���|gh$�{U�f�{��o)��s����>��s��k����5ݲ5�?kXµH����7���Vo��q�-���!�Ew�F9 ``�6[�g��ս�*�I.' �?�O*:g���<D���f�G�DE����0����23��v���K��鲥�l�Z�陁9A������O�T���W}����d��9��z�5�t��KI�Mͣ���qr��@;�21ܣ�c���R�4=&8��O��<�d���C � �������S�oXj�<G���<{�2얷L�~^Ʋ�h7��i�zl���i�������8N�Q��������&��I_��S'/gMk����/x�V�{y� �K=DԮ�a�l�[�FE�3$��|�Џz��1ce�wW�Q� ��a2[/䍊�?�9 !��[�w���6�����U�֗<�:m�W $2�0ʞ����+��ߍ��o���$1Gom�i. �]v�������c;�����>o{��Gf�G%i�%*��_�4��ί�~��0i�x����I�d�.�#ݗ{��o�a��Y�F��\X�{'����(M��]_f��a8I�✌w��9��G�γy%��j��,ż@z�v���Uz߂c��;[� xK���W7ږ�ų��2��<��Ҹ�V#�����[���r��Km���m��:�R���m��?�M�2ʹk�5�VPD��kڬ/l��~l��W?y��zغ�^��;捠X���ƃT`/�J�Z�g'�5�7��fׄ���B��q,<�8<�ףx�����������hD^N�n��V����5�.(�a��8�k��J�ӗ���`*�m�nϝt�x�T�u���h�����g���۴qd��qϸ��¿ ,��n.�|K�[��\��СS��#���=+���4k�O�-Į��s�I��~�8�[3H��1��c*���J��gbdҥ����k�����)-Z���x�V��^�twD���,N�3��'�q��]M���e����O�3�5Qo)<ne�\�O�Ij�����6A�O �����v���f�2�����W�S_���^�=|��A+M���^�-����!���}�C{mf�!�n-��|�x\�B����Sӽ%�%�#m��T�q�Q�7�-�O>k� sJ3K�Z��^E˻8��t�Edw�����2Ɍ��|~V���O��D�K5�#��.bG'�?0�J_j�b����12q��q�ۧ�k]�r4e,DPۃ;���0����.�9+c�P_��;V���O�K��)vA�_�I<�p=b�x�M�5Ye��'���d����y'�k����g�dY-��B�X�꘏��l/�]^��P��K��Qٖ���d�#������O�I�_��_{���s�����/�'9������ˌ� �Y\�%���01�Ph���>��\\G��"8�8��� {f�����"���S�+5��J�P�?]+� rx����p]:vx������<:��E�Zv��y���S�u�e#�&�ߌ�1�/�]�o����/q+����$�t�֎����)8�������L5R��7��,2�MN���D�2��>i�p�[������PG���� �M�w��~�4���pO���_������1'/��ȓ���_�e�HB�ZCb:�_�O��b}�6�季���t�S�]Y�g���ەE�q���}�:�����3^Z��)�r�����!�����e���n��r&c,�����k���'x?�:|�h���]$� ���(�XSr��g�o�ݯ�ueE;Fq�o���O�� ����|�g������r����� �����Q�i5�� �p�DH=W��ۥ}?�=xk���E�̓�c��C�l���m(U�y�������i�pJ�C���Wy�/�?x�}2�nH �PǕϵym���Y'�Ino�~�<�#�^�����\�7~���Vt��6�m_QѮ53*��+P���>��ϧ*W���^q��N���苼�*q\�%s�����m�\�c<D������Ҽ5��\�k`��8@3���������n��ӭ������}H�t�>+_�W��� �8�9�14rZS\�%SϿ�x���%�=#Q����f\�.�6=�'�:�:r�]��G�1�\L�_u}[l��*��� 둎j����ĺ�����o��/�q�rx��[.qq�k�l�p�R��H�mX��b`�I;�3\6��1�~��| �S}a��.�~o�<҅H�<2k���m+Ŀ��,7E������P�8�RU����ބ:���"�9�X�B5>s���W����[{x$��)vs�����.�m���T�Nz���s���^f�Q3��3��>q�=�a$��1_M�M���n7bP���㰯I���o}lv�-ᙆ+���7~#U#@�v9;S��^O�k����u{;�u{~F���J�\&����>V����y$�}��$���彝l|݅�Z��*҈��ȼZV�V�8�bRW%x5� r�-��fM�ȵ$��ޱ.�\�"�<5��F��tڍ��Ẉ���n{�Is՝��-�xٸ�W�m�d�Y� ;�@yZ#[������h��&Q���v�GM��>������-!fI��@�@=I�_|R���뚋[XB�D ���g���<Y�;vGK�B��S��d;q�+�_�^�\Zi�4�����f�Z٢�M(�-�4��K�3�F4�s�����5�B��x�w��N3�u����l4�ag�Ѩ�9�<��#�H�<��y���|�~�~��w� ��Y:y7p���ή2?��5�0*w�&�:}����+bmnX6���2�ŏ��ʗ���W8�M���x�f���$�gur)=�ֺ����X�4�'R%�!�p�X�{�����z�bo|Ae.�"T��������E;�C�5����aӯF_��zg�'���w>� �����q�@���?C��y�mBE[��y�b+K_�ʵ��f���2��Q� xf���^��,������<� �lc�=+Ξ/��?�PT��~/�)�i(ɴ��}��<�e�Pt��T��&1&�F{W'�Q�����<v�<1��}~��wd+�ڧ9��l��ӹ;J��D�{4,���Y�9��͆���qT�U�1�1�6l��"�wOM��2�e.x��>��qjM����(*Ŵ�ṋ(���֬5�mT����$�j3|�X{�y2H@1��+f�̮��ҝ��c%wa��ƨ�=�,Uc,?�K�'����� i�]����Q�VOp�`�y8^�Z�%���YQ�°s�T��ݪ�4p�W#r��\jIǖhVꉤ���8o��g�T�:�Ī�@�8���+���(����I&��� F#�;q�j���u��KV��}ʑ�8b:�W��H�(�^edG+� {q���.�AN@��ԓ�iq��|0_�O�s</�XJ�]K�G��<{��P�n$�$/%� ��49epq�־��7���J���#�hny�W��~�Y^>��Âyh�z��<�:�������Fj�(���.�I��`�TQ]K��#�V&�{C��tN0{�|�K+��)�������9�w-MpKg�X��{t�U�gc���)ӻ#��p v�t�3U��k_[���pG9��&6Z�C�)�$�����u�U��ް�G�G��HP���������qnR��=L7�f��"{c亶�d8*GBb+�O����MC��o�{�K��;NN~�$=���?^���\��y3D��q֕,/X�Z��O����s���"���n�t�5��p���j_~��{e� 3�J�g��9�ڳ���\����k������<0��[�7�KKk�_2[����J�:���[Ӓ��h�IP2�rNk��7ʱ�=���/ޥ�d�����hՅzjp8[���|� �֦�&16W+�pk\���X��`.2�����α%S���j&�ʹVX�h�zc�]����gNM�ku�Bw��7��9!�U����d�©i��G�]����Xw���Lgu�6��1ɬ�[HK��m�&Rv�g�z��T���KEa����o�A9����M42�}�"o��S���U��c ��L� ���l Q"ڤl�GQ����>mG��Kv�D�Xd�%pE3Ij_s������D� �� �Z���fP�@9ɨ��>�h�.>T���^���R�[JL�z��V�Kx���ǩ{>�J-%x���8#�*�������ܓ�eU#�֡��9n���������[���s�7���}���9%�� Q��hD�:����z �d�HPp������L(������UB:}�~'�Cqm�r�*�nF'�1JU�~R\��V8��^*k��5���P�NӚM2�'�Q��g���J"��H4B��c"o�6��}��[��[)vD�e��v��U͝���d��e�K9���:�g�l�M;ꅹ����pn�� m��q�U�{N��A�Z���J"& ���j�b����.�c�9���lɫ]���|�K�H����~�-&��j��>�u&Vz3���5k_�s]�HbQ�+H@GS^��'�G�[L�u�,�^�@�A����6I&���]�k}�DlTs�u�ᇃt� �AV�?1���ws�_Q��2�t�[��t��O��U��ƣ��9|�P�Ẹ�ٳ�Q��Nj�_�a<B��bRI���z�����Llr�������p�\>Cg9S��k˭��e�H�>�::���E܉,�ps��zU���bK��;q�{Ԗ��,&'wnq��xbi"h,����x�y6���~��G+��z�Z�Y��x�%�b7��8=��5^h���Nݪ8��jYmh�?�8��R�k���墄(�}��?�ڍ7P�f�)w:�Ic!?����M�+�ާ��T��i�� +\w����@hx��}�'��s�03�~��x�Z�.y�OO_ƴ�C,IW>b����g��w�X�`�3����ZR��c�� ����+x��1��N�Y��K��B�9dݒEs�������^2��^%Py�%�5�i"�5X�kw�y$$��|�/<�J�p�>&�e%%�.�V���{┒�Dџ�FB��8�ɮC��$�)��{�u.��?�����t;P�;�u�� ]�T��q���ۜן��!����6Mou@҉>g=y<���j������7�ȯ����92�-���� �c�����L�َ��PGF����qU| �6�S��R��S��5��bG<�'<��'Һ_�K����Ŭ B/8H� ��#���|��+��� f%���Q���x=��r���^K]����t���+U�^6�4}4R��j>� ��!쎪�9��('���#�����_i�&wf�H���j���t�9�]i��suusx�pPđ��Glt�8�]���B��m������rCn�E<��W=L JU]� ���W۾��5H�f��M/�F�m=���5)fi!ͻ��1HO=���Z���=O������팶ن[e�HG��ix������ta6�y}<�!}��4�*9l���[�v|P�tQF���{�9=�ם��!'Znr[[D���<b��k�'��!�|c㛫M2���ѢO)f�l��X�v}�¯����|� �;��֧�S� ����1 ������Ǘw�@�I=}��iѵ��2&����y�'�X�O�am�����KI˞z�3����L�h��+G�"�0s�P�5�[�oÖ�<r�y� ���H#��ٹ2\L�1*` �*�xd��|�l�^W�7���E[CJ�+94��B !�_���-� ��E �qޖ�`������#8�M��\<��Qc�k�Ϛ6z�D%�3�_2�B ?0q��������ʏ�/����s�i�s�l͟�\�M`k^(�H8�]����==�5�Q�N�=�k��¥xS�r�:+��!�2Y06�G_��ڍżV�-ܨ���hn�s\|z� �/#�� �����֮������>�r S�Y��W��%��[��߱�b��Қ�k�-�A�٪�" :~�����,����X�¯2ƽA�u��<��F�r/yNG�Һ�h!��˷�#Q�(�~���$b������z/��q�&���U�|,�nJɫ^Gm9Q�7�Wo�x�:YY�ڦ^�\��>�t��$�?��c�}�$�a5�O^�W������d��M����3֙������^�\�)y������9�)sϭ?��'�g_���@��5�8�\�9�=j%^�g�W6-^����S������k�rЄ���SY�]%������D>\�6�fD����h�u��=�-�R������&2;W�(a�Մ�C���jվj���Ri3�|{�b��Z�^�.��ifˆ�q��i�g�g�����fWd�o3�S��A]�C��&�rL�<���s�TX���O�Ʋd)a�����YJ��۵����)J�KH-T5�����!Il�#w�b�����[<��n��V��z��)Y^�_���۰����gg(&Ց7����;3 �h#�����8������$�䂙���I!g=��_����>�����I�t�kr�u*9�����4�87���Ķ��;�����wc��ͽ�eKfI��'��6�O2���X�oO�UmF�����h��$��ub;��+E�wm|���s�-Ny'����Ir�m�qW|#�_x�J�����RIUl~�j�n�K���d�`G�Si>1���d��ޗ�R0%����?��H�ӭy���|Ekq��آ*|譬 |��'x��e4��s�i�\�j�+�6՚�;Ն"�q�V �WO�~-����2��]���#ʸ s�9��+þ)�t�|Q�x5+{����.r��N:|�����ğ�6��V���o5Ӝ� �N2�_������mM��F�Zki���@�!:����ڵ�T�ۛ���3��]�{�RM7k�-N������,&�Dd�W�~�ϵn��go>�d-4j]���?�\��{z��Y���L�n���kx�l�G#���.�r/�{mJ�#�c��0��7�mx��ЯQ߱���8֢��jQM��������,�����a�.��STy��$̸ ��`�gH�{��/�܅Wi`�2�p�,�6w1��2y�,r����d�N�-uܚh�K9nJM%�!�����Sss��Ր:���$�ewo�s1��r4r�ǦOLs֧�|2��U�YI�%o�alg#�WTy����h�Ԓk�z�mIl�(+�>�����2��9^00[��c�C�|4���z�71Y/�-1\���kxZ�\s����e��zJ���iX�i�6%_2'�V��`x�Mk�Ԗ�RX#%�n�2��6���c ���C����n�zTw`�l�m�d�.#��|����(T�A*�W}}�e�<����u��k�E��Nݶ[2r��~�+�5 m<#��[�9� � �Dt=8�o���K�{�ь�L�f�0q���O���,�|Wy�V��E���b1��<�Nkѩ��S�ܪ[�i�����ȗ����O����_kw0hn�o%M+/)����^����F����5�m�Ocƻ��:|��pH鞵ͯ�u�m�/]XhVsO�-4�4�#��x� 무�OF:��łT���JI?1=X�'�槎���~�'MCD��w�m*�����8�x��=Σe�+������p��<���5�}h�%��R�J�(ٵ���|�����SRՓKh��e��n|�!��wu�����c�j)�[��������c��0~�0�,]�ί2}W~�E�˒���s|U�������=����L��kg��l���Z��nf�h�!="���[X�#x�WM�R2�M2*�� �.B�ԓ�Jm�����ֶ�ֺ�j��/yNv�#ljF=ֳ�Q��'%������+y]�C-��Zv�k�2y��Fy�}).L�7��)A�l�3��^?�?�2Al�+0�.��[�����py b������K�T��Qm,ca#��GZ�T�G���jێ�.�Gkv F��7��Umf�/�W�V�����(㺒>[ȐK�&����* l��;kg��KE܃��w;����?zশ�"/�f��a���&�b�T�,p�J��WL���?Zt�ϧjP.�9�)N�v��}�;[�[rב�b}�1��&�����ʽ��I��Ю��ܕb�#a���S����Z�0�� R��������4�s���NMD�y]Zۛs �y�a�U��}s��[�ik�_p�DA���"!t�$zU�=E�XH�@����5�4��$G�������\��ʅa�i�)"�B�s���Mg�Oo��_.�f�Q �_pq��d��i������Ll�3"�G�����ln-��3np�g�Ջ���V+�%@I'q�H��ۥ/eet��pl��#Y<18��q(!��U}^��]�{{�YnY�����}�J���QX �V1*̸�����^zTZ��I:܉e�o0I*���sҳ�#4ﶋ_�i����?�%�i�4�L�F7��|��I��g2���N�����g�6*�̪"w�ubAe=��U�?��~<�h�FYPP{�x=+�/���Z�Y����䪭=ώ�Ӽ�¤����Rz�I��(7A�˟�1�����z���W7��E����o<�s\�"��#|�`����J��5�Z p�h�>Wk34y0me=P���%�����W9 ֤p�v�� ���c��ޫ���� �UۼiӏZ�L��kTT6ius�V5*[�U}a��#�pm�6>�n����G,��8ʖ�Q��Uuky��K�������ְw��ь��֑���)�� �rk��gO� ~�I��]�q���10%�y����^#�]�G�f�x �ɏ�ޱU�B1�\ ����� *5�4%�|������D�~��/���?o�i7��V�d�'�א�P�Dƿ2�g���%�]�,�2Iq�����f;Xwd��>���_�w�~"�^KK�I��p�ua؊���W0�έ燗^�O����>� ����iv7��a*��E�����{�^3Z�V�e�z�*��h�g����S���A�ӱ��Z�����Q��>��_�y��&<��>�y�C9Q������G{���w���]R�r��{k�ʬ��n���|�rI�UE�P3�¦���c��h��!���#&�Ry���i�q���I��8��8�<��S!w��������S�l-!o����6�;IЫ��0� g������ �R��S��h<�����Ηl�d���M�X�����䤕���X3�ۣ|�r�����Im�j~�r�/ *r�\�X��T&�q���a���R�(�!��֎[�2��7F>BN?Z��F!H�����ǀ>�- V��A�>�6�:>F;���f��p����[�g�E�$,B�7�?:�|��i���lc�U�sqB�����P[��S~*�9�V�ͅ��qÝ�xS����UMR@f*���W�P%�x� ���m��[��H9'����b��d��zs��!��g�8-��+���"��E%����C�'-FP�V�u�g����+63�9lg��տ"+yy01߭Qկ!��� ���UN�vJ�xɺ�;GU늴��.�J�����b���[3+\6Nx�����7�g_���Gj��� w�z�|�[�Q�ɓKs��T14��#pvm��s��cK 1f^Fp�:��W���u��d�l�E8��@�>��Me�A{�+�j��}�.����*9��+�0�>�������3��vG[�?���$F��p!M�Ol�A��=㋯��&�j�E�f������A���ti����2F�ɴ���[��uo^յ�-�ݯ��60�����?1#ӜG B�H�O]o�^�nm�͡O�^ס���n��\8�ir_hn3��Ju߀.쬭u}Q��q&H�qԧ<s\��u KG]7�2�2���|���;֏��o�x氟h�%�R�:(�zW����T�y(����_��<jQ���3���Z��ھ����mq-K�Ϧ?�} nxWC���n�����V'�u8�A�֪ˣ��U����t ���*�>�����_.9:�I>��=����S��Z���1;2����%h�!�qZB"��,f���PqT|5�n�O��kk���l�j�^y8q���1[��y�2jѶ���@v�����|W^�c�IEt�>f�<�ß!�Pw�d�)�!>��k�xJ�m�0!�QC�N}�j%28��c��!���b�ABx�ҼJ��'�������J��Y��Uv��I� �XϘ0u�id��3�RK����ڸ��-��˲YYdl>R�C��7�5 �*��t�3�òy>�����p&7�!���X:�4Q"U#[7����ʑ��k^��nZ�$����J�.|Sqp�h��t5Z ;X��4��'ӑ^���5����s�5 �ٯ�kV�c��$�<I��F ����~�9�Z�7�-b`�?�?��º�>���qC��}�W����go���Wר�ODqo���a��NcC������kB�\���??8��e v�)(�$��5�]�e�k8����jW�U�r�=�����P5p5R�@O^jm�u������L��( � ��7~���V������R�O�Q�Gnԣ�c$�x9�*.��N ��L)�Ͻ<��})�~l��Q(<��?ۉux�/Kp8�y���:�ڳ��V[�c��`s�5ˋv�s��T�q���"���0�,>V�x(z�A��cU4�<�X���۳�F�`{��ʭ�\4i $���6�I:������08?2��e��,�%�hb� ���d��М���?(��6�+��H�����-?�锶q$�\�tp�B�ל�;�ޕ|���v��N�Vn6(��0A�����H2��Gm0H�_��̹ �b~P}G�D�m^�����$hbW�!��NIPv���̼�Q�+s������������H�a�UT�B��q����JU�-�{��I���Ia�U�-��f���*Ɓ�LDFFa�����2A�%�^[B��x��I���1)�ff]�� g�1�N�\�_���o�=���2�M<$",g ����}އ�*����C���'�\��f��P�9�^��k�v맸��k���l���m�pA8�H qU�I>�$ȳK*��w� �U[�`8q�2|��}?�������[_F-�sn��pP�����8��m��pH��F��,B�k;?*�:d����i7�Es4��qs(��|�&��)V����s���j��Wz}�zm��4�R��������k8�=.���j+]�xkZ�-tH��s]��ѳ��I���o�玾���t?l��۹�%rc���Zl��Uz�3�z�?�t\��h/�젚V�j�\(�BT�#|+��_��"zWE��.��3�+�-��y7ml�Gm��\��,���:��cy�ʹ��2��]]�^��{����C�����zE�>2�^��N����������Z�ǫ����w�|�˛�T�.F# ��A#%[���7���L��j���5��p�[8�@_,dGu�#�5�]|<�c��.���[υDVW�2K��g !˖�_�rF1^��X%&��O���ҘF�zɷ�v<���o�uH�I�i�F�����f��+��#8n��[Ǻ�ŏ�:��<W���E�o�[+1mO�R�����t����� .�m��wdO�� ��`����b����lQj֗p[j6����$��B��X��������63J8����*~�T�o�I?��ce˯K����^0��r��K?���DV͘�`0pz1��ā�6���kE�+(�A���{$�߶k"=B�Ȃ����JVE���f��z�$��1��m�jn�����y�<��y������z�Z�S�+���4��KW{���o##�b�9,eYH㑑��\r y�ƭ\uk�|o�Z��}��&���,��3T�'q�Ev��7��i�\:�Y#�I�Nxʓ�z ɞ�� �� e-�˧f)4D,�( ������8��x�$�������G�jzx��B�?�'����]X Y�J���EohG��q]�9<W��?�ω��2M[Ŷ>���&;-=���nU�!�lŔ��7�A�ȮgǞ ��V��7��ٮ���B��y)�k���!aI C ��j���Z�o�e�Z՛>,�\[�(h^��;�0��1��9)� �8�糿���{��C��I��ot9��..-C�y�GRA8T1���A�O�f+u��ZVx�J�:1�#��x�GZ�K�Z��O�Xľ!�Ӡ��? �r���&MF���)��%������)����xj�{�k�FkigYC�Q�h�� ��9��1�LF�v��ۭ�7��d��nZkXnl�t�A�'��I�n����䎜U�/���F�I�F�^L����pxe�>��]C �x�����h�%�6GM��9�5jݧ��;KK4h]VO�[��,[@$ʐ{d���:�r�]���טܕ���\�7�Ä]XʂT�W� �c�=��jM&���Y�;v[�Օ`��.el&ޠ�[�� ��5�"m��mv]m��9Vm���2�OJ�_�{��~&����BԮ��}�L��W���ytLn�*rq��t�-��#R��獮�V����߿a�5������Y����&��u}��(�F��Fn2��c���Z�e=g�~<���g�.�{��X��1s�z����k�|-���Ŝ�*���9hYVHل����!T�'��/�Xv��>�S�~���y3�9̷7d���A���s���[�V/�倣�W��g����;l�~�T��������������o�M�z��m�h>A��PN�r0@�O=3����^.6ojI���t�/ne�:��9j�|M�F=G�������i�x�ӏ�J�����'W��j�_X��K�R �!���$�r'���u��g�ҊI�ߕ��[ )AZ�g;�?�� 4K��K�F��bK�B_6P[�+�y�;�ڻ-F=B1-��&�XTDm�(bp0F��TV���=֗#<���C�0��`,1��p��t�,�Ih�o�m /��\��+aN�cn_Ƽ�T�U�;�/���)9s]�"\�WYK6����c-�����杝M��&(�KG��6���>Hnp9�D���"�W���ye-�6�J���jȒH좹{�[��L�*�Ѭv ��䪁�3��8�A������+|Ɲ�V��K{T�u#�&� ��c;�S���Ӽ� nme��2*ߔX���A������=����e�+8��ʰ�����*pxͻ[��Y]i�� ۫4�*2c`¹^Wa��pzt�w���OV;�=��ڲ9eKHȚ9M��:n�q����RF���wC�b��Hـ p�c8��Ux��V[d�O��x>ϴ�pK)S�l�W���s�;�gp��a�f�$�O�в�`3���29u�f��7�����l4��j_�\[�m팓��袵���@vm��'ל��i�|��I�|��� ����J��=�)f����Kqn�q����jHc�n��d�*�V:}�m���VH�S��̲`�p0Tc���8¤f����=��ho�MQ����IBF�(9��r�09�E �ޤw�=�9�u4m�#�<�٬ۍRk�k���E.d����,�Npvl�����xռI>��-<�"��ޠ9S�f��������{l�~�zU�zĽ�-�~ؖ�1k{#��a�b2~a��$���6�En-�XOk��Wy�g,�g}�3�j��ܷ�un����>ZG�w/%�lm���^A�zpj��k�X�&�%"#�D�7vI;�|���qC��tV����:mNkK�*�rDL{Q~u!K��p��������L��M?�p7#ػF0�!�q��Ea[-���R:?�� /d?�6,��`�Q�8�3������x��۰y��=�mC�2�a��FJ�zg:R��2V��"�<�uvx� K���eڥ�Q�;�7pv�+埉?u�j`�..#����]̀'������}�auP���H�����#2'����l �`c���\��Ŭhz}���Rdu��aŻ�.�X�OL䃃�Nk������=W��jW���Qy�̴c"mr�c�7Ӧ�5���L:y���:�y<vS^���|�Mq�� ��$�>[�UU�bg8st5�W:DI*<�utB�(� ��}ھ�����4t�9ꪑ�ܒK�s��s<(��e`1��<۶k+T���*B�A*`�Ȟ� Ncs/ �F����K��>��m��ED��1��I¨��X�a��G�y�5�B�b�rԜ���f��^�8�[��N�����1�"�r��+F�;��۷�j5�(D��a�@�s�M=�.��`P˸ތ��L����j�SW1r�!�[G"�Da��˝��w��~j��k�x#\MWA�4j���$��t�#�z{��!s6�V�Hc��߾:�O���Y���p3ۓ�$���S�B�Zn�U��OTc�˚4}���&�� '�\ !�me?O�^�r�\Z��W�W�ׅ�K�xWR[��I�|6�뻜����{���_��tE�yr ��Px/�%9�~����V+)���f���������u҄ݤ{TД���&� ���QV�7�W,3�k>����y�k��Y�k�G����(X���� �=wt�oR�1�e�&9 ���^�^������ �mjzݲb�kK�<����(���NA>�r}9c�xy$t�۽�Hk2����(+��bȳ� ���S�i b��늎�@� s�Ì~5$A�B��砨����G����֧����>��҂���j��u�DVF$��<⪝މn5�p;�q�z�0�q�Lb��Ԡw�����i9C��l�8��b�k4��^{�6�$y�<u5@����Z67{Ss84��L���[�R1�t�^th���������J�Y��n���.nb_�y��֓���S���7l�i�W+��iC)l����sm�� �L�*��oY��{�[�=3����b+K�n���XX��+���? ȹ�!VhњBǀ�b����]��|��Q.�8�fϡ�L�u %����0,�� ױK!���V%M=��R��Y q�29f��z�����'�D��܌j`��������� ?� ���j��Ua�l��I9�g(�эOz)/��MV�j"���6��6��e�=�q]_�t����{�(f���g.W�_n�kD��N����,Q��7��=꾨f��[�XͪȄ���t��կ�/N�Q���L!k'vP�lj��(%{ �}���p1ߚ��[�o�?Mux��g����Mj[�9��Q��>�,����26 �|��Q�'�����n�n~����Y�[��:r�4��ZuT��)�9�`kk{x�#%�A���j�t�ʹV��fh���(���Vp��/0g=?�t�D��<�|El�f�%v��^�xO�}���kxa,��.=��OZ�]�|.-�`���%�e�TQ���j�X����^f'5�c*Zsvc�KDcͦ�[�jcV��ћ�k���Oa�*{�H�%�����[۔�'��5�U�N�h��:���w� �M�l`�c��m�n/S�����6��`:�䃊�JS����Zb��:�k����t���j�'BYc�'$����Q�rPyjy%�J���EYk-��L.~�J�m>� �g,2FI'���F��@��?��sb��!���$g�v��8�l\(��ԣ����ݟ/��ȿv�~a4���)1�S�<��a�#0k�]���S�ʬ�FPqV�u&��%JO����f��C��]����U�.��c�Ӆ�0�VT3d�v�ZI9���_K��E/t��osV9OcX�S�#�8���!Fz㡫1�>��^�h����߭O�8>����㊳�����j�)3H�ՆQ�S�'�e�/�0����z��W4N�>G��R#c����ɒ:T�^��B)Cs�x8��U����H� u�Z�Hd���x��@�~���Jz�� Pǜ�9�!�p9�ᚉO"�<��ց�x�������n������8<���4�;�Rq���������kP�yuk3����1 �y�����ڸ<��O2�ۢ�b(@dw#j��G���-6�y~�-ʼ���J4��ލW�* ��~��ߵ��[y6�d���t`B[��L���m����c*�F���G��@���� q����*�*�����#q4�<J"I-+cp��ap9猲��ZIs\!�d!�6¨nz��~�yo5XB#�1�WS��2͔�)���h�I#�'�5np�����d>E�Gzc�p��w2��!��+q����� 1ȶ���pFNŷ�c�,���p�n茶d���u!u4 ��(��卿��@�]�϶OQ���f[�'��Q�0!C�GB�ԀOL`O��]ӽ�������:_��I.�Dv�,�o�*�˅�;�\00��<rF�!���ɵ�e�XM۰Hn'�sVOK{x�����>坃!�\���_��g'�n��4�|�T[�24�fP�1�3�Hd�'�S���P�܊��a`�ZY�d�;���pU9?6�q�Nk�~���H�r�庢�*��Rx.۳�����ſ�^��.ӿ�\�Si�ݷ��1�w@a��*�Tn�u�a-݉r.�*~`=�t�T���������0�S��N��,CSӭ���&�[k}��������*ņ����y��K��ܼ>k���u�%��a��* v��ym%�%�� b>t#�����q�<t���Mn�O����n_dhQ�������)f��1q�����ũ+Y��"ڬVf8��� ���q�E��e�!��@?tവ����D�X���8�̎�s�$F�3ul}�`d��q�=.+i�<3HP4� ��2��%A�k��X��j�[N@*^��H$T���vVL����)Տ-�N,MWJ��kK�&Kk����I�`���6X��@�G�em� �5K]-d�[w��67�L�I���0�������i�Y&K��-K#y�Y�E�F�ʂ�f8�''�V���g���z�v��Y;Imp��:a�����Yy݁��Δ�����,����]S^��ɛJ�W_���|s�k��g,m��� [��m�ؠ� �[ �eARG's�A�����-�=�N�ԱbX�1����S�$�����&��%�|!e�h��J���f�`,YK�Bw�y#���M��?Y��&�cl�&9������P �I�c�B+٫Bi��S�-��zjJ����g�_���7:ı�Go�7SYK2��o�.w��m��q���N�Wj�y��B�fE�$��8�����������5����1�;�ao�����p1ߥy���=z��+��ۨ�� g����02H�#9>���~ҋ�N2I=�m|����_��'v�k�}/aX.a�%���� ����9�s���;x��+���|a��|@�f� �f���&Q�W[ir!�vn;OZ��*��2\=����.�*�2|�˸�$����b�b�o<=ս�NQ~�(��eC30R[��Fp��sQ�R�������I)hy}����âo��-���ز���t��p�$�"AO�F��^�?��4�Z���Ҭi)�6�Q�R73"�*HS��'�u�+�����>��֩�w����;In�Ձ%���䏔pv�د%������қ�> ��ѕ$1�[E���Z���gv2�nW �n��oB�j���OH��+i��_������ ަ��Ǩ����."�nt���햯�*�F����1�#X ��&������G)2�m������#�<f�#�!��^�I���5핂^I��NXc�<�I���������^���Zo����V�?X�/� F�K��H�1*b�G�*v�F@8=�F�r�W����ߓۥ�L����,�>է�H]bkhq�*2 l�dne��M@%��[���ȱ0�dH��������2U����9:wB�M2��� Dw��q_%�(;wI�8�Ԋ�=��[���B�\�X��.H�u��u������I������$��fH�3c�A����mu�A+�ji�P-��c-�H��8b�zyC!C`q��N+z >��-�����`�$i���NM�FFXm��5Bܬ���_i�<�>��b�bp@$�3���X�k�_������4�.f�cHܐ�%��ٓq FrF�z��9��T��O�k;�~���w1�ke��s�+� �����-1�$�@g�\�����S��:�(�Z��ء�I�v����Y2q�d������ j�����1=�9�n��r��;�sdca������ӂ8�������5X�es H]e���/�>�����uu������>sn��x<e{㝫�ީGf�Io�F����+�+>�A�<rk7U'o��>�[In�����D��2Ko&�� 'i d���#����,�D�������W 9��`j).�nQ�6�{���rS�꼒ʀ���2H�9_Q����o2in�T�ͨL3|��G�8��b��Ke��q��i2�p҅�8I"ȱW?&�P�ĥs���1���l����xg�r��(&Da��q�B/C�}?~�*�����V;F*�0�!�0;[p�s��uV���2-��u��"��0�O�� vW��z�*�baZ��'t���zz���fO-������$�n.ʖA���u��Q�g���"[�,~t_�'����ӌ�l�cu����f�I�����p|���T�Z�5�Kkueiuqi!�1$J�%��Ӏy^��G��RW�����e�G%�S�r�Wm�m�2�팜,y�@�N�$�N%�g���o�I��*J����3�������oy�_Z�Inf��E��lp��W��^HSЍ�5v�+,�:���K;�LO�*�O*H �g�$Ҍ�����������]�[Z��ِEm�Pp��)b�w����M����Xo-Z�g��]�.�{���]-�Zm�6�<q���b\<Ь�LeN���s�u$�8�ՒF�eI���=Ēā�\�����s�R��w������R��`l�O��`�^Hd�dA�Y��#F��jƉ=����P3Eù�eWWwt!�t빲sVSQ-��ƞ`}�f �1��ː=�2�#�&�oi5��[#G#rU�vn�F7A껿 &.<�ֿ����e���[�KSA�����ےx,FF ��gj��u�E<\7���#+ �Pw�Pp��1��U�{�.�u�� [ݿ�%��b9另1�x${[���p��n�9�b�p�2I�q��(��yW����e�JVf[{Evk�%�+�u,_h�<3S�K��~��t�H.��{{���D�'*��O;N�3�Òz֦�Bq�=�\Ƴ9��l &�V��G�aֳm���Ö� �M�DXɜ6��`�:}i<C����b�{�� ���^;�.'��[6�\��hq岰��Ra� ��_�����N��k�h��C�l�d$�-�,�A�g���60}�I�D0ܲ��)��|s�rZ6����qM�&�,�Ku�i�T&y$�\�%P��*���(�����(O���є�ٟ����q��&�y[D�F�%I$�c���V]��Nҥ�i�#�`x���K�����n��ZC�F1r�VB�Tr�m*�������!{�]I���g��JN[nHH'�=+���-Y�>��rV�Y^�۳F���as�O8�;����R ���Y7`�ml�zdv��ri��$D���������i�l�V�_H�������85���dSx��\C�nT�'�Gѱ�AL����UT[��1� �g�����l�ڲ:��ۃ�F~����˸��6�g��(<�������jK���ᵋ{�.?�9$���$p)�E�C�i�2[][�x����Wc�X��̶{L�p�8�@q��Yqh�fIR�nr��i�#�j�&��i���<<�+����H��$��^�+lԣ$�a'���W��7V���pA�����Ӯ�O=����3�5\:c�O���fo�j� �W�g$w ��OC�5���:����an�+�_�}�N����Ϫ.�^"F7ޠ1��w5sF��Utuua뚒��(_�~o�̥{O��g|��Td�@% xϽfj��d@z�ٸ�!��s�W1]���9�RWn�G7�$����=�ռ���H�뚽�Y� �`�۽bH�Eq��擊��eې �1�?:��J�4R,J08�9��+��v8;�r9���y�N��iJJM8(t�A.�����#9�hP��U��G�q�R����}������;[|F����ף��|RID4: �#F �h=U+��X��@=W�q�!��f�����S\����#%�^�v��u5�$�4���#�����䀒���&�y��;=����z�¹K9d���|�zm�s�W�P���@U�L�1�~��<�4�!)\���,�2C�������0i�4Ѩ��1A�t�+c@�ʿi�mYF3��������Қ�v�~�����t��kDCWL��I{�{�kp����c�^��=^K^���6H'�TzO����9�7�1�W��+ �E�W*����3\-���B��e6�n�[�n��� �;;��!��B���0����E�m�F�"p1�WQ�h6��P2{�6�uB��bu$��zo��Ei�� ���]��|�ƙkq#�9��\��D���*�r�O݀�x�slV!�)���klP�<7mi"Q�9�[@R5�-��Ic�UKnp� ��Ք[MjR�,G��?Ju�G���U�.R4 7'�V]��Q���rMJ���U�3R+����< u��H����k������:*�rwW������cƷ>k�C���y&3nX�cV�:z�����p�"�g9�X��aY,�7��5�'�>/_]��=�¤�����/|_K-em5��X���ހ����~U�tx���MZ�x8� �IЃ�G��#�n%a����RF��}�7,Ğ �cwo{d�V���J��H�*F;ƭ#.xc=G5��ӣ�cf����|U�b�J\�Ȟ(�A��=I�J���}��*���I�^x��J�3���52M�x���'r�0 �݀����$z�2�c�4�'n3�Gs�V2�i�����pjx� r0>¨+�$�9�Ԫ�1�Ӿk=b�tFf�3��j ��9<��dr_��X�^}�GJ����ћ)0���9&�E!���!������1M�Q�5�a��p�?�� 8��Đ9T�H�u�w�j�+��HՉ���jx�'��z�I>oN��f)W=G�ҽ������g�V"�����TR�oj��p �Q�i����Ա���)=rN�q�W�N�e�U�=��x�z�����{Ա����]1�ƙaX����'�5 1���9�Wq����W-㫓����M]2�y��\w�@?�����e���j���u���N�Q��ۋYl�����M��?)���R�j֚A�Fh�}��o\�,,y,r���Y�����&Gf@7F�!2r`k;\ ��ċ8�d��8��_�J0��������Țe��]#�0�<��!a�wd�6�guf��)��$��Y-�l���˒�����o�$�/�^VlDn����2�z�֞R��̈�A�u.�l�_�(ϼ�y-&{cW2ʰ<H3��c���rzf��8~!�,%(�.Y��V!��;�\c�Z�b��Ķ奔��� \s����#Q������!H�lX�͚��z6�����VeK;מ�I �k¯�[�Ut<pArH�p8"��f����I#� �� '�nU�z`u��IZE��٬&�1�%I�P~��2D����L�2�`*K��$t��b��������=��n��+}?Mxm����lE*��X�[k�;�Vs�W0Z�#Gwko�32� i���c���?�cޮ]E�id���I�*�|����^��6hchm[e�`�p�R};c����������+Z�4���od�2̫���Fa�pI�H�K�$��[���-�ќg���L���;[�o8��H8F8��K�!6W�Go�'i�ל���7������ȷ}�Zj�\�j�WS̛^i�&�`�����#�\忂4��D���ؒ�8�,�'<z�;���b���M���$,��\�|}�;�j��?�%{�R�,����C���t����� n;3���-��jP��Uf��N��ʌ���P1�����&�f��O�)����)bx|�k�ݷmea�県�ֺ�d�~�ɖ�#i8�ϯ�]�uk��b�Č�{@*ܖ抔*I%��*S��Z����+5$�g����)��>xI���-ٷTu����&�?TҾ%x�V[���ܱ�x���؎�q����|W6���s�X[�Еx�h�����⋝C@�"��vb���Csӷ�{��HQ�U9=qI��O�B�/g����ݏ��~�~4�n��_���Y�����������p~n��{��|?ៃ��b�Mմ+[�9��n$�\�y��$�:O�a���_����|q~������*��#�v����Ū5݆��I���Q���w�jT��Z���u{rzY5/���Ir5o+�����y{�_�ڗ�|7��M���-��W�,�>�����Fqڼ����3� ������U��ȨA��xǥt>Ѵ?|��WZd����Ǿ�CV|���� �~Š�;#�.'����ҼJ��`��(�]9^�wiݧ�� ��n�z|��v���è[�I~��e����`EP� ��5��Saa�^@��ƣ`��ňe*U���5= ����d�~y^x��K�J��frZ2�?v��ӭq?�E�������w<{�Vv�n�}e�jZ^����x�%��m���%��T�NW����ҵ{[����?[��t���8���FӇ�`�s��q]���m/!k�v%9�$�'#�28�ҹ}{U�5��6�u%��4�m�.�9�䩏��#�\��崣����z|�_�]"����S���y��\jז�y3 .a�ϖ����|���jӝ���'��H��ndS���\r=���?��-�էק�d�k���-�0G8Br3��y���>0��f���ѵ�L0�N�D���sמGsֱU*�EE�����mޡ(-�D�!��e��]��a�~2�OΒ+y�D��f�iD�P�o�O�V%Ƴ>�'�ַ�8��|�C��^�I��±K�8c�>�.�#d��fO,���.��6��S�m�Ʊ��!Gu퓞? Ž�N����kK�R�#��5�ۑwTz`��J��j7���A!c7)�C�O�W��6SYk��^ڥ�J�.��sc���+��4��/����.\a)E�=?I]P{v���,�KM�(�9���T�v�&�f[��;��j`����@p:���5{] ?���ԴBd�k�2 ���Q֮��vq�}�S����,�-�7��vbpX�t[�?z۵�;����s(ԃ�����x���w���.�����K�tzr8���@�%���w �"���)�+�����5���M1��{��ՠo1nY�a�q�ٯ<�ǽO�!Ӵ�(�\f7�/�I���R ��Q��)�.�R_z���3Y�_MOm�Dzki�$������npO��W�|I�Jxkím��Y�i��~�&=H��������Oj�}�O���xʈ���z�Ҳ4����U�}J[y I���g���ya�q���AKUի5K��G��+�)O�����o�Cx��K�Q��|�+c�=�Mw�wm&��o���eX��=��G�k�>�;O�>�.��Rj:��/�w4�Ѕ�q����mk}��z��wgc+�3�XBx�K@=8'�g����*PM�]lڿv����⤣}K���9/�7�E��.�m����>���2F����1@�L�O �px�kI-�����)�����n�5�ƣ��-]�s���zt���5� ѧ$�������� ���%d2�YG��꧰�c��U���)�VH� � ��"��2t�eu$=���MM{4ot�\D�IX0�ߎ 7V���z����sl�������'���7O�SCs~�J~����6}���ޙ{^F�ܔ�V�]s��?I-��bSu `��3��~u���4�U�����j�<nA��-�H�y��}Ҡ�NjΧ:��4��W��J�9�r��jȎi�Kr�$@M��?�Zm䖐lC3��7�M�c���\��P�n���_�+��%�Q�c��d�rW.�:�0:qY��4:�Cnm�)6�Y�l�?\j������\ؽ���`P�w�G^��)�����u��WC�;��QUU�7ˢ������*;�6��2Om�_1[���{�8=z�Ҥ��Yl��2V3��@��$����F�s�C��β��T��FSԷ���*�j�|W/��[�lr1��ׅ������o!8��Kmyk�K�sEn�v�3�i���\W���j�}���S�����U���}k���i%�wrY|���sӜ�B�R;8է�k�܆x�����UI�J�[]������>7���^�nn.l즹������99����י�~���HWg��eFy�����o��j7|3�#�'���=>�?�����[�59��#f� e�1�c���5��?*�t�>�®IsC~njI'R"%Ԍ��������fKiKcj�z�֮�14SbX�JF ����������eIp������w<�EE� ��C�e�eVl�� �}�-n7��B3��0�ԓ�Z,k����������������Z%��ͽn�+��T��J�̼`��r�,��n������N�G<"��u�#����Rm��bB���F��Ƿ~�e�/��u�]m����� _^xS����sE*:�m9W�q&�]�2gq�{���_�/j>��OԦ�m06�Ųa��u�θ��)c��85j�WO3��c��U3�K�q*��{��q���f�Ŷ:�յ�H�( ���O,iqA��_�R��0=�e�������Õ��=�ݜsm8�z֍���v����둃���fU�� Q��s����E����O��ƌYY��`zW��� Fzt�o�::�.�pq��R4j/h4��O����h��`"�ߍr�!��9�" �3<נx��r0| *�$2�>��ׂ�)%+ H�R�f�G�+`'�H¤g�.|Enn��,G�_ӵA?�����@�'��銂�ᾮn�4�7ǧ�+����$���rܐwb19f<Υ�2J��4���/��oă�x+���G�����$� ���[c�;b� 'A�4c������o�A n�:�E����D���֭����W'=MvqX${F�>���#����_5_4��KCD`�� ���Gs�Զ��C�c��n%Q+�� ���A=�:�=Z���#��ܪ1���4`'{zT�h�$ ����+�Z�`d{�JVj�rG�H'ރ*G���zW9�x����.�q�$���i���{m�5�C,��]�������-cU��H�\ޥ� V�2�_Z��o�B�b<�3����şuK�[̺}���l �\��1�u�<���zE��Mx���d�E��Ns^S�_������b/f'$ׅ^�7��z�<�J��ɯ���;��q��<���"���N�Ğ>�5Y���L����r�쭆s����7=)�>O���_OK F��by�r����++��rO<��;�0�T�ezc�N�����5��fN ���/��U��αv̖��>��k�x�I�>�.���X/�a<2L~�z��6 q������GA�#�ӮLr��g����#��Nq�}���e�Ƶ�Q�������}��$����8���r{q�s\�?��%�[]m��@7#�=�wa�WwL��_��up�:���G� �MZKu��!�~$N��m���]I#���pb�<�\m�E��\�'�?z��2??��UW�pq�Ԫ����5��:#2�lv�21�5"I���j�d�X�}*Bǒp�eM�PЊQ����9�\��$sϵd$�n��X�L�'NkZU�tFf�Lx<sϵY�Q�U�k9J�ry5n@ �E{Xlbf���K��ҬG(u����$�OJ���g�{�1F�F�2��J���YI'o�5f)P;r=+���sE#R)09�*�R{�\R�A�V"�����^�Jf����=852>x����=j�r���{zשJ��w/���w�# �R'�j�7�H����&Z����ڹ�`6��{�����#�zW)��u�����MS�~�׃�!�7^Z?�ʫaK1+�}��4��?g�(�VL=�=���)RF?�W�M�,��p�;�c5�ci�ş{n�����ʎ���a��oҫ��Ag�#Ʊ�6�o=?�%�ф� B�GT2^�v[�nn���VJ��_�Ȼ�I=�7�\��ǭCy*ц������\S�F��;�q��A֒�ф�HU�>\s�f������4oa$ASi\`���Il�QF�ʃ/"+s�^�V��I�@����.Z����:i$�� ?v�s��������ݐۅd���,�@1���Ԓ$�%�-1 �'a� zƠ����%�����j[���xa�CƑaH#�ۥKi���5LM>2��-�����O�U�Hl��k��i�#��I ��柪$�g�(;;�О��q����*"��8�Pړ���{kq�e���7)T� ��,�mG��3�Ϸ�S[<�\�2 �Ө'�T��X�2G)f�`z���qu�"6��� �*G9������������O���}?1V.����=[�*!��<h~e�V��qObn�%��d�I*$�k`r��Ҵ|-ᵈ�����f*�B_1`J��������2$!�G�5�'��J0�A�+5f���l�Q|���F|>����%��$K0��3s!S�v���w�߳lv�Cw�.�����۔��~�z��6��=J=ua��lIa7^0@���o|S��A��Ak =��d���`+��b���B�Z�Qv�i�ה��勲�|ދ�5��{]>�(lckx�HX�8 ���� ��K`�H��n��q^\֟�K��]Co��� >� ���?�����\�>E����b���S�i�K��p�5~���z%_>D�p~�Z�����7��G�ˉb�e���r���fev��\n9�~y5�Ꮓ6�����I5�����qְ��b��q^n���;B�_<��X�sx�������L晩XZ<QEx�qH�����LJ�-M�.ke�yc|����g��h�dutN���[<<�*�����1��5x=4�<;��-%�!��Mr�q�s��XkMOĚ��p��i�7� �E³0���ϰ�<W�9��Yv;���5���i�����w7l\v�=��u��nn�>����_a�����;�8�@�;z�B�ks��x�1�Gןΰ�O��Hl-��r��RH犁u�Z?��,!��K���<�;cޣ�M�ˠ���c�KC"�� �1�ު>���H�rs��>nj��ͩ��vV ���=��p��r�ִ�������q}Ĥ�����2���Ί_��Q�>�+�i��$�Q�i������1?N+Ԭ�7��I+�����jD���n��9��۟Ό,V_�T0�ɸ���I����/K��ӝgR�4�ϒ��q(�S��([��I����_J�/��������\��g̱8������5��-���4�4�9M�S�eN6������^�\�+���+�Wrce'��c]P�[٤��/��y�_�Ҥ�.X���Wƾ�D�J��WW L��=�AY|a�[e��C��N�n�#�ޭ|B�<��s~f�[¿�#�[����\*匒'�N��%9�j�y������e�Z���<#�v��<c�X=ߛ�U�.���9��W־$xF]6����\Ŷ\FP�ߎ�Ͼ��xFؔ��=� O�zW�O��&Ye�jg*8�k��ͤ�<���kG�[��|�� ���2[�o�e�ۄ�]����@z��^����W�D~\�&�9$!���}k��W^"��[H%����HМ��ֽ����u/ ��ʑ)�9�O��a�)Gnw����k-N�M� �ޡqbG?*�`7'�ַ���{d��Ѱ��'����f��hc�g�d���~�Z��xr�+�$7H ��k��I;��%�lkV�\�����ݧ��x��K���ZI&R��B�������z?jMs����9�'_cT�����I���n �=�D�K�Q����jz&u�i�Y�0 ��1�����[�N��v�D���z3XsZk�1$dF�d�/��u��o�K�|n*J��W�-8�R��3��m�7H�9��� n���=�J/�ހ���^��b�zg�n��U�s�jė�io��c�~��1K����/��D�92�� ��������uS����'�oʪ�^#�K�X�F8��d���Zn�m%��52�O�Z�N6�D٭�p�R�Ļcs�^�3�S��o<v�\}�9�۴�1����5�ղ]����r?ýW���]��P���sӞG*�Z?��m�aqk=���)��s�}�:��xn�S�e��Yx!@FI�{�?�m��y�y#B�=�Z�m �^4�Yb�H����U����]���?�E"I%�2}��wĹ�=ǯ_����$Ѧ�o�Wl�G]ˌs_��L�-�8��Q�:��^Q�O����^LB��8篾k��N$��J�%�wFU���|v��3�I=*A��B}�����4I�B�U'��s.〬��S�_�R�ӭ8;�x�(J��d�S�+=�llۥJ�%�0�I���)��D�� �پ�n����1I^�I���2z��I���'"��w!�;R[���[�T�*�oS���M���G<�Z{7��Tz���'ĝ+�:DWVw*ᗑ�A�>���1`w�=���s��S���w�t�"c�ع����_ļ%�ͩ��\�{���3��c�7�?��?I#�+��9����@~���(i�%�"�9��<d��~��e�w9�6�,nM��9���=�EM]��w�� �N��Xry�WK-����+>��L|�c�ֽ<=|>27�������*9��\�G��]pTc�J�-''�z �+ ���cF�^�� K�����eq��jѶ�!G�сZ�(��Α�T�����N����*�H���b�۳�N���w/�.�H�9�F����V���m̓��0pH�_��8�� ���c]�Ť��z�꧃��v�X����5Kx�F}�T�,0e����x>0ivFM�>c琵�^2���^����T�M}>[���M�Ց�[B��-O��C�"��X��;��/��x��e�=s�|�x���V2O#��Շu}<�[��.�|J��<����5c�<W�kW���hǢ�k�ռKyw)w�ܞ�sXD�����>]�ëS�G�V�Z�ߕɧ��bK��$�'�/j:WjIld/J(�)8��N\�z �&����*1�9��m#�;piT�ұ6,`�����jnp M��ҥ�M-3P���Iᙣ�3�u8"���_ŏ1��u���*M� ��Ҽ��4~dm�O�5�cp1p䨏3���G��Kf�_�<����w�B�F��rj��FWp�N��<WΟ ~$�iGi���[��HܲC�^�j�Z�����Hu�5��e����]c���N�|�������~f�=NG=�y���v2{�{~�Z6\m99?�= ǦF9�Ę̲���P�qS+�s��}*��n��1�}�@�0ea�����o��gb�N01��SDHL�NI�T��=s���i���9�ұ� �2�R�x��X�r�ߥg�=}zԈ�Q���L\��s�36`�����U�f9'5��0xU��\�q�A�9�^��f�F�R�=��Hs�s�MeC(�8ϭY�^�8=+�0����jG&:�Y�^1�ҲⓏ��X��f���X�ԎC����֬�'���\r�ۑ��� s�N+ڡ�O������< ��ݺ�L2��=*���<w�Z�3U+�H���k���gV���`?�&��_>���<jO��x#�o���+T�3��S�o�F�'i���5��q&K ��u��2��BW���Y�M��:W��luuZ���}��+��#Uu`dF<���Ck��G9<栞�InT�y#�_z0�ϓ���]MF��ɚ8F��pW��LD��p�Ny��R\�\8ʧL���Җ�UVY<��J�~�5ewk �")�%%u=�A)��_�}�A秱55��I3��u�Z?)���Tu���N�a�����P��ׯj���^nTܘ�O�H�n�����/{F�cp�$ܖ��}�n�@9Xԃ���5�es#+��b�Iu*�^s��P�L�6\`�:�4�%=���.��������Ԟp7BS����j�Vq�)wv`=��Z���%H�8ɨ�)5� �H�k{�0e`à?Ҧ����E[$��S��d�,�{�^� ��������}����er��2��%��"����n�^����8�RM:���wL��kHI��-X,�[�R ?Q��MG��r�矔g8��|�a��84�D���b3�G���M�E�ɦ�"��� n��]����䟥V4�$non�5����!q~��78]�©W��Q�"|�ow�����U�c_�փ-����<�u�� >���ZO�<'�[��}v"��v��L��ֽ?ƿ<;�D �K!U����|��[��:�gXi�oh[�QQ�Ӂɮ���E�by��\ZV���:q��j��]nt�?h��B��m��]\��$�ߡ�ҟ�=x����Y�2��������8��R�5}~��[�����<�^����6z�Z2��D�DEpq��N�3R�ӗ�IY[��_������_#i�cݽH Z��{���&蘭�Y�ik]G;B7y�t��k�k�udpA9#<�V�\4�9�v*5cQsD��Aᘅ�ç;$m�0�� �+��4}~�yc�X-� a�e�z����۫aS�NH��;�1^]��T�ǭx�0���Z�B�����5�=6�t�p�����I��'�w6� $xm�;����@��e�F�Y�-�)�z�Gon$X�)Ek\3t����be�3�v1!���SX��#��tҪC{��n��x�����>�뽻��3�ԴYm��.7��?tצ|?�<3��k�>����ʳ(fC����i��z����6->M)�,b]���=;V92�`�: 5(�6�7k>�v��-)�Wm>��O�\�|��o��#F�IJ�#'�sҼ#�5��Yl�㼜$(s�O�+ڼY�'P�Z�P���I9"��߀�+d�$v�ѱ��js�N�IT��%�ɫ/���GU(҄�������<P�)�kkv�grX�\����>Mz�˪^���Ux��^���ڈ!�^�>�ˋ�K(�3r;X�\CvRQ_�_������^���ᾇ�`b���2H\�+���Dr� �G�ָ�x���YE�p���,��l-�[�&Ǯ��VJ7mA6�Ϳ�6����z��co8Pʌ��I�e���7C9ɯ�e�/��P�t�6w ���;G�}k�~i>-C�[�4Q��$���sҺ�k���_��-Ҵos�Xy0mRrG��j��RH7v���Z@�E�rw�55�ܩ�c=zS�.md�3��q5ʣ$�#'L�֘�A,;^2 kCP̌m�֘Ȣ���l` ӕF6�+����>��݂H�=i�z��Z1��:��Z�6����K�{N�5�n�,+��Ir�%s>�+u�)���P��{{ⰵ\��,2�����5�]�*��\w�iVY�L���aS N���*5$�?M�+q���'%�{b��i:��bv�����ze�1Gb���UFQ��wn��K+ܥU����T�\�����?�A���oe��_�T��;�z��)H���Z��-01�9�9�A�X�*���W=���aCKjͼ�s<�j8�4ה��23���1^��h�OI$AC��{t�:����ơ�N���xJ���ԍ�x��o����p�r� ��}� ���w�/t���a��0k��� +�D~XQ��k��?Ý3R��e��P������d��#�Q7T�*Ǖ�It��ct$��4зB�^��c�uż��i�J����^#��U�Gq����3�`��R�={&#^�K�䋷�>�S$U�>��f��.0w� #�r�{!�gٜ��tiL���P1֣.��֨���������Sd���!�m[Ú�_�7F��z�����?�q�ݿ�x���J��;��1���X����+��-'he��:b���p�����3���.�T~�hzŽݺ�r�h��˜�1_�$��o����_ $kǟ_�W��S㿇�XŪA��Wṯf� �� ǣG���P�� �v�c< κtQ�r+���.�p�K�Xc�Tw>6�e�^��W-Y�5�����s���ULn��=OY��&1�\o�|weD���Z��K �yT��9�w/�1��'R�JQ��=w_l�Nz���?�-U�.C78Pk�|[�k��}�L=�+����F}�I�_�e�B :��V#5�t���-��sp]-O����8�����e썞��K��e���U7[�ך�\O�ëB(�+c�U��\��g��X�<�ǖ4���Bzьb�G܊ ₸4b��<��;R�I�h�4��\P�8�A������ SUMM�x,�|��y�"BO9��Fo�*�(��Mc)��!�����Yh��8���@ʎi댁�FzV�ށ�,v�. 6+��m�S×;=Ŧrb���_�N�6�'��K��R�,01���1��q���R����8�#� �:6����G � ��Z��G<t�q_��iS-��,@.�8?�{����ӔH�dۃ��W��# ���9]~G���U4�a����r�H__aOV�P:t&��t��>�d�h�;d�G�UWR29�}*"�R*QwL���t��5f�2±'�¦�رQ��~�N7=�:�5">��5��&���O'#�L�?��R�`~��A�T��<�u�SDā�'���S�ΈT-��cwA��ju�`����J�#��ڤW���s�V../C�5 (fn9���r)x�q�X�˂O�1S�.�N9�]Tq2���36�qU���==��_\�����J�G#�Oƽ�.2��H�Iz�銳����㐑��Y�B[{C��)�����P�=k&)xO�Y�\+���T�h%8�5����c��~���/;�c��E�ЏwB:�s^���;�2�Tk�5��������^������u7n����^ p�%8����ֺ���m��"��;���ܗly�z{��t������`����Z?F�Z5R����Ixd�R���:r*[p&.�^�f���d<���}@7�����2�� ���)?U� q�]�������M*[��Q���V+���$p;S&S9 &��Ek�I��ie�� �T(�4��<�֮ (T0��"��]��x��j�ùZU�11d��8K2Ās�qWc@#P�T����}� ���u�q��.Il!{RҜ��9�*�r�b��3�u��$8���>��3.���֎2qHZ�3�PO�wu��18��ۣ�m ��}���y�.��9�j�ME��e�$����9�����*F=��V\�������>�EJ�QܘNe!NAG�I��1�ð�s�ʠ�dc✲���y���KK�;��:ԭ2y@�U�z�^:i�c�=kMR�V'��㛌�ϯjѹ����3�ySިۺ�~N9sRG!����zӧ.D��%r������!�z`W)5���j���5�$ci5?�< �Cn'�dVp�ڵ��ã�,w1� &@��� Up�4����c/���k�O�O�Qr��t5�|O�g k�Zuьo�����e$���4ѥ��}3PCql匊pS=� _��w�&��Z�4�2�*�����MKT�[Q�f,���_�y�}M{��N5熧5R�Zߵ֟=0�8*��Xߋ�u�`G�Y]���[��:}H����kC��A_fX{���?�l��tWcoo�#Px���%R�*j�]-�v�����9`�)|�?{ڝ!(���9�c˶ң�Xo�>x�� �������.|�/�1�*���/�CJ�3|�\Wn��g"�V�-��c�iA�Ms;��-&��RYħ�F0+u����9���Q�084����xQǯ�N/�6[���D`Oʠd��錙;Q��>O�4����5�4��C���� ���0�u��})�%�@V'm��Fǡ�� !�r2G�]�$:�R�xq�/�.y�+��Iaqs�59n�K�Ynp�����K�Z��On���*���W��x���%�h��:�H����k�bz��R�{\D�o66#��b�f�n��E�_=�#ۥ܂8 �¾�<�h����Թ���}ۣ��������7Ή5���]y(���ݲ@�5��7ঃf�I,��@?��|͟^k�n�,,��@|V]����b%�D#���䮫TӲ�~�����h�Z�KH�b*"�508�7ֶ�S�B��>2��a� ��+��5����\զō��@���gN���J]ޟ��'-ϧ<5��k��n�$X�����x�F���b.�?,�����~5�~��3��tqo�i��<28ܣ�]w��O�m��gk�kݧW!�a�#^K��ٯC�k �q�L�VۼFp�[C"��;�ɮO@�lS8�X��A=+�K�4`���s^*�o�uY�/4Y9�l��2�?Ғ��e�;R�<���]�����E`�����i%������zgz��O��B���֊م�ZY@��7q�P5��ޤ�_Z�x�4��n�{���M��pps\uirI������ c�Tk�\�����4,"??~�����a"��IE��R��H���Uq�ry�E�Nq�g\��}i��d�V�6�ݚ`�-�f�B�J�qf#tl�0@54�cr��Q�Z\��!���(�=��j 멗�iV���8�W�|Y�W�l�;_��/Z��l.��n��;�.K�����+�T������_�5���C�x+Q�o+�RS��(�>���XƋ�+�Χf�<ѷ��s�|��;�ƹ�H�G�$_s�q1V�U�϶�q�l$$���y4�D��z�{h� `���Zw6�$�f��N��l��d&��U�V<�R��s�DT��{TQi�S�}�֭�o�'�WT�{b��Wm��+�siA�*��Dۢ�ԏC��f����6��O�j�RIjf�A�%���5o����xx�Ő.�z��S����q��c�lqֱ�(�g�F���{�h���\�%�|w��]֫�M�6G$���0�*x��ѷl�mO���FU#U�+�S\JĖ,O|�fC�ke�cc�7�}=pN?*�U`s:rF[K��zc�nZ��wn}�U�t=?*�J=qh��3M&��0'�aC��j�<�F�F�0 P@ӟZ{�`�@ �NS��J�"8�݀�ccڜ�1lU��dU�"��n+9T��l���������ŵ�g���F�(�G|qXKR�ٍ�b:�S����N{֒[l�x���S�0Xaf9���g��R�E��h�x�oo��� �xU��~�� ��Q��;5��7r1�j�A���Z�Բ���dx%���]/�-����xC�f���{�Z0�8�Z�_B�w��Z�0����� &� ��F@�?Ʋ~�}��R�(�Y;�)Ꮓ�VH��l��Xt���^��TG �������T�� ��U�*�D ����f��Cq�;��8�+�V���H�����+-�q��)-�p���;g�&��P��(�ߚ���Л�SR���e��R�0GZ���n����q�����a+�>��;?����iR�V�楷c�3��f浧�h[$�8+��5&�rOq�z��5�;���I��9�ֹi�h%)2`7/�k �����c��-��*�V_>����A\rs�ҟݑ��#��9�zf����I��l�rFe����l�>'��@-���q�����9#s1���ֲqGDf[F��t#����b~��ؚ����(|�ǜ���XJL&^�PQ��[����d��X�sc��㓒G<�uT�Λ7���y�3�s�*�Sp9�����8�8犻m?t�z�\ovl�lE 8��֭C!���Ʋb���= �PJ �������hd�r={�G�f#PLc�P�f�C!�}y�J��3�����x���_� ��0=����u��K$V��[K|Ѹ� x��C�<��Y�?^k���2_4����.!;W�����C�e���VK}z_U�B��_��������9-uKC�;���S�+�mn�~V�8a_'��(�Ȗ�eS�p9�߁����@��KC�@?w�q2��Ӹ���r���,�*����w�~���a�*iQ����! �Gw��(`��tˈ�P�y4��}�H��z�NgO0�������ppv*���*h�E-��Ңep����� �[��I�~�:��� ?��r)�A�E>r6T����G�0 �{1�2~��KpP�9�M�O�����N�c-�:�u�����YHN��zX��~a��{����dT�t�L%;�˷9�`8��A$l܃��j�����䓎�� 2a�<T��T�\��U k��bE�r =�4�}�)�Ia��T�Dv��ʺ�r6(�p�O28��r9�u�p:Tq'�p?:��'f2drc�OS�j[k�%��\�LE*�r;�)%�rx��p��ܗ���ೞs$��{�O�@* ��Gjk��i��{�!�Ѧ���.6�rj)>\ay�B)RNI��nb�%��\��R�$.��+�<�R�YF6��T�9�)�`�J�q�I�x>��V��$��|�u�MQ�F��\� ��(���z-�U08�,y`3�i��^q�y�T�5���c�H3L�(c��PB���֦`���`��U9�Fⵙ�Y�d*L��b;ict���{Q*!<q�e�����14�s[Eq'�"�P7��W6����`����nI.A�ʩj� <��Z��ख�Z�=��^;ֵL�6Q�<�'5�E����13Z����#?L�_U|(���q�=�rt�d�J��GL���6�V���ь��{�I<���MFN�k�����c��#�ϊ�5��2��n����s�Wy��_J�`P�ě}��|Y�xoU��GP"����8�-�<y�j�y:m�����_j��N���Q��{�D�I�7Z�u�iT,��+˾$�E�&H�4� "�I� �_��^;�o�@�y#$g�5�x[�}����A�����~��*8x�~��+�4K�j�?ጾ!��0�6�Ej�����4�,���:c5GD��(�T;V�IhT`c�k�S��u%^�2�["ݱh��pz�OK�I�G|U5�U+����;pF{ �I؞��o9��ު����#��Tb���{b��YI"�@��YK�Jz�a�l��U*AQ�t����;�,sZ1iѠ�H�z���)Q�ҷ�r���7] V�|�}@\{ՅӢq��OO�Cu�C�ι�γ�<Ok��~�St� &�qi`�Ͽ4�\+(E :W;�4뉌i@�-��7�|Ay��5�V��~�^Joz�P�UI�Oo3EJM]���qu�s���ո|��u�?��_-�*u���O�Q�Bb��Nkٌ1K��"��l�V��Ѐ�E���6�o��H���W�0�n����y��n� N� =ӊ��c%/�2[�V��f�[MF(wʸ�x:�R���R\-y���G���霊�4��:uտ�s������z�k�*��Y�?��O4�v�H�x��ỻ)�e���Ҿ��u�-F=�*8�<�W�|E����yj =T]yFu��?a_�]��.�yj|�{������T�%H��H�H�]��+�D;�=+�OGS��5�4�|�6p���X��-�A��q���+b�I;�كϺ�xg�W� ��Ǜ*3��A��CI��g���~�A�^�գH�\P 9 �2|ܩ ��S��|��zz?.>��n�X��@��ǭ1��:�u�\�,��ۭD�K�'"�2�� 2���D���zwzH���Z��z�21��$ �4�j��Im��A?�H��~��{+������)�`�[��=)RG����{t�-�ԃK8�kb82q��Vb�lr�G�g,K]JX{������d������;|7��ZZ�8* ����F����:+�a��52iS)ڪI��w�?�oop�[1����_�e���VPFpZ�q9�* �$�����{m"��R6l�5���#]ԥ ��I^������X��T�ܯZ��x�������;���x�_�g�+,���(�o�Ʒp�Yԅ#��k���� ����y�<gھ��A����U��m����^\�3�_�����M{�<�Þ��5_��w������0�1]ٰ�q�t튭u�B��F+íB�Is�vm�9Hu���P������9�n_�HC�=��-4Y1���ָ�R��V�L���x�W�&�����cҴ��ОWٸ��%�^5�g�T��^���=#�8ܳ�Tq�s��p���J��2�U����1�_��}}�U%f��6h����s2(ry�j��s�6qҪb�%����:ջ; D�Eڧ���Y���L��ǧQ���$�Ι1P��C��ֲ�P�����v]CIӨ�s��q`�- �09Ʃ']��{�i<�ܩ��#1\����e��N��;���1���]�&wõ�9����3�`�s�T��PI�Np Uw܍��x��F��۸ǥw��9ٖć�����K|ߎ; ���������99�x"��N�O�l1�9���*I���֪$�& ��nޕ$m�=OaYJ7�B�rl��0b)y���G<����R����׃X��T��m1�9� ��+)@�$���V��0���zX|c���27 �����Y���]�y����i�LN9�U/M��q��N;��h���z8����O����������G�E6�z�+�8��E��S��xG�x��k��p�G���7���W�`?���_��?�C�f�+�<#�v�k�����E~Yß�1�}#dT����W��p���G!i��ƣ��߅Uu���1TG��E��>�K/�����QZC�b�-?�N���QY��������&�+J[�?��ޤo��O�E�B�O� 2.��R��} �4��}h���I�����T����Eb2���W�Ҋ+>���b?���)/>�������z�*��_�O���=���["�,]V����QEl�Jܒ��)��4QR���?�ҧo��E�1��Xjo�g��E�� o�_�0����w���'���QE}��Ȯ��x���ס��ş�.���:���E��o��_�ϥ�������*�-z���E͕�Or���J�����(��ko-�i>�:O�Ɗ*�Ģ��J�F��(���K7������Z(��$r��W�J�5����h�����֙�^��q?�����ȵ�n��QEx�A��:h�ϕ5��M���U�s����4Q_�a>�]o�������� n��c��h��a�:�2t_�/��i�����E݈�G.dz߁��>����~4Q_ W���z���������g/����E}e/ᣥnʷ�p�kS�~��+���p�1�����S���Q^�����B�A�����QYȸ�Mq��� Q_��4QS �����i��h��! |� )�h�� z������h���*�5yՏ��4QXϡ�"h:7Ҷ4/��_��tQ\uv;h|g���=����k�|)�#�t#E���_3�{ލ�~�������J(�0��-Ʒ��*���袷��.�m���G���h��?�*\���Ӡ�ޢ���H�?w�_�Ɗ+g�"��ֲ�~���Ep�����7}G�QED����� �����m��}7�E�S�p�?��UjO��_Ɗ+˯�Dx����9-s�CR��G����ٍW�R�O���~��o����,?��?�QEWQ-�GU��VOc�=I���O�� ���G�¦���H���xU��ק��h��u�C���ު����r��Ez�>��z�� |
| URL | http://zero.webappsecurity.com/resources/js/bootstrap.min.js |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | Access-Control-Allow-Origin: * |
| Request Header - size: 284 bytes. |
GET http://zero.webappsecurity.com/resources/js/bootstrap.min.js HTTP/1.1
Host: zero.webappsecurity.com User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0 Pragma: no-cache Cache-Control: no-cache Referer: http://zero.webappsecurity.com |
| Request Body - size: 0 bytes. |
|
| Response Header - size: 361 bytes. |
HTTP/1.1 200 OK
Date: Mon, 14 Mar 2022 07:13:42 GMT Server: Apache-Coyote/1.1 Access-Control-Allow-Origin: * Accept-Ranges: bytes ETag: W/"26898-1358437290000" Last-Modified: Thu, 17 Jan 2013 15:41:30 GMT Cache-Control: max-age=2678400 Expires: Thu, 14 Apr 2022 07:13:43 GMT Content-Type: application/javascript;charset=UTF-8 Content-Length: 26898 |
| Response Body - size: 26,898 bytes. |
/**
* Bootstrap.js by @fat & @mdo * plugins: bootstrap-transition.js, bootstrap-modal.js, bootstrap-dropdown.js, bootstrap-scrollspy.js, bootstrap-tab.js, bootstrap-tooltip.js, bootstrap-popover.js, bootstrap-affix.js, bootstrap-alert.js, bootstrap-button.js, bootstrap-collapse.js, bootstrap-carousel.js, bootstrap-typeahead.js * Copyright 2012 Twitter, Inc. * http://www.apache.org/licenses/LICENSE-2.0.txt */ !function(a){a(function(){a.support.transition=function(){var a=function(){var a=document.createElement("bootstrap"),b={WebkitTransition:"webkitTransitionEnd",MozTransition:"transitionend",OTransition:"oTransitionEnd otransitionend",transition:"transitionend"},c;for(c in b)if(a.style[c]!==undefined)return b[c]}();return a&&{end:a}}()})}(window.jQuery),!function(a){var b=function(b,c){this.options=c,this.$element=a(b).delegate('[data-dismiss="modal"]',"click.dismiss.modal",a.proxy(this.hide,this)),this.options.remote&&this.$element.find(".modal-body").load(this.options.remote)};b.prototype={constructor:b,toggle:function(){return this[this.isShown?"hide":"show"]()},show:function(){var b=this,c=a.Event("show");this.$element.trigger(c);if(this.isShown||c.isDefaultPrevented())return;this.isShown=!0,this.escape(),this.backdrop(function(){var c=a.support.transition&&b.$element.hasClass("fade");b.$element.parent().length||b.$element.appendTo(document.body),b.$element.show(),c&&b.$element[0].offsetWidth,b.$element.addClass("in").attr("aria-hidden",!1),b.enforceFocus(),c?b.$element.one(a.support.transition.end,function(){b.$element.focus().trigger("shown")}):b.$element.focus().trigger("shown")})},hide:function(b){b&&b.preventDefault();var c=this;b=a.Event("hide"),this.$element.trigger(b);if(!this.isShown||b.isDefaultPrevented())return;this.isShown=!1,this.escape(),a(document).off("focusin.modal"),this.$element.removeClass("in").attr("aria-hidden",!0),a.support.transition&&this.$element.hasClass("fade")?this.hideWithTransition():this.hideModal()},enforceFocus:function(){var b=this;a(document).on("focusin.modal",function(a){b.$element[0]!==a.target&&!b.$element.has(a.target).length&&b.$element.focus()})},escape:function(){var a=this;this.isShown&&this.options.keyboard?this.$element.on("keyup.dismiss.modal",function(b){b.which==27&&a.hide()}):this.isShown||this.$element.off("keyup.dismiss.modal")},hideWithTransition:function(){var b=this,c=setTimeout(function(){b.$element.off(a.support.transition.end),b.hideModal()},500);this.$element.one(a.support.transition.end,function(){clearTimeout(c),b.hideModal()})},hideModal:function(a){this.$element.hide().trigger("hidden"),this.backdrop()},removeBackdrop:function(){this.$backdrop.remove(),this.$backdrop=null},backdrop:function(b){var c=this,d=this.$element.hasClass("fade")?"fade":"";if(this.isShown&&this.options.backdrop){var e=a.support.transition&&d;this.$backdrop=a('<div class="modal-backdrop '+d+'" />').appendTo(document.body),this.$backdrop.click(this.options.backdrop=="static"?a.proxy(this.$element[0].focus,this.$element[0]):a.proxy(this.hide,this)),e&&this.$backdrop[0].offsetWidth,this.$backdrop.addClass("in"),e?this.$backdrop.one(a.support.transition.end,b):b()}else!this.isShown&&this.$backdrop?(this.$backdrop.removeClass("in"),a.support.transition&&this.$element.hasClass("fade")?this.$backdrop.one(a.support.transition.end,a.proxy(this.removeBackdrop,this)):this.removeBackdrop()):b&&b()}};var c=a.fn.modal;a.fn.modal=function(c){return this.each(function(){var d=a(this),e=d.data("modal"),f=a.extend({},a.fn.modal.defaults,d.data(),typeof c=="object"&&c);e||d.data("modal",e=new b(this,f)),typeof c=="string"?e[c]():f.show&&e.show()})},a.fn.modal.defaults={backdrop:!0,keyboard:!0,show:!0},a.fn.modal.Constructor=b,a.fn.modal.noConflict=function(){return a.fn.modal=c,this},a(document).on("click.modal.data-api",'[data-toggle="modal"]',function(b){var c=a(this),d=c.attr("href"),e=a(c.attr("data-target")||d&&d.replace(/.*(?=#[^\s]+$)/,"")),f=e.data("modal")?"toggle":a.extend({remote:!/#/.test(d)&&d},e.data(),c.data());b.preventDefault(),e.modal(f).one("hide",function(){c.focus()})})}(window.jQuery),!function(a){function d(){a(b).each(function(){e(a(this)).removeClass("open")})}function e(b){var c=b.attr("data-target"),d;return c||(c=b.attr("href"),c=c&&/#/.test(c)&&c.replace(/.*(?=#[^\s]*$)/,"")),d=a(c),d.length||(d=b.parent()),d}var b="[data-toggle=dropdown]",c=function(b){var c=a(b).on("click.dropdown.data-api",this.toggle);a("html").on("click.dropdown.data-api",function(){c.parent().removeClass("open")})};c.prototype={constructor:c,toggle:function(b){var c=a(this),f,g;if(c.is(".disabled, :disabled"))return;return f=e(c),g=f.hasClass("open"),d(),g||f.toggleClass("open"),c.focus(),!1},keydown:function(b){var c,d,f,g,h,i;if(!/(38|40|27)/.test(b.keyCode))return;c=a(this),b.preventDefault(),b.stopPropagation();if(c.is(".disabled, :disabled"))return;g=e(c),h=g.hasClass("open");if(!h||h&&b.keyCode==27)return c.click();d=a("[role=menu] li:not(.divider):visible a",g);if(!d.length)return;i=d.index(d.filter(":focus")),b.keyCode==38&&i>0&&i--,b.keyCode==40&&i<d.length-1&&i++,~i||(i=0),d.eq(i).focus()}};var f=a.fn.dropdown;a.fn.dropdown=function(b){return this.each(function(){var d=a(this),e=d.data("dropdown");e||d.data("dropdown",e=new c(this)),typeof b=="string"&&e[b].call(d)})},a.fn.dropdown.Constructor=c,a.fn.dropdown.noConflict=function(){return a.fn.dropdown=f,this},a(document).on("click.dropdown.data-api touchstart.dropdown.data-api",d).on("click.dropdown touchstart.dropdown.data-api",".dropdown form",function(a){a.stopPropagation()}).on("touchstart.dropdown.data-api",".dropdown-menu",function(a){a.stopPropagation()}).on("click.dropdown.data-api touchstart.dropdown.data-api",b,c.prototype.toggle).on("keydown.dropdown.data-api touchstart.dropdown.data-api",b+", [role=menu]",c.prototype.keydown)}(window.jQuery),!function(a){function b(b,c){var d=a.proxy(this.process,this),e=a(b).is("body")?a(window):a(b),f;this.options=a.extend({},a.fn.scrollspy.defaults,c),this.$scrollElement=e.on("scroll.scroll-spy.data-api",d),this.selector=(this.options.target||(f=a(b).attr("href"))&&f.replace(/.*(?=#[^\s]+$)/,"")||"")+" .nav li > a",this.$body=a("body"),this.refresh(),this.process()}b.prototype={constructor:b,refresh:function(){var b=this,c;this.offsets=a([]),this.targets=a([]),c=this.$body.find(this.selector).map(function(){var c=a(this),d=c.data("target")||c.attr("href"),e=/^#\w/.test(d)&&a(d);return e&&e.length&&[[e.position().top+b.$scrollElement.scrollTop(),d]]||null}).sort(function(a,b){return a[0]-b[0]}).each(function(){b.offsets.push(this[0]),b.targets.push(this[1])})},process:function(){var a=this.$scrollElement.scrollTop()+this.options.offset,b=this.$scrollElement[0].scrollHeight||this.$body[0].scrollHeight,c=b-this.$scrollElement.height(),d=this.offsets,e=this.targets,f=this.activeTarget,g;if(a>=c)return f!=(g=e.last()[0])&&this.activate(g);for(g=d.length;g--;)f!=e[g]&&a>=d[g]&&(!d[g+1]||a<=d[g+1])&&this.activate(e[g])},activate:function(b){var c,d;this.activeTarget=b,a(this.selector).parent(".active").removeClass("active"),d=this.selector+'[data-target="'+b+'"],'+this.selector+'[href="'+b+'"]',c=a(d).parent("li").addClass("active"),c.parent(".dropdown-menu").length&&(c=c.closest("li.dropdown").addClass("active")),c.trigger("activate")}};var c=a.fn.scrollspy;a.fn.scrollspy=function(c){return this.each(function(){var d=a(this),e=d.data("scrollspy"),f=typeof c=="object"&&c;e||d.data("scrollspy",e=new b(this,f)),typeof c=="string"&&e[c]()})},a.fn.scrollspy.Constructor=b,a.fn.scrollspy.defaults={offset:10},a.fn.scrollspy.noConflict=function(){return a.fn.scrollspy=c,this},a(window).on("load",function(){a('[data-spy="scroll"]').each(function(){var b=a(this);b.scrollspy(b.data())})})}(window.jQuery),!function(a){var b=function(b){this.element=a(b)};b.prototype={constructor:b,show:function(){var b=this.element,c=b.closest("ul:not(.dropdown-menu)"),d=b.attr("data-target"),e,f,g;d||(d=b.attr("href"),d=d&&d.replace(/.*(?=#[^\s]*$)/,""));if(b.parent("li").hasClass("active"))return;e=c.find(".active:last a")[0],g=a.Event("show",{relatedTarget:e}),b.trigger(g);if(g.isDefaultPrevented())return;f=a(d),this.activate(b.parent("li"),c),this.activate(f,f.parent(),function(){b.trigger({type:"shown",relatedTarget:e})})},activate:function(b,c,d){function g(){e.removeClass("active").find("> .dropdown-menu > .active").removeClass("active"),b.addClass("active"),f?(b[0].offsetWidth,b.addClass("in")):b.removeClass("fade"),b.parent(".dropdown-menu")&&b.closest("li.dropdown").addClass("active"),d&&d()}var e=c.find("> .active"),f=d&&a.support.transition&&e.hasClass("fade");f?e.one(a.support.transition.end,g):g(),e.removeClass("in")}};var c=a.fn.tab;a.fn.tab=function(c){return this.each(function(){var d=a(this),e=d.data("tab");e||d.data("tab",e=new b(this)),typeof c=="string"&&e[c]()})},a.fn.tab.Constructor=b,a.fn.tab.noConflict=function(){return a.fn.tab=c,this},a(document).on("click.tab.data-api",'[data-toggle="tab"], [data-toggle="pill"]',function(b){b.preventDefault(),a(this).tab("show")})}(window.jQuery),!function(a){var b=function(a,b){this.init("tooltip",a,b)};b.prototype={constructor:b,init:function(b,c,d){var e,f;this.type=b,this.$element=a(c),this.options=this.getOptions(d),this.enabled=!0,this.options.trigger=="click"?this.$element.on("click."+this.type,this.options.selector,a.proxy(this.toggle,this)):this.options.trigger!="manual"&&(e=this.options.trigger=="hover"?"mouseenter":"focus",f=this.options.trigger=="hover"?"mouseleave":"blur",this.$element.on(e+"."+this.type,this.options.selector,a.proxy(this.enter,this)),this.$element.on(f+"."+this.type,this.options.selector,a.proxy(this.leave,this))),this.options.selector?this._options=a.extend({},this.options,{trigger:"manual",selector:""}):this.fixTitle()},getOptions:function(b){return b=a.extend({},a.fn[this.type].defaults,b,this.$element.data()),b.delay&&typeof b.delay=="number"&&(b.delay={show:b.delay,hide:b.delay}),b},enter:function(b){var c=a(b.currentTarget)[this.type](this._options).data(this.type);if(!c.options.delay||!c.options.delay.show)return c.show();clearTimeout(this.timeout),c.hoverState="in",this.timeout=setTimeout(function(){c.hoverState=="in"&&c.show()},c.options.delay.show)},leave:function(b){var c=a(b.currentTarget)[this.type](this._options).data(this.type);this.timeout&&clearTimeout(this.timeout);if(!c.options.delay||!c.options.delay.hide)return c.hide();c.hoverState="out",this.timeout=setTimeout(function(){c.hoverState=="out"&&c.hide()},c.options.delay.hide)},show:function(){var a,b,c,d,e,f,g;if(this.hasContent()&&this.enabled){a=this.tip(),this.setContent(),this.options.animation&&a.addClass("fade"),f=typeof this.options.placement=="function"?this.options.placement.call(this,a[0],this.$element[0]):this.options.placement,b=/in/.test(f),a.detach().css({top:0,left:0,display:"block"}).insertAfter(this.$element),c=this.getPosition(b),d=a[0].offsetWidth,e=a[0].offsetHeight;switch(b?f.split(" ")[1]:f){case"bottom":g={top:c.top+c.height,left:c.left+c.width/2-d/2};break;case"top":g={top:c.top-e,left:c.left+c.width/2-d/2};break;case"left":g={top:c.top+c.height/2-e/2,left:c.left-d};break;case"right":g={top:c.top+c.height/2-e/2,left:c.left+c.width}}a.offset(g).addClass(f).addClass("in")}},setContent:function(){var a=this.tip(),b=this.getTitle();a.find(".tooltip-inner")[this.options.html?"html":"text"](b),a.removeClass("fade in top bottom left right")},hide:function(){function d(){var b=setTimeout(function(){c.off(a.support.transition.end).detach()},500);c.one(a.support.transition.end,function(){clearTimeout(b),c.detach()})}var b=this,c=this.tip();return c.removeClass("in"),a.support.transition&&this.$tip.hasClass("fade")?d():c.detach(),this},fixTitle:function(){var a=this.$element;(a.attr("title")||typeof a.attr("data-original-title")!="string")&&a.attr("data-original-title",a.attr("title")||"").removeAttr("title")},hasContent:function(){return this.getTitle()},getPosition:function(b){return a.extend({},b?{top:0,left:0}:this.$element.offset(),{width:this.$element[0].offsetWidth,height:this.$element[0].offsetHeight})},getTitle:function(){var a,b=this.$element,c=this.options;return a=b.attr("data-original-title")||(typeof c.title=="function"?c.title.call(b[0]):c.title),a},tip:function(){return this.$tip=this.$tip||a(this.options.template)},validate:function(){this.$element[0].parentNode||(this.hide(),this.$element=null,this.options=null)},enable:function(){this.enabled=!0},disable:function(){this.enabled=!1},toggleEnabled:function(){this.enabled=!this.enabled},toggle:function(b){var c=a(b.currentTarget)[this.type](this._options).data(this.type);c[c.tip().hasClass("in")?"hide":"show"]()},destroy:function(){this.hide().$element.off("."+this.type).removeData(this.type)}};var c=a.fn.tooltip;a.fn.tooltip=function(c){return this.each(function(){var d=a(this),e=d.data("tooltip"),f=typeof c=="object"&&c;e||d.data("tooltip",e=new b(this,f)),typeof c=="string"&&e[c]()})},a.fn.tooltip.Constructor=b,a.fn.tooltip.defaults={animation:!0,placement:"top",selector:!1,template:'<div class="tooltip"><div class="tooltip-arrow"></div><div class="tooltip-inner"></div></div>',trigger:"hover",title:"",delay:0,html:!1},a.fn.tooltip.noConflict=function(){return a.fn.tooltip=c,this}}(window.jQuery),!function(a){var b=function(a,b){this.init("popover",a,b)};b.prototype=a.extend({},a.fn.tooltip.Constructor.prototype,{constructor:b,setContent:function(){var a=this.tip(),b=this.getTitle(),c=this.getContent();a.find(".popover-title")[this.options.html?"html":"text"](b),a.find(".popover-content")[this.options.html?"html":"text"](c),a.removeClass("fade top bottom left right in")},hasContent:function(){return this.getTitle()||this.getContent()},getContent:function(){var a,b=this.$element,c=this.options;return a=b.attr("data-content")||(typeof c.content=="function"?c.content.call(b[0]):c.content),a},tip:function(){return this.$tip||(this.$tip=a(this.options.template)),this.$tip},destroy:function(){this.hide().$element.off("."+this.type).removeData(this.type)}});var c=a.fn.popover;a.fn.popover=function(c){return this.each(function(){var d=a(this),e=d.data("popover"),f=typeof c=="object"&&c;e||d.data("popover",e=new b(this,f)),typeof c=="string"&&e[c]()})},a.fn.popover.Constructor=b,a.fn.popover.defaults=a.extend({},a.fn.tooltip.defaults,{placement:"right",trigger:"click",content:"",template:'<div class="popover"><div class="arrow"></div><div class="popover-inner"><h3 class="popover-title"></h3><div class="popover-content"></div></div></div>'}),a.fn.popover.noConflict=function(){return a.fn.popover=c,this}}(window.jQuery),!function(a){var b=function(b,c){this.options=a.extend({},a.fn.affix.defaults,c),this.$window=a(window).on("scroll.affix.data-api",a.proxy(this.checkPosition,this)).on("click.affix.data-api",a.proxy(function(){setTimeout(a.proxy(this.checkPosition,this),1)},this)),this.$element=a(b),this.checkPosition()};b.prototype.checkPosition=function(){if(!this.$element.is(":visible"))return;var b=a(document).height(),c=this.$window.scrollTop(),d=this.$element.offset(),e=this.options.offset,f=e.bottom,g=e.top,h="affix affix-top affix-bottom",i;typeof e!="object"&&(f=g=e),typeof g=="function"&&(g=e.top()),typeof f=="function"&&(f=e.bottom()),i=this.unpin!=null&&c+this.unpin<=d.top?!1:f!=null&&d.top+this.$element.height()>=b-f?"bottom":g!=null&&c<=g?"top":!1;if(this.affixed===i)return;this.affixed=i,this.unpin=i=="bottom"?d.top-c:null,this.$element.removeClass(h).addClass("affix"+(i?"-"+i:""))};var c=a.fn.affix;a.fn.affix=function(c){return this.each(function(){var d=a(this),e=d.data("affix"),f=typeof c=="object"&&c;e||d.data("affix",e=new b(this,f)),typeof c=="string"&&e[c]()})},a.fn.affix.Constructor=b,a.fn.affix.defaults={offset:0},a.fn.affix.noConflict=function(){return a.fn.affix=c,this},a(window).on("load",function(){a('[data-spy="affix"]').each(function(){var b=a(this),c=b.data();c.offset=c.offset||{},c.offsetBottom&&(c.offset.bottom=c.offsetBottom),c.offsetTop&&(c.offset.top=c.offsetTop),b.affix(c)})})}(window.jQuery),!function(a){var b='[data-dismiss="alert"]',c=function(c){a(c).on("click",b,this.close)};c.prototype.close=function(b){function f(){e.trigger("closed").remove()}var c=a(this),d=c.attr("data-target"),e;d||(d=c.attr("href"),d=d&&d.replace(/.*(?=#[^\s]*$)/,"")),e=a(d),b&&b.preventDefault(),e.length||(e=c.hasClass("alert")?c:c.parent()),e.trigger(b=a.Event("close"));if(b.isDefaultPrevented())return;e.removeClass("in"),a.support.transition&&e.hasClass("fade")?e.on(a.support.transition.end,f):f()};var d=a.fn.alert;a.fn.alert=function(b){return this.each(function(){var d=a(this),e=d.data("alert");e||d.data("alert",e=new c(this)),typeof b=="string"&&e[b].call(d)})},a.fn.alert.Constructor=c,a.fn.alert.noConflict=function(){return a.fn.alert=d,this},a(document).on("click.alert.data-api",b,c.prototype.close)}(window.jQuery),!function(a){var b=function(b,c){this.$element=a(b),this.options=a.extend({},a.fn.button.defaults,c)};b.prototype.setState=function(a){var b="disabled",c=this.$element,d=c.data(),e=c.is("input")?"val":"html";a+="Text",d.resetText||c.data("resetText",c[e]()),c[e](d[a]||this.options[a]),setTimeout(function(){a=="loadingText"?c.addClass(b).attr(b,b):c.removeClass(b).removeAttr(b)},0)},b.prototype.toggle=function(){var a=this.$element.closest('[data-toggle="buttons-radio"]');a&&a.find(".active").removeClass("active"),this.$element.toggleClass("active")};var c=a.fn.button;a.fn.button=function(c){return this.each(function(){var d=a(this),e=d.data("button"),f=typeof c=="object"&&c;e||d.data("button",e=new b(this,f)),c=="toggle"?e.toggle():c&&e.setState(c)})},a.fn.button.defaults={loadingText:"loading..."},a.fn.button.Constructor=b,a.fn.button.noConflict=function(){return a.fn.button=c,this},a(document).on("click.button.data-api","[data-toggle^=button]",function(b){var c=a(b.target);c.hasClass("btn")||(c=c.closest(".btn")),c.button("toggle")})}(window.jQuery),!function(a){var b=function(b,c){this.$element=a(b),this.options=a.extend({},a.fn.collapse.defaults,c),this.options.parent&&(this.$parent=a(this.options.parent)),this.options.toggle&&this.toggle()};b.prototype={constructor:b,dimension:function(){var a=this.$element.hasClass("width");return a?"width":"height"},show:function(){var b,c,d,e;if(this.transitioning)return;b=this.dimension(),c=a.camelCase(["scroll",b].join("-")),d=this.$parent&&this.$parent.find("> .accordion-group > .in");if(d&&d.length){e=d.data("collapse");if(e&&e.transitioning)return;d.collapse("hide"),e||d.data("collapse",null)}this.$element[b](0),this.transition("addClass",a.Event("show"),"shown"),a.support.transition&&this.$element[b](this.$element[0][c])},hide:function(){var b;if(this.transitioning)return;b=this.dimension(),this.reset(this.$element[b]()),this.transition("removeClass",a.Event("hide"),"hidden"),this.$element[b](0)},reset:function(a){var b=this.dimension();return this.$element.removeClass("collapse")[b](a||"auto")[0].offsetWidth,this.$element[a!==null?"addClass":"removeClass"]("collapse"),this},transition:function(b,c,d){var e=this,f=function(){c.type=="show"&&e.reset(),e.transitioning=0,e.$element.trigger(d)};this.$element.trigger(c);if(c.isDefaultPrevented())return;this.transitioning=1,this.$element[b]("in"),a.support.transition&&this.$element.hasClass("collapse")?this.$element.one(a.support.transition.end,f):f()},toggle:function(){this[this.$element.hasClass("in")?"hide":"show"]()}};var c=a.fn.collapse;a.fn.collapse=function(c){return this.each(function(){var d=a(this),e=d.data("collapse"),f=typeof c=="object"&&c;e||d.data("collapse",e=new b(this,f)),typeof c=="string"&&e[c]()})},a.fn.collapse.defaults={toggle:!0},a.fn.collapse.Constructor=b,a.fn.collapse.noConflict=function(){return a.fn.collapse=c,this},a(document).on("click.collapse.data-api","[data-toggle=collapse]",function(b){var c=a(this),d,e=c.attr("data-target")||b.preventDefault()||(d=c.attr("href"))&&d.replace(/.*(?=#[^\s]+$)/,""),f=a(e).data("collapse")?"toggle":c.data();c[a(e).hasClass("in")?"addClass":"removeClass"]("collapsed"),a(e).collapse(f)})}(window.jQuery),!function(a){var b=function(b,c){this.$element=a(b),this.options=c,this.options.pause=="hover"&&this.$element.on("mouseenter",a.proxy(this.pause,this)).on("mouseleave",a.proxy(this.cycle,this))};b.prototype={cycle:function(b){return b||(this.paused=!1),this.options.interval&&!this.paused&&(this.interval=setInterval(a.proxy(this.next,this),this.options.interval)),this},to:function(b){var c=this.$element.find(".item.active"),d=c.parent().children(),e=d.index(c),f=this;if(b>d.length-1||b<0)return;return this.sliding?this.$element.one("slid",function(){f.to(b)}):e==b?this.pause().cycle():this.slide(b>e?"next":"prev",a(d[b]))},pause:function(b){return b||(this.paused=!0),this.$element.find(".next, .prev").length&&a.support.transition.end&&(this.$element.trigger(a.support.transition.end),this.cycle()),clearInterval(this.interval),this.interval=null,this},next:function(){if(this.sliding)return;return this.slide("next")},prev:function(){if(this.sliding)return;return this.slide("prev")},slide:function(b,c){var d=this.$element.find(".item.active"),e=c||d[b](),f=this.interval,g=b=="next"?"left":"right",h=b=="next"?"first":"last",i=this,j;this.sliding=!0,f&&this.pause(),e=e.length?e:this.$element.find(".item")[h](),j=a.Event("slide",{relatedTarget:e[0]});if(e.hasClass("active"))return;if(a.support.transition&&this.$element.hasClass("slide")){this.$element.trigger(j);if(j.isDefaultPrevented())return;e.addClass(b),e[0].offsetWidth,d.addClass(g),e.addClass(g),this.$element.one(a.support.transition.end,function(){e.removeClass([b,g].join(" ")).addClass("active"),d.removeClass(["active",g].join(" ")),i.sliding=!1,setTimeout(function(){i.$element.trigger("slid")},0)})}else{this.$element.trigger(j);if(j.isDefaultPrevented())return;d.removeClass("active"),e.addClass("active"),this.sliding=!1,this.$element.trigger("slid")}return f&&this.cycle(),this}};var c=a.fn.carousel;a.fn.carousel=function(c){return this.each(function(){var d=a(this),e=d.data("carousel"),f=a.extend({},a.fn.carousel.defaults,typeof c=="object"&&c),g=typeof c=="string"?c:f.slide;e||d.data("carousel",e=new b(this,f)),typeof c=="number"?e.to(c):g?e[g]():f.interval&&e.cycle()})},a.fn.carousel.defaults={interval:5e3,pause:"hover"},a.fn.carousel.Constructor=b,a.fn.carousel.noConflict=function(){return a.fn.carousel=c,this},a(document).on("click.carousel.data-api","[data-slide]",function(b){var c=a(this),d,e=a(c.attr("data-target")||(d=c.attr("href"))&&d.replace(/.*(?=#[^\s]+$)/,"")),f=a.extend({},e.data(),c.data());e.carousel(f),b.preventDefault()})}(window.jQuery),!function(a){var b=function(b,c){this.$element=a(b),this.options=a.extend({},a.fn.typeahead.defaults,c),this.matcher=this.options.matcher||this.matcher,this.sorter=this.options.sorter||this.sorter,this.highlighter=this.options.highlighter||this.highlighter,this.updater=this.options.updater||this.updater,this.source=this.options.source,this.$menu=a(this.options.menu),this.shown=!1,this.listen()};b.prototype={constructor:b,select:function(){var a=this.$menu.find(".active").attr("data-value");return this.$element.val(this.updater(a)).change(),this.hide()},updater:function(a){return a},show:function(){var b=a.extend({},this.$element.position(),{height:this.$element[0].offsetHeight});return this.$menu.insertAfter(this.$element).css({top:b.top+b.height,left:b.left}).show(),this.shown=!0,this},hide:function(){return this.$menu.hide(),this.shown=!1,this},lookup:function(b){var c;return this.query=this.$element.val(),!this.query||this.query.length<this.options.minLength?this.shown?this.hide():this:(c=a.isFunction(this.source)?this.source(this.query,a.proxy(this.process,this)):this.source,c?this.process(c):this)},process:function(b){var c=this;return b=a.grep(b,function(a){return c.matcher(a)}),b=this.sorter(b),b.length?this.render(b.slice(0,this.options.items)).show():this.shown?this.hide():this},matcher:function(a){return~a.toLowerCase().indexOf(this.query.toLowerCase())},sorter:function(a){var b=[],c=[],d=[],e;while(e=a.shift())e.toLowerCase().indexOf(this.query.toLowerCase())?~e.indexOf(this.query)?c.push(e):d.push(e):b.push(e);return b.concat(c,d)},highlighter:function(a){var b=this.query.replace(/[\-\[\]{}()*+?.,\\\^$|#\s]/g,"\\$&");return a.replace(new RegExp("("+b+")","ig"),function(a,b){return"<strong>"+b+"</strong>"})},render:function(b){var c=this;return b=a(b).map(function(b,d){return b=a(c.options.item).attr("data-value",d),b.find("a").html(c.highlighter(d)),b[0]}),b.first().addClass("active"),this.$menu.html(b),this},next:function(b){var c=this.$menu.find(".active").removeClass("active"),d=c.next();d.length||(d=a(this.$menu.find("li")[0])),d.addClass("active")},prev:function(a){var b=this.$menu.find(".active").removeClass("active"),c=b.prev();c.length||(c=this.$menu.find("li").last()),c.addClass("active")},listen:function(){this.$element.on("blur",a.proxy(this.blur,this)).on("keypress",a.proxy(this.keypress,this)).on("keyup",a.proxy(this.keyup,this)),this.eventSupported("keydown")&&this.$element.on("keydown",a.proxy(this.keydown,this)),this.$menu.on("click",a.proxy(this.click,this)).on("mouseenter","li",a.proxy(this.mouseenter,this))},eventSupported:function(a){var b=a in this.$element;return b||(this.$element.setAttribute(a,"return;"),b=typeof this.$element[a]=="function"),b},move:function(a){if(!this.shown)return;switch(a.keyCode){case 9:case 13:case 27:a.preventDefault();break;case 38:a.preventDefault(),this.prev();break;case 40:a.preventDefault(),this.next()}a.stopPropagation()},keydown:function(b){this.suppressKeyPressRepeat=~a.inArray(b.keyCode,[40,38,9,13,27]),this.move(b)},keypress:function(a){if(this.suppressKeyPressRepeat)return;this.move(a)},keyup:function(a){switch(a.keyCode){case 40:case 38:case 16:case 17:case 18:break;case 9:case 13:if(!this.shown)return;this.select();break;case 27:if(!this.shown)return;this.hide();break;default:this.lookup()}a.stopPropagation(),a.preventDefault()},blur:function(a){var b=this;setTimeout(function(){b.hide()},150)},click:function(a){a.stopPropagation(),a.preventDefault(),this.select()},mouseenter:function(b){this.$menu.find(".active").removeClass("active"),a(b.currentTarget).addClass("active")}};var c=a.fn.typeahead;a.fn.typeahead=function(c){return this.each(function(){var d=a(this),e=d.data("typeahead"),f=typeof c=="object"&&c;e||d.data("typeahead",e=new b(this,f)),typeof c=="string"&&e[c]()})},a.fn.typeahead.defaults={source:[],items:8,menu:'<ul class="typeahead dropdown-menu"></ul>',item:'<li><a href="#"></a></li>',minLength:1},a.fn.typeahead.Constructor=b,a.fn.typeahead.noConflict=function(){return a.fn.typeahead=c,this},a(document).on("focus.typeahead.data-api",'[data-provide="typeahead"]',function(b){var c=a(this);if(c.data("typeahead"))return;b.preventDefault(),c.typeahead(c.data())})}(window.jQuery) |
| URL | http://zero.webappsecurity.com/resources/js/jquery-1.8.2.min.js |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | Access-Control-Allow-Origin: * |
| Request Header - size: 287 bytes. |
GET http://zero.webappsecurity.com/resources/js/jquery-1.8.2.min.js HTTP/1.1
Host: zero.webappsecurity.com User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0 Pragma: no-cache Cache-Control: no-cache Referer: http://zero.webappsecurity.com |
| Request Body - size: 0 bytes. |
|
| Response Header - size: 361 bytes. |
HTTP/1.1 200 OK
Date: Mon, 14 Mar 2022 07:13:42 GMT Server: Apache-Coyote/1.1 Access-Control-Allow-Origin: * Accept-Ranges: bytes ETag: W/"93436-1358437290000" Last-Modified: Thu, 17 Jan 2013 15:41:30 GMT Cache-Control: max-age=2678400 Expires: Thu, 14 Apr 2022 07:13:43 GMT Content-Type: application/javascript;charset=UTF-8 Content-Length: 93436 |
| Response Body - size: 93,436 bytes. |
/*! jQuery v1.8.2 jquery.com | jquery.org/license */
(function(a,b){function G(a){var b=F[a]={};return p.each(a.split(s),function(a,c){b[c]=!0}),b}function J(a,c,d){if(d===b&&a.nodeType===1){var e="data-"+c.replace(I,"-$1").toLowerCase();d=a.getAttribute(e);if(typeof d=="string"){try{d=d==="true"?!0:d==="false"?!1:d==="null"?null:+d+""===d?+d:H.test(d)?p.parseJSON(d):d}catch(f){}p.data(a,c,d)}else d=b}return d}function K(a){var b;for(b in a){if(b==="data"&&p.isEmptyObject(a[b]))continue;if(b!=="toJSON")return!1}return!0}function ba(){return!1}function bb(){return!0}function bh(a){return!a||!a.parentNode||a.parentNode.nodeType===11}function bi(a,b){do a=a[b];while(a&&a.nodeType!==1);return a}function bj(a,b,c){b=b||0;if(p.isFunction(b))return p.grep(a,function(a,d){var e=!!b.call(a,d,a);return e===c});if(b.nodeType)return p.grep(a,function(a,d){return a===b===c});if(typeof b=="string"){var d=p.grep(a,function(a){return a.nodeType===1});if(be.test(b))return p.filter(b,d,!c);b=p.filter(b,d)}return p.grep(a,function(a,d){return p.inArray(a,b)>=0===c})}function bk(a){var b=bl.split("|"),c=a.createDocumentFragment();if(c.createElement)while(b.length)c.createElement(b.pop());return c}function bC(a,b){return a.getElementsByTagName(b)[0]||a.appendChild(a.ownerDocument.createElement(b))}function bD(a,b){if(b.nodeType!==1||!p.hasData(a))return;var c,d,e,f=p._data(a),g=p._data(b,f),h=f.events;if(h){delete g.handle,g.events={};for(c in h)for(d=0,e=h[c].length;d<e;d++)p.event.add(b,c,h[c][d])}g.data&&(g.data=p.extend({},g.data))}function bE(a,b){var c;if(b.nodeType!==1)return;b.clearAttributes&&b.clearAttributes(),b.mergeAttributes&&b.mergeAttributes(a),c=b.nodeName.toLowerCase(),c==="object"?(b.parentNode&&(b.outerHTML=a.outerHTML),p.support.html5Clone&&a.innerHTML&&!p.trim(b.innerHTML)&&(b.innerHTML=a.innerHTML)):c==="input"&&bv.test(a.type)?(b.defaultChecked=b.checked=a.checked,b.value!==a.value&&(b.value=a.value)):c==="option"?b.selected=a.defaultSelected:c==="input"||c==="textarea"?b.defaultValue=a.defaultValue:c==="script"&&b.text!==a.text&&(b.text=a.text),b.removeAttribute(p.expando)}function bF(a){return typeof a.getElementsByTagName!="undefined"?a.getElementsByTagName("*"):typeof a.querySelectorAll!="undefined"?a.querySelectorAll("*"):[]}function bG(a){bv.test(a.type)&&(a.defaultChecked=a.checked)}function bY(a,b){if(b in a)return b;var c=b.charAt(0).toUpperCase()+b.slice(1),d=b,e=bW.length;while(e--){b=bW[e]+c;if(b in a)return b}return d}function bZ(a,b){return a=b||a,p.css(a,"display")==="none"||!p.contains(a.ownerDocument,a)}function b$(a,b){var c,d,e=[],f=0,g=a.length;for(;f<g;f++){c=a[f];if(!c.style)continue;e[f]=p._data(c,"olddisplay"),b?(!e[f]&&c.style.display==="none"&&(c.style.display=""),c.style.display===""&&bZ(c)&&(e[f]=p._data(c,"olddisplay",cc(c.nodeName)))):(d=bH(c,"display"),!e[f]&&d!=="none"&&p._data(c,"olddisplay",d))}for(f=0;f<g;f++){c=a[f];if(!c.style)continue;if(!b||c.style.display==="none"||c.style.display==="")c.style.display=b?e[f]||"":"none"}return a}function b_(a,b,c){var d=bP.exec(b);return d?Math.max(0,d[1]-(c||0))+(d[2]||"px"):b}function ca(a,b,c,d){var e=c===(d?"border":"content")?4:b==="width"?1:0,f=0;for(;e<4;e+=2)c==="margin"&&(f+=p.css(a,c+bV[e],!0)),d?(c==="content"&&(f-=parseFloat(bH(a,"padding"+bV[e]))||0),c!=="margin"&&(f-=parseFloat(bH(a,"border"+bV[e]+"Width"))||0)):(f+=parseFloat(bH(a,"padding"+bV[e]))||0,c!=="padding"&&(f+=parseFloat(bH(a,"border"+bV[e]+"Width"))||0));return f}function cb(a,b,c){var d=b==="width"?a.offsetWidth:a.offsetHeight,e=!0,f=p.support.boxSizing&&p.css(a,"boxSizing")==="border-box";if(d<=0||d==null){d=bH(a,b);if(d<0||d==null)d=a.style[b];if(bQ.test(d))return d;e=f&&(p.support.boxSizingReliable||d===a.style[b]),d=parseFloat(d)||0}return d+ca(a,b,c||(f?"border":"content"),e)+"px"}function cc(a){if(bS[a])return bS[a];var b=p("<"+a+">").appendTo(e.body),c=b.css("display");b.remove();if(c==="none"||c===""){bI=e.body.appendChild(bI||p.extend(e.createElement("iframe"),{frameBorder:0,width:0,height:0}));if(!bJ||!bI.createElement)bJ=(bI.contentWindow||bI.contentDocument).document,bJ.write("<!doctype html><html><body>"),bJ.close();b=bJ.body.appendChild(bJ.createElement(a)),c=bH(b,"display"),e.body.removeChild(bI)}return bS[a]=c,c}function ci(a,b,c,d){var e;if(p.isArray(b))p.each(b,function(b,e){c||ce.test(a)?d(a,e):ci(a+"["+(typeof e=="object"?b:"")+"]",e,c,d)});else if(!c&&p.type(b)==="object")for(e in b)ci(a+"["+e+"]",b[e],c,d);else d(a,b)}function cz(a){return function(b,c){typeof b!="string"&&(c=b,b="*");var d,e,f,g=b.toLowerCase().split(s),h=0,i=g.length;if(p.isFunction(c))for(;h<i;h++)d=g[h],f=/^\+/.test(d),f&&(d=d.substr(1)||"*"),e=a[d]=a[d]||[],e[f?"unshift":"push"](c)}}function cA(a,c,d,e,f,g){f=f||c.dataTypes[0],g=g||{},g[f]=!0;var h,i=a[f],j=0,k=i?i.length:0,l=a===cv;for(;j<k&&(l||!h);j++)h=i[j](c,d,e),typeof h=="string"&&(!l||g[h]?h=b:(c.dataTypes.unshift(h),h=cA(a,c,d,e,h,g)));return(l||!h)&&!g["*"]&&(h=cA(a,c,d,e,"*",g)),h}function cB(a,c){var d,e,f=p.ajaxSettings.flatOptions||{};for(d in c)c[d]!==b&&((f[d]?a:e||(e={}))[d]=c[d]);e&&p.extend(!0,a,e)}function cC(a,c,d){var e,f,g,h,i=a.contents,j=a.dataTypes,k=a.responseFields;for(f in k)f in d&&(c[k[f]]=d[f]);while(j[0]==="*")j.shift(),e===b&&(e=a.mimeType||c.getResponseHeader("content-type"));if(e)for(f in i)if(i[f]&&i[f].test(e)){j.unshift(f);break}if(j[0]in d)g=j[0];else{for(f in d){if(!j[0]||a.converters[f+" "+j[0]]){g=f;break}h||(h=f)}g=g||h}if(g)return g!==j[0]&&j.unshift(g),d[g]}function cD(a,b){var c,d,e,f,g=a.dataTypes.slice(),h=g[0],i={},j=0;a.dataFilter&&(b=a.dataFilter(b,a.dataType));if(g[1])for(c in a.converters)i[c.toLowerCase()]=a.converters[c];for(;e=g[++j];)if(e!=="*"){if(h!=="*"&&h!==e){c=i[h+" "+e]||i["* "+e];if(!c)for(d in i){f=d.split(" ");if(f[1]===e){c=i[h+" "+f[0]]||i["* "+f[0]];if(c){c===!0?c=i[d]:i[d]!==!0&&(e=f[0],g.splice(j--,0,e));break}}}if(c!==!0)if(c&&a["throws"])b=c(b);else try{b=c(b)}catch(k){return{state:"parsererror",error:c?k:"No conversion from "+h+" to "+e}}}h=e}return{state:"success",data:b}}function cL(){try{return new a.XMLHttpRequest}catch(b){}}function cM(){try{return new a.ActiveXObject("Microsoft.XMLHTTP")}catch(b){}}function cU(){return setTimeout(function(){cN=b},0),cN=p.now()}function cV(a,b){p.each(b,function(b,c){var d=(cT[b]||[]).concat(cT["*"]),e=0,f=d.length;for(;e<f;e++)if(d[e].call(a,b,c))return})}function cW(a,b,c){var d,e=0,f=0,g=cS.length,h=p.Deferred().always(function(){delete i.elem}),i=function(){var b=cN||cU(),c=Math.max(0,j.startTime+j.duration-b),d=1-(c/j.duration||0),e=0,f=j.tweens.length;for(;e<f;e++)j.tweens[e].run(d);return h.notifyWith(a,[j,d,c]),d<1&&f?c:(h.resolveWith(a,[j]),!1)},j=h.promise({elem:a,props:p.extend({},b),opts:p.extend(!0,{specialEasing:{}},c),originalProperties:b,originalOptions:c,startTime:cN||cU(),duration:c.duration,tweens:[],createTween:function(b,c,d){var e=p.Tween(a,j.opts,b,c,j.opts.specialEasing[b]||j.opts.easing);return j.tweens.push(e),e},stop:function(b){var c=0,d=b?j.tweens.length:0;for(;c<d;c++)j.tweens[c].run(1);return b?h.resolveWith(a,[j,b]):h.rejectWith(a,[j,b]),this}}),k=j.props;cX(k,j.opts.specialEasing);for(;e<g;e++){d=cS[e].call(j,a,k,j.opts);if(d)return d}return cV(j,k),p.isFunction(j.opts.start)&&j.opts.start.call(a,j),p.fx.timer(p.extend(i,{anim:j,queue:j.opts.queue,elem:a})),j.progress(j.opts.progress).done(j.opts.done,j.opts.complete).fail(j.opts.fail).always(j.opts.always)}function cX(a,b){var c,d,e,f,g;for(c in a){d=p.camelCase(c),e=b[d],f=a[c],p.isArray(f)&&(e=f[1],f=a[c]=f[0]),c!==d&&(a[d]=f,delete a[c]),g=p.cssHooks[d];if(g&&"expand"in g){f=g.expand(f),delete a[d];for(c in f)c in a||(a[c]=f[c],b[c]=e)}else b[d]=e}}function cY(a,b,c){var d,e,f,g,h,i,j,k,l=this,m=a.style,n={},o=[],q=a.nodeType&&bZ(a);c.queue||(j=p._queueHooks(a,"fx"),j.unqueued==null&&(j.unqueued=0,k=j.empty.fire,j.empty.fire=function(){j.unqueued||k()}),j.unqueued++,l.always(function(){l.always(function(){j.unqueued--,p.queue(a,"fx").length||j.empty.fire()})})),a.nodeType===1&&("height"in b||"width"in b)&&(c.overflow=[m.overflow,m.overflowX,m.overflowY],p.css(a,"display")==="inline"&&p.css(a,"float")==="none"&&(!p.support.inlineBlockNeedsLayout||cc(a.nodeName)==="inline"?m.display="inline-block":m.zoom=1)),c.overflow&&(m.overflow="hidden",p.support.shrinkWrapBlocks||l.done(function(){m.overflow=c.overflow[0],m.overflowX=c.overflow[1],m.overflowY=c.overflow[2]}));for(d in b){f=b[d];if(cP.exec(f)){delete b[d];if(f===(q?"hide":"show"))continue;o.push(d)}}g=o.length;if(g){h=p._data(a,"fxshow")||p._data(a,"fxshow",{}),q?p(a).show():l.done(function(){p(a).hide()}),l.done(function(){var b;p.removeData(a,"fxshow",!0);for(b in n)p.style(a,b,n[b])});for(d=0;d<g;d++)e=o[d],i=l.createTween(e,q?h[e]:0),n[e]=h[e]||p.style(a,e),e in h||(h[e]=i.start,q&&(i.end=i.start,i.start=e==="width"||e==="height"?1:0))}}function cZ(a,b,c,d,e){return new cZ.prototype.init(a,b,c,d,e)}function c$(a,b){var c,d={height:a},e=0;b=b?1:0;for(;e<4;e+=2-b)c=bV[e],d["margin"+c]=d["padding"+c]=a;return b&&(d.opacity=d.width=a),d}function da(a){return p.isWindow(a)?a:a.nodeType===9?a.defaultView||a.parentWindow:!1}var c,d,e=a.document,f=a.location,g=a.navigator,h=a.jQuery,i=a.$,j=Array.prototype.push,k=Array.prototype.slice,l=Array.prototype.indexOf,m=Object.prototype.toString,n=Object.prototype.hasOwnProperty,o=String.prototype.trim,p=function(a,b){return new p.fn.init(a,b,c)},q=/[\-+]?(?:\d*\.|)\d+(?:[eE][\-+]?\d+|)/.source,r=/\S/,s=/\s+/,t=/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,u=/^(?:[^#<]*(<[\w\W]+>)[^>]*$|#([\w\-]*)$)/,v=/^<(\w+)\s*\/?>(?:<\/\1>|)$/,w=/^[\],:{}\s]*$/,x=/(?:^|:|,)(?:\s*\[)+/g,y=/\\(?:["\\\/bfnrt]|u[\da-fA-F]{4})/g,z=/"[^"\\\r\n]*"|true|false|null|-?(?:\d\d*\.|)\d+(?:[eE][\-+]?\d+|)/g,A=/^-ms-/,B=/-([\da-z])/gi,C=function(a,b){return(b+"").toUpperCase()},D=function(){e.addEventListener?(e.removeEventListener("DOMContentLoaded",D,!1),p.ready()):e.readyState==="complete"&&(e.detachEvent("onreadystatechange",D),p.ready())},E={};p.fn=p.prototype={constructor:p,init:function(a,c,d){var f,g,h,i;if(!a)return this;if(a.nodeType)return this.context=this[0]=a,this.length=1,this;if(typeof a=="string"){a.charAt(0)==="<"&&a.charAt(a.length-1)===">"&&a.length>=3?f=[null,a,null]:f=u.exec(a);if(f&&(f[1]||!c)){if(f[1])return c=c instanceof p?c[0]:c,i=c&&c.nodeType?c.ownerDocument||c:e,a=p.parseHTML(f[1],i,!0),v.test(f[1])&&p.isPlainObject(c)&&this.attr.call(a,c,!0),p.merge(this,a);g=e.getElementById(f[2]);if(g&&g.parentNode){if(g.id!==f[2])return d.find(a);this.length=1,this[0]=g}return this.context=e,this.selector=a,this}return!c||c.jquery?(c||d).find(a):this.constructor(c).find(a)}return p.isFunction(a)?d.ready(a):(a.selector!==b&&(this.selector=a.selector,this.context=a.context),p.makeArray(a,this))},selector:"",jquery:"1.8.2",length:0,size:function(){return this.length},toArray:function(){return k.call(this)},get:function(a){return a==null?this.toArray():a<0?this[this.length+a]:this[a]},pushStack:function(a,b,c){var d=p.merge(this.constructor(),a);return d.prevObject=this,d.context=this.context,b==="find"?d.selector=this.selector+(this.selector?" ":"")+c:b&&(d.selector=this.selector+"."+b+"("+c+")"),d},each:function(a,b){return p.each(this,a,b)},ready:function(a){return p.ready.promise().done(a),this},eq:function(a){return a=+a,a===-1?this.slice(a):this.slice(a,a+1)},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},slice:function(){return this.pushStack(k.apply(this,arguments),"slice",k.call(arguments).join(","))},map:function(a){return this.pushStack(p.map(this,function(b,c){return a.call(b,c,b)}))},end:function(){return this.prevObject||this.constructor(null)},push:j,sort:[].sort,splice:[].splice},p.fn.init.prototype=p.fn,p.extend=p.fn.extend=function(){var a,c,d,e,f,g,h=arguments[0]||{},i=1,j=arguments.length,k=!1;typeof h=="boolean"&&(k=h,h=arguments[1]||{},i=2),typeof h!="object"&&!p.isFunction(h)&&(h={}),j===i&&(h=this,--i);for(;i<j;i++)if((a=arguments[i])!=null)for(c in a){d=h[c],e=a[c];if(h===e)continue;k&&e&&(p.isPlainObject(e)||(f=p.isArray(e)))?(f?(f=!1,g=d&&p.isArray(d)?d:[]):g=d&&p.isPlainObject(d)?d:{},h[c]=p.extend(k,g,e)):e!==b&&(h[c]=e)}return h},p.extend({noConflict:function(b){return a.$===p&&(a.$=i),b&&a.jQuery===p&&(a.jQuery=h),p},isReady:!1,readyWait:1,holdReady:function(a){a?p.readyWait++:p.ready(!0)},ready:function(a){if(a===!0?--p.readyWait:p.isReady)return;if(!e.body)return setTimeout(p.ready,1);p.isReady=!0;if(a!==!0&&--p.readyWait>0)return;d.resolveWith(e,[p]),p.fn.trigger&&p(e).trigger("ready").off("ready")},isFunction:function(a){return p.type(a)==="function"},isArray:Array.isArray||function(a){return p.type(a)==="array"},isWindow:function(a){return a!=null&&a==a.window},isNumeric:function(a){return!isNaN(parseFloat(a))&&isFinite(a)},type:function(a){return a==null?String(a):E[m.call(a)]||"object"},isPlainObject:function(a){if(!a||p.type(a)!=="object"||a.nodeType||p.isWindow(a))return!1;try{if(a.constructor&&!n.call(a,"constructor")&&!n.call(a.constructor.prototype,"isPrototypeOf"))return!1}catch(c){return!1}var d;for(d in a);return d===b||n.call(a,d)},isEmptyObject:function(a){var b;for(b in a)return!1;return!0},error:function(a){throw new Error(a)},parseHTML:function(a,b,c){var d;return!a||typeof a!="string"?null:(typeof b=="boolean"&&(c=b,b=0),b=b||e,(d=v.exec(a))?[b.createElement(d[1])]:(d=p.buildFragment([a],b,c?null:[]),p.merge([],(d.cacheable?p.clone(d.fragment):d.fragment).childNodes)))},parseJSON:function(b){if(!b||typeof b!="string")return null;b=p.trim(b);if(a.JSON&&a.JSON.parse)return a.JSON.parse(b);if(w.test(b.replace(y,"@").replace(z,"]").replace(x,"")))return(new Function("return "+b))();p.error("Invalid JSON: "+b)},parseXML:function(c){var d,e;if(!c||typeof c!="string")return null;try{a.DOMParser?(e=new DOMParser,d=e.parseFromString(c,"text/xml")):(d=new ActiveXObject("Microsoft.XMLDOM"),d.async="false",d.loadXML(c))}catch(f){d=b}return(!d||!d.documentElement||d.getElementsByTagName("parsererror").length)&&p.error("Invalid XML: "+c),d},noop:function(){},globalEval:function(b){b&&r.test(b)&&(a.execScript||function(b){a.eval.call(a,b)})(b)},camelCase:function(a){return a.replace(A,"ms-").replace(B,C)},nodeName:function(a,b){return a.nodeName&&a.nodeName.toLowerCase()===b.toLowerCase()},each:function(a,c,d){var e,f=0,g=a.length,h=g===b||p.isFunction(a);if(d){if(h){for(e in a)if(c.apply(a[e],d)===!1)break}else for(;f<g;)if(c.apply(a[f++],d)===!1)break}else if(h){for(e in a)if(c.call(a[e],e,a[e])===!1)break}else for(;f<g;)if(c.call(a[f],f,a[f++])===!1)break;return a},trim:o&&!o.call(" ")?function(a){return a==null?"":o.call(a)}:function(a){return a==null?"":(a+"").replace(t,"")},makeArray:function(a,b){var c,d=b||[];return a!=null&&(c=p.type(a),a.length==null||c==="string"||c==="function"||c==="regexp"||p.isWindow(a)?j.call(d,a):p.merge(d,a)),d},inArray:function(a,b,c){var d;if(b){if(l)return l.call(b,a,c);d=b.length,c=c?c<0?Math.max(0,d+c):c:0;for(;c<d;c++)if(c in b&&b[c]===a)return c}return-1},merge:function(a,c){var d=c.length,e=a.length,f=0;if(typeof d=="number")for(;f<d;f++)a[e++]=c[f];else while(c[f]!==b)a[e++]=c[f++];return a.length=e,a},grep:function(a,b,c){var d,e=[],f=0,g=a.length;c=!!c;for(;f<g;f++)d=!!b(a[f],f),c!==d&&e.push(a[f]);return e},map:function(a,c,d){var e,f,g=[],h=0,i=a.length,j=a instanceof p||i!==b&&typeof i=="number"&&(i>0&&a[0]&&a[i-1]||i===0||p.isArray(a));if(j)for(;h<i;h++)e=c(a[h],h,d),e!=null&&(g[g.length]=e);else for(f in a)e=c(a[f],f,d),e!=null&&(g[g.length]=e);return g.concat.apply([],g)},guid:1,proxy:function(a,c){var d,e,f;return typeof c=="string"&&(d=a[c],c=a,a=d),p.isFunction(a)?(e=k.call(arguments,2),f=function(){return a.apply(c,e.concat(k.call(arguments)))},f.guid=a.guid=a.guid||p.guid++,f):b},access:function(a,c,d,e,f,g,h){var i,j=d==null,k=0,l=a.length;if(d&&typeof d=="object"){for(k in d)p.access(a,c,k,d[k],1,g,e);f=1}else if(e!==b){i=h===b&&p.isFunction(e),j&&(i?(i=c,c=function(a,b,c){return i.call(p(a),c)}):(c.call(a,e),c=null));if(c)for(;k<l;k++)c(a[k],d,i?e.call(a[k],k,c(a[k],d)):e,h);f=1}return f?a:j?c.call(a):l?c(a[0],d):g},now:function(){return(new Date).getTime()}}),p.ready.promise=function(b){if(!d){d=p.Deferred();if(e.readyState==="complete")setTimeout(p.ready,1);else if(e.addEventListener)e.addEventListener("DOMContentLoaded",D,!1),a.addEventListener("load",p.ready,!1);else{e.attachEvent("onreadystatechange",D),a.attachEvent("onload",p.ready);var c=!1;try{c=a.frameElement==null&&e.documentElement}catch(f){}c&&c.doScroll&&function g(){if(!p.isReady){try{c.doScroll("left")}catch(a){return setTimeout(g,50)}p.ready()}}()}}return d.promise(b)},p.each("Boolean Number String Function Array Date RegExp Object".split(" "),function(a,b){E["[object "+b+"]"]=b.toLowerCase()}),c=p(e);var F={};p.Callbacks=function(a){a=typeof a=="string"?F[a]||G(a):p.extend({},a);var c,d,e,f,g,h,i=[],j=!a.once&&[],k=function(b){c=a.memory&&b,d=!0,h=f||0,f=0,g=i.length,e=!0;for(;i&&h<g;h++)if(i[h].apply(b[0],b[1])===!1&&a.stopOnFalse){c=!1;break}e=!1,i&&(j?j.length&&k(j.shift()):c?i=[]:l.disable())},l={add:function(){if(i){var b=i.length;(function d(b){p.each(b,function(b,c){var e=p.type(c);e==="function"&&(!a.unique||!l.has(c))?i.push(c):c&&c.length&&e!=="string"&&d(c)})})(arguments),e?g=i.length:c&&(f=b,k(c))}return this},remove:function(){return i&&p.each(arguments,function(a,b){var c;while((c=p.inArray(b,i,c))>-1)i.splice(c,1),e&&(c<=g&&g--,c<=h&&h--)}),this},has:function(a){return p.inArray(a,i)>-1},empty:function(){return i=[],this},disable:function(){return i=j=c=b,this},disabled:function(){return!i},lock:function(){return j=b,c||l.disable(),this},locked:function(){return!j},fireWith:function(a,b){return b=b||[],b=[a,b.slice?b.slice():b],i&&(!d||j)&&(e?j.push(b):k(b)),this},fire:function(){return l.fireWith(this,arguments),this},fired:function(){return!!d}};return l},p.extend({Deferred:function(a){var b=[["resolve","done",p.Callbacks("once memory"),"resolved"],["reject","fail",p.Callbacks("once memory"),"rejected"],["notify","progress",p.Callbacks("memory")]],c="pending",d={state:function(){return c},always:function(){return e.done(arguments).fail(arguments),this},then:function(){var a=arguments;return p.Deferred(function(c){p.each(b,function(b,d){var f=d[0],g=a[b];e[d[1]](p.isFunction(g)?function(){var a=g.apply(this,arguments);a&&p.isFunction(a.promise)?a.promise().done(c.resolve).fail(c.reject).progress(c.notify):c[f+"With"](this===e?c:this,[a])}:c[f])}),a=null}).promise()},promise:function(a){return a!=null?p.extend(a,d):d}},e={};return d.pipe=d.then,p.each(b,function(a,f){var g=f[2],h=f[3];d[f[1]]=g.add,h&&g.add(function(){c=h},b[a^1][2].disable,b[2][2].lock),e[f[0]]=g.fire,e[f[0]+"With"]=g.fireWith}),d.promise(e),a&&a.call(e,e),e},when:function(a){var b=0,c=k.call(arguments),d=c.length,e=d!==1||a&&p.isFunction(a.promise)?d:0,f=e===1?a:p.Deferred(),g=function(a,b,c){return function(d){b[a]=this,c[a]=arguments.length>1?k.call(arguments):d,c===h?f.notifyWith(b,c):--e||f.resolveWith(b,c)}},h,i,j;if(d>1){h=new Array(d),i=new Array(d),j=new Array(d);for(;b<d;b++)c[b]&&p.isFunction(c[b].promise)?c[b].promise().done(g(b,j,c)).fail(f.reject).progress(g(b,i,h)):--e}return e||f.resolveWith(j,c),f.promise()}}),p.support=function(){var b,c,d,f,g,h,i,j,k,l,m,n=e.createElement("div");n.setAttribute("className","t"),n.innerHTML=" <link/><table></table><a href='/a'>a</a><input type='checkbox'/>",c=n.getElementsByTagName("*"),d=n.getElementsByTagName("a")[0],d.style.cssText="top:1px;float:left;opacity:.5";if(!c||!c.length)return{};f=e.createElement("select"),g=f.appendChild(e.createElement("option")),h=n.getElementsByTagName("input")[0],b={leadingWhitespace:n.firstChild.nodeType===3,tbody:!n.getElementsByTagName("tbody").length,htmlSerialize:!!n.getElementsByTagName("link").length,style:/top/.test(d.getAttribute("style")),hrefNormalized:d.getAttribute("href")==="/a",opacity:/^0.5/.test(d.style.opacity),cssFloat:!!d.style.cssFloat,checkOn:h.value==="on",optSelected:g.selected,getSetAttribute:n.className!=="t",enctype:!!e.createElement("form").enctype,html5Clone:e.createElement("nav").cloneNode(!0).outerHTML!=="<:nav></:nav>",boxModel:e.compatMode==="CSS1Compat",submitBubbles:!0,changeBubbles:!0,focusinBubbles:!1,deleteExpando:!0,noCloneEvent:!0,inlineBlockNeedsLayout:!1,shrinkWrapBlocks:!1,reliableMarginRight:!0,boxSizingReliable:!0,pixelPosition:!1},h.checked=!0,b.noCloneChecked=h.cloneNode(!0).checked,f.disabled=!0,b.optDisabled=!g.disabled;try{delete n.test}catch(o){b.deleteExpando=!1}!n.addEventListener&&n.attachEvent&&n.fireEvent&&(n.attachEvent("onclick",m=function(){b.noCloneEvent=!1}),n.cloneNode(!0).fireEvent("onclick"),n.detachEvent("onclick",m)),h=e.createElement("input"),h.value="t",h.setAttribute("type","radio"),b.radioValue=h.value==="t",h.setAttribute("checked","checked"),h.setAttribute("name","t"),n.appendChild(h),i=e.createDocumentFragment(),i.appendChild(n.lastChild),b.checkClone=i.cloneNode(!0).cloneNode(!0).lastChild.checked,b.appendChecked=h.checked,i.removeChild(h),i.appendChild(n);if(n.attachEvent)for(k in{submit:!0,change:!0,focusin:!0})j="on"+k,l=j in n,l||(n.setAttribute(j,"return;"),l=typeof n[j]=="function"),b[k+"Bubbles"]=l;return p(function(){var c,d,f,g,h="padding:0;margin:0;border:0;display:block;overflow:hidden;",i=e.getElementsByTagName("body")[0];if(!i)return;c=e.createElement("div"),c.style.cssText="visibility:hidden;border:0;width:0;height:0;position:static;top:0;margin-top:1px",i.insertBefore(c,i.firstChild),d=e.createElement("div"),c.appendChild(d),d.innerHTML="<table><tr><td></td><td>t</td></tr></table>",f=d.getElementsByTagName("td"),f[0].style.cssText="padding:0;margin:0;border:0;display:none",l=f[0].offsetHeight===0,f[0].style.display="",f[1].style.display="none",b.reliableHiddenOffsets=l&&f[0].offsetHeight===0,d.innerHTML="",d.style.cssText="box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;padding:1px;border:1px;display:block;width:4px;margin-top:1%;position:absolute;top:1%;",b.boxSizing=d.offsetWidth===4,b.doesNotIncludeMarginInBodyOffset=i.offsetTop!==1,a.getComputedStyle&&(b.pixelPosition=(a.getComputedStyle(d,null)||{}).top!=="1%",b.boxSizingReliable=(a.getComputedStyle(d,null)||{width:"4px"}).width==="4px",g=e.createElement("div"),g.style.cssText=d.style.cssText=h,g.style.marginRight=g.style.width="0",d.style.width="1px",d.appendChild(g),b.reliableMarginRight=!parseFloat((a.getComputedStyle(g,null)||{}).marginRight)),typeof d.style.zoom!="undefined"&&(d.innerHTML="",d.style.cssText=h+"width:1px;padding:1px;display:inline;zoom:1",b.inlineBlockNeedsLayout=d.offsetWidth===3,d.style.display="block",d.style.overflow="visible",d.innerHTML="<div></div>",d.firstChild.style.width="5px",b.shrinkWrapBlocks=d.offsetWidth!==3,c.style.zoom=1),i.removeChild(c),c=d=f=g=null}),i.removeChild(n),c=d=f=g=h=i=n=null,b}();var H=/(?:\{[\s\S]*\}|\[[\s\S]*\])$/,I=/([A-Z])/g;p.extend({cache:{},deletedIds:[],uuid:0,expando:"jQuery"+(p.fn.jquery+Math.random()).replace(/\D/g,""),noData:{embed:!0,object:"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000",applet:!0},hasData:function(a){return a=a.nodeType?p.cache[a[p.expando]]:a[p.expando],!!a&&!K(a)},data:function(a,c,d,e){if(!p.acceptData(a))return;var f,g,h=p.expando,i=typeof c=="string",j=a.nodeType,k=j?p.cache:a,l=j?a[h]:a[h]&&h;if((!l||!k[l]||!e&&!k[l].data)&&i&&d===b)return;l||(j?a[h]=l=p.deletedIds.pop()||p.guid++:l=h),k[l]||(k[l]={},j||(k[l].toJSON=p.noop));if(typeof c=="object"||typeof c=="function")e?k[l]=p.extend(k[l],c):k[l].data=p.extend(k[l].data,c);return f=k[l],e||(f.data||(f.data={}),f=f.data),d!==b&&(f[p.camelCase(c)]=d),i?(g=f[c],g==null&&(g=f[p.camelCase(c)])):g=f,g},removeData:function(a,b,c){if(!p.acceptData(a))return;var d,e,f,g=a.nodeType,h=g?p.cache:a,i=g?a[p.expando]:p.expando;if(!h[i])return;if(b){d=c?h[i]:h[i].data;if(d){p.isArray(b)||(b in d?b=[b]:(b=p.camelCase(b),b in d?b=[b]:b=b.split(" ")));for(e=0,f=b.length;e<f;e++)delete d[b[e]];if(!(c?K:p.isEmptyObject)(d))return}}if(!c){delete h[i].data;if(!K(h[i]))return}g?p.cleanData([a],!0):p.support.deleteExpando||h!=h.window?delete h[i]:h[i]=null},_data:function(a,b,c){return p.data(a,b,c,!0)},acceptData:function(a){var b=a.nodeName&&p.noData[a.nodeName.toLowerCase()];return!b||b!==!0&&a.getAttribute("classid")===b}}),p.fn.extend({data:function(a,c){var d,e,f,g,h,i=this[0],j=0,k=null;if(a===b){if(this.length){k=p.data(i);if(i.nodeType===1&&!p._data(i,"parsedAttrs")){f=i.attributes;for(h=f.length;j<h;j++)g=f[j].name,g.indexOf("data-")||(g=p.camelCase(g.substring(5)),J(i,g,k[g]));p._data(i,"parsedAttrs",!0)}}return k}return typeof a=="object"?this.each(function(){p.data(this,a)}):(d=a.split(".",2),d[1]=d[1]?"."+d[1]:"",e=d[1]+"!",p.access(this,function(c){if(c===b)return k=this.triggerHandler("getData"+e,[d[0]]),k===b&&i&&(k=p.data(i,a),k=J(i,a,k)),k===b&&d[1]?this.data(d[0]):k;d[1]=c,this.each(function(){var b=p(this);b.triggerHandler("setData"+e,d),p.data(this,a,c),b.triggerHandler("changeData"+e,d)})},null,c,arguments.length>1,null,!1))},removeData:function(a){return this.each(function(){p.removeData(this,a)})}}),p.extend({queue:function(a,b,c){var d;if(a)return b=(b||"fx")+"queue",d=p._data(a,b),c&&(!d||p.isArray(c)?d=p._data(a,b,p.makeArray(c)):d.push(c)),d||[]},dequeue:function(a,b){b=b||"fx";var c=p.queue(a,b),d=c.length,e=c.shift(),f=p._queueHooks(a,b),g=function(){p.dequeue(a,b)};e==="inprogress"&&(e=c.shift(),d--),e&&(b==="fx"&&c.unshift("inprogress"),delete f.stop,e.call(a,g,f)),!d&&f&&f.empty.fire()},_queueHooks:function(a,b){var c=b+"queueHooks";return p._data(a,c)||p._data(a,c,{empty:p.Callbacks("once memory").add(function(){p.removeData(a,b+"queue",!0),p.removeData(a,c,!0)})})}}),p.fn.extend({queue:function(a,c){var d=2;return typeof a!="string"&&(c=a,a="fx",d--),arguments.length<d?p.queue(this[0],a):c===b?this:this.each(function(){var b=p.queue(this,a,c);p._queueHooks(this,a),a==="fx"&&b[0]!=="inprogress"&&p.dequeue(this,a)})},dequeue:function(a){return this.each(function(){p.dequeue(this,a)})},delay:function(a,b){return a=p.fx?p.fx.speeds[a]||a:a,b=b||"fx",this.queue(b,function(b,c){var d=setTimeout(b,a);c.stop=function(){clearTimeout(d)}})},clearQueue:function(a){return this.queue(a||"fx",[])},promise:function(a,c){var d,e=1,f=p.Deferred(),g=this,h=this.length,i=function(){--e||f.resolveWith(g,[g])};typeof a!="string"&&(c=a,a=b),a=a||"fx";while(h--)d=p._data(g[h],a+"queueHooks"),d&&d.empty&&(e++,d.empty.add(i));return i(),f.promise(c)}});var L,M,N,O=/[\t\r\n]/g,P=/\r/g,Q=/^(?:button|input)$/i,R=/^(?:button|input|object|select|textarea)$/i,S=/^a(?:rea|)$/i,T=/^(?:autofocus|autoplay|async|checked|controls|defer|disabled|hidden|loop|multiple|open|readonly|required|scoped|selected)$/i,U=p.support.getSetAttribute;p.fn.extend({attr:function(a,b){return p.access(this,p.attr,a,b,arguments.length>1)},removeAttr:function(a){return this.each(function(){p.removeAttr(this,a)})},prop:function(a,b){return p.access(this,p.prop,a,b,arguments.length>1)},removeProp:function(a){return a=p.propFix[a]||a,this.each(function(){try{this[a]=b,delete this[a]}catch(c){}})},addClass:function(a){var b,c,d,e,f,g,h;if(p.isFunction(a))return this.each(function(b){p(this).addClass(a.call(this,b,this.className))});if(a&&typeof a=="string"){b=a.split(s);for(c=0,d=this.length;c<d;c++){e=this[c];if(e.nodeType===1)if(!e.className&&b.length===1)e.className=a;else{f=" "+e.className+" ";for(g=0,h=b.length;g<h;g++)f.indexOf(" "+b[g]+" ")<0&&(f+=b[g]+" ");e.className=p.trim(f)}}}return this},removeClass:function(a){var c,d,e,f,g,h,i;if(p.isFunction(a))return this.each(function(b){p(this).removeClass(a.call(this,b,this.className))});if(a&&typeof a=="string"||a===b){c=(a||"").split(s);for(h=0,i=this.length;h<i;h++){e=this[h];if(e.nodeType===1&&e.className){d=(" "+e.className+" ").replace(O," ");for(f=0,g=c.length;f<g;f++)while(d.indexOf(" "+c[f]+" ")>=0)d=d.replace(" "+c[f]+" "," ");e.className=a?p.trim(d):""}}}return this},toggleClass:function(a,b){var c=typeof a,d=typeof b=="boolean";return p.isFunction(a)?this.each(function(c){p(this).toggleClass(a.call(this,c,this.className,b),b)}):this.each(function(){if(c==="string"){var e,f=0,g=p(this),h=b,i=a.split(s);while(e=i[f++])h=d?h:!g.hasClass(e),g[h?"addClass":"removeClass"](e)}else if(c==="undefined"||c==="boolean")this.className&&p._data(this,"__className__",this.className),this.className=this.className||a===!1?"":p._data(this,"__className__")||""})},hasClass:function(a){var b=" "+a+" ",c=0,d=this.length;for(;c<d;c++)if(this[c].nodeType===1&&(" "+this[c].className+" ").replace(O," ").indexOf(b)>=0)return!0;return!1},val:function(a){var c,d,e,f=this[0];if(!arguments.length){if(f)return c=p.valHooks[f.type]||p.valHooks[f.nodeName.toLowerCase()],c&&"get"in c&&(d=c.get(f,"value"))!==b?d:(d=f.value,typeof d=="string"?d.replace(P,""):d==null?"":d);return}return e=p.isFunction(a),this.each(function(d){var f,g=p(this);if(this.nodeType!==1)return;e?f=a.call(this,d,g.val()):f=a,f==null?f="":typeof f=="number"?f+="":p.isArray(f)&&(f=p.map(f,function(a){return a==null?"":a+""})),c=p.valHooks[this.type]||p.valHooks[this.nodeName.toLowerCase()];if(!c||!("set"in c)||c.set(this,f,"value")===b)this.value=f})}}),p.extend({valHooks:{option:{get:function(a){var b=a.attributes.value;return!b||b.specified?a.value:a.text}},select:{get:function(a){var b,c,d,e,f=a.selectedIndex,g=[],h=a.options,i=a.type==="select-one";if(f<0)return null;c=i?f:0,d=i?f+1:h.length;for(;c<d;c++){e=h[c];if(e.selected&&(p.support.optDisabled?!e.disabled:e.getAttribute("disabled")===null)&&(!e.parentNode.disabled||!p.nodeName(e.parentNode,"optgroup"))){b=p(e).val();if(i)return b;g.push(b)}}return i&&!g.length&&h.length?p(h[f]).val():g},set:function(a,b){var c=p.makeArray(b);return p(a).find("option").each(function(){this.selected=p.inArray(p(this).val(),c)>=0}),c.length||(a.selectedIndex=-1),c}}},attrFn:{},attr:function(a,c,d,e){var f,g,h,i=a.nodeType;if(!a||i===3||i===8||i===2)return;if(e&&p.isFunction(p.fn[c]))return p(a)[c](d);if(typeof a.getAttribute=="undefined")return p.prop(a,c,d);h=i!==1||!p.isXMLDoc(a),h&&(c=c.toLowerCase(),g=p.attrHooks[c]||(T.test(c)?M:L));if(d!==b){if(d===null){p.removeAttr(a,c);return}return g&&"set"in g&&h&&(f=g.set(a,d,c))!==b?f:(a.setAttribute(c,d+""),d)}return g&&"get"in g&&h&&(f=g.get(a,c))!==null?f:(f=a.getAttribute(c),f===null?b:f)},removeAttr:function(a,b){var c,d,e,f,g=0;if(b&&a.nodeType===1){d=b.split(s);for(;g<d.length;g++)e=d[g],e&&(c=p.propFix[e]||e,f=T.test(e),f||p.attr(a,e,""),a.removeAttribute(U?e:c),f&&c in a&&(a[c]=!1))}},attrHooks:{type:{set:function(a,b){if(Q.test(a.nodeName)&&a.parentNode)p.error("type property can't be changed");else if(!p.support.radioValue&&b==="radio"&&p.nodeName(a,"input")){var c=a.value;return a.setAttribute("type",b),c&&(a.value=c),b}}},value:{get:function(a,b){return L&&p.nodeName(a,"button")?L.get(a,b):b in a?a.value:null},set:function(a,b,c){if(L&&p.nodeName(a,"button"))return L.set(a,b,c);a.value=b}}},propFix:{tabindex:"tabIndex",readonly:"readOnly","for":"htmlFor","class":"className",maxlength:"maxLength",cellspacing:"cellSpacing",cellpadding:"cellPadding",rowspan:"rowSpan",colspan:"colSpan",usemap:"useMap",frameborder:"frameBorder",contenteditable:"contentEditable"},prop:function(a,c,d){var e,f,g,h=a.nodeType;if(!a||h===3||h===8||h===2)return;return g=h!==1||!p.isXMLDoc(a),g&&(c=p.propFix[c]||c,f=p.propHooks[c]),d!==b?f&&"set"in f&&(e=f.set(a,d,c))!==b?e:a[c]=d:f&&"get"in f&&(e=f.get(a,c))!==null?e:a[c]},propHooks:{tabIndex:{get:function(a){var c=a.getAttributeNode("tabindex");return c&&c.specified?parseInt(c.value,10):R.test(a.nodeName)||S.test(a.nodeName)&&a.href?0:b}}}}),M={get:function(a,c){var d,e=p.prop(a,c);return e===!0||typeof e!="boolean"&&(d=a.getAttributeNode(c))&&d.nodeValue!==!1?c.toLowerCase():b},set:function(a,b,c){var d;return b===!1?p.removeAttr(a,c):(d=p.propFix[c]||c,d in a&&(a[d]=!0),a.setAttribute(c,c.toLowerCase())),c}},U||(N={name:!0,id:!0,coords:!0},L=p.valHooks.button={get:function(a,c){var d;return d=a.getAttributeNode(c),d&&(N[c]?d.value!=="":d.specified)?d.value:b},set:function(a,b,c){var d=a.getAttributeNode(c);return d||(d=e.createAttribute(c),a.setAttributeNode(d)),d.value=b+""}},p.each(["width","height"],function(a,b){p.attrHooks[b]=p.extend(p.attrHooks[b],{set:function(a,c){if(c==="")return a.setAttribute(b,"auto"),c}})}),p.attrHooks.contenteditable={get:L.get,set:function(a,b,c){b===""&&(b="false"),L.set(a,b,c)}}),p.support.hrefNormalized||p.each(["href","src","width","height"],function(a,c){p.attrHooks[c]=p.extend(p.attrHooks[c],{get:function(a){var d=a.getAttribute(c,2);return d===null?b:d}})}),p.support.style||(p.attrHooks.style={get:function(a){return a.style.cssText.toLowerCase()||b},set:function(a,b){return a.style.cssText=b+""}}),p.support.optSelected||(p.propHooks.selected=p.extend(p.propHooks.selected,{get:function(a){var b=a.parentNode;return b&&(b.selectedIndex,b.parentNode&&b.parentNode.selectedIndex),null}})),p.support.enctype||(p.propFix.enctype="encoding"),p.support.checkOn||p.each(["radio","checkbox"],function(){p.valHooks[this]={get:function(a){return a.getAttribute("value")===null?"on":a.value}}}),p.each(["radio","checkbox"],function(){p.valHooks[this]=p.extend(p.valHooks[this],{set:function(a,b){if(p.isArray(b))return a.checked=p.inArray(p(a).val(),b)>=0}})});var V=/^(?:textarea|input|select)$/i,W=/^([^\.]*|)(?:\.(.+)|)$/,X=/(?:^|\s)hover(\.\S+|)\b/,Y=/^key/,Z=/^(?:mouse|contextmenu)|click/,$=/^(?:focusinfocus|focusoutblur)$/,_=function(a){return p.event.special.hover?a:a.replace(X,"mouseenter$1 mouseleave$1")};p.event={add:function(a,c,d,e,f){var g,h,i,j,k,l,m,n,o,q,r;if(a.nodeType===3||a.nodeType===8||!c||!d||!(g=p._data(a)))return;d.handler&&(o=d,d=o.handler,f=o.selector),d.guid||(d.guid=p.guid++),i=g.events,i||(g.events=i={}),h=g.handle,h||(g.handle=h=function(a){return typeof p!="undefined"&&(!a||p.event.triggered!==a.type)?p.event.dispatch.apply(h.elem,arguments):b},h.elem=a),c=p.trim(_(c)).split(" ");for(j=0;j<c.length;j++){k=W.exec(c[j])||[],l=k[1],m=(k[2]||"").split(".").sort(),r=p.event.special[l]||{},l=(f?r.delegateType:r.bindType)||l,r=p.event.special[l]||{},n=p.extend({type:l,origType:k[1],data:e,handler:d,guid:d.guid,selector:f,needsContext:f&&p.expr.match.needsContext.test(f),namespace:m.join(".")},o),q=i[l];if(!q){q=i[l]=[],q.delegateCount=0;if(!r.setup||r.setup.call(a,e,m,h)===!1)a.addEventListener?a.addEventListener(l,h,!1):a.attachEvent&&a.attachEvent("on"+l,h)}r.add&&(r.add.call(a,n),n.handler.guid||(n.handler.guid=d.guid)),f?q.splice(q.delegateCount++,0,n):q.push(n),p.event.global[l]=!0}a=null},global:{},remove:function(a,b,c,d,e){var f,g,h,i,j,k,l,m,n,o,q,r=p.hasData(a)&&p._data(a);if(!r||!(m=r.events))return;b=p.trim(_(b||"")).split(" ");for(f=0;f<b.length;f++){g=W.exec(b[f])||[],h=i=g[1],j=g[2];if(!h){for(h in m)p.event.remove(a,h+b[f],c,d,!0);continue}n=p.event.special[h]||{},h=(d?n.delegateType:n.bindType)||h,o=m[h]||[],k=o.length,j=j?new RegExp("(^|\\.)"+j.split(".").sort().join("\\.(?:.*\\.|)")+"(\\.|$)"):null;for(l=0;l<o.length;l++)q=o[l],(e||i===q.origType)&&(!c||c.guid===q.guid)&&(!j||j.test(q.namespace))&&(!d||d===q.selector||d==="**"&&q.selector)&&(o.splice(l--,1),q.selector&&o.delegateCount--,n.remove&&n.remove.call(a,q));o.length===0&&k!==o.length&&((!n.teardown||n.teardown.call(a,j,r.handle)===!1)&&p.removeEvent(a,h,r.handle),delete m[h])}p.isEmptyObject(m)&&(delete r.handle,p.removeData(a,"events",!0))},customEvent:{getData:!0,setData:!0,changeData:!0},trigger:function(c,d,f,g){if(!f||f.nodeType!==3&&f.nodeType!==8){var h,i,j,k,l,m,n,o,q,r,s=c.type||c,t=[];if($.test(s+p.event.triggered))return;s.indexOf("!")>=0&&(s=s.slice(0,-1),i=!0),s.indexOf(".")>=0&&(t=s.split("."),s=t.shift(),t.sort());if((!f||p.event.customEvent[s])&&!p.event.global[s])return;c=typeof c=="object"?c[p.expando]?c:new p.Event(s,c):new p.Event(s),c.type=s,c.isTrigger=!0,c.exclusive=i,c.namespace=t.join("."),c.namespace_re=c.namespace?new RegExp("(^|\\.)"+t.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,m=s.indexOf(":")<0?"on"+s:"";if(!f){h=p.cache;for(j in h)h[j].events&&h[j].events[s]&&p.event.trigger(c,d,h[j].handle.elem,!0);return}c.result=b,c.target||(c.target=f),d=d!=null?p.makeArray(d):[],d.unshift(c),n=p.event.special[s]||{};if(n.trigger&&n.trigger.apply(f,d)===!1)return;q=[[f,n.bindType||s]];if(!g&&!n.noBubble&&!p.isWindow(f)){r=n.delegateType||s,k=$.test(r+s)?f:f.parentNode;for(l=f;k;k=k.parentNode)q.push([k,r]),l=k;l===(f.ownerDocument||e)&&q.push([l.defaultView||l.parentWindow||a,r])}for(j=0;j<q.length&&!c.isPropagationStopped();j++)k=q[j][0],c.type=q[j][1],o=(p._data(k,"events")||{})[c.type]&&p._data(k,"handle"),o&&o.apply(k,d),o=m&&k[m],o&&p.acceptData(k)&&o.apply&&o.apply(k,d)===!1&&c.preventDefault();return c.type=s,!g&&!c.isDefaultPrevented()&&(!n._default||n._default.apply(f.ownerDocument,d)===!1)&&(s!=="click"||!p.nodeName(f,"a"))&&p.acceptData(f)&&m&&f[s]&&(s!=="focus"&&s!=="blur"||c.target.offsetWidth!==0)&&!p.isWindow(f)&&(l=f[m],l&&(f[m]=null),p.event.triggered=s,f[s](),p.event.triggered=b,l&&(f[m]=l)),c.result}return},dispatch:function(c){c=p.event.fix(c||a.event);var d,e,f,g,h,i,j,l,m,n,o=(p._data(this,"events")||{})[c.type]||[],q=o.delegateCount,r=k.call(arguments),s=!c.exclusive&&!c.namespace,t=p.event.special[c.type]||{},u=[];r[0]=c,c.delegateTarget=this;if(t.preDispatch&&t.preDispatch.call(this,c)===!1)return;if(q&&(!c.button||c.type!=="click"))for(f=c.target;f!=this;f=f.parentNode||this)if(f.disabled!==!0||c.type!=="click"){h={},j=[];for(d=0;d<q;d++)l=o[d],m=l.selector,h[m]===b&&(h[m]=l.needsContext?p(m,this).index(f)>=0:p.find(m,this,null,[f]).length),h[m]&&j.push(l);j.length&&u.push({elem:f,matches:j})}o.length>q&&u.push({elem:this,matches:o.slice(q)});for(d=0;d<u.length&&!c.isPropagationStopped();d++){i=u[d],c.currentTarget=i.elem;for(e=0;e<i.matches.length&&!c.isImmediatePropagationStopped();e++){l=i.matches[e];if(s||!c.namespace&&!l.namespace||c.namespace_re&&c.namespace_re.test(l.namespace))c.data=l.data,c.handleObj=l,g=((p.event.special[l.origType]||{}).handle||l.handler).apply(i.elem,r),g!==b&&(c.result=g,g===!1&&(c.preventDefault(),c.stopPropagation()))}}return t.postDispatch&&t.postDispatch.call(this,c),c.result},props:"attrChange attrName relatedNode srcElement altKey bubbles cancelable ctrlKey currentTarget eventPhase metaKey relatedTarget shiftKey target timeStamp view which".split(" "),fixHooks:{},keyHooks:{props:"char charCode key keyCode".split(" "),filter:function(a,b){return a.which==null&&(a.which=b.charCode!=null?b.charCode:b.keyCode),a}},mouseHooks:{props:"button buttons clientX clientY fromElement offsetX offsetY pageX pageY screenX screenY toElement".split(" "),filter:function(a,c){var d,f,g,h=c.button,i=c.fromElement;return a.pageX==null&&c.clientX!=null&&(d=a.target.ownerDocument||e,f=d.documentElement,g=d.body,a.pageX=c.clientX+(f&&f.scrollLeft||g&&g.scrollLeft||0)-(f&&f.clientLeft||g&&g.clientLeft||0),a.pageY=c.clientY+(f&&f.scrollTop||g&&g.scrollTop||0)-(f&&f.clientTop||g&&g.clientTop||0)),!a.relatedTarget&&i&&(a.relatedTarget=i===a.target?c.toElement:i),!a.which&&h!==b&&(a.which=h&1?1:h&2?3:h&4?2:0),a}},fix:function(a){if(a[p.expando])return a;var b,c,d=a,f=p.event.fixHooks[a.type]||{},g=f.props?this.props.concat(f.props):this.props;a=p.Event(d);for(b=g.length;b;)c=g[--b],a[c]=d[c];return a.target||(a.target=d.srcElement||e),a.target.nodeType===3&&(a.target=a.target.parentNode),a.metaKey=!!a.metaKey,f.filter?f.filter(a,d):a},special:{load:{noBubble:!0},focus:{delegateType:"focusin"},blur:{delegateType:"focusout"},beforeunload:{setup:function(a,b,c){p.isWindow(this)&&(this.onbeforeunload=c)},teardown:function(a,b){this.onbeforeunload===b&&(this.onbeforeunload=null)}}},simulate:function(a,b,c,d){var e=p.extend(new p.Event,c,{type:a,isSimulated:!0,originalEvent:{}});d?p.event.trigger(e,null,b):p.event.dispatch.call(b,e),e.isDefaultPrevented()&&c.preventDefault()}},p.event.handle=p.event.dispatch,p.removeEvent=e.removeEventListener?function(a,b,c){a.removeEventListener&&a.removeEventListener(b,c,!1)}:function(a,b,c){var d="on"+b;a.detachEvent&&(typeof a[d]=="undefined"&&(a[d]=null),a.detachEvent(d,c))},p.Event=function(a,b){if(this instanceof p.Event)a&&a.type?(this.originalEvent=a,this.type=a.type,this.isDefaultPrevented=a.defaultPrevented||a.returnValue===!1||a.getPreventDefault&&a.getPreventDefault()?bb:ba):this.type=a,b&&p.extend(this,b),this.timeStamp=a&&a.timeStamp||p.now(),this[p.expando]=!0;else return new p.Event(a,b)},p.Event.prototype={preventDefault:function(){this.isDefaultPrevented=bb;var a=this.originalEvent;if(!a)return;a.preventDefault?a.preventDefault():a.returnValue=!1},stopPropagation:function(){this.isPropagationStopped=bb;var a=this.originalEvent;if(!a)return;a.stopPropagation&&a.stopPropagation(),a.cancelBubble=!0},stopImmediatePropagation:function(){this.isImmediatePropagationStopped=bb,this.stopPropagation()},isDefaultPrevented:ba,isPropagationStopped:ba,isImmediatePropagationStopped:ba},p.each({mouseenter:"mouseover",mouseleave:"mouseout"},function(a,b){p.event.special[a]={delegateType:b,bindType:b,handle:function(a){var c,d=this,e=a.relatedTarget,f=a.handleObj,g=f.selector;if(!e||e!==d&&!p.contains(d,e))a.type=f.origType,c=f.handler.apply(this,arguments),a.type=b;return c}}}),p.support.submitBubbles||(p.event.special.submit={setup:function(){if(p.nodeName(this,"form"))return!1;p.event.add(this,"click._submit keypress._submit",function(a){var c=a.target,d=p.nodeName(c,"input")||p.nodeName(c,"button")?c.form:b;d&&!p._data(d,"_submit_attached")&&(p.event.add(d,"submit._submit",function(a){a._submit_bubble=!0}),p._data(d,"_submit_attached",!0))})},postDispatch:function(a){a._submit_bubble&&(delete a._submit_bubble,this.parentNode&&!a.isTrigger&&p.event.simulate("submit",this.parentNode,a,!0))},teardown:function(){if(p.nodeName(this,"form"))return!1;p.event.remove(this,"._submit")}}),p.support.changeBubbles||(p.event.special.change={setup:function(){if(V.test(this.nodeName)){if(this.type==="checkbox"||this.type==="radio")p.event.add(this,"propertychange._change",function(a){a.originalEvent.propertyName==="checked"&&(this._just_changed=!0)}),p.event.add(this,"click._change",function(a){this._just_changed&&!a.isTrigger&&(this._just_changed=!1),p.event.simulate("change",this,a,!0)});return!1}p.event.add(this,"beforeactivate._change",function(a){var b=a.target;V.test(b.nodeName)&&!p._data(b,"_change_attached")&&(p.event.add(b,"change._change",function(a){this.parentNode&&!a.isSimulated&&!a.isTrigger&&p.event.simulate("change",this.parentNode,a,!0)}),p._data(b,"_change_attached",!0))})},handle:function(a){var b=a.target;if(this!==b||a.isSimulated||a.isTrigger||b.type!=="radio"&&b.type!=="checkbox")return a.handleObj.handler.apply(this,arguments)},teardown:function(){return p.event.remove(this,"._change"),!V.test(this.nodeName)}}),p.support.focusinBubbles||p.each({focus:"focusin",blur:"focusout"},function(a,b){var c=0,d=function(a){p.event.simulate(b,a.target,p.event.fix(a),!0)};p.event.special[b]={setup:function(){c++===0&&e.addEventListener(a,d,!0)},teardown:function(){--c===0&&e.removeEventListener(a,d,!0)}}}),p.fn.extend({on:function(a,c,d,e,f){var g,h;if(typeof a=="object"){typeof c!="string"&&(d=d||c,c=b);for(h in a)this.on(h,c,d,a[h],f);return this}d==null&&e==null?(e=c,d=c=b):e==null&&(typeof c=="string"?(e=d,d=b):(e=d,d=c,c=b));if(e===!1)e=ba;else if(!e)return this;return f===1&&(g=e,e=function(a){return p().off(a),g.apply(this,arguments)},e.guid=g.guid||(g.guid=p.guid++)),this.each(function(){p.event.add(this,a,e,d,c)})},one:function(a,b,c,d){return this.on(a,b,c,d,1)},off:function(a,c,d){var e,f;if(a&&a.preventDefault&&a.handleObj)return e=a.handleObj,p(a.delegateTarget).off(e.namespace?e.origType+"."+e.namespace:e.origType,e.selector,e.handler),this;if(typeof a=="object"){for(f in a)this.off(f,c,a[f]);return this}if(c===!1||typeof c=="function")d=c,c=b;return d===!1&&(d=ba),this.each(function(){p.event.remove(this,a,d,c)})},bind:function(a,b,c){return this.on(a,null,b,c)},unbind:function(a,b){return this.off(a,null,b)},live:function(a,b,c){return p(this.context).on(a,this.selector,b,c),this},die:function(a,b){return p(this.context).off(a,this.selector||"**",b),this},delegate:function(a,b,c,d){return this.on(b,a,c,d)},undelegate:function(a,b,c){return arguments.length===1?this.off(a,"**"):this.off(b,a||"**",c)},trigger:function(a,b){return this.each(function(){p.event.trigger(a,b,this)})},triggerHandler:function(a,b){if(this[0])return p.event.trigger(a,b,this[0],!0)},toggle:function(a){var b=arguments,c=a.guid||p.guid++,d=0,e=function(c){var e=(p._data(this,"lastToggle"+a.guid)||0)%d;return p._data(this,"lastToggle"+a.guid,e+1),c.preventDefault(),b[e].apply(this,arguments)||!1};e.guid=c;while(d<b.length)b[d++].guid=c;return this.click(e)},hover:function(a,b){return this.mouseenter(a).mouseleave(b||a)}}),p.each("blur focus focusin focusout load resize scroll unload click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup error contextmenu".split(" "),function(a,b){p.fn[b]=function(a,c){return c==null&&(c=a,a=null),arguments.length>0?this.on(b,null,a,c):this.trigger(b)},Y.test(b)&&(p.event.fixHooks[b]=p.event.keyHooks),Z.test(b)&&(p.event.fixHooks[b]=p.event.mouseHooks)}),function(a,b){function bc(a,b,c,d){c=c||[],b=b||r;var e,f,i,j,k=b.nodeType;if(!a||typeof a!="string")return c;if(k!==1&&k!==9)return[];i=g(b);if(!i&&!d)if(e=P.exec(a))if(j=e[1]){if(k===9){f=b.getElementById(j);if(!f||!f.parentNode)return c;if(f.id===j)return c.push(f),c}else if(b.ownerDocument&&(f=b.ownerDocument.getElementById(j))&&h(b,f)&&f.id===j)return c.push(f),c}else{if(e[2])return w.apply(c,x.call(b.getElementsByTagName(a),0)),c;if((j=e[3])&&_&&b.getElementsByClassName)return w.apply(c,x.call(b.getElementsByClassName(j),0)),c}return bp(a.replace(L,"$1"),b,c,d,i)}function bd(a){return function(b){var c=b.nodeName.toLowerCase();return c==="input"&&b.type===a}}function be(a){return function(b){var c=b.nodeName.toLowerCase();return(c==="input"||c==="button")&&b.type===a}}function bf(a){return z(function(b){return b=+b,z(function(c,d){var e,f=a([],c.length,b),g=f.length;while(g--)c[e=f[g]]&&(c[e]=!(d[e]=c[e]))})})}function bg(a,b,c){if(a===b)return c;var d=a.nextSibling;while(d){if(d===b)return-1;d=d.nextSibling}return 1}function bh(a,b){var c,d,f,g,h,i,j,k=C[o][a];if(k)return b?0:k.slice(0);h=a,i=[],j=e.preFilter;while(h){if(!c||(d=M.exec(h)))d&&(h=h.slice(d[0].length)),i.push(f=[]);c=!1;if(d=N.exec(h))f.push(c=new q(d.shift())),h=h.slice(c.length),c.type=d[0].replace(L," ");for(g in e.filter)(d=W[g].exec(h))&&(!j[g]||(d=j[g](d,r,!0)))&&(f.push(c=new q(d.shift())),h=h.slice(c.length),c.type=g,c.matches=d);if(!c)break}return b?h.length:h?bc.error(a):C(a,i).slice(0)}function bi(a,b,d){var e=b.dir,f=d&&b.dir==="parentNode",g=u++;return b.first?function(b,c,d){while(b=b[e])if(f||b.nodeType===1)return a(b,c,d)}:function(b,d,h){if(!h){var i,j=t+" "+g+" ",k=j+c;while(b=b[e])if(f||b.nodeType===1){if((i=b[o])===k)return b.sizset;if(typeof i=="string"&&i.indexOf(j)===0){if(b.sizset)return b}else{b[o]=k;if(a(b,d,h))return b.sizset=!0,b;b.sizset=!1}}}else while(b=b[e])if(f||b.nodeType===1)if(a(b,d,h))return b}}function bj(a){return a.length>1?function(b,c,d){var e=a.length;while(e--)if(!a[e](b,c,d))return!1;return!0}:a[0]}function bk(a,b,c,d,e){var f,g=[],h=0,i=a.length,j=b!=null;for(;h<i;h++)if(f=a[h])if(!c||c(f,d,e))g.push(f),j&&b.push(h);return g}function bl(a,b,c,d,e,f){return d&&!d[o]&&(d=bl(d)),e&&!e[o]&&(e=bl(e,f)),z(function(f,g,h,i){if(f&&e)return;var j,k,l,m=[],n=[],o=g.length,p=f||bo(b||"*",h.nodeType?[h]:h,[],f),q=a&&(f||!b)?bk(p,m,a,h,i):p,r=c?e||(f?a:o||d)?[]:g:q;c&&c(q,r,h,i);if(d){l=bk(r,n),d(l,[],h,i),j=l.length;while(j--)if(k=l[j])r[n[j]]=!(q[n[j]]=k)}if(f){j=a&&r.length;while(j--)if(k=r[j])f[m[j]]=!(g[m[j]]=k)}else r=bk(r===g?r.splice(o,r.length):r),e?e(null,g,r,i):w.apply(g,r)})}function bm(a){var b,c,d,f=a.length,g=e.relative[a[0].type],h=g||e.relative[" "],i=g?1:0,j=bi(function(a){return a===b},h,!0),k=bi(function(a){return y.call(b,a)>-1},h,!0),m=[function(a,c,d){return!g&&(d||c!==l)||((b=c).nodeType?j(a,c,d):k(a,c,d))}];for(;i<f;i++)if(c=e.relative[a[i].type])m=[bi(bj(m),c)];else{c=e.filter[a[i].type].apply(null,a[i].matches);if(c[o]){d=++i;for(;d<f;d++)if(e.relative[a[d].type])break;return bl(i>1&&bj(m),i>1&&a.slice(0,i-1).join("").replace(L,"$1"),c,i<d&&bm(a.slice(i,d)),d<f&&bm(a=a.slice(d)),d<f&&a.join(""))}m.push(c)}return bj(m)}function bn(a,b){var d=b.length>0,f=a.length>0,g=function(h,i,j,k,m){var n,o,p,q=[],s=0,u="0",x=h&&[],y=m!=null,z=l,A=h||f&&e.find.TAG("*",m&&i.parentNode||i),B=t+=z==null?1:Math.E;y&&(l=i!==r&&i,c=g.el);for(;(n=A[u])!=null;u++){if(f&&n){for(o=0;p=a[o];o++)if(p(n,i,j)){k.push(n);break}y&&(t=B,c=++g.el)}d&&((n=!p&&n)&&s--,h&&x.push(n))}s+=u;if(d&&u!==s){for(o=0;p=b[o];o++)p(x,q,i,j);if(h){if(s>0)while(u--)!x[u]&&!q[u]&&(q[u]=v.call(k));q=bk(q)}w.apply(k,q),y&&!h&&q.length>0&&s+b.length>1&&bc.uniqueSort(k)}return y&&(t=B,l=z),x};return g.el=0,d?z(g):g}function bo(a,b,c,d){var e=0,f=b.length;for(;e<f;e++)bc(a,b[e],c,d);return c}function bp(a,b,c,d,f){var g,h,j,k,l,m=bh(a),n=m.length;if(!d&&m.length===1){h=m[0]=m[0].slice(0);if(h.length>2&&(j=h[0]).type==="ID"&&b.nodeType===9&&!f&&e.relative[h[1].type]){b=e.find.ID(j.matches[0].replace(V,""),b,f)[0];if(!b)return c;a=a.slice(h.shift().length)}for(g=W.POS.test(a)?-1:h.length-1;g>=0;g--){j=h[g];if(e.relative[k=j.type])break;if(l=e.find[k])if(d=l(j.matches[0].replace(V,""),R.test(h[0].type)&&b.parentNode||b,f)){h.splice(g,1),a=d.length&&h.join("");if(!a)return w.apply(c,x.call(d,0)),c;break}}}return i(a,m)(d,b,f,c,R.test(a)),c}function bq(){}var c,d,e,f,g,h,i,j,k,l,m=!0,n="undefined",o=("sizcache"+Math.random()).replace(".",""),q=String,r=a.document,s=r.documentElement,t=0,u=0,v=[].pop,w=[].push,x=[].slice,y=[].indexOf||function(a){var b=0,c=this.length;for(;b<c;b++)if(this[b]===a)return b;return-1},z=function(a,b){return a[o]=b==null||b,a},A=function(){var a={},b=[];return z(function(c,d){return b.push(c)>e.cacheLength&&delete a[b.shift()],a[c]=d},a)},B=A(),C=A(),D=A(),E="[\\x20\\t\\r\\n\\f]",F="(?:\\\\.|[-\\w]|[^\\x00-\\xa0])+",G=F.replace("w","w#"),H="([*^$|!~]?=)",I="\\["+E+"*("+F+")"+E+"*(?:"+H+E+"*(?:(['\"])((?:\\\\.|[^\\\\])*?)\\3|("+G+")|)|)"+E+"*\\]",J=":("+F+")(?:\\((?:(['\"])((?:\\\\.|[^\\\\])*?)\\2|([^()[\\]]*|(?:(?:"+I+")|[^:]|\\\\.)*|.*))\\)|)",K=":(even|odd|eq|gt|lt|nth|first|last)(?:\\("+E+"*((?:-\\d)?\\d*)"+E+"*\\)|)(?=[^-]|$)",L=new RegExp("^"+E+"+|((?:^|[^\\\\])(?:\\\\.)*)"+E+"+$","g"),M=new RegExp("^"+E+"*,"+E+"*"),N=new RegExp("^"+E+"*([\\x20\\t\\r\\n\\f>+~])"+E+"*"),O=new RegExp(J),P=/^(?:#([\w\-]+)|(\w+)|\.([\w\-]+))$/,Q=/^:not/,R=/[\x20\t\r\n\f]*[+~]/,S=/:not\($/,T=/h\d/i,U=/input|select|textarea|button/i,V=/\\(?!\\)/g,W={ID:new RegExp("^#("+F+")"),CLASS:new RegExp("^\\.("+F+")"),NAME:new RegExp("^\\[name=['\"]?("+F+")['\"]?\\]"),TAG:new RegExp("^("+F.replace("w","w*")+")"),ATTR:new RegExp("^"+I),PSEUDO:new RegExp("^"+J),POS:new RegExp(K,"i"),CHILD:new RegExp("^:(only|nth|first|last)-child(?:\\("+E+"*(even|odd|(([+-]|)(\\d*)n|)"+E+"*(?:([+-]|)"+E+"*(\\d+)|))"+E+"*\\)|)","i"),needsContext:new RegExp("^"+E+"*[>+~]|"+K,"i")},X=function(a){var b=r.createElement("div");try{return a(b)}catch(c){return!1}finally{b=null}},Y=X(function(a){return a.appendChild(r.createComment("")),!a.getElementsByTagName("*").length}),Z=X(function(a){return a.innerHTML="<a href='#'></a>",a.firstChild&&typeof a.firstChild.getAttribute!==n&&a.firstChild.getAttribute("href")==="#"}),$=X(function(a){a.innerHTML="<select></select>";var b=typeof a.lastChild.getAttribute("multiple");return b!=="boolean"&&b!=="string"}),_=X(function(a){return a.innerHTML="<div class='hidden e'></div><div class='hidden'></div>",!a.getElementsByClassName||!a.getElementsByClassName("e").length?!1:(a.lastChild.className="e",a.getElementsByClassName("e").length===2)}),ba=X(function(a){a.id=o+0,a.innerHTML="<a name='"+o+"'></a><div name='"+o+"'></div>",s.insertBefore(a,s.firstChild);var b=r.getElementsByName&&r.getElementsByName(o).length===2+r.getElementsByName(o+0).length;return d=!r.getElementById(o),s.removeChild(a),b});try{x.call(s.childNodes,0)[0].nodeType}catch(bb){x=function(a){var b,c=[];for(;b=this[a];a++)c.push(b);return c}}bc.matches=function(a,b){return bc(a,null,null,b)},bc.matchesSelector=function(a,b){return bc(b,null,null,[a]).length>0},f=bc.getText=function(a){var b,c="",d=0,e=a.nodeType;if(e){if(e===1||e===9||e===11){if(typeof a.textContent=="string")return a.textContent;for(a=a.firstChild;a;a=a.nextSibling)c+=f(a)}else if(e===3||e===4)return a.nodeValue}else for(;b=a[d];d++)c+=f(b);return c},g=bc.isXML=function(a){var b=a&&(a.ownerDocument||a).documentElement;return b?b.nodeName!=="HTML":!1},h=bc.contains=s.contains?function(a,b){var c=a.nodeType===9?a.documentElement:a,d=b&&b.parentNode;return a===d||!!(d&&d.nodeType===1&&c.contains&&c.contains(d))}:s.compareDocumentPosition?function(a,b){return b&&!!(a.compareDocumentPosition(b)&16)}:function(a,b){while(b=b.parentNode)if(b===a)return!0;return!1},bc.attr=function(a,b){var c,d=g(a);return d||(b=b.toLowerCase()),(c=e.attrHandle[b])?c(a):d||$?a.getAttribute(b):(c=a.getAttributeNode(b),c?typeof a[b]=="boolean"?a[b]?b:null:c.specified?c.value:null:null)},e=bc.selectors={cacheLength:50,createPseudo:z,match:W,attrHandle:Z?{}:{href:function(a){return a.getAttribute("href",2)},type:function(a){return a.getAttribute("type")}},find:{ID:d?function(a,b,c){if(typeof b.getElementById!==n&&!c){var d=b.getElementById(a);return d&&d.parentNode?[d]:[]}}:function(a,c,d){if(typeof c.getElementById!==n&&!d){var e=c.getElementById(a);return e?e.id===a||typeof e.getAttributeNode!==n&&e.getAttributeNode("id").value===a?[e]:b:[]}},TAG:Y?function(a,b){if(typeof b.getElementsByTagName!==n)return b.getElementsByTagName(a)}:function(a,b){var c=b.getElementsByTagName(a);if(a==="*"){var d,e=[],f=0;for(;d=c[f];f++)d.nodeType===1&&e.push(d);return e}return c},NAME:ba&&function(a,b){if(typeof b.getElementsByName!==n)return b.getElementsByName(name)},CLASS:_&&function(a,b,c){if(typeof b.getElementsByClassName!==n&&!c)return b.getElementsByClassName(a)}},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(a){return a[1]=a[1].replace(V,""),a[3]=(a[4]||a[5]||"").replace(V,""),a[2]==="~="&&(a[3]=" "+a[3]+" "),a.slice(0,4)},CHILD:function(a){return a[1]=a[1].toLowerCase(),a[1]==="nth"?(a[2]||bc.error(a[0]),a[3]=+(a[3]?a[4]+(a[5]||1):2*(a[2]==="even"||a[2]==="odd")),a[4]=+(a[6]+a[7]||a[2]==="odd")):a[2]&&bc.error(a[0]),a},PSEUDO:function(a){var b,c;if(W.CHILD.test(a[0]))return null;if(a[3])a[2]=a[3];else if(b=a[4])O.test(b)&&(c=bh(b,!0))&&(c=b.indexOf(")",b.length-c)-b.length)&&(b=b.slice(0,c),a[0]=a[0].slice(0,c)),a[2]=b;return a.slice(0,3)}},filter:{ID:d?function(a){return a=a.replace(V,""),function(b){return b.getAttribute("id")===a}}:function(a){return a=a.replace(V,""),function(b){var c=typeof b.getAttributeNode!==n&&b.getAttributeNode("id");return c&&c.value===a}},TAG:function(a){return a==="*"?function(){return!0}:(a=a.replace(V,"").toLowerCase(),function(b){return b.nodeName&&b.nodeName.toLowerCase()===a})},CLASS:function(a){var b=B[o][a];return b||(b=B(a,new RegExp("(^|"+E+")"+a+"("+E+"|$)"))),function(a){return b.test(a.className||typeof a.getAttribute!==n&&a.getAttribute("class")||"")}},ATTR:function(a,b,c){return function(d,e){var f=bc.attr(d,a);return f==null?b==="!=":b?(f+="",b==="="?f===c:b==="!="?f!==c:b==="^="?c&&f.indexOf(c)===0:b==="*="?c&&f.indexOf(c)>-1:b==="$="?c&&f.substr(f.length-c.length)===c:b==="~="?(" "+f+" ").indexOf(c)>-1:b==="|="?f===c||f.substr(0,c.length+1)===c+"-":!1):!0}},CHILD:function(a,b,c,d){return a==="nth"?function(a){var b,e,f=a.parentNode;if(c===1&&d===0)return!0;if(f){e=0;for(b=f.firstChild;b;b=b.nextSibling)if(b.nodeType===1){e++;if(a===b)break}}return e-=d,e===c||e%c===0&&e/c>=0}:function(b){var c=b;switch(a){case"only":case"first":while(c=c.previousSibling)if(c.nodeType===1)return!1;if(a==="first")return!0;c=b;case"last":while(c=c.nextSibling)if(c.nodeType===1)return!1;return!0}}},PSEUDO:function(a,b){var c,d=e.pseudos[a]||e.setFilters[a.toLowerCase()]||bc.error("unsupported pseudo: "+a);return d[o]?d(b):d.length>1?(c=[a,a,"",b],e.setFilters.hasOwnProperty(a.toLowerCase())?z(function(a,c){var e,f=d(a,b),g=f.length;while(g--)e=y.call(a,f[g]),a[e]=!(c[e]=f[g])}):function(a){return d(a,0,c)}):d}},pseudos:{not:z(function(a){var b=[],c=[],d=i(a.replace(L,"$1"));return d[o]?z(function(a,b,c,e){var f,g=d(a,null,e,[]),h=a.length;while(h--)if(f=g[h])a[h]=!(b[h]=f)}):function(a,e,f){return b[0]=a,d(b,null,f,c),!c.pop()}}),has:z(function(a){return function(b){return bc(a,b).length>0}}),contains:z(function(a){return function(b){return(b.textContent||b.innerText||f(b)).indexOf(a)>-1}}),enabled:function(a){return a.disabled===!1},disabled:function(a){return a.disabled===!0},checked:function(a){var b=a.nodeName.toLowerCase();return b==="input"&&!!a.checked||b==="option"&&!!a.selected},selected:function(a){return a.parentNode&&a.parentNode.selectedIndex,a.selected===!0},parent:function(a){return!e.pseudos.empty(a)},empty:function(a){var b;a=a.firstChild;while(a){if(a.nodeName>"@"||(b=a.nodeType)===3||b===4)return!1;a=a.nextSibling}return!0},header:function(a){return T.test(a.nodeName)},text:function(a){var b,c;return a.nodeName.toLowerCase()==="input"&&(b=a.type)==="text"&&((c=a.getAttribute("type"))==null||c.toLowerCase()===b)},radio:bd("radio"),checkbox:bd("checkbox"),file:bd("file"),password:bd("password"),image:bd("image"),submit:be("submit"),reset:be("reset"),button:function(a){var b=a.nodeName.toLowerCase();return b==="input"&&a.type==="button"||b==="button"},input:function(a){return U.test(a.nodeName)},focus:function(a){var b=a.ownerDocument;return a===b.activeElement&&(!b.hasFocus||b.hasFocus())&&(!!a.type||!!a.href)},active:function(a){return a===a.ownerDocument.activeElement},first:bf(function(a,b,c){return[0]}),last:bf(function(a,b,c){return[b-1]}),eq:bf(function(a,b,c){return[c<0?c+b:c]}),even:bf(function(a,b,c){for(var d=0;d<b;d+=2)a.push(d);return a}),odd:bf(function(a,b,c){for(var d=1;d<b;d+=2)a.push(d);return a}),lt:bf(function(a,b,c){for(var d=c<0?c+b:c;--d>=0;)a.push(d);return a}),gt:bf(function(a,b,c){for(var d=c<0?c+b:c;++d<b;)a.push(d);return a})}},j=s.compareDocumentPosition?function(a,b){return a===b?(k=!0,0):(!a.compareDocumentPosition||!b.compareDocumentPosition?a.compareDocumentPosition:a.compareDocumentPosition(b)&4)?-1:1}:function(a,b){if(a===b)return k=!0,0;if(a.sourceIndex&&b.sourceIndex)return a.sourceIndex-b.sourceIndex;var c,d,e=[],f=[],g=a.parentNode,h=b.parentNode,i=g;if(g===h)return bg(a,b);if(!g)return-1;if(!h)return 1;while(i)e.unshift(i),i=i.parentNode;i=h;while(i)f.unshift(i),i=i.parentNode;c=e.length,d=f.length;for(var j=0;j<c&&j<d;j++)if(e[j]!==f[j])return bg(e[j],f[j]);return j===c?bg(a,f[j],-1):bg(e[j],b,1)},[0,0].sort(j),m=!k,bc.uniqueSort=function(a){var b,c=1;k=m,a.sort(j);if(k)for(;b=a[c];c++)b===a[c-1]&&a.splice(c--,1);return a},bc.error=function(a){throw new Error("Syntax error, unrecognized expression: "+a)},i=bc.compile=function(a,b){var c,d=[],e=[],f=D[o][a];if(!f){b||(b=bh(a)),c=b.length;while(c--)f=bm(b[c]),f[o]?d.push(f):e.push(f);f=D(a,bn(e,d))}return f},r.querySelectorAll&&function(){var a,b=bp,c=/'|\\/g,d=/\=[\x20\t\r\n\f]*([^'"\]]*)[\x20\t\r\n\f]*\]/g,e=[":focus"],f=[":active",":focus"],h=s.matchesSelector||s.mozMatchesSelector||s.webkitMatchesSelector||s.oMatchesSelector||s.msMatchesSelector;X(function(a){a.innerHTML="<select><option selected=''></option></select>",a.querySelectorAll("[selected]").length||e.push("\\["+E+"*(?:checked|disabled|ismap|multiple|readonly|selected|value)"),a.querySelectorAll(":checked").length||e.push(":checked")}),X(function(a){a.innerHTML="<p test=''></p>",a.querySelectorAll("[test^='']").length&&e.push("[*^$]="+E+"*(?:\"\"|'')"),a.innerHTML="<input type='hidden'/>",a.querySelectorAll(":enabled").length||e.push(":enabled",":disabled")}),e=new RegExp(e.join("|")),bp=function(a,d,f,g,h){if(!g&&!h&&(!e||!e.test(a))){var i,j,k=!0,l=o,m=d,n=d.nodeType===9&&a;if(d.nodeType===1&&d.nodeName.toLowerCase()!=="object"){i=bh(a),(k=d.getAttribute("id"))?l=k.replace(c,"\\$&"):d.setAttribute("id",l),l="[id='"+l+"'] ",j=i.length;while(j--)i[j]=l+i[j].join("");m=R.test(a)&&d.parentNode||d,n=i.join(",")}if(n)try{return w.apply(f,x.call(m.querySelectorAll(n),0)),f}catch(p){}finally{k||d.removeAttribute("id")}}return b(a,d,f,g,h)},h&&(X(function(b){a=h.call(b,"div");try{h.call(b,"[test!='']:sizzle"),f.push("!=",J)}catch(c){}}),f=new RegExp(f.join("|")),bc.matchesSelector=function(b,c){c=c.replace(d,"='$1']");if(!g(b)&&!f.test(c)&&(!e||!e.test(c)))try{var i=h.call(b,c);if(i||a||b.document&&b.document.nodeType!==11)return i}catch(j){}return bc(c,null,null,[b]).length>0})}(),e.pseudos.nth=e.pseudos.eq,e.filters=bq.prototype=e.pseudos,e.setFilters=new bq,bc.attr=p.attr,p.find=bc,p.expr=bc.selectors,p.expr[":"]=p.expr.pseudos,p.unique=bc.uniqueSort,p.text=bc.getText,p.isXMLDoc=bc.isXML,p.contains=bc.contains}(a);var bc=/Until$/,bd=/^(?:parents|prev(?:Until|All))/,be=/^.[^:#\[\.,]*$/,bf=p.expr.match.needsContext,bg={children:!0,contents:!0,next:!0,prev:!0};p.fn.extend({find:function(a){var b,c,d,e,f,g,h=this;if(typeof a!="string")return p(a).filter(function(){for(b=0,c=h.length;b<c;b++)if(p.contains(h[b],this))return!0});g=this.pushStack("","find",a);for(b=0,c=this.length;b<c;b++){d=g.length,p.find(a,this[b],g);if(b>0)for(e=d;e<g.length;e++)for(f=0;f<d;f++)if(g[f]===g[e]){g.splice(e--,1);break}}return g},has:function(a){var b,c=p(a,this),d=c.length;return this.filter(function(){for(b=0;b<d;b++)if(p.contains(this,c[b]))return!0})},not:function(a){return this.pushStack(bj(this,a,!1),"not",a)},filter:function(a){return this.pushStack(bj(this,a,!0),"filter",a)},is:function(a){return!!a&&(typeof a=="string"?bf.test(a)?p(a,this.context).index(this[0])>=0:p.filter(a,this).length>0:this.filter(a).length>0)},closest:function(a,b){var c,d=0,e=this.length,f=[],g=bf.test(a)||typeof a!="string"?p(a,b||this.context):0;for(;d<e;d++){c=this[d];while(c&&c.ownerDocument&&c!==b&&c.nodeType!==11){if(g?g.index(c)>-1:p.find.matchesSelector(c,a)){f.push(c);break}c=c.parentNode}}return f=f.length>1?p.unique(f):f,this.pushStack(f,"closest",a)},index:function(a){return a?typeof a=="string"?p.inArray(this[0],p(a)):p.inArray(a.jquery?a[0]:a,this):this[0]&&this[0].parentNode?this.prevAll().length:-1},add:function(a,b){var c=typeof a=="string"?p(a,b):p.makeArray(a&&a.nodeType?[a]:a),d=p.merge(this.get(),c);return this.pushStack(bh(c[0])||bh(d[0])?d:p.unique(d))},addBack:function(a){return this.add(a==null?this.prevObject:this.prevObject.filter(a))}}),p.fn.andSelf=p.fn.addBack,p.each({parent:function(a){var b=a.parentNode;return b&&b.nodeType!==11?b:null},parents:function(a){return p.dir(a,"parentNode")},parentsUntil:function(a,b,c){return p.dir(a,"parentNode",c)},next:function(a){return bi(a,"nextSibling")},prev:function(a){return bi(a,"previousSibling")},nextAll:function(a){return p.dir(a,"nextSibling")},prevAll:function(a){return p.dir(a,"previousSibling")},nextUntil:function(a,b,c){return p.dir(a,"nextSibling",c)},prevUntil:function(a,b,c){return p.dir(a,"previousSibling",c)},siblings:function(a){return p.sibling((a.parentNode||{}).firstChild,a)},children:function(a){return p.sibling(a.firstChild)},contents:function(a){return p.nodeName(a,"iframe")?a.contentDocument||a.contentWindow.document:p.merge([],a.childNodes)}},function(a,b){p.fn[a]=function(c,d){var e=p.map(this,b,c);return bc.test(a)||(d=c),d&&typeof d=="string"&&(e=p.filter(d,e)),e=this.length>1&&!bg[a]?p.unique(e):e,this.length>1&&bd.test(a)&&(e=e.reverse()),this.pushStack(e,a,k.call(arguments).join(","))}}),p.extend({filter:function(a,b,c){return c&&(a=":not("+a+")"),b.length===1?p.find.matchesSelector(b[0],a)?[b[0]]:[]:p.find.matches(a,b)},dir:function(a,c,d){var e=[],f=a[c];while(f&&f.nodeType!==9&&(d===b||f.nodeType!==1||!p(f).is(d)))f.nodeType===1&&e.push(f),f=f[c];return e},sibling:function(a,b){var c=[];for(;a;a=a.nextSibling)a.nodeType===1&&a!==b&&c.push(a);return c}});var bl="abbr|article|aside|audio|bdi|canvas|data|datalist|details|figcaption|figure|footer|header|hgroup|mark|meter|nav|output|progress|section|summary|time|video",bm=/ jQuery\d+="(?:null|\d+)"/g,bn=/^\s+/,bo=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/gi,bp=/<([\w:]+)/,bq=/<tbody/i,br=/<|&#?\w+;/,bs=/<(?:script|style|link)/i,bt=/<(?:script|object|embed|option|style)/i,bu=new RegExp("<(?:"+bl+")[\\s/>]","i"),bv=/^(?:checkbox|radio)$/,bw=/checked\s*(?:[^=]|=\s*.checked.)/i,bx=/\/(java|ecma)script/i,by=/^\s*<!(?:\[CDATA\[|\-\-)|[\]\-]{2}>\s*$/g,bz={option:[1,"<select multiple='multiple'>","</select>"],legend:[1,"<fieldset>","</fieldset>"],thead:[1,"<table>","</table>"],tr:[2,"<table><tbody>","</tbody></table>"],td:[3,"<table><tbody><tr>","</tr></tbody></table>"],col:[2,"<table><tbody></tbody><colgroup>","</colgroup></table>"],area:[1,"<map>","</map>"],_default:[0,"",""]},bA=bk(e),bB=bA.appendChild(e.createElement("div"));bz.optgroup=bz.option,bz.tbody=bz.tfoot=bz.colgroup=bz.caption=bz.thead,bz.th=bz.td,p.support.htmlSerialize||(bz._default=[1,"X<div>","</div>"]),p.fn.extend({text:function(a){return p.access(this,function(a){return a===b?p.text(this):this.empty().append((this[0]&&this[0].ownerDocument||e).createTextNode(a))},null,a,arguments.length)},wrapAll:function(a){if(p.isFunction(a))return this.each(function(b){p(this).wrapAll(a.call(this,b))});if(this[0]){var b=p(a,this[0].ownerDocument).eq(0).clone(!0);this[0].parentNode&&b.insertBefore(this[0]),b.map(function(){var a=this;while(a.firstChild&&a.firstChild.nodeType===1)a=a.firstChild;return a}).append(this)}return this},wrapInner:function(a){return p.isFunction(a)?this.each(function(b){p(this).wrapInner(a.call(this,b))}):this.each(function(){var b=p(this),c=b.contents();c.length?c.wrapAll(a):b.append(a)})},wrap:function(a){var b=p.isFunction(a);return this.each(function(c){p(this).wrapAll(b?a.call(this,c):a)})},unwrap:function(){return this.parent().each(function(){p.nodeName(this,"body")||p(this).replaceWith(this.childNodes)}).end()},append:function(){return this.domManip(arguments,!0,function(a){(this.nodeType===1||this.nodeType===11)&&this.appendChild(a)})},prepend:function(){return this.domManip(arguments,!0,function(a){(this.nodeType===1||this.nodeType===11)&&this.insertBefore(a,this.firstChild)})},before:function(){if(!bh(this[0]))return this.domManip(arguments,!1,function(a){this.parentNode.insertBefore(a,this)});if(arguments.length){var a=p.clean(arguments);return this.pushStack(p.merge(a,this),"before",this.selector)}},after:function(){if(!bh(this[0]))return this.domManip(arguments,!1,function(a){this.parentNode.insertBefore(a,this.nextSibling)});if(arguments.length){var a=p.clean(arguments);return this.pushStack(p.merge(this,a),"after",this.selector)}},remove:function(a,b){var c,d=0;for(;(c=this[d])!=null;d++)if(!a||p.filter(a,[c]).length)!b&&c.nodeType===1&&(p.cleanData(c.getElementsByTagName("*")),p.cleanData([c])),c.parentNode&&c.parentNode.removeChild(c);return this},empty:function(){var a,b=0;for(;(a=this[b])!=null;b++){a.nodeType===1&&p.cleanData(a.getElementsByTagName("*"));while(a.firstChild)a.removeChild(a.firstChild)}return this},clone:function(a,b){return a=a==null?!1:a,b=b==null?a:b,this.map(function(){return p.clone(this,a,b)})},html:function(a){return p.access(this,function(a){var c=this[0]||{},d=0,e=this.length;if(a===b)return c.nodeType===1?c.innerHTML.replace(bm,""):b;if(typeof a=="string"&&!bs.test(a)&&(p.support.htmlSerialize||!bu.test(a))&&(p.support.leadingWhitespace||!bn.test(a))&&!bz[(bp.exec(a)||["",""])[1].toLowerCase()]){a=a.replace(bo,"<$1></$2>");try{for(;d<e;d++)c=this[d]||{},c.nodeType===1&&(p.cleanData(c.getElementsByTagName("*")),c.innerHTML=a);c=0}catch(f){}}c&&this.empty().append(a)},null,a,arguments.length)},replaceWith:function(a){return bh(this[0])?this.length?this.pushStack(p(p.isFunction(a)?a():a),"replaceWith",a):this:p.isFunction(a)?this.each(function(b){var c=p(this),d=c.html();c.replaceWith(a.call(this,b,d))}):(typeof a!="string"&&(a=p(a).detach()),this.each(function(){var b=this.nextSibling,c=this.parentNode;p(this).remove(),b?p(b).before(a):p(c).append(a)}))},detach:function(a){return this.remove(a,!0)},domManip:function(a,c,d){a=[].concat.apply([],a);var e,f,g,h,i=0,j=a[0],k=[],l=this.length;if(!p.support.checkClone&&l>1&&typeof j=="string"&&bw.test(j))return this.each(function(){p(this).domManip(a,c,d)});if(p.isFunction(j))return this.each(function(e){var f=p(this);a[0]=j.call(this,e,c?f.html():b),f.domManip(a,c,d)});if(this[0]){e=p.buildFragment(a,this,k),g=e.fragment,f=g.firstChild,g.childNodes.length===1&&(g=f);if(f){c=c&&p.nodeName(f,"tr");for(h=e.cacheable||l-1;i<l;i++)d.call(c&&p.nodeName(this[i],"table")?bC(this[i],"tbody"):this[i],i===h?g:p.clone(g,!0,!0))}g=f=null,k.length&&p.each(k,function(a,b){b.src?p.ajax?p.ajax({url:b.src,type:"GET",dataType:"script",async:!1,global:!1,"throws":!0}):p.error("no ajax"):p.globalEval((b.text||b.textContent||b.innerHTML||"").replace(by,"")),b.parentNode&&b.parentNode.removeChild(b)})}return this}}),p.buildFragment=function(a,c,d){var f,g,h,i=a[0];return c=c||e,c=!c.nodeType&&c[0]||c,c=c.ownerDocument||c,a.length===1&&typeof i=="string"&&i.length<512&&c===e&&i.charAt(0)==="<"&&!bt.test(i)&&(p.support.checkClone||!bw.test(i))&&(p.support.html5Clone||!bu.test(i))&&(g=!0,f=p.fragments[i],h=f!==b),f||(f=c.createDocumentFragment(),p.clean(a,c,f,d),g&&(p.fragments[i]=h&&f)),{fragment:f,cacheable:g}},p.fragments={},p.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(a,b){p.fn[a]=function(c){var d,e=0,f=[],g=p(c),h=g.length,i=this.length===1&&this[0].parentNode;if((i==null||i&&i.nodeType===11&&i.childNodes.length===1)&&h===1)return g[b](this[0]),this;for(;e<h;e++)d=(e>0?this.clone(!0):this).get(),p(g[e])[b](d),f=f.concat(d);return this.pushStack(f,a,g.selector)}}),p.extend({clone:function(a,b,c){var d,e,f,g;p.support.html5Clone||p.isXMLDoc(a)||!bu.test("<"+a.nodeName+">")?g=a.cloneNode(!0):(bB.innerHTML=a.outerHTML,bB.removeChild(g=bB.firstChild));if((!p.support.noCloneEvent||!p.support.noCloneChecked)&&(a.nodeType===1||a.nodeType===11)&&!p.isXMLDoc(a)){bE(a,g),d=bF(a),e=bF(g);for(f=0;d[f];++f)e[f]&&bE(d[f],e[f])}if(b){bD(a,g);if(c){d=bF(a),e=bF(g);for(f=0;d[f];++f)bD(d[f],e[f])}}return d=e=null,g},clean:function(a,b,c,d){var f,g,h,i,j,k,l,m,n,o,q,r,s=b===e&&bA,t=[];if(!b||typeof b.createDocumentFragment=="undefined")b=e;for(f=0;(h=a[f])!=null;f++){typeof h=="number"&&(h+="");if(!h)continue;if(typeof h=="string")if(!br.test(h))h=b.createTextNode(h);else{s=s||bk(b),l=b.createElement("div"),s.appendChild(l),h=h.replace(bo,"<$1></$2>"),i=(bp.exec(h)||["",""])[1].toLowerCase(),j=bz[i]||bz._default,k=j[0],l.innerHTML=j[1]+h+j[2];while(k--)l=l.lastChild;if(!p.support.tbody){m=bq.test(h),n=i==="table"&&!m?l.firstChild&&l.firstChild.childNodes:j[1]==="<table>"&&!m?l.childNodes:[];for(g=n.length-1;g>=0;--g)p.nodeName(n[g],"tbody")&&!n[g].childNodes.length&&n[g].parentNode.removeChild(n[g])}!p.support.leadingWhitespace&&bn.test(h)&&l.insertBefore(b.createTextNode(bn.exec(h)[0]),l.firstChild),h=l.childNodes,l.parentNode.removeChild(l)}h.nodeType?t.push(h):p.merge(t,h)}l&&(h=l=s=null);if(!p.support.appendChecked)for(f=0;(h=t[f])!=null;f++)p.nodeName(h,"input")?bG(h):typeof h.getElementsByTagName!="undefined"&&p.grep(h.getElementsByTagName("input"),bG);if(c){q=function(a){if(!a.type||bx.test(a.type))return d?d.push(a.parentNode?a.parentNode.removeChild(a):a):c.appendChild(a)};for(f=0;(h=t[f])!=null;f++)if(!p.nodeName(h,"script")||!q(h))c.appendChild(h),typeof h.getElementsByTagName!="undefined"&&(r=p.grep(p.merge([],h.getElementsByTagName("script")),q),t.splice.apply(t,[f+1,0].concat(r)),f+=r.length)}return t},cleanData:function(a,b){var c,d,e,f,g=0,h=p.expando,i=p.cache,j=p.support.deleteExpando,k=p.event.special;for(;(e=a[g])!=null;g++)if(b||p.acceptData(e)){d=e[h],c=d&&i[d];if(c){if(c.events)for(f in c.events)k[f]?p.event.remove(e,f):p.removeEvent(e,f,c.handle);i[d]&&(delete i[d],j?delete e[h]:e.removeAttribute?e.removeAttribute(h):e[h]=null,p.deletedIds.push(d))}}}}),function(){var a,b;p.uaMatch=function(a){a=a.toLowerCase();var b=/(chrome)[ \/]([\w.]+)/.exec(a)||/(webkit)[ \/]([\w.]+)/.exec(a)||/(opera)(?:.*version|)[ \/]([\w.]+)/.exec(a)||/(msie) ([\w.]+)/.exec(a)||a.indexOf("compatible")<0&&/(mozilla)(?:.*? rv:([\w.]+)|)/.exec(a)||[];return{browser:b[1]||"",version:b[2]||"0"}},a=p.uaMatch(g.userAgent),b={},a.browser&&(b[a.browser]=!0,b.version=a.version),b.chrome?b.webkit=!0:b.webkit&&(b.safari=!0),p.browser=b,p.sub=function(){function a(b,c){return new a.fn.init(b,c)}p.extend(!0,a,this),a.superclass=this,a.fn=a.prototype=this(),a.fn.constructor=a,a.sub=this.sub,a.fn.init=function c(c,d){return d&&d instanceof p&&!(d instanceof a)&&(d=a(d)),p.fn.init.call(this,c,d,b)},a.fn.init.prototype=a.fn;var b=a(e);return a}}();var bH,bI,bJ,bK=/alpha\([^)]*\)/i,bL=/opacity=([^)]*)/,bM=/^(top|right|bottom|left)$/,bN=/^(none|table(?!-c[ea]).+)/,bO=/^margin/,bP=new RegExp("^("+q+")(.*)$","i"),bQ=new RegExp("^("+q+")(?!px)[a-z%]+$","i"),bR=new RegExp("^([-+])=("+q+")","i"),bS={},bT={position:"absolute",visibility:"hidden",display:"block"},bU={letterSpacing:0,fontWeight:400},bV=["Top","Right","Bottom","Left"],bW=["Webkit","O","Moz","ms"],bX=p.fn.toggle;p.fn.extend({css:function(a,c){return p.access(this,function(a,c,d){return d!==b?p.style(a,c,d):p.css(a,c)},a,c,arguments.length>1)},show:function(){return b$(this,!0)},hide:function(){return b$(this)},toggle:function(a,b){var c=typeof a=="boolean";return p.isFunction(a)&&p.isFunction(b)?bX.apply(this,arguments):this.each(function(){(c?a:bZ(this))?p(this).show():p(this).hide()})}}),p.extend({cssHooks:{opacity:{get:function(a,b){if(b){var c=bH(a,"opacity");return c===""?"1":c}}}},cssNumber:{fillOpacity:!0,fontWeight:!0,lineHeight:!0,opacity:!0,orphans:!0,widows:!0,zIndex:!0,zoom:!0},cssProps:{"float":p.support.cssFloat?"cssFloat":"styleFloat"},style:function(a,c,d,e){if(!a||a.nodeType===3||a.nodeType===8||!a.style)return;var f,g,h,i=p.camelCase(c),j=a.style;c=p.cssProps[i]||(p.cssProps[i]=bY(j,i)),h=p.cssHooks[c]||p.cssHooks[i];if(d===b)return h&&"get"in h&&(f=h.get(a,!1,e))!==b?f:j[c];g=typeof d,g==="string"&&(f=bR.exec(d))&&(d=(f[1]+1)*f[2]+parseFloat(p.css(a,c)),g="number");if(d==null||g==="number"&&isNaN(d))return;g==="number"&&!p.cssNumber[i]&&(d+="px");if(!h||!("set"in h)||(d=h.set(a,d,e))!==b)try{j[c]=d}catch(k){}},css:function(a,c,d,e){var f,g,h,i=p.camelCase(c);return c=p.cssProps[i]||(p.cssProps[i]=bY(a.style,i)),h=p.cssHooks[c]||p.cssHooks[i],h&&"get"in h&&(f=h.get(a,!0,e)),f===b&&(f=bH(a,c)),f==="normal"&&c in bU&&(f=bU[c]),d||e!==b?(g=parseFloat(f),d||p.isNumeric(g)?g||0:f):f},swap:function(a,b,c){var d,e,f={};for(e in b)f[e]=a.style[e],a.style[e]=b[e];d=c.call(a);for(e in b)a.style[e]=f[e];return d}}),a.getComputedStyle?bH=function(b,c){var d,e,f,g,h=a.getComputedStyle(b,null),i=b.style;return h&&(d=h[c],d===""&&!p.contains(b.ownerDocument,b)&&(d=p.style(b,c)),bQ.test(d)&&bO.test(c)&&(e=i.width,f=i.minWidth,g=i.maxWidth,i.minWidth=i.maxWidth=i.width=d,d=h.width,i.width=e,i.minWidth=f,i.maxWidth=g)),d}:e.documentElement.currentStyle&&(bH=function(a,b){var c,d,e=a.currentStyle&&a.currentStyle[b],f=a.style;return e==null&&f&&f[b]&&(e=f[b]),bQ.test(e)&&!bM.test(b)&&(c=f.left,d=a.runtimeStyle&&a.runtimeStyle.left,d&&(a.runtimeStyle.left=a.currentStyle.left),f.left=b==="fontSize"?"1em":e,e=f.pixelLeft+"px",f.left=c,d&&(a.runtimeStyle.left=d)),e===""?"auto":e}),p.each(["height","width"],function(a,b){p.cssHooks[b]={get:function(a,c,d){if(c)return a.offsetWidth===0&&bN.test(bH(a,"display"))?p.swap(a,bT,function(){return cb(a,b,d)}):cb(a,b,d)},set:function(a,c,d){return b_(a,c,d?ca(a,b,d,p.support.boxSizing&&p.css(a,"boxSizing")==="border-box"):0)}}}),p.support.opacity||(p.cssHooks.opacity={get:function(a,b){return bL.test((b&&a.currentStyle?a.currentStyle.filter:a.style.filter)||"")?.01*parseFloat(RegExp.$1)+"":b?"1":""},set:function(a,b){var c=a.style,d=a.currentStyle,e=p.isNumeric(b)?"alpha(opacity="+b*100+")":"",f=d&&d.filter||c.filter||"";c.zoom=1;if(b>=1&&p.trim(f.replace(bK,""))===""&&c.removeAttribute){c.removeAttribute("filter");if(d&&!d.filter)return}c.filter=bK.test(f)?f.replace(bK,e):f+" "+e}}),p(function(){p.support.reliableMarginRight||(p.cssHooks.marginRight={get:function(a,b){return p.swap(a,{display:"inline-block"},function(){if(b)return bH(a,"marginRight")})}}),!p.support.pixelPosition&&p.fn.position&&p.each(["top","left"],function(a,b){p.cssHooks[b]={get:function(a,c){if(c){var d=bH(a,b);return bQ.test(d)?p(a).position()[b]+"px":d}}}})}),p.expr&&p.expr.filters&&(p.expr.filters.hidden=function(a){return a.offsetWidth===0&&a.offsetHeight===0||!p.support.reliableHiddenOffsets&&(a.style&&a.style.display||bH(a,"display"))==="none"},p.expr.filters.visible=function(a){return!p.expr.filters.hidden(a)}),p.each({margin:"",padding:"",border:"Width"},function(a,b){p.cssHooks[a+b]={expand:function(c){var d,e=typeof c=="string"?c.split(" "):[c],f={};for(d=0;d<4;d++)f[a+bV[d]+b]=e[d]||e[d-2]||e[0];return f}},bO.test(a)||(p.cssHooks[a+b].set=b_)});var cd=/%20/g,ce=/\[\]$/,cf=/\r?\n/g,cg=/^(?:color|date|datetime|datetime-local|email|hidden|month|number|password|range|search|tel|text|time|url|week)$/i,ch=/^(?:select|textarea)/i;p.fn.extend({serialize:function(){return p.param(this.serializeArray())},serializeArray:function(){return this.map(function(){return this.elements?p.makeArray(this.elements):this}).filter(function(){return this.name&&!this.disabled&&(this.checked||ch.test(this.nodeName)||cg.test(this.type))}).map(function(a,b){var c=p(this).val();return c==null?null:p.isArray(c)?p.map(c,function(a,c){return{name:b.name,value:a.replace(cf,"\r\n")}}):{name:b.name,value:c.replace(cf,"\r\n")}}).get()}}),p.param=function(a,c){var d,e=[],f=function(a,b){b=p.isFunction(b)?b():b==null?"":b,e[e.length]=encodeURIComponent(a)+"="+encodeURIComponent(b)};c===b&&(c=p.ajaxSettings&&p.ajaxSettings.traditional);if(p.isArray(a)||a.jquery&&!p.isPlainObject(a))p.each(a,function(){f(this.name,this.value)});else for(d in a)ci(d,a[d],c,f);return e.join("&").replace(cd,"+")};var cj,ck,cl=/#.*$/,cm=/^(.*?):[ \t]*([^\r\n]*)\r?$/mg,cn=/^(?:about|app|app\-storage|.+\-extension|file|res|widget):$/,co=/^(?:GET|HEAD)$/,cp=/^\/\//,cq=/\?/,cr=/<script\b[^<]*(?:(?!<\/script>)<[^<]*)*<\/script>/gi,cs=/([?&])_=[^&]*/,ct=/^([\w\+\.\-]+:)(?:\/\/([^\/?#:]*)(?::(\d+)|)|)/,cu=p.fn.load,cv={},cw={},cx=["*/"]+["*"];try{ck=f.href}catch(cy){ck=e.createElement("a"),ck.href="",ck=ck.href}cj=ct.exec(ck.toLowerCase())||[],p.fn.load=function(a,c,d){if(typeof a!="string"&&cu)return cu.apply(this,arguments);if(!this.length)return this;var e,f,g,h=this,i=a.indexOf(" ");return i>=0&&(e=a.slice(i,a.length),a=a.slice(0,i)),p.isFunction(c)?(d=c,c=b):c&&typeof c=="object"&&(f="POST"),p.ajax({url:a,type:f,dataType:"html",data:c,complete:function(a,b){d&&h.each(d,g||[a.responseText,b,a])}}).done(function(a){g=arguments,h.html(e?p("<div>").append(a.replace(cr,"")).find(e):a)}),this},p.each("ajaxStart ajaxStop ajaxComplete ajaxError ajaxSuccess ajaxSend".split(" "),function(a,b){p.fn[b]=function(a){return this.on(b,a)}}),p.each(["get","post"],function(a,c){p[c]=function(a,d,e,f){return p.isFunction(d)&&(f=f||e,e=d,d=b),p.ajax({type:c,url:a,data:d,success:e,dataType:f})}}),p.extend({getScript:function(a,c){return p.get(a,b,c,"script")},getJSON:function(a,b,c){return p.get(a,b,c,"json")},ajaxSetup:function(a,b){return b?cB(a,p.ajaxSettings):(b=a,a=p.ajaxSettings),cB(a,b),a},ajaxSettings:{url:ck,isLocal:cn.test(cj[1]),global:!0,type:"GET",contentType:"application/x-www-form-urlencoded; charset=UTF-8",processData:!0,async:!0,accepts:{xml:"application/xml, text/xml",html:"text/html",text:"text/plain",json:"application/json, text/javascript","*":cx},contents:{xml:/xml/,html:/html/,json:/json/},responseFields:{xml:"responseXML",text:"responseText"},converters:{"* text":a.String,"text html":!0,"text json":p.parseJSON,"text xml":p.parseXML},flatOptions:{context:!0,url:!0}},ajaxPrefilter:cz(cv),ajaxTransport:cz(cw),ajax:function(a,c){function y(a,c,f,i){var k,s,t,u,w,y=c;if(v===2)return;v=2,h&&clearTimeout(h),g=b,e=i||"",x.readyState=a>0?4:0,f&&(u=cC(l,x,f));if(a>=200&&a<300||a===304)l.ifModified&&(w=x.getResponseHeader("Last-Modified"),w&&(p.lastModified[d]=w),w=x.getResponseHeader("Etag"),w&&(p.etag[d]=w)),a===304?(y="notmodified",k=!0):(k=cD(l,u),y=k.state,s=k.data,t=k.error,k=!t);else{t=y;if(!y||a)y="error",a<0&&(a=0)}x.status=a,x.statusText=(c||y)+"",k?o.resolveWith(m,[s,y,x]):o.rejectWith(m,[x,y,t]),x.statusCode(r),r=b,j&&n.trigger("ajax"+(k?"Success":"Error"),[x,l,k?s:t]),q.fireWith(m,[x,y]),j&&(n.trigger("ajaxComplete",[x,l]),--p.active||p.event.trigger("ajaxStop"))}typeof a=="object"&&(c=a,a=b),c=c||{};var d,e,f,g,h,i,j,k,l=p.ajaxSetup({},c),m=l.context||l,n=m!==l&&(m.nodeType||m instanceof p)?p(m):p.event,o=p.Deferred(),q=p.Callbacks("once memory"),r=l.statusCode||{},t={},u={},v=0,w="canceled",x={readyState:0,setRequestHeader:function(a,b){if(!v){var c=a.toLowerCase();a=u[c]=u[c]||a,t[a]=b}return this},getAllResponseHeaders:function(){return v===2?e:null},getResponseHeader:function(a){var c;if(v===2){if(!f){f={};while(c=cm.exec(e))f[c[1].toLowerCase()]=c[2]}c=f[a.toLowerCase()]}return c===b?null:c},overrideMimeType:function(a){return v||(l.mimeType=a),this},abort:function(a){return a=a||w,g&&g.abort(a),y(0,a),this}};o.promise(x),x.success=x.done,x.error=x.fail,x.complete=q.add,x.statusCode=function(a){if(a){var b;if(v<2)for(b in a)r[b]=[r[b],a[b]];else b=a[x.status],x.always(b)}return this},l.url=((a||l.url)+"").replace(cl,"").replace(cp,cj[1]+"//"),l.dataTypes=p.trim(l.dataType||"*").toLowerCase().split(s),l.crossDomain==null&&(i=ct.exec(l.url.toLowerCase())||!1,l.crossDomain=i&&i.join(":")+(i[3]?"":i[1]==="http:"?80:443)!==cj.join(":")+(cj[3]?"":cj[1]==="http:"?80:443)),l.data&&l.processData&&typeof l.data!="string"&&(l.data=p.param(l.data,l.traditional)),cA(cv,l,c,x);if(v===2)return x;j=l.global,l.type=l.type.toUpperCase(),l.hasContent=!co.test(l.type),j&&p.active++===0&&p.event.trigger("ajaxStart");if(!l.hasContent){l.data&&(l.url+=(cq.test(l.url)?"&":"?")+l.data,delete l.data),d=l.url;if(l.cache===!1){var z=p.now(),A=l.url.replace(cs,"$1_="+z);l.url=A+(A===l.url?(cq.test(l.url)?"&":"?")+"_="+z:"")}}(l.data&&l.hasContent&&l.contentType!==!1||c.contentType)&&x.setRequestHeader("Content-Type",l.contentType),l.ifModified&&(d=d||l.url,p.lastModified[d]&&x.setRequestHeader("If-Modified-Since",p.lastModified[d]),p.etag[d]&&x.setRequestHeader("If-None-Match",p.etag[d])),x.setRequestHeader("Accept",l.dataTypes[0]&&l.accepts[l.dataTypes[0]]?l.accepts[l.dataTypes[0]]+(l.dataTypes[0]!=="*"?", "+cx+"; q=0.01":""):l.accepts["*"]);for(k in l.headers)x.setRequestHeader(k,l.headers[k]);if(!l.beforeSend||l.beforeSend.call(m,x,l)!==!1&&v!==2){w="abort";for(k in{success:1,error:1,complete:1})x[k](l[k]);g=cA(cw,l,c,x);if(!g)y(-1,"No Transport");else{x.readyState=1,j&&n.trigger("ajaxSend",[x,l]),l.async&&l.timeout>0&&(h=setTimeout(function(){x.abort("timeout")},l.timeout));try{v=1,g.send(t,y)}catch(B){if(v<2)y(-1,B);else throw B}}return x}return x.abort()},active:0,lastModified:{},etag:{}});var cE=[],cF=/\?/,cG=/(=)\?(?=&|$)|\?\?/,cH=p.now();p.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var a=cE.pop()||p.expando+"_"+cH++;return this[a]=!0,a}}),p.ajaxPrefilter("json jsonp",function(c,d,e){var f,g,h,i=c.data,j=c.url,k=c.jsonp!==!1,l=k&&cG.test(j),m=k&&!l&&typeof i=="string"&&!(c.contentType||"").indexOf("application/x-www-form-urlencoded")&&cG.test(i);if(c.dataTypes[0]==="jsonp"||l||m)return f=c.jsonpCallback=p.isFunction(c.jsonpCallback)?c.jsonpCallback():c.jsonpCallback,g=a[f],l?c.url=j.replace(cG,"$1"+f):m?c.data=i.replace(cG,"$1"+f):k&&(c.url+=(cF.test(j)?"&":"?")+c.jsonp+"="+f),c.converters["script json"]=function(){return h||p.error(f+" was not called"),h[0]},c.dataTypes[0]="json",a[f]=function(){h=arguments},e.always(function(){a[f]=g,c[f]&&(c.jsonpCallback=d.jsonpCallback,cE.push(f)),h&&p.isFunction(g)&&g(h[0]),h=g=b}),"script"}),p.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/javascript|ecmascript/},converters:{"text script":function(a){return p.globalEval(a),a}}}),p.ajaxPrefilter("script",function(a){a.cache===b&&(a.cache=!1),a.crossDomain&&(a.type="GET",a.global=!1)}),p.ajaxTransport("script",function(a){if(a.crossDomain){var c,d=e.head||e.getElementsByTagName("head")[0]||e.documentElement;return{send:function(f,g){c=e.createElement("script"),c.async="async",a.scriptCharset&&(c.charset=a.scriptCharset),c.src=a.url,c.onload=c.onreadystatechange=function(a,e){if(e||!c.readyState||/loaded|complete/.test(c.readyState))c.onload=c.onreadystatechange=null,d&&c.parentNode&&d.removeChild(c),c=b,e||g(200,"success")},d.insertBefore(c,d.firstChild)},abort:function(){c&&c.onload(0,1)}}}});var cI,cJ=a.ActiveXObject?function(){for(var a in cI)cI[a](0,1)}:!1,cK=0;p.ajaxSettings.xhr=a.ActiveXObject?function(){return!this.isLocal&&cL()||cM()}:cL,function(a){p.extend(p.support,{ajax:!!a,cors:!!a&&"withCredentials"in a})}(p.ajaxSettings.xhr()),p.support.ajax&&p.ajaxTransport(function(c){if(!c.crossDomain||p.support.cors){var d;return{send:function(e,f){var g,h,i=c.xhr();c.username?i.open(c.type,c.url,c.async,c.username,c.password):i.open(c.type,c.url,c.async);if(c.xhrFields)for(h in c.xhrFields)i[h]=c.xhrFields[h];c.mimeType&&i.overrideMimeType&&i.overrideMimeType(c.mimeType),!c.crossDomain&&!e["X-Requested-With"]&&(e["X-Requested-With"]="XMLHttpRequest");try{for(h in e)i.setRequestHeader(h,e[h])}catch(j){}i.send(c.hasContent&&c.data||null),d=function(a,e){var h,j,k,l,m;try{if(d&&(e||i.readyState===4)){d=b,g&&(i.onreadystatechange=p.noop,cJ&&delete cI[g]);if(e)i.readyState!==4&&i.abort();else{h=i.status,k=i.getAllResponseHeaders(),l={},m=i.responseXML,m&&m.documentElement&&(l.xml=m);try{l.text=i.responseText}catch(a){}try{j=i.statusText}catch(n){j=""}!h&&c.isLocal&&!c.crossDomain?h=l.text?200:404:h===1223&&(h=204)}}}catch(o){e||f(-1,o)}l&&f(h,j,l,k)},c.async?i.readyState===4?setTimeout(d,0):(g=++cK,cJ&&(cI||(cI={},p(a).unload(cJ)),cI[g]=d),i.onreadystatechange=d):d()},abort:function(){d&&d(0,1)}}}});var cN,cO,cP=/^(?:toggle|show|hide)$/,cQ=new RegExp("^(?:([-+])=|)("+q+")([a-z%]*)$","i"),cR=/queueHooks$/,cS=[cY],cT={"*":[function(a,b){var c,d,e=this.createTween(a,b),f=cQ.exec(b),g=e.cur(),h=+g||0,i=1,j=20;if(f){c=+f[2],d=f[3]||(p.cssNumber[a]?"":"px");if(d!=="px"&&h){h=p.css(e.elem,a,!0)||c||1;do i=i||".5",h=h/i,p.style(e.elem,a,h+d);while(i!==(i=e.cur()/g)&&i!==1&&--j)}e.unit=d,e.start=h,e.end=f[1]?h+(f[1]+1)*c:c}return e}]};p.Animation=p.extend(cW,{tweener:function(a,b){p.isFunction(a)?(b=a,a=["*"]):a=a.split(" ");var c,d=0,e=a.length;for(;d<e;d++)c=a[d],cT[c]=cT[c]||[],cT[c].unshift(b)},prefilter:function(a,b){b?cS.unshift(a):cS.push(a)}}),p.Tween=cZ,cZ.prototype={constructor:cZ,init:function(a,b,c,d,e,f){this.elem=a,this.prop=c,this.easing=e||"swing",this.options=b,this.start=this.now=this.cur(),this.end=d,this.unit=f||(p.cssNumber[c]?"":"px")},cur:function(){var a=cZ.propHooks[this.prop];return a&&a.get?a.get(this):cZ.propHooks._default.get(this)},run:function(a){var b,c=cZ.propHooks[this.prop];return this.options.duration?this.pos=b=p.easing[this.easing](a,this.options.duration*a,0,1,this.options.duration):this.pos=b=a,this.now=(this.end-this.start)*b+this.start,this.options.step&&this.options.step.call(this.elem,this.now,this),c&&c.set?c.set(this):cZ.propHooks._default.set(this),this}},cZ.prototype.init.prototype=cZ.prototype,cZ.propHooks={_default:{get:function(a){var b;return a.elem[a.prop]==null||!!a.elem.style&&a.elem.style[a.prop]!=null?(b=p.css(a.elem,a.prop,!1,""),!b||b==="auto"?0:b):a.elem[a.prop]},set:function(a){p.fx.step[a.prop]?p.fx.step[a.prop](a):a.elem.style&&(a.elem.style[p.cssProps[a.prop]]!=null||p.cssHooks[a.prop])?p.style(a.elem,a.prop,a.now+a.unit):a.elem[a.prop]=a.now}}},cZ.propHooks.scrollTop=cZ.propHooks.scrollLeft={set:function(a){a.elem.nodeType&&a.elem.parentNode&&(a.elem[a.prop]=a.now)}},p.each(["toggle","show","hide"],function(a,b){var c=p.fn[b];p.fn[b]=function(d,e,f){return d==null||typeof d=="boolean"||!a&&p.isFunction(d)&&p.isFunction(e)?c.apply(this,arguments):this.animate(c$(b,!0),d,e,f)}}),p.fn.extend({fadeTo:function(a,b,c,d){return this.filter(bZ).css("opacity",0).show().end().animate({opacity:b},a,c,d)},animate:function(a,b,c,d){var e=p.isEmptyObject(a),f=p.speed(b,c,d),g=function(){var b=cW(this,p.extend({},a),f);e&&b.stop(!0)};return e||f.queue===!1?this.each(g):this.queue(f.queue,g)},stop:function(a,c,d){var e=function(a){var b=a.stop;delete a.stop,b(d)};return typeof a!="string"&&(d=c,c=a,a=b),c&&a!==!1&&this.queue(a||"fx",[]),this.each(function(){var b=!0,c=a!=null&&a+"queueHooks",f=p.timers,g=p._data(this);if(c)g[c]&&g[c].stop&&e(g[c]);else for(c in g)g[c]&&g[c].stop&&cR.test(c)&&e(g[c]);for(c=f.length;c--;)f[c].elem===this&&(a==null||f[c].queue===a)&&(f[c].anim.stop(d),b=!1,f.splice(c,1));(b||!d)&&p.dequeue(this,a)})}}),p.each({slideDown:c$("show"),slideUp:c$("hide"),slideToggle:c$("toggle"),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"},fadeToggle:{opacity:"toggle"}},function(a,b){p.fn[a]=function(a,c,d){return this.animate(b,a,c,d)}}),p.speed=function(a,b,c){var d=a&&typeof a=="object"?p.extend({},a):{complete:c||!c&&b||p.isFunction(a)&&a,duration:a,easing:c&&b||b&&!p.isFunction(b)&&b};d.duration=p.fx.off?0:typeof d.duration=="number"?d.duration:d.duration in p.fx.speeds?p.fx.speeds[d.duration]:p.fx.speeds._default;if(d.queue==null||d.queue===!0)d.queue="fx";return d.old=d.complete,d.complete=function(){p.isFunction(d.old)&&d.old.call(this),d.queue&&p.dequeue(this,d.queue)},d},p.easing={linear:function(a){return a},swing:function(a){return.5-Math.cos(a*Math.PI)/2}},p.timers=[],p.fx=cZ.prototype.init,p.fx.tick=function(){var a,b=p.timers,c=0;for(;c<b.length;c++)a=b[c],!a()&&b[c]===a&&b.splice(c--,1);b.length||p.fx.stop()},p.fx.timer=function(a){a()&&p.timers.push(a)&&!cO&&(cO=setInterval(p.fx.tick,p.fx.interval))},p.fx.interval=13,p.fx.stop=function(){clearInterval(cO),cO=null},p.fx.speeds={slow:600,fast:200,_default:400},p.fx.step={},p.expr&&p.expr.filters&&(p.expr.filters.animated=function(a){return p.grep(p.timers,function(b){return a===b.elem}).length});var c_=/^(?:body|html)$/i;p.fn.offset=function(a){if(arguments.length)return a===b?this:this.each(function(b){p.offset.setOffset(this,a,b)});var c,d,e,f,g,h,i,j={top:0,left:0},k=this[0],l=k&&k.ownerDocument;if(!l)return;return(d=l.body)===k?p.offset.bodyOffset(k):(c=l.documentElement,p.contains(c,k)?(typeof k.getBoundingClientRect!="undefined"&&(j=k.getBoundingClientRect()),e=da(l),f=c.clientTop||d.clientTop||0,g=c.clientLeft||d.clientLeft||0,h=e.pageYOffset||c.scrollTop,i=e.pageXOffset||c.scrollLeft,{top:j.top+h-f,left:j.left+i-g}):j)},p.offset={bodyOffset:function(a){var b=a.offsetTop,c=a.offsetLeft;return p.support.doesNotIncludeMarginInBodyOffset&&(b+=parseFloat(p.css(a,"marginTop"))||0,c+=parseFloat(p.css(a,"marginLeft"))||0),{top:b,left:c}},setOffset:function(a,b,c){var d=p.css(a,"position");d==="static"&&(a.style.position="relative");var e=p(a),f=e.offset(),g=p.css(a,"top"),h=p.css(a,"left"),i=(d==="absolute"||d==="fixed")&&p.inArray("auto",[g,h])>-1,j={},k={},l,m;i?(k=e.position(),l=k.top,m=k.left):(l=parseFloat(g)||0,m=parseFloat(h)||0),p.isFunction(b)&&(b=b.call(a,c,f)),b.top!=null&&(j.top=b.top-f.top+l),b.left!=null&&(j.left=b.left-f.left+m),"using"in b?b.using.call(a,j):e.css(j)}},p.fn.extend({position:function(){if(!this[0])return;var a=this[0],b=this.offsetParent(),c=this.offset(),d=c_.test(b[0].nodeName)?{top:0,left:0}:b.offset();return c.top-=parseFloat(p.css(a,"marginTop"))||0,c.left-=parseFloat(p.css(a,"marginLeft"))||0,d.top+=parseFloat(p.css(b[0],"borderTopWidth"))||0,d.left+=parseFloat(p.css(b[0],"borderLeftWidth"))||0,{top:c.top-d.top,left:c.left-d.left}},offsetParent:function(){return this.map(function(){var a=this.offsetParent||e.body;while(a&&!c_.test(a.nodeName)&&p.css(a,"position")==="static")a=a.offsetParent;return a||e.body})}}),p.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(a,c){var d=/Y/.test(c);p.fn[a]=function(e){return p.access(this,function(a,e,f){var g=da(a);if(f===b)return g?c in g?g[c]:g.document.documentElement[e]:a[e];g?g.scrollTo(d?p(g).scrollLeft():f,d?f:p(g).scrollTop()):a[e]=f},a,e,arguments.length,null)}}),p.each({Height:"height",Width:"width"},function(a,c){p.each({padding:"inner"+a,content:c,"":"outer"+a},function(d,e){p.fn[e]=function(e,f){var g=arguments.length&&(d||typeof e!="boolean"),h=d||(e===!0||f===!0?"margin":"border");return p.access(this,function(c,d,e){var f;return p.isWindow(c)?c.document.documentElement["client"+a]:c.nodeType===9?(f=c.documentElement,Math.max(c.body["scroll"+a],f["scroll"+a],c.body["offset"+a],f["offset"+a],f["client"+a])):e===b?p.css(c,d,e,h):p.style(c,d,e,h)},c,g?e:b,g,null)}})}),a.jQuery=a.$=p,typeof define=="function"&&define.amd&&define.amd.jQuery&&define("jquery",[],function(){return p})})(window); |
| URL | http://zero.webappsecurity.com/resources/js/placeholders.min.js |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | Access-Control-Allow-Origin: * |
| Request Header - size: 287 bytes. |
GET http://zero.webappsecurity.com/resources/js/placeholders.min.js HTTP/1.1
Host: zero.webappsecurity.com User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0 Pragma: no-cache Cache-Control: no-cache Referer: http://zero.webappsecurity.com |
| Request Body - size: 0 bytes. |
|
| Response Header - size: 359 bytes. |
HTTP/1.1 200 OK
Date: Mon, 14 Mar 2022 07:13:42 GMT Server: Apache-Coyote/1.1 Access-Control-Allow-Origin: * Accept-Ranges: bytes ETag: W/"5615-1360116138000" Last-Modified: Wed, 06 Feb 2013 02:02:18 GMT Cache-Control: max-age=2678400 Expires: Thu, 14 Apr 2022 07:13:43 GMT Content-Type: application/javascript;charset=UTF-8 Content-Length: 5615 |
| Response Body - size: 5,615 bytes. |
var Placeholders=function(){var validTypes=["text","search","url","tel","email","password","number","textarea"],settings={live:false,hideOnFocus:false,className:"placeholderspolyfill",textColor:"#999",styleImportant:true},badKeys=[37,38,39,40],interval,valueKeyDown,classNameRegExp=new RegExp("\\b"+settings.className+"\\b");function cursorToStart(elem){var range;if(elem.createTextRange){range=elem.createTextRange();range.move("character",0);range.select()}else if(elem.selectionStart){elem.focus();
elem.setSelectionRange(0,0)}}function focusHandler(){var type;if(this.value===this.getAttribute("placeholder"))if(!settings.hideOnFocus)cursorToStart(this);else{this.className=this.className.replace(classNameRegExp,"");this.value="";type=this.getAttribute("data-placeholdertype");if(type)this.type=type}}function blurHandler(){var type;if(this.value===""){this.className=this.className+" "+settings.className;this.value=this.getAttribute("placeholder");type=this.getAttribute("data-placeholdertype");if(type)this.type= "text"}}function submitHandler(){var inputs=this.getElementsByTagName("input"),textareas=this.getElementsByTagName("textarea"),numInputs=inputs.length,num=numInputs+textareas.length,element,placeholder,i;for(i=0;i<num;i+=1){element=i<numInputs?inputs[i]:textareas[i-numInputs];placeholder=element.getAttribute("placeholder");if(element.value===placeholder)element.value=""}}function keydownHandler(event){valueKeyDown=this.value;return!(valueKeyDown===this.getAttribute("placeholder")&&badKeys.indexOf(event.keyCode)> -1)}function keyupHandler(){var type;if(this.value!==valueKeyDown){this.className=this.className.replace(classNameRegExp,"");this.value=this.value.replace(this.getAttribute("placeholder"),"");type=this.getAttribute("data-placeholdertype");if(type)this.type=type}if(this.value===""){blurHandler.call(this);cursorToStart(this)}}function addEventListener(element,event,fn){if(element.addEventListener)return element.addEventListener(event,fn.bind(element),false);if(element.attachEvent)return element.attachEvent("on"+ event,fn.bind(element))}function addEventListeners(element){if(!settings.hideOnFocus){addEventListener(element,"keydown",keydownHandler);addEventListener(element,"keyup",keyupHandler)}addEventListener(element,"focus",focusHandler);addEventListener(element,"blur",blurHandler)}function updatePlaceholders(){var inputs=document.getElementsByTagName("input"),textareas=document.getElementsByTagName("textarea"),numInputs=inputs.length,num=numInputs+textareas.length,i,form,element,oldPlaceholder,newPlaceholder; for(i=0;i<num;i+=1){element=i<numInputs?inputs[i]:textareas[i-numInputs];newPlaceholder=element.getAttribute("placeholder");if(validTypes.indexOf(element.type)>-1)if(newPlaceholder){oldPlaceholder=element.getAttribute("data-currentplaceholder");if(newPlaceholder!==oldPlaceholder){if(element.value===oldPlaceholder||element.value===newPlaceholder||!element.value){element.value=newPlaceholder;element.className=element.className+" "+settings.className}if(!oldPlaceholder){if(element.form){form=element.form; if(!form.getAttribute("data-placeholdersubmit")){addEventListener(form,"submit",submitHandler);form.setAttribute("data-placeholdersubmit","true")}}addEventListeners(element)}element.setAttribute("data-currentplaceholder",newPlaceholder)}}}}function createPlaceholders(){var inputs=document.getElementsByTagName("input"),textareas=document.getElementsByTagName("textarea"),numInputs=inputs.length,num=numInputs+textareas.length,i,element,form,placeholder;for(i=0;i<num;i+=1){element=i<numInputs?inputs[i]: textareas[i-numInputs];placeholder=element.getAttribute("placeholder");if(validTypes.indexOf(element.type)>-1)if(placeholder){if(element.type==="password")try{element.type="text";element.setAttribute("data-placeholdertype","password")}catch(e){}element.setAttribute("data-currentplaceholder",placeholder);if(element.value===""||element.value===placeholder){element.className=element.className+" "+settings.className;element.value=placeholder}if(element.form){form=element.form;if(!form.getAttribute("data-placeholdersubmit")){addEventListener(form, "submit",submitHandler);form.setAttribute("data-placeholdersubmit","true")}}addEventListeners(element)}}}function init(opts){var test=document.createElement("input"),opt,styleElem,styleRules,i,j;if(typeof test.placeholder==="undefined"){for(opt in opts)if(opts.hasOwnProperty(opt))settings[opt]=opts[opt];styleElem=document.createElement("style");styleElem.type="text/css";var importantValue=settings.styleImportant?"!important":"";styleRules=document.createTextNode("."+settings.className+" { color:"+ settings.textColor+importantValue+"; }");if(styleElem.styleSheet)styleElem.styleSheet.cssText=styleRules.nodeValue;else styleElem.appendChild(styleRules);document.getElementsByTagName("head")[0].appendChild(styleElem);if(!Array.prototype.indexOf)Array.prototype.indexOf=function(obj,start){for(i=start||0,j=this.length;i<j;i+=1)if(this[i]===obj)return i;return-1};if(!Function.prototype.bind)Function.prototype.bind=function(oThis){if(typeof this!=="function")throw new TypeError("Function.prototype.bind - what is trying to be bound is not callable"); var aArgs=Array.prototype.slice.call(arguments,1),fToBind=this,FNop=function(){},fBound=function(){return fToBind.apply(this instanceof FNop?this:oThis,aArgs.concat(Array.prototype.slice.call(arguments)))};FNop.prototype=this.prototype;fBound.prototype=new FNop;return fBound};createPlaceholders();if(settings.live)interval=setInterval(updatePlaceholders,100);return true}return false}return{init:init,refresh:updatePlaceholders}}(); |
| URL | http://zero.webappsecurity.com/robots.txt |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | Access-Control-Allow-Origin: * |
| Request Header - size: 224 bytes. |
GET http://zero.webappsecurity.com/robots.txt HTTP/1.1
Host: zero.webappsecurity.com User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0 Pragma: no-cache Cache-Control: no-cache |
| Request Body - size: 0 bytes. |
|
| Response Header - size: 204 bytes. |
HTTP/1.1 404 Not Found
Date: Mon, 14 Mar 2022 07:13:40 GMT Server: Apache-Coyote/1.1 Access-Control-Allow-Origin: * Content-Type: text/html;charset=utf-8 Content-Language: en Content-Length: 971 |
| Response Body - size: 971 bytes. |
<html><head><title>Apache Tomcat/7.0.70 - Error report</title><style><!--H1 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:22px;} H2 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:16px;} H3 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:14px;} BODY {font-family:Tahoma,Arial,sans-serif;color:black;background-color:white;} B {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;} P {font-family:Tahoma,Arial,sans-serif;background:white;color:black;font-size:12px;}A {color : black;}A.name {color : black;}HR {color : #525D76;}--></style> </head><body><h1>HTTP Status 404 - /robots.txt</h1><HR size="1" noshade="noshade"><p><b>type</b> Status report</p><p><b>message</b> <u>/robots.txt</u></p><p><b>description</b> <u>The requested resource is not available.</u></p><HR size="1" noshade="noshade"><h3>Apache Tomcat/7.0.70</h3></body></html>
|
| URL | http://zero.webappsecurity.com/search.html?searchTerm=ZAP |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | Access-Control-Allow-Origin: * |
| Request Header - size: 281 bytes. |
GET http://zero.webappsecurity.com/search.html?searchTerm=ZAP HTTP/1.1
Host: zero.webappsecurity.com User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0 Pragma: no-cache Cache-Control: no-cache Referer: http://zero.webappsecurity.com |
| Request Body - size: 0 bytes. |
|
| Response Header - size: 242 bytes. |
HTTP/1.1 200 OK
Date: Mon, 14 Mar 2022 07:13:43 GMT Server: Apache-Coyote/1.1 Access-Control-Allow-Origin: * Cache-Control: no-cache, max-age=0, must-revalidate, no-store Content-Type: text/html;charset=UTF-8 Content-Language: en-US |
| Response Body - size: 7,723 bytes. |
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Zero - Search Tips</title> <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"> <meta http-equiv="X-UA-Compatible" content="IE=Edge"> <link type="text/css" rel="stylesheet" href="/resources/css/bootstrap.min.css"/> <link type="text/css" rel="stylesheet" href="/resources/css/font-awesome.css"/> <link type="text/css" rel="stylesheet" href="/resources/css/main.css"/> <script src="/resources/js/jquery-1.8.2.min.js"></script> <script src="/resources/js/bootstrap.min.js"></script> <script src="/resources/js/placeholders.min.js"></script> <script type="text/javascript"> Placeholders.init({ live: true, // Apply to future and modified elements too hideOnFocus: true // Hide the placeholder when the element receives focus }); </script> <script type="text/javascript"> $(document).ajaxError(function errorHandler(event, xhr, ajaxOptions, thrownError) { if (xhr.status == 403) { window.location.reload(); } }); </script> </head> <body> <div class="wrapper"> <div class="navbar navbar-fixed-top"> <div class="navbar-inner"> <div class="container"> <a href="/index.html" class="brand">Zero Bank</a> <div> <ul class="nav float-right"> <li> <form action="/search.html" class="navbar-search pull-right" style="padding-right: 20px"> <input type="text" id="searchTerm" name="searchTerm" class="search-query" placeholder="Search"/> </form> </li> <li> <button id="signin_button" type="button" class="signin btn btn-info"> <i class="icon-signin"></i>Signin </button> </li> </ul> </div> </div> </div> </div> <script type="text/javascript"> $(function() { var path = "/"; $("#signin_button").click(function(event) { event.preventDefault(); window.location.href = path + "login" + ".html"; }); }); </script> <div class="container"> <div class="top_offset"> <div class="row"> <div class="span12"> <div id="nav" class="clearfix"> <ul id="pages-nav"> <li id="homeMenu"><div><strong>Home</strong></div></li> <li id="onlineBankingMenu"><div><strong>Online Banking</strong></div></li> <li id="feedback"><div><strong>Feedback</strong></div></li> </ul> </div> </div> <script type="text/javascript"> $(function () { var path = "/"; var featureIdToName = { "index": "homeMenu", "online-banking": "onlineBankingMenu", "feedback": "feedback" }; if (document.location.href.match(".*" + path + "$") != null) { $("#homeMenu").addClass("active"); } else { $.each(featureIdToName, function(featureId, featureName) { if (document.location.href.indexOf(featureId + ".html") >= 0) { $("#" + featureName).addClass("active"); } }); } $.each(featureIdToName, function(featureId, featureName) { $("#nav").on("click", "li[id='" + featureName + "']", function(event) { event.preventDefault(); window.location.href = path + featureId + ".html"; }); }); }); </script> </div> <hr class="row-divider"/> <h2>Search Results:</h2> No results were found for the query: ZAP </div> </div> <div class="clearfix push"></div> </div> <div class="extra"> <div class="extra-inner"> <div class="container"> <div class="row"> <div class="span4"> <ul> <li><span id="download_webinspect_link">Download WebInspect</span></li> </ul> </div> <div class="span4"> <ul> <li><span id="terms_of_use_link">Terms of Use</span></li> </ul> </div> <div class="span4"> <ul> <li><span id="contact_hp_link">Contact Micro Focus</span></li> <li><span id="privacy_statement_link">Privacy Statement</span></li> </ul> </div> </div> <div class="row"> <div class="disclaimer span12"> The Free Online Bank Web site is published by Micro Focus Fortify for the sole purpose of demonstrating the functionality and effectiveness of Micro Focus Fortify’s WebInspect products in detecting and reporting Web application vulnerabilities. This site is not a real banking site and any similarities to third party products and/or Web sites are purely coincidental. This site is provided "as is" without warranty of any kind, either express or implied. Micro Focus Fortify does not assume any risk in relation to your use of this Web site. Use of this Web site indicates that you have read and agree to Micro Focus Fortify’s Terms of Use found at <a href="https://www.microfocus.com/about/legal/#privacy" target="_blank">https://www.microfocus.com/about/legal/#privacy</a> and Micro Focus Fortify’s Online Privacy Statement found at <a href="https://www.microfocus.com/about/legal/#privacy" target="_blank">https://www.microfocus.com/about/legal/#privacy</a>. <br/><br/> Copyright © 2012-2018, Micro Focus Development Company. All rights reserved. </div> </div> </div> </div> </div> <script type="text/javascript"> $(function () { var path = "/"; var attachClickHandler = function(selector, handler) { $(".extra").on('click', selector, handler); } var footerLinks = { "download_webinspect_link": { absolute: true, page: "https://software.microfocus.com/en-us/products/webinspect-dynamic-analysis-dast/overview" }, "contact_hp_link" : { absolute: true, page: "https://support.fortify.com" }, "privacy_statement_link": { absolute: true, page: "https://www.microfocus.com/about/legal/#privacy" }, "terms_of_use_link": { absolute: true, page: "https://www.microfocus.com/about/legal/" } }; $.each(footerLinks, function(linkId, link) { attachClickHandler('span[id="' + linkId + '"]', function(event) { event.preventDefault(); if (link.absolute) { window.location.href = link.page; } else { window.location.href = path + link.page + ".html"; } }); }); }); </script> </body> </html> |
| URL | http://zero.webappsecurity.com/sitemap.xml |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | Access-Control-Allow-Origin: * |
| Request Header - size: 225 bytes. |
GET http://zero.webappsecurity.com/sitemap.xml HTTP/1.1
Host: zero.webappsecurity.com User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0 Pragma: no-cache Cache-Control: no-cache |
| Request Body - size: 0 bytes. |
|
| Response Header - size: 204 bytes. |
HTTP/1.1 404 Not Found
Date: Mon, 14 Mar 2022 07:13:40 GMT Server: Apache-Coyote/1.1 Access-Control-Allow-Origin: * Content-Type: text/html;charset=utf-8 Content-Language: en Content-Length: 973 |
| Response Body - size: 973 bytes. |
<html><head><title>Apache Tomcat/7.0.70 - Error report</title><style><!--H1 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:22px;} H2 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:16px;} H3 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:14px;} BODY {font-family:Tahoma,Arial,sans-serif;color:black;background-color:white;} B {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;} P {font-family:Tahoma,Arial,sans-serif;background:white;color:black;font-size:12px;}A {color : black;}A.name {color : black;}HR {color : #525D76;}--></style> </head><body><h1>HTTP Status 404 - /sitemap.xml</h1><HR size="1" noshade="noshade"><p><b>type</b> Status report</p><p><b>message</b> <u>/sitemap.xml</u></p><p><b>description</b> <u>The requested resource is not available.</u></p><HR size="1" noshade="noshade"><h3>Apache Tomcat/7.0.70</h3></body></html>
|
| Instances | 15 |
| Solution |
Ensure that sensitive data is not available in an unauthenticated manner (using IP address white-listing, for instance).
Configure the "Access-Control-Allow-Origin" HTTP header to a more restrictive set of domains, or remove all CORS headers entirely, to allow the web browser to enforce the Same Origin Policy (SOP) in a more restrictive manner.
|
| Reference | https://vulncat.fortify.com/en/detail?id=desc.config.dotnet.html5_overly_permissive_cors_policy |
| Tags |
OWASP_2021_A01
OWASP_2017_A05 |
| CWE Id | 264 |
| WASC Id | 14 |
| Plugin Id | 10098 |
|
Medium |
Hidden File Found |
|---|---|
| Description |
A sensitive file was identified as accessible or available. This may leak administrative, configuration, or credential information which can be leveraged by a malicious individual to further attack the system or conduct social engineering efforts.
|
| URL | http://zero.webappsecurity.com/server-status |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | HTTP/1.1 200 OK |
| Request Header - size: 246 bytes. |
GET http://zero.webappsecurity.com/server-status HTTP/1.1
Host: zero.webappsecurity.com User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0 Pragma: no-cache Cache-Control: no-cache Content-Length: 0 |
| Request Body - size: 0 bytes. |
|
| Response Header - size: 176 bytes. |
HTTP/1.1 200 OK
Date: Mon, 14 Mar 2022 07:21:25 GMT Server: Apache-Coyote/1.1 Access-Control-Allow-Origin: * Content-Type: text/html;charset=UTF-8 Content-Length: 5523 |
| Response Body - size: 5,523 bytes. |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">
<html><head> <title>Apache Status</title> </head><body> <h1>Apache Server Status for localhost</h1> <dl><dt>Server Version: Apache/2.2.22 (Win32) mod_ssl/2.2.22 OpenSSL/0.9.8t mod_jk/1.2.37</dt> <dt>Server Built: Jan 28 2012 11:16:39 </dt></dl><hr /><dl> <dt>Current Time: Friday, 18-Jan-2013 14:55:36 GMT</dt> <dt>Restart Time: Friday, 18-Jan-2013 14:29:04 GMT</dt> <dt>Parent Server Generation: 0</dt> <dt>Server uptime: 26 minutes 31 seconds</dt> <dt>5 requests currently being processed, 59 idle workers</dt> </dl><pre>_________________________________________________K_____KK_W__K__ ................................................................ ................................................................ ................................................................ ................................................................ ................................................................ ................................................................ ................................................................ ................................................................ ................................................................ ................................................................ ................................................................ ................................................................ ................................................................ ................................................................ ................................................................ ................................................................ ................................................................ ................................................................ ................................................................ ................................................................ ................................................................ ................................................................ ................................................................ ................................................................ ................................................................ ................................................................ ................................................................ ................................................................ ................................................................ </pre> <p>Scoreboard Key:<br /> "<b><code>_</code></b>" Waiting for Connection, "<b><code>S</code></b>" Starting up, "<b><code>R</code></b>" Reading Request,<br /> "<b><code>W</code></b>" Sending Reply, "<b><code>K</code></b>" Keepalive (read), "<b><code>D</code></b>" DNS Lookup,<br /> "<b><code>C</code></b>" Closing connection, "<b><code>L</code></b>" Logging, "<b><code>G</code></b>" Gracefully finishing,<br /> "<b><code>I</code></b>" Idle cleanup of worker, "<b><code>.</code></b>" Open slot with no current process</p> <p /> PID Key: <br /> <pre> 11740 in state: _ , 11740 in state: _ , 11740 in state: _ 11740 in state: _ , 11740 in state: _ , 11740 in state: _ 11740 in state: _ , 11740 in state: _ , 11740 in state: _ 11740 in state: _ , 11740 in state: _ , 11740 in state: _ 11740 in state: _ , 11740 in state: _ , 11740 in state: _ 11740 in state: _ , 11740 in state: _ , 11740 in state: _ 11740 in state: _ , 11740 in state: _ , 11740 in state: _ 11740 in state: _ , 11740 in state: _ , 11740 in state: _ 11740 in state: _ , 11740 in state: _ , 11740 in state: _ 11740 in state: _ , 11740 in state: _ , 11740 in state: _ 11740 in state: _ , 11740 in state: _ , 11740 in state: _ 11740 in state: _ , 11740 in state: _ , 11740 in state: _ 11740 in state: _ , 11740 in state: _ , 11740 in state: _ 11740 in state: _ , 11740 in state: _ , 11740 in state: _ 11740 in state: _ , 11740 in state: _ , 11740 in state: _ 11740 in state: _ , 11740 in state: _ , 11740 in state: _ 11740 in state: _ , 11740 in state: K , 11740 in state: _ 11740 in state: _ , 11740 in state: _ , 11740 in state: _ 11740 in state: _ , 11740 in state: K , 11740 in state: K 11740 in state: _ , 11740 in state: W , 11740 in state: _ 11740 in state: _ , 11740 in state: K , 11740 in state: _ 11740 in state: _ , </pre> <hr />To obtain a full report with current status information you need to use the <code>ExtendedStatus On</code> directive. <hr> <table cellspacing=0 cellpadding=0> <tr><td bgcolor="#000000"> <b><font color="#ffffff" face="Arial,Helvetica">SSL/TLS Session Cache Status:</font></b> </td></tr> <tr><td bgcolor="#ffffff"> cache type: <b>SHMCB</b>, shared memory: <b>512000</b> bytes, current sessions: <b>0</b><br>subcaches: <b>32</b>, indexes per subcache: <b>133</b><br>index usage: <b>0%</b>, cache usage: <b>0%</b><br>total sessions stored since starting: <b>0</b><br>total sessions expired since starting: <b>0</b><br>total (pre-expiry) sessions scrolled out of the cache: <b>0</b><br>total retrieves since starting: <b>0</b> hit, <b>0</b> miss<br>total removes since starting: <b>0</b> hit, <b>0</b> miss<br></td></tr> </table> </body></html> |
| Instances | 1 |
| Solution |
Consider whether or not the component is actually required in production, if it isn't then disable it. If it is then ensure access to it requires appropriate authentication and authorization, or limit exposure to internal systems or specific source IPs, etc.
|
| Reference |
https://blog.hboeck.de/archives/892-Introducing-Snallygaster-a-Tool-to-Scan-for-Secrets-on-Web-Servers.html
https://httpd.apache.org/docs/current/mod/mod_status.html |
| Tags |
OWASP_2021_A05
WSTG-v42-CONF-05 OWASP_2017_A06 |
| CWE Id | 538 |
| WASC Id | 13 |
| Plugin Id | 40035 |
|
Medium |
Insecure HTTP Method - PATCH |
|---|---|
| Description |
This method is now most commonly used in REST services, PATCH is used for **modify** capabilities. The PATCH request only needs to contain the changes to the resource, not the complete resource.
|
| URL | http://zero.webappsecurity.com/search.html?searchTerm=ZAP/nqmmqbc6ng |
| Method | PATCH |
| Parameter | |
| Attack | |
| Evidence | response code 200 for insecure HTTP METHOD |
| Request Header - size: 314 bytes. |
PATCH http://zero.webappsecurity.com/search.html?searchTerm=ZAP/nqmmqbc6ng HTTP/1.1
Host: zero.webappsecurity.com User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0 Pragma: no-cache Cache-Control: no-cache Referer: http://zero.webappsecurity.com Content-Length: 35 |
| Request Body - size: 35 bytes. |
"t46niTgO9DbWog8":"2ytezPWD0VACC7t"
|
| Response Header - size: 242 bytes. |
HTTP/1.1 200 OK
Date: Mon, 14 Mar 2022 07:21:42 GMT Server: Apache-Coyote/1.1 Access-Control-Allow-Origin: * Cache-Control: no-cache, max-age=0, must-revalidate, no-store Content-Type: text/html;charset=UTF-8 Content-Language: en-US |
| Response Body - size: 7,734 bytes. |
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Zero - Search Tips</title> <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"> <meta http-equiv="X-UA-Compatible" content="IE=Edge"> <link type="text/css" rel="stylesheet" href="/resources/css/bootstrap.min.css"/> <link type="text/css" rel="stylesheet" href="/resources/css/font-awesome.css"/> <link type="text/css" rel="stylesheet" href="/resources/css/main.css"/> <script src="/resources/js/jquery-1.8.2.min.js"></script> <script src="/resources/js/bootstrap.min.js"></script> <script src="/resources/js/placeholders.min.js"></script> <script type="text/javascript"> Placeholders.init({ live: true, // Apply to future and modified elements too hideOnFocus: true // Hide the placeholder when the element receives focus }); </script> <script type="text/javascript"> $(document).ajaxError(function errorHandler(event, xhr, ajaxOptions, thrownError) { if (xhr.status == 403) { window.location.reload(); } }); </script> </head> <body> <div class="wrapper"> <div class="navbar navbar-fixed-top"> <div class="navbar-inner"> <div class="container"> <a href="/index.html" class="brand">Zero Bank</a> <div> <ul class="nav float-right"> <li> <form action="/search.html" class="navbar-search pull-right" style="padding-right: 20px"> <input type="text" id="searchTerm" name="searchTerm" class="search-query" placeholder="Search"/> </form> </li> <li> <button id="signin_button" type="button" class="signin btn btn-info"> <i class="icon-signin"></i>Signin </button> </li> </ul> </div> </div> </div> </div> <script type="text/javascript"> $(function() { var path = "/"; $("#signin_button").click(function(event) { event.preventDefault(); window.location.href = path + "login" + ".html"; }); }); </script> <div class="container"> <div class="top_offset"> <div class="row"> <div class="span12"> <div id="nav" class="clearfix"> <ul id="pages-nav"> <li id="homeMenu"><div><strong>Home</strong></div></li> <li id="onlineBankingMenu"><div><strong>Online Banking</strong></div></li> <li id="feedback"><div><strong>Feedback</strong></div></li> </ul> </div> </div> <script type="text/javascript"> $(function () { var path = "/"; var featureIdToName = { "index": "homeMenu", "online-banking": "onlineBankingMenu", "feedback": "feedback" }; if (document.location.href.match(".*" + path + "$") != null) { $("#homeMenu").addClass("active"); } else { $.each(featureIdToName, function(featureId, featureName) { if (document.location.href.indexOf(featureId + ".html") >= 0) { $("#" + featureName).addClass("active"); } }); } $.each(featureIdToName, function(featureId, featureName) { $("#nav").on("click", "li[id='" + featureName + "']", function(event) { event.preventDefault(); window.location.href = path + featureId + ".html"; }); }); }); </script> </div> <hr class="row-divider"/> <h2>Search Results:</h2> No results were found for the query: ZAP/nqmmqbc6ng </div> </div> <div class="clearfix push"></div> </div> <div class="extra"> <div class="extra-inner"> <div class="container"> <div class="row"> <div class="span4"> <ul> <li><span id="download_webinspect_link">Download WebInspect</span></li> </ul> </div> <div class="span4"> <ul> <li><span id="terms_of_use_link">Terms of Use</span></li> </ul> </div> <div class="span4"> <ul> <li><span id="contact_hp_link">Contact Micro Focus</span></li> <li><span id="privacy_statement_link">Privacy Statement</span></li> </ul> </div> </div> <div class="row"> <div class="disclaimer span12"> The Free Online Bank Web site is published by Micro Focus Fortify for the sole purpose of demonstrating the functionality and effectiveness of Micro Focus Fortify’s WebInspect products in detecting and reporting Web application vulnerabilities. This site is not a real banking site and any similarities to third party products and/or Web sites are purely coincidental. This site is provided "as is" without warranty of any kind, either express or implied. Micro Focus Fortify does not assume any risk in relation to your use of this Web site. Use of this Web site indicates that you have read and agree to Micro Focus Fortify’s Terms of Use found at <a href="https://www.microfocus.com/about/legal/#privacy" target="_blank">https://www.microfocus.com/about/legal/#privacy</a> and Micro Focus Fortify’s Online Privacy Statement found at <a href="https://www.microfocus.com/about/legal/#privacy" target="_blank">https://www.microfocus.com/about/legal/#privacy</a>. <br/><br/> Copyright © 2012-2018, Micro Focus Development Company. All rights reserved. </div> </div> </div> </div> </div> <script type="text/javascript"> $(function () { var path = "/"; var attachClickHandler = function(selector, handler) { $(".extra").on('click', selector, handler); } var footerLinks = { "download_webinspect_link": { absolute: true, page: "https://software.microfocus.com/en-us/products/webinspect-dynamic-analysis-dast/overview" }, "contact_hp_link" : { absolute: true, page: "https://support.fortify.com" }, "privacy_statement_link": { absolute: true, page: "https://www.microfocus.com/about/legal/#privacy" }, "terms_of_use_link": { absolute: true, page: "https://www.microfocus.com/about/legal/" } }; $.each(footerLinks, function(linkId, link) { attachClickHandler('span[id="' + linkId + '"]', function(event) { event.preventDefault(); if (link.absolute) { window.location.href = link.page; } else { window.location.href = path + link.page + ".html"; } }); }); }); </script> </body> </html> |
| Instances | 1 |
| Solution |
TBA
|
| Reference | http://projects.webappsec.org/Fingerprinting |
| Tags |
OWASP_2021_A05
WSTG-v42-CONF-06 OWASP_2017_A06 |
| CWE Id | 200 |
| WASC Id | 45 |
| Plugin Id | 90028 |
|
Medium |
Insecure HTTP Method - PUT |
|---|---|
| Description |
This method was originally intended for file managemant operations. It is now most commonly used in REST services, PUT is most-often utilized for **update** capabilities, PUT-ing to a known resource URI with the request body containing the newly-updated representation of the original resource..
|
| URL | http://zero.webappsecurity.com/8h1i8wnsf9 |
| Method | PUT |
| Parameter | |
| Attack | |
| Evidence | response code 403 for potentially insecure HTTP METHOD |
| Request Header - size: 244 bytes. |
PUT http://zero.webappsecurity.com/8h1i8wnsf9 HTTP/1.1
Host: zero.webappsecurity.com User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0 Pragma: no-cache Cache-Control: no-cache Content-Length: 35 |
| Request Body - size: 35 bytes. |
"sufb1pX4cWvKBJn":"nDFiUTQdspbJtTn"
|
| Response Header - size: 204 bytes. |
HTTP/1.1 403 Forbidden
Date: Mon, 14 Mar 2022 07:21:33 GMT Server: Apache-Coyote/1.1 Access-Control-Allow-Origin: * Content-Type: text/html;charset=utf-8 Content-Language: en Content-Length: 961 |
| Response Body - size: 961 bytes. |
<html><head><title>Apache Tomcat/7.0.70 - Error report</title><style><!--H1 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:22px;} H2 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:16px;} H3 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:14px;} BODY {font-family:Tahoma,Arial,sans-serif;color:black;background-color:white;} B {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;} P {font-family:Tahoma,Arial,sans-serif;background:white;color:black;font-size:12px;}A {color : black;}A.name {color : black;}HR {color : #525D76;}--></style> </head><body><h1>HTTP Status 403 - </h1><HR size="1" noshade="noshade"><p><b>type</b> Status report</p><p><b>message</b> <u></u></p><p><b>description</b> <u>Access to the specified resource has been forbidden.</u></p><HR size="1" noshade="noshade"><h3>Apache Tomcat/7.0.70</h3></body></html>
|
| URL | http://zero.webappsecurity.com/index.html/4xn4l45vhi |
| Method | PUT |
| Parameter | |
| Attack | |
| Evidence | response code 403 for potentially insecure HTTP METHOD |
| Request Header - size: 296 bytes. |
PUT http://zero.webappsecurity.com/index.html/4xn4l45vhi HTTP/1.1
Host: zero.webappsecurity.com User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0 Pragma: no-cache Cache-Control: no-cache Referer: http://zero.webappsecurity.com Content-Length: 35 |
| Request Body - size: 35 bytes. |
"Kqf7mBkdfWryBd4":"tRDSzYlWF384ORa"
|
| Response Header - size: 204 bytes. |
HTTP/1.1 403 Forbidden
Date: Mon, 14 Mar 2022 07:21:34 GMT Server: Apache-Coyote/1.1 Access-Control-Allow-Origin: * Content-Type: text/html;charset=utf-8 Content-Language: en Content-Length: 961 |
| Response Body - size: 961 bytes. |
<html><head><title>Apache Tomcat/7.0.70 - Error report</title><style><!--H1 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:22px;} H2 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:16px;} H3 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:14px;} BODY {font-family:Tahoma,Arial,sans-serif;color:black;background-color:white;} B {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;} P {font-family:Tahoma,Arial,sans-serif;background:white;color:black;font-size:12px;}A {color : black;}A.name {color : black;}HR {color : #525D76;}--></style> </head><body><h1>HTTP Status 403 - </h1><HR size="1" noshade="noshade"><p><b>type</b> Status report</p><p><b>message</b> <u></u></p><p><b>description</b> <u>Access to the specified resource has been forbidden.</u></p><HR size="1" noshade="noshade"><h3>Apache Tomcat/7.0.70</h3></body></html>
|
| URL | http://zero.webappsecurity.com/resources/css/bootstrap.min.css/8dtr4hk3dd |
| Method | PUT |
| Parameter | |
| Attack | |
| Evidence | response code 403 for potentially insecure HTTP METHOD |
| Request Header - size: 317 bytes. |
PUT http://zero.webappsecurity.com/resources/css/bootstrap.min.css/8dtr4hk3dd HTTP/1.1
Host: zero.webappsecurity.com User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0 Pragma: no-cache Cache-Control: no-cache Referer: http://zero.webappsecurity.com Content-Length: 35 |
| Request Body - size: 35 bytes. |
"fm035TWwbjCLnHe":"SNW0sBusiAZRYzO"
|
| Response Header - size: 204 bytes. |
HTTP/1.1 403 Forbidden
Date: Mon, 14 Mar 2022 07:21:36 GMT Server: Apache-Coyote/1.1 Access-Control-Allow-Origin: * Content-Type: text/html;charset=utf-8 Content-Language: en Content-Length: 961 |
| Response Body - size: 961 bytes. |
<html><head><title>Apache Tomcat/7.0.70 - Error report</title><style><!--H1 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:22px;} H2 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:16px;} H3 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:14px;} BODY {font-family:Tahoma,Arial,sans-serif;color:black;background-color:white;} B {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;} P {font-family:Tahoma,Arial,sans-serif;background:white;color:black;font-size:12px;}A {color : black;}A.name {color : black;}HR {color : #525D76;}--></style> </head><body><h1>HTTP Status 403 - </h1><HR size="1" noshade="noshade"><p><b>type</b> Status report</p><p><b>message</b> <u></u></p><p><b>description</b> <u>Access to the specified resource has been forbidden.</u></p><HR size="1" noshade="noshade"><h3>Apache Tomcat/7.0.70</h3></body></html>
|
| URL | http://zero.webappsecurity.com/resources/css/font-awesome.css/90c6zmyiao |
| Method | PUT |
| Parameter | |
| Attack | |
| Evidence | response code 403 for potentially insecure HTTP METHOD |
| Request Header - size: 316 bytes. |
PUT http://zero.webappsecurity.com/resources/css/font-awesome.css/90c6zmyiao HTTP/1.1
Host: zero.webappsecurity.com User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0 Pragma: no-cache Cache-Control: no-cache Referer: http://zero.webappsecurity.com Content-Length: 35 |
| Request Body - size: 35 bytes. |
"OcVmsDdNof4sFt2":"Gq4lajCKQ2mbxde"
|
| Response Header - size: 204 bytes. |
HTTP/1.1 403 Forbidden
Date: Mon, 14 Mar 2022 07:21:37 GMT Server: Apache-Coyote/1.1 Access-Control-Allow-Origin: * Content-Type: text/html;charset=utf-8 Content-Language: en Content-Length: 961 |
| Response Body - size: 961 bytes. |
<html><head><title>Apache Tomcat/7.0.70 - Error report</title><style><!--H1 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:22px;} H2 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:16px;} H3 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:14px;} BODY {font-family:Tahoma,Arial,sans-serif;color:black;background-color:white;} B {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;} P {font-family:Tahoma,Arial,sans-serif;background:white;color:black;font-size:12px;}A {color : black;}A.name {color : black;}HR {color : #525D76;}--></style> </head><body><h1>HTTP Status 403 - </h1><HR size="1" noshade="noshade"><p><b>type</b> Status report</p><p><b>message</b> <u></u></p><p><b>description</b> <u>Access to the specified resource has been forbidden.</u></p><HR size="1" noshade="noshade"><h3>Apache Tomcat/7.0.70</h3></body></html>
|
| URL | http://zero.webappsecurity.com/resources/css/ide2zhpalh |
| Method | PUT |
| Parameter | |
| Attack | |
| Evidence | response code 403 for potentially insecure HTTP METHOD |
| Request Header - size: 299 bytes. |
PUT http://zero.webappsecurity.com/resources/css/ide2zhpalh HTTP/1.1
Host: zero.webappsecurity.com User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0 Pragma: no-cache Cache-Control: no-cache Referer: http://zero.webappsecurity.com Content-Length: 35 |
| Request Body - size: 35 bytes. |
"aC8BWtMuO9N9Uq7":"gOVg1DwulXamXWR"
|
| Response Header - size: 204 bytes. |
HTTP/1.1 403 Forbidden
Date: Mon, 14 Mar 2022 07:21:36 GMT Server: Apache-Coyote/1.1 Access-Control-Allow-Origin: * Content-Type: text/html;charset=utf-8 Content-Language: en Content-Length: 961 |
| Response Body - size: 961 bytes. |
<html><head><title>Apache Tomcat/7.0.70 - Error report</title><style><!--H1 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:22px;} H2 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:16px;} H3 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:14px;} BODY {font-family:Tahoma,Arial,sans-serif;color:black;background-color:white;} B {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;} P {font-family:Tahoma,Arial,sans-serif;background:white;color:black;font-size:12px;}A {color : black;}A.name {color : black;}HR {color : #525D76;}--></style> </head><body><h1>HTTP Status 403 - </h1><HR size="1" noshade="noshade"><p><b>type</b> Status report</p><p><b>message</b> <u></u></p><p><b>description</b> <u>Access to the specified resource has been forbidden.</u></p><HR size="1" noshade="noshade"><h3>Apache Tomcat/7.0.70</h3></body></html>
|
| URL | http://zero.webappsecurity.com/resources/css/main.css/uerz8c15fz |
| Method | PUT |
| Parameter | |
| Attack | |
| Evidence | response code 403 for potentially insecure HTTP METHOD |
| Request Header - size: 308 bytes. |
PUT http://zero.webappsecurity.com/resources/css/main.css/uerz8c15fz HTTP/1.1
Host: zero.webappsecurity.com User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0 Pragma: no-cache Cache-Control: no-cache Referer: http://zero.webappsecurity.com Content-Length: 35 |
| Request Body - size: 35 bytes. |
"Dj3r0AvQGHSGGw3":"zb0XydUZnAx1HnG"
|
| Response Header - size: 204 bytes. |
HTTP/1.1 403 Forbidden
Date: Mon, 14 Mar 2022 07:21:37 GMT Server: Apache-Coyote/1.1 Access-Control-Allow-Origin: * Content-Type: text/html;charset=utf-8 Content-Language: en Content-Length: 961 |
| Response Body - size: 961 bytes. |
<html><head><title>Apache Tomcat/7.0.70 - Error report</title><style><!--H1 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:22px;} H2 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:16px;} H3 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:14px;} BODY {font-family:Tahoma,Arial,sans-serif;color:black;background-color:white;} B {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;} P {font-family:Tahoma,Arial,sans-serif;background:white;color:black;font-size:12px;}A {color : black;}A.name {color : black;}HR {color : #525D76;}--></style> </head><body><h1>HTTP Status 403 - </h1><HR size="1" noshade="noshade"><p><b>type</b> Status report</p><p><b>message</b> <u></u></p><p><b>description</b> <u>Access to the specified resource has been forbidden.</u></p><HR size="1" noshade="noshade"><h3>Apache Tomcat/7.0.70</h3></body></html>
|
| URL | http://zero.webappsecurity.com/resources/img/c05fziuw3h |
| Method | PUT |
| Parameter | |
| Attack | |
| Evidence | response code 403 for potentially insecure HTTP METHOD |
| Request Header - size: 299 bytes. |
PUT http://zero.webappsecurity.com/resources/img/c05fziuw3h HTTP/1.1
Host: zero.webappsecurity.com User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0 Pragma: no-cache Cache-Control: no-cache Referer: http://zero.webappsecurity.com Content-Length: 35 |
| Request Body - size: 35 bytes. |
"d0yQ8oCKPilfCLx":"8BkeB5NWxb4g3fC"
|
| Response Header - size: 204 bytes. |
HTTP/1.1 403 Forbidden
Date: Mon, 14 Mar 2022 07:21:37 GMT Server: Apache-Coyote/1.1 Access-Control-Allow-Origin: * Content-Type: text/html;charset=utf-8 Content-Language: en Content-Length: 961 |
| Response Body - size: 961 bytes. |
<html><head><title>Apache Tomcat/7.0.70 - Error report</title><style><!--H1 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:22px;} H2 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:16px;} H3 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:14px;} BODY {font-family:Tahoma,Arial,sans-serif;color:black;background-color:white;} B {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;} P {font-family:Tahoma,Arial,sans-serif;background:white;color:black;font-size:12px;}A {color : black;}A.name {color : black;}HR {color : #525D76;}--></style> </head><body><h1>HTTP Status 403 - </h1><HR size="1" noshade="noshade"><p><b>type</b> Status report</p><p><b>message</b> <u></u></p><p><b>description</b> <u>Access to the specified resource has been forbidden.</u></p><HR size="1" noshade="noshade"><h3>Apache Tomcat/7.0.70</h3></body></html>
|
| URL | http://zero.webappsecurity.com/resources/img/main_carousel_1.jpg/hxw23j0tad |
| Method | PUT |
| Parameter | |
| Attack | |
| Evidence | response code 403 for potentially insecure HTTP METHOD |
| Request Header - size: 319 bytes. |
PUT http://zero.webappsecurity.com/resources/img/main_carousel_1.jpg/hxw23j0tad HTTP/1.1
Host: zero.webappsecurity.com User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0 Pragma: no-cache Cache-Control: no-cache Referer: http://zero.webappsecurity.com Content-Length: 35 |
| Request Body - size: 35 bytes. |
"k8tRHsyB8OhVojo":"8VwlbqyRTW9iG3z"
|
| Response Header - size: 204 bytes. |
HTTP/1.1 403 Forbidden
Date: Mon, 14 Mar 2022 07:21:38 GMT Server: Apache-Coyote/1.1 Access-Control-Allow-Origin: * Content-Type: text/html;charset=utf-8 Content-Language: en Content-Length: 961 |
| Response Body - size: 961 bytes. |
<html><head><title>Apache Tomcat/7.0.70 - Error report</title><style><!--H1 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:22px;} H2 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:16px;} H3 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:14px;} BODY {font-family:Tahoma,Arial,sans-serif;color:black;background-color:white;} B {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;} P {font-family:Tahoma,Arial,sans-serif;background:white;color:black;font-size:12px;}A {color : black;}A.name {color : black;}HR {color : #525D76;}--></style> </head><body><h1>HTTP Status 403 - </h1><HR size="1" noshade="noshade"><p><b>type</b> Status report</p><p><b>message</b> <u></u></p><p><b>description</b> <u>Access to the specified resource has been forbidden.</u></p><HR size="1" noshade="noshade"><h3>Apache Tomcat/7.0.70</h3></body></html>
|
| URL | http://zero.webappsecurity.com/resources/img/main_carousel_2.jpg/i4v7bgrre1 |
| Method | PUT |
| Parameter | |
| Attack | |
| Evidence | response code 403 for potentially insecure HTTP METHOD |
| Request Header - size: 319 bytes. |
PUT http://zero.webappsecurity.com/resources/img/main_carousel_2.jpg/i4v7bgrre1 HTTP/1.1
Host: zero.webappsecurity.com User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0 Pragma: no-cache Cache-Control: no-cache Referer: http://zero.webappsecurity.com Content-Length: 35 |
| Request Body - size: 35 bytes. |
"xhwWWWZontkQz40":"63HygG7zH7a8ZPI"
|
| Response Header - size: 204 bytes. |
HTTP/1.1 403 Forbidden
Date: Mon, 14 Mar 2022 07:21:38 GMT Server: Apache-Coyote/1.1 Access-Control-Allow-Origin: * Content-Type: text/html;charset=utf-8 Content-Language: en Content-Length: 961 |
| Response Body - size: 961 bytes. |
<html><head><title>Apache Tomcat/7.0.70 - Error report</title><style><!--H1 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:22px;} H2 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:16px;} H3 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:14px;} BODY {font-family:Tahoma,Arial,sans-serif;color:black;background-color:white;} B {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;} P {font-family:Tahoma,Arial,sans-serif;background:white;color:black;font-size:12px;}A {color : black;}A.name {color : black;}HR {color : #525D76;}--></style> </head><body><h1>HTTP Status 403 - </h1><HR size="1" noshade="noshade"><p><b>type</b> Status report</p><p><b>message</b> <u></u></p><p><b>description</b> <u>Access to the specified resource has been forbidden.</u></p><HR size="1" noshade="noshade"><h3>Apache Tomcat/7.0.70</h3></body></html>
|
| URL | http://zero.webappsecurity.com/resources/img/main_carousel_3.jpg/3nh3dzfmok |
| Method | PUT |
| Parameter | |
| Attack | |
| Evidence | response code 403 for potentially insecure HTTP METHOD |
| Request Header - size: 319 bytes. |
PUT http://zero.webappsecurity.com/resources/img/main_carousel_3.jpg/3nh3dzfmok HTTP/1.1
Host: zero.webappsecurity.com User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0 Pragma: no-cache Cache-Control: no-cache Referer: http://zero.webappsecurity.com Content-Length: 35 |
| Request Body - size: 35 bytes. |
"FVHKxaC2YpvfEkL":"YhaQjXh46nVL0zi"
|
| Response Header - size: 204 bytes. |
HTTP/1.1 403 Forbidden
Date: Mon, 14 Mar 2022 07:21:38 GMT Server: Apache-Coyote/1.1 Access-Control-Allow-Origin: * Content-Type: text/html;charset=utf-8 Content-Language: en Content-Length: 961 |
| Response Body - size: 961 bytes. |
<html><head><title>Apache Tomcat/7.0.70 - Error report</title><style><!--H1 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:22px;} H2 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:16px;} H3 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:14px;} BODY {font-family:Tahoma,Arial,sans-serif;color:black;background-color:white;} B {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;} P {font-family:Tahoma,Arial,sans-serif;background:white;color:black;font-size:12px;}A {color : black;}A.name {color : black;}HR {color : #525D76;}--></style> </head><body><h1>HTTP Status 403 - </h1><HR size="1" noshade="noshade"><p><b>type</b> Status report</p><p><b>message</b> <u></u></p><p><b>description</b> <u>Access to the specified resource has been forbidden.</u></p><HR size="1" noshade="noshade"><h3>Apache Tomcat/7.0.70</h3></body></html>
|
| URL | http://zero.webappsecurity.com/resources/js/bootstrap.min.js/w09zs5my4m |
| Method | PUT |
| Parameter | |
| Attack | |
| Evidence | response code 403 for potentially insecure HTTP METHOD |
| Request Header - size: 315 bytes. |
PUT http://zero.webappsecurity.com/resources/js/bootstrap.min.js/w09zs5my4m HTTP/1.1
Host: zero.webappsecurity.com User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0 Pragma: no-cache Cache-Control: no-cache Referer: http://zero.webappsecurity.com Content-Length: 35 |
| Request Body - size: 35 bytes. |
"mAxfq5dQXCIHLK1":"cOvEw5H4wX3LsfM"
|
| Response Header - size: 204 bytes. |
HTTP/1.1 403 Forbidden
Date: Mon, 14 Mar 2022 07:21:39 GMT Server: Apache-Coyote/1.1 Access-Control-Allow-Origin: * Content-Type: text/html;charset=utf-8 Content-Language: en Content-Length: 961 |
| Response Body - size: 961 bytes. |
<html><head><title>Apache Tomcat/7.0.70 - Error report</title><style><!--H1 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:22px;} H2 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:16px;} H3 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:14px;} BODY {font-family:Tahoma,Arial,sans-serif;color:black;background-color:white;} B {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;} P {font-family:Tahoma,Arial,sans-serif;background:white;color:black;font-size:12px;}A {color : black;}A.name {color : black;}HR {color : #525D76;}--></style> </head><body><h1>HTTP Status 403 - </h1><HR size="1" noshade="noshade"><p><b>type</b> Status report</p><p><b>message</b> <u></u></p><p><b>description</b> <u>Access to the specified resource has been forbidden.</u></p><HR size="1" noshade="noshade"><h3>Apache Tomcat/7.0.70</h3></body></html>
|
| URL | http://zero.webappsecurity.com/resources/js/jquery-1.8.2.min.js/h71neugl5l |
| Method | PUT |
| Parameter | |
| Attack | |
| Evidence | response code 403 for potentially insecure HTTP METHOD |
| Request Header - size: 318 bytes. |
PUT http://zero.webappsecurity.com/resources/js/jquery-1.8.2.min.js/h71neugl5l HTTP/1.1
Host: zero.webappsecurity.com User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0 Pragma: no-cache Cache-Control: no-cache Referer: http://zero.webappsecurity.com Content-Length: 35 |
| Request Body - size: 35 bytes. |
"7dU7G5KBHXxGxZ9":"pO78B1WoELxfOw2"
|
| Response Header - size: 204 bytes. |
HTTP/1.1 403 Forbidden
Date: Mon, 14 Mar 2022 07:21:39 GMT Server: Apache-Coyote/1.1 Access-Control-Allow-Origin: * Content-Type: text/html;charset=utf-8 Content-Language: en Content-Length: 961 |
| Response Body - size: 961 bytes. |
<html><head><title>Apache Tomcat/7.0.70 - Error report</title><style><!--H1 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:22px;} H2 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:16px;} H3 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:14px;} BODY {font-family:Tahoma,Arial,sans-serif;color:black;background-color:white;} B {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;} P {font-family:Tahoma,Arial,sans-serif;background:white;color:black;font-size:12px;}A {color : black;}A.name {color : black;}HR {color : #525D76;}--></style> </head><body><h1>HTTP Status 403 - </h1><HR size="1" noshade="noshade"><p><b>type</b> Status report</p><p><b>message</b> <u></u></p><p><b>description</b> <u>Access to the specified resource has been forbidden.</u></p><HR size="1" noshade="noshade"><h3>Apache Tomcat/7.0.70</h3></body></html>
|
| URL | http://zero.webappsecurity.com/resources/js/placeholders.min.js/9ggir42lsl |
| Method | PUT |
| Parameter | |
| Attack | |
| Evidence | response code 403 for potentially insecure HTTP METHOD |
| Request Header - size: 318 bytes. |
PUT http://zero.webappsecurity.com/resources/js/placeholders.min.js/9ggir42lsl HTTP/1.1
Host: zero.webappsecurity.com User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0 Pragma: no-cache Cache-Control: no-cache Referer: http://zero.webappsecurity.com Content-Length: 35 |
| Request Body - size: 35 bytes. |
"rKg7soPWbqNh5ly":"VGlqWfkvROLgQ1V"
|
| Response Header - size: 204 bytes. |
HTTP/1.1 403 Forbidden
Date: Mon, 14 Mar 2022 07:21:39 GMT Server: Apache-Coyote/1.1 Access-Control-Allow-Origin: * Content-Type: text/html;charset=utf-8 Content-Language: en Content-Length: 961 |
| Response Body - size: 961 bytes. |
<html><head><title>Apache Tomcat/7.0.70 - Error report</title><style><!--H1 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:22px;} H2 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:16px;} H3 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:14px;} BODY {font-family:Tahoma,Arial,sans-serif;color:black;background-color:white;} B {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;} P {font-family:Tahoma,Arial,sans-serif;background:white;color:black;font-size:12px;}A {color : black;}A.name {color : black;}HR {color : #525D76;}--></style> </head><body><h1>HTTP Status 403 - </h1><HR size="1" noshade="noshade"><p><b>type</b> Status report</p><p><b>message</b> <u></u></p><p><b>description</b> <u>Access to the specified resource has been forbidden.</u></p><HR size="1" noshade="noshade"><h3>Apache Tomcat/7.0.70</h3></body></html>
|
| URL | http://zero.webappsecurity.com/resources/js/w091v9w9qh |
| Method | PUT |
| Parameter | |
| Attack | |
| Evidence | response code 403 for potentially insecure HTTP METHOD |
| Request Header - size: 298 bytes. |
PUT http://zero.webappsecurity.com/resources/js/w091v9w9qh HTTP/1.1
Host: zero.webappsecurity.com User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0 Pragma: no-cache Cache-Control: no-cache Referer: http://zero.webappsecurity.com Content-Length: 35 |
| Request Body - size: 35 bytes. |
"ZLn3EGeH5Er6IOF":"LVREhyuumombOjs"
|
| Response Header - size: 204 bytes. |
HTTP/1.1 403 Forbidden
Date: Mon, 14 Mar 2022 07:21:39 GMT Server: Apache-Coyote/1.1 Access-Control-Allow-Origin: * Content-Type: text/html;charset=utf-8 Content-Language: en Content-Length: 961 |
| Response Body - size: 961 bytes. |
<html><head><title>Apache Tomcat/7.0.70 - Error report</title><style><!--H1 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:22px;} H2 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:16px;} H3 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:14px;} BODY {font-family:Tahoma,Arial,sans-serif;color:black;background-color:white;} B {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;} P {font-family:Tahoma,Arial,sans-serif;background:white;color:black;font-size:12px;}A {color : black;}A.name {color : black;}HR {color : #525D76;}--></style> </head><body><h1>HTTP Status 403 - </h1><HR size="1" noshade="noshade"><p><b>type</b> Status report</p><p><b>message</b> <u></u></p><p><b>description</b> <u>Access to the specified resource has been forbidden.</u></p><HR size="1" noshade="noshade"><h3>Apache Tomcat/7.0.70</h3></body></html>
|
| URL | http://zero.webappsecurity.com/resources/xyb0qfzi18 |
| Method | PUT |
| Parameter | |
| Attack | |
| Evidence | response code 403 for potentially insecure HTTP METHOD |
| Request Header - size: 295 bytes. |
PUT http://zero.webappsecurity.com/resources/xyb0qfzi18 HTTP/1.1
Host: zero.webappsecurity.com User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0 Pragma: no-cache Cache-Control: no-cache Referer: http://zero.webappsecurity.com Content-Length: 35 |
| Request Body - size: 35 bytes. |
"rSZEdXh3rl3sQoU":"MgHH8m81wMeuMEH"
|
| Response Header - size: 204 bytes. |
HTTP/1.1 403 Forbidden
Date: Mon, 14 Mar 2022 07:21:35 GMT Server: Apache-Coyote/1.1 Access-Control-Allow-Origin: * Content-Type: text/html;charset=utf-8 Content-Language: en Content-Length: 961 |
| Response Body - size: 961 bytes. |
<html><head><title>Apache Tomcat/7.0.70 - Error report</title><style><!--H1 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:22px;} H2 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:16px;} H3 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:14px;} BODY {font-family:Tahoma,Arial,sans-serif;color:black;background-color:white;} B {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;} P {font-family:Tahoma,Arial,sans-serif;background:white;color:black;font-size:12px;}A {color : black;}A.name {color : black;}HR {color : #525D76;}--></style> </head><body><h1>HTTP Status 403 - </h1><HR size="1" noshade="noshade"><p><b>type</b> Status report</p><p><b>message</b> <u></u></p><p><b>description</b> <u>Access to the specified resource has been forbidden.</u></p><HR size="1" noshade="noshade"><h3>Apache Tomcat/7.0.70</h3></body></html>
|
| URL | http://zero.webappsecurity.com/robots.txt/lab09vgo1e |
| Method | PUT |
| Parameter | |
| Attack | |
| Evidence | response code 403 for potentially insecure HTTP METHOD |
| Request Header - size: 255 bytes. |
PUT http://zero.webappsecurity.com/robots.txt/lab09vgo1e HTTP/1.1
Host: zero.webappsecurity.com User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0 Pragma: no-cache Cache-Control: no-cache Content-Length: 35 |
| Request Body - size: 35 bytes. |
"KBOXY7g5huwDSQA":"RqI02KDQE4jv2cM"
|
| Response Header - size: 204 bytes. |
HTTP/1.1 403 Forbidden
Date: Mon, 14 Mar 2022 07:21:40 GMT Server: Apache-Coyote/1.1 Access-Control-Allow-Origin: * Content-Type: text/html;charset=utf-8 Content-Language: en Content-Length: 961 |
| Response Body - size: 961 bytes. |
<html><head><title>Apache Tomcat/7.0.70 - Error report</title><style><!--H1 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:22px;} H2 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:16px;} H3 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:14px;} BODY {font-family:Tahoma,Arial,sans-serif;color:black;background-color:white;} B {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;} P {font-family:Tahoma,Arial,sans-serif;background:white;color:black;font-size:12px;}A {color : black;}A.name {color : black;}HR {color : #525D76;}--></style> </head><body><h1>HTTP Status 403 - </h1><HR size="1" noshade="noshade"><p><b>type</b> Status report</p><p><b>message</b> <u></u></p><p><b>description</b> <u>Access to the specified resource has been forbidden.</u></p><HR size="1" noshade="noshade"><h3>Apache Tomcat/7.0.70</h3></body></html>
|
| URL | http://zero.webappsecurity.com/search.html?searchTerm=ZAP/5x2ara2vvo |
| Method | PUT |
| Parameter | |
| Attack | |
| Evidence | response code 200 for insecure HTTP METHOD |
| Request Header - size: 312 bytes. |
PUT http://zero.webappsecurity.com/search.html?searchTerm=ZAP/5x2ara2vvo HTTP/1.1
Host: zero.webappsecurity.com User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0 Pragma: no-cache Cache-Control: no-cache Referer: http://zero.webappsecurity.com Content-Length: 35 |
| Request Body - size: 35 bytes. |
"iooK1pQQRjjh84R":"ZmtAttPuI2HhYtb"
|
| Response Header - size: 242 bytes. |
HTTP/1.1 200 OK
Date: Mon, 14 Mar 2022 07:21:40 GMT Server: Apache-Coyote/1.1 Access-Control-Allow-Origin: * Cache-Control: no-cache, max-age=0, must-revalidate, no-store Content-Type: text/html;charset=UTF-8 Content-Language: en-US |
| Response Body - size: 7,734 bytes. |
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Zero - Search Tips</title> <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"> <meta http-equiv="X-UA-Compatible" content="IE=Edge"> <link type="text/css" rel="stylesheet" href="/resources/css/bootstrap.min.css"/> <link type="text/css" rel="stylesheet" href="/resources/css/font-awesome.css"/> <link type="text/css" rel="stylesheet" href="/resources/css/main.css"/> <script src="/resources/js/jquery-1.8.2.min.js"></script> <script src="/resources/js/bootstrap.min.js"></script> <script src="/resources/js/placeholders.min.js"></script> <script type="text/javascript"> Placeholders.init({ live: true, // Apply to future and modified elements too hideOnFocus: true // Hide the placeholder when the element receives focus }); </script> <script type="text/javascript"> $(document).ajaxError(function errorHandler(event, xhr, ajaxOptions, thrownError) { if (xhr.status == 403) { window.location.reload(); } }); </script> </head> <body> <div class="wrapper"> <div class="navbar navbar-fixed-top"> <div class="navbar-inner"> <div class="container"> <a href="/index.html" class="brand">Zero Bank</a> <div> <ul class="nav float-right"> <li> <form action="/search.html" class="navbar-search pull-right" style="padding-right: 20px"> <input type="text" id="searchTerm" name="searchTerm" class="search-query" placeholder="Search"/> </form> </li> <li> <button id="signin_button" type="button" class="signin btn btn-info"> <i class="icon-signin"></i>Signin </button> </li> </ul> </div> </div> </div> </div> <script type="text/javascript"> $(function() { var path = "/"; $("#signin_button").click(function(event) { event.preventDefault(); window.location.href = path + "login" + ".html"; }); }); </script> <div class="container"> <div class="top_offset"> <div class="row"> <div class="span12"> <div id="nav" class="clearfix"> <ul id="pages-nav"> <li id="homeMenu"><div><strong>Home</strong></div></li> <li id="onlineBankingMenu"><div><strong>Online Banking</strong></div></li> <li id="feedback"><div><strong>Feedback</strong></div></li> </ul> </div> </div> <script type="text/javascript"> $(function () { var path = "/"; var featureIdToName = { "index": "homeMenu", "online-banking": "onlineBankingMenu", "feedback": "feedback" }; if (document.location.href.match(".*" + path + "$") != null) { $("#homeMenu").addClass("active"); } else { $.each(featureIdToName, function(featureId, featureName) { if (document.location.href.indexOf(featureId + ".html") >= 0) { $("#" + featureName).addClass("active"); } }); } $.each(featureIdToName, function(featureId, featureName) { $("#nav").on("click", "li[id='" + featureName + "']", function(event) { event.preventDefault(); window.location.href = path + featureId + ".html"; }); }); }); </script> </div> <hr class="row-divider"/> <h2>Search Results:</h2> No results were found for the query: ZAP/5x2ara2vvo </div> </div> <div class="clearfix push"></div> </div> <div class="extra"> <div class="extra-inner"> <div class="container"> <div class="row"> <div class="span4"> <ul> <li><span id="download_webinspect_link">Download WebInspect</span></li> </ul> </div> <div class="span4"> <ul> <li><span id="terms_of_use_link">Terms of Use</span></li> </ul> </div> <div class="span4"> <ul> <li><span id="contact_hp_link">Contact Micro Focus</span></li> <li><span id="privacy_statement_link">Privacy Statement</span></li> </ul> </div> </div> <div class="row"> <div class="disclaimer span12"> The Free Online Bank Web site is published by Micro Focus Fortify for the sole purpose of demonstrating the functionality and effectiveness of Micro Focus Fortify’s WebInspect products in detecting and reporting Web application vulnerabilities. This site is not a real banking site and any similarities to third party products and/or Web sites are purely coincidental. This site is provided "as is" without warranty of any kind, either express or implied. Micro Focus Fortify does not assume any risk in relation to your use of this Web site. Use of this Web site indicates that you have read and agree to Micro Focus Fortify’s Terms of Use found at <a href="https://www.microfocus.com/about/legal/#privacy" target="_blank">https://www.microfocus.com/about/legal/#privacy</a> and Micro Focus Fortify’s Online Privacy Statement found at <a href="https://www.microfocus.com/about/legal/#privacy" target="_blank">https://www.microfocus.com/about/legal/#privacy</a>. <br/><br/> Copyright © 2012-2018, Micro Focus Development Company. All rights reserved. </div> </div> </div> </div> </div> <script type="text/javascript"> $(function () { var path = "/"; var attachClickHandler = function(selector, handler) { $(".extra").on('click', selector, handler); } var footerLinks = { "download_webinspect_link": { absolute: true, page: "https://software.microfocus.com/en-us/products/webinspect-dynamic-analysis-dast/overview" }, "contact_hp_link" : { absolute: true, page: "https://support.fortify.com" }, "privacy_statement_link": { absolute: true, page: "https://www.microfocus.com/about/legal/#privacy" }, "terms_of_use_link": { absolute: true, page: "https://www.microfocus.com/about/legal/" } }; $.each(footerLinks, function(linkId, link) { attachClickHandler('span[id="' + linkId + '"]', function(event) { event.preventDefault(); if (link.absolute) { window.location.href = link.page; } else { window.location.href = path + link.page + ".html"; } }); }); }); </script> </body> </html> |
| URL | http://zero.webappsecurity.com/sitemap.xml/sq15qitqmv |
| Method | PUT |
| Parameter | |
| Attack | |
| Evidence | response code 403 for potentially insecure HTTP METHOD |
| Request Header - size: 256 bytes. |
PUT http://zero.webappsecurity.com/sitemap.xml/sq15qitqmv HTTP/1.1
Host: zero.webappsecurity.com User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0 Pragma: no-cache Cache-Control: no-cache Content-Length: 35 |
| Request Body - size: 35 bytes. |
"OKvtWwO2kReXuPs":"pnj4QViHcMbJrcq"
|
| Response Header - size: 204 bytes. |
HTTP/1.1 403 Forbidden
Date: Mon, 14 Mar 2022 07:21:40 GMT Server: Apache-Coyote/1.1 Access-Control-Allow-Origin: * Content-Type: text/html;charset=utf-8 Content-Language: en Content-Length: 961 |
| Response Body - size: 961 bytes. |
<html><head><title>Apache Tomcat/7.0.70 - Error report</title><style><!--H1 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:22px;} H2 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:16px;} H3 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:14px;} BODY {font-family:Tahoma,Arial,sans-serif;color:black;background-color:white;} B {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;} P {font-family:Tahoma,Arial,sans-serif;background:white;color:black;font-size:12px;}A {color : black;}A.name {color : black;}HR {color : #525D76;}--></style> </head><body><h1>HTTP Status 403 - </h1><HR size="1" noshade="noshade"><p><b>type</b> Status report</p><p><b>message</b> <u></u></p><p><b>description</b> <u>Access to the specified resource has been forbidden.</u></p><HR size="1" noshade="noshade"><h3>Apache Tomcat/7.0.70</h3></body></html>
|
| URL | http://zero.webappsecurity.com/w0zzu8fupw |
| Method | PUT |
| Parameter | |
| Attack | |
| Evidence | response code 403 for potentially insecure HTTP METHOD |
| Request Header - size: 244 bytes. |
PUT http://zero.webappsecurity.com/w0zzu8fupw HTTP/1.1
Host: zero.webappsecurity.com User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0 Pragma: no-cache Cache-Control: no-cache Content-Length: 35 |
| Request Body - size: 35 bytes. |
"r4TvYo4eqwIN9kr":"0ZHp8QkkvmoEgp3"
|
| Response Header - size: 204 bytes. |
HTTP/1.1 403 Forbidden
Date: Mon, 14 Mar 2022 07:21:33 GMT Server: Apache-Coyote/1.1 Access-Control-Allow-Origin: * Content-Type: text/html;charset=utf-8 Content-Language: en Content-Length: 961 |
| Response Body - size: 961 bytes. |
<html><head><title>Apache Tomcat/7.0.70 - Error report</title><style><!--H1 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:22px;} H2 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:16px;} H3 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:14px;} BODY {font-family:Tahoma,Arial,sans-serif;color:black;background-color:white;} B {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;} P {font-family:Tahoma,Arial,sans-serif;background:white;color:black;font-size:12px;}A {color : black;}A.name {color : black;}HR {color : #525D76;}--></style> </head><body><h1>HTTP Status 403 - </h1><HR size="1" noshade="noshade"><p><b>type</b> Status report</p><p><b>message</b> <u></u></p><p><b>description</b> <u>Access to the specified resource has been forbidden.</u></p><HR size="1" noshade="noshade"><h3>Apache Tomcat/7.0.70</h3></body></html>
|
| Instances | 19 |
| Solution |
TBA
|
| Reference | http://projects.webappsec.org/Fingerprinting |
| Tags |
OWASP_2021_A05
WSTG-v42-CONF-06 OWASP_2017_A06 |
| CWE Id | 200 |
| WASC Id | 45 |
| Plugin Id | 90028 |
|
Medium |
Missing Anti-clickjacking Header |
|---|---|
| Description |
The response does not include either Content-Security-Policy with 'frame-ancestors' directive or X-Frame-Options to protect against 'ClickJacking' attacks.
|
| URL | http://zero.webappsecurity.com |
| Method | GET |
| Parameter | X-Frame-Options |
| Attack | |
| Evidence | |
| Request Header - size: 213 bytes. |
GET http://zero.webappsecurity.com HTTP/1.1
Host: zero.webappsecurity.com User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0 Pragma: no-cache Cache-Control: no-cache |
| Request Body - size: 0 bytes. |
|
| Response Header - size: 242 bytes. |
HTTP/1.1 200 OK
Date: Mon, 14 Mar 2022 07:13:40 GMT Server: Apache-Coyote/1.1 Access-Control-Allow-Origin: * Cache-Control: no-cache, max-age=0, must-revalidate, no-store Content-Type: text/html;charset=UTF-8 Content-Language: en-US |
| Response Body - size: 12,471 bytes. |
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Zero - Personal Banking - Loans - Credit Cards</title> <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"> <meta http-equiv="X-UA-Compatible" content="IE=Edge"> <link type="text/css" rel="stylesheet" href="/resources/css/bootstrap.min.css"/> <link type="text/css" rel="stylesheet" href="/resources/css/font-awesome.css"/> <link type="text/css" rel="stylesheet" href="/resources/css/main.css"/> <script src="/resources/js/jquery-1.8.2.min.js"></script> <script src="/resources/js/bootstrap.min.js"></script> <script src="/resources/js/placeholders.min.js"></script> <script type="text/javascript"> Placeholders.init({ live: true, // Apply to future and modified elements too hideOnFocus: true // Hide the placeholder when the element receives focus }); </script> <script type="text/javascript"> $(document).ajaxError(function errorHandler(event, xhr, ajaxOptions, thrownError) { if (xhr.status == 403) { window.location.reload(); } }); </script> </head> <body> <div class="wrapper"> <div class="navbar navbar-fixed-top"> <div class="navbar-inner"> <div class="container"> <a href="/index.html" class="brand">Zero Bank</a> <div> <ul class="nav float-right"> <li> <form action="/search.html" class="navbar-search pull-right" style="padding-right: 20px"> <input type="text" id="searchTerm" name="searchTerm" class="search-query" placeholder="Search"/> </form> </li> <li> <button id="signin_button" type="button" class="signin btn btn-info"> <i class="icon-signin"></i>Signin </button> </li> </ul> </div> </div> </div> </div> <script type="text/javascript"> $(function() { var path = "/"; $("#signin_button").click(function(event) { event.preventDefault(); window.location.href = path + "login" + ".html"; }); }); </script> <div class="container"> <div class="top_offset"> <div class="row"> <div class="span12"> <div id="nav" class="clearfix"> <ul id="pages-nav"> <li id="homeMenu"><div><strong>Home</strong></div></li> <li id="onlineBankingMenu"><div><strong>Online Banking</strong></div></li> <li id="feedback"><div><strong>Feedback</strong></div></li> </ul> </div> </div> <script type="text/javascript"> $(function () { var path = "/"; var featureIdToName = { "index": "homeMenu", "online-banking": "onlineBankingMenu", "feedback": "feedback" }; if (document.location.href.match(".*" + path + "$") != null) { $("#homeMenu").addClass("active"); } else { $.each(featureIdToName, function(featureId, featureName) { if (document.location.href.indexOf(featureId + ".html") >= 0) { $("#" + featureName).addClass("active"); } }); } $.each(featureIdToName, function(featureId, featureName) { $("#nav").on("click", "li[id='" + featureName + "']", function(event) { event.preventDefault(); window.location.href = path + featureId + ".html"; }); }); }); </script> </div> <div class="row"> <div class="span12"> <div id="carousel" class="carousel slide"> <div class="carousel-inner"> <div class="active item"> <img src="/resources/img/main_carousel_1.jpg" width="940" height="401" alt=""/> <div class="custom carousel-caption"> <h4>Online Banking</h4> <p>Welcome to Zero Online Banking. Zero provides a greener and more convenient way to manage your money. Zero enables you to check your account balances, pay your bills, transfer money, and keep detailed records of your transactions, wherever there is an internet connection.</p> </div> </div> <div class="item"> <img src="/resources/img/main_carousel_2.jpg" width="940" height="401" alt=""/> <div class="custom carousel-caption"> <h4>Online Banking</h4> <p>Welcome to Zero Online Banking. Zero provides a greener and more convenient way to manage your money. Zero enables you to check your account balances, pay your bills, transfer money, and keep detailed records of your transactions, wherever there is an internet connection.</p> </div> </div> <div class="item"> <img src="/resources/img/main_carousel_3.jpg" width="940" height="401" alt=""/> <div class="custom carousel-caption"> <h4>Online Banking</h4> <p>Welcome to Zero Online Banking. Zero provides a greener and more convenient way to manage your money. Zero enables you to check your account balances, pay your bills, transfer money, and keep detailed records of your transactions, wherever there is an internet connection.</p> </div> </div> </div> <a class="carousel-control custom left" href="#carousel" data-slide="prev">‹</a> <a class="carousel-control custom right" href="#carousel" data-slide="next">›</a> </div> </div> </div> <hr class="row-divider"/> <div id="online_banking_features" class="row divider"> <div class="span3"> <h4><i class="icon icon-bookmark"></i> Online Banking</h4> <p>Click the button below to view online banking features.</p> <a id="online-banking" class="btn btn-small btn-info">More Services</a> </div> <div class="span3"> <div> <h4><span class="headers" id="account_activity_link"><i class="icon icon-user"></i>Checking Account Activity</span></h4> <p>Use Zero to view the most up-to-date listings of your deposits, withdrawals, interest payments, and a number of other useful transactions. </p> </div> </div> <div class="span3"> <div> <h4><span class="headers" id="transfer_funds_link"><i class="icon icon-random"></i>Transfer Funds</span></h4> <p>Use Zero to safely and securely transfer funds between accounts. There is no hold placed on online money transfers, so your funds are available when you need them. </p> </div> </div> <div class="span3"> <div> <h4><span class="headers" id="money_map_link"><i class="icon icon-list-alt"></i>My Money Map</span></h4> <p>Use Zero to set up and monitor your personalized money map. A money map is an easy-to-use online tool that helps you manage your finances efficiently. With Money Map, you can create a budget, sort your finances into spending and savings categories, check the interest your accounts are earning, and gain new understanding of your patterns with the help of Zero’s clear charts and graphs. </p> </div> </div> </div> <script type="text/javascript"> $(function() { $("#carousel").carousel({ interval: false }); $("div").on("click", "a[id='online-banking']", function(event){ event.preventDefault(); window.location.href = "/" + "online-banking" + ".html"; }); var path = "/bank/"; var featureIdToName = { "account_activity_link": "account-activity", "transfer_funds_link": "transfer-funds", "money_map_link": "money-map" } $.each(featureIdToName, function(featureId, featureName) { $("#online_banking_features").on("click", "span[id='" + featureId + "']", function(event) { event.preventDefault(); window.location.href = path + featureName +".html"; }); }); }); </script> </div> </div> <div class="clearfix push"></div> </div> <div class="extra"> <div class="extra-inner"> <div class="container"> <div class="row"> <div class="span4"> <ul> <li><span id="download_webinspect_link">Download WebInspect</span></li> </ul> </div> <div class="span4"> <ul> <li><span id="terms_of_use_link">Terms of Use</span></li> </ul> </div> <div class="span4"> <ul> <li><span id="contact_hp_link">Contact Micro Focus</span></li> <li><span id="privacy_statement_link">Privacy Statement</span></li> </ul> </div> </div> <div class="row"> <div class="disclaimer span12"> The Free Online Bank Web site is published by Micro Focus Fortify for the sole purpose of demonstrating the functionality and effectiveness of Micro Focus Fortify’s WebInspect products in detecting and reporting Web application vulnerabilities. This site is not a real banking site and any similarities to third party products and/or Web sites are purely coincidental. This site is provided "as is" without warranty of any kind, either express or implied. Micro Focus Fortify does not assume any risk in relation to your use of this Web site. Use of this Web site indicates that you have read and agree to Micro Focus Fortify’s Terms of Use found at <a href="https://www.microfocus.com/about/legal/#privacy" target="_blank">https://www.microfocus.com/about/legal/#privacy</a> and Micro Focus Fortify’s Online Privacy Statement found at <a href="https://www.microfocus.com/about/legal/#privacy" target="_blank">https://www.microfocus.com/about/legal/#privacy</a>. <br/><br/> Copyright © 2012-2018, Micro Focus Development Company. All rights reserved. </div> </div> </div> </div> </div> <script type="text/javascript"> $(function () { var path = "/"; var attachClickHandler = function(selector, handler) { $(".extra").on('click', selector, handler); } var footerLinks = { "download_webinspect_link": { absolute: true, page: "https://software.microfocus.com/en-us/products/webinspect-dynamic-analysis-dast/overview" }, "contact_hp_link" : { absolute: true, page: "https://support.fortify.com" }, "privacy_statement_link": { absolute: true, page: "https://www.microfocus.com/about/legal/#privacy" }, "terms_of_use_link": { absolute: true, page: "https://www.microfocus.com/about/legal/" } }; $.each(footerLinks, function(linkId, link) { attachClickHandler('span[id="' + linkId + '"]', function(event) { event.preventDefault(); if (link.absolute) { window.location.href = link.page; } else { window.location.href = path + link.page + ".html"; } }); }); }); </script> </body> </html> |
| URL | http://zero.webappsecurity.com/ |
| Method | GET |
| Parameter | X-Frame-Options |
| Attack | |
| Evidence | |
| Request Header - size: 214 bytes. |
GET http://zero.webappsecurity.com/ HTTP/1.1
Host: zero.webappsecurity.com User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0 Pragma: no-cache Cache-Control: no-cache |
| Request Body - size: 0 bytes. |
|
| Response Header - size: 242 bytes. |
HTTP/1.1 200 OK
Date: Mon, 14 Mar 2022 07:13:39 GMT Server: Apache-Coyote/1.1 Access-Control-Allow-Origin: * Cache-Control: no-cache, max-age=0, must-revalidate, no-store Content-Type: text/html;charset=UTF-8 Content-Language: en-US |
| Response Body - size: 12,471 bytes. |
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Zero - Personal Banking - Loans - Credit Cards</title> <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"> <meta http-equiv="X-UA-Compatible" content="IE=Edge"> <link type="text/css" rel="stylesheet" href="/resources/css/bootstrap.min.css"/> <link type="text/css" rel="stylesheet" href="/resources/css/font-awesome.css"/> <link type="text/css" rel="stylesheet" href="/resources/css/main.css"/> <script src="/resources/js/jquery-1.8.2.min.js"></script> <script src="/resources/js/bootstrap.min.js"></script> <script src="/resources/js/placeholders.min.js"></script> <script type="text/javascript"> Placeholders.init({ live: true, // Apply to future and modified elements too hideOnFocus: true // Hide the placeholder when the element receives focus }); </script> <script type="text/javascript"> $(document).ajaxError(function errorHandler(event, xhr, ajaxOptions, thrownError) { if (xhr.status == 403) { window.location.reload(); } }); </script> </head> <body> <div class="wrapper"> <div class="navbar navbar-fixed-top"> <div class="navbar-inner"> <div class="container"> <a href="/index.html" class="brand">Zero Bank</a> <div> <ul class="nav float-right"> <li> <form action="/search.html" class="navbar-search pull-right" style="padding-right: 20px"> <input type="text" id="searchTerm" name="searchTerm" class="search-query" placeholder="Search"/> </form> </li> <li> <button id="signin_button" type="button" class="signin btn btn-info"> <i class="icon-signin"></i>Signin </button> </li> </ul> </div> </div> </div> </div> <script type="text/javascript"> $(function() { var path = "/"; $("#signin_button").click(function(event) { event.preventDefault(); window.location.href = path + "login" + ".html"; }); }); </script> <div class="container"> <div class="top_offset"> <div class="row"> <div class="span12"> <div id="nav" class="clearfix"> <ul id="pages-nav"> <li id="homeMenu"><div><strong>Home</strong></div></li> <li id="onlineBankingMenu"><div><strong>Online Banking</strong></div></li> <li id="feedback"><div><strong>Feedback</strong></div></li> </ul> </div> </div> <script type="text/javascript"> $(function () { var path = "/"; var featureIdToName = { "index": "homeMenu", "online-banking": "onlineBankingMenu", "feedback": "feedback" }; if (document.location.href.match(".*" + path + "$") != null) { $("#homeMenu").addClass("active"); } else { $.each(featureIdToName, function(featureId, featureName) { if (document.location.href.indexOf(featureId + ".html") >= 0) { $("#" + featureName).addClass("active"); } }); } $.each(featureIdToName, function(featureId, featureName) { $("#nav").on("click", "li[id='" + featureName + "']", function(event) { event.preventDefault(); window.location.href = path + featureId + ".html"; }); }); }); </script> </div> <div class="row"> <div class="span12"> <div id="carousel" class="carousel slide"> <div class="carousel-inner"> <div class="active item"> <img src="/resources/img/main_carousel_1.jpg" width="940" height="401" alt=""/> <div class="custom carousel-caption"> <h4>Online Banking</h4> <p>Welcome to Zero Online Banking. Zero provides a greener and more convenient way to manage your money. Zero enables you to check your account balances, pay your bills, transfer money, and keep detailed records of your transactions, wherever there is an internet connection.</p> </div> </div> <div class="item"> <img src="/resources/img/main_carousel_2.jpg" width="940" height="401" alt=""/> <div class="custom carousel-caption"> <h4>Online Banking</h4> <p>Welcome to Zero Online Banking. Zero provides a greener and more convenient way to manage your money. Zero enables you to check your account balances, pay your bills, transfer money, and keep detailed records of your transactions, wherever there is an internet connection.</p> </div> </div> <div class="item"> <img src="/resources/img/main_carousel_3.jpg" width="940" height="401" alt=""/> <div class="custom carousel-caption"> <h4>Online Banking</h4> <p>Welcome to Zero Online Banking. Zero provides a greener and more convenient way to manage your money. Zero enables you to check your account balances, pay your bills, transfer money, and keep detailed records of your transactions, wherever there is an internet connection.</p> </div> </div> </div> <a class="carousel-control custom left" href="#carousel" data-slide="prev">‹</a> <a class="carousel-control custom right" href="#carousel" data-slide="next">›</a> </div> </div> </div> <hr class="row-divider"/> <div id="online_banking_features" class="row divider"> <div class="span3"> <h4><i class="icon icon-bookmark"></i> Online Banking</h4> <p>Click the button below to view online banking features.</p> <a id="online-banking" class="btn btn-small btn-info">More Services</a> </div> <div class="span3"> <div> <h4><span class="headers" id="account_activity_link"><i class="icon icon-user"></i>Checking Account Activity</span></h4> <p>Use Zero to view the most up-to-date listings of your deposits, withdrawals, interest payments, and a number of other useful transactions. </p> </div> </div> <div class="span3"> <div> <h4><span class="headers" id="transfer_funds_link"><i class="icon icon-random"></i>Transfer Funds</span></h4> <p>Use Zero to safely and securely transfer funds between accounts. There is no hold placed on online money transfers, so your funds are available when you need them. </p> </div> </div> <div class="span3"> <div> <h4><span class="headers" id="money_map_link"><i class="icon icon-list-alt"></i>My Money Map</span></h4> <p>Use Zero to set up and monitor your personalized money map. A money map is an easy-to-use online tool that helps you manage your finances efficiently. With Money Map, you can create a budget, sort your finances into spending and savings categories, check the interest your accounts are earning, and gain new understanding of your patterns with the help of Zero’s clear charts and graphs. </p> </div> </div> </div> <script type="text/javascript"> $(function() { $("#carousel").carousel({ interval: false }); $("div").on("click", "a[id='online-banking']", function(event){ event.preventDefault(); window.location.href = "/" + "online-banking" + ".html"; }); var path = "/bank/"; var featureIdToName = { "account_activity_link": "account-activity", "transfer_funds_link": "transfer-funds", "money_map_link": "money-map" } $.each(featureIdToName, function(featureId, featureName) { $("#online_banking_features").on("click", "span[id='" + featureId + "']", function(event) { event.preventDefault(); window.location.href = path + featureName +".html"; }); }); }); </script> </div> </div> <div class="clearfix push"></div> </div> <div class="extra"> <div class="extra-inner"> <div class="container"> <div class="row"> <div class="span4"> <ul> <li><span id="download_webinspect_link">Download WebInspect</span></li> </ul> </div> <div class="span4"> <ul> <li><span id="terms_of_use_link">Terms of Use</span></li> </ul> </div> <div class="span4"> <ul> <li><span id="contact_hp_link">Contact Micro Focus</span></li> <li><span id="privacy_statement_link">Privacy Statement</span></li> </ul> </div> </div> <div class="row"> <div class="disclaimer span12"> The Free Online Bank Web site is published by Micro Focus Fortify for the sole purpose of demonstrating the functionality and effectiveness of Micro Focus Fortify’s WebInspect products in detecting and reporting Web application vulnerabilities. This site is not a real banking site and any similarities to third party products and/or Web sites are purely coincidental. This site is provided "as is" without warranty of any kind, either express or implied. Micro Focus Fortify does not assume any risk in relation to your use of this Web site. Use of this Web site indicates that you have read and agree to Micro Focus Fortify’s Terms of Use found at <a href="https://www.microfocus.com/about/legal/#privacy" target="_blank">https://www.microfocus.com/about/legal/#privacy</a> and Micro Focus Fortify’s Online Privacy Statement found at <a href="https://www.microfocus.com/about/legal/#privacy" target="_blank">https://www.microfocus.com/about/legal/#privacy</a>. <br/><br/> Copyright © 2012-2018, Micro Focus Development Company. All rights reserved. </div> </div> </div> </div> </div> <script type="text/javascript"> $(function () { var path = "/"; var attachClickHandler = function(selector, handler) { $(".extra").on('click', selector, handler); } var footerLinks = { "download_webinspect_link": { absolute: true, page: "https://software.microfocus.com/en-us/products/webinspect-dynamic-analysis-dast/overview" }, "contact_hp_link" : { absolute: true, page: "https://support.fortify.com" }, "privacy_statement_link": { absolute: true, page: "https://www.microfocus.com/about/legal/#privacy" }, "terms_of_use_link": { absolute: true, page: "https://www.microfocus.com/about/legal/" } }; $.each(footerLinks, function(linkId, link) { attachClickHandler('span[id="' + linkId + '"]', function(event) { event.preventDefault(); if (link.absolute) { window.location.href = link.page; } else { window.location.href = path + link.page + ".html"; } }); }); }); </script> </body> </html> |
| URL | http://zero.webappsecurity.com/index.html |
| Method | GET |
| Parameter | X-Frame-Options |
| Attack | |
| Evidence | |
| Request Header - size: 265 bytes. |
GET http://zero.webappsecurity.com/index.html HTTP/1.1
Host: zero.webappsecurity.com User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0 Pragma: no-cache Cache-Control: no-cache Referer: http://zero.webappsecurity.com |
| Request Body - size: 0 bytes. |
|
| Response Header - size: 242 bytes. |
HTTP/1.1 200 OK
Date: Mon, 14 Mar 2022 07:13:41 GMT Server: Apache-Coyote/1.1 Access-Control-Allow-Origin: * Cache-Control: no-cache, max-age=0, must-revalidate, no-store Content-Type: text/html;charset=UTF-8 Content-Language: en-US |
| Response Body - size: 12,471 bytes. |
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Zero - Personal Banking - Loans - Credit Cards</title> <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"> <meta http-equiv="X-UA-Compatible" content="IE=Edge"> <link type="text/css" rel="stylesheet" href="/resources/css/bootstrap.min.css"/> <link type="text/css" rel="stylesheet" href="/resources/css/font-awesome.css"/> <link type="text/css" rel="stylesheet" href="/resources/css/main.css"/> <script src="/resources/js/jquery-1.8.2.min.js"></script> <script src="/resources/js/bootstrap.min.js"></script> <script src="/resources/js/placeholders.min.js"></script> <script type="text/javascript"> Placeholders.init({ live: true, // Apply to future and modified elements too hideOnFocus: true // Hide the placeholder when the element receives focus }); </script> <script type="text/javascript"> $(document).ajaxError(function errorHandler(event, xhr, ajaxOptions, thrownError) { if (xhr.status == 403) { window.location.reload(); } }); </script> </head> <body> <div class="wrapper"> <div class="navbar navbar-fixed-top"> <div class="navbar-inner"> <div class="container"> <a href="/index.html" class="brand">Zero Bank</a> <div> <ul class="nav float-right"> <li> <form action="/search.html" class="navbar-search pull-right" style="padding-right: 20px"> <input type="text" id="searchTerm" name="searchTerm" class="search-query" placeholder="Search"/> </form> </li> <li> <button id="signin_button" type="button" class="signin btn btn-info"> <i class="icon-signin"></i>Signin </button> </li> </ul> </div> </div> </div> </div> <script type="text/javascript"> $(function() { var path = "/"; $("#signin_button").click(function(event) { event.preventDefault(); window.location.href = path + "login" + ".html"; }); }); </script> <div class="container"> <div class="top_offset"> <div class="row"> <div class="span12"> <div id="nav" class="clearfix"> <ul id="pages-nav"> <li id="homeMenu"><div><strong>Home</strong></div></li> <li id="onlineBankingMenu"><div><strong>Online Banking</strong></div></li> <li id="feedback"><div><strong>Feedback</strong></div></li> </ul> </div> </div> <script type="text/javascript"> $(function () { var path = "/"; var featureIdToName = { "index": "homeMenu", "online-banking": "onlineBankingMenu", "feedback": "feedback" }; if (document.location.href.match(".*" + path + "$") != null) { $("#homeMenu").addClass("active"); } else { $.each(featureIdToName, function(featureId, featureName) { if (document.location.href.indexOf(featureId + ".html") >= 0) { $("#" + featureName).addClass("active"); } }); } $.each(featureIdToName, function(featureId, featureName) { $("#nav").on("click", "li[id='" + featureName + "']", function(event) { event.preventDefault(); window.location.href = path + featureId + ".html"; }); }); }); </script> </div> <div class="row"> <div class="span12"> <div id="carousel" class="carousel slide"> <div class="carousel-inner"> <div class="active item"> <img src="/resources/img/main_carousel_1.jpg" width="940" height="401" alt=""/> <div class="custom carousel-caption"> <h4>Online Banking</h4> <p>Welcome to Zero Online Banking. Zero provides a greener and more convenient way to manage your money. Zero enables you to check your account balances, pay your bills, transfer money, and keep detailed records of your transactions, wherever there is an internet connection.</p> </div> </div> <div class="item"> <img src="/resources/img/main_carousel_2.jpg" width="940" height="401" alt=""/> <div class="custom carousel-caption"> <h4>Online Banking</h4> <p>Welcome to Zero Online Banking. Zero provides a greener and more convenient way to manage your money. Zero enables you to check your account balances, pay your bills, transfer money, and keep detailed records of your transactions, wherever there is an internet connection.</p> </div> </div> <div class="item"> <img src="/resources/img/main_carousel_3.jpg" width="940" height="401" alt=""/> <div class="custom carousel-caption"> <h4>Online Banking</h4> <p>Welcome to Zero Online Banking. Zero provides a greener and more convenient way to manage your money. Zero enables you to check your account balances, pay your bills, transfer money, and keep detailed records of your transactions, wherever there is an internet connection.</p> </div> </div> </div> <a class="carousel-control custom left" href="#carousel" data-slide="prev">‹</a> <a class="carousel-control custom right" href="#carousel" data-slide="next">›</a> </div> </div> </div> <hr class="row-divider"/> <div id="online_banking_features" class="row divider"> <div class="span3"> <h4><i class="icon icon-bookmark"></i> Online Banking</h4> <p>Click the button below to view online banking features.</p> <a id="online-banking" class="btn btn-small btn-info">More Services</a> </div> <div class="span3"> <div> <h4><span class="headers" id="account_activity_link"><i class="icon icon-user"></i>Checking Account Activity</span></h4> <p>Use Zero to view the most up-to-date listings of your deposits, withdrawals, interest payments, and a number of other useful transactions. </p> </div> </div> <div class="span3"> <div> <h4><span class="headers" id="transfer_funds_link"><i class="icon icon-random"></i>Transfer Funds</span></h4> <p>Use Zero to safely and securely transfer funds between accounts. There is no hold placed on online money transfers, so your funds are available when you need them. </p> </div> </div> <div class="span3"> <div> <h4><span class="headers" id="money_map_link"><i class="icon icon-list-alt"></i>My Money Map</span></h4> <p>Use Zero to set up and monitor your personalized money map. A money map is an easy-to-use online tool that helps you manage your finances efficiently. With Money Map, you can create a budget, sort your finances into spending and savings categories, check the interest your accounts are earning, and gain new understanding of your patterns with the help of Zero’s clear charts and graphs. </p> </div> </div> </div> <script type="text/javascript"> $(function() { $("#carousel").carousel({ interval: false }); $("div").on("click", "a[id='online-banking']", function(event){ event.preventDefault(); window.location.href = "/" + "online-banking" + ".html"; }); var path = "/bank/"; var featureIdToName = { "account_activity_link": "account-activity", "transfer_funds_link": "transfer-funds", "money_map_link": "money-map" } $.each(featureIdToName, function(featureId, featureName) { $("#online_banking_features").on("click", "span[id='" + featureId + "']", function(event) { event.preventDefault(); window.location.href = path + featureName +".html"; }); }); }); </script> </div> </div> <div class="clearfix push"></div> </div> <div class="extra"> <div class="extra-inner"> <div class="container"> <div class="row"> <div class="span4"> <ul> <li><span id="download_webinspect_link">Download WebInspect</span></li> </ul> </div> <div class="span4"> <ul> <li><span id="terms_of_use_link">Terms of Use</span></li> </ul> </div> <div class="span4"> <ul> <li><span id="contact_hp_link">Contact Micro Focus</span></li> <li><span id="privacy_statement_link">Privacy Statement</span></li> </ul> </div> </div> <div class="row"> <div class="disclaimer span12"> The Free Online Bank Web site is published by Micro Focus Fortify for the sole purpose of demonstrating the functionality and effectiveness of Micro Focus Fortify’s WebInspect products in detecting and reporting Web application vulnerabilities. This site is not a real banking site and any similarities to third party products and/or Web sites are purely coincidental. This site is provided "as is" without warranty of any kind, either express or implied. Micro Focus Fortify does not assume any risk in relation to your use of this Web site. Use of this Web site indicates that you have read and agree to Micro Focus Fortify’s Terms of Use found at <a href="https://www.microfocus.com/about/legal/#privacy" target="_blank">https://www.microfocus.com/about/legal/#privacy</a> and Micro Focus Fortify’s Online Privacy Statement found at <a href="https://www.microfocus.com/about/legal/#privacy" target="_blank">https://www.microfocus.com/about/legal/#privacy</a>. <br/><br/> Copyright © 2012-2018, Micro Focus Development Company. All rights reserved. </div> </div> </div> </div> </div> <script type="text/javascript"> $(function () { var path = "/"; var attachClickHandler = function(selector, handler) { $(".extra").on('click', selector, handler); } var footerLinks = { "download_webinspect_link": { absolute: true, page: "https://software.microfocus.com/en-us/products/webinspect-dynamic-analysis-dast/overview" }, "contact_hp_link" : { absolute: true, page: "https://support.fortify.com" }, "privacy_statement_link": { absolute: true, page: "https://www.microfocus.com/about/legal/#privacy" }, "terms_of_use_link": { absolute: true, page: "https://www.microfocus.com/about/legal/" } }; $.each(footerLinks, function(linkId, link) { attachClickHandler('span[id="' + linkId + '"]', function(event) { event.preventDefault(); if (link.absolute) { window.location.href = link.page; } else { window.location.href = path + link.page + ".html"; } }); }); }); </script> </body> </html> |
| URL | http://zero.webappsecurity.com/search.html?searchTerm=ZAP |
| Method | GET |
| Parameter | X-Frame-Options |
| Attack | |
| Evidence | |
| Request Header - size: 281 bytes. |
GET http://zero.webappsecurity.com/search.html?searchTerm=ZAP HTTP/1.1
Host: zero.webappsecurity.com User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0 Pragma: no-cache Cache-Control: no-cache Referer: http://zero.webappsecurity.com |
| Request Body - size: 0 bytes. |
|
| Response Header - size: 242 bytes. |
HTTP/1.1 200 OK
Date: Mon, 14 Mar 2022 07:13:43 GMT Server: Apache-Coyote/1.1 Access-Control-Allow-Origin: * Cache-Control: no-cache, max-age=0, must-revalidate, no-store Content-Type: text/html;charset=UTF-8 Content-Language: en-US |
| Response Body - size: 7,723 bytes. |
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Zero - Search Tips</title> <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"> <meta http-equiv="X-UA-Compatible" content="IE=Edge"> <link type="text/css" rel="stylesheet" href="/resources/css/bootstrap.min.css"/> <link type="text/css" rel="stylesheet" href="/resources/css/font-awesome.css"/> <link type="text/css" rel="stylesheet" href="/resources/css/main.css"/> <script src="/resources/js/jquery-1.8.2.min.js"></script> <script src="/resources/js/bootstrap.min.js"></script> <script src="/resources/js/placeholders.min.js"></script> <script type="text/javascript"> Placeholders.init({ live: true, // Apply to future and modified elements too hideOnFocus: true // Hide the placeholder when the element receives focus }); </script> <script type="text/javascript"> $(document).ajaxError(function errorHandler(event, xhr, ajaxOptions, thrownError) { if (xhr.status == 403) { window.location.reload(); } }); </script> </head> <body> <div class="wrapper"> <div class="navbar navbar-fixed-top"> <div class="navbar-inner"> <div class="container"> <a href="/index.html" class="brand">Zero Bank</a> <div> <ul class="nav float-right"> <li> <form action="/search.html" class="navbar-search pull-right" style="padding-right: 20px"> <input type="text" id="searchTerm" name="searchTerm" class="search-query" placeholder="Search"/> </form> </li> <li> <button id="signin_button" type="button" class="signin btn btn-info"> <i class="icon-signin"></i>Signin </button> </li> </ul> </div> </div> </div> </div> <script type="text/javascript"> $(function() { var path = "/"; $("#signin_button").click(function(event) { event.preventDefault(); window.location.href = path + "login" + ".html"; }); }); </script> <div class="container"> <div class="top_offset"> <div class="row"> <div class="span12"> <div id="nav" class="clearfix"> <ul id="pages-nav"> <li id="homeMenu"><div><strong>Home</strong></div></li> <li id="onlineBankingMenu"><div><strong>Online Banking</strong></div></li> <li id="feedback"><div><strong>Feedback</strong></div></li> </ul> </div> </div> <script type="text/javascript"> $(function () { var path = "/"; var featureIdToName = { "index": "homeMenu", "online-banking": "onlineBankingMenu", "feedback": "feedback" }; if (document.location.href.match(".*" + path + "$") != null) { $("#homeMenu").addClass("active"); } else { $.each(featureIdToName, function(featureId, featureName) { if (document.location.href.indexOf(featureId + ".html") >= 0) { $("#" + featureName).addClass("active"); } }); } $.each(featureIdToName, function(featureId, featureName) { $("#nav").on("click", "li[id='" + featureName + "']", function(event) { event.preventDefault(); window.location.href = path + featureId + ".html"; }); }); }); </script> </div> <hr class="row-divider"/> <h2>Search Results:</h2> No results were found for the query: ZAP </div> </div> <div class="clearfix push"></div> </div> <div class="extra"> <div class="extra-inner"> <div class="container"> <div class="row"> <div class="span4"> <ul> <li><span id="download_webinspect_link">Download WebInspect</span></li> </ul> </div> <div class="span4"> <ul> <li><span id="terms_of_use_link">Terms of Use</span></li> </ul> </div> <div class="span4"> <ul> <li><span id="contact_hp_link">Contact Micro Focus</span></li> <li><span id="privacy_statement_link">Privacy Statement</span></li> </ul> </div> </div> <div class="row"> <div class="disclaimer span12"> The Free Online Bank Web site is published by Micro Focus Fortify for the sole purpose of demonstrating the functionality and effectiveness of Micro Focus Fortify’s WebInspect products in detecting and reporting Web application vulnerabilities. This site is not a real banking site and any similarities to third party products and/or Web sites are purely coincidental. This site is provided "as is" without warranty of any kind, either express or implied. Micro Focus Fortify does not assume any risk in relation to your use of this Web site. Use of this Web site indicates that you have read and agree to Micro Focus Fortify’s Terms of Use found at <a href="https://www.microfocus.com/about/legal/#privacy" target="_blank">https://www.microfocus.com/about/legal/#privacy</a> and Micro Focus Fortify’s Online Privacy Statement found at <a href="https://www.microfocus.com/about/legal/#privacy" target="_blank">https://www.microfocus.com/about/legal/#privacy</a>. <br/><br/> Copyright © 2012-2018, Micro Focus Development Company. All rights reserved. </div> </div> </div> </div> </div> <script type="text/javascript"> $(function () { var path = "/"; var attachClickHandler = function(selector, handler) { $(".extra").on('click', selector, handler); } var footerLinks = { "download_webinspect_link": { absolute: true, page: "https://software.microfocus.com/en-us/products/webinspect-dynamic-analysis-dast/overview" }, "contact_hp_link" : { absolute: true, page: "https://support.fortify.com" }, "privacy_statement_link": { absolute: true, page: "https://www.microfocus.com/about/legal/#privacy" }, "terms_of_use_link": { absolute: true, page: "https://www.microfocus.com/about/legal/" } }; $.each(footerLinks, function(linkId, link) { attachClickHandler('span[id="' + linkId + '"]', function(event) { event.preventDefault(); if (link.absolute) { window.location.href = link.page; } else { window.location.href = path + link.page + ".html"; } }); }); }); </script> </body> </html> |
| Instances | 4 |
| Solution |
Modern Web browsers support the Content-Security-Policy and X-Frame-Options HTTP headers. Ensure one of them is set on all web pages returned by your site/app.
If you expect the page to be framed only by pages on your server (e.g. it's part of a FRAMESET) then you'll want to use SAMEORIGIN, otherwise if you never expect the page to be framed, you should use DENY. Alternatively consider implementing Content Security Policy's "frame-ancestors" directive.
|
| Reference | https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/X-Frame-Options |
| Tags |
OWASP_2021_A05
WSTG-v42-CLNT-09 OWASP_2017_A06 |
| CWE Id | 1021 |
| WASC Id | 15 |
| Plugin Id | 10020 |
|
Medium |
Vulnerable JS Library |
|---|---|
| Description |
The identified library jquery, version 1.8.2 is vulnerable.
|
| URL | http://zero.webappsecurity.com/resources/js/jquery-1.8.2.min.js |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | jquery-1.8.2.min.js |
| Request Header - size: 287 bytes. |
GET http://zero.webappsecurity.com/resources/js/jquery-1.8.2.min.js HTTP/1.1
Host: zero.webappsecurity.com User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0 Pragma: no-cache Cache-Control: no-cache Referer: http://zero.webappsecurity.com |
| Request Body - size: 0 bytes. |
|
| Response Header - size: 361 bytes. |
HTTP/1.1 200 OK
Date: Mon, 14 Mar 2022 07:13:42 GMT Server: Apache-Coyote/1.1 Access-Control-Allow-Origin: * Accept-Ranges: bytes ETag: W/"93436-1358437290000" Last-Modified: Thu, 17 Jan 2013 15:41:30 GMT Cache-Control: max-age=2678400 Expires: Thu, 14 Apr 2022 07:13:43 GMT Content-Type: application/javascript;charset=UTF-8 Content-Length: 93436 |
| Response Body - size: 93,436 bytes. |
/*! jQuery v1.8.2 jquery.com | jquery.org/license */
(function(a,b){function G(a){var b=F[a]={};return p.each(a.split(s),function(a,c){b[c]=!0}),b}function J(a,c,d){if(d===b&&a.nodeType===1){var e="data-"+c.replace(I,"-$1").toLowerCase();d=a.getAttribute(e);if(typeof d=="string"){try{d=d==="true"?!0:d==="false"?!1:d==="null"?null:+d+""===d?+d:H.test(d)?p.parseJSON(d):d}catch(f){}p.data(a,c,d)}else d=b}return d}function K(a){var b;for(b in a){if(b==="data"&&p.isEmptyObject(a[b]))continue;if(b!=="toJSON")return!1}return!0}function ba(){return!1}function bb(){return!0}function bh(a){return!a||!a.parentNode||a.parentNode.nodeType===11}function bi(a,b){do a=a[b];while(a&&a.nodeType!==1);return a}function bj(a,b,c){b=b||0;if(p.isFunction(b))return p.grep(a,function(a,d){var e=!!b.call(a,d,a);return e===c});if(b.nodeType)return p.grep(a,function(a,d){return a===b===c});if(typeof b=="string"){var d=p.grep(a,function(a){return a.nodeType===1});if(be.test(b))return p.filter(b,d,!c);b=p.filter(b,d)}return p.grep(a,function(a,d){return p.inArray(a,b)>=0===c})}function bk(a){var b=bl.split("|"),c=a.createDocumentFragment();if(c.createElement)while(b.length)c.createElement(b.pop());return c}function bC(a,b){return a.getElementsByTagName(b)[0]||a.appendChild(a.ownerDocument.createElement(b))}function bD(a,b){if(b.nodeType!==1||!p.hasData(a))return;var c,d,e,f=p._data(a),g=p._data(b,f),h=f.events;if(h){delete g.handle,g.events={};for(c in h)for(d=0,e=h[c].length;d<e;d++)p.event.add(b,c,h[c][d])}g.data&&(g.data=p.extend({},g.data))}function bE(a,b){var c;if(b.nodeType!==1)return;b.clearAttributes&&b.clearAttributes(),b.mergeAttributes&&b.mergeAttributes(a),c=b.nodeName.toLowerCase(),c==="object"?(b.parentNode&&(b.outerHTML=a.outerHTML),p.support.html5Clone&&a.innerHTML&&!p.trim(b.innerHTML)&&(b.innerHTML=a.innerHTML)):c==="input"&&bv.test(a.type)?(b.defaultChecked=b.checked=a.checked,b.value!==a.value&&(b.value=a.value)):c==="option"?b.selected=a.defaultSelected:c==="input"||c==="textarea"?b.defaultValue=a.defaultValue:c==="script"&&b.text!==a.text&&(b.text=a.text),b.removeAttribute(p.expando)}function bF(a){return typeof a.getElementsByTagName!="undefined"?a.getElementsByTagName("*"):typeof a.querySelectorAll!="undefined"?a.querySelectorAll("*"):[]}function bG(a){bv.test(a.type)&&(a.defaultChecked=a.checked)}function bY(a,b){if(b in a)return b;var c=b.charAt(0).toUpperCase()+b.slice(1),d=b,e=bW.length;while(e--){b=bW[e]+c;if(b in a)return b}return d}function bZ(a,b){return a=b||a,p.css(a,"display")==="none"||!p.contains(a.ownerDocument,a)}function b$(a,b){var c,d,e=[],f=0,g=a.length;for(;f<g;f++){c=a[f];if(!c.style)continue;e[f]=p._data(c,"olddisplay"),b?(!e[f]&&c.style.display==="none"&&(c.style.display=""),c.style.display===""&&bZ(c)&&(e[f]=p._data(c,"olddisplay",cc(c.nodeName)))):(d=bH(c,"display"),!e[f]&&d!=="none"&&p._data(c,"olddisplay",d))}for(f=0;f<g;f++){c=a[f];if(!c.style)continue;if(!b||c.style.display==="none"||c.style.display==="")c.style.display=b?e[f]||"":"none"}return a}function b_(a,b,c){var d=bP.exec(b);return d?Math.max(0,d[1]-(c||0))+(d[2]||"px"):b}function ca(a,b,c,d){var e=c===(d?"border":"content")?4:b==="width"?1:0,f=0;for(;e<4;e+=2)c==="margin"&&(f+=p.css(a,c+bV[e],!0)),d?(c==="content"&&(f-=parseFloat(bH(a,"padding"+bV[e]))||0),c!=="margin"&&(f-=parseFloat(bH(a,"border"+bV[e]+"Width"))||0)):(f+=parseFloat(bH(a,"padding"+bV[e]))||0,c!=="padding"&&(f+=parseFloat(bH(a,"border"+bV[e]+"Width"))||0));return f}function cb(a,b,c){var d=b==="width"?a.offsetWidth:a.offsetHeight,e=!0,f=p.support.boxSizing&&p.css(a,"boxSizing")==="border-box";if(d<=0||d==null){d=bH(a,b);if(d<0||d==null)d=a.style[b];if(bQ.test(d))return d;e=f&&(p.support.boxSizingReliable||d===a.style[b]),d=parseFloat(d)||0}return d+ca(a,b,c||(f?"border":"content"),e)+"px"}function cc(a){if(bS[a])return bS[a];var b=p("<"+a+">").appendTo(e.body),c=b.css("display");b.remove();if(c==="none"||c===""){bI=e.body.appendChild(bI||p.extend(e.createElement("iframe"),{frameBorder:0,width:0,height:0}));if(!bJ||!bI.createElement)bJ=(bI.contentWindow||bI.contentDocument).document,bJ.write("<!doctype html><html><body>"),bJ.close();b=bJ.body.appendChild(bJ.createElement(a)),c=bH(b,"display"),e.body.removeChild(bI)}return bS[a]=c,c}function ci(a,b,c,d){var e;if(p.isArray(b))p.each(b,function(b,e){c||ce.test(a)?d(a,e):ci(a+"["+(typeof e=="object"?b:"")+"]",e,c,d)});else if(!c&&p.type(b)==="object")for(e in b)ci(a+"["+e+"]",b[e],c,d);else d(a,b)}function cz(a){return function(b,c){typeof b!="string"&&(c=b,b="*");var d,e,f,g=b.toLowerCase().split(s),h=0,i=g.length;if(p.isFunction(c))for(;h<i;h++)d=g[h],f=/^\+/.test(d),f&&(d=d.substr(1)||"*"),e=a[d]=a[d]||[],e[f?"unshift":"push"](c)}}function cA(a,c,d,e,f,g){f=f||c.dataTypes[0],g=g||{},g[f]=!0;var h,i=a[f],j=0,k=i?i.length:0,l=a===cv;for(;j<k&&(l||!h);j++)h=i[j](c,d,e),typeof h=="string"&&(!l||g[h]?h=b:(c.dataTypes.unshift(h),h=cA(a,c,d,e,h,g)));return(l||!h)&&!g["*"]&&(h=cA(a,c,d,e,"*",g)),h}function cB(a,c){var d,e,f=p.ajaxSettings.flatOptions||{};for(d in c)c[d]!==b&&((f[d]?a:e||(e={}))[d]=c[d]);e&&p.extend(!0,a,e)}function cC(a,c,d){var e,f,g,h,i=a.contents,j=a.dataTypes,k=a.responseFields;for(f in k)f in d&&(c[k[f]]=d[f]);while(j[0]==="*")j.shift(),e===b&&(e=a.mimeType||c.getResponseHeader("content-type"));if(e)for(f in i)if(i[f]&&i[f].test(e)){j.unshift(f);break}if(j[0]in d)g=j[0];else{for(f in d){if(!j[0]||a.converters[f+" "+j[0]]){g=f;break}h||(h=f)}g=g||h}if(g)return g!==j[0]&&j.unshift(g),d[g]}function cD(a,b){var c,d,e,f,g=a.dataTypes.slice(),h=g[0],i={},j=0;a.dataFilter&&(b=a.dataFilter(b,a.dataType));if(g[1])for(c in a.converters)i[c.toLowerCase()]=a.converters[c];for(;e=g[++j];)if(e!=="*"){if(h!=="*"&&h!==e){c=i[h+" "+e]||i["* "+e];if(!c)for(d in i){f=d.split(" ");if(f[1]===e){c=i[h+" "+f[0]]||i["* "+f[0]];if(c){c===!0?c=i[d]:i[d]!==!0&&(e=f[0],g.splice(j--,0,e));break}}}if(c!==!0)if(c&&a["throws"])b=c(b);else try{b=c(b)}catch(k){return{state:"parsererror",error:c?k:"No conversion from "+h+" to "+e}}}h=e}return{state:"success",data:b}}function cL(){try{return new a.XMLHttpRequest}catch(b){}}function cM(){try{return new a.ActiveXObject("Microsoft.XMLHTTP")}catch(b){}}function cU(){return setTimeout(function(){cN=b},0),cN=p.now()}function cV(a,b){p.each(b,function(b,c){var d=(cT[b]||[]).concat(cT["*"]),e=0,f=d.length;for(;e<f;e++)if(d[e].call(a,b,c))return})}function cW(a,b,c){var d,e=0,f=0,g=cS.length,h=p.Deferred().always(function(){delete i.elem}),i=function(){var b=cN||cU(),c=Math.max(0,j.startTime+j.duration-b),d=1-(c/j.duration||0),e=0,f=j.tweens.length;for(;e<f;e++)j.tweens[e].run(d);return h.notifyWith(a,[j,d,c]),d<1&&f?c:(h.resolveWith(a,[j]),!1)},j=h.promise({elem:a,props:p.extend({},b),opts:p.extend(!0,{specialEasing:{}},c),originalProperties:b,originalOptions:c,startTime:cN||cU(),duration:c.duration,tweens:[],createTween:function(b,c,d){var e=p.Tween(a,j.opts,b,c,j.opts.specialEasing[b]||j.opts.easing);return j.tweens.push(e),e},stop:function(b){var c=0,d=b?j.tweens.length:0;for(;c<d;c++)j.tweens[c].run(1);return b?h.resolveWith(a,[j,b]):h.rejectWith(a,[j,b]),this}}),k=j.props;cX(k,j.opts.specialEasing);for(;e<g;e++){d=cS[e].call(j,a,k,j.opts);if(d)return d}return cV(j,k),p.isFunction(j.opts.start)&&j.opts.start.call(a,j),p.fx.timer(p.extend(i,{anim:j,queue:j.opts.queue,elem:a})),j.progress(j.opts.progress).done(j.opts.done,j.opts.complete).fail(j.opts.fail).always(j.opts.always)}function cX(a,b){var c,d,e,f,g;for(c in a){d=p.camelCase(c),e=b[d],f=a[c],p.isArray(f)&&(e=f[1],f=a[c]=f[0]),c!==d&&(a[d]=f,delete a[c]),g=p.cssHooks[d];if(g&&"expand"in g){f=g.expand(f),delete a[d];for(c in f)c in a||(a[c]=f[c],b[c]=e)}else b[d]=e}}function cY(a,b,c){var d,e,f,g,h,i,j,k,l=this,m=a.style,n={},o=[],q=a.nodeType&&bZ(a);c.queue||(j=p._queueHooks(a,"fx"),j.unqueued==null&&(j.unqueued=0,k=j.empty.fire,j.empty.fire=function(){j.unqueued||k()}),j.unqueued++,l.always(function(){l.always(function(){j.unqueued--,p.queue(a,"fx").length||j.empty.fire()})})),a.nodeType===1&&("height"in b||"width"in b)&&(c.overflow=[m.overflow,m.overflowX,m.overflowY],p.css(a,"display")==="inline"&&p.css(a,"float")==="none"&&(!p.support.inlineBlockNeedsLayout||cc(a.nodeName)==="inline"?m.display="inline-block":m.zoom=1)),c.overflow&&(m.overflow="hidden",p.support.shrinkWrapBlocks||l.done(function(){m.overflow=c.overflow[0],m.overflowX=c.overflow[1],m.overflowY=c.overflow[2]}));for(d in b){f=b[d];if(cP.exec(f)){delete b[d];if(f===(q?"hide":"show"))continue;o.push(d)}}g=o.length;if(g){h=p._data(a,"fxshow")||p._data(a,"fxshow",{}),q?p(a).show():l.done(function(){p(a).hide()}),l.done(function(){var b;p.removeData(a,"fxshow",!0);for(b in n)p.style(a,b,n[b])});for(d=0;d<g;d++)e=o[d],i=l.createTween(e,q?h[e]:0),n[e]=h[e]||p.style(a,e),e in h||(h[e]=i.start,q&&(i.end=i.start,i.start=e==="width"||e==="height"?1:0))}}function cZ(a,b,c,d,e){return new cZ.prototype.init(a,b,c,d,e)}function c$(a,b){var c,d={height:a},e=0;b=b?1:0;for(;e<4;e+=2-b)c=bV[e],d["margin"+c]=d["padding"+c]=a;return b&&(d.opacity=d.width=a),d}function da(a){return p.isWindow(a)?a:a.nodeType===9?a.defaultView||a.parentWindow:!1}var c,d,e=a.document,f=a.location,g=a.navigator,h=a.jQuery,i=a.$,j=Array.prototype.push,k=Array.prototype.slice,l=Array.prototype.indexOf,m=Object.prototype.toString,n=Object.prototype.hasOwnProperty,o=String.prototype.trim,p=function(a,b){return new p.fn.init(a,b,c)},q=/[\-+]?(?:\d*\.|)\d+(?:[eE][\-+]?\d+|)/.source,r=/\S/,s=/\s+/,t=/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,u=/^(?:[^#<]*(<[\w\W]+>)[^>]*$|#([\w\-]*)$)/,v=/^<(\w+)\s*\/?>(?:<\/\1>|)$/,w=/^[\],:{}\s]*$/,x=/(?:^|:|,)(?:\s*\[)+/g,y=/\\(?:["\\\/bfnrt]|u[\da-fA-F]{4})/g,z=/"[^"\\\r\n]*"|true|false|null|-?(?:\d\d*\.|)\d+(?:[eE][\-+]?\d+|)/g,A=/^-ms-/,B=/-([\da-z])/gi,C=function(a,b){return(b+"").toUpperCase()},D=function(){e.addEventListener?(e.removeEventListener("DOMContentLoaded",D,!1),p.ready()):e.readyState==="complete"&&(e.detachEvent("onreadystatechange",D),p.ready())},E={};p.fn=p.prototype={constructor:p,init:function(a,c,d){var f,g,h,i;if(!a)return this;if(a.nodeType)return this.context=this[0]=a,this.length=1,this;if(typeof a=="string"){a.charAt(0)==="<"&&a.charAt(a.length-1)===">"&&a.length>=3?f=[null,a,null]:f=u.exec(a);if(f&&(f[1]||!c)){if(f[1])return c=c instanceof p?c[0]:c,i=c&&c.nodeType?c.ownerDocument||c:e,a=p.parseHTML(f[1],i,!0),v.test(f[1])&&p.isPlainObject(c)&&this.attr.call(a,c,!0),p.merge(this,a);g=e.getElementById(f[2]);if(g&&g.parentNode){if(g.id!==f[2])return d.find(a);this.length=1,this[0]=g}return this.context=e,this.selector=a,this}return!c||c.jquery?(c||d).find(a):this.constructor(c).find(a)}return p.isFunction(a)?d.ready(a):(a.selector!==b&&(this.selector=a.selector,this.context=a.context),p.makeArray(a,this))},selector:"",jquery:"1.8.2",length:0,size:function(){return this.length},toArray:function(){return k.call(this)},get:function(a){return a==null?this.toArray():a<0?this[this.length+a]:this[a]},pushStack:function(a,b,c){var d=p.merge(this.constructor(),a);return d.prevObject=this,d.context=this.context,b==="find"?d.selector=this.selector+(this.selector?" ":"")+c:b&&(d.selector=this.selector+"."+b+"("+c+")"),d},each:function(a,b){return p.each(this,a,b)},ready:function(a){return p.ready.promise().done(a),this},eq:function(a){return a=+a,a===-1?this.slice(a):this.slice(a,a+1)},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},slice:function(){return this.pushStack(k.apply(this,arguments),"slice",k.call(arguments).join(","))},map:function(a){return this.pushStack(p.map(this,function(b,c){return a.call(b,c,b)}))},end:function(){return this.prevObject||this.constructor(null)},push:j,sort:[].sort,splice:[].splice},p.fn.init.prototype=p.fn,p.extend=p.fn.extend=function(){var a,c,d,e,f,g,h=arguments[0]||{},i=1,j=arguments.length,k=!1;typeof h=="boolean"&&(k=h,h=arguments[1]||{},i=2),typeof h!="object"&&!p.isFunction(h)&&(h={}),j===i&&(h=this,--i);for(;i<j;i++)if((a=arguments[i])!=null)for(c in a){d=h[c],e=a[c];if(h===e)continue;k&&e&&(p.isPlainObject(e)||(f=p.isArray(e)))?(f?(f=!1,g=d&&p.isArray(d)?d:[]):g=d&&p.isPlainObject(d)?d:{},h[c]=p.extend(k,g,e)):e!==b&&(h[c]=e)}return h},p.extend({noConflict:function(b){return a.$===p&&(a.$=i),b&&a.jQuery===p&&(a.jQuery=h),p},isReady:!1,readyWait:1,holdReady:function(a){a?p.readyWait++:p.ready(!0)},ready:function(a){if(a===!0?--p.readyWait:p.isReady)return;if(!e.body)return setTimeout(p.ready,1);p.isReady=!0;if(a!==!0&&--p.readyWait>0)return;d.resolveWith(e,[p]),p.fn.trigger&&p(e).trigger("ready").off("ready")},isFunction:function(a){return p.type(a)==="function"},isArray:Array.isArray||function(a){return p.type(a)==="array"},isWindow:function(a){return a!=null&&a==a.window},isNumeric:function(a){return!isNaN(parseFloat(a))&&isFinite(a)},type:function(a){return a==null?String(a):E[m.call(a)]||"object"},isPlainObject:function(a){if(!a||p.type(a)!=="object"||a.nodeType||p.isWindow(a))return!1;try{if(a.constructor&&!n.call(a,"constructor")&&!n.call(a.constructor.prototype,"isPrototypeOf"))return!1}catch(c){return!1}var d;for(d in a);return d===b||n.call(a,d)},isEmptyObject:function(a){var b;for(b in a)return!1;return!0},error:function(a){throw new Error(a)},parseHTML:function(a,b,c){var d;return!a||typeof a!="string"?null:(typeof b=="boolean"&&(c=b,b=0),b=b||e,(d=v.exec(a))?[b.createElement(d[1])]:(d=p.buildFragment([a],b,c?null:[]),p.merge([],(d.cacheable?p.clone(d.fragment):d.fragment).childNodes)))},parseJSON:function(b){if(!b||typeof b!="string")return null;b=p.trim(b);if(a.JSON&&a.JSON.parse)return a.JSON.parse(b);if(w.test(b.replace(y,"@").replace(z,"]").replace(x,"")))return(new Function("return "+b))();p.error("Invalid JSON: "+b)},parseXML:function(c){var d,e;if(!c||typeof c!="string")return null;try{a.DOMParser?(e=new DOMParser,d=e.parseFromString(c,"text/xml")):(d=new ActiveXObject("Microsoft.XMLDOM"),d.async="false",d.loadXML(c))}catch(f){d=b}return(!d||!d.documentElement||d.getElementsByTagName("parsererror").length)&&p.error("Invalid XML: "+c),d},noop:function(){},globalEval:function(b){b&&r.test(b)&&(a.execScript||function(b){a.eval.call(a,b)})(b)},camelCase:function(a){return a.replace(A,"ms-").replace(B,C)},nodeName:function(a,b){return a.nodeName&&a.nodeName.toLowerCase()===b.toLowerCase()},each:function(a,c,d){var e,f=0,g=a.length,h=g===b||p.isFunction(a);if(d){if(h){for(e in a)if(c.apply(a[e],d)===!1)break}else for(;f<g;)if(c.apply(a[f++],d)===!1)break}else if(h){for(e in a)if(c.call(a[e],e,a[e])===!1)break}else for(;f<g;)if(c.call(a[f],f,a[f++])===!1)break;return a},trim:o&&!o.call(" ")?function(a){return a==null?"":o.call(a)}:function(a){return a==null?"":(a+"").replace(t,"")},makeArray:function(a,b){var c,d=b||[];return a!=null&&(c=p.type(a),a.length==null||c==="string"||c==="function"||c==="regexp"||p.isWindow(a)?j.call(d,a):p.merge(d,a)),d},inArray:function(a,b,c){var d;if(b){if(l)return l.call(b,a,c);d=b.length,c=c?c<0?Math.max(0,d+c):c:0;for(;c<d;c++)if(c in b&&b[c]===a)return c}return-1},merge:function(a,c){var d=c.length,e=a.length,f=0;if(typeof d=="number")for(;f<d;f++)a[e++]=c[f];else while(c[f]!==b)a[e++]=c[f++];return a.length=e,a},grep:function(a,b,c){var d,e=[],f=0,g=a.length;c=!!c;for(;f<g;f++)d=!!b(a[f],f),c!==d&&e.push(a[f]);return e},map:function(a,c,d){var e,f,g=[],h=0,i=a.length,j=a instanceof p||i!==b&&typeof i=="number"&&(i>0&&a[0]&&a[i-1]||i===0||p.isArray(a));if(j)for(;h<i;h++)e=c(a[h],h,d),e!=null&&(g[g.length]=e);else for(f in a)e=c(a[f],f,d),e!=null&&(g[g.length]=e);return g.concat.apply([],g)},guid:1,proxy:function(a,c){var d,e,f;return typeof c=="string"&&(d=a[c],c=a,a=d),p.isFunction(a)?(e=k.call(arguments,2),f=function(){return a.apply(c,e.concat(k.call(arguments)))},f.guid=a.guid=a.guid||p.guid++,f):b},access:function(a,c,d,e,f,g,h){var i,j=d==null,k=0,l=a.length;if(d&&typeof d=="object"){for(k in d)p.access(a,c,k,d[k],1,g,e);f=1}else if(e!==b){i=h===b&&p.isFunction(e),j&&(i?(i=c,c=function(a,b,c){return i.call(p(a),c)}):(c.call(a,e),c=null));if(c)for(;k<l;k++)c(a[k],d,i?e.call(a[k],k,c(a[k],d)):e,h);f=1}return f?a:j?c.call(a):l?c(a[0],d):g},now:function(){return(new Date).getTime()}}),p.ready.promise=function(b){if(!d){d=p.Deferred();if(e.readyState==="complete")setTimeout(p.ready,1);else if(e.addEventListener)e.addEventListener("DOMContentLoaded",D,!1),a.addEventListener("load",p.ready,!1);else{e.attachEvent("onreadystatechange",D),a.attachEvent("onload",p.ready);var c=!1;try{c=a.frameElement==null&&e.documentElement}catch(f){}c&&c.doScroll&&function g(){if(!p.isReady){try{c.doScroll("left")}catch(a){return setTimeout(g,50)}p.ready()}}()}}return d.promise(b)},p.each("Boolean Number String Function Array Date RegExp Object".split(" "),function(a,b){E["[object "+b+"]"]=b.toLowerCase()}),c=p(e);var F={};p.Callbacks=function(a){a=typeof a=="string"?F[a]||G(a):p.extend({},a);var c,d,e,f,g,h,i=[],j=!a.once&&[],k=function(b){c=a.memory&&b,d=!0,h=f||0,f=0,g=i.length,e=!0;for(;i&&h<g;h++)if(i[h].apply(b[0],b[1])===!1&&a.stopOnFalse){c=!1;break}e=!1,i&&(j?j.length&&k(j.shift()):c?i=[]:l.disable())},l={add:function(){if(i){var b=i.length;(function d(b){p.each(b,function(b,c){var e=p.type(c);e==="function"&&(!a.unique||!l.has(c))?i.push(c):c&&c.length&&e!=="string"&&d(c)})})(arguments),e?g=i.length:c&&(f=b,k(c))}return this},remove:function(){return i&&p.each(arguments,function(a,b){var c;while((c=p.inArray(b,i,c))>-1)i.splice(c,1),e&&(c<=g&&g--,c<=h&&h--)}),this},has:function(a){return p.inArray(a,i)>-1},empty:function(){return i=[],this},disable:function(){return i=j=c=b,this},disabled:function(){return!i},lock:function(){return j=b,c||l.disable(),this},locked:function(){return!j},fireWith:function(a,b){return b=b||[],b=[a,b.slice?b.slice():b],i&&(!d||j)&&(e?j.push(b):k(b)),this},fire:function(){return l.fireWith(this,arguments),this},fired:function(){return!!d}};return l},p.extend({Deferred:function(a){var b=[["resolve","done",p.Callbacks("once memory"),"resolved"],["reject","fail",p.Callbacks("once memory"),"rejected"],["notify","progress",p.Callbacks("memory")]],c="pending",d={state:function(){return c},always:function(){return e.done(arguments).fail(arguments),this},then:function(){var a=arguments;return p.Deferred(function(c){p.each(b,function(b,d){var f=d[0],g=a[b];e[d[1]](p.isFunction(g)?function(){var a=g.apply(this,arguments);a&&p.isFunction(a.promise)?a.promise().done(c.resolve).fail(c.reject).progress(c.notify):c[f+"With"](this===e?c:this,[a])}:c[f])}),a=null}).promise()},promise:function(a){return a!=null?p.extend(a,d):d}},e={};return d.pipe=d.then,p.each(b,function(a,f){var g=f[2],h=f[3];d[f[1]]=g.add,h&&g.add(function(){c=h},b[a^1][2].disable,b[2][2].lock),e[f[0]]=g.fire,e[f[0]+"With"]=g.fireWith}),d.promise(e),a&&a.call(e,e),e},when:function(a){var b=0,c=k.call(arguments),d=c.length,e=d!==1||a&&p.isFunction(a.promise)?d:0,f=e===1?a:p.Deferred(),g=function(a,b,c){return function(d){b[a]=this,c[a]=arguments.length>1?k.call(arguments):d,c===h?f.notifyWith(b,c):--e||f.resolveWith(b,c)}},h,i,j;if(d>1){h=new Array(d),i=new Array(d),j=new Array(d);for(;b<d;b++)c[b]&&p.isFunction(c[b].promise)?c[b].promise().done(g(b,j,c)).fail(f.reject).progress(g(b,i,h)):--e}return e||f.resolveWith(j,c),f.promise()}}),p.support=function(){var b,c,d,f,g,h,i,j,k,l,m,n=e.createElement("div");n.setAttribute("className","t"),n.innerHTML=" <link/><table></table><a href='/a'>a</a><input type='checkbox'/>",c=n.getElementsByTagName("*"),d=n.getElementsByTagName("a")[0],d.style.cssText="top:1px;float:left;opacity:.5";if(!c||!c.length)return{};f=e.createElement("select"),g=f.appendChild(e.createElement("option")),h=n.getElementsByTagName("input")[0],b={leadingWhitespace:n.firstChild.nodeType===3,tbody:!n.getElementsByTagName("tbody").length,htmlSerialize:!!n.getElementsByTagName("link").length,style:/top/.test(d.getAttribute("style")),hrefNormalized:d.getAttribute("href")==="/a",opacity:/^0.5/.test(d.style.opacity),cssFloat:!!d.style.cssFloat,checkOn:h.value==="on",optSelected:g.selected,getSetAttribute:n.className!=="t",enctype:!!e.createElement("form").enctype,html5Clone:e.createElement("nav").cloneNode(!0).outerHTML!=="<:nav></:nav>",boxModel:e.compatMode==="CSS1Compat",submitBubbles:!0,changeBubbles:!0,focusinBubbles:!1,deleteExpando:!0,noCloneEvent:!0,inlineBlockNeedsLayout:!1,shrinkWrapBlocks:!1,reliableMarginRight:!0,boxSizingReliable:!0,pixelPosition:!1},h.checked=!0,b.noCloneChecked=h.cloneNode(!0).checked,f.disabled=!0,b.optDisabled=!g.disabled;try{delete n.test}catch(o){b.deleteExpando=!1}!n.addEventListener&&n.attachEvent&&n.fireEvent&&(n.attachEvent("onclick",m=function(){b.noCloneEvent=!1}),n.cloneNode(!0).fireEvent("onclick"),n.detachEvent("onclick",m)),h=e.createElement("input"),h.value="t",h.setAttribute("type","radio"),b.radioValue=h.value==="t",h.setAttribute("checked","checked"),h.setAttribute("name","t"),n.appendChild(h),i=e.createDocumentFragment(),i.appendChild(n.lastChild),b.checkClone=i.cloneNode(!0).cloneNode(!0).lastChild.checked,b.appendChecked=h.checked,i.removeChild(h),i.appendChild(n);if(n.attachEvent)for(k in{submit:!0,change:!0,focusin:!0})j="on"+k,l=j in n,l||(n.setAttribute(j,"return;"),l=typeof n[j]=="function"),b[k+"Bubbles"]=l;return p(function(){var c,d,f,g,h="padding:0;margin:0;border:0;display:block;overflow:hidden;",i=e.getElementsByTagName("body")[0];if(!i)return;c=e.createElement("div"),c.style.cssText="visibility:hidden;border:0;width:0;height:0;position:static;top:0;margin-top:1px",i.insertBefore(c,i.firstChild),d=e.createElement("div"),c.appendChild(d),d.innerHTML="<table><tr><td></td><td>t</td></tr></table>",f=d.getElementsByTagName("td"),f[0].style.cssText="padding:0;margin:0;border:0;display:none",l=f[0].offsetHeight===0,f[0].style.display="",f[1].style.display="none",b.reliableHiddenOffsets=l&&f[0].offsetHeight===0,d.innerHTML="",d.style.cssText="box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;padding:1px;border:1px;display:block;width:4px;margin-top:1%;position:absolute;top:1%;",b.boxSizing=d.offsetWidth===4,b.doesNotIncludeMarginInBodyOffset=i.offsetTop!==1,a.getComputedStyle&&(b.pixelPosition=(a.getComputedStyle(d,null)||{}).top!=="1%",b.boxSizingReliable=(a.getComputedStyle(d,null)||{width:"4px"}).width==="4px",g=e.createElement("div"),g.style.cssText=d.style.cssText=h,g.style.marginRight=g.style.width="0",d.style.width="1px",d.appendChild(g),b.reliableMarginRight=!parseFloat((a.getComputedStyle(g,null)||{}).marginRight)),typeof d.style.zoom!="undefined"&&(d.innerHTML="",d.style.cssText=h+"width:1px;padding:1px;display:inline;zoom:1",b.inlineBlockNeedsLayout=d.offsetWidth===3,d.style.display="block",d.style.overflow="visible",d.innerHTML="<div></div>",d.firstChild.style.width="5px",b.shrinkWrapBlocks=d.offsetWidth!==3,c.style.zoom=1),i.removeChild(c),c=d=f=g=null}),i.removeChild(n),c=d=f=g=h=i=n=null,b}();var H=/(?:\{[\s\S]*\}|\[[\s\S]*\])$/,I=/([A-Z])/g;p.extend({cache:{},deletedIds:[],uuid:0,expando:"jQuery"+(p.fn.jquery+Math.random()).replace(/\D/g,""),noData:{embed:!0,object:"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000",applet:!0},hasData:function(a){return a=a.nodeType?p.cache[a[p.expando]]:a[p.expando],!!a&&!K(a)},data:function(a,c,d,e){if(!p.acceptData(a))return;var f,g,h=p.expando,i=typeof c=="string",j=a.nodeType,k=j?p.cache:a,l=j?a[h]:a[h]&&h;if((!l||!k[l]||!e&&!k[l].data)&&i&&d===b)return;l||(j?a[h]=l=p.deletedIds.pop()||p.guid++:l=h),k[l]||(k[l]={},j||(k[l].toJSON=p.noop));if(typeof c=="object"||typeof c=="function")e?k[l]=p.extend(k[l],c):k[l].data=p.extend(k[l].data,c);return f=k[l],e||(f.data||(f.data={}),f=f.data),d!==b&&(f[p.camelCase(c)]=d),i?(g=f[c],g==null&&(g=f[p.camelCase(c)])):g=f,g},removeData:function(a,b,c){if(!p.acceptData(a))return;var d,e,f,g=a.nodeType,h=g?p.cache:a,i=g?a[p.expando]:p.expando;if(!h[i])return;if(b){d=c?h[i]:h[i].data;if(d){p.isArray(b)||(b in d?b=[b]:(b=p.camelCase(b),b in d?b=[b]:b=b.split(" ")));for(e=0,f=b.length;e<f;e++)delete d[b[e]];if(!(c?K:p.isEmptyObject)(d))return}}if(!c){delete h[i].data;if(!K(h[i]))return}g?p.cleanData([a],!0):p.support.deleteExpando||h!=h.window?delete h[i]:h[i]=null},_data:function(a,b,c){return p.data(a,b,c,!0)},acceptData:function(a){var b=a.nodeName&&p.noData[a.nodeName.toLowerCase()];return!b||b!==!0&&a.getAttribute("classid")===b}}),p.fn.extend({data:function(a,c){var d,e,f,g,h,i=this[0],j=0,k=null;if(a===b){if(this.length){k=p.data(i);if(i.nodeType===1&&!p._data(i,"parsedAttrs")){f=i.attributes;for(h=f.length;j<h;j++)g=f[j].name,g.indexOf("data-")||(g=p.camelCase(g.substring(5)),J(i,g,k[g]));p._data(i,"parsedAttrs",!0)}}return k}return typeof a=="object"?this.each(function(){p.data(this,a)}):(d=a.split(".",2),d[1]=d[1]?"."+d[1]:"",e=d[1]+"!",p.access(this,function(c){if(c===b)return k=this.triggerHandler("getData"+e,[d[0]]),k===b&&i&&(k=p.data(i,a),k=J(i,a,k)),k===b&&d[1]?this.data(d[0]):k;d[1]=c,this.each(function(){var b=p(this);b.triggerHandler("setData"+e,d),p.data(this,a,c),b.triggerHandler("changeData"+e,d)})},null,c,arguments.length>1,null,!1))},removeData:function(a){return this.each(function(){p.removeData(this,a)})}}),p.extend({queue:function(a,b,c){var d;if(a)return b=(b||"fx")+"queue",d=p._data(a,b),c&&(!d||p.isArray(c)?d=p._data(a,b,p.makeArray(c)):d.push(c)),d||[]},dequeue:function(a,b){b=b||"fx";var c=p.queue(a,b),d=c.length,e=c.shift(),f=p._queueHooks(a,b),g=function(){p.dequeue(a,b)};e==="inprogress"&&(e=c.shift(),d--),e&&(b==="fx"&&c.unshift("inprogress"),delete f.stop,e.call(a,g,f)),!d&&f&&f.empty.fire()},_queueHooks:function(a,b){var c=b+"queueHooks";return p._data(a,c)||p._data(a,c,{empty:p.Callbacks("once memory").add(function(){p.removeData(a,b+"queue",!0),p.removeData(a,c,!0)})})}}),p.fn.extend({queue:function(a,c){var d=2;return typeof a!="string"&&(c=a,a="fx",d--),arguments.length<d?p.queue(this[0],a):c===b?this:this.each(function(){var b=p.queue(this,a,c);p._queueHooks(this,a),a==="fx"&&b[0]!=="inprogress"&&p.dequeue(this,a)})},dequeue:function(a){return this.each(function(){p.dequeue(this,a)})},delay:function(a,b){return a=p.fx?p.fx.speeds[a]||a:a,b=b||"fx",this.queue(b,function(b,c){var d=setTimeout(b,a);c.stop=function(){clearTimeout(d)}})},clearQueue:function(a){return this.queue(a||"fx",[])},promise:function(a,c){var d,e=1,f=p.Deferred(),g=this,h=this.length,i=function(){--e||f.resolveWith(g,[g])};typeof a!="string"&&(c=a,a=b),a=a||"fx";while(h--)d=p._data(g[h],a+"queueHooks"),d&&d.empty&&(e++,d.empty.add(i));return i(),f.promise(c)}});var L,M,N,O=/[\t\r\n]/g,P=/\r/g,Q=/^(?:button|input)$/i,R=/^(?:button|input|object|select|textarea)$/i,S=/^a(?:rea|)$/i,T=/^(?:autofocus|autoplay|async|checked|controls|defer|disabled|hidden|loop|multiple|open|readonly|required|scoped|selected)$/i,U=p.support.getSetAttribute;p.fn.extend({attr:function(a,b){return p.access(this,p.attr,a,b,arguments.length>1)},removeAttr:function(a){return this.each(function(){p.removeAttr(this,a)})},prop:function(a,b){return p.access(this,p.prop,a,b,arguments.length>1)},removeProp:function(a){return a=p.propFix[a]||a,this.each(function(){try{this[a]=b,delete this[a]}catch(c){}})},addClass:function(a){var b,c,d,e,f,g,h;if(p.isFunction(a))return this.each(function(b){p(this).addClass(a.call(this,b,this.className))});if(a&&typeof a=="string"){b=a.split(s);for(c=0,d=this.length;c<d;c++){e=this[c];if(e.nodeType===1)if(!e.className&&b.length===1)e.className=a;else{f=" "+e.className+" ";for(g=0,h=b.length;g<h;g++)f.indexOf(" "+b[g]+" ")<0&&(f+=b[g]+" ");e.className=p.trim(f)}}}return this},removeClass:function(a){var c,d,e,f,g,h,i;if(p.isFunction(a))return this.each(function(b){p(this).removeClass(a.call(this,b,this.className))});if(a&&typeof a=="string"||a===b){c=(a||"").split(s);for(h=0,i=this.length;h<i;h++){e=this[h];if(e.nodeType===1&&e.className){d=(" "+e.className+" ").replace(O," ");for(f=0,g=c.length;f<g;f++)while(d.indexOf(" "+c[f]+" ")>=0)d=d.replace(" "+c[f]+" "," ");e.className=a?p.trim(d):""}}}return this},toggleClass:function(a,b){var c=typeof a,d=typeof b=="boolean";return p.isFunction(a)?this.each(function(c){p(this).toggleClass(a.call(this,c,this.className,b),b)}):this.each(function(){if(c==="string"){var e,f=0,g=p(this),h=b,i=a.split(s);while(e=i[f++])h=d?h:!g.hasClass(e),g[h?"addClass":"removeClass"](e)}else if(c==="undefined"||c==="boolean")this.className&&p._data(this,"__className__",this.className),this.className=this.className||a===!1?"":p._data(this,"__className__")||""})},hasClass:function(a){var b=" "+a+" ",c=0,d=this.length;for(;c<d;c++)if(this[c].nodeType===1&&(" "+this[c].className+" ").replace(O," ").indexOf(b)>=0)return!0;return!1},val:function(a){var c,d,e,f=this[0];if(!arguments.length){if(f)return c=p.valHooks[f.type]||p.valHooks[f.nodeName.toLowerCase()],c&&"get"in c&&(d=c.get(f,"value"))!==b?d:(d=f.value,typeof d=="string"?d.replace(P,""):d==null?"":d);return}return e=p.isFunction(a),this.each(function(d){var f,g=p(this);if(this.nodeType!==1)return;e?f=a.call(this,d,g.val()):f=a,f==null?f="":typeof f=="number"?f+="":p.isArray(f)&&(f=p.map(f,function(a){return a==null?"":a+""})),c=p.valHooks[this.type]||p.valHooks[this.nodeName.toLowerCase()];if(!c||!("set"in c)||c.set(this,f,"value")===b)this.value=f})}}),p.extend({valHooks:{option:{get:function(a){var b=a.attributes.value;return!b||b.specified?a.value:a.text}},select:{get:function(a){var b,c,d,e,f=a.selectedIndex,g=[],h=a.options,i=a.type==="select-one";if(f<0)return null;c=i?f:0,d=i?f+1:h.length;for(;c<d;c++){e=h[c];if(e.selected&&(p.support.optDisabled?!e.disabled:e.getAttribute("disabled")===null)&&(!e.parentNode.disabled||!p.nodeName(e.parentNode,"optgroup"))){b=p(e).val();if(i)return b;g.push(b)}}return i&&!g.length&&h.length?p(h[f]).val():g},set:function(a,b){var c=p.makeArray(b);return p(a).find("option").each(function(){this.selected=p.inArray(p(this).val(),c)>=0}),c.length||(a.selectedIndex=-1),c}}},attrFn:{},attr:function(a,c,d,e){var f,g,h,i=a.nodeType;if(!a||i===3||i===8||i===2)return;if(e&&p.isFunction(p.fn[c]))return p(a)[c](d);if(typeof a.getAttribute=="undefined")return p.prop(a,c,d);h=i!==1||!p.isXMLDoc(a),h&&(c=c.toLowerCase(),g=p.attrHooks[c]||(T.test(c)?M:L));if(d!==b){if(d===null){p.removeAttr(a,c);return}return g&&"set"in g&&h&&(f=g.set(a,d,c))!==b?f:(a.setAttribute(c,d+""),d)}return g&&"get"in g&&h&&(f=g.get(a,c))!==null?f:(f=a.getAttribute(c),f===null?b:f)},removeAttr:function(a,b){var c,d,e,f,g=0;if(b&&a.nodeType===1){d=b.split(s);for(;g<d.length;g++)e=d[g],e&&(c=p.propFix[e]||e,f=T.test(e),f||p.attr(a,e,""),a.removeAttribute(U?e:c),f&&c in a&&(a[c]=!1))}},attrHooks:{type:{set:function(a,b){if(Q.test(a.nodeName)&&a.parentNode)p.error("type property can't be changed");else if(!p.support.radioValue&&b==="radio"&&p.nodeName(a,"input")){var c=a.value;return a.setAttribute("type",b),c&&(a.value=c),b}}},value:{get:function(a,b){return L&&p.nodeName(a,"button")?L.get(a,b):b in a?a.value:null},set:function(a,b,c){if(L&&p.nodeName(a,"button"))return L.set(a,b,c);a.value=b}}},propFix:{tabindex:"tabIndex",readonly:"readOnly","for":"htmlFor","class":"className",maxlength:"maxLength",cellspacing:"cellSpacing",cellpadding:"cellPadding",rowspan:"rowSpan",colspan:"colSpan",usemap:"useMap",frameborder:"frameBorder",contenteditable:"contentEditable"},prop:function(a,c,d){var e,f,g,h=a.nodeType;if(!a||h===3||h===8||h===2)return;return g=h!==1||!p.isXMLDoc(a),g&&(c=p.propFix[c]||c,f=p.propHooks[c]),d!==b?f&&"set"in f&&(e=f.set(a,d,c))!==b?e:a[c]=d:f&&"get"in f&&(e=f.get(a,c))!==null?e:a[c]},propHooks:{tabIndex:{get:function(a){var c=a.getAttributeNode("tabindex");return c&&c.specified?parseInt(c.value,10):R.test(a.nodeName)||S.test(a.nodeName)&&a.href?0:b}}}}),M={get:function(a,c){var d,e=p.prop(a,c);return e===!0||typeof e!="boolean"&&(d=a.getAttributeNode(c))&&d.nodeValue!==!1?c.toLowerCase():b},set:function(a,b,c){var d;return b===!1?p.removeAttr(a,c):(d=p.propFix[c]||c,d in a&&(a[d]=!0),a.setAttribute(c,c.toLowerCase())),c}},U||(N={name:!0,id:!0,coords:!0},L=p.valHooks.button={get:function(a,c){var d;return d=a.getAttributeNode(c),d&&(N[c]?d.value!=="":d.specified)?d.value:b},set:function(a,b,c){var d=a.getAttributeNode(c);return d||(d=e.createAttribute(c),a.setAttributeNode(d)),d.value=b+""}},p.each(["width","height"],function(a,b){p.attrHooks[b]=p.extend(p.attrHooks[b],{set:function(a,c){if(c==="")return a.setAttribute(b,"auto"),c}})}),p.attrHooks.contenteditable={get:L.get,set:function(a,b,c){b===""&&(b="false"),L.set(a,b,c)}}),p.support.hrefNormalized||p.each(["href","src","width","height"],function(a,c){p.attrHooks[c]=p.extend(p.attrHooks[c],{get:function(a){var d=a.getAttribute(c,2);return d===null?b:d}})}),p.support.style||(p.attrHooks.style={get:function(a){return a.style.cssText.toLowerCase()||b},set:function(a,b){return a.style.cssText=b+""}}),p.support.optSelected||(p.propHooks.selected=p.extend(p.propHooks.selected,{get:function(a){var b=a.parentNode;return b&&(b.selectedIndex,b.parentNode&&b.parentNode.selectedIndex),null}})),p.support.enctype||(p.propFix.enctype="encoding"),p.support.checkOn||p.each(["radio","checkbox"],function(){p.valHooks[this]={get:function(a){return a.getAttribute("value")===null?"on":a.value}}}),p.each(["radio","checkbox"],function(){p.valHooks[this]=p.extend(p.valHooks[this],{set:function(a,b){if(p.isArray(b))return a.checked=p.inArray(p(a).val(),b)>=0}})});var V=/^(?:textarea|input|select)$/i,W=/^([^\.]*|)(?:\.(.+)|)$/,X=/(?:^|\s)hover(\.\S+|)\b/,Y=/^key/,Z=/^(?:mouse|contextmenu)|click/,$=/^(?:focusinfocus|focusoutblur)$/,_=function(a){return p.event.special.hover?a:a.replace(X,"mouseenter$1 mouseleave$1")};p.event={add:function(a,c,d,e,f){var g,h,i,j,k,l,m,n,o,q,r;if(a.nodeType===3||a.nodeType===8||!c||!d||!(g=p._data(a)))return;d.handler&&(o=d,d=o.handler,f=o.selector),d.guid||(d.guid=p.guid++),i=g.events,i||(g.events=i={}),h=g.handle,h||(g.handle=h=function(a){return typeof p!="undefined"&&(!a||p.event.triggered!==a.type)?p.event.dispatch.apply(h.elem,arguments):b},h.elem=a),c=p.trim(_(c)).split(" ");for(j=0;j<c.length;j++){k=W.exec(c[j])||[],l=k[1],m=(k[2]||"").split(".").sort(),r=p.event.special[l]||{},l=(f?r.delegateType:r.bindType)||l,r=p.event.special[l]||{},n=p.extend({type:l,origType:k[1],data:e,handler:d,guid:d.guid,selector:f,needsContext:f&&p.expr.match.needsContext.test(f),namespace:m.join(".")},o),q=i[l];if(!q){q=i[l]=[],q.delegateCount=0;if(!r.setup||r.setup.call(a,e,m,h)===!1)a.addEventListener?a.addEventListener(l,h,!1):a.attachEvent&&a.attachEvent("on"+l,h)}r.add&&(r.add.call(a,n),n.handler.guid||(n.handler.guid=d.guid)),f?q.splice(q.delegateCount++,0,n):q.push(n),p.event.global[l]=!0}a=null},global:{},remove:function(a,b,c,d,e){var f,g,h,i,j,k,l,m,n,o,q,r=p.hasData(a)&&p._data(a);if(!r||!(m=r.events))return;b=p.trim(_(b||"")).split(" ");for(f=0;f<b.length;f++){g=W.exec(b[f])||[],h=i=g[1],j=g[2];if(!h){for(h in m)p.event.remove(a,h+b[f],c,d,!0);continue}n=p.event.special[h]||{},h=(d?n.delegateType:n.bindType)||h,o=m[h]||[],k=o.length,j=j?new RegExp("(^|\\.)"+j.split(".").sort().join("\\.(?:.*\\.|)")+"(\\.|$)"):null;for(l=0;l<o.length;l++)q=o[l],(e||i===q.origType)&&(!c||c.guid===q.guid)&&(!j||j.test(q.namespace))&&(!d||d===q.selector||d==="**"&&q.selector)&&(o.splice(l--,1),q.selector&&o.delegateCount--,n.remove&&n.remove.call(a,q));o.length===0&&k!==o.length&&((!n.teardown||n.teardown.call(a,j,r.handle)===!1)&&p.removeEvent(a,h,r.handle),delete m[h])}p.isEmptyObject(m)&&(delete r.handle,p.removeData(a,"events",!0))},customEvent:{getData:!0,setData:!0,changeData:!0},trigger:function(c,d,f,g){if(!f||f.nodeType!==3&&f.nodeType!==8){var h,i,j,k,l,m,n,o,q,r,s=c.type||c,t=[];if($.test(s+p.event.triggered))return;s.indexOf("!")>=0&&(s=s.slice(0,-1),i=!0),s.indexOf(".")>=0&&(t=s.split("."),s=t.shift(),t.sort());if((!f||p.event.customEvent[s])&&!p.event.global[s])return;c=typeof c=="object"?c[p.expando]?c:new p.Event(s,c):new p.Event(s),c.type=s,c.isTrigger=!0,c.exclusive=i,c.namespace=t.join("."),c.namespace_re=c.namespace?new RegExp("(^|\\.)"+t.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,m=s.indexOf(":")<0?"on"+s:"";if(!f){h=p.cache;for(j in h)h[j].events&&h[j].events[s]&&p.event.trigger(c,d,h[j].handle.elem,!0);return}c.result=b,c.target||(c.target=f),d=d!=null?p.makeArray(d):[],d.unshift(c),n=p.event.special[s]||{};if(n.trigger&&n.trigger.apply(f,d)===!1)return;q=[[f,n.bindType||s]];if(!g&&!n.noBubble&&!p.isWindow(f)){r=n.delegateType||s,k=$.test(r+s)?f:f.parentNode;for(l=f;k;k=k.parentNode)q.push([k,r]),l=k;l===(f.ownerDocument||e)&&q.push([l.defaultView||l.parentWindow||a,r])}for(j=0;j<q.length&&!c.isPropagationStopped();j++)k=q[j][0],c.type=q[j][1],o=(p._data(k,"events")||{})[c.type]&&p._data(k,"handle"),o&&o.apply(k,d),o=m&&k[m],o&&p.acceptData(k)&&o.apply&&o.apply(k,d)===!1&&c.preventDefault();return c.type=s,!g&&!c.isDefaultPrevented()&&(!n._default||n._default.apply(f.ownerDocument,d)===!1)&&(s!=="click"||!p.nodeName(f,"a"))&&p.acceptData(f)&&m&&f[s]&&(s!=="focus"&&s!=="blur"||c.target.offsetWidth!==0)&&!p.isWindow(f)&&(l=f[m],l&&(f[m]=null),p.event.triggered=s,f[s](),p.event.triggered=b,l&&(f[m]=l)),c.result}return},dispatch:function(c){c=p.event.fix(c||a.event);var d,e,f,g,h,i,j,l,m,n,o=(p._data(this,"events")||{})[c.type]||[],q=o.delegateCount,r=k.call(arguments),s=!c.exclusive&&!c.namespace,t=p.event.special[c.type]||{},u=[];r[0]=c,c.delegateTarget=this;if(t.preDispatch&&t.preDispatch.call(this,c)===!1)return;if(q&&(!c.button||c.type!=="click"))for(f=c.target;f!=this;f=f.parentNode||this)if(f.disabled!==!0||c.type!=="click"){h={},j=[];for(d=0;d<q;d++)l=o[d],m=l.selector,h[m]===b&&(h[m]=l.needsContext?p(m,this).index(f)>=0:p.find(m,this,null,[f]).length),h[m]&&j.push(l);j.length&&u.push({elem:f,matches:j})}o.length>q&&u.push({elem:this,matches:o.slice(q)});for(d=0;d<u.length&&!c.isPropagationStopped();d++){i=u[d],c.currentTarget=i.elem;for(e=0;e<i.matches.length&&!c.isImmediatePropagationStopped();e++){l=i.matches[e];if(s||!c.namespace&&!l.namespace||c.namespace_re&&c.namespace_re.test(l.namespace))c.data=l.data,c.handleObj=l,g=((p.event.special[l.origType]||{}).handle||l.handler).apply(i.elem,r),g!==b&&(c.result=g,g===!1&&(c.preventDefault(),c.stopPropagation()))}}return t.postDispatch&&t.postDispatch.call(this,c),c.result},props:"attrChange attrName relatedNode srcElement altKey bubbles cancelable ctrlKey currentTarget eventPhase metaKey relatedTarget shiftKey target timeStamp view which".split(" "),fixHooks:{},keyHooks:{props:"char charCode key keyCode".split(" "),filter:function(a,b){return a.which==null&&(a.which=b.charCode!=null?b.charCode:b.keyCode),a}},mouseHooks:{props:"button buttons clientX clientY fromElement offsetX offsetY pageX pageY screenX screenY toElement".split(" "),filter:function(a,c){var d,f,g,h=c.button,i=c.fromElement;return a.pageX==null&&c.clientX!=null&&(d=a.target.ownerDocument||e,f=d.documentElement,g=d.body,a.pageX=c.clientX+(f&&f.scrollLeft||g&&g.scrollLeft||0)-(f&&f.clientLeft||g&&g.clientLeft||0),a.pageY=c.clientY+(f&&f.scrollTop||g&&g.scrollTop||0)-(f&&f.clientTop||g&&g.clientTop||0)),!a.relatedTarget&&i&&(a.relatedTarget=i===a.target?c.toElement:i),!a.which&&h!==b&&(a.which=h&1?1:h&2?3:h&4?2:0),a}},fix:function(a){if(a[p.expando])return a;var b,c,d=a,f=p.event.fixHooks[a.type]||{},g=f.props?this.props.concat(f.props):this.props;a=p.Event(d);for(b=g.length;b;)c=g[--b],a[c]=d[c];return a.target||(a.target=d.srcElement||e),a.target.nodeType===3&&(a.target=a.target.parentNode),a.metaKey=!!a.metaKey,f.filter?f.filter(a,d):a},special:{load:{noBubble:!0},focus:{delegateType:"focusin"},blur:{delegateType:"focusout"},beforeunload:{setup:function(a,b,c){p.isWindow(this)&&(this.onbeforeunload=c)},teardown:function(a,b){this.onbeforeunload===b&&(this.onbeforeunload=null)}}},simulate:function(a,b,c,d){var e=p.extend(new p.Event,c,{type:a,isSimulated:!0,originalEvent:{}});d?p.event.trigger(e,null,b):p.event.dispatch.call(b,e),e.isDefaultPrevented()&&c.preventDefault()}},p.event.handle=p.event.dispatch,p.removeEvent=e.removeEventListener?function(a,b,c){a.removeEventListener&&a.removeEventListener(b,c,!1)}:function(a,b,c){var d="on"+b;a.detachEvent&&(typeof a[d]=="undefined"&&(a[d]=null),a.detachEvent(d,c))},p.Event=function(a,b){if(this instanceof p.Event)a&&a.type?(this.originalEvent=a,this.type=a.type,this.isDefaultPrevented=a.defaultPrevented||a.returnValue===!1||a.getPreventDefault&&a.getPreventDefault()?bb:ba):this.type=a,b&&p.extend(this,b),this.timeStamp=a&&a.timeStamp||p.now(),this[p.expando]=!0;else return new p.Event(a,b)},p.Event.prototype={preventDefault:function(){this.isDefaultPrevented=bb;var a=this.originalEvent;if(!a)return;a.preventDefault?a.preventDefault():a.returnValue=!1},stopPropagation:function(){this.isPropagationStopped=bb;var a=this.originalEvent;if(!a)return;a.stopPropagation&&a.stopPropagation(),a.cancelBubble=!0},stopImmediatePropagation:function(){this.isImmediatePropagationStopped=bb,this.stopPropagation()},isDefaultPrevented:ba,isPropagationStopped:ba,isImmediatePropagationStopped:ba},p.each({mouseenter:"mouseover",mouseleave:"mouseout"},function(a,b){p.event.special[a]={delegateType:b,bindType:b,handle:function(a){var c,d=this,e=a.relatedTarget,f=a.handleObj,g=f.selector;if(!e||e!==d&&!p.contains(d,e))a.type=f.origType,c=f.handler.apply(this,arguments),a.type=b;return c}}}),p.support.submitBubbles||(p.event.special.submit={setup:function(){if(p.nodeName(this,"form"))return!1;p.event.add(this,"click._submit keypress._submit",function(a){var c=a.target,d=p.nodeName(c,"input")||p.nodeName(c,"button")?c.form:b;d&&!p._data(d,"_submit_attached")&&(p.event.add(d,"submit._submit",function(a){a._submit_bubble=!0}),p._data(d,"_submit_attached",!0))})},postDispatch:function(a){a._submit_bubble&&(delete a._submit_bubble,this.parentNode&&!a.isTrigger&&p.event.simulate("submit",this.parentNode,a,!0))},teardown:function(){if(p.nodeName(this,"form"))return!1;p.event.remove(this,"._submit")}}),p.support.changeBubbles||(p.event.special.change={setup:function(){if(V.test(this.nodeName)){if(this.type==="checkbox"||this.type==="radio")p.event.add(this,"propertychange._change",function(a){a.originalEvent.propertyName==="checked"&&(this._just_changed=!0)}),p.event.add(this,"click._change",function(a){this._just_changed&&!a.isTrigger&&(this._just_changed=!1),p.event.simulate("change",this,a,!0)});return!1}p.event.add(this,"beforeactivate._change",function(a){var b=a.target;V.test(b.nodeName)&&!p._data(b,"_change_attached")&&(p.event.add(b,"change._change",function(a){this.parentNode&&!a.isSimulated&&!a.isTrigger&&p.event.simulate("change",this.parentNode,a,!0)}),p._data(b,"_change_attached",!0))})},handle:function(a){var b=a.target;if(this!==b||a.isSimulated||a.isTrigger||b.type!=="radio"&&b.type!=="checkbox")return a.handleObj.handler.apply(this,arguments)},teardown:function(){return p.event.remove(this,"._change"),!V.test(this.nodeName)}}),p.support.focusinBubbles||p.each({focus:"focusin",blur:"focusout"},function(a,b){var c=0,d=function(a){p.event.simulate(b,a.target,p.event.fix(a),!0)};p.event.special[b]={setup:function(){c++===0&&e.addEventListener(a,d,!0)},teardown:function(){--c===0&&e.removeEventListener(a,d,!0)}}}),p.fn.extend({on:function(a,c,d,e,f){var g,h;if(typeof a=="object"){typeof c!="string"&&(d=d||c,c=b);for(h in a)this.on(h,c,d,a[h],f);return this}d==null&&e==null?(e=c,d=c=b):e==null&&(typeof c=="string"?(e=d,d=b):(e=d,d=c,c=b));if(e===!1)e=ba;else if(!e)return this;return f===1&&(g=e,e=function(a){return p().off(a),g.apply(this,arguments)},e.guid=g.guid||(g.guid=p.guid++)),this.each(function(){p.event.add(this,a,e,d,c)})},one:function(a,b,c,d){return this.on(a,b,c,d,1)},off:function(a,c,d){var e,f;if(a&&a.preventDefault&&a.handleObj)return e=a.handleObj,p(a.delegateTarget).off(e.namespace?e.origType+"."+e.namespace:e.origType,e.selector,e.handler),this;if(typeof a=="object"){for(f in a)this.off(f,c,a[f]);return this}if(c===!1||typeof c=="function")d=c,c=b;return d===!1&&(d=ba),this.each(function(){p.event.remove(this,a,d,c)})},bind:function(a,b,c){return this.on(a,null,b,c)},unbind:function(a,b){return this.off(a,null,b)},live:function(a,b,c){return p(this.context).on(a,this.selector,b,c),this},die:function(a,b){return p(this.context).off(a,this.selector||"**",b),this},delegate:function(a,b,c,d){return this.on(b,a,c,d)},undelegate:function(a,b,c){return arguments.length===1?this.off(a,"**"):this.off(b,a||"**",c)},trigger:function(a,b){return this.each(function(){p.event.trigger(a,b,this)})},triggerHandler:function(a,b){if(this[0])return p.event.trigger(a,b,this[0],!0)},toggle:function(a){var b=arguments,c=a.guid||p.guid++,d=0,e=function(c){var e=(p._data(this,"lastToggle"+a.guid)||0)%d;return p._data(this,"lastToggle"+a.guid,e+1),c.preventDefault(),b[e].apply(this,arguments)||!1};e.guid=c;while(d<b.length)b[d++].guid=c;return this.click(e)},hover:function(a,b){return this.mouseenter(a).mouseleave(b||a)}}),p.each("blur focus focusin focusout load resize scroll unload click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup error contextmenu".split(" "),function(a,b){p.fn[b]=function(a,c){return c==null&&(c=a,a=null),arguments.length>0?this.on(b,null,a,c):this.trigger(b)},Y.test(b)&&(p.event.fixHooks[b]=p.event.keyHooks),Z.test(b)&&(p.event.fixHooks[b]=p.event.mouseHooks)}),function(a,b){function bc(a,b,c,d){c=c||[],b=b||r;var e,f,i,j,k=b.nodeType;if(!a||typeof a!="string")return c;if(k!==1&&k!==9)return[];i=g(b);if(!i&&!d)if(e=P.exec(a))if(j=e[1]){if(k===9){f=b.getElementById(j);if(!f||!f.parentNode)return c;if(f.id===j)return c.push(f),c}else if(b.ownerDocument&&(f=b.ownerDocument.getElementById(j))&&h(b,f)&&f.id===j)return c.push(f),c}else{if(e[2])return w.apply(c,x.call(b.getElementsByTagName(a),0)),c;if((j=e[3])&&_&&b.getElementsByClassName)return w.apply(c,x.call(b.getElementsByClassName(j),0)),c}return bp(a.replace(L,"$1"),b,c,d,i)}function bd(a){return function(b){var c=b.nodeName.toLowerCase();return c==="input"&&b.type===a}}function be(a){return function(b){var c=b.nodeName.toLowerCase();return(c==="input"||c==="button")&&b.type===a}}function bf(a){return z(function(b){return b=+b,z(function(c,d){var e,f=a([],c.length,b),g=f.length;while(g--)c[e=f[g]]&&(c[e]=!(d[e]=c[e]))})})}function bg(a,b,c){if(a===b)return c;var d=a.nextSibling;while(d){if(d===b)return-1;d=d.nextSibling}return 1}function bh(a,b){var c,d,f,g,h,i,j,k=C[o][a];if(k)return b?0:k.slice(0);h=a,i=[],j=e.preFilter;while(h){if(!c||(d=M.exec(h)))d&&(h=h.slice(d[0].length)),i.push(f=[]);c=!1;if(d=N.exec(h))f.push(c=new q(d.shift())),h=h.slice(c.length),c.type=d[0].replace(L," ");for(g in e.filter)(d=W[g].exec(h))&&(!j[g]||(d=j[g](d,r,!0)))&&(f.push(c=new q(d.shift())),h=h.slice(c.length),c.type=g,c.matches=d);if(!c)break}return b?h.length:h?bc.error(a):C(a,i).slice(0)}function bi(a,b,d){var e=b.dir,f=d&&b.dir==="parentNode",g=u++;return b.first?function(b,c,d){while(b=b[e])if(f||b.nodeType===1)return a(b,c,d)}:function(b,d,h){if(!h){var i,j=t+" "+g+" ",k=j+c;while(b=b[e])if(f||b.nodeType===1){if((i=b[o])===k)return b.sizset;if(typeof i=="string"&&i.indexOf(j)===0){if(b.sizset)return b}else{b[o]=k;if(a(b,d,h))return b.sizset=!0,b;b.sizset=!1}}}else while(b=b[e])if(f||b.nodeType===1)if(a(b,d,h))return b}}function bj(a){return a.length>1?function(b,c,d){var e=a.length;while(e--)if(!a[e](b,c,d))return!1;return!0}:a[0]}function bk(a,b,c,d,e){var f,g=[],h=0,i=a.length,j=b!=null;for(;h<i;h++)if(f=a[h])if(!c||c(f,d,e))g.push(f),j&&b.push(h);return g}function bl(a,b,c,d,e,f){return d&&!d[o]&&(d=bl(d)),e&&!e[o]&&(e=bl(e,f)),z(function(f,g,h,i){if(f&&e)return;var j,k,l,m=[],n=[],o=g.length,p=f||bo(b||"*",h.nodeType?[h]:h,[],f),q=a&&(f||!b)?bk(p,m,a,h,i):p,r=c?e||(f?a:o||d)?[]:g:q;c&&c(q,r,h,i);if(d){l=bk(r,n),d(l,[],h,i),j=l.length;while(j--)if(k=l[j])r[n[j]]=!(q[n[j]]=k)}if(f){j=a&&r.length;while(j--)if(k=r[j])f[m[j]]=!(g[m[j]]=k)}else r=bk(r===g?r.splice(o,r.length):r),e?e(null,g,r,i):w.apply(g,r)})}function bm(a){var b,c,d,f=a.length,g=e.relative[a[0].type],h=g||e.relative[" "],i=g?1:0,j=bi(function(a){return a===b},h,!0),k=bi(function(a){return y.call(b,a)>-1},h,!0),m=[function(a,c,d){return!g&&(d||c!==l)||((b=c).nodeType?j(a,c,d):k(a,c,d))}];for(;i<f;i++)if(c=e.relative[a[i].type])m=[bi(bj(m),c)];else{c=e.filter[a[i].type].apply(null,a[i].matches);if(c[o]){d=++i;for(;d<f;d++)if(e.relative[a[d].type])break;return bl(i>1&&bj(m),i>1&&a.slice(0,i-1).join("").replace(L,"$1"),c,i<d&&bm(a.slice(i,d)),d<f&&bm(a=a.slice(d)),d<f&&a.join(""))}m.push(c)}return bj(m)}function bn(a,b){var d=b.length>0,f=a.length>0,g=function(h,i,j,k,m){var n,o,p,q=[],s=0,u="0",x=h&&[],y=m!=null,z=l,A=h||f&&e.find.TAG("*",m&&i.parentNode||i),B=t+=z==null?1:Math.E;y&&(l=i!==r&&i,c=g.el);for(;(n=A[u])!=null;u++){if(f&&n){for(o=0;p=a[o];o++)if(p(n,i,j)){k.push(n);break}y&&(t=B,c=++g.el)}d&&((n=!p&&n)&&s--,h&&x.push(n))}s+=u;if(d&&u!==s){for(o=0;p=b[o];o++)p(x,q,i,j);if(h){if(s>0)while(u--)!x[u]&&!q[u]&&(q[u]=v.call(k));q=bk(q)}w.apply(k,q),y&&!h&&q.length>0&&s+b.length>1&&bc.uniqueSort(k)}return y&&(t=B,l=z),x};return g.el=0,d?z(g):g}function bo(a,b,c,d){var e=0,f=b.length;for(;e<f;e++)bc(a,b[e],c,d);return c}function bp(a,b,c,d,f){var g,h,j,k,l,m=bh(a),n=m.length;if(!d&&m.length===1){h=m[0]=m[0].slice(0);if(h.length>2&&(j=h[0]).type==="ID"&&b.nodeType===9&&!f&&e.relative[h[1].type]){b=e.find.ID(j.matches[0].replace(V,""),b,f)[0];if(!b)return c;a=a.slice(h.shift().length)}for(g=W.POS.test(a)?-1:h.length-1;g>=0;g--){j=h[g];if(e.relative[k=j.type])break;if(l=e.find[k])if(d=l(j.matches[0].replace(V,""),R.test(h[0].type)&&b.parentNode||b,f)){h.splice(g,1),a=d.length&&h.join("");if(!a)return w.apply(c,x.call(d,0)),c;break}}}return i(a,m)(d,b,f,c,R.test(a)),c}function bq(){}var c,d,e,f,g,h,i,j,k,l,m=!0,n="undefined",o=("sizcache"+Math.random()).replace(".",""),q=String,r=a.document,s=r.documentElement,t=0,u=0,v=[].pop,w=[].push,x=[].slice,y=[].indexOf||function(a){var b=0,c=this.length;for(;b<c;b++)if(this[b]===a)return b;return-1},z=function(a,b){return a[o]=b==null||b,a},A=function(){var a={},b=[];return z(function(c,d){return b.push(c)>e.cacheLength&&delete a[b.shift()],a[c]=d},a)},B=A(),C=A(),D=A(),E="[\\x20\\t\\r\\n\\f]",F="(?:\\\\.|[-\\w]|[^\\x00-\\xa0])+",G=F.replace("w","w#"),H="([*^$|!~]?=)",I="\\["+E+"*("+F+")"+E+"*(?:"+H+E+"*(?:(['\"])((?:\\\\.|[^\\\\])*?)\\3|("+G+")|)|)"+E+"*\\]",J=":("+F+")(?:\\((?:(['\"])((?:\\\\.|[^\\\\])*?)\\2|([^()[\\]]*|(?:(?:"+I+")|[^:]|\\\\.)*|.*))\\)|)",K=":(even|odd|eq|gt|lt|nth|first|last)(?:\\("+E+"*((?:-\\d)?\\d*)"+E+"*\\)|)(?=[^-]|$)",L=new RegExp("^"+E+"+|((?:^|[^\\\\])(?:\\\\.)*)"+E+"+$","g"),M=new RegExp("^"+E+"*,"+E+"*"),N=new RegExp("^"+E+"*([\\x20\\t\\r\\n\\f>+~])"+E+"*"),O=new RegExp(J),P=/^(?:#([\w\-]+)|(\w+)|\.([\w\-]+))$/,Q=/^:not/,R=/[\x20\t\r\n\f]*[+~]/,S=/:not\($/,T=/h\d/i,U=/input|select|textarea|button/i,V=/\\(?!\\)/g,W={ID:new RegExp("^#("+F+")"),CLASS:new RegExp("^\\.("+F+")"),NAME:new RegExp("^\\[name=['\"]?("+F+")['\"]?\\]"),TAG:new RegExp("^("+F.replace("w","w*")+")"),ATTR:new RegExp("^"+I),PSEUDO:new RegExp("^"+J),POS:new RegExp(K,"i"),CHILD:new RegExp("^:(only|nth|first|last)-child(?:\\("+E+"*(even|odd|(([+-]|)(\\d*)n|)"+E+"*(?:([+-]|)"+E+"*(\\d+)|))"+E+"*\\)|)","i"),needsContext:new RegExp("^"+E+"*[>+~]|"+K,"i")},X=function(a){var b=r.createElement("div");try{return a(b)}catch(c){return!1}finally{b=null}},Y=X(function(a){return a.appendChild(r.createComment("")),!a.getElementsByTagName("*").length}),Z=X(function(a){return a.innerHTML="<a href='#'></a>",a.firstChild&&typeof a.firstChild.getAttribute!==n&&a.firstChild.getAttribute("href")==="#"}),$=X(function(a){a.innerHTML="<select></select>";var b=typeof a.lastChild.getAttribute("multiple");return b!=="boolean"&&b!=="string"}),_=X(function(a){return a.innerHTML="<div class='hidden e'></div><div class='hidden'></div>",!a.getElementsByClassName||!a.getElementsByClassName("e").length?!1:(a.lastChild.className="e",a.getElementsByClassName("e").length===2)}),ba=X(function(a){a.id=o+0,a.innerHTML="<a name='"+o+"'></a><div name='"+o+"'></div>",s.insertBefore(a,s.firstChild);var b=r.getElementsByName&&r.getElementsByName(o).length===2+r.getElementsByName(o+0).length;return d=!r.getElementById(o),s.removeChild(a),b});try{x.call(s.childNodes,0)[0].nodeType}catch(bb){x=function(a){var b,c=[];for(;b=this[a];a++)c.push(b);return c}}bc.matches=function(a,b){return bc(a,null,null,b)},bc.matchesSelector=function(a,b){return bc(b,null,null,[a]).length>0},f=bc.getText=function(a){var b,c="",d=0,e=a.nodeType;if(e){if(e===1||e===9||e===11){if(typeof a.textContent=="string")return a.textContent;for(a=a.firstChild;a;a=a.nextSibling)c+=f(a)}else if(e===3||e===4)return a.nodeValue}else for(;b=a[d];d++)c+=f(b);return c},g=bc.isXML=function(a){var b=a&&(a.ownerDocument||a).documentElement;return b?b.nodeName!=="HTML":!1},h=bc.contains=s.contains?function(a,b){var c=a.nodeType===9?a.documentElement:a,d=b&&b.parentNode;return a===d||!!(d&&d.nodeType===1&&c.contains&&c.contains(d))}:s.compareDocumentPosition?function(a,b){return b&&!!(a.compareDocumentPosition(b)&16)}:function(a,b){while(b=b.parentNode)if(b===a)return!0;return!1},bc.attr=function(a,b){var c,d=g(a);return d||(b=b.toLowerCase()),(c=e.attrHandle[b])?c(a):d||$?a.getAttribute(b):(c=a.getAttributeNode(b),c?typeof a[b]=="boolean"?a[b]?b:null:c.specified?c.value:null:null)},e=bc.selectors={cacheLength:50,createPseudo:z,match:W,attrHandle:Z?{}:{href:function(a){return a.getAttribute("href",2)},type:function(a){return a.getAttribute("type")}},find:{ID:d?function(a,b,c){if(typeof b.getElementById!==n&&!c){var d=b.getElementById(a);return d&&d.parentNode?[d]:[]}}:function(a,c,d){if(typeof c.getElementById!==n&&!d){var e=c.getElementById(a);return e?e.id===a||typeof e.getAttributeNode!==n&&e.getAttributeNode("id").value===a?[e]:b:[]}},TAG:Y?function(a,b){if(typeof b.getElementsByTagName!==n)return b.getElementsByTagName(a)}:function(a,b){var c=b.getElementsByTagName(a);if(a==="*"){var d,e=[],f=0;for(;d=c[f];f++)d.nodeType===1&&e.push(d);return e}return c},NAME:ba&&function(a,b){if(typeof b.getElementsByName!==n)return b.getElementsByName(name)},CLASS:_&&function(a,b,c){if(typeof b.getElementsByClassName!==n&&!c)return b.getElementsByClassName(a)}},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(a){return a[1]=a[1].replace(V,""),a[3]=(a[4]||a[5]||"").replace(V,""),a[2]==="~="&&(a[3]=" "+a[3]+" "),a.slice(0,4)},CHILD:function(a){return a[1]=a[1].toLowerCase(),a[1]==="nth"?(a[2]||bc.error(a[0]),a[3]=+(a[3]?a[4]+(a[5]||1):2*(a[2]==="even"||a[2]==="odd")),a[4]=+(a[6]+a[7]||a[2]==="odd")):a[2]&&bc.error(a[0]),a},PSEUDO:function(a){var b,c;if(W.CHILD.test(a[0]))return null;if(a[3])a[2]=a[3];else if(b=a[4])O.test(b)&&(c=bh(b,!0))&&(c=b.indexOf(")",b.length-c)-b.length)&&(b=b.slice(0,c),a[0]=a[0].slice(0,c)),a[2]=b;return a.slice(0,3)}},filter:{ID:d?function(a){return a=a.replace(V,""),function(b){return b.getAttribute("id")===a}}:function(a){return a=a.replace(V,""),function(b){var c=typeof b.getAttributeNode!==n&&b.getAttributeNode("id");return c&&c.value===a}},TAG:function(a){return a==="*"?function(){return!0}:(a=a.replace(V,"").toLowerCase(),function(b){return b.nodeName&&b.nodeName.toLowerCase()===a})},CLASS:function(a){var b=B[o][a];return b||(b=B(a,new RegExp("(^|"+E+")"+a+"("+E+"|$)"))),function(a){return b.test(a.className||typeof a.getAttribute!==n&&a.getAttribute("class")||"")}},ATTR:function(a,b,c){return function(d,e){var f=bc.attr(d,a);return f==null?b==="!=":b?(f+="",b==="="?f===c:b==="!="?f!==c:b==="^="?c&&f.indexOf(c)===0:b==="*="?c&&f.indexOf(c)>-1:b==="$="?c&&f.substr(f.length-c.length)===c:b==="~="?(" "+f+" ").indexOf(c)>-1:b==="|="?f===c||f.substr(0,c.length+1)===c+"-":!1):!0}},CHILD:function(a,b,c,d){return a==="nth"?function(a){var b,e,f=a.parentNode;if(c===1&&d===0)return!0;if(f){e=0;for(b=f.firstChild;b;b=b.nextSibling)if(b.nodeType===1){e++;if(a===b)break}}return e-=d,e===c||e%c===0&&e/c>=0}:function(b){var c=b;switch(a){case"only":case"first":while(c=c.previousSibling)if(c.nodeType===1)return!1;if(a==="first")return!0;c=b;case"last":while(c=c.nextSibling)if(c.nodeType===1)return!1;return!0}}},PSEUDO:function(a,b){var c,d=e.pseudos[a]||e.setFilters[a.toLowerCase()]||bc.error("unsupported pseudo: "+a);return d[o]?d(b):d.length>1?(c=[a,a,"",b],e.setFilters.hasOwnProperty(a.toLowerCase())?z(function(a,c){var e,f=d(a,b),g=f.length;while(g--)e=y.call(a,f[g]),a[e]=!(c[e]=f[g])}):function(a){return d(a,0,c)}):d}},pseudos:{not:z(function(a){var b=[],c=[],d=i(a.replace(L,"$1"));return d[o]?z(function(a,b,c,e){var f,g=d(a,null,e,[]),h=a.length;while(h--)if(f=g[h])a[h]=!(b[h]=f)}):function(a,e,f){return b[0]=a,d(b,null,f,c),!c.pop()}}),has:z(function(a){return function(b){return bc(a,b).length>0}}),contains:z(function(a){return function(b){return(b.textContent||b.innerText||f(b)).indexOf(a)>-1}}),enabled:function(a){return a.disabled===!1},disabled:function(a){return a.disabled===!0},checked:function(a){var b=a.nodeName.toLowerCase();return b==="input"&&!!a.checked||b==="option"&&!!a.selected},selected:function(a){return a.parentNode&&a.parentNode.selectedIndex,a.selected===!0},parent:function(a){return!e.pseudos.empty(a)},empty:function(a){var b;a=a.firstChild;while(a){if(a.nodeName>"@"||(b=a.nodeType)===3||b===4)return!1;a=a.nextSibling}return!0},header:function(a){return T.test(a.nodeName)},text:function(a){var b,c;return a.nodeName.toLowerCase()==="input"&&(b=a.type)==="text"&&((c=a.getAttribute("type"))==null||c.toLowerCase()===b)},radio:bd("radio"),checkbox:bd("checkbox"),file:bd("file"),password:bd("password"),image:bd("image"),submit:be("submit"),reset:be("reset"),button:function(a){var b=a.nodeName.toLowerCase();return b==="input"&&a.type==="button"||b==="button"},input:function(a){return U.test(a.nodeName)},focus:function(a){var b=a.ownerDocument;return a===b.activeElement&&(!b.hasFocus||b.hasFocus())&&(!!a.type||!!a.href)},active:function(a){return a===a.ownerDocument.activeElement},first:bf(function(a,b,c){return[0]}),last:bf(function(a,b,c){return[b-1]}),eq:bf(function(a,b,c){return[c<0?c+b:c]}),even:bf(function(a,b,c){for(var d=0;d<b;d+=2)a.push(d);return a}),odd:bf(function(a,b,c){for(var d=1;d<b;d+=2)a.push(d);return a}),lt:bf(function(a,b,c){for(var d=c<0?c+b:c;--d>=0;)a.push(d);return a}),gt:bf(function(a,b,c){for(var d=c<0?c+b:c;++d<b;)a.push(d);return a})}},j=s.compareDocumentPosition?function(a,b){return a===b?(k=!0,0):(!a.compareDocumentPosition||!b.compareDocumentPosition?a.compareDocumentPosition:a.compareDocumentPosition(b)&4)?-1:1}:function(a,b){if(a===b)return k=!0,0;if(a.sourceIndex&&b.sourceIndex)return a.sourceIndex-b.sourceIndex;var c,d,e=[],f=[],g=a.parentNode,h=b.parentNode,i=g;if(g===h)return bg(a,b);if(!g)return-1;if(!h)return 1;while(i)e.unshift(i),i=i.parentNode;i=h;while(i)f.unshift(i),i=i.parentNode;c=e.length,d=f.length;for(var j=0;j<c&&j<d;j++)if(e[j]!==f[j])return bg(e[j],f[j]);return j===c?bg(a,f[j],-1):bg(e[j],b,1)},[0,0].sort(j),m=!k,bc.uniqueSort=function(a){var b,c=1;k=m,a.sort(j);if(k)for(;b=a[c];c++)b===a[c-1]&&a.splice(c--,1);return a},bc.error=function(a){throw new Error("Syntax error, unrecognized expression: "+a)},i=bc.compile=function(a,b){var c,d=[],e=[],f=D[o][a];if(!f){b||(b=bh(a)),c=b.length;while(c--)f=bm(b[c]),f[o]?d.push(f):e.push(f);f=D(a,bn(e,d))}return f},r.querySelectorAll&&function(){var a,b=bp,c=/'|\\/g,d=/\=[\x20\t\r\n\f]*([^'"\]]*)[\x20\t\r\n\f]*\]/g,e=[":focus"],f=[":active",":focus"],h=s.matchesSelector||s.mozMatchesSelector||s.webkitMatchesSelector||s.oMatchesSelector||s.msMatchesSelector;X(function(a){a.innerHTML="<select><option selected=''></option></select>",a.querySelectorAll("[selected]").length||e.push("\\["+E+"*(?:checked|disabled|ismap|multiple|readonly|selected|value)"),a.querySelectorAll(":checked").length||e.push(":checked")}),X(function(a){a.innerHTML="<p test=''></p>",a.querySelectorAll("[test^='']").length&&e.push("[*^$]="+E+"*(?:\"\"|'')"),a.innerHTML="<input type='hidden'/>",a.querySelectorAll(":enabled").length||e.push(":enabled",":disabled")}),e=new RegExp(e.join("|")),bp=function(a,d,f,g,h){if(!g&&!h&&(!e||!e.test(a))){var i,j,k=!0,l=o,m=d,n=d.nodeType===9&&a;if(d.nodeType===1&&d.nodeName.toLowerCase()!=="object"){i=bh(a),(k=d.getAttribute("id"))?l=k.replace(c,"\\$&"):d.setAttribute("id",l),l="[id='"+l+"'] ",j=i.length;while(j--)i[j]=l+i[j].join("");m=R.test(a)&&d.parentNode||d,n=i.join(",")}if(n)try{return w.apply(f,x.call(m.querySelectorAll(n),0)),f}catch(p){}finally{k||d.removeAttribute("id")}}return b(a,d,f,g,h)},h&&(X(function(b){a=h.call(b,"div");try{h.call(b,"[test!='']:sizzle"),f.push("!=",J)}catch(c){}}),f=new RegExp(f.join("|")),bc.matchesSelector=function(b,c){c=c.replace(d,"='$1']");if(!g(b)&&!f.test(c)&&(!e||!e.test(c)))try{var i=h.call(b,c);if(i||a||b.document&&b.document.nodeType!==11)return i}catch(j){}return bc(c,null,null,[b]).length>0})}(),e.pseudos.nth=e.pseudos.eq,e.filters=bq.prototype=e.pseudos,e.setFilters=new bq,bc.attr=p.attr,p.find=bc,p.expr=bc.selectors,p.expr[":"]=p.expr.pseudos,p.unique=bc.uniqueSort,p.text=bc.getText,p.isXMLDoc=bc.isXML,p.contains=bc.contains}(a);var bc=/Until$/,bd=/^(?:parents|prev(?:Until|All))/,be=/^.[^:#\[\.,]*$/,bf=p.expr.match.needsContext,bg={children:!0,contents:!0,next:!0,prev:!0};p.fn.extend({find:function(a){var b,c,d,e,f,g,h=this;if(typeof a!="string")return p(a).filter(function(){for(b=0,c=h.length;b<c;b++)if(p.contains(h[b],this))return!0});g=this.pushStack("","find",a);for(b=0,c=this.length;b<c;b++){d=g.length,p.find(a,this[b],g);if(b>0)for(e=d;e<g.length;e++)for(f=0;f<d;f++)if(g[f]===g[e]){g.splice(e--,1);break}}return g},has:function(a){var b,c=p(a,this),d=c.length;return this.filter(function(){for(b=0;b<d;b++)if(p.contains(this,c[b]))return!0})},not:function(a){return this.pushStack(bj(this,a,!1),"not",a)},filter:function(a){return this.pushStack(bj(this,a,!0),"filter",a)},is:function(a){return!!a&&(typeof a=="string"?bf.test(a)?p(a,this.context).index(this[0])>=0:p.filter(a,this).length>0:this.filter(a).length>0)},closest:function(a,b){var c,d=0,e=this.length,f=[],g=bf.test(a)||typeof a!="string"?p(a,b||this.context):0;for(;d<e;d++){c=this[d];while(c&&c.ownerDocument&&c!==b&&c.nodeType!==11){if(g?g.index(c)>-1:p.find.matchesSelector(c,a)){f.push(c);break}c=c.parentNode}}return f=f.length>1?p.unique(f):f,this.pushStack(f,"closest",a)},index:function(a){return a?typeof a=="string"?p.inArray(this[0],p(a)):p.inArray(a.jquery?a[0]:a,this):this[0]&&this[0].parentNode?this.prevAll().length:-1},add:function(a,b){var c=typeof a=="string"?p(a,b):p.makeArray(a&&a.nodeType?[a]:a),d=p.merge(this.get(),c);return this.pushStack(bh(c[0])||bh(d[0])?d:p.unique(d))},addBack:function(a){return this.add(a==null?this.prevObject:this.prevObject.filter(a))}}),p.fn.andSelf=p.fn.addBack,p.each({parent:function(a){var b=a.parentNode;return b&&b.nodeType!==11?b:null},parents:function(a){return p.dir(a,"parentNode")},parentsUntil:function(a,b,c){return p.dir(a,"parentNode",c)},next:function(a){return bi(a,"nextSibling")},prev:function(a){return bi(a,"previousSibling")},nextAll:function(a){return p.dir(a,"nextSibling")},prevAll:function(a){return p.dir(a,"previousSibling")},nextUntil:function(a,b,c){return p.dir(a,"nextSibling",c)},prevUntil:function(a,b,c){return p.dir(a,"previousSibling",c)},siblings:function(a){return p.sibling((a.parentNode||{}).firstChild,a)},children:function(a){return p.sibling(a.firstChild)},contents:function(a){return p.nodeName(a,"iframe")?a.contentDocument||a.contentWindow.document:p.merge([],a.childNodes)}},function(a,b){p.fn[a]=function(c,d){var e=p.map(this,b,c);return bc.test(a)||(d=c),d&&typeof d=="string"&&(e=p.filter(d,e)),e=this.length>1&&!bg[a]?p.unique(e):e,this.length>1&&bd.test(a)&&(e=e.reverse()),this.pushStack(e,a,k.call(arguments).join(","))}}),p.extend({filter:function(a,b,c){return c&&(a=":not("+a+")"),b.length===1?p.find.matchesSelector(b[0],a)?[b[0]]:[]:p.find.matches(a,b)},dir:function(a,c,d){var e=[],f=a[c];while(f&&f.nodeType!==9&&(d===b||f.nodeType!==1||!p(f).is(d)))f.nodeType===1&&e.push(f),f=f[c];return e},sibling:function(a,b){var c=[];for(;a;a=a.nextSibling)a.nodeType===1&&a!==b&&c.push(a);return c}});var bl="abbr|article|aside|audio|bdi|canvas|data|datalist|details|figcaption|figure|footer|header|hgroup|mark|meter|nav|output|progress|section|summary|time|video",bm=/ jQuery\d+="(?:null|\d+)"/g,bn=/^\s+/,bo=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/gi,bp=/<([\w:]+)/,bq=/<tbody/i,br=/<|&#?\w+;/,bs=/<(?:script|style|link)/i,bt=/<(?:script|object|embed|option|style)/i,bu=new RegExp("<(?:"+bl+")[\\s/>]","i"),bv=/^(?:checkbox|radio)$/,bw=/checked\s*(?:[^=]|=\s*.checked.)/i,bx=/\/(java|ecma)script/i,by=/^\s*<!(?:\[CDATA\[|\-\-)|[\]\-]{2}>\s*$/g,bz={option:[1,"<select multiple='multiple'>","</select>"],legend:[1,"<fieldset>","</fieldset>"],thead:[1,"<table>","</table>"],tr:[2,"<table><tbody>","</tbody></table>"],td:[3,"<table><tbody><tr>","</tr></tbody></table>"],col:[2,"<table><tbody></tbody><colgroup>","</colgroup></table>"],area:[1,"<map>","</map>"],_default:[0,"",""]},bA=bk(e),bB=bA.appendChild(e.createElement("div"));bz.optgroup=bz.option,bz.tbody=bz.tfoot=bz.colgroup=bz.caption=bz.thead,bz.th=bz.td,p.support.htmlSerialize||(bz._default=[1,"X<div>","</div>"]),p.fn.extend({text:function(a){return p.access(this,function(a){return a===b?p.text(this):this.empty().append((this[0]&&this[0].ownerDocument||e).createTextNode(a))},null,a,arguments.length)},wrapAll:function(a){if(p.isFunction(a))return this.each(function(b){p(this).wrapAll(a.call(this,b))});if(this[0]){var b=p(a,this[0].ownerDocument).eq(0).clone(!0);this[0].parentNode&&b.insertBefore(this[0]),b.map(function(){var a=this;while(a.firstChild&&a.firstChild.nodeType===1)a=a.firstChild;return a}).append(this)}return this},wrapInner:function(a){return p.isFunction(a)?this.each(function(b){p(this).wrapInner(a.call(this,b))}):this.each(function(){var b=p(this),c=b.contents();c.length?c.wrapAll(a):b.append(a)})},wrap:function(a){var b=p.isFunction(a);return this.each(function(c){p(this).wrapAll(b?a.call(this,c):a)})},unwrap:function(){return this.parent().each(function(){p.nodeName(this,"body")||p(this).replaceWith(this.childNodes)}).end()},append:function(){return this.domManip(arguments,!0,function(a){(this.nodeType===1||this.nodeType===11)&&this.appendChild(a)})},prepend:function(){return this.domManip(arguments,!0,function(a){(this.nodeType===1||this.nodeType===11)&&this.insertBefore(a,this.firstChild)})},before:function(){if(!bh(this[0]))return this.domManip(arguments,!1,function(a){this.parentNode.insertBefore(a,this)});if(arguments.length){var a=p.clean(arguments);return this.pushStack(p.merge(a,this),"before",this.selector)}},after:function(){if(!bh(this[0]))return this.domManip(arguments,!1,function(a){this.parentNode.insertBefore(a,this.nextSibling)});if(arguments.length){var a=p.clean(arguments);return this.pushStack(p.merge(this,a),"after",this.selector)}},remove:function(a,b){var c,d=0;for(;(c=this[d])!=null;d++)if(!a||p.filter(a,[c]).length)!b&&c.nodeType===1&&(p.cleanData(c.getElementsByTagName("*")),p.cleanData([c])),c.parentNode&&c.parentNode.removeChild(c);return this},empty:function(){var a,b=0;for(;(a=this[b])!=null;b++){a.nodeType===1&&p.cleanData(a.getElementsByTagName("*"));while(a.firstChild)a.removeChild(a.firstChild)}return this},clone:function(a,b){return a=a==null?!1:a,b=b==null?a:b,this.map(function(){return p.clone(this,a,b)})},html:function(a){return p.access(this,function(a){var c=this[0]||{},d=0,e=this.length;if(a===b)return c.nodeType===1?c.innerHTML.replace(bm,""):b;if(typeof a=="string"&&!bs.test(a)&&(p.support.htmlSerialize||!bu.test(a))&&(p.support.leadingWhitespace||!bn.test(a))&&!bz[(bp.exec(a)||["",""])[1].toLowerCase()]){a=a.replace(bo,"<$1></$2>");try{for(;d<e;d++)c=this[d]||{},c.nodeType===1&&(p.cleanData(c.getElementsByTagName("*")),c.innerHTML=a);c=0}catch(f){}}c&&this.empty().append(a)},null,a,arguments.length)},replaceWith:function(a){return bh(this[0])?this.length?this.pushStack(p(p.isFunction(a)?a():a),"replaceWith",a):this:p.isFunction(a)?this.each(function(b){var c=p(this),d=c.html();c.replaceWith(a.call(this,b,d))}):(typeof a!="string"&&(a=p(a).detach()),this.each(function(){var b=this.nextSibling,c=this.parentNode;p(this).remove(),b?p(b).before(a):p(c).append(a)}))},detach:function(a){return this.remove(a,!0)},domManip:function(a,c,d){a=[].concat.apply([],a);var e,f,g,h,i=0,j=a[0],k=[],l=this.length;if(!p.support.checkClone&&l>1&&typeof j=="string"&&bw.test(j))return this.each(function(){p(this).domManip(a,c,d)});if(p.isFunction(j))return this.each(function(e){var f=p(this);a[0]=j.call(this,e,c?f.html():b),f.domManip(a,c,d)});if(this[0]){e=p.buildFragment(a,this,k),g=e.fragment,f=g.firstChild,g.childNodes.length===1&&(g=f);if(f){c=c&&p.nodeName(f,"tr");for(h=e.cacheable||l-1;i<l;i++)d.call(c&&p.nodeName(this[i],"table")?bC(this[i],"tbody"):this[i],i===h?g:p.clone(g,!0,!0))}g=f=null,k.length&&p.each(k,function(a,b){b.src?p.ajax?p.ajax({url:b.src,type:"GET",dataType:"script",async:!1,global:!1,"throws":!0}):p.error("no ajax"):p.globalEval((b.text||b.textContent||b.innerHTML||"").replace(by,"")),b.parentNode&&b.parentNode.removeChild(b)})}return this}}),p.buildFragment=function(a,c,d){var f,g,h,i=a[0];return c=c||e,c=!c.nodeType&&c[0]||c,c=c.ownerDocument||c,a.length===1&&typeof i=="string"&&i.length<512&&c===e&&i.charAt(0)==="<"&&!bt.test(i)&&(p.support.checkClone||!bw.test(i))&&(p.support.html5Clone||!bu.test(i))&&(g=!0,f=p.fragments[i],h=f!==b),f||(f=c.createDocumentFragment(),p.clean(a,c,f,d),g&&(p.fragments[i]=h&&f)),{fragment:f,cacheable:g}},p.fragments={},p.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(a,b){p.fn[a]=function(c){var d,e=0,f=[],g=p(c),h=g.length,i=this.length===1&&this[0].parentNode;if((i==null||i&&i.nodeType===11&&i.childNodes.length===1)&&h===1)return g[b](this[0]),this;for(;e<h;e++)d=(e>0?this.clone(!0):this).get(),p(g[e])[b](d),f=f.concat(d);return this.pushStack(f,a,g.selector)}}),p.extend({clone:function(a,b,c){var d,e,f,g;p.support.html5Clone||p.isXMLDoc(a)||!bu.test("<"+a.nodeName+">")?g=a.cloneNode(!0):(bB.innerHTML=a.outerHTML,bB.removeChild(g=bB.firstChild));if((!p.support.noCloneEvent||!p.support.noCloneChecked)&&(a.nodeType===1||a.nodeType===11)&&!p.isXMLDoc(a)){bE(a,g),d=bF(a),e=bF(g);for(f=0;d[f];++f)e[f]&&bE(d[f],e[f])}if(b){bD(a,g);if(c){d=bF(a),e=bF(g);for(f=0;d[f];++f)bD(d[f],e[f])}}return d=e=null,g},clean:function(a,b,c,d){var f,g,h,i,j,k,l,m,n,o,q,r,s=b===e&&bA,t=[];if(!b||typeof b.createDocumentFragment=="undefined")b=e;for(f=0;(h=a[f])!=null;f++){typeof h=="number"&&(h+="");if(!h)continue;if(typeof h=="string")if(!br.test(h))h=b.createTextNode(h);else{s=s||bk(b),l=b.createElement("div"),s.appendChild(l),h=h.replace(bo,"<$1></$2>"),i=(bp.exec(h)||["",""])[1].toLowerCase(),j=bz[i]||bz._default,k=j[0],l.innerHTML=j[1]+h+j[2];while(k--)l=l.lastChild;if(!p.support.tbody){m=bq.test(h),n=i==="table"&&!m?l.firstChild&&l.firstChild.childNodes:j[1]==="<table>"&&!m?l.childNodes:[];for(g=n.length-1;g>=0;--g)p.nodeName(n[g],"tbody")&&!n[g].childNodes.length&&n[g].parentNode.removeChild(n[g])}!p.support.leadingWhitespace&&bn.test(h)&&l.insertBefore(b.createTextNode(bn.exec(h)[0]),l.firstChild),h=l.childNodes,l.parentNode.removeChild(l)}h.nodeType?t.push(h):p.merge(t,h)}l&&(h=l=s=null);if(!p.support.appendChecked)for(f=0;(h=t[f])!=null;f++)p.nodeName(h,"input")?bG(h):typeof h.getElementsByTagName!="undefined"&&p.grep(h.getElementsByTagName("input"),bG);if(c){q=function(a){if(!a.type||bx.test(a.type))return d?d.push(a.parentNode?a.parentNode.removeChild(a):a):c.appendChild(a)};for(f=0;(h=t[f])!=null;f++)if(!p.nodeName(h,"script")||!q(h))c.appendChild(h),typeof h.getElementsByTagName!="undefined"&&(r=p.grep(p.merge([],h.getElementsByTagName("script")),q),t.splice.apply(t,[f+1,0].concat(r)),f+=r.length)}return t},cleanData:function(a,b){var c,d,e,f,g=0,h=p.expando,i=p.cache,j=p.support.deleteExpando,k=p.event.special;for(;(e=a[g])!=null;g++)if(b||p.acceptData(e)){d=e[h],c=d&&i[d];if(c){if(c.events)for(f in c.events)k[f]?p.event.remove(e,f):p.removeEvent(e,f,c.handle);i[d]&&(delete i[d],j?delete e[h]:e.removeAttribute?e.removeAttribute(h):e[h]=null,p.deletedIds.push(d))}}}}),function(){var a,b;p.uaMatch=function(a){a=a.toLowerCase();var b=/(chrome)[ \/]([\w.]+)/.exec(a)||/(webkit)[ \/]([\w.]+)/.exec(a)||/(opera)(?:.*version|)[ \/]([\w.]+)/.exec(a)||/(msie) ([\w.]+)/.exec(a)||a.indexOf("compatible")<0&&/(mozilla)(?:.*? rv:([\w.]+)|)/.exec(a)||[];return{browser:b[1]||"",version:b[2]||"0"}},a=p.uaMatch(g.userAgent),b={},a.browser&&(b[a.browser]=!0,b.version=a.version),b.chrome?b.webkit=!0:b.webkit&&(b.safari=!0),p.browser=b,p.sub=function(){function a(b,c){return new a.fn.init(b,c)}p.extend(!0,a,this),a.superclass=this,a.fn=a.prototype=this(),a.fn.constructor=a,a.sub=this.sub,a.fn.init=function c(c,d){return d&&d instanceof p&&!(d instanceof a)&&(d=a(d)),p.fn.init.call(this,c,d,b)},a.fn.init.prototype=a.fn;var b=a(e);return a}}();var bH,bI,bJ,bK=/alpha\([^)]*\)/i,bL=/opacity=([^)]*)/,bM=/^(top|right|bottom|left)$/,bN=/^(none|table(?!-c[ea]).+)/,bO=/^margin/,bP=new RegExp("^("+q+")(.*)$","i"),bQ=new RegExp("^("+q+")(?!px)[a-z%]+$","i"),bR=new RegExp("^([-+])=("+q+")","i"),bS={},bT={position:"absolute",visibility:"hidden",display:"block"},bU={letterSpacing:0,fontWeight:400},bV=["Top","Right","Bottom","Left"],bW=["Webkit","O","Moz","ms"],bX=p.fn.toggle;p.fn.extend({css:function(a,c){return p.access(this,function(a,c,d){return d!==b?p.style(a,c,d):p.css(a,c)},a,c,arguments.length>1)},show:function(){return b$(this,!0)},hide:function(){return b$(this)},toggle:function(a,b){var c=typeof a=="boolean";return p.isFunction(a)&&p.isFunction(b)?bX.apply(this,arguments):this.each(function(){(c?a:bZ(this))?p(this).show():p(this).hide()})}}),p.extend({cssHooks:{opacity:{get:function(a,b){if(b){var c=bH(a,"opacity");return c===""?"1":c}}}},cssNumber:{fillOpacity:!0,fontWeight:!0,lineHeight:!0,opacity:!0,orphans:!0,widows:!0,zIndex:!0,zoom:!0},cssProps:{"float":p.support.cssFloat?"cssFloat":"styleFloat"},style:function(a,c,d,e){if(!a||a.nodeType===3||a.nodeType===8||!a.style)return;var f,g,h,i=p.camelCase(c),j=a.style;c=p.cssProps[i]||(p.cssProps[i]=bY(j,i)),h=p.cssHooks[c]||p.cssHooks[i];if(d===b)return h&&"get"in h&&(f=h.get(a,!1,e))!==b?f:j[c];g=typeof d,g==="string"&&(f=bR.exec(d))&&(d=(f[1]+1)*f[2]+parseFloat(p.css(a,c)),g="number");if(d==null||g==="number"&&isNaN(d))return;g==="number"&&!p.cssNumber[i]&&(d+="px");if(!h||!("set"in h)||(d=h.set(a,d,e))!==b)try{j[c]=d}catch(k){}},css:function(a,c,d,e){var f,g,h,i=p.camelCase(c);return c=p.cssProps[i]||(p.cssProps[i]=bY(a.style,i)),h=p.cssHooks[c]||p.cssHooks[i],h&&"get"in h&&(f=h.get(a,!0,e)),f===b&&(f=bH(a,c)),f==="normal"&&c in bU&&(f=bU[c]),d||e!==b?(g=parseFloat(f),d||p.isNumeric(g)?g||0:f):f},swap:function(a,b,c){var d,e,f={};for(e in b)f[e]=a.style[e],a.style[e]=b[e];d=c.call(a);for(e in b)a.style[e]=f[e];return d}}),a.getComputedStyle?bH=function(b,c){var d,e,f,g,h=a.getComputedStyle(b,null),i=b.style;return h&&(d=h[c],d===""&&!p.contains(b.ownerDocument,b)&&(d=p.style(b,c)),bQ.test(d)&&bO.test(c)&&(e=i.width,f=i.minWidth,g=i.maxWidth,i.minWidth=i.maxWidth=i.width=d,d=h.width,i.width=e,i.minWidth=f,i.maxWidth=g)),d}:e.documentElement.currentStyle&&(bH=function(a,b){var c,d,e=a.currentStyle&&a.currentStyle[b],f=a.style;return e==null&&f&&f[b]&&(e=f[b]),bQ.test(e)&&!bM.test(b)&&(c=f.left,d=a.runtimeStyle&&a.runtimeStyle.left,d&&(a.runtimeStyle.left=a.currentStyle.left),f.left=b==="fontSize"?"1em":e,e=f.pixelLeft+"px",f.left=c,d&&(a.runtimeStyle.left=d)),e===""?"auto":e}),p.each(["height","width"],function(a,b){p.cssHooks[b]={get:function(a,c,d){if(c)return a.offsetWidth===0&&bN.test(bH(a,"display"))?p.swap(a,bT,function(){return cb(a,b,d)}):cb(a,b,d)},set:function(a,c,d){return b_(a,c,d?ca(a,b,d,p.support.boxSizing&&p.css(a,"boxSizing")==="border-box"):0)}}}),p.support.opacity||(p.cssHooks.opacity={get:function(a,b){return bL.test((b&&a.currentStyle?a.currentStyle.filter:a.style.filter)||"")?.01*parseFloat(RegExp.$1)+"":b?"1":""},set:function(a,b){var c=a.style,d=a.currentStyle,e=p.isNumeric(b)?"alpha(opacity="+b*100+")":"",f=d&&d.filter||c.filter||"";c.zoom=1;if(b>=1&&p.trim(f.replace(bK,""))===""&&c.removeAttribute){c.removeAttribute("filter");if(d&&!d.filter)return}c.filter=bK.test(f)?f.replace(bK,e):f+" "+e}}),p(function(){p.support.reliableMarginRight||(p.cssHooks.marginRight={get:function(a,b){return p.swap(a,{display:"inline-block"},function(){if(b)return bH(a,"marginRight")})}}),!p.support.pixelPosition&&p.fn.position&&p.each(["top","left"],function(a,b){p.cssHooks[b]={get:function(a,c){if(c){var d=bH(a,b);return bQ.test(d)?p(a).position()[b]+"px":d}}}})}),p.expr&&p.expr.filters&&(p.expr.filters.hidden=function(a){return a.offsetWidth===0&&a.offsetHeight===0||!p.support.reliableHiddenOffsets&&(a.style&&a.style.display||bH(a,"display"))==="none"},p.expr.filters.visible=function(a){return!p.expr.filters.hidden(a)}),p.each({margin:"",padding:"",border:"Width"},function(a,b){p.cssHooks[a+b]={expand:function(c){var d,e=typeof c=="string"?c.split(" "):[c],f={};for(d=0;d<4;d++)f[a+bV[d]+b]=e[d]||e[d-2]||e[0];return f}},bO.test(a)||(p.cssHooks[a+b].set=b_)});var cd=/%20/g,ce=/\[\]$/,cf=/\r?\n/g,cg=/^(?:color|date|datetime|datetime-local|email|hidden|month|number|password|range|search|tel|text|time|url|week)$/i,ch=/^(?:select|textarea)/i;p.fn.extend({serialize:function(){return p.param(this.serializeArray())},serializeArray:function(){return this.map(function(){return this.elements?p.makeArray(this.elements):this}).filter(function(){return this.name&&!this.disabled&&(this.checked||ch.test(this.nodeName)||cg.test(this.type))}).map(function(a,b){var c=p(this).val();return c==null?null:p.isArray(c)?p.map(c,function(a,c){return{name:b.name,value:a.replace(cf,"\r\n")}}):{name:b.name,value:c.replace(cf,"\r\n")}}).get()}}),p.param=function(a,c){var d,e=[],f=function(a,b){b=p.isFunction(b)?b():b==null?"":b,e[e.length]=encodeURIComponent(a)+"="+encodeURIComponent(b)};c===b&&(c=p.ajaxSettings&&p.ajaxSettings.traditional);if(p.isArray(a)||a.jquery&&!p.isPlainObject(a))p.each(a,function(){f(this.name,this.value)});else for(d in a)ci(d,a[d],c,f);return e.join("&").replace(cd,"+")};var cj,ck,cl=/#.*$/,cm=/^(.*?):[ \t]*([^\r\n]*)\r?$/mg,cn=/^(?:about|app|app\-storage|.+\-extension|file|res|widget):$/,co=/^(?:GET|HEAD)$/,cp=/^\/\//,cq=/\?/,cr=/<script\b[^<]*(?:(?!<\/script>)<[^<]*)*<\/script>/gi,cs=/([?&])_=[^&]*/,ct=/^([\w\+\.\-]+:)(?:\/\/([^\/?#:]*)(?::(\d+)|)|)/,cu=p.fn.load,cv={},cw={},cx=["*/"]+["*"];try{ck=f.href}catch(cy){ck=e.createElement("a"),ck.href="",ck=ck.href}cj=ct.exec(ck.toLowerCase())||[],p.fn.load=function(a,c,d){if(typeof a!="string"&&cu)return cu.apply(this,arguments);if(!this.length)return this;var e,f,g,h=this,i=a.indexOf(" ");return i>=0&&(e=a.slice(i,a.length),a=a.slice(0,i)),p.isFunction(c)?(d=c,c=b):c&&typeof c=="object"&&(f="POST"),p.ajax({url:a,type:f,dataType:"html",data:c,complete:function(a,b){d&&h.each(d,g||[a.responseText,b,a])}}).done(function(a){g=arguments,h.html(e?p("<div>").append(a.replace(cr,"")).find(e):a)}),this},p.each("ajaxStart ajaxStop ajaxComplete ajaxError ajaxSuccess ajaxSend".split(" "),function(a,b){p.fn[b]=function(a){return this.on(b,a)}}),p.each(["get","post"],function(a,c){p[c]=function(a,d,e,f){return p.isFunction(d)&&(f=f||e,e=d,d=b),p.ajax({type:c,url:a,data:d,success:e,dataType:f})}}),p.extend({getScript:function(a,c){return p.get(a,b,c,"script")},getJSON:function(a,b,c){return p.get(a,b,c,"json")},ajaxSetup:function(a,b){return b?cB(a,p.ajaxSettings):(b=a,a=p.ajaxSettings),cB(a,b),a},ajaxSettings:{url:ck,isLocal:cn.test(cj[1]),global:!0,type:"GET",contentType:"application/x-www-form-urlencoded; charset=UTF-8",processData:!0,async:!0,accepts:{xml:"application/xml, text/xml",html:"text/html",text:"text/plain",json:"application/json, text/javascript","*":cx},contents:{xml:/xml/,html:/html/,json:/json/},responseFields:{xml:"responseXML",text:"responseText"},converters:{"* text":a.String,"text html":!0,"text json":p.parseJSON,"text xml":p.parseXML},flatOptions:{context:!0,url:!0}},ajaxPrefilter:cz(cv),ajaxTransport:cz(cw),ajax:function(a,c){function y(a,c,f,i){var k,s,t,u,w,y=c;if(v===2)return;v=2,h&&clearTimeout(h),g=b,e=i||"",x.readyState=a>0?4:0,f&&(u=cC(l,x,f));if(a>=200&&a<300||a===304)l.ifModified&&(w=x.getResponseHeader("Last-Modified"),w&&(p.lastModified[d]=w),w=x.getResponseHeader("Etag"),w&&(p.etag[d]=w)),a===304?(y="notmodified",k=!0):(k=cD(l,u),y=k.state,s=k.data,t=k.error,k=!t);else{t=y;if(!y||a)y="error",a<0&&(a=0)}x.status=a,x.statusText=(c||y)+"",k?o.resolveWith(m,[s,y,x]):o.rejectWith(m,[x,y,t]),x.statusCode(r),r=b,j&&n.trigger("ajax"+(k?"Success":"Error"),[x,l,k?s:t]),q.fireWith(m,[x,y]),j&&(n.trigger("ajaxComplete",[x,l]),--p.active||p.event.trigger("ajaxStop"))}typeof a=="object"&&(c=a,a=b),c=c||{};var d,e,f,g,h,i,j,k,l=p.ajaxSetup({},c),m=l.context||l,n=m!==l&&(m.nodeType||m instanceof p)?p(m):p.event,o=p.Deferred(),q=p.Callbacks("once memory"),r=l.statusCode||{},t={},u={},v=0,w="canceled",x={readyState:0,setRequestHeader:function(a,b){if(!v){var c=a.toLowerCase();a=u[c]=u[c]||a,t[a]=b}return this},getAllResponseHeaders:function(){return v===2?e:null},getResponseHeader:function(a){var c;if(v===2){if(!f){f={};while(c=cm.exec(e))f[c[1].toLowerCase()]=c[2]}c=f[a.toLowerCase()]}return c===b?null:c},overrideMimeType:function(a){return v||(l.mimeType=a),this},abort:function(a){return a=a||w,g&&g.abort(a),y(0,a),this}};o.promise(x),x.success=x.done,x.error=x.fail,x.complete=q.add,x.statusCode=function(a){if(a){var b;if(v<2)for(b in a)r[b]=[r[b],a[b]];else b=a[x.status],x.always(b)}return this},l.url=((a||l.url)+"").replace(cl,"").replace(cp,cj[1]+"//"),l.dataTypes=p.trim(l.dataType||"*").toLowerCase().split(s),l.crossDomain==null&&(i=ct.exec(l.url.toLowerCase())||!1,l.crossDomain=i&&i.join(":")+(i[3]?"":i[1]==="http:"?80:443)!==cj.join(":")+(cj[3]?"":cj[1]==="http:"?80:443)),l.data&&l.processData&&typeof l.data!="string"&&(l.data=p.param(l.data,l.traditional)),cA(cv,l,c,x);if(v===2)return x;j=l.global,l.type=l.type.toUpperCase(),l.hasContent=!co.test(l.type),j&&p.active++===0&&p.event.trigger("ajaxStart");if(!l.hasContent){l.data&&(l.url+=(cq.test(l.url)?"&":"?")+l.data,delete l.data),d=l.url;if(l.cache===!1){var z=p.now(),A=l.url.replace(cs,"$1_="+z);l.url=A+(A===l.url?(cq.test(l.url)?"&":"?")+"_="+z:"")}}(l.data&&l.hasContent&&l.contentType!==!1||c.contentType)&&x.setRequestHeader("Content-Type",l.contentType),l.ifModified&&(d=d||l.url,p.lastModified[d]&&x.setRequestHeader("If-Modified-Since",p.lastModified[d]),p.etag[d]&&x.setRequestHeader("If-None-Match",p.etag[d])),x.setRequestHeader("Accept",l.dataTypes[0]&&l.accepts[l.dataTypes[0]]?l.accepts[l.dataTypes[0]]+(l.dataTypes[0]!=="*"?", "+cx+"; q=0.01":""):l.accepts["*"]);for(k in l.headers)x.setRequestHeader(k,l.headers[k]);if(!l.beforeSend||l.beforeSend.call(m,x,l)!==!1&&v!==2){w="abort";for(k in{success:1,error:1,complete:1})x[k](l[k]);g=cA(cw,l,c,x);if(!g)y(-1,"No Transport");else{x.readyState=1,j&&n.trigger("ajaxSend",[x,l]),l.async&&l.timeout>0&&(h=setTimeout(function(){x.abort("timeout")},l.timeout));try{v=1,g.send(t,y)}catch(B){if(v<2)y(-1,B);else throw B}}return x}return x.abort()},active:0,lastModified:{},etag:{}});var cE=[],cF=/\?/,cG=/(=)\?(?=&|$)|\?\?/,cH=p.now();p.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var a=cE.pop()||p.expando+"_"+cH++;return this[a]=!0,a}}),p.ajaxPrefilter("json jsonp",function(c,d,e){var f,g,h,i=c.data,j=c.url,k=c.jsonp!==!1,l=k&&cG.test(j),m=k&&!l&&typeof i=="string"&&!(c.contentType||"").indexOf("application/x-www-form-urlencoded")&&cG.test(i);if(c.dataTypes[0]==="jsonp"||l||m)return f=c.jsonpCallback=p.isFunction(c.jsonpCallback)?c.jsonpCallback():c.jsonpCallback,g=a[f],l?c.url=j.replace(cG,"$1"+f):m?c.data=i.replace(cG,"$1"+f):k&&(c.url+=(cF.test(j)?"&":"?")+c.jsonp+"="+f),c.converters["script json"]=function(){return h||p.error(f+" was not called"),h[0]},c.dataTypes[0]="json",a[f]=function(){h=arguments},e.always(function(){a[f]=g,c[f]&&(c.jsonpCallback=d.jsonpCallback,cE.push(f)),h&&p.isFunction(g)&&g(h[0]),h=g=b}),"script"}),p.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/javascript|ecmascript/},converters:{"text script":function(a){return p.globalEval(a),a}}}),p.ajaxPrefilter("script",function(a){a.cache===b&&(a.cache=!1),a.crossDomain&&(a.type="GET",a.global=!1)}),p.ajaxTransport("script",function(a){if(a.crossDomain){var c,d=e.head||e.getElementsByTagName("head")[0]||e.documentElement;return{send:function(f,g){c=e.createElement("script"),c.async="async",a.scriptCharset&&(c.charset=a.scriptCharset),c.src=a.url,c.onload=c.onreadystatechange=function(a,e){if(e||!c.readyState||/loaded|complete/.test(c.readyState))c.onload=c.onreadystatechange=null,d&&c.parentNode&&d.removeChild(c),c=b,e||g(200,"success")},d.insertBefore(c,d.firstChild)},abort:function(){c&&c.onload(0,1)}}}});var cI,cJ=a.ActiveXObject?function(){for(var a in cI)cI[a](0,1)}:!1,cK=0;p.ajaxSettings.xhr=a.ActiveXObject?function(){return!this.isLocal&&cL()||cM()}:cL,function(a){p.extend(p.support,{ajax:!!a,cors:!!a&&"withCredentials"in a})}(p.ajaxSettings.xhr()),p.support.ajax&&p.ajaxTransport(function(c){if(!c.crossDomain||p.support.cors){var d;return{send:function(e,f){var g,h,i=c.xhr();c.username?i.open(c.type,c.url,c.async,c.username,c.password):i.open(c.type,c.url,c.async);if(c.xhrFields)for(h in c.xhrFields)i[h]=c.xhrFields[h];c.mimeType&&i.overrideMimeType&&i.overrideMimeType(c.mimeType),!c.crossDomain&&!e["X-Requested-With"]&&(e["X-Requested-With"]="XMLHttpRequest");try{for(h in e)i.setRequestHeader(h,e[h])}catch(j){}i.send(c.hasContent&&c.data||null),d=function(a,e){var h,j,k,l,m;try{if(d&&(e||i.readyState===4)){d=b,g&&(i.onreadystatechange=p.noop,cJ&&delete cI[g]);if(e)i.readyState!==4&&i.abort();else{h=i.status,k=i.getAllResponseHeaders(),l={},m=i.responseXML,m&&m.documentElement&&(l.xml=m);try{l.text=i.responseText}catch(a){}try{j=i.statusText}catch(n){j=""}!h&&c.isLocal&&!c.crossDomain?h=l.text?200:404:h===1223&&(h=204)}}}catch(o){e||f(-1,o)}l&&f(h,j,l,k)},c.async?i.readyState===4?setTimeout(d,0):(g=++cK,cJ&&(cI||(cI={},p(a).unload(cJ)),cI[g]=d),i.onreadystatechange=d):d()},abort:function(){d&&d(0,1)}}}});var cN,cO,cP=/^(?:toggle|show|hide)$/,cQ=new RegExp("^(?:([-+])=|)("+q+")([a-z%]*)$","i"),cR=/queueHooks$/,cS=[cY],cT={"*":[function(a,b){var c,d,e=this.createTween(a,b),f=cQ.exec(b),g=e.cur(),h=+g||0,i=1,j=20;if(f){c=+f[2],d=f[3]||(p.cssNumber[a]?"":"px");if(d!=="px"&&h){h=p.css(e.elem,a,!0)||c||1;do i=i||".5",h=h/i,p.style(e.elem,a,h+d);while(i!==(i=e.cur()/g)&&i!==1&&--j)}e.unit=d,e.start=h,e.end=f[1]?h+(f[1]+1)*c:c}return e}]};p.Animation=p.extend(cW,{tweener:function(a,b){p.isFunction(a)?(b=a,a=["*"]):a=a.split(" ");var c,d=0,e=a.length;for(;d<e;d++)c=a[d],cT[c]=cT[c]||[],cT[c].unshift(b)},prefilter:function(a,b){b?cS.unshift(a):cS.push(a)}}),p.Tween=cZ,cZ.prototype={constructor:cZ,init:function(a,b,c,d,e,f){this.elem=a,this.prop=c,this.easing=e||"swing",this.options=b,this.start=this.now=this.cur(),this.end=d,this.unit=f||(p.cssNumber[c]?"":"px")},cur:function(){var a=cZ.propHooks[this.prop];return a&&a.get?a.get(this):cZ.propHooks._default.get(this)},run:function(a){var b,c=cZ.propHooks[this.prop];return this.options.duration?this.pos=b=p.easing[this.easing](a,this.options.duration*a,0,1,this.options.duration):this.pos=b=a,this.now=(this.end-this.start)*b+this.start,this.options.step&&this.options.step.call(this.elem,this.now,this),c&&c.set?c.set(this):cZ.propHooks._default.set(this),this}},cZ.prototype.init.prototype=cZ.prototype,cZ.propHooks={_default:{get:function(a){var b;return a.elem[a.prop]==null||!!a.elem.style&&a.elem.style[a.prop]!=null?(b=p.css(a.elem,a.prop,!1,""),!b||b==="auto"?0:b):a.elem[a.prop]},set:function(a){p.fx.step[a.prop]?p.fx.step[a.prop](a):a.elem.style&&(a.elem.style[p.cssProps[a.prop]]!=null||p.cssHooks[a.prop])?p.style(a.elem,a.prop,a.now+a.unit):a.elem[a.prop]=a.now}}},cZ.propHooks.scrollTop=cZ.propHooks.scrollLeft={set:function(a){a.elem.nodeType&&a.elem.parentNode&&(a.elem[a.prop]=a.now)}},p.each(["toggle","show","hide"],function(a,b){var c=p.fn[b];p.fn[b]=function(d,e,f){return d==null||typeof d=="boolean"||!a&&p.isFunction(d)&&p.isFunction(e)?c.apply(this,arguments):this.animate(c$(b,!0),d,e,f)}}),p.fn.extend({fadeTo:function(a,b,c,d){return this.filter(bZ).css("opacity",0).show().end().animate({opacity:b},a,c,d)},animate:function(a,b,c,d){var e=p.isEmptyObject(a),f=p.speed(b,c,d),g=function(){var b=cW(this,p.extend({},a),f);e&&b.stop(!0)};return e||f.queue===!1?this.each(g):this.queue(f.queue,g)},stop:function(a,c,d){var e=function(a){var b=a.stop;delete a.stop,b(d)};return typeof a!="string"&&(d=c,c=a,a=b),c&&a!==!1&&this.queue(a||"fx",[]),this.each(function(){var b=!0,c=a!=null&&a+"queueHooks",f=p.timers,g=p._data(this);if(c)g[c]&&g[c].stop&&e(g[c]);else for(c in g)g[c]&&g[c].stop&&cR.test(c)&&e(g[c]);for(c=f.length;c--;)f[c].elem===this&&(a==null||f[c].queue===a)&&(f[c].anim.stop(d),b=!1,f.splice(c,1));(b||!d)&&p.dequeue(this,a)})}}),p.each({slideDown:c$("show"),slideUp:c$("hide"),slideToggle:c$("toggle"),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"},fadeToggle:{opacity:"toggle"}},function(a,b){p.fn[a]=function(a,c,d){return this.animate(b,a,c,d)}}),p.speed=function(a,b,c){var d=a&&typeof a=="object"?p.extend({},a):{complete:c||!c&&b||p.isFunction(a)&&a,duration:a,easing:c&&b||b&&!p.isFunction(b)&&b};d.duration=p.fx.off?0:typeof d.duration=="number"?d.duration:d.duration in p.fx.speeds?p.fx.speeds[d.duration]:p.fx.speeds._default;if(d.queue==null||d.queue===!0)d.queue="fx";return d.old=d.complete,d.complete=function(){p.isFunction(d.old)&&d.old.call(this),d.queue&&p.dequeue(this,d.queue)},d},p.easing={linear:function(a){return a},swing:function(a){return.5-Math.cos(a*Math.PI)/2}},p.timers=[],p.fx=cZ.prototype.init,p.fx.tick=function(){var a,b=p.timers,c=0;for(;c<b.length;c++)a=b[c],!a()&&b[c]===a&&b.splice(c--,1);b.length||p.fx.stop()},p.fx.timer=function(a){a()&&p.timers.push(a)&&!cO&&(cO=setInterval(p.fx.tick,p.fx.interval))},p.fx.interval=13,p.fx.stop=function(){clearInterval(cO),cO=null},p.fx.speeds={slow:600,fast:200,_default:400},p.fx.step={},p.expr&&p.expr.filters&&(p.expr.filters.animated=function(a){return p.grep(p.timers,function(b){return a===b.elem}).length});var c_=/^(?:body|html)$/i;p.fn.offset=function(a){if(arguments.length)return a===b?this:this.each(function(b){p.offset.setOffset(this,a,b)});var c,d,e,f,g,h,i,j={top:0,left:0},k=this[0],l=k&&k.ownerDocument;if(!l)return;return(d=l.body)===k?p.offset.bodyOffset(k):(c=l.documentElement,p.contains(c,k)?(typeof k.getBoundingClientRect!="undefined"&&(j=k.getBoundingClientRect()),e=da(l),f=c.clientTop||d.clientTop||0,g=c.clientLeft||d.clientLeft||0,h=e.pageYOffset||c.scrollTop,i=e.pageXOffset||c.scrollLeft,{top:j.top+h-f,left:j.left+i-g}):j)},p.offset={bodyOffset:function(a){var b=a.offsetTop,c=a.offsetLeft;return p.support.doesNotIncludeMarginInBodyOffset&&(b+=parseFloat(p.css(a,"marginTop"))||0,c+=parseFloat(p.css(a,"marginLeft"))||0),{top:b,left:c}},setOffset:function(a,b,c){var d=p.css(a,"position");d==="static"&&(a.style.position="relative");var e=p(a),f=e.offset(),g=p.css(a,"top"),h=p.css(a,"left"),i=(d==="absolute"||d==="fixed")&&p.inArray("auto",[g,h])>-1,j={},k={},l,m;i?(k=e.position(),l=k.top,m=k.left):(l=parseFloat(g)||0,m=parseFloat(h)||0),p.isFunction(b)&&(b=b.call(a,c,f)),b.top!=null&&(j.top=b.top-f.top+l),b.left!=null&&(j.left=b.left-f.left+m),"using"in b?b.using.call(a,j):e.css(j)}},p.fn.extend({position:function(){if(!this[0])return;var a=this[0],b=this.offsetParent(),c=this.offset(),d=c_.test(b[0].nodeName)?{top:0,left:0}:b.offset();return c.top-=parseFloat(p.css(a,"marginTop"))||0,c.left-=parseFloat(p.css(a,"marginLeft"))||0,d.top+=parseFloat(p.css(b[0],"borderTopWidth"))||0,d.left+=parseFloat(p.css(b[0],"borderLeftWidth"))||0,{top:c.top-d.top,left:c.left-d.left}},offsetParent:function(){return this.map(function(){var a=this.offsetParent||e.body;while(a&&!c_.test(a.nodeName)&&p.css(a,"position")==="static")a=a.offsetParent;return a||e.body})}}),p.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(a,c){var d=/Y/.test(c);p.fn[a]=function(e){return p.access(this,function(a,e,f){var g=da(a);if(f===b)return g?c in g?g[c]:g.document.documentElement[e]:a[e];g?g.scrollTo(d?p(g).scrollLeft():f,d?f:p(g).scrollTop()):a[e]=f},a,e,arguments.length,null)}}),p.each({Height:"height",Width:"width"},function(a,c){p.each({padding:"inner"+a,content:c,"":"outer"+a},function(d,e){p.fn[e]=function(e,f){var g=arguments.length&&(d||typeof e!="boolean"),h=d||(e===!0||f===!0?"margin":"border");return p.access(this,function(c,d,e){var f;return p.isWindow(c)?c.document.documentElement["client"+a]:c.nodeType===9?(f=c.documentElement,Math.max(c.body["scroll"+a],f["scroll"+a],c.body["offset"+a],f["offset"+a],f["client"+a])):e===b?p.css(c,d,e,h):p.style(c,d,e,h)},c,g?e:b,g,null)}})}),a.jQuery=a.$=p,typeof define=="function"&&define.amd&&define.amd.jQuery&&define("jquery",[],function(){return p})})(window); |
| Instances | 1 |
| Solution |
Please upgrade to the latest version of jquery.
|
| Reference |
https://nvd.nist.gov/vuln/detail/CVE-2012-6708
https://github.com/jquery/jquery/issues/2432 http://research.insecurelabs.org/jquery/test/ http://blog.jquery.com/2016/01/08/jquery-2-2-and-1-12-released/ http://bugs.jquery.com/ticket/11290 https://blog.jquery.com/2019/04/10/jquery-3-4-0-released/ https://nvd.nist.gov/vuln/detail/CVE-2019-11358 https://nvd.nist.gov/vuln/detail/CVE-2015-9251 https://github.com/jquery/jquery/commit/753d591aea698e57d6db58c9f722cd0808619b1b https://bugs.jquery.com/ticket/11974 https://blog.jquery.com/2020/04/10/jquery-3-5-0-released/ |
| Tags |
OWASP_2017_A09
OWASP_2021_A06 |
| CWE Id | 829 |
| WASC Id | |
| Plugin Id | 10003 |
|
Medium |
Web Cache Deception |
|---|---|
| Description |
Web cache deception may be possible. It may be possible for unauthorised user to view sensitive data on this page.
|
| URL | http://zero.webappsecurity.com/resources |
| Method | GET |
| Parameter | |
| Attack | /test.css,/test.jpg,/test.js,/test.html,/test.gif,/test.png,/test.svg,/test.php,/test.txt,/test.pdf,/test.asp, |
| Evidence | |
| Request Header - size: 283 bytes. |
GET http://zero.webappsecurity.com/resources HTTP/1.1
Host: zero.webappsecurity.com User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0 Pragma: no-cache Cache-Control: no-cache Referer: http://zero.webappsecurity.com Content-Length: 0 |
| Request Body - size: 0 bytes. |
|
| Response Header - size: 267 bytes. |
HTTP/1.1 404 Not Found
Date: Mon, 14 Mar 2022 07:22:52 GMT Server: Apache-Coyote/1.1 Access-Control-Allow-Origin: * Cache-Control: no-cache, max-age=0, must-revalidate, no-store Content-Type: text/html;charset=utf-8 Content-Language: en Content-Length: 949 |
| Response Body - size: 949 bytes. |
<html><head><title>Apache Tomcat/7.0.70 - Error report</title><style><!--H1 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:22px;} H2 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:16px;} H3 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:14px;} BODY {font-family:Tahoma,Arial,sans-serif;color:black;background-color:white;} B {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;} P {font-family:Tahoma,Arial,sans-serif;background:white;color:black;font-size:12px;}A {color : black;}A.name {color : black;}HR {color : #525D76;}--></style> </head><body><h1>HTTP Status 404 - </h1><HR size="1" noshade="noshade"><p><b>type</b> Status report</p><p><b>message</b> <u></u></p><p><b>description</b> <u>The requested resource is not available.</u></p><HR size="1" noshade="noshade"><h3>Apache Tomcat/7.0.70</h3></body></html>
|
| URL | http://zero.webappsecurity.com/resources/css |
| Method | GET |
| Parameter | |
| Attack | /test.css,/test.jpg,/test.js,/test.html,/test.gif,/test.png,/test.svg,/test.php,/test.txt,/test.pdf,/test.asp, |
| Evidence | |
| Request Header - size: 287 bytes. |
GET http://zero.webappsecurity.com/resources/css HTTP/1.1
Host: zero.webappsecurity.com User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0 Pragma: no-cache Cache-Control: no-cache Referer: http://zero.webappsecurity.com Content-Length: 0 |
| Request Body - size: 0 bytes. |
|
| Response Header - size: 267 bytes. |
HTTP/1.1 404 Not Found
Date: Mon, 14 Mar 2022 07:22:54 GMT Server: Apache-Coyote/1.1 Access-Control-Allow-Origin: * Cache-Control: no-cache, max-age=0, must-revalidate, no-store Content-Type: text/html;charset=utf-8 Content-Language: en Content-Length: 949 |
| Response Body - size: 949 bytes. |
<html><head><title>Apache Tomcat/7.0.70 - Error report</title><style><!--H1 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:22px;} H2 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:16px;} H3 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:14px;} BODY {font-family:Tahoma,Arial,sans-serif;color:black;background-color:white;} B {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;} P {font-family:Tahoma,Arial,sans-serif;background:white;color:black;font-size:12px;}A {color : black;}A.name {color : black;}HR {color : #525D76;}--></style> </head><body><h1>HTTP Status 404 - </h1><HR size="1" noshade="noshade"><p><b>type</b> Status report</p><p><b>message</b> <u></u></p><p><b>description</b> <u>The requested resource is not available.</u></p><HR size="1" noshade="noshade"><h3>Apache Tomcat/7.0.70</h3></body></html>
|
| URL | http://zero.webappsecurity.com/resources/img |
| Method | GET |
| Parameter | |
| Attack | /test.css,/test.jpg,/test.js,/test.html,/test.gif,/test.png,/test.svg,/test.php,/test.txt,/test.pdf,/test.asp, |
| Evidence | |
| Request Header - size: 287 bytes. |
GET http://zero.webappsecurity.com/resources/img HTTP/1.1
Host: zero.webappsecurity.com User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0 Pragma: no-cache Cache-Control: no-cache Referer: http://zero.webappsecurity.com Content-Length: 0 |
| Request Body - size: 0 bytes. |
|
| Response Header - size: 267 bytes. |
HTTP/1.1 404 Not Found
Date: Mon, 14 Mar 2022 07:23:05 GMT Server: Apache-Coyote/1.1 Access-Control-Allow-Origin: * Cache-Control: no-cache, max-age=0, must-revalidate, no-store Content-Type: text/html;charset=utf-8 Content-Language: en Content-Length: 949 |
| Response Body - size: 949 bytes. |
<html><head><title>Apache Tomcat/7.0.70 - Error report</title><style><!--H1 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:22px;} H2 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:16px;} H3 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:14px;} BODY {font-family:Tahoma,Arial,sans-serif;color:black;background-color:white;} B {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;} P {font-family:Tahoma,Arial,sans-serif;background:white;color:black;font-size:12px;}A {color : black;}A.name {color : black;}HR {color : #525D76;}--></style> </head><body><h1>HTTP Status 404 - </h1><HR size="1" noshade="noshade"><p><b>type</b> Status report</p><p><b>message</b> <u></u></p><p><b>description</b> <u>The requested resource is not available.</u></p><HR size="1" noshade="noshade"><h3>Apache Tomcat/7.0.70</h3></body></html>
|
| URL | http://zero.webappsecurity.com/resources/js |
| Method | GET |
| Parameter | |
| Attack | /test.css,/test.jpg,/test.js,/test.html,/test.gif,/test.png,/test.svg,/test.php,/test.txt,/test.pdf,/test.asp, |
| Evidence | |
| Request Header - size: 286 bytes. |
GET http://zero.webappsecurity.com/resources/js HTTP/1.1
Host: zero.webappsecurity.com User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0 Pragma: no-cache Cache-Control: no-cache Referer: http://zero.webappsecurity.com Content-Length: 0 |
| Request Body - size: 0 bytes. |
|
| Response Header - size: 267 bytes. |
HTTP/1.1 404 Not Found
Date: Mon, 14 Mar 2022 07:23:12 GMT Server: Apache-Coyote/1.1 Access-Control-Allow-Origin: * Cache-Control: no-cache, max-age=0, must-revalidate, no-store Content-Type: text/html;charset=utf-8 Content-Language: en Content-Length: 949 |
| Response Body - size: 949 bytes. |
<html><head><title>Apache Tomcat/7.0.70 - Error report</title><style><!--H1 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:22px;} H2 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:16px;} H3 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:14px;} BODY {font-family:Tahoma,Arial,sans-serif;color:black;background-color:white;} B {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;} P {font-family:Tahoma,Arial,sans-serif;background:white;color:black;font-size:12px;}A {color : black;}A.name {color : black;}HR {color : #525D76;}--></style> </head><body><h1>HTTP Status 404 - </h1><HR size="1" noshade="noshade"><p><b>type</b> Status report</p><p><b>message</b> <u></u></p><p><b>description</b> <u>The requested resource is not available.</u></p><HR size="1" noshade="noshade"><h3>Apache Tomcat/7.0.70</h3></body></html>
|
| Instances | 4 |
| Solution |
It is strongly advised to refrain from classifying file types, such as images or stylesheets solely by their URL and file extension. Instead you should make sure that files are cached based on their Content-Type header.
|
| Reference |
https://blogs.akamai.com/2017/03/on-web-cache-deception-attacks.html
https://www.netsparker.com/web-vulnerability-scanner/vulnerabilities/web-cache-deception/ |
| Tags |
OWASP_2021_A05
WSTG-v42-ATHN-06 OWASP_2017_A06 |
| CWE Id | |
| WASC Id | |
| Plugin Id | 40039 |
|
Low |
Dangerous JS Functions |
|---|---|
| Description |
A dangerous JS function seems to be in use that would leave the site vulnerable.
|
| URL | http://zero.webappsecurity.com/resources/js/jquery-1.8.2.min.js |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | eval |
| Request Header - size: 287 bytes. |
GET http://zero.webappsecurity.com/resources/js/jquery-1.8.2.min.js HTTP/1.1
Host: zero.webappsecurity.com User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0 Pragma: no-cache Cache-Control: no-cache Referer: http://zero.webappsecurity.com |
| Request Body - size: 0 bytes. |
|
| Response Header - size: 361 bytes. |
HTTP/1.1 200 OK
Date: Mon, 14 Mar 2022 07:13:42 GMT Server: Apache-Coyote/1.1 Access-Control-Allow-Origin: * Accept-Ranges: bytes ETag: W/"93436-1358437290000" Last-Modified: Thu, 17 Jan 2013 15:41:30 GMT Cache-Control: max-age=2678400 Expires: Thu, 14 Apr 2022 07:13:43 GMT Content-Type: application/javascript;charset=UTF-8 Content-Length: 93436 |
| Response Body - size: 93,436 bytes. |
/*! jQuery v1.8.2 jquery.com | jquery.org/license */
(function(a,b){function G(a){var b=F[a]={};return p.each(a.split(s),function(a,c){b[c]=!0}),b}function J(a,c,d){if(d===b&&a.nodeType===1){var e="data-"+c.replace(I,"-$1").toLowerCase();d=a.getAttribute(e);if(typeof d=="string"){try{d=d==="true"?!0:d==="false"?!1:d==="null"?null:+d+""===d?+d:H.test(d)?p.parseJSON(d):d}catch(f){}p.data(a,c,d)}else d=b}return d}function K(a){var b;for(b in a){if(b==="data"&&p.isEmptyObject(a[b]))continue;if(b!=="toJSON")return!1}return!0}function ba(){return!1}function bb(){return!0}function bh(a){return!a||!a.parentNode||a.parentNode.nodeType===11}function bi(a,b){do a=a[b];while(a&&a.nodeType!==1);return a}function bj(a,b,c){b=b||0;if(p.isFunction(b))return p.grep(a,function(a,d){var e=!!b.call(a,d,a);return e===c});if(b.nodeType)return p.grep(a,function(a,d){return a===b===c});if(typeof b=="string"){var d=p.grep(a,function(a){return a.nodeType===1});if(be.test(b))return p.filter(b,d,!c);b=p.filter(b,d)}return p.grep(a,function(a,d){return p.inArray(a,b)>=0===c})}function bk(a){var b=bl.split("|"),c=a.createDocumentFragment();if(c.createElement)while(b.length)c.createElement(b.pop());return c}function bC(a,b){return a.getElementsByTagName(b)[0]||a.appendChild(a.ownerDocument.createElement(b))}function bD(a,b){if(b.nodeType!==1||!p.hasData(a))return;var c,d,e,f=p._data(a),g=p._data(b,f),h=f.events;if(h){delete g.handle,g.events={};for(c in h)for(d=0,e=h[c].length;d<e;d++)p.event.add(b,c,h[c][d])}g.data&&(g.data=p.extend({},g.data))}function bE(a,b){var c;if(b.nodeType!==1)return;b.clearAttributes&&b.clearAttributes(),b.mergeAttributes&&b.mergeAttributes(a),c=b.nodeName.toLowerCase(),c==="object"?(b.parentNode&&(b.outerHTML=a.outerHTML),p.support.html5Clone&&a.innerHTML&&!p.trim(b.innerHTML)&&(b.innerHTML=a.innerHTML)):c==="input"&&bv.test(a.type)?(b.defaultChecked=b.checked=a.checked,b.value!==a.value&&(b.value=a.value)):c==="option"?b.selected=a.defaultSelected:c==="input"||c==="textarea"?b.defaultValue=a.defaultValue:c==="script"&&b.text!==a.text&&(b.text=a.text),b.removeAttribute(p.expando)}function bF(a){return typeof a.getElementsByTagName!="undefined"?a.getElementsByTagName("*"):typeof a.querySelectorAll!="undefined"?a.querySelectorAll("*"):[]}function bG(a){bv.test(a.type)&&(a.defaultChecked=a.checked)}function bY(a,b){if(b in a)return b;var c=b.charAt(0).toUpperCase()+b.slice(1),d=b,e=bW.length;while(e--){b=bW[e]+c;if(b in a)return b}return d}function bZ(a,b){return a=b||a,p.css(a,"display")==="none"||!p.contains(a.ownerDocument,a)}function b$(a,b){var c,d,e=[],f=0,g=a.length;for(;f<g;f++){c=a[f];if(!c.style)continue;e[f]=p._data(c,"olddisplay"),b?(!e[f]&&c.style.display==="none"&&(c.style.display=""),c.style.display===""&&bZ(c)&&(e[f]=p._data(c,"olddisplay",cc(c.nodeName)))):(d=bH(c,"display"),!e[f]&&d!=="none"&&p._data(c,"olddisplay",d))}for(f=0;f<g;f++){c=a[f];if(!c.style)continue;if(!b||c.style.display==="none"||c.style.display==="")c.style.display=b?e[f]||"":"none"}return a}function b_(a,b,c){var d=bP.exec(b);return d?Math.max(0,d[1]-(c||0))+(d[2]||"px"):b}function ca(a,b,c,d){var e=c===(d?"border":"content")?4:b==="width"?1:0,f=0;for(;e<4;e+=2)c==="margin"&&(f+=p.css(a,c+bV[e],!0)),d?(c==="content"&&(f-=parseFloat(bH(a,"padding"+bV[e]))||0),c!=="margin"&&(f-=parseFloat(bH(a,"border"+bV[e]+"Width"))||0)):(f+=parseFloat(bH(a,"padding"+bV[e]))||0,c!=="padding"&&(f+=parseFloat(bH(a,"border"+bV[e]+"Width"))||0));return f}function cb(a,b,c){var d=b==="width"?a.offsetWidth:a.offsetHeight,e=!0,f=p.support.boxSizing&&p.css(a,"boxSizing")==="border-box";if(d<=0||d==null){d=bH(a,b);if(d<0||d==null)d=a.style[b];if(bQ.test(d))return d;e=f&&(p.support.boxSizingReliable||d===a.style[b]),d=parseFloat(d)||0}return d+ca(a,b,c||(f?"border":"content"),e)+"px"}function cc(a){if(bS[a])return bS[a];var b=p("<"+a+">").appendTo(e.body),c=b.css("display");b.remove();if(c==="none"||c===""){bI=e.body.appendChild(bI||p.extend(e.createElement("iframe"),{frameBorder:0,width:0,height:0}));if(!bJ||!bI.createElement)bJ=(bI.contentWindow||bI.contentDocument).document,bJ.write("<!doctype html><html><body>"),bJ.close();b=bJ.body.appendChild(bJ.createElement(a)),c=bH(b,"display"),e.body.removeChild(bI)}return bS[a]=c,c}function ci(a,b,c,d){var e;if(p.isArray(b))p.each(b,function(b,e){c||ce.test(a)?d(a,e):ci(a+"["+(typeof e=="object"?b:"")+"]",e,c,d)});else if(!c&&p.type(b)==="object")for(e in b)ci(a+"["+e+"]",b[e],c,d);else d(a,b)}function cz(a){return function(b,c){typeof b!="string"&&(c=b,b="*");var d,e,f,g=b.toLowerCase().split(s),h=0,i=g.length;if(p.isFunction(c))for(;h<i;h++)d=g[h],f=/^\+/.test(d),f&&(d=d.substr(1)||"*"),e=a[d]=a[d]||[],e[f?"unshift":"push"](c)}}function cA(a,c,d,e,f,g){f=f||c.dataTypes[0],g=g||{},g[f]=!0;var h,i=a[f],j=0,k=i?i.length:0,l=a===cv;for(;j<k&&(l||!h);j++)h=i[j](c,d,e),typeof h=="string"&&(!l||g[h]?h=b:(c.dataTypes.unshift(h),h=cA(a,c,d,e,h,g)));return(l||!h)&&!g["*"]&&(h=cA(a,c,d,e,"*",g)),h}function cB(a,c){var d,e,f=p.ajaxSettings.flatOptions||{};for(d in c)c[d]!==b&&((f[d]?a:e||(e={}))[d]=c[d]);e&&p.extend(!0,a,e)}function cC(a,c,d){var e,f,g,h,i=a.contents,j=a.dataTypes,k=a.responseFields;for(f in k)f in d&&(c[k[f]]=d[f]);while(j[0]==="*")j.shift(),e===b&&(e=a.mimeType||c.getResponseHeader("content-type"));if(e)for(f in i)if(i[f]&&i[f].test(e)){j.unshift(f);break}if(j[0]in d)g=j[0];else{for(f in d){if(!j[0]||a.converters[f+" "+j[0]]){g=f;break}h||(h=f)}g=g||h}if(g)return g!==j[0]&&j.unshift(g),d[g]}function cD(a,b){var c,d,e,f,g=a.dataTypes.slice(),h=g[0],i={},j=0;a.dataFilter&&(b=a.dataFilter(b,a.dataType));if(g[1])for(c in a.converters)i[c.toLowerCase()]=a.converters[c];for(;e=g[++j];)if(e!=="*"){if(h!=="*"&&h!==e){c=i[h+" "+e]||i["* "+e];if(!c)for(d in i){f=d.split(" ");if(f[1]===e){c=i[h+" "+f[0]]||i["* "+f[0]];if(c){c===!0?c=i[d]:i[d]!==!0&&(e=f[0],g.splice(j--,0,e));break}}}if(c!==!0)if(c&&a["throws"])b=c(b);else try{b=c(b)}catch(k){return{state:"parsererror",error:c?k:"No conversion from "+h+" to "+e}}}h=e}return{state:"success",data:b}}function cL(){try{return new a.XMLHttpRequest}catch(b){}}function cM(){try{return new a.ActiveXObject("Microsoft.XMLHTTP")}catch(b){}}function cU(){return setTimeout(function(){cN=b},0),cN=p.now()}function cV(a,b){p.each(b,function(b,c){var d=(cT[b]||[]).concat(cT["*"]),e=0,f=d.length;for(;e<f;e++)if(d[e].call(a,b,c))return})}function cW(a,b,c){var d,e=0,f=0,g=cS.length,h=p.Deferred().always(function(){delete i.elem}),i=function(){var b=cN||cU(),c=Math.max(0,j.startTime+j.duration-b),d=1-(c/j.duration||0),e=0,f=j.tweens.length;for(;e<f;e++)j.tweens[e].run(d);return h.notifyWith(a,[j,d,c]),d<1&&f?c:(h.resolveWith(a,[j]),!1)},j=h.promise({elem:a,props:p.extend({},b),opts:p.extend(!0,{specialEasing:{}},c),originalProperties:b,originalOptions:c,startTime:cN||cU(),duration:c.duration,tweens:[],createTween:function(b,c,d){var e=p.Tween(a,j.opts,b,c,j.opts.specialEasing[b]||j.opts.easing);return j.tweens.push(e),e},stop:function(b){var c=0,d=b?j.tweens.length:0;for(;c<d;c++)j.tweens[c].run(1);return b?h.resolveWith(a,[j,b]):h.rejectWith(a,[j,b]),this}}),k=j.props;cX(k,j.opts.specialEasing);for(;e<g;e++){d=cS[e].call(j,a,k,j.opts);if(d)return d}return cV(j,k),p.isFunction(j.opts.start)&&j.opts.start.call(a,j),p.fx.timer(p.extend(i,{anim:j,queue:j.opts.queue,elem:a})),j.progress(j.opts.progress).done(j.opts.done,j.opts.complete).fail(j.opts.fail).always(j.opts.always)}function cX(a,b){var c,d,e,f,g;for(c in a){d=p.camelCase(c),e=b[d],f=a[c],p.isArray(f)&&(e=f[1],f=a[c]=f[0]),c!==d&&(a[d]=f,delete a[c]),g=p.cssHooks[d];if(g&&"expand"in g){f=g.expand(f),delete a[d];for(c in f)c in a||(a[c]=f[c],b[c]=e)}else b[d]=e}}function cY(a,b,c){var d,e,f,g,h,i,j,k,l=this,m=a.style,n={},o=[],q=a.nodeType&&bZ(a);c.queue||(j=p._queueHooks(a,"fx"),j.unqueued==null&&(j.unqueued=0,k=j.empty.fire,j.empty.fire=function(){j.unqueued||k()}),j.unqueued++,l.always(function(){l.always(function(){j.unqueued--,p.queue(a,"fx").length||j.empty.fire()})})),a.nodeType===1&&("height"in b||"width"in b)&&(c.overflow=[m.overflow,m.overflowX,m.overflowY],p.css(a,"display")==="inline"&&p.css(a,"float")==="none"&&(!p.support.inlineBlockNeedsLayout||cc(a.nodeName)==="inline"?m.display="inline-block":m.zoom=1)),c.overflow&&(m.overflow="hidden",p.support.shrinkWrapBlocks||l.done(function(){m.overflow=c.overflow[0],m.overflowX=c.overflow[1],m.overflowY=c.overflow[2]}));for(d in b){f=b[d];if(cP.exec(f)){delete b[d];if(f===(q?"hide":"show"))continue;o.push(d)}}g=o.length;if(g){h=p._data(a,"fxshow")||p._data(a,"fxshow",{}),q?p(a).show():l.done(function(){p(a).hide()}),l.done(function(){var b;p.removeData(a,"fxshow",!0);for(b in n)p.style(a,b,n[b])});for(d=0;d<g;d++)e=o[d],i=l.createTween(e,q?h[e]:0),n[e]=h[e]||p.style(a,e),e in h||(h[e]=i.start,q&&(i.end=i.start,i.start=e==="width"||e==="height"?1:0))}}function cZ(a,b,c,d,e){return new cZ.prototype.init(a,b,c,d,e)}function c$(a,b){var c,d={height:a},e=0;b=b?1:0;for(;e<4;e+=2-b)c=bV[e],d["margin"+c]=d["padding"+c]=a;return b&&(d.opacity=d.width=a),d}function da(a){return p.isWindow(a)?a:a.nodeType===9?a.defaultView||a.parentWindow:!1}var c,d,e=a.document,f=a.location,g=a.navigator,h=a.jQuery,i=a.$,j=Array.prototype.push,k=Array.prototype.slice,l=Array.prototype.indexOf,m=Object.prototype.toString,n=Object.prototype.hasOwnProperty,o=String.prototype.trim,p=function(a,b){return new p.fn.init(a,b,c)},q=/[\-+]?(?:\d*\.|)\d+(?:[eE][\-+]?\d+|)/.source,r=/\S/,s=/\s+/,t=/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,u=/^(?:[^#<]*(<[\w\W]+>)[^>]*$|#([\w\-]*)$)/,v=/^<(\w+)\s*\/?>(?:<\/\1>|)$/,w=/^[\],:{}\s]*$/,x=/(?:^|:|,)(?:\s*\[)+/g,y=/\\(?:["\\\/bfnrt]|u[\da-fA-F]{4})/g,z=/"[^"\\\r\n]*"|true|false|null|-?(?:\d\d*\.|)\d+(?:[eE][\-+]?\d+|)/g,A=/^-ms-/,B=/-([\da-z])/gi,C=function(a,b){return(b+"").toUpperCase()},D=function(){e.addEventListener?(e.removeEventListener("DOMContentLoaded",D,!1),p.ready()):e.readyState==="complete"&&(e.detachEvent("onreadystatechange",D),p.ready())},E={};p.fn=p.prototype={constructor:p,init:function(a,c,d){var f,g,h,i;if(!a)return this;if(a.nodeType)return this.context=this[0]=a,this.length=1,this;if(typeof a=="string"){a.charAt(0)==="<"&&a.charAt(a.length-1)===">"&&a.length>=3?f=[null,a,null]:f=u.exec(a);if(f&&(f[1]||!c)){if(f[1])return c=c instanceof p?c[0]:c,i=c&&c.nodeType?c.ownerDocument||c:e,a=p.parseHTML(f[1],i,!0),v.test(f[1])&&p.isPlainObject(c)&&this.attr.call(a,c,!0),p.merge(this,a);g=e.getElementById(f[2]);if(g&&g.parentNode){if(g.id!==f[2])return d.find(a);this.length=1,this[0]=g}return this.context=e,this.selector=a,this}return!c||c.jquery?(c||d).find(a):this.constructor(c).find(a)}return p.isFunction(a)?d.ready(a):(a.selector!==b&&(this.selector=a.selector,this.context=a.context),p.makeArray(a,this))},selector:"",jquery:"1.8.2",length:0,size:function(){return this.length},toArray:function(){return k.call(this)},get:function(a){return a==null?this.toArray():a<0?this[this.length+a]:this[a]},pushStack:function(a,b,c){var d=p.merge(this.constructor(),a);return d.prevObject=this,d.context=this.context,b==="find"?d.selector=this.selector+(this.selector?" ":"")+c:b&&(d.selector=this.selector+"."+b+"("+c+")"),d},each:function(a,b){return p.each(this,a,b)},ready:function(a){return p.ready.promise().done(a),this},eq:function(a){return a=+a,a===-1?this.slice(a):this.slice(a,a+1)},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},slice:function(){return this.pushStack(k.apply(this,arguments),"slice",k.call(arguments).join(","))},map:function(a){return this.pushStack(p.map(this,function(b,c){return a.call(b,c,b)}))},end:function(){return this.prevObject||this.constructor(null)},push:j,sort:[].sort,splice:[].splice},p.fn.init.prototype=p.fn,p.extend=p.fn.extend=function(){var a,c,d,e,f,g,h=arguments[0]||{},i=1,j=arguments.length,k=!1;typeof h=="boolean"&&(k=h,h=arguments[1]||{},i=2),typeof h!="object"&&!p.isFunction(h)&&(h={}),j===i&&(h=this,--i);for(;i<j;i++)if((a=arguments[i])!=null)for(c in a){d=h[c],e=a[c];if(h===e)continue;k&&e&&(p.isPlainObject(e)||(f=p.isArray(e)))?(f?(f=!1,g=d&&p.isArray(d)?d:[]):g=d&&p.isPlainObject(d)?d:{},h[c]=p.extend(k,g,e)):e!==b&&(h[c]=e)}return h},p.extend({noConflict:function(b){return a.$===p&&(a.$=i),b&&a.jQuery===p&&(a.jQuery=h),p},isReady:!1,readyWait:1,holdReady:function(a){a?p.readyWait++:p.ready(!0)},ready:function(a){if(a===!0?--p.readyWait:p.isReady)return;if(!e.body)return setTimeout(p.ready,1);p.isReady=!0;if(a!==!0&&--p.readyWait>0)return;d.resolveWith(e,[p]),p.fn.trigger&&p(e).trigger("ready").off("ready")},isFunction:function(a){return p.type(a)==="function"},isArray:Array.isArray||function(a){return p.type(a)==="array"},isWindow:function(a){return a!=null&&a==a.window},isNumeric:function(a){return!isNaN(parseFloat(a))&&isFinite(a)},type:function(a){return a==null?String(a):E[m.call(a)]||"object"},isPlainObject:function(a){if(!a||p.type(a)!=="object"||a.nodeType||p.isWindow(a))return!1;try{if(a.constructor&&!n.call(a,"constructor")&&!n.call(a.constructor.prototype,"isPrototypeOf"))return!1}catch(c){return!1}var d;for(d in a);return d===b||n.call(a,d)},isEmptyObject:function(a){var b;for(b in a)return!1;return!0},error:function(a){throw new Error(a)},parseHTML:function(a,b,c){var d;return!a||typeof a!="string"?null:(typeof b=="boolean"&&(c=b,b=0),b=b||e,(d=v.exec(a))?[b.createElement(d[1])]:(d=p.buildFragment([a],b,c?null:[]),p.merge([],(d.cacheable?p.clone(d.fragment):d.fragment).childNodes)))},parseJSON:function(b){if(!b||typeof b!="string")return null;b=p.trim(b);if(a.JSON&&a.JSON.parse)return a.JSON.parse(b);if(w.test(b.replace(y,"@").replace(z,"]").replace(x,"")))return(new Function("return "+b))();p.error("Invalid JSON: "+b)},parseXML:function(c){var d,e;if(!c||typeof c!="string")return null;try{a.DOMParser?(e=new DOMParser,d=e.parseFromString(c,"text/xml")):(d=new ActiveXObject("Microsoft.XMLDOM"),d.async="false",d.loadXML(c))}catch(f){d=b}return(!d||!d.documentElement||d.getElementsByTagName("parsererror").length)&&p.error("Invalid XML: "+c),d},noop:function(){},globalEval:function(b){b&&r.test(b)&&(a.execScript||function(b){a.eval.call(a,b)})(b)},camelCase:function(a){return a.replace(A,"ms-").replace(B,C)},nodeName:function(a,b){return a.nodeName&&a.nodeName.toLowerCase()===b.toLowerCase()},each:function(a,c,d){var e,f=0,g=a.length,h=g===b||p.isFunction(a);if(d){if(h){for(e in a)if(c.apply(a[e],d)===!1)break}else for(;f<g;)if(c.apply(a[f++],d)===!1)break}else if(h){for(e in a)if(c.call(a[e],e,a[e])===!1)break}else for(;f<g;)if(c.call(a[f],f,a[f++])===!1)break;return a},trim:o&&!o.call(" ")?function(a){return a==null?"":o.call(a)}:function(a){return a==null?"":(a+"").replace(t,"")},makeArray:function(a,b){var c,d=b||[];return a!=null&&(c=p.type(a),a.length==null||c==="string"||c==="function"||c==="regexp"||p.isWindow(a)?j.call(d,a):p.merge(d,a)),d},inArray:function(a,b,c){var d;if(b){if(l)return l.call(b,a,c);d=b.length,c=c?c<0?Math.max(0,d+c):c:0;for(;c<d;c++)if(c in b&&b[c]===a)return c}return-1},merge:function(a,c){var d=c.length,e=a.length,f=0;if(typeof d=="number")for(;f<d;f++)a[e++]=c[f];else while(c[f]!==b)a[e++]=c[f++];return a.length=e,a},grep:function(a,b,c){var d,e=[],f=0,g=a.length;c=!!c;for(;f<g;f++)d=!!b(a[f],f),c!==d&&e.push(a[f]);return e},map:function(a,c,d){var e,f,g=[],h=0,i=a.length,j=a instanceof p||i!==b&&typeof i=="number"&&(i>0&&a[0]&&a[i-1]||i===0||p.isArray(a));if(j)for(;h<i;h++)e=c(a[h],h,d),e!=null&&(g[g.length]=e);else for(f in a)e=c(a[f],f,d),e!=null&&(g[g.length]=e);return g.concat.apply([],g)},guid:1,proxy:function(a,c){var d,e,f;return typeof c=="string"&&(d=a[c],c=a,a=d),p.isFunction(a)?(e=k.call(arguments,2),f=function(){return a.apply(c,e.concat(k.call(arguments)))},f.guid=a.guid=a.guid||p.guid++,f):b},access:function(a,c,d,e,f,g,h){var i,j=d==null,k=0,l=a.length;if(d&&typeof d=="object"){for(k in d)p.access(a,c,k,d[k],1,g,e);f=1}else if(e!==b){i=h===b&&p.isFunction(e),j&&(i?(i=c,c=function(a,b,c){return i.call(p(a),c)}):(c.call(a,e),c=null));if(c)for(;k<l;k++)c(a[k],d,i?e.call(a[k],k,c(a[k],d)):e,h);f=1}return f?a:j?c.call(a):l?c(a[0],d):g},now:function(){return(new Date).getTime()}}),p.ready.promise=function(b){if(!d){d=p.Deferred();if(e.readyState==="complete")setTimeout(p.ready,1);else if(e.addEventListener)e.addEventListener("DOMContentLoaded",D,!1),a.addEventListener("load",p.ready,!1);else{e.attachEvent("onreadystatechange",D),a.attachEvent("onload",p.ready);var c=!1;try{c=a.frameElement==null&&e.documentElement}catch(f){}c&&c.doScroll&&function g(){if(!p.isReady){try{c.doScroll("left")}catch(a){return setTimeout(g,50)}p.ready()}}()}}return d.promise(b)},p.each("Boolean Number String Function Array Date RegExp Object".split(" "),function(a,b){E["[object "+b+"]"]=b.toLowerCase()}),c=p(e);var F={};p.Callbacks=function(a){a=typeof a=="string"?F[a]||G(a):p.extend({},a);var c,d,e,f,g,h,i=[],j=!a.once&&[],k=function(b){c=a.memory&&b,d=!0,h=f||0,f=0,g=i.length,e=!0;for(;i&&h<g;h++)if(i[h].apply(b[0],b[1])===!1&&a.stopOnFalse){c=!1;break}e=!1,i&&(j?j.length&&k(j.shift()):c?i=[]:l.disable())},l={add:function(){if(i){var b=i.length;(function d(b){p.each(b,function(b,c){var e=p.type(c);e==="function"&&(!a.unique||!l.has(c))?i.push(c):c&&c.length&&e!=="string"&&d(c)})})(arguments),e?g=i.length:c&&(f=b,k(c))}return this},remove:function(){return i&&p.each(arguments,function(a,b){var c;while((c=p.inArray(b,i,c))>-1)i.splice(c,1),e&&(c<=g&&g--,c<=h&&h--)}),this},has:function(a){return p.inArray(a,i)>-1},empty:function(){return i=[],this},disable:function(){return i=j=c=b,this},disabled:function(){return!i},lock:function(){return j=b,c||l.disable(),this},locked:function(){return!j},fireWith:function(a,b){return b=b||[],b=[a,b.slice?b.slice():b],i&&(!d||j)&&(e?j.push(b):k(b)),this},fire:function(){return l.fireWith(this,arguments),this},fired:function(){return!!d}};return l},p.extend({Deferred:function(a){var b=[["resolve","done",p.Callbacks("once memory"),"resolved"],["reject","fail",p.Callbacks("once memory"),"rejected"],["notify","progress",p.Callbacks("memory")]],c="pending",d={state:function(){return c},always:function(){return e.done(arguments).fail(arguments),this},then:function(){var a=arguments;return p.Deferred(function(c){p.each(b,function(b,d){var f=d[0],g=a[b];e[d[1]](p.isFunction(g)?function(){var a=g.apply(this,arguments);a&&p.isFunction(a.promise)?a.promise().done(c.resolve).fail(c.reject).progress(c.notify):c[f+"With"](this===e?c:this,[a])}:c[f])}),a=null}).promise()},promise:function(a){return a!=null?p.extend(a,d):d}},e={};return d.pipe=d.then,p.each(b,function(a,f){var g=f[2],h=f[3];d[f[1]]=g.add,h&&g.add(function(){c=h},b[a^1][2].disable,b[2][2].lock),e[f[0]]=g.fire,e[f[0]+"With"]=g.fireWith}),d.promise(e),a&&a.call(e,e),e},when:function(a){var b=0,c=k.call(arguments),d=c.length,e=d!==1||a&&p.isFunction(a.promise)?d:0,f=e===1?a:p.Deferred(),g=function(a,b,c){return function(d){b[a]=this,c[a]=arguments.length>1?k.call(arguments):d,c===h?f.notifyWith(b,c):--e||f.resolveWith(b,c)}},h,i,j;if(d>1){h=new Array(d),i=new Array(d),j=new Array(d);for(;b<d;b++)c[b]&&p.isFunction(c[b].promise)?c[b].promise().done(g(b,j,c)).fail(f.reject).progress(g(b,i,h)):--e}return e||f.resolveWith(j,c),f.promise()}}),p.support=function(){var b,c,d,f,g,h,i,j,k,l,m,n=e.createElement("div");n.setAttribute("className","t"),n.innerHTML=" <link/><table></table><a href='/a'>a</a><input type='checkbox'/>",c=n.getElementsByTagName("*"),d=n.getElementsByTagName("a")[0],d.style.cssText="top:1px;float:left;opacity:.5";if(!c||!c.length)return{};f=e.createElement("select"),g=f.appendChild(e.createElement("option")),h=n.getElementsByTagName("input")[0],b={leadingWhitespace:n.firstChild.nodeType===3,tbody:!n.getElementsByTagName("tbody").length,htmlSerialize:!!n.getElementsByTagName("link").length,style:/top/.test(d.getAttribute("style")),hrefNormalized:d.getAttribute("href")==="/a",opacity:/^0.5/.test(d.style.opacity),cssFloat:!!d.style.cssFloat,checkOn:h.value==="on",optSelected:g.selected,getSetAttribute:n.className!=="t",enctype:!!e.createElement("form").enctype,html5Clone:e.createElement("nav").cloneNode(!0).outerHTML!=="<:nav></:nav>",boxModel:e.compatMode==="CSS1Compat",submitBubbles:!0,changeBubbles:!0,focusinBubbles:!1,deleteExpando:!0,noCloneEvent:!0,inlineBlockNeedsLayout:!1,shrinkWrapBlocks:!1,reliableMarginRight:!0,boxSizingReliable:!0,pixelPosition:!1},h.checked=!0,b.noCloneChecked=h.cloneNode(!0).checked,f.disabled=!0,b.optDisabled=!g.disabled;try{delete n.test}catch(o){b.deleteExpando=!1}!n.addEventListener&&n.attachEvent&&n.fireEvent&&(n.attachEvent("onclick",m=function(){b.noCloneEvent=!1}),n.cloneNode(!0).fireEvent("onclick"),n.detachEvent("onclick",m)),h=e.createElement("input"),h.value="t",h.setAttribute("type","radio"),b.radioValue=h.value==="t",h.setAttribute("checked","checked"),h.setAttribute("name","t"),n.appendChild(h),i=e.createDocumentFragment(),i.appendChild(n.lastChild),b.checkClone=i.cloneNode(!0).cloneNode(!0).lastChild.checked,b.appendChecked=h.checked,i.removeChild(h),i.appendChild(n);if(n.attachEvent)for(k in{submit:!0,change:!0,focusin:!0})j="on"+k,l=j in n,l||(n.setAttribute(j,"return;"),l=typeof n[j]=="function"),b[k+"Bubbles"]=l;return p(function(){var c,d,f,g,h="padding:0;margin:0;border:0;display:block;overflow:hidden;",i=e.getElementsByTagName("body")[0];if(!i)return;c=e.createElement("div"),c.style.cssText="visibility:hidden;border:0;width:0;height:0;position:static;top:0;margin-top:1px",i.insertBefore(c,i.firstChild),d=e.createElement("div"),c.appendChild(d),d.innerHTML="<table><tr><td></td><td>t</td></tr></table>",f=d.getElementsByTagName("td"),f[0].style.cssText="padding:0;margin:0;border:0;display:none",l=f[0].offsetHeight===0,f[0].style.display="",f[1].style.display="none",b.reliableHiddenOffsets=l&&f[0].offsetHeight===0,d.innerHTML="",d.style.cssText="box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;padding:1px;border:1px;display:block;width:4px;margin-top:1%;position:absolute;top:1%;",b.boxSizing=d.offsetWidth===4,b.doesNotIncludeMarginInBodyOffset=i.offsetTop!==1,a.getComputedStyle&&(b.pixelPosition=(a.getComputedStyle(d,null)||{}).top!=="1%",b.boxSizingReliable=(a.getComputedStyle(d,null)||{width:"4px"}).width==="4px",g=e.createElement("div"),g.style.cssText=d.style.cssText=h,g.style.marginRight=g.style.width="0",d.style.width="1px",d.appendChild(g),b.reliableMarginRight=!parseFloat((a.getComputedStyle(g,null)||{}).marginRight)),typeof d.style.zoom!="undefined"&&(d.innerHTML="",d.style.cssText=h+"width:1px;padding:1px;display:inline;zoom:1",b.inlineBlockNeedsLayout=d.offsetWidth===3,d.style.display="block",d.style.overflow="visible",d.innerHTML="<div></div>",d.firstChild.style.width="5px",b.shrinkWrapBlocks=d.offsetWidth!==3,c.style.zoom=1),i.removeChild(c),c=d=f=g=null}),i.removeChild(n),c=d=f=g=h=i=n=null,b}();var H=/(?:\{[\s\S]*\}|\[[\s\S]*\])$/,I=/([A-Z])/g;p.extend({cache:{},deletedIds:[],uuid:0,expando:"jQuery"+(p.fn.jquery+Math.random()).replace(/\D/g,""),noData:{embed:!0,object:"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000",applet:!0},hasData:function(a){return a=a.nodeType?p.cache[a[p.expando]]:a[p.expando],!!a&&!K(a)},data:function(a,c,d,e){if(!p.acceptData(a))return;var f,g,h=p.expando,i=typeof c=="string",j=a.nodeType,k=j?p.cache:a,l=j?a[h]:a[h]&&h;if((!l||!k[l]||!e&&!k[l].data)&&i&&d===b)return;l||(j?a[h]=l=p.deletedIds.pop()||p.guid++:l=h),k[l]||(k[l]={},j||(k[l].toJSON=p.noop));if(typeof c=="object"||typeof c=="function")e?k[l]=p.extend(k[l],c):k[l].data=p.extend(k[l].data,c);return f=k[l],e||(f.data||(f.data={}),f=f.data),d!==b&&(f[p.camelCase(c)]=d),i?(g=f[c],g==null&&(g=f[p.camelCase(c)])):g=f,g},removeData:function(a,b,c){if(!p.acceptData(a))return;var d,e,f,g=a.nodeType,h=g?p.cache:a,i=g?a[p.expando]:p.expando;if(!h[i])return;if(b){d=c?h[i]:h[i].data;if(d){p.isArray(b)||(b in d?b=[b]:(b=p.camelCase(b),b in d?b=[b]:b=b.split(" ")));for(e=0,f=b.length;e<f;e++)delete d[b[e]];if(!(c?K:p.isEmptyObject)(d))return}}if(!c){delete h[i].data;if(!K(h[i]))return}g?p.cleanData([a],!0):p.support.deleteExpando||h!=h.window?delete h[i]:h[i]=null},_data:function(a,b,c){return p.data(a,b,c,!0)},acceptData:function(a){var b=a.nodeName&&p.noData[a.nodeName.toLowerCase()];return!b||b!==!0&&a.getAttribute("classid")===b}}),p.fn.extend({data:function(a,c){var d,e,f,g,h,i=this[0],j=0,k=null;if(a===b){if(this.length){k=p.data(i);if(i.nodeType===1&&!p._data(i,"parsedAttrs")){f=i.attributes;for(h=f.length;j<h;j++)g=f[j].name,g.indexOf("data-")||(g=p.camelCase(g.substring(5)),J(i,g,k[g]));p._data(i,"parsedAttrs",!0)}}return k}return typeof a=="object"?this.each(function(){p.data(this,a)}):(d=a.split(".",2),d[1]=d[1]?"."+d[1]:"",e=d[1]+"!",p.access(this,function(c){if(c===b)return k=this.triggerHandler("getData"+e,[d[0]]),k===b&&i&&(k=p.data(i,a),k=J(i,a,k)),k===b&&d[1]?this.data(d[0]):k;d[1]=c,this.each(function(){var b=p(this);b.triggerHandler("setData"+e,d),p.data(this,a,c),b.triggerHandler("changeData"+e,d)})},null,c,arguments.length>1,null,!1))},removeData:function(a){return this.each(function(){p.removeData(this,a)})}}),p.extend({queue:function(a,b,c){var d;if(a)return b=(b||"fx")+"queue",d=p._data(a,b),c&&(!d||p.isArray(c)?d=p._data(a,b,p.makeArray(c)):d.push(c)),d||[]},dequeue:function(a,b){b=b||"fx";var c=p.queue(a,b),d=c.length,e=c.shift(),f=p._queueHooks(a,b),g=function(){p.dequeue(a,b)};e==="inprogress"&&(e=c.shift(),d--),e&&(b==="fx"&&c.unshift("inprogress"),delete f.stop,e.call(a,g,f)),!d&&f&&f.empty.fire()},_queueHooks:function(a,b){var c=b+"queueHooks";return p._data(a,c)||p._data(a,c,{empty:p.Callbacks("once memory").add(function(){p.removeData(a,b+"queue",!0),p.removeData(a,c,!0)})})}}),p.fn.extend({queue:function(a,c){var d=2;return typeof a!="string"&&(c=a,a="fx",d--),arguments.length<d?p.queue(this[0],a):c===b?this:this.each(function(){var b=p.queue(this,a,c);p._queueHooks(this,a),a==="fx"&&b[0]!=="inprogress"&&p.dequeue(this,a)})},dequeue:function(a){return this.each(function(){p.dequeue(this,a)})},delay:function(a,b){return a=p.fx?p.fx.speeds[a]||a:a,b=b||"fx",this.queue(b,function(b,c){var d=setTimeout(b,a);c.stop=function(){clearTimeout(d)}})},clearQueue:function(a){return this.queue(a||"fx",[])},promise:function(a,c){var d,e=1,f=p.Deferred(),g=this,h=this.length,i=function(){--e||f.resolveWith(g,[g])};typeof a!="string"&&(c=a,a=b),a=a||"fx";while(h--)d=p._data(g[h],a+"queueHooks"),d&&d.empty&&(e++,d.empty.add(i));return i(),f.promise(c)}});var L,M,N,O=/[\t\r\n]/g,P=/\r/g,Q=/^(?:button|input)$/i,R=/^(?:button|input|object|select|textarea)$/i,S=/^a(?:rea|)$/i,T=/^(?:autofocus|autoplay|async|checked|controls|defer|disabled|hidden|loop|multiple|open|readonly|required|scoped|selected)$/i,U=p.support.getSetAttribute;p.fn.extend({attr:function(a,b){return p.access(this,p.attr,a,b,arguments.length>1)},removeAttr:function(a){return this.each(function(){p.removeAttr(this,a)})},prop:function(a,b){return p.access(this,p.prop,a,b,arguments.length>1)},removeProp:function(a){return a=p.propFix[a]||a,this.each(function(){try{this[a]=b,delete this[a]}catch(c){}})},addClass:function(a){var b,c,d,e,f,g,h;if(p.isFunction(a))return this.each(function(b){p(this).addClass(a.call(this,b,this.className))});if(a&&typeof a=="string"){b=a.split(s);for(c=0,d=this.length;c<d;c++){e=this[c];if(e.nodeType===1)if(!e.className&&b.length===1)e.className=a;else{f=" "+e.className+" ";for(g=0,h=b.length;g<h;g++)f.indexOf(" "+b[g]+" ")<0&&(f+=b[g]+" ");e.className=p.trim(f)}}}return this},removeClass:function(a){var c,d,e,f,g,h,i;if(p.isFunction(a))return this.each(function(b){p(this).removeClass(a.call(this,b,this.className))});if(a&&typeof a=="string"||a===b){c=(a||"").split(s);for(h=0,i=this.length;h<i;h++){e=this[h];if(e.nodeType===1&&e.className){d=(" "+e.className+" ").replace(O," ");for(f=0,g=c.length;f<g;f++)while(d.indexOf(" "+c[f]+" ")>=0)d=d.replace(" "+c[f]+" "," ");e.className=a?p.trim(d):""}}}return this},toggleClass:function(a,b){var c=typeof a,d=typeof b=="boolean";return p.isFunction(a)?this.each(function(c){p(this).toggleClass(a.call(this,c,this.className,b),b)}):this.each(function(){if(c==="string"){var e,f=0,g=p(this),h=b,i=a.split(s);while(e=i[f++])h=d?h:!g.hasClass(e),g[h?"addClass":"removeClass"](e)}else if(c==="undefined"||c==="boolean")this.className&&p._data(this,"__className__",this.className),this.className=this.className||a===!1?"":p._data(this,"__className__")||""})},hasClass:function(a){var b=" "+a+" ",c=0,d=this.length;for(;c<d;c++)if(this[c].nodeType===1&&(" "+this[c].className+" ").replace(O," ").indexOf(b)>=0)return!0;return!1},val:function(a){var c,d,e,f=this[0];if(!arguments.length){if(f)return c=p.valHooks[f.type]||p.valHooks[f.nodeName.toLowerCase()],c&&"get"in c&&(d=c.get(f,"value"))!==b?d:(d=f.value,typeof d=="string"?d.replace(P,""):d==null?"":d);return}return e=p.isFunction(a),this.each(function(d){var f,g=p(this);if(this.nodeType!==1)return;e?f=a.call(this,d,g.val()):f=a,f==null?f="":typeof f=="number"?f+="":p.isArray(f)&&(f=p.map(f,function(a){return a==null?"":a+""})),c=p.valHooks[this.type]||p.valHooks[this.nodeName.toLowerCase()];if(!c||!("set"in c)||c.set(this,f,"value")===b)this.value=f})}}),p.extend({valHooks:{option:{get:function(a){var b=a.attributes.value;return!b||b.specified?a.value:a.text}},select:{get:function(a){var b,c,d,e,f=a.selectedIndex,g=[],h=a.options,i=a.type==="select-one";if(f<0)return null;c=i?f:0,d=i?f+1:h.length;for(;c<d;c++){e=h[c];if(e.selected&&(p.support.optDisabled?!e.disabled:e.getAttribute("disabled")===null)&&(!e.parentNode.disabled||!p.nodeName(e.parentNode,"optgroup"))){b=p(e).val();if(i)return b;g.push(b)}}return i&&!g.length&&h.length?p(h[f]).val():g},set:function(a,b){var c=p.makeArray(b);return p(a).find("option").each(function(){this.selected=p.inArray(p(this).val(),c)>=0}),c.length||(a.selectedIndex=-1),c}}},attrFn:{},attr:function(a,c,d,e){var f,g,h,i=a.nodeType;if(!a||i===3||i===8||i===2)return;if(e&&p.isFunction(p.fn[c]))return p(a)[c](d);if(typeof a.getAttribute=="undefined")return p.prop(a,c,d);h=i!==1||!p.isXMLDoc(a),h&&(c=c.toLowerCase(),g=p.attrHooks[c]||(T.test(c)?M:L));if(d!==b){if(d===null){p.removeAttr(a,c);return}return g&&"set"in g&&h&&(f=g.set(a,d,c))!==b?f:(a.setAttribute(c,d+""),d)}return g&&"get"in g&&h&&(f=g.get(a,c))!==null?f:(f=a.getAttribute(c),f===null?b:f)},removeAttr:function(a,b){var c,d,e,f,g=0;if(b&&a.nodeType===1){d=b.split(s);for(;g<d.length;g++)e=d[g],e&&(c=p.propFix[e]||e,f=T.test(e),f||p.attr(a,e,""),a.removeAttribute(U?e:c),f&&c in a&&(a[c]=!1))}},attrHooks:{type:{set:function(a,b){if(Q.test(a.nodeName)&&a.parentNode)p.error("type property can't be changed");else if(!p.support.radioValue&&b==="radio"&&p.nodeName(a,"input")){var c=a.value;return a.setAttribute("type",b),c&&(a.value=c),b}}},value:{get:function(a,b){return L&&p.nodeName(a,"button")?L.get(a,b):b in a?a.value:null},set:function(a,b,c){if(L&&p.nodeName(a,"button"))return L.set(a,b,c);a.value=b}}},propFix:{tabindex:"tabIndex",readonly:"readOnly","for":"htmlFor","class":"className",maxlength:"maxLength",cellspacing:"cellSpacing",cellpadding:"cellPadding",rowspan:"rowSpan",colspan:"colSpan",usemap:"useMap",frameborder:"frameBorder",contenteditable:"contentEditable"},prop:function(a,c,d){var e,f,g,h=a.nodeType;if(!a||h===3||h===8||h===2)return;return g=h!==1||!p.isXMLDoc(a),g&&(c=p.propFix[c]||c,f=p.propHooks[c]),d!==b?f&&"set"in f&&(e=f.set(a,d,c))!==b?e:a[c]=d:f&&"get"in f&&(e=f.get(a,c))!==null?e:a[c]},propHooks:{tabIndex:{get:function(a){var c=a.getAttributeNode("tabindex");return c&&c.specified?parseInt(c.value,10):R.test(a.nodeName)||S.test(a.nodeName)&&a.href?0:b}}}}),M={get:function(a,c){var d,e=p.prop(a,c);return e===!0||typeof e!="boolean"&&(d=a.getAttributeNode(c))&&d.nodeValue!==!1?c.toLowerCase():b},set:function(a,b,c){var d;return b===!1?p.removeAttr(a,c):(d=p.propFix[c]||c,d in a&&(a[d]=!0),a.setAttribute(c,c.toLowerCase())),c}},U||(N={name:!0,id:!0,coords:!0},L=p.valHooks.button={get:function(a,c){var d;return d=a.getAttributeNode(c),d&&(N[c]?d.value!=="":d.specified)?d.value:b},set:function(a,b,c){var d=a.getAttributeNode(c);return d||(d=e.createAttribute(c),a.setAttributeNode(d)),d.value=b+""}},p.each(["width","height"],function(a,b){p.attrHooks[b]=p.extend(p.attrHooks[b],{set:function(a,c){if(c==="")return a.setAttribute(b,"auto"),c}})}),p.attrHooks.contenteditable={get:L.get,set:function(a,b,c){b===""&&(b="false"),L.set(a,b,c)}}),p.support.hrefNormalized||p.each(["href","src","width","height"],function(a,c){p.attrHooks[c]=p.extend(p.attrHooks[c],{get:function(a){var d=a.getAttribute(c,2);return d===null?b:d}})}),p.support.style||(p.attrHooks.style={get:function(a){return a.style.cssText.toLowerCase()||b},set:function(a,b){return a.style.cssText=b+""}}),p.support.optSelected||(p.propHooks.selected=p.extend(p.propHooks.selected,{get:function(a){var b=a.parentNode;return b&&(b.selectedIndex,b.parentNode&&b.parentNode.selectedIndex),null}})),p.support.enctype||(p.propFix.enctype="encoding"),p.support.checkOn||p.each(["radio","checkbox"],function(){p.valHooks[this]={get:function(a){return a.getAttribute("value")===null?"on":a.value}}}),p.each(["radio","checkbox"],function(){p.valHooks[this]=p.extend(p.valHooks[this],{set:function(a,b){if(p.isArray(b))return a.checked=p.inArray(p(a).val(),b)>=0}})});var V=/^(?:textarea|input|select)$/i,W=/^([^\.]*|)(?:\.(.+)|)$/,X=/(?:^|\s)hover(\.\S+|)\b/,Y=/^key/,Z=/^(?:mouse|contextmenu)|click/,$=/^(?:focusinfocus|focusoutblur)$/,_=function(a){return p.event.special.hover?a:a.replace(X,"mouseenter$1 mouseleave$1")};p.event={add:function(a,c,d,e,f){var g,h,i,j,k,l,m,n,o,q,r;if(a.nodeType===3||a.nodeType===8||!c||!d||!(g=p._data(a)))return;d.handler&&(o=d,d=o.handler,f=o.selector),d.guid||(d.guid=p.guid++),i=g.events,i||(g.events=i={}),h=g.handle,h||(g.handle=h=function(a){return typeof p!="undefined"&&(!a||p.event.triggered!==a.type)?p.event.dispatch.apply(h.elem,arguments):b},h.elem=a),c=p.trim(_(c)).split(" ");for(j=0;j<c.length;j++){k=W.exec(c[j])||[],l=k[1],m=(k[2]||"").split(".").sort(),r=p.event.special[l]||{},l=(f?r.delegateType:r.bindType)||l,r=p.event.special[l]||{},n=p.extend({type:l,origType:k[1],data:e,handler:d,guid:d.guid,selector:f,needsContext:f&&p.expr.match.needsContext.test(f),namespace:m.join(".")},o),q=i[l];if(!q){q=i[l]=[],q.delegateCount=0;if(!r.setup||r.setup.call(a,e,m,h)===!1)a.addEventListener?a.addEventListener(l,h,!1):a.attachEvent&&a.attachEvent("on"+l,h)}r.add&&(r.add.call(a,n),n.handler.guid||(n.handler.guid=d.guid)),f?q.splice(q.delegateCount++,0,n):q.push(n),p.event.global[l]=!0}a=null},global:{},remove:function(a,b,c,d,e){var f,g,h,i,j,k,l,m,n,o,q,r=p.hasData(a)&&p._data(a);if(!r||!(m=r.events))return;b=p.trim(_(b||"")).split(" ");for(f=0;f<b.length;f++){g=W.exec(b[f])||[],h=i=g[1],j=g[2];if(!h){for(h in m)p.event.remove(a,h+b[f],c,d,!0);continue}n=p.event.special[h]||{},h=(d?n.delegateType:n.bindType)||h,o=m[h]||[],k=o.length,j=j?new RegExp("(^|\\.)"+j.split(".").sort().join("\\.(?:.*\\.|)")+"(\\.|$)"):null;for(l=0;l<o.length;l++)q=o[l],(e||i===q.origType)&&(!c||c.guid===q.guid)&&(!j||j.test(q.namespace))&&(!d||d===q.selector||d==="**"&&q.selector)&&(o.splice(l--,1),q.selector&&o.delegateCount--,n.remove&&n.remove.call(a,q));o.length===0&&k!==o.length&&((!n.teardown||n.teardown.call(a,j,r.handle)===!1)&&p.removeEvent(a,h,r.handle),delete m[h])}p.isEmptyObject(m)&&(delete r.handle,p.removeData(a,"events",!0))},customEvent:{getData:!0,setData:!0,changeData:!0},trigger:function(c,d,f,g){if(!f||f.nodeType!==3&&f.nodeType!==8){var h,i,j,k,l,m,n,o,q,r,s=c.type||c,t=[];if($.test(s+p.event.triggered))return;s.indexOf("!")>=0&&(s=s.slice(0,-1),i=!0),s.indexOf(".")>=0&&(t=s.split("."),s=t.shift(),t.sort());if((!f||p.event.customEvent[s])&&!p.event.global[s])return;c=typeof c=="object"?c[p.expando]?c:new p.Event(s,c):new p.Event(s),c.type=s,c.isTrigger=!0,c.exclusive=i,c.namespace=t.join("."),c.namespace_re=c.namespace?new RegExp("(^|\\.)"+t.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,m=s.indexOf(":")<0?"on"+s:"";if(!f){h=p.cache;for(j in h)h[j].events&&h[j].events[s]&&p.event.trigger(c,d,h[j].handle.elem,!0);return}c.result=b,c.target||(c.target=f),d=d!=null?p.makeArray(d):[],d.unshift(c),n=p.event.special[s]||{};if(n.trigger&&n.trigger.apply(f,d)===!1)return;q=[[f,n.bindType||s]];if(!g&&!n.noBubble&&!p.isWindow(f)){r=n.delegateType||s,k=$.test(r+s)?f:f.parentNode;for(l=f;k;k=k.parentNode)q.push([k,r]),l=k;l===(f.ownerDocument||e)&&q.push([l.defaultView||l.parentWindow||a,r])}for(j=0;j<q.length&&!c.isPropagationStopped();j++)k=q[j][0],c.type=q[j][1],o=(p._data(k,"events")||{})[c.type]&&p._data(k,"handle"),o&&o.apply(k,d),o=m&&k[m],o&&p.acceptData(k)&&o.apply&&o.apply(k,d)===!1&&c.preventDefault();return c.type=s,!g&&!c.isDefaultPrevented()&&(!n._default||n._default.apply(f.ownerDocument,d)===!1)&&(s!=="click"||!p.nodeName(f,"a"))&&p.acceptData(f)&&m&&f[s]&&(s!=="focus"&&s!=="blur"||c.target.offsetWidth!==0)&&!p.isWindow(f)&&(l=f[m],l&&(f[m]=null),p.event.triggered=s,f[s](),p.event.triggered=b,l&&(f[m]=l)),c.result}return},dispatch:function(c){c=p.event.fix(c||a.event);var d,e,f,g,h,i,j,l,m,n,o=(p._data(this,"events")||{})[c.type]||[],q=o.delegateCount,r=k.call(arguments),s=!c.exclusive&&!c.namespace,t=p.event.special[c.type]||{},u=[];r[0]=c,c.delegateTarget=this;if(t.preDispatch&&t.preDispatch.call(this,c)===!1)return;if(q&&(!c.button||c.type!=="click"))for(f=c.target;f!=this;f=f.parentNode||this)if(f.disabled!==!0||c.type!=="click"){h={},j=[];for(d=0;d<q;d++)l=o[d],m=l.selector,h[m]===b&&(h[m]=l.needsContext?p(m,this).index(f)>=0:p.find(m,this,null,[f]).length),h[m]&&j.push(l);j.length&&u.push({elem:f,matches:j})}o.length>q&&u.push({elem:this,matches:o.slice(q)});for(d=0;d<u.length&&!c.isPropagationStopped();d++){i=u[d],c.currentTarget=i.elem;for(e=0;e<i.matches.length&&!c.isImmediatePropagationStopped();e++){l=i.matches[e];if(s||!c.namespace&&!l.namespace||c.namespace_re&&c.namespace_re.test(l.namespace))c.data=l.data,c.handleObj=l,g=((p.event.special[l.origType]||{}).handle||l.handler).apply(i.elem,r),g!==b&&(c.result=g,g===!1&&(c.preventDefault(),c.stopPropagation()))}}return t.postDispatch&&t.postDispatch.call(this,c),c.result},props:"attrChange attrName relatedNode srcElement altKey bubbles cancelable ctrlKey currentTarget eventPhase metaKey relatedTarget shiftKey target timeStamp view which".split(" "),fixHooks:{},keyHooks:{props:"char charCode key keyCode".split(" "),filter:function(a,b){return a.which==null&&(a.which=b.charCode!=null?b.charCode:b.keyCode),a}},mouseHooks:{props:"button buttons clientX clientY fromElement offsetX offsetY pageX pageY screenX screenY toElement".split(" "),filter:function(a,c){var d,f,g,h=c.button,i=c.fromElement;return a.pageX==null&&c.clientX!=null&&(d=a.target.ownerDocument||e,f=d.documentElement,g=d.body,a.pageX=c.clientX+(f&&f.scrollLeft||g&&g.scrollLeft||0)-(f&&f.clientLeft||g&&g.clientLeft||0),a.pageY=c.clientY+(f&&f.scrollTop||g&&g.scrollTop||0)-(f&&f.clientTop||g&&g.clientTop||0)),!a.relatedTarget&&i&&(a.relatedTarget=i===a.target?c.toElement:i),!a.which&&h!==b&&(a.which=h&1?1:h&2?3:h&4?2:0),a}},fix:function(a){if(a[p.expando])return a;var b,c,d=a,f=p.event.fixHooks[a.type]||{},g=f.props?this.props.concat(f.props):this.props;a=p.Event(d);for(b=g.length;b;)c=g[--b],a[c]=d[c];return a.target||(a.target=d.srcElement||e),a.target.nodeType===3&&(a.target=a.target.parentNode),a.metaKey=!!a.metaKey,f.filter?f.filter(a,d):a},special:{load:{noBubble:!0},focus:{delegateType:"focusin"},blur:{delegateType:"focusout"},beforeunload:{setup:function(a,b,c){p.isWindow(this)&&(this.onbeforeunload=c)},teardown:function(a,b){this.onbeforeunload===b&&(this.onbeforeunload=null)}}},simulate:function(a,b,c,d){var e=p.extend(new p.Event,c,{type:a,isSimulated:!0,originalEvent:{}});d?p.event.trigger(e,null,b):p.event.dispatch.call(b,e),e.isDefaultPrevented()&&c.preventDefault()}},p.event.handle=p.event.dispatch,p.removeEvent=e.removeEventListener?function(a,b,c){a.removeEventListener&&a.removeEventListener(b,c,!1)}:function(a,b,c){var d="on"+b;a.detachEvent&&(typeof a[d]=="undefined"&&(a[d]=null),a.detachEvent(d,c))},p.Event=function(a,b){if(this instanceof p.Event)a&&a.type?(this.originalEvent=a,this.type=a.type,this.isDefaultPrevented=a.defaultPrevented||a.returnValue===!1||a.getPreventDefault&&a.getPreventDefault()?bb:ba):this.type=a,b&&p.extend(this,b),this.timeStamp=a&&a.timeStamp||p.now(),this[p.expando]=!0;else return new p.Event(a,b)},p.Event.prototype={preventDefault:function(){this.isDefaultPrevented=bb;var a=this.originalEvent;if(!a)return;a.preventDefault?a.preventDefault():a.returnValue=!1},stopPropagation:function(){this.isPropagationStopped=bb;var a=this.originalEvent;if(!a)return;a.stopPropagation&&a.stopPropagation(),a.cancelBubble=!0},stopImmediatePropagation:function(){this.isImmediatePropagationStopped=bb,this.stopPropagation()},isDefaultPrevented:ba,isPropagationStopped:ba,isImmediatePropagationStopped:ba},p.each({mouseenter:"mouseover",mouseleave:"mouseout"},function(a,b){p.event.special[a]={delegateType:b,bindType:b,handle:function(a){var c,d=this,e=a.relatedTarget,f=a.handleObj,g=f.selector;if(!e||e!==d&&!p.contains(d,e))a.type=f.origType,c=f.handler.apply(this,arguments),a.type=b;return c}}}),p.support.submitBubbles||(p.event.special.submit={setup:function(){if(p.nodeName(this,"form"))return!1;p.event.add(this,"click._submit keypress._submit",function(a){var c=a.target,d=p.nodeName(c,"input")||p.nodeName(c,"button")?c.form:b;d&&!p._data(d,"_submit_attached")&&(p.event.add(d,"submit._submit",function(a){a._submit_bubble=!0}),p._data(d,"_submit_attached",!0))})},postDispatch:function(a){a._submit_bubble&&(delete a._submit_bubble,this.parentNode&&!a.isTrigger&&p.event.simulate("submit",this.parentNode,a,!0))},teardown:function(){if(p.nodeName(this,"form"))return!1;p.event.remove(this,"._submit")}}),p.support.changeBubbles||(p.event.special.change={setup:function(){if(V.test(this.nodeName)){if(this.type==="checkbox"||this.type==="radio")p.event.add(this,"propertychange._change",function(a){a.originalEvent.propertyName==="checked"&&(this._just_changed=!0)}),p.event.add(this,"click._change",function(a){this._just_changed&&!a.isTrigger&&(this._just_changed=!1),p.event.simulate("change",this,a,!0)});return!1}p.event.add(this,"beforeactivate._change",function(a){var b=a.target;V.test(b.nodeName)&&!p._data(b,"_change_attached")&&(p.event.add(b,"change._change",function(a){this.parentNode&&!a.isSimulated&&!a.isTrigger&&p.event.simulate("change",this.parentNode,a,!0)}),p._data(b,"_change_attached",!0))})},handle:function(a){var b=a.target;if(this!==b||a.isSimulated||a.isTrigger||b.type!=="radio"&&b.type!=="checkbox")return a.handleObj.handler.apply(this,arguments)},teardown:function(){return p.event.remove(this,"._change"),!V.test(this.nodeName)}}),p.support.focusinBubbles||p.each({focus:"focusin",blur:"focusout"},function(a,b){var c=0,d=function(a){p.event.simulate(b,a.target,p.event.fix(a),!0)};p.event.special[b]={setup:function(){c++===0&&e.addEventListener(a,d,!0)},teardown:function(){--c===0&&e.removeEventListener(a,d,!0)}}}),p.fn.extend({on:function(a,c,d,e,f){var g,h;if(typeof a=="object"){typeof c!="string"&&(d=d||c,c=b);for(h in a)this.on(h,c,d,a[h],f);return this}d==null&&e==null?(e=c,d=c=b):e==null&&(typeof c=="string"?(e=d,d=b):(e=d,d=c,c=b));if(e===!1)e=ba;else if(!e)return this;return f===1&&(g=e,e=function(a){return p().off(a),g.apply(this,arguments)},e.guid=g.guid||(g.guid=p.guid++)),this.each(function(){p.event.add(this,a,e,d,c)})},one:function(a,b,c,d){return this.on(a,b,c,d,1)},off:function(a,c,d){var e,f;if(a&&a.preventDefault&&a.handleObj)return e=a.handleObj,p(a.delegateTarget).off(e.namespace?e.origType+"."+e.namespace:e.origType,e.selector,e.handler),this;if(typeof a=="object"){for(f in a)this.off(f,c,a[f]);return this}if(c===!1||typeof c=="function")d=c,c=b;return d===!1&&(d=ba),this.each(function(){p.event.remove(this,a,d,c)})},bind:function(a,b,c){return this.on(a,null,b,c)},unbind:function(a,b){return this.off(a,null,b)},live:function(a,b,c){return p(this.context).on(a,this.selector,b,c),this},die:function(a,b){return p(this.context).off(a,this.selector||"**",b),this},delegate:function(a,b,c,d){return this.on(b,a,c,d)},undelegate:function(a,b,c){return arguments.length===1?this.off(a,"**"):this.off(b,a||"**",c)},trigger:function(a,b){return this.each(function(){p.event.trigger(a,b,this)})},triggerHandler:function(a,b){if(this[0])return p.event.trigger(a,b,this[0],!0)},toggle:function(a){var b=arguments,c=a.guid||p.guid++,d=0,e=function(c){var e=(p._data(this,"lastToggle"+a.guid)||0)%d;return p._data(this,"lastToggle"+a.guid,e+1),c.preventDefault(),b[e].apply(this,arguments)||!1};e.guid=c;while(d<b.length)b[d++].guid=c;return this.click(e)},hover:function(a,b){return this.mouseenter(a).mouseleave(b||a)}}),p.each("blur focus focusin focusout load resize scroll unload click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup error contextmenu".split(" "),function(a,b){p.fn[b]=function(a,c){return c==null&&(c=a,a=null),arguments.length>0?this.on(b,null,a,c):this.trigger(b)},Y.test(b)&&(p.event.fixHooks[b]=p.event.keyHooks),Z.test(b)&&(p.event.fixHooks[b]=p.event.mouseHooks)}),function(a,b){function bc(a,b,c,d){c=c||[],b=b||r;var e,f,i,j,k=b.nodeType;if(!a||typeof a!="string")return c;if(k!==1&&k!==9)return[];i=g(b);if(!i&&!d)if(e=P.exec(a))if(j=e[1]){if(k===9){f=b.getElementById(j);if(!f||!f.parentNode)return c;if(f.id===j)return c.push(f),c}else if(b.ownerDocument&&(f=b.ownerDocument.getElementById(j))&&h(b,f)&&f.id===j)return c.push(f),c}else{if(e[2])return w.apply(c,x.call(b.getElementsByTagName(a),0)),c;if((j=e[3])&&_&&b.getElementsByClassName)return w.apply(c,x.call(b.getElementsByClassName(j),0)),c}return bp(a.replace(L,"$1"),b,c,d,i)}function bd(a){return function(b){var c=b.nodeName.toLowerCase();return c==="input"&&b.type===a}}function be(a){return function(b){var c=b.nodeName.toLowerCase();return(c==="input"||c==="button")&&b.type===a}}function bf(a){return z(function(b){return b=+b,z(function(c,d){var e,f=a([],c.length,b),g=f.length;while(g--)c[e=f[g]]&&(c[e]=!(d[e]=c[e]))})})}function bg(a,b,c){if(a===b)return c;var d=a.nextSibling;while(d){if(d===b)return-1;d=d.nextSibling}return 1}function bh(a,b){var c,d,f,g,h,i,j,k=C[o][a];if(k)return b?0:k.slice(0);h=a,i=[],j=e.preFilter;while(h){if(!c||(d=M.exec(h)))d&&(h=h.slice(d[0].length)),i.push(f=[]);c=!1;if(d=N.exec(h))f.push(c=new q(d.shift())),h=h.slice(c.length),c.type=d[0].replace(L," ");for(g in e.filter)(d=W[g].exec(h))&&(!j[g]||(d=j[g](d,r,!0)))&&(f.push(c=new q(d.shift())),h=h.slice(c.length),c.type=g,c.matches=d);if(!c)break}return b?h.length:h?bc.error(a):C(a,i).slice(0)}function bi(a,b,d){var e=b.dir,f=d&&b.dir==="parentNode",g=u++;return b.first?function(b,c,d){while(b=b[e])if(f||b.nodeType===1)return a(b,c,d)}:function(b,d,h){if(!h){var i,j=t+" "+g+" ",k=j+c;while(b=b[e])if(f||b.nodeType===1){if((i=b[o])===k)return b.sizset;if(typeof i=="string"&&i.indexOf(j)===0){if(b.sizset)return b}else{b[o]=k;if(a(b,d,h))return b.sizset=!0,b;b.sizset=!1}}}else while(b=b[e])if(f||b.nodeType===1)if(a(b,d,h))return b}}function bj(a){return a.length>1?function(b,c,d){var e=a.length;while(e--)if(!a[e](b,c,d))return!1;return!0}:a[0]}function bk(a,b,c,d,e){var f,g=[],h=0,i=a.length,j=b!=null;for(;h<i;h++)if(f=a[h])if(!c||c(f,d,e))g.push(f),j&&b.push(h);return g}function bl(a,b,c,d,e,f){return d&&!d[o]&&(d=bl(d)),e&&!e[o]&&(e=bl(e,f)),z(function(f,g,h,i){if(f&&e)return;var j,k,l,m=[],n=[],o=g.length,p=f||bo(b||"*",h.nodeType?[h]:h,[],f),q=a&&(f||!b)?bk(p,m,a,h,i):p,r=c?e||(f?a:o||d)?[]:g:q;c&&c(q,r,h,i);if(d){l=bk(r,n),d(l,[],h,i),j=l.length;while(j--)if(k=l[j])r[n[j]]=!(q[n[j]]=k)}if(f){j=a&&r.length;while(j--)if(k=r[j])f[m[j]]=!(g[m[j]]=k)}else r=bk(r===g?r.splice(o,r.length):r),e?e(null,g,r,i):w.apply(g,r)})}function bm(a){var b,c,d,f=a.length,g=e.relative[a[0].type],h=g||e.relative[" "],i=g?1:0,j=bi(function(a){return a===b},h,!0),k=bi(function(a){return y.call(b,a)>-1},h,!0),m=[function(a,c,d){return!g&&(d||c!==l)||((b=c).nodeType?j(a,c,d):k(a,c,d))}];for(;i<f;i++)if(c=e.relative[a[i].type])m=[bi(bj(m),c)];else{c=e.filter[a[i].type].apply(null,a[i].matches);if(c[o]){d=++i;for(;d<f;d++)if(e.relative[a[d].type])break;return bl(i>1&&bj(m),i>1&&a.slice(0,i-1).join("").replace(L,"$1"),c,i<d&&bm(a.slice(i,d)),d<f&&bm(a=a.slice(d)),d<f&&a.join(""))}m.push(c)}return bj(m)}function bn(a,b){var d=b.length>0,f=a.length>0,g=function(h,i,j,k,m){var n,o,p,q=[],s=0,u="0",x=h&&[],y=m!=null,z=l,A=h||f&&e.find.TAG("*",m&&i.parentNode||i),B=t+=z==null?1:Math.E;y&&(l=i!==r&&i,c=g.el);for(;(n=A[u])!=null;u++){if(f&&n){for(o=0;p=a[o];o++)if(p(n,i,j)){k.push(n);break}y&&(t=B,c=++g.el)}d&&((n=!p&&n)&&s--,h&&x.push(n))}s+=u;if(d&&u!==s){for(o=0;p=b[o];o++)p(x,q,i,j);if(h){if(s>0)while(u--)!x[u]&&!q[u]&&(q[u]=v.call(k));q=bk(q)}w.apply(k,q),y&&!h&&q.length>0&&s+b.length>1&&bc.uniqueSort(k)}return y&&(t=B,l=z),x};return g.el=0,d?z(g):g}function bo(a,b,c,d){var e=0,f=b.length;for(;e<f;e++)bc(a,b[e],c,d);return c}function bp(a,b,c,d,f){var g,h,j,k,l,m=bh(a),n=m.length;if(!d&&m.length===1){h=m[0]=m[0].slice(0);if(h.length>2&&(j=h[0]).type==="ID"&&b.nodeType===9&&!f&&e.relative[h[1].type]){b=e.find.ID(j.matches[0].replace(V,""),b,f)[0];if(!b)return c;a=a.slice(h.shift().length)}for(g=W.POS.test(a)?-1:h.length-1;g>=0;g--){j=h[g];if(e.relative[k=j.type])break;if(l=e.find[k])if(d=l(j.matches[0].replace(V,""),R.test(h[0].type)&&b.parentNode||b,f)){h.splice(g,1),a=d.length&&h.join("");if(!a)return w.apply(c,x.call(d,0)),c;break}}}return i(a,m)(d,b,f,c,R.test(a)),c}function bq(){}var c,d,e,f,g,h,i,j,k,l,m=!0,n="undefined",o=("sizcache"+Math.random()).replace(".",""),q=String,r=a.document,s=r.documentElement,t=0,u=0,v=[].pop,w=[].push,x=[].slice,y=[].indexOf||function(a){var b=0,c=this.length;for(;b<c;b++)if(this[b]===a)return b;return-1},z=function(a,b){return a[o]=b==null||b,a},A=function(){var a={},b=[];return z(function(c,d){return b.push(c)>e.cacheLength&&delete a[b.shift()],a[c]=d},a)},B=A(),C=A(),D=A(),E="[\\x20\\t\\r\\n\\f]",F="(?:\\\\.|[-\\w]|[^\\x00-\\xa0])+",G=F.replace("w","w#"),H="([*^$|!~]?=)",I="\\["+E+"*("+F+")"+E+"*(?:"+H+E+"*(?:(['\"])((?:\\\\.|[^\\\\])*?)\\3|("+G+")|)|)"+E+"*\\]",J=":("+F+")(?:\\((?:(['\"])((?:\\\\.|[^\\\\])*?)\\2|([^()[\\]]*|(?:(?:"+I+")|[^:]|\\\\.)*|.*))\\)|)",K=":(even|odd|eq|gt|lt|nth|first|last)(?:\\("+E+"*((?:-\\d)?\\d*)"+E+"*\\)|)(?=[^-]|$)",L=new RegExp("^"+E+"+|((?:^|[^\\\\])(?:\\\\.)*)"+E+"+$","g"),M=new RegExp("^"+E+"*,"+E+"*"),N=new RegExp("^"+E+"*([\\x20\\t\\r\\n\\f>+~])"+E+"*"),O=new RegExp(J),P=/^(?:#([\w\-]+)|(\w+)|\.([\w\-]+))$/,Q=/^:not/,R=/[\x20\t\r\n\f]*[+~]/,S=/:not\($/,T=/h\d/i,U=/input|select|textarea|button/i,V=/\\(?!\\)/g,W={ID:new RegExp("^#("+F+")"),CLASS:new RegExp("^\\.("+F+")"),NAME:new RegExp("^\\[name=['\"]?("+F+")['\"]?\\]"),TAG:new RegExp("^("+F.replace("w","w*")+")"),ATTR:new RegExp("^"+I),PSEUDO:new RegExp("^"+J),POS:new RegExp(K,"i"),CHILD:new RegExp("^:(only|nth|first|last)-child(?:\\("+E+"*(even|odd|(([+-]|)(\\d*)n|)"+E+"*(?:([+-]|)"+E+"*(\\d+)|))"+E+"*\\)|)","i"),needsContext:new RegExp("^"+E+"*[>+~]|"+K,"i")},X=function(a){var b=r.createElement("div");try{return a(b)}catch(c){return!1}finally{b=null}},Y=X(function(a){return a.appendChild(r.createComment("")),!a.getElementsByTagName("*").length}),Z=X(function(a){return a.innerHTML="<a href='#'></a>",a.firstChild&&typeof a.firstChild.getAttribute!==n&&a.firstChild.getAttribute("href")==="#"}),$=X(function(a){a.innerHTML="<select></select>";var b=typeof a.lastChild.getAttribute("multiple");return b!=="boolean"&&b!=="string"}),_=X(function(a){return a.innerHTML="<div class='hidden e'></div><div class='hidden'></div>",!a.getElementsByClassName||!a.getElementsByClassName("e").length?!1:(a.lastChild.className="e",a.getElementsByClassName("e").length===2)}),ba=X(function(a){a.id=o+0,a.innerHTML="<a name='"+o+"'></a><div name='"+o+"'></div>",s.insertBefore(a,s.firstChild);var b=r.getElementsByName&&r.getElementsByName(o).length===2+r.getElementsByName(o+0).length;return d=!r.getElementById(o),s.removeChild(a),b});try{x.call(s.childNodes,0)[0].nodeType}catch(bb){x=function(a){var b,c=[];for(;b=this[a];a++)c.push(b);return c}}bc.matches=function(a,b){return bc(a,null,null,b)},bc.matchesSelector=function(a,b){return bc(b,null,null,[a]).length>0},f=bc.getText=function(a){var b,c="",d=0,e=a.nodeType;if(e){if(e===1||e===9||e===11){if(typeof a.textContent=="string")return a.textContent;for(a=a.firstChild;a;a=a.nextSibling)c+=f(a)}else if(e===3||e===4)return a.nodeValue}else for(;b=a[d];d++)c+=f(b);return c},g=bc.isXML=function(a){var b=a&&(a.ownerDocument||a).documentElement;return b?b.nodeName!=="HTML":!1},h=bc.contains=s.contains?function(a,b){var c=a.nodeType===9?a.documentElement:a,d=b&&b.parentNode;return a===d||!!(d&&d.nodeType===1&&c.contains&&c.contains(d))}:s.compareDocumentPosition?function(a,b){return b&&!!(a.compareDocumentPosition(b)&16)}:function(a,b){while(b=b.parentNode)if(b===a)return!0;return!1},bc.attr=function(a,b){var c,d=g(a);return d||(b=b.toLowerCase()),(c=e.attrHandle[b])?c(a):d||$?a.getAttribute(b):(c=a.getAttributeNode(b),c?typeof a[b]=="boolean"?a[b]?b:null:c.specified?c.value:null:null)},e=bc.selectors={cacheLength:50,createPseudo:z,match:W,attrHandle:Z?{}:{href:function(a){return a.getAttribute("href",2)},type:function(a){return a.getAttribute("type")}},find:{ID:d?function(a,b,c){if(typeof b.getElementById!==n&&!c){var d=b.getElementById(a);return d&&d.parentNode?[d]:[]}}:function(a,c,d){if(typeof c.getElementById!==n&&!d){var e=c.getElementById(a);return e?e.id===a||typeof e.getAttributeNode!==n&&e.getAttributeNode("id").value===a?[e]:b:[]}},TAG:Y?function(a,b){if(typeof b.getElementsByTagName!==n)return b.getElementsByTagName(a)}:function(a,b){var c=b.getElementsByTagName(a);if(a==="*"){var d,e=[],f=0;for(;d=c[f];f++)d.nodeType===1&&e.push(d);return e}return c},NAME:ba&&function(a,b){if(typeof b.getElementsByName!==n)return b.getElementsByName(name)},CLASS:_&&function(a,b,c){if(typeof b.getElementsByClassName!==n&&!c)return b.getElementsByClassName(a)}},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(a){return a[1]=a[1].replace(V,""),a[3]=(a[4]||a[5]||"").replace(V,""),a[2]==="~="&&(a[3]=" "+a[3]+" "),a.slice(0,4)},CHILD:function(a){return a[1]=a[1].toLowerCase(),a[1]==="nth"?(a[2]||bc.error(a[0]),a[3]=+(a[3]?a[4]+(a[5]||1):2*(a[2]==="even"||a[2]==="odd")),a[4]=+(a[6]+a[7]||a[2]==="odd")):a[2]&&bc.error(a[0]),a},PSEUDO:function(a){var b,c;if(W.CHILD.test(a[0]))return null;if(a[3])a[2]=a[3];else if(b=a[4])O.test(b)&&(c=bh(b,!0))&&(c=b.indexOf(")",b.length-c)-b.length)&&(b=b.slice(0,c),a[0]=a[0].slice(0,c)),a[2]=b;return a.slice(0,3)}},filter:{ID:d?function(a){return a=a.replace(V,""),function(b){return b.getAttribute("id")===a}}:function(a){return a=a.replace(V,""),function(b){var c=typeof b.getAttributeNode!==n&&b.getAttributeNode("id");return c&&c.value===a}},TAG:function(a){return a==="*"?function(){return!0}:(a=a.replace(V,"").toLowerCase(),function(b){return b.nodeName&&b.nodeName.toLowerCase()===a})},CLASS:function(a){var b=B[o][a];return b||(b=B(a,new RegExp("(^|"+E+")"+a+"("+E+"|$)"))),function(a){return b.test(a.className||typeof a.getAttribute!==n&&a.getAttribute("class")||"")}},ATTR:function(a,b,c){return function(d,e){var f=bc.attr(d,a);return f==null?b==="!=":b?(f+="",b==="="?f===c:b==="!="?f!==c:b==="^="?c&&f.indexOf(c)===0:b==="*="?c&&f.indexOf(c)>-1:b==="$="?c&&f.substr(f.length-c.length)===c:b==="~="?(" "+f+" ").indexOf(c)>-1:b==="|="?f===c||f.substr(0,c.length+1)===c+"-":!1):!0}},CHILD:function(a,b,c,d){return a==="nth"?function(a){var b,e,f=a.parentNode;if(c===1&&d===0)return!0;if(f){e=0;for(b=f.firstChild;b;b=b.nextSibling)if(b.nodeType===1){e++;if(a===b)break}}return e-=d,e===c||e%c===0&&e/c>=0}:function(b){var c=b;switch(a){case"only":case"first":while(c=c.previousSibling)if(c.nodeType===1)return!1;if(a==="first")return!0;c=b;case"last":while(c=c.nextSibling)if(c.nodeType===1)return!1;return!0}}},PSEUDO:function(a,b){var c,d=e.pseudos[a]||e.setFilters[a.toLowerCase()]||bc.error("unsupported pseudo: "+a);return d[o]?d(b):d.length>1?(c=[a,a,"",b],e.setFilters.hasOwnProperty(a.toLowerCase())?z(function(a,c){var e,f=d(a,b),g=f.length;while(g--)e=y.call(a,f[g]),a[e]=!(c[e]=f[g])}):function(a){return d(a,0,c)}):d}},pseudos:{not:z(function(a){var b=[],c=[],d=i(a.replace(L,"$1"));return d[o]?z(function(a,b,c,e){var f,g=d(a,null,e,[]),h=a.length;while(h--)if(f=g[h])a[h]=!(b[h]=f)}):function(a,e,f){return b[0]=a,d(b,null,f,c),!c.pop()}}),has:z(function(a){return function(b){return bc(a,b).length>0}}),contains:z(function(a){return function(b){return(b.textContent||b.innerText||f(b)).indexOf(a)>-1}}),enabled:function(a){return a.disabled===!1},disabled:function(a){return a.disabled===!0},checked:function(a){var b=a.nodeName.toLowerCase();return b==="input"&&!!a.checked||b==="option"&&!!a.selected},selected:function(a){return a.parentNode&&a.parentNode.selectedIndex,a.selected===!0},parent:function(a){return!e.pseudos.empty(a)},empty:function(a){var b;a=a.firstChild;while(a){if(a.nodeName>"@"||(b=a.nodeType)===3||b===4)return!1;a=a.nextSibling}return!0},header:function(a){return T.test(a.nodeName)},text:function(a){var b,c;return a.nodeName.toLowerCase()==="input"&&(b=a.type)==="text"&&((c=a.getAttribute("type"))==null||c.toLowerCase()===b)},radio:bd("radio"),checkbox:bd("checkbox"),file:bd("file"),password:bd("password"),image:bd("image"),submit:be("submit"),reset:be("reset"),button:function(a){var b=a.nodeName.toLowerCase();return b==="input"&&a.type==="button"||b==="button"},input:function(a){return U.test(a.nodeName)},focus:function(a){var b=a.ownerDocument;return a===b.activeElement&&(!b.hasFocus||b.hasFocus())&&(!!a.type||!!a.href)},active:function(a){return a===a.ownerDocument.activeElement},first:bf(function(a,b,c){return[0]}),last:bf(function(a,b,c){return[b-1]}),eq:bf(function(a,b,c){return[c<0?c+b:c]}),even:bf(function(a,b,c){for(var d=0;d<b;d+=2)a.push(d);return a}),odd:bf(function(a,b,c){for(var d=1;d<b;d+=2)a.push(d);return a}),lt:bf(function(a,b,c){for(var d=c<0?c+b:c;--d>=0;)a.push(d);return a}),gt:bf(function(a,b,c){for(var d=c<0?c+b:c;++d<b;)a.push(d);return a})}},j=s.compareDocumentPosition?function(a,b){return a===b?(k=!0,0):(!a.compareDocumentPosition||!b.compareDocumentPosition?a.compareDocumentPosition:a.compareDocumentPosition(b)&4)?-1:1}:function(a,b){if(a===b)return k=!0,0;if(a.sourceIndex&&b.sourceIndex)return a.sourceIndex-b.sourceIndex;var c,d,e=[],f=[],g=a.parentNode,h=b.parentNode,i=g;if(g===h)return bg(a,b);if(!g)return-1;if(!h)return 1;while(i)e.unshift(i),i=i.parentNode;i=h;while(i)f.unshift(i),i=i.parentNode;c=e.length,d=f.length;for(var j=0;j<c&&j<d;j++)if(e[j]!==f[j])return bg(e[j],f[j]);return j===c?bg(a,f[j],-1):bg(e[j],b,1)},[0,0].sort(j),m=!k,bc.uniqueSort=function(a){var b,c=1;k=m,a.sort(j);if(k)for(;b=a[c];c++)b===a[c-1]&&a.splice(c--,1);return a},bc.error=function(a){throw new Error("Syntax error, unrecognized expression: "+a)},i=bc.compile=function(a,b){var c,d=[],e=[],f=D[o][a];if(!f){b||(b=bh(a)),c=b.length;while(c--)f=bm(b[c]),f[o]?d.push(f):e.push(f);f=D(a,bn(e,d))}return f},r.querySelectorAll&&function(){var a,b=bp,c=/'|\\/g,d=/\=[\x20\t\r\n\f]*([^'"\]]*)[\x20\t\r\n\f]*\]/g,e=[":focus"],f=[":active",":focus"],h=s.matchesSelector||s.mozMatchesSelector||s.webkitMatchesSelector||s.oMatchesSelector||s.msMatchesSelector;X(function(a){a.innerHTML="<select><option selected=''></option></select>",a.querySelectorAll("[selected]").length||e.push("\\["+E+"*(?:checked|disabled|ismap|multiple|readonly|selected|value)"),a.querySelectorAll(":checked").length||e.push(":checked")}),X(function(a){a.innerHTML="<p test=''></p>",a.querySelectorAll("[test^='']").length&&e.push("[*^$]="+E+"*(?:\"\"|'')"),a.innerHTML="<input type='hidden'/>",a.querySelectorAll(":enabled").length||e.push(":enabled",":disabled")}),e=new RegExp(e.join("|")),bp=function(a,d,f,g,h){if(!g&&!h&&(!e||!e.test(a))){var i,j,k=!0,l=o,m=d,n=d.nodeType===9&&a;if(d.nodeType===1&&d.nodeName.toLowerCase()!=="object"){i=bh(a),(k=d.getAttribute("id"))?l=k.replace(c,"\\$&"):d.setAttribute("id",l),l="[id='"+l+"'] ",j=i.length;while(j--)i[j]=l+i[j].join("");m=R.test(a)&&d.parentNode||d,n=i.join(",")}if(n)try{return w.apply(f,x.call(m.querySelectorAll(n),0)),f}catch(p){}finally{k||d.removeAttribute("id")}}return b(a,d,f,g,h)},h&&(X(function(b){a=h.call(b,"div");try{h.call(b,"[test!='']:sizzle"),f.push("!=",J)}catch(c){}}),f=new RegExp(f.join("|")),bc.matchesSelector=function(b,c){c=c.replace(d,"='$1']");if(!g(b)&&!f.test(c)&&(!e||!e.test(c)))try{var i=h.call(b,c);if(i||a||b.document&&b.document.nodeType!==11)return i}catch(j){}return bc(c,null,null,[b]).length>0})}(),e.pseudos.nth=e.pseudos.eq,e.filters=bq.prototype=e.pseudos,e.setFilters=new bq,bc.attr=p.attr,p.find=bc,p.expr=bc.selectors,p.expr[":"]=p.expr.pseudos,p.unique=bc.uniqueSort,p.text=bc.getText,p.isXMLDoc=bc.isXML,p.contains=bc.contains}(a);var bc=/Until$/,bd=/^(?:parents|prev(?:Until|All))/,be=/^.[^:#\[\.,]*$/,bf=p.expr.match.needsContext,bg={children:!0,contents:!0,next:!0,prev:!0};p.fn.extend({find:function(a){var b,c,d,e,f,g,h=this;if(typeof a!="string")return p(a).filter(function(){for(b=0,c=h.length;b<c;b++)if(p.contains(h[b],this))return!0});g=this.pushStack("","find",a);for(b=0,c=this.length;b<c;b++){d=g.length,p.find(a,this[b],g);if(b>0)for(e=d;e<g.length;e++)for(f=0;f<d;f++)if(g[f]===g[e]){g.splice(e--,1);break}}return g},has:function(a){var b,c=p(a,this),d=c.length;return this.filter(function(){for(b=0;b<d;b++)if(p.contains(this,c[b]))return!0})},not:function(a){return this.pushStack(bj(this,a,!1),"not",a)},filter:function(a){return this.pushStack(bj(this,a,!0),"filter",a)},is:function(a){return!!a&&(typeof a=="string"?bf.test(a)?p(a,this.context).index(this[0])>=0:p.filter(a,this).length>0:this.filter(a).length>0)},closest:function(a,b){var c,d=0,e=this.length,f=[],g=bf.test(a)||typeof a!="string"?p(a,b||this.context):0;for(;d<e;d++){c=this[d];while(c&&c.ownerDocument&&c!==b&&c.nodeType!==11){if(g?g.index(c)>-1:p.find.matchesSelector(c,a)){f.push(c);break}c=c.parentNode}}return f=f.length>1?p.unique(f):f,this.pushStack(f,"closest",a)},index:function(a){return a?typeof a=="string"?p.inArray(this[0],p(a)):p.inArray(a.jquery?a[0]:a,this):this[0]&&this[0].parentNode?this.prevAll().length:-1},add:function(a,b){var c=typeof a=="string"?p(a,b):p.makeArray(a&&a.nodeType?[a]:a),d=p.merge(this.get(),c);return this.pushStack(bh(c[0])||bh(d[0])?d:p.unique(d))},addBack:function(a){return this.add(a==null?this.prevObject:this.prevObject.filter(a))}}),p.fn.andSelf=p.fn.addBack,p.each({parent:function(a){var b=a.parentNode;return b&&b.nodeType!==11?b:null},parents:function(a){return p.dir(a,"parentNode")},parentsUntil:function(a,b,c){return p.dir(a,"parentNode",c)},next:function(a){return bi(a,"nextSibling")},prev:function(a){return bi(a,"previousSibling")},nextAll:function(a){return p.dir(a,"nextSibling")},prevAll:function(a){return p.dir(a,"previousSibling")},nextUntil:function(a,b,c){return p.dir(a,"nextSibling",c)},prevUntil:function(a,b,c){return p.dir(a,"previousSibling",c)},siblings:function(a){return p.sibling((a.parentNode||{}).firstChild,a)},children:function(a){return p.sibling(a.firstChild)},contents:function(a){return p.nodeName(a,"iframe")?a.contentDocument||a.contentWindow.document:p.merge([],a.childNodes)}},function(a,b){p.fn[a]=function(c,d){var e=p.map(this,b,c);return bc.test(a)||(d=c),d&&typeof d=="string"&&(e=p.filter(d,e)),e=this.length>1&&!bg[a]?p.unique(e):e,this.length>1&&bd.test(a)&&(e=e.reverse()),this.pushStack(e,a,k.call(arguments).join(","))}}),p.extend({filter:function(a,b,c){return c&&(a=":not("+a+")"),b.length===1?p.find.matchesSelector(b[0],a)?[b[0]]:[]:p.find.matches(a,b)},dir:function(a,c,d){var e=[],f=a[c];while(f&&f.nodeType!==9&&(d===b||f.nodeType!==1||!p(f).is(d)))f.nodeType===1&&e.push(f),f=f[c];return e},sibling:function(a,b){var c=[];for(;a;a=a.nextSibling)a.nodeType===1&&a!==b&&c.push(a);return c}});var bl="abbr|article|aside|audio|bdi|canvas|data|datalist|details|figcaption|figure|footer|header|hgroup|mark|meter|nav|output|progress|section|summary|time|video",bm=/ jQuery\d+="(?:null|\d+)"/g,bn=/^\s+/,bo=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/gi,bp=/<([\w:]+)/,bq=/<tbody/i,br=/<|&#?\w+;/,bs=/<(?:script|style|link)/i,bt=/<(?:script|object|embed|option|style)/i,bu=new RegExp("<(?:"+bl+")[\\s/>]","i"),bv=/^(?:checkbox|radio)$/,bw=/checked\s*(?:[^=]|=\s*.checked.)/i,bx=/\/(java|ecma)script/i,by=/^\s*<!(?:\[CDATA\[|\-\-)|[\]\-]{2}>\s*$/g,bz={option:[1,"<select multiple='multiple'>","</select>"],legend:[1,"<fieldset>","</fieldset>"],thead:[1,"<table>","</table>"],tr:[2,"<table><tbody>","</tbody></table>"],td:[3,"<table><tbody><tr>","</tr></tbody></table>"],col:[2,"<table><tbody></tbody><colgroup>","</colgroup></table>"],area:[1,"<map>","</map>"],_default:[0,"",""]},bA=bk(e),bB=bA.appendChild(e.createElement("div"));bz.optgroup=bz.option,bz.tbody=bz.tfoot=bz.colgroup=bz.caption=bz.thead,bz.th=bz.td,p.support.htmlSerialize||(bz._default=[1,"X<div>","</div>"]),p.fn.extend({text:function(a){return p.access(this,function(a){return a===b?p.text(this):this.empty().append((this[0]&&this[0].ownerDocument||e).createTextNode(a))},null,a,arguments.length)},wrapAll:function(a){if(p.isFunction(a))return this.each(function(b){p(this).wrapAll(a.call(this,b))});if(this[0]){var b=p(a,this[0].ownerDocument).eq(0).clone(!0);this[0].parentNode&&b.insertBefore(this[0]),b.map(function(){var a=this;while(a.firstChild&&a.firstChild.nodeType===1)a=a.firstChild;return a}).append(this)}return this},wrapInner:function(a){return p.isFunction(a)?this.each(function(b){p(this).wrapInner(a.call(this,b))}):this.each(function(){var b=p(this),c=b.contents();c.length?c.wrapAll(a):b.append(a)})},wrap:function(a){var b=p.isFunction(a);return this.each(function(c){p(this).wrapAll(b?a.call(this,c):a)})},unwrap:function(){return this.parent().each(function(){p.nodeName(this,"body")||p(this).replaceWith(this.childNodes)}).end()},append:function(){return this.domManip(arguments,!0,function(a){(this.nodeType===1||this.nodeType===11)&&this.appendChild(a)})},prepend:function(){return this.domManip(arguments,!0,function(a){(this.nodeType===1||this.nodeType===11)&&this.insertBefore(a,this.firstChild)})},before:function(){if(!bh(this[0]))return this.domManip(arguments,!1,function(a){this.parentNode.insertBefore(a,this)});if(arguments.length){var a=p.clean(arguments);return this.pushStack(p.merge(a,this),"before",this.selector)}},after:function(){if(!bh(this[0]))return this.domManip(arguments,!1,function(a){this.parentNode.insertBefore(a,this.nextSibling)});if(arguments.length){var a=p.clean(arguments);return this.pushStack(p.merge(this,a),"after",this.selector)}},remove:function(a,b){var c,d=0;for(;(c=this[d])!=null;d++)if(!a||p.filter(a,[c]).length)!b&&c.nodeType===1&&(p.cleanData(c.getElementsByTagName("*")),p.cleanData([c])),c.parentNode&&c.parentNode.removeChild(c);return this},empty:function(){var a,b=0;for(;(a=this[b])!=null;b++){a.nodeType===1&&p.cleanData(a.getElementsByTagName("*"));while(a.firstChild)a.removeChild(a.firstChild)}return this},clone:function(a,b){return a=a==null?!1:a,b=b==null?a:b,this.map(function(){return p.clone(this,a,b)})},html:function(a){return p.access(this,function(a){var c=this[0]||{},d=0,e=this.length;if(a===b)return c.nodeType===1?c.innerHTML.replace(bm,""):b;if(typeof a=="string"&&!bs.test(a)&&(p.support.htmlSerialize||!bu.test(a))&&(p.support.leadingWhitespace||!bn.test(a))&&!bz[(bp.exec(a)||["",""])[1].toLowerCase()]){a=a.replace(bo,"<$1></$2>");try{for(;d<e;d++)c=this[d]||{},c.nodeType===1&&(p.cleanData(c.getElementsByTagName("*")),c.innerHTML=a);c=0}catch(f){}}c&&this.empty().append(a)},null,a,arguments.length)},replaceWith:function(a){return bh(this[0])?this.length?this.pushStack(p(p.isFunction(a)?a():a),"replaceWith",a):this:p.isFunction(a)?this.each(function(b){var c=p(this),d=c.html();c.replaceWith(a.call(this,b,d))}):(typeof a!="string"&&(a=p(a).detach()),this.each(function(){var b=this.nextSibling,c=this.parentNode;p(this).remove(),b?p(b).before(a):p(c).append(a)}))},detach:function(a){return this.remove(a,!0)},domManip:function(a,c,d){a=[].concat.apply([],a);var e,f,g,h,i=0,j=a[0],k=[],l=this.length;if(!p.support.checkClone&&l>1&&typeof j=="string"&&bw.test(j))return this.each(function(){p(this).domManip(a,c,d)});if(p.isFunction(j))return this.each(function(e){var f=p(this);a[0]=j.call(this,e,c?f.html():b),f.domManip(a,c,d)});if(this[0]){e=p.buildFragment(a,this,k),g=e.fragment,f=g.firstChild,g.childNodes.length===1&&(g=f);if(f){c=c&&p.nodeName(f,"tr");for(h=e.cacheable||l-1;i<l;i++)d.call(c&&p.nodeName(this[i],"table")?bC(this[i],"tbody"):this[i],i===h?g:p.clone(g,!0,!0))}g=f=null,k.length&&p.each(k,function(a,b){b.src?p.ajax?p.ajax({url:b.src,type:"GET",dataType:"script",async:!1,global:!1,"throws":!0}):p.error("no ajax"):p.globalEval((b.text||b.textContent||b.innerHTML||"").replace(by,"")),b.parentNode&&b.parentNode.removeChild(b)})}return this}}),p.buildFragment=function(a,c,d){var f,g,h,i=a[0];return c=c||e,c=!c.nodeType&&c[0]||c,c=c.ownerDocument||c,a.length===1&&typeof i=="string"&&i.length<512&&c===e&&i.charAt(0)==="<"&&!bt.test(i)&&(p.support.checkClone||!bw.test(i))&&(p.support.html5Clone||!bu.test(i))&&(g=!0,f=p.fragments[i],h=f!==b),f||(f=c.createDocumentFragment(),p.clean(a,c,f,d),g&&(p.fragments[i]=h&&f)),{fragment:f,cacheable:g}},p.fragments={},p.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(a,b){p.fn[a]=function(c){var d,e=0,f=[],g=p(c),h=g.length,i=this.length===1&&this[0].parentNode;if((i==null||i&&i.nodeType===11&&i.childNodes.length===1)&&h===1)return g[b](this[0]),this;for(;e<h;e++)d=(e>0?this.clone(!0):this).get(),p(g[e])[b](d),f=f.concat(d);return this.pushStack(f,a,g.selector)}}),p.extend({clone:function(a,b,c){var d,e,f,g;p.support.html5Clone||p.isXMLDoc(a)||!bu.test("<"+a.nodeName+">")?g=a.cloneNode(!0):(bB.innerHTML=a.outerHTML,bB.removeChild(g=bB.firstChild));if((!p.support.noCloneEvent||!p.support.noCloneChecked)&&(a.nodeType===1||a.nodeType===11)&&!p.isXMLDoc(a)){bE(a,g),d=bF(a),e=bF(g);for(f=0;d[f];++f)e[f]&&bE(d[f],e[f])}if(b){bD(a,g);if(c){d=bF(a),e=bF(g);for(f=0;d[f];++f)bD(d[f],e[f])}}return d=e=null,g},clean:function(a,b,c,d){var f,g,h,i,j,k,l,m,n,o,q,r,s=b===e&&bA,t=[];if(!b||typeof b.createDocumentFragment=="undefined")b=e;for(f=0;(h=a[f])!=null;f++){typeof h=="number"&&(h+="");if(!h)continue;if(typeof h=="string")if(!br.test(h))h=b.createTextNode(h);else{s=s||bk(b),l=b.createElement("div"),s.appendChild(l),h=h.replace(bo,"<$1></$2>"),i=(bp.exec(h)||["",""])[1].toLowerCase(),j=bz[i]||bz._default,k=j[0],l.innerHTML=j[1]+h+j[2];while(k--)l=l.lastChild;if(!p.support.tbody){m=bq.test(h),n=i==="table"&&!m?l.firstChild&&l.firstChild.childNodes:j[1]==="<table>"&&!m?l.childNodes:[];for(g=n.length-1;g>=0;--g)p.nodeName(n[g],"tbody")&&!n[g].childNodes.length&&n[g].parentNode.removeChild(n[g])}!p.support.leadingWhitespace&&bn.test(h)&&l.insertBefore(b.createTextNode(bn.exec(h)[0]),l.firstChild),h=l.childNodes,l.parentNode.removeChild(l)}h.nodeType?t.push(h):p.merge(t,h)}l&&(h=l=s=null);if(!p.support.appendChecked)for(f=0;(h=t[f])!=null;f++)p.nodeName(h,"input")?bG(h):typeof h.getElementsByTagName!="undefined"&&p.grep(h.getElementsByTagName("input"),bG);if(c){q=function(a){if(!a.type||bx.test(a.type))return d?d.push(a.parentNode?a.parentNode.removeChild(a):a):c.appendChild(a)};for(f=0;(h=t[f])!=null;f++)if(!p.nodeName(h,"script")||!q(h))c.appendChild(h),typeof h.getElementsByTagName!="undefined"&&(r=p.grep(p.merge([],h.getElementsByTagName("script")),q),t.splice.apply(t,[f+1,0].concat(r)),f+=r.length)}return t},cleanData:function(a,b){var c,d,e,f,g=0,h=p.expando,i=p.cache,j=p.support.deleteExpando,k=p.event.special;for(;(e=a[g])!=null;g++)if(b||p.acceptData(e)){d=e[h],c=d&&i[d];if(c){if(c.events)for(f in c.events)k[f]?p.event.remove(e,f):p.removeEvent(e,f,c.handle);i[d]&&(delete i[d],j?delete e[h]:e.removeAttribute?e.removeAttribute(h):e[h]=null,p.deletedIds.push(d))}}}}),function(){var a,b;p.uaMatch=function(a){a=a.toLowerCase();var b=/(chrome)[ \/]([\w.]+)/.exec(a)||/(webkit)[ \/]([\w.]+)/.exec(a)||/(opera)(?:.*version|)[ \/]([\w.]+)/.exec(a)||/(msie) ([\w.]+)/.exec(a)||a.indexOf("compatible")<0&&/(mozilla)(?:.*? rv:([\w.]+)|)/.exec(a)||[];return{browser:b[1]||"",version:b[2]||"0"}},a=p.uaMatch(g.userAgent),b={},a.browser&&(b[a.browser]=!0,b.version=a.version),b.chrome?b.webkit=!0:b.webkit&&(b.safari=!0),p.browser=b,p.sub=function(){function a(b,c){return new a.fn.init(b,c)}p.extend(!0,a,this),a.superclass=this,a.fn=a.prototype=this(),a.fn.constructor=a,a.sub=this.sub,a.fn.init=function c(c,d){return d&&d instanceof p&&!(d instanceof a)&&(d=a(d)),p.fn.init.call(this,c,d,b)},a.fn.init.prototype=a.fn;var b=a(e);return a}}();var bH,bI,bJ,bK=/alpha\([^)]*\)/i,bL=/opacity=([^)]*)/,bM=/^(top|right|bottom|left)$/,bN=/^(none|table(?!-c[ea]).+)/,bO=/^margin/,bP=new RegExp("^("+q+")(.*)$","i"),bQ=new RegExp("^("+q+")(?!px)[a-z%]+$","i"),bR=new RegExp("^([-+])=("+q+")","i"),bS={},bT={position:"absolute",visibility:"hidden",display:"block"},bU={letterSpacing:0,fontWeight:400},bV=["Top","Right","Bottom","Left"],bW=["Webkit","O","Moz","ms"],bX=p.fn.toggle;p.fn.extend({css:function(a,c){return p.access(this,function(a,c,d){return d!==b?p.style(a,c,d):p.css(a,c)},a,c,arguments.length>1)},show:function(){return b$(this,!0)},hide:function(){return b$(this)},toggle:function(a,b){var c=typeof a=="boolean";return p.isFunction(a)&&p.isFunction(b)?bX.apply(this,arguments):this.each(function(){(c?a:bZ(this))?p(this).show():p(this).hide()})}}),p.extend({cssHooks:{opacity:{get:function(a,b){if(b){var c=bH(a,"opacity");return c===""?"1":c}}}},cssNumber:{fillOpacity:!0,fontWeight:!0,lineHeight:!0,opacity:!0,orphans:!0,widows:!0,zIndex:!0,zoom:!0},cssProps:{"float":p.support.cssFloat?"cssFloat":"styleFloat"},style:function(a,c,d,e){if(!a||a.nodeType===3||a.nodeType===8||!a.style)return;var f,g,h,i=p.camelCase(c),j=a.style;c=p.cssProps[i]||(p.cssProps[i]=bY(j,i)),h=p.cssHooks[c]||p.cssHooks[i];if(d===b)return h&&"get"in h&&(f=h.get(a,!1,e))!==b?f:j[c];g=typeof d,g==="string"&&(f=bR.exec(d))&&(d=(f[1]+1)*f[2]+parseFloat(p.css(a,c)),g="number");if(d==null||g==="number"&&isNaN(d))return;g==="number"&&!p.cssNumber[i]&&(d+="px");if(!h||!("set"in h)||(d=h.set(a,d,e))!==b)try{j[c]=d}catch(k){}},css:function(a,c,d,e){var f,g,h,i=p.camelCase(c);return c=p.cssProps[i]||(p.cssProps[i]=bY(a.style,i)),h=p.cssHooks[c]||p.cssHooks[i],h&&"get"in h&&(f=h.get(a,!0,e)),f===b&&(f=bH(a,c)),f==="normal"&&c in bU&&(f=bU[c]),d||e!==b?(g=parseFloat(f),d||p.isNumeric(g)?g||0:f):f},swap:function(a,b,c){var d,e,f={};for(e in b)f[e]=a.style[e],a.style[e]=b[e];d=c.call(a);for(e in b)a.style[e]=f[e];return d}}),a.getComputedStyle?bH=function(b,c){var d,e,f,g,h=a.getComputedStyle(b,null),i=b.style;return h&&(d=h[c],d===""&&!p.contains(b.ownerDocument,b)&&(d=p.style(b,c)),bQ.test(d)&&bO.test(c)&&(e=i.width,f=i.minWidth,g=i.maxWidth,i.minWidth=i.maxWidth=i.width=d,d=h.width,i.width=e,i.minWidth=f,i.maxWidth=g)),d}:e.documentElement.currentStyle&&(bH=function(a,b){var c,d,e=a.currentStyle&&a.currentStyle[b],f=a.style;return e==null&&f&&f[b]&&(e=f[b]),bQ.test(e)&&!bM.test(b)&&(c=f.left,d=a.runtimeStyle&&a.runtimeStyle.left,d&&(a.runtimeStyle.left=a.currentStyle.left),f.left=b==="fontSize"?"1em":e,e=f.pixelLeft+"px",f.left=c,d&&(a.runtimeStyle.left=d)),e===""?"auto":e}),p.each(["height","width"],function(a,b){p.cssHooks[b]={get:function(a,c,d){if(c)return a.offsetWidth===0&&bN.test(bH(a,"display"))?p.swap(a,bT,function(){return cb(a,b,d)}):cb(a,b,d)},set:function(a,c,d){return b_(a,c,d?ca(a,b,d,p.support.boxSizing&&p.css(a,"boxSizing")==="border-box"):0)}}}),p.support.opacity||(p.cssHooks.opacity={get:function(a,b){return bL.test((b&&a.currentStyle?a.currentStyle.filter:a.style.filter)||"")?.01*parseFloat(RegExp.$1)+"":b?"1":""},set:function(a,b){var c=a.style,d=a.currentStyle,e=p.isNumeric(b)?"alpha(opacity="+b*100+")":"",f=d&&d.filter||c.filter||"";c.zoom=1;if(b>=1&&p.trim(f.replace(bK,""))===""&&c.removeAttribute){c.removeAttribute("filter");if(d&&!d.filter)return}c.filter=bK.test(f)?f.replace(bK,e):f+" "+e}}),p(function(){p.support.reliableMarginRight||(p.cssHooks.marginRight={get:function(a,b){return p.swap(a,{display:"inline-block"},function(){if(b)return bH(a,"marginRight")})}}),!p.support.pixelPosition&&p.fn.position&&p.each(["top","left"],function(a,b){p.cssHooks[b]={get:function(a,c){if(c){var d=bH(a,b);return bQ.test(d)?p(a).position()[b]+"px":d}}}})}),p.expr&&p.expr.filters&&(p.expr.filters.hidden=function(a){return a.offsetWidth===0&&a.offsetHeight===0||!p.support.reliableHiddenOffsets&&(a.style&&a.style.display||bH(a,"display"))==="none"},p.expr.filters.visible=function(a){return!p.expr.filters.hidden(a)}),p.each({margin:"",padding:"",border:"Width"},function(a,b){p.cssHooks[a+b]={expand:function(c){var d,e=typeof c=="string"?c.split(" "):[c],f={};for(d=0;d<4;d++)f[a+bV[d]+b]=e[d]||e[d-2]||e[0];return f}},bO.test(a)||(p.cssHooks[a+b].set=b_)});var cd=/%20/g,ce=/\[\]$/,cf=/\r?\n/g,cg=/^(?:color|date|datetime|datetime-local|email|hidden|month|number|password|range|search|tel|text|time|url|week)$/i,ch=/^(?:select|textarea)/i;p.fn.extend({serialize:function(){return p.param(this.serializeArray())},serializeArray:function(){return this.map(function(){return this.elements?p.makeArray(this.elements):this}).filter(function(){return this.name&&!this.disabled&&(this.checked||ch.test(this.nodeName)||cg.test(this.type))}).map(function(a,b){var c=p(this).val();return c==null?null:p.isArray(c)?p.map(c,function(a,c){return{name:b.name,value:a.replace(cf,"\r\n")}}):{name:b.name,value:c.replace(cf,"\r\n")}}).get()}}),p.param=function(a,c){var d,e=[],f=function(a,b){b=p.isFunction(b)?b():b==null?"":b,e[e.length]=encodeURIComponent(a)+"="+encodeURIComponent(b)};c===b&&(c=p.ajaxSettings&&p.ajaxSettings.traditional);if(p.isArray(a)||a.jquery&&!p.isPlainObject(a))p.each(a,function(){f(this.name,this.value)});else for(d in a)ci(d,a[d],c,f);return e.join("&").replace(cd,"+")};var cj,ck,cl=/#.*$/,cm=/^(.*?):[ \t]*([^\r\n]*)\r?$/mg,cn=/^(?:about|app|app\-storage|.+\-extension|file|res|widget):$/,co=/^(?:GET|HEAD)$/,cp=/^\/\//,cq=/\?/,cr=/<script\b[^<]*(?:(?!<\/script>)<[^<]*)*<\/script>/gi,cs=/([?&])_=[^&]*/,ct=/^([\w\+\.\-]+:)(?:\/\/([^\/?#:]*)(?::(\d+)|)|)/,cu=p.fn.load,cv={},cw={},cx=["*/"]+["*"];try{ck=f.href}catch(cy){ck=e.createElement("a"),ck.href="",ck=ck.href}cj=ct.exec(ck.toLowerCase())||[],p.fn.load=function(a,c,d){if(typeof a!="string"&&cu)return cu.apply(this,arguments);if(!this.length)return this;var e,f,g,h=this,i=a.indexOf(" ");return i>=0&&(e=a.slice(i,a.length),a=a.slice(0,i)),p.isFunction(c)?(d=c,c=b):c&&typeof c=="object"&&(f="POST"),p.ajax({url:a,type:f,dataType:"html",data:c,complete:function(a,b){d&&h.each(d,g||[a.responseText,b,a])}}).done(function(a){g=arguments,h.html(e?p("<div>").append(a.replace(cr,"")).find(e):a)}),this},p.each("ajaxStart ajaxStop ajaxComplete ajaxError ajaxSuccess ajaxSend".split(" "),function(a,b){p.fn[b]=function(a){return this.on(b,a)}}),p.each(["get","post"],function(a,c){p[c]=function(a,d,e,f){return p.isFunction(d)&&(f=f||e,e=d,d=b),p.ajax({type:c,url:a,data:d,success:e,dataType:f})}}),p.extend({getScript:function(a,c){return p.get(a,b,c,"script")},getJSON:function(a,b,c){return p.get(a,b,c,"json")},ajaxSetup:function(a,b){return b?cB(a,p.ajaxSettings):(b=a,a=p.ajaxSettings),cB(a,b),a},ajaxSettings:{url:ck,isLocal:cn.test(cj[1]),global:!0,type:"GET",contentType:"application/x-www-form-urlencoded; charset=UTF-8",processData:!0,async:!0,accepts:{xml:"application/xml, text/xml",html:"text/html",text:"text/plain",json:"application/json, text/javascript","*":cx},contents:{xml:/xml/,html:/html/,json:/json/},responseFields:{xml:"responseXML",text:"responseText"},converters:{"* text":a.String,"text html":!0,"text json":p.parseJSON,"text xml":p.parseXML},flatOptions:{context:!0,url:!0}},ajaxPrefilter:cz(cv),ajaxTransport:cz(cw),ajax:function(a,c){function y(a,c,f,i){var k,s,t,u,w,y=c;if(v===2)return;v=2,h&&clearTimeout(h),g=b,e=i||"",x.readyState=a>0?4:0,f&&(u=cC(l,x,f));if(a>=200&&a<300||a===304)l.ifModified&&(w=x.getResponseHeader("Last-Modified"),w&&(p.lastModified[d]=w),w=x.getResponseHeader("Etag"),w&&(p.etag[d]=w)),a===304?(y="notmodified",k=!0):(k=cD(l,u),y=k.state,s=k.data,t=k.error,k=!t);else{t=y;if(!y||a)y="error",a<0&&(a=0)}x.status=a,x.statusText=(c||y)+"",k?o.resolveWith(m,[s,y,x]):o.rejectWith(m,[x,y,t]),x.statusCode(r),r=b,j&&n.trigger("ajax"+(k?"Success":"Error"),[x,l,k?s:t]),q.fireWith(m,[x,y]),j&&(n.trigger("ajaxComplete",[x,l]),--p.active||p.event.trigger("ajaxStop"))}typeof a=="object"&&(c=a,a=b),c=c||{};var d,e,f,g,h,i,j,k,l=p.ajaxSetup({},c),m=l.context||l,n=m!==l&&(m.nodeType||m instanceof p)?p(m):p.event,o=p.Deferred(),q=p.Callbacks("once memory"),r=l.statusCode||{},t={},u={},v=0,w="canceled",x={readyState:0,setRequestHeader:function(a,b){if(!v){var c=a.toLowerCase();a=u[c]=u[c]||a,t[a]=b}return this},getAllResponseHeaders:function(){return v===2?e:null},getResponseHeader:function(a){var c;if(v===2){if(!f){f={};while(c=cm.exec(e))f[c[1].toLowerCase()]=c[2]}c=f[a.toLowerCase()]}return c===b?null:c},overrideMimeType:function(a){return v||(l.mimeType=a),this},abort:function(a){return a=a||w,g&&g.abort(a),y(0,a),this}};o.promise(x),x.success=x.done,x.error=x.fail,x.complete=q.add,x.statusCode=function(a){if(a){var b;if(v<2)for(b in a)r[b]=[r[b],a[b]];else b=a[x.status],x.always(b)}return this},l.url=((a||l.url)+"").replace(cl,"").replace(cp,cj[1]+"//"),l.dataTypes=p.trim(l.dataType||"*").toLowerCase().split(s),l.crossDomain==null&&(i=ct.exec(l.url.toLowerCase())||!1,l.crossDomain=i&&i.join(":")+(i[3]?"":i[1]==="http:"?80:443)!==cj.join(":")+(cj[3]?"":cj[1]==="http:"?80:443)),l.data&&l.processData&&typeof l.data!="string"&&(l.data=p.param(l.data,l.traditional)),cA(cv,l,c,x);if(v===2)return x;j=l.global,l.type=l.type.toUpperCase(),l.hasContent=!co.test(l.type),j&&p.active++===0&&p.event.trigger("ajaxStart");if(!l.hasContent){l.data&&(l.url+=(cq.test(l.url)?"&":"?")+l.data,delete l.data),d=l.url;if(l.cache===!1){var z=p.now(),A=l.url.replace(cs,"$1_="+z);l.url=A+(A===l.url?(cq.test(l.url)?"&":"?")+"_="+z:"")}}(l.data&&l.hasContent&&l.contentType!==!1||c.contentType)&&x.setRequestHeader("Content-Type",l.contentType),l.ifModified&&(d=d||l.url,p.lastModified[d]&&x.setRequestHeader("If-Modified-Since",p.lastModified[d]),p.etag[d]&&x.setRequestHeader("If-None-Match",p.etag[d])),x.setRequestHeader("Accept",l.dataTypes[0]&&l.accepts[l.dataTypes[0]]?l.accepts[l.dataTypes[0]]+(l.dataTypes[0]!=="*"?", "+cx+"; q=0.01":""):l.accepts["*"]);for(k in l.headers)x.setRequestHeader(k,l.headers[k]);if(!l.beforeSend||l.beforeSend.call(m,x,l)!==!1&&v!==2){w="abort";for(k in{success:1,error:1,complete:1})x[k](l[k]);g=cA(cw,l,c,x);if(!g)y(-1,"No Transport");else{x.readyState=1,j&&n.trigger("ajaxSend",[x,l]),l.async&&l.timeout>0&&(h=setTimeout(function(){x.abort("timeout")},l.timeout));try{v=1,g.send(t,y)}catch(B){if(v<2)y(-1,B);else throw B}}return x}return x.abort()},active:0,lastModified:{},etag:{}});var cE=[],cF=/\?/,cG=/(=)\?(?=&|$)|\?\?/,cH=p.now();p.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var a=cE.pop()||p.expando+"_"+cH++;return this[a]=!0,a}}),p.ajaxPrefilter("json jsonp",function(c,d,e){var f,g,h,i=c.data,j=c.url,k=c.jsonp!==!1,l=k&&cG.test(j),m=k&&!l&&typeof i=="string"&&!(c.contentType||"").indexOf("application/x-www-form-urlencoded")&&cG.test(i);if(c.dataTypes[0]==="jsonp"||l||m)return f=c.jsonpCallback=p.isFunction(c.jsonpCallback)?c.jsonpCallback():c.jsonpCallback,g=a[f],l?c.url=j.replace(cG,"$1"+f):m?c.data=i.replace(cG,"$1"+f):k&&(c.url+=(cF.test(j)?"&":"?")+c.jsonp+"="+f),c.converters["script json"]=function(){return h||p.error(f+" was not called"),h[0]},c.dataTypes[0]="json",a[f]=function(){h=arguments},e.always(function(){a[f]=g,c[f]&&(c.jsonpCallback=d.jsonpCallback,cE.push(f)),h&&p.isFunction(g)&&g(h[0]),h=g=b}),"script"}),p.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/javascript|ecmascript/},converters:{"text script":function(a){return p.globalEval(a),a}}}),p.ajaxPrefilter("script",function(a){a.cache===b&&(a.cache=!1),a.crossDomain&&(a.type="GET",a.global=!1)}),p.ajaxTransport("script",function(a){if(a.crossDomain){var c,d=e.head||e.getElementsByTagName("head")[0]||e.documentElement;return{send:function(f,g){c=e.createElement("script"),c.async="async",a.scriptCharset&&(c.charset=a.scriptCharset),c.src=a.url,c.onload=c.onreadystatechange=function(a,e){if(e||!c.readyState||/loaded|complete/.test(c.readyState))c.onload=c.onreadystatechange=null,d&&c.parentNode&&d.removeChild(c),c=b,e||g(200,"success")},d.insertBefore(c,d.firstChild)},abort:function(){c&&c.onload(0,1)}}}});var cI,cJ=a.ActiveXObject?function(){for(var a in cI)cI[a](0,1)}:!1,cK=0;p.ajaxSettings.xhr=a.ActiveXObject?function(){return!this.isLocal&&cL()||cM()}:cL,function(a){p.extend(p.support,{ajax:!!a,cors:!!a&&"withCredentials"in a})}(p.ajaxSettings.xhr()),p.support.ajax&&p.ajaxTransport(function(c){if(!c.crossDomain||p.support.cors){var d;return{send:function(e,f){var g,h,i=c.xhr();c.username?i.open(c.type,c.url,c.async,c.username,c.password):i.open(c.type,c.url,c.async);if(c.xhrFields)for(h in c.xhrFields)i[h]=c.xhrFields[h];c.mimeType&&i.overrideMimeType&&i.overrideMimeType(c.mimeType),!c.crossDomain&&!e["X-Requested-With"]&&(e["X-Requested-With"]="XMLHttpRequest");try{for(h in e)i.setRequestHeader(h,e[h])}catch(j){}i.send(c.hasContent&&c.data||null),d=function(a,e){var h,j,k,l,m;try{if(d&&(e||i.readyState===4)){d=b,g&&(i.onreadystatechange=p.noop,cJ&&delete cI[g]);if(e)i.readyState!==4&&i.abort();else{h=i.status,k=i.getAllResponseHeaders(),l={},m=i.responseXML,m&&m.documentElement&&(l.xml=m);try{l.text=i.responseText}catch(a){}try{j=i.statusText}catch(n){j=""}!h&&c.isLocal&&!c.crossDomain?h=l.text?200:404:h===1223&&(h=204)}}}catch(o){e||f(-1,o)}l&&f(h,j,l,k)},c.async?i.readyState===4?setTimeout(d,0):(g=++cK,cJ&&(cI||(cI={},p(a).unload(cJ)),cI[g]=d),i.onreadystatechange=d):d()},abort:function(){d&&d(0,1)}}}});var cN,cO,cP=/^(?:toggle|show|hide)$/,cQ=new RegExp("^(?:([-+])=|)("+q+")([a-z%]*)$","i"),cR=/queueHooks$/,cS=[cY],cT={"*":[function(a,b){var c,d,e=this.createTween(a,b),f=cQ.exec(b),g=e.cur(),h=+g||0,i=1,j=20;if(f){c=+f[2],d=f[3]||(p.cssNumber[a]?"":"px");if(d!=="px"&&h){h=p.css(e.elem,a,!0)||c||1;do i=i||".5",h=h/i,p.style(e.elem,a,h+d);while(i!==(i=e.cur()/g)&&i!==1&&--j)}e.unit=d,e.start=h,e.end=f[1]?h+(f[1]+1)*c:c}return e}]};p.Animation=p.extend(cW,{tweener:function(a,b){p.isFunction(a)?(b=a,a=["*"]):a=a.split(" ");var c,d=0,e=a.length;for(;d<e;d++)c=a[d],cT[c]=cT[c]||[],cT[c].unshift(b)},prefilter:function(a,b){b?cS.unshift(a):cS.push(a)}}),p.Tween=cZ,cZ.prototype={constructor:cZ,init:function(a,b,c,d,e,f){this.elem=a,this.prop=c,this.easing=e||"swing",this.options=b,this.start=this.now=this.cur(),this.end=d,this.unit=f||(p.cssNumber[c]?"":"px")},cur:function(){var a=cZ.propHooks[this.prop];return a&&a.get?a.get(this):cZ.propHooks._default.get(this)},run:function(a){var b,c=cZ.propHooks[this.prop];return this.options.duration?this.pos=b=p.easing[this.easing](a,this.options.duration*a,0,1,this.options.duration):this.pos=b=a,this.now=(this.end-this.start)*b+this.start,this.options.step&&this.options.step.call(this.elem,this.now,this),c&&c.set?c.set(this):cZ.propHooks._default.set(this),this}},cZ.prototype.init.prototype=cZ.prototype,cZ.propHooks={_default:{get:function(a){var b;return a.elem[a.prop]==null||!!a.elem.style&&a.elem.style[a.prop]!=null?(b=p.css(a.elem,a.prop,!1,""),!b||b==="auto"?0:b):a.elem[a.prop]},set:function(a){p.fx.step[a.prop]?p.fx.step[a.prop](a):a.elem.style&&(a.elem.style[p.cssProps[a.prop]]!=null||p.cssHooks[a.prop])?p.style(a.elem,a.prop,a.now+a.unit):a.elem[a.prop]=a.now}}},cZ.propHooks.scrollTop=cZ.propHooks.scrollLeft={set:function(a){a.elem.nodeType&&a.elem.parentNode&&(a.elem[a.prop]=a.now)}},p.each(["toggle","show","hide"],function(a,b){var c=p.fn[b];p.fn[b]=function(d,e,f){return d==null||typeof d=="boolean"||!a&&p.isFunction(d)&&p.isFunction(e)?c.apply(this,arguments):this.animate(c$(b,!0),d,e,f)}}),p.fn.extend({fadeTo:function(a,b,c,d){return this.filter(bZ).css("opacity",0).show().end().animate({opacity:b},a,c,d)},animate:function(a,b,c,d){var e=p.isEmptyObject(a),f=p.speed(b,c,d),g=function(){var b=cW(this,p.extend({},a),f);e&&b.stop(!0)};return e||f.queue===!1?this.each(g):this.queue(f.queue,g)},stop:function(a,c,d){var e=function(a){var b=a.stop;delete a.stop,b(d)};return typeof a!="string"&&(d=c,c=a,a=b),c&&a!==!1&&this.queue(a||"fx",[]),this.each(function(){var b=!0,c=a!=null&&a+"queueHooks",f=p.timers,g=p._data(this);if(c)g[c]&&g[c].stop&&e(g[c]);else for(c in g)g[c]&&g[c].stop&&cR.test(c)&&e(g[c]);for(c=f.length;c--;)f[c].elem===this&&(a==null||f[c].queue===a)&&(f[c].anim.stop(d),b=!1,f.splice(c,1));(b||!d)&&p.dequeue(this,a)})}}),p.each({slideDown:c$("show"),slideUp:c$("hide"),slideToggle:c$("toggle"),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"},fadeToggle:{opacity:"toggle"}},function(a,b){p.fn[a]=function(a,c,d){return this.animate(b,a,c,d)}}),p.speed=function(a,b,c){var d=a&&typeof a=="object"?p.extend({},a):{complete:c||!c&&b||p.isFunction(a)&&a,duration:a,easing:c&&b||b&&!p.isFunction(b)&&b};d.duration=p.fx.off?0:typeof d.duration=="number"?d.duration:d.duration in p.fx.speeds?p.fx.speeds[d.duration]:p.fx.speeds._default;if(d.queue==null||d.queue===!0)d.queue="fx";return d.old=d.complete,d.complete=function(){p.isFunction(d.old)&&d.old.call(this),d.queue&&p.dequeue(this,d.queue)},d},p.easing={linear:function(a){return a},swing:function(a){return.5-Math.cos(a*Math.PI)/2}},p.timers=[],p.fx=cZ.prototype.init,p.fx.tick=function(){var a,b=p.timers,c=0;for(;c<b.length;c++)a=b[c],!a()&&b[c]===a&&b.splice(c--,1);b.length||p.fx.stop()},p.fx.timer=function(a){a()&&p.timers.push(a)&&!cO&&(cO=setInterval(p.fx.tick,p.fx.interval))},p.fx.interval=13,p.fx.stop=function(){clearInterval(cO),cO=null},p.fx.speeds={slow:600,fast:200,_default:400},p.fx.step={},p.expr&&p.expr.filters&&(p.expr.filters.animated=function(a){return p.grep(p.timers,function(b){return a===b.elem}).length});var c_=/^(?:body|html)$/i;p.fn.offset=function(a){if(arguments.length)return a===b?this:this.each(function(b){p.offset.setOffset(this,a,b)});var c,d,e,f,g,h,i,j={top:0,left:0},k=this[0],l=k&&k.ownerDocument;if(!l)return;return(d=l.body)===k?p.offset.bodyOffset(k):(c=l.documentElement,p.contains(c,k)?(typeof k.getBoundingClientRect!="undefined"&&(j=k.getBoundingClientRect()),e=da(l),f=c.clientTop||d.clientTop||0,g=c.clientLeft||d.clientLeft||0,h=e.pageYOffset||c.scrollTop,i=e.pageXOffset||c.scrollLeft,{top:j.top+h-f,left:j.left+i-g}):j)},p.offset={bodyOffset:function(a){var b=a.offsetTop,c=a.offsetLeft;return p.support.doesNotIncludeMarginInBodyOffset&&(b+=parseFloat(p.css(a,"marginTop"))||0,c+=parseFloat(p.css(a,"marginLeft"))||0),{top:b,left:c}},setOffset:function(a,b,c){var d=p.css(a,"position");d==="static"&&(a.style.position="relative");var e=p(a),f=e.offset(),g=p.css(a,"top"),h=p.css(a,"left"),i=(d==="absolute"||d==="fixed")&&p.inArray("auto",[g,h])>-1,j={},k={},l,m;i?(k=e.position(),l=k.top,m=k.left):(l=parseFloat(g)||0,m=parseFloat(h)||0),p.isFunction(b)&&(b=b.call(a,c,f)),b.top!=null&&(j.top=b.top-f.top+l),b.left!=null&&(j.left=b.left-f.left+m),"using"in b?b.using.call(a,j):e.css(j)}},p.fn.extend({position:function(){if(!this[0])return;var a=this[0],b=this.offsetParent(),c=this.offset(),d=c_.test(b[0].nodeName)?{top:0,left:0}:b.offset();return c.top-=parseFloat(p.css(a,"marginTop"))||0,c.left-=parseFloat(p.css(a,"marginLeft"))||0,d.top+=parseFloat(p.css(b[0],"borderTopWidth"))||0,d.left+=parseFloat(p.css(b[0],"borderLeftWidth"))||0,{top:c.top-d.top,left:c.left-d.left}},offsetParent:function(){return this.map(function(){var a=this.offsetParent||e.body;while(a&&!c_.test(a.nodeName)&&p.css(a,"position")==="static")a=a.offsetParent;return a||e.body})}}),p.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(a,c){var d=/Y/.test(c);p.fn[a]=function(e){return p.access(this,function(a,e,f){var g=da(a);if(f===b)return g?c in g?g[c]:g.document.documentElement[e]:a[e];g?g.scrollTo(d?p(g).scrollLeft():f,d?f:p(g).scrollTop()):a[e]=f},a,e,arguments.length,null)}}),p.each({Height:"height",Width:"width"},function(a,c){p.each({padding:"inner"+a,content:c,"":"outer"+a},function(d,e){p.fn[e]=function(e,f){var g=arguments.length&&(d||typeof e!="boolean"),h=d||(e===!0||f===!0?"margin":"border");return p.access(this,function(c,d,e){var f;return p.isWindow(c)?c.document.documentElement["client"+a]:c.nodeType===9?(f=c.documentElement,Math.max(c.body["scroll"+a],f["scroll"+a],c.body["offset"+a],f["offset"+a],f["client"+a])):e===b?p.css(c,d,e,h):p.style(c,d,e,h)},c,g?e:b,g,null)}})}),a.jQuery=a.$=p,typeof define=="function"&&define.amd&&define.amd.jQuery&&define("jquery",[],function(){return p})})(window); |
| Instances | 1 |
| Solution |
See the references for security advice on the use of these functions.
|
| Reference | https://angular.io/guide/security |
| Tags |
WSTG-v42-CLNT-02
OWASP_2021_A04 |
| CWE Id | 749 |
| WASC Id | |
| Plugin Id | 10110 |
|
Low |
In Page Banner Information Leak |
|---|---|
| Description |
The server returned a version banner string in the response content. Such information leaks may allow attackers to further target specific issues impacting the product and version in use.
|
| URL | http://zero.webappsecurity.com/robots.txt |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | Tomcat/7.0.70 |
| Request Header - size: 224 bytes. |
GET http://zero.webappsecurity.com/robots.txt HTTP/1.1
Host: zero.webappsecurity.com User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0 Pragma: no-cache Cache-Control: no-cache |
| Request Body - size: 0 bytes. |
|
| Response Header - size: 204 bytes. |
HTTP/1.1 404 Not Found
Date: Mon, 14 Mar 2022 07:13:40 GMT Server: Apache-Coyote/1.1 Access-Control-Allow-Origin: * Content-Type: text/html;charset=utf-8 Content-Language: en Content-Length: 971 |
| Response Body - size: 971 bytes. |
<html><head><title>Apache Tomcat/7.0.70 - Error report</title><style><!--H1 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:22px;} H2 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:16px;} H3 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:14px;} BODY {font-family:Tahoma,Arial,sans-serif;color:black;background-color:white;} B {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;} P {font-family:Tahoma,Arial,sans-serif;background:white;color:black;font-size:12px;}A {color : black;}A.name {color : black;}HR {color : #525D76;}--></style> </head><body><h1>HTTP Status 404 - /robots.txt</h1><HR size="1" noshade="noshade"><p><b>type</b> Status report</p><p><b>message</b> <u>/robots.txt</u></p><p><b>description</b> <u>The requested resource is not available.</u></p><HR size="1" noshade="noshade"><h3>Apache Tomcat/7.0.70</h3></body></html>
|
| URL | http://zero.webappsecurity.com/sitemap.xml |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | Tomcat/7.0.70 |
| Request Header - size: 225 bytes. |
GET http://zero.webappsecurity.com/sitemap.xml HTTP/1.1
Host: zero.webappsecurity.com User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0 Pragma: no-cache Cache-Control: no-cache |
| Request Body - size: 0 bytes. |
|
| Response Header - size: 204 bytes. |
HTTP/1.1 404 Not Found
Date: Mon, 14 Mar 2022 07:13:40 GMT Server: Apache-Coyote/1.1 Access-Control-Allow-Origin: * Content-Type: text/html;charset=utf-8 Content-Language: en Content-Length: 973 |
| Response Body - size: 973 bytes. |
<html><head><title>Apache Tomcat/7.0.70 - Error report</title><style><!--H1 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:22px;} H2 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:16px;} H3 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:14px;} BODY {font-family:Tahoma,Arial,sans-serif;color:black;background-color:white;} B {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;} P {font-family:Tahoma,Arial,sans-serif;background:white;color:black;font-size:12px;}A {color : black;}A.name {color : black;}HR {color : #525D76;}--></style> </head><body><h1>HTTP Status 404 - /sitemap.xml</h1><HR size="1" noshade="noshade"><p><b>type</b> Status report</p><p><b>message</b> <u>/sitemap.xml</u></p><p><b>description</b> <u>The requested resource is not available.</u></p><HR size="1" noshade="noshade"><h3>Apache Tomcat/7.0.70</h3></body></html>
|
| Instances | 2 |
| Solution |
Configure the server to prevent such information leaks. For example:
Under Tomcat this is done via the "server" directive and implementation of custom error pages.
Under Apache this is done via the "ServerSignature" and "ServerTokens" directives.
|
| Reference | https://owasp.org/www-project-web-security-testing-guide/v41/4-Web_Application_Security_Testing/08-Testing_for_Error_Handling/ |
| Tags |
OWASP_2021_A05
OWASP_2017_A06 WSTG-v42-INFO-02 |
| CWE Id | 200 |
| WASC Id | 13 |
| Plugin Id | 10009 |
|
Low |
Permissions Policy Header Not Set |
|---|---|
| Description |
Permissions Policy Header is an added layer of security that helps to restrict from unauthorized access or usage of browser/client features by web resources. This policy ensures the user privacy by limiting or specifying the features of the browsers can be used by the web resources. Permissions Policy provides a set of standard HTTP headers that allow website owners to limit which features of browsers can be used by the page such as camera, microphone, location, full screen etc.
|
| URL | http://zero.webappsecurity.com |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Request Header - size: 213 bytes. |
GET http://zero.webappsecurity.com HTTP/1.1
Host: zero.webappsecurity.com User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0 Pragma: no-cache Cache-Control: no-cache |
| Request Body - size: 0 bytes. |
|
| Response Header - size: 242 bytes. |
HTTP/1.1 200 OK
Date: Mon, 14 Mar 2022 07:13:40 GMT Server: Apache-Coyote/1.1 Access-Control-Allow-Origin: * Cache-Control: no-cache, max-age=0, must-revalidate, no-store Content-Type: text/html;charset=UTF-8 Content-Language: en-US |
| Response Body - size: 12,471 bytes. |
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Zero - Personal Banking - Loans - Credit Cards</title> <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"> <meta http-equiv="X-UA-Compatible" content="IE=Edge"> <link type="text/css" rel="stylesheet" href="/resources/css/bootstrap.min.css"/> <link type="text/css" rel="stylesheet" href="/resources/css/font-awesome.css"/> <link type="text/css" rel="stylesheet" href="/resources/css/main.css"/> <script src="/resources/js/jquery-1.8.2.min.js"></script> <script src="/resources/js/bootstrap.min.js"></script> <script src="/resources/js/placeholders.min.js"></script> <script type="text/javascript"> Placeholders.init({ live: true, // Apply to future and modified elements too hideOnFocus: true // Hide the placeholder when the element receives focus }); </script> <script type="text/javascript"> $(document).ajaxError(function errorHandler(event, xhr, ajaxOptions, thrownError) { if (xhr.status == 403) { window.location.reload(); } }); </script> </head> <body> <div class="wrapper"> <div class="navbar navbar-fixed-top"> <div class="navbar-inner"> <div class="container"> <a href="/index.html" class="brand">Zero Bank</a> <div> <ul class="nav float-right"> <li> <form action="/search.html" class="navbar-search pull-right" style="padding-right: 20px"> <input type="text" id="searchTerm" name="searchTerm" class="search-query" placeholder="Search"/> </form> </li> <li> <button id="signin_button" type="button" class="signin btn btn-info"> <i class="icon-signin"></i>Signin </button> </li> </ul> </div> </div> </div> </div> <script type="text/javascript"> $(function() { var path = "/"; $("#signin_button").click(function(event) { event.preventDefault(); window.location.href = path + "login" + ".html"; }); }); </script> <div class="container"> <div class="top_offset"> <div class="row"> <div class="span12"> <div id="nav" class="clearfix"> <ul id="pages-nav"> <li id="homeMenu"><div><strong>Home</strong></div></li> <li id="onlineBankingMenu"><div><strong>Online Banking</strong></div></li> <li id="feedback"><div><strong>Feedback</strong></div></li> </ul> </div> </div> <script type="text/javascript"> $(function () { var path = "/"; var featureIdToName = { "index": "homeMenu", "online-banking": "onlineBankingMenu", "feedback": "feedback" }; if (document.location.href.match(".*" + path + "$") != null) { $("#homeMenu").addClass("active"); } else { $.each(featureIdToName, function(featureId, featureName) { if (document.location.href.indexOf(featureId + ".html") >= 0) { $("#" + featureName).addClass("active"); } }); } $.each(featureIdToName, function(featureId, featureName) { $("#nav").on("click", "li[id='" + featureName + "']", function(event) { event.preventDefault(); window.location.href = path + featureId + ".html"; }); }); }); </script> </div> <div class="row"> <div class="span12"> <div id="carousel" class="carousel slide"> <div class="carousel-inner"> <div class="active item"> <img src="/resources/img/main_carousel_1.jpg" width="940" height="401" alt=""/> <div class="custom carousel-caption"> <h4>Online Banking</h4> <p>Welcome to Zero Online Banking. Zero provides a greener and more convenient way to manage your money. Zero enables you to check your account balances, pay your bills, transfer money, and keep detailed records of your transactions, wherever there is an internet connection.</p> </div> </div> <div class="item"> <img src="/resources/img/main_carousel_2.jpg" width="940" height="401" alt=""/> <div class="custom carousel-caption"> <h4>Online Banking</h4> <p>Welcome to Zero Online Banking. Zero provides a greener and more convenient way to manage your money. Zero enables you to check your account balances, pay your bills, transfer money, and keep detailed records of your transactions, wherever there is an internet connection.</p> </div> </div> <div class="item"> <img src="/resources/img/main_carousel_3.jpg" width="940" height="401" alt=""/> <div class="custom carousel-caption"> <h4>Online Banking</h4> <p>Welcome to Zero Online Banking. Zero provides a greener and more convenient way to manage your money. Zero enables you to check your account balances, pay your bills, transfer money, and keep detailed records of your transactions, wherever there is an internet connection.</p> </div> </div> </div> <a class="carousel-control custom left" href="#carousel" data-slide="prev">‹</a> <a class="carousel-control custom right" href="#carousel" data-slide="next">›</a> </div> </div> </div> <hr class="row-divider"/> <div id="online_banking_features" class="row divider"> <div class="span3"> <h4><i class="icon icon-bookmark"></i> Online Banking</h4> <p>Click the button below to view online banking features.</p> <a id="online-banking" class="btn btn-small btn-info">More Services</a> </div> <div class="span3"> <div> <h4><span class="headers" id="account_activity_link"><i class="icon icon-user"></i>Checking Account Activity</span></h4> <p>Use Zero to view the most up-to-date listings of your deposits, withdrawals, interest payments, and a number of other useful transactions. </p> </div> </div> <div class="span3"> <div> <h4><span class="headers" id="transfer_funds_link"><i class="icon icon-random"></i>Transfer Funds</span></h4> <p>Use Zero to safely and securely transfer funds between accounts. There is no hold placed on online money transfers, so your funds are available when you need them. </p> </div> </div> <div class="span3"> <div> <h4><span class="headers" id="money_map_link"><i class="icon icon-list-alt"></i>My Money Map</span></h4> <p>Use Zero to set up and monitor your personalized money map. A money map is an easy-to-use online tool that helps you manage your finances efficiently. With Money Map, you can create a budget, sort your finances into spending and savings categories, check the interest your accounts are earning, and gain new understanding of your patterns with the help of Zero’s clear charts and graphs. </p> </div> </div> </div> <script type="text/javascript"> $(function() { $("#carousel").carousel({ interval: false }); $("div").on("click", "a[id='online-banking']", function(event){ event.preventDefault(); window.location.href = "/" + "online-banking" + ".html"; }); var path = "/bank/"; var featureIdToName = { "account_activity_link": "account-activity", "transfer_funds_link": "transfer-funds", "money_map_link": "money-map" } $.each(featureIdToName, function(featureId, featureName) { $("#online_banking_features").on("click", "span[id='" + featureId + "']", function(event) { event.preventDefault(); window.location.href = path + featureName +".html"; }); }); }); </script> </div> </div> <div class="clearfix push"></div> </div> <div class="extra"> <div class="extra-inner"> <div class="container"> <div class="row"> <div class="span4"> <ul> <li><span id="download_webinspect_link">Download WebInspect</span></li> </ul> </div> <div class="span4"> <ul> <li><span id="terms_of_use_link">Terms of Use</span></li> </ul> </div> <div class="span4"> <ul> <li><span id="contact_hp_link">Contact Micro Focus</span></li> <li><span id="privacy_statement_link">Privacy Statement</span></li> </ul> </div> </div> <div class="row"> <div class="disclaimer span12"> The Free Online Bank Web site is published by Micro Focus Fortify for the sole purpose of demonstrating the functionality and effectiveness of Micro Focus Fortify’s WebInspect products in detecting and reporting Web application vulnerabilities. This site is not a real banking site and any similarities to third party products and/or Web sites are purely coincidental. This site is provided "as is" without warranty of any kind, either express or implied. Micro Focus Fortify does not assume any risk in relation to your use of this Web site. Use of this Web site indicates that you have read and agree to Micro Focus Fortify’s Terms of Use found at <a href="https://www.microfocus.com/about/legal/#privacy" target="_blank">https://www.microfocus.com/about/legal/#privacy</a> and Micro Focus Fortify’s Online Privacy Statement found at <a href="https://www.microfocus.com/about/legal/#privacy" target="_blank">https://www.microfocus.com/about/legal/#privacy</a>. <br/><br/> Copyright © 2012-2018, Micro Focus Development Company. All rights reserved. </div> </div> </div> </div> </div> <script type="text/javascript"> $(function () { var path = "/"; var attachClickHandler = function(selector, handler) { $(".extra").on('click', selector, handler); } var footerLinks = { "download_webinspect_link": { absolute: true, page: "https://software.microfocus.com/en-us/products/webinspect-dynamic-analysis-dast/overview" }, "contact_hp_link" : { absolute: true, page: "https://support.fortify.com" }, "privacy_statement_link": { absolute: true, page: "https://www.microfocus.com/about/legal/#privacy" }, "terms_of_use_link": { absolute: true, page: "https://www.microfocus.com/about/legal/" } }; $.each(footerLinks, function(linkId, link) { attachClickHandler('span[id="' + linkId + '"]', function(event) { event.preventDefault(); if (link.absolute) { window.location.href = link.page; } else { window.location.href = path + link.page + ".html"; } }); }); }); </script> </body> </html> |
| URL | http://zero.webappsecurity.com/ |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Request Header - size: 214 bytes. |
GET http://zero.webappsecurity.com/ HTTP/1.1
Host: zero.webappsecurity.com User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0 Pragma: no-cache Cache-Control: no-cache |
| Request Body - size: 0 bytes. |
|
| Response Header - size: 242 bytes. |
HTTP/1.1 200 OK
Date: Mon, 14 Mar 2022 07:13:39 GMT Server: Apache-Coyote/1.1 Access-Control-Allow-Origin: * Cache-Control: no-cache, max-age=0, must-revalidate, no-store Content-Type: text/html;charset=UTF-8 Content-Language: en-US |
| Response Body - size: 12,471 bytes. |
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Zero - Personal Banking - Loans - Credit Cards</title> <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"> <meta http-equiv="X-UA-Compatible" content="IE=Edge"> <link type="text/css" rel="stylesheet" href="/resources/css/bootstrap.min.css"/> <link type="text/css" rel="stylesheet" href="/resources/css/font-awesome.css"/> <link type="text/css" rel="stylesheet" href="/resources/css/main.css"/> <script src="/resources/js/jquery-1.8.2.min.js"></script> <script src="/resources/js/bootstrap.min.js"></script> <script src="/resources/js/placeholders.min.js"></script> <script type="text/javascript"> Placeholders.init({ live: true, // Apply to future and modified elements too hideOnFocus: true // Hide the placeholder when the element receives focus }); </script> <script type="text/javascript"> $(document).ajaxError(function errorHandler(event, xhr, ajaxOptions, thrownError) { if (xhr.status == 403) { window.location.reload(); } }); </script> </head> <body> <div class="wrapper"> <div class="navbar navbar-fixed-top"> <div class="navbar-inner"> <div class="container"> <a href="/index.html" class="brand">Zero Bank</a> <div> <ul class="nav float-right"> <li> <form action="/search.html" class="navbar-search pull-right" style="padding-right: 20px"> <input type="text" id="searchTerm" name="searchTerm" class="search-query" placeholder="Search"/> </form> </li> <li> <button id="signin_button" type="button" class="signin btn btn-info"> <i class="icon-signin"></i>Signin </button> </li> </ul> </div> </div> </div> </div> <script type="text/javascript"> $(function() { var path = "/"; $("#signin_button").click(function(event) { event.preventDefault(); window.location.href = path + "login" + ".html"; }); }); </script> <div class="container"> <div class="top_offset"> <div class="row"> <div class="span12"> <div id="nav" class="clearfix"> <ul id="pages-nav"> <li id="homeMenu"><div><strong>Home</strong></div></li> <li id="onlineBankingMenu"><div><strong>Online Banking</strong></div></li> <li id="feedback"><div><strong>Feedback</strong></div></li> </ul> </div> </div> <script type="text/javascript"> $(function () { var path = "/"; var featureIdToName = { "index": "homeMenu", "online-banking": "onlineBankingMenu", "feedback": "feedback" }; if (document.location.href.match(".*" + path + "$") != null) { $("#homeMenu").addClass("active"); } else { $.each(featureIdToName, function(featureId, featureName) { if (document.location.href.indexOf(featureId + ".html") >= 0) { $("#" + featureName).addClass("active"); } }); } $.each(featureIdToName, function(featureId, featureName) { $("#nav").on("click", "li[id='" + featureName + "']", function(event) { event.preventDefault(); window.location.href = path + featureId + ".html"; }); }); }); </script> </div> <div class="row"> <div class="span12"> <div id="carousel" class="carousel slide"> <div class="carousel-inner"> <div class="active item"> <img src="/resources/img/main_carousel_1.jpg" width="940" height="401" alt=""/> <div class="custom carousel-caption"> <h4>Online Banking</h4> <p>Welcome to Zero Online Banking. Zero provides a greener and more convenient way to manage your money. Zero enables you to check your account balances, pay your bills, transfer money, and keep detailed records of your transactions, wherever there is an internet connection.</p> </div> </div> <div class="item"> <img src="/resources/img/main_carousel_2.jpg" width="940" height="401" alt=""/> <div class="custom carousel-caption"> <h4>Online Banking</h4> <p>Welcome to Zero Online Banking. Zero provides a greener and more convenient way to manage your money. Zero enables you to check your account balances, pay your bills, transfer money, and keep detailed records of your transactions, wherever there is an internet connection.</p> </div> </div> <div class="item"> <img src="/resources/img/main_carousel_3.jpg" width="940" height="401" alt=""/> <div class="custom carousel-caption"> <h4>Online Banking</h4> <p>Welcome to Zero Online Banking. Zero provides a greener and more convenient way to manage your money. Zero enables you to check your account balances, pay your bills, transfer money, and keep detailed records of your transactions, wherever there is an internet connection.</p> </div> </div> </div> <a class="carousel-control custom left" href="#carousel" data-slide="prev">‹</a> <a class="carousel-control custom right" href="#carousel" data-slide="next">›</a> </div> </div> </div> <hr class="row-divider"/> <div id="online_banking_features" class="row divider"> <div class="span3"> <h4><i class="icon icon-bookmark"></i> Online Banking</h4> <p>Click the button below to view online banking features.</p> <a id="online-banking" class="btn btn-small btn-info">More Services</a> </div> <div class="span3"> <div> <h4><span class="headers" id="account_activity_link"><i class="icon icon-user"></i>Checking Account Activity</span></h4> <p>Use Zero to view the most up-to-date listings of your deposits, withdrawals, interest payments, and a number of other useful transactions. </p> </div> </div> <div class="span3"> <div> <h4><span class="headers" id="transfer_funds_link"><i class="icon icon-random"></i>Transfer Funds</span></h4> <p>Use Zero to safely and securely transfer funds between accounts. There is no hold placed on online money transfers, so your funds are available when you need them. </p> </div> </div> <div class="span3"> <div> <h4><span class="headers" id="money_map_link"><i class="icon icon-list-alt"></i>My Money Map</span></h4> <p>Use Zero to set up and monitor your personalized money map. A money map is an easy-to-use online tool that helps you manage your finances efficiently. With Money Map, you can create a budget, sort your finances into spending and savings categories, check the interest your accounts are earning, and gain new understanding of your patterns with the help of Zero’s clear charts and graphs. </p> </div> </div> </div> <script type="text/javascript"> $(function() { $("#carousel").carousel({ interval: false }); $("div").on("click", "a[id='online-banking']", function(event){ event.preventDefault(); window.location.href = "/" + "online-banking" + ".html"; }); var path = "/bank/"; var featureIdToName = { "account_activity_link": "account-activity", "transfer_funds_link": "transfer-funds", "money_map_link": "money-map" } $.each(featureIdToName, function(featureId, featureName) { $("#online_banking_features").on("click", "span[id='" + featureId + "']", function(event) { event.preventDefault(); window.location.href = path + featureName +".html"; }); }); }); </script> </div> </div> <div class="clearfix push"></div> </div> <div class="extra"> <div class="extra-inner"> <div class="container"> <div class="row"> <div class="span4"> <ul> <li><span id="download_webinspect_link">Download WebInspect</span></li> </ul> </div> <div class="span4"> <ul> <li><span id="terms_of_use_link">Terms of Use</span></li> </ul> </div> <div class="span4"> <ul> <li><span id="contact_hp_link">Contact Micro Focus</span></li> <li><span id="privacy_statement_link">Privacy Statement</span></li> </ul> </div> </div> <div class="row"> <div class="disclaimer span12"> The Free Online Bank Web site is published by Micro Focus Fortify for the sole purpose of demonstrating the functionality and effectiveness of Micro Focus Fortify’s WebInspect products in detecting and reporting Web application vulnerabilities. This site is not a real banking site and any similarities to third party products and/or Web sites are purely coincidental. This site is provided "as is" without warranty of any kind, either express or implied. Micro Focus Fortify does not assume any risk in relation to your use of this Web site. Use of this Web site indicates that you have read and agree to Micro Focus Fortify’s Terms of Use found at <a href="https://www.microfocus.com/about/legal/#privacy" target="_blank">https://www.microfocus.com/about/legal/#privacy</a> and Micro Focus Fortify’s Online Privacy Statement found at <a href="https://www.microfocus.com/about/legal/#privacy" target="_blank">https://www.microfocus.com/about/legal/#privacy</a>. <br/><br/> Copyright © 2012-2018, Micro Focus Development Company. All rights reserved. </div> </div> </div> </div> </div> <script type="text/javascript"> $(function () { var path = "/"; var attachClickHandler = function(selector, handler) { $(".extra").on('click', selector, handler); } var footerLinks = { "download_webinspect_link": { absolute: true, page: "https://software.microfocus.com/en-us/products/webinspect-dynamic-analysis-dast/overview" }, "contact_hp_link" : { absolute: true, page: "https://support.fortify.com" }, "privacy_statement_link": { absolute: true, page: "https://www.microfocus.com/about/legal/#privacy" }, "terms_of_use_link": { absolute: true, page: "https://www.microfocus.com/about/legal/" } }; $.each(footerLinks, function(linkId, link) { attachClickHandler('span[id="' + linkId + '"]', function(event) { event.preventDefault(); if (link.absolute) { window.location.href = link.page; } else { window.location.href = path + link.page + ".html"; } }); }); }); </script> </body> </html> |
| URL | http://zero.webappsecurity.com/index.html |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Request Header - size: 265 bytes. |
GET http://zero.webappsecurity.com/index.html HTTP/1.1
Host: zero.webappsecurity.com User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0 Pragma: no-cache Cache-Control: no-cache Referer: http://zero.webappsecurity.com |
| Request Body - size: 0 bytes. |
|
| Response Header - size: 242 bytes. |
HTTP/1.1 200 OK
Date: Mon, 14 Mar 2022 07:13:41 GMT Server: Apache-Coyote/1.1 Access-Control-Allow-Origin: * Cache-Control: no-cache, max-age=0, must-revalidate, no-store Content-Type: text/html;charset=UTF-8 Content-Language: en-US |
| Response Body - size: 12,471 bytes. |
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Zero - Personal Banking - Loans - Credit Cards</title> <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"> <meta http-equiv="X-UA-Compatible" content="IE=Edge"> <link type="text/css" rel="stylesheet" href="/resources/css/bootstrap.min.css"/> <link type="text/css" rel="stylesheet" href="/resources/css/font-awesome.css"/> <link type="text/css" rel="stylesheet" href="/resources/css/main.css"/> <script src="/resources/js/jquery-1.8.2.min.js"></script> <script src="/resources/js/bootstrap.min.js"></script> <script src="/resources/js/placeholders.min.js"></script> <script type="text/javascript"> Placeholders.init({ live: true, // Apply to future and modified elements too hideOnFocus: true // Hide the placeholder when the element receives focus }); </script> <script type="text/javascript"> $(document).ajaxError(function errorHandler(event, xhr, ajaxOptions, thrownError) { if (xhr.status == 403) { window.location.reload(); } }); </script> </head> <body> <div class="wrapper"> <div class="navbar navbar-fixed-top"> <div class="navbar-inner"> <div class="container"> <a href="/index.html" class="brand">Zero Bank</a> <div> <ul class="nav float-right"> <li> <form action="/search.html" class="navbar-search pull-right" style="padding-right: 20px"> <input type="text" id="searchTerm" name="searchTerm" class="search-query" placeholder="Search"/> </form> </li> <li> <button id="signin_button" type="button" class="signin btn btn-info"> <i class="icon-signin"></i>Signin </button> </li> </ul> </div> </div> </div> </div> <script type="text/javascript"> $(function() { var path = "/"; $("#signin_button").click(function(event) { event.preventDefault(); window.location.href = path + "login" + ".html"; }); }); </script> <div class="container"> <div class="top_offset"> <div class="row"> <div class="span12"> <div id="nav" class="clearfix"> <ul id="pages-nav"> <li id="homeMenu"><div><strong>Home</strong></div></li> <li id="onlineBankingMenu"><div><strong>Online Banking</strong></div></li> <li id="feedback"><div><strong>Feedback</strong></div></li> </ul> </div> </div> <script type="text/javascript"> $(function () { var path = "/"; var featureIdToName = { "index": "homeMenu", "online-banking": "onlineBankingMenu", "feedback": "feedback" }; if (document.location.href.match(".*" + path + "$") != null) { $("#homeMenu").addClass("active"); } else { $.each(featureIdToName, function(featureId, featureName) { if (document.location.href.indexOf(featureId + ".html") >= 0) { $("#" + featureName).addClass("active"); } }); } $.each(featureIdToName, function(featureId, featureName) { $("#nav").on("click", "li[id='" + featureName + "']", function(event) { event.preventDefault(); window.location.href = path + featureId + ".html"; }); }); }); </script> </div> <div class="row"> <div class="span12"> <div id="carousel" class="carousel slide"> <div class="carousel-inner"> <div class="active item"> <img src="/resources/img/main_carousel_1.jpg" width="940" height="401" alt=""/> <div class="custom carousel-caption"> <h4>Online Banking</h4> <p>Welcome to Zero Online Banking. Zero provides a greener and more convenient way to manage your money. Zero enables you to check your account balances, pay your bills, transfer money, and keep detailed records of your transactions, wherever there is an internet connection.</p> </div> </div> <div class="item"> <img src="/resources/img/main_carousel_2.jpg" width="940" height="401" alt=""/> <div class="custom carousel-caption"> <h4>Online Banking</h4> <p>Welcome to Zero Online Banking. Zero provides a greener and more convenient way to manage your money. Zero enables you to check your account balances, pay your bills, transfer money, and keep detailed records of your transactions, wherever there is an internet connection.</p> </div> </div> <div class="item"> <img src="/resources/img/main_carousel_3.jpg" width="940" height="401" alt=""/> <div class="custom carousel-caption"> <h4>Online Banking</h4> <p>Welcome to Zero Online Banking. Zero provides a greener and more convenient way to manage your money. Zero enables you to check your account balances, pay your bills, transfer money, and keep detailed records of your transactions, wherever there is an internet connection.</p> </div> </div> </div> <a class="carousel-control custom left" href="#carousel" data-slide="prev">‹</a> <a class="carousel-control custom right" href="#carousel" data-slide="next">›</a> </div> </div> </div> <hr class="row-divider"/> <div id="online_banking_features" class="row divider"> <div class="span3"> <h4><i class="icon icon-bookmark"></i> Online Banking</h4> <p>Click the button below to view online banking features.</p> <a id="online-banking" class="btn btn-small btn-info">More Services</a> </div> <div class="span3"> <div> <h4><span class="headers" id="account_activity_link"><i class="icon icon-user"></i>Checking Account Activity</span></h4> <p>Use Zero to view the most up-to-date listings of your deposits, withdrawals, interest payments, and a number of other useful transactions. </p> </div> </div> <div class="span3"> <div> <h4><span class="headers" id="transfer_funds_link"><i class="icon icon-random"></i>Transfer Funds</span></h4> <p>Use Zero to safely and securely transfer funds between accounts. There is no hold placed on online money transfers, so your funds are available when you need them. </p> </div> </div> <div class="span3"> <div> <h4><span class="headers" id="money_map_link"><i class="icon icon-list-alt"></i>My Money Map</span></h4> <p>Use Zero to set up and monitor your personalized money map. A money map is an easy-to-use online tool that helps you manage your finances efficiently. With Money Map, you can create a budget, sort your finances into spending and savings categories, check the interest your accounts are earning, and gain new understanding of your patterns with the help of Zero’s clear charts and graphs. </p> </div> </div> </div> <script type="text/javascript"> $(function() { $("#carousel").carousel({ interval: false }); $("div").on("click", "a[id='online-banking']", function(event){ event.preventDefault(); window.location.href = "/" + "online-banking" + ".html"; }); var path = "/bank/"; var featureIdToName = { "account_activity_link": "account-activity", "transfer_funds_link": "transfer-funds", "money_map_link": "money-map" } $.each(featureIdToName, function(featureId, featureName) { $("#online_banking_features").on("click", "span[id='" + featureId + "']", function(event) { event.preventDefault(); window.location.href = path + featureName +".html"; }); }); }); </script> </div> </div> <div class="clearfix push"></div> </div> <div class="extra"> <div class="extra-inner"> <div class="container"> <div class="row"> <div class="span4"> <ul> <li><span id="download_webinspect_link">Download WebInspect</span></li> </ul> </div> <div class="span4"> <ul> <li><span id="terms_of_use_link">Terms of Use</span></li> </ul> </div> <div class="span4"> <ul> <li><span id="contact_hp_link">Contact Micro Focus</span></li> <li><span id="privacy_statement_link">Privacy Statement</span></li> </ul> </div> </div> <div class="row"> <div class="disclaimer span12"> The Free Online Bank Web site is published by Micro Focus Fortify for the sole purpose of demonstrating the functionality and effectiveness of Micro Focus Fortify’s WebInspect products in detecting and reporting Web application vulnerabilities. This site is not a real banking site and any similarities to third party products and/or Web sites are purely coincidental. This site is provided "as is" without warranty of any kind, either express or implied. Micro Focus Fortify does not assume any risk in relation to your use of this Web site. Use of this Web site indicates that you have read and agree to Micro Focus Fortify’s Terms of Use found at <a href="https://www.microfocus.com/about/legal/#privacy" target="_blank">https://www.microfocus.com/about/legal/#privacy</a> and Micro Focus Fortify’s Online Privacy Statement found at <a href="https://www.microfocus.com/about/legal/#privacy" target="_blank">https://www.microfocus.com/about/legal/#privacy</a>. <br/><br/> Copyright © 2012-2018, Micro Focus Development Company. All rights reserved. </div> </div> </div> </div> </div> <script type="text/javascript"> $(function () { var path = "/"; var attachClickHandler = function(selector, handler) { $(".extra").on('click', selector, handler); } var footerLinks = { "download_webinspect_link": { absolute: true, page: "https://software.microfocus.com/en-us/products/webinspect-dynamic-analysis-dast/overview" }, "contact_hp_link" : { absolute: true, page: "https://support.fortify.com" }, "privacy_statement_link": { absolute: true, page: "https://www.microfocus.com/about/legal/#privacy" }, "terms_of_use_link": { absolute: true, page: "https://www.microfocus.com/about/legal/" } }; $.each(footerLinks, function(linkId, link) { attachClickHandler('span[id="' + linkId + '"]', function(event) { event.preventDefault(); if (link.absolute) { window.location.href = link.page; } else { window.location.href = path + link.page + ".html"; } }); }); }); </script> </body> </html> |
| URL | http://zero.webappsecurity.com/resources/js/bootstrap.min.js |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Request Header - size: 284 bytes. |
GET http://zero.webappsecurity.com/resources/js/bootstrap.min.js HTTP/1.1
Host: zero.webappsecurity.com User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0 Pragma: no-cache Cache-Control: no-cache Referer: http://zero.webappsecurity.com |
| Request Body - size: 0 bytes. |
|
| Response Header - size: 361 bytes. |
HTTP/1.1 200 OK
Date: Mon, 14 Mar 2022 07:13:42 GMT Server: Apache-Coyote/1.1 Access-Control-Allow-Origin: * Accept-Ranges: bytes ETag: W/"26898-1358437290000" Last-Modified: Thu, 17 Jan 2013 15:41:30 GMT Cache-Control: max-age=2678400 Expires: Thu, 14 Apr 2022 07:13:43 GMT Content-Type: application/javascript;charset=UTF-8 Content-Length: 26898 |
| Response Body - size: 26,898 bytes. |
/**
* Bootstrap.js by @fat & @mdo * plugins: bootstrap-transition.js, bootstrap-modal.js, bootstrap-dropdown.js, bootstrap-scrollspy.js, bootstrap-tab.js, bootstrap-tooltip.js, bootstrap-popover.js, bootstrap-affix.js, bootstrap-alert.js, bootstrap-button.js, bootstrap-collapse.js, bootstrap-carousel.js, bootstrap-typeahead.js * Copyright 2012 Twitter, Inc. * http://www.apache.org/licenses/LICENSE-2.0.txt */ !function(a){a(function(){a.support.transition=function(){var a=function(){var a=document.createElement("bootstrap"),b={WebkitTransition:"webkitTransitionEnd",MozTransition:"transitionend",OTransition:"oTransitionEnd otransitionend",transition:"transitionend"},c;for(c in b)if(a.style[c]!==undefined)return b[c]}();return a&&{end:a}}()})}(window.jQuery),!function(a){var b=function(b,c){this.options=c,this.$element=a(b).delegate('[data-dismiss="modal"]',"click.dismiss.modal",a.proxy(this.hide,this)),this.options.remote&&this.$element.find(".modal-body").load(this.options.remote)};b.prototype={constructor:b,toggle:function(){return this[this.isShown?"hide":"show"]()},show:function(){var b=this,c=a.Event("show");this.$element.trigger(c);if(this.isShown||c.isDefaultPrevented())return;this.isShown=!0,this.escape(),this.backdrop(function(){var c=a.support.transition&&b.$element.hasClass("fade");b.$element.parent().length||b.$element.appendTo(document.body),b.$element.show(),c&&b.$element[0].offsetWidth,b.$element.addClass("in").attr("aria-hidden",!1),b.enforceFocus(),c?b.$element.one(a.support.transition.end,function(){b.$element.focus().trigger("shown")}):b.$element.focus().trigger("shown")})},hide:function(b){b&&b.preventDefault();var c=this;b=a.Event("hide"),this.$element.trigger(b);if(!this.isShown||b.isDefaultPrevented())return;this.isShown=!1,this.escape(),a(document).off("focusin.modal"),this.$element.removeClass("in").attr("aria-hidden",!0),a.support.transition&&this.$element.hasClass("fade")?this.hideWithTransition():this.hideModal()},enforceFocus:function(){var b=this;a(document).on("focusin.modal",function(a){b.$element[0]!==a.target&&!b.$element.has(a.target).length&&b.$element.focus()})},escape:function(){var a=this;this.isShown&&this.options.keyboard?this.$element.on("keyup.dismiss.modal",function(b){b.which==27&&a.hide()}):this.isShown||this.$element.off("keyup.dismiss.modal")},hideWithTransition:function(){var b=this,c=setTimeout(function(){b.$element.off(a.support.transition.end),b.hideModal()},500);this.$element.one(a.support.transition.end,function(){clearTimeout(c),b.hideModal()})},hideModal:function(a){this.$element.hide().trigger("hidden"),this.backdrop()},removeBackdrop:function(){this.$backdrop.remove(),this.$backdrop=null},backdrop:function(b){var c=this,d=this.$element.hasClass("fade")?"fade":"";if(this.isShown&&this.options.backdrop){var e=a.support.transition&&d;this.$backdrop=a('<div class="modal-backdrop '+d+'" />').appendTo(document.body),this.$backdrop.click(this.options.backdrop=="static"?a.proxy(this.$element[0].focus,this.$element[0]):a.proxy(this.hide,this)),e&&this.$backdrop[0].offsetWidth,this.$backdrop.addClass("in"),e?this.$backdrop.one(a.support.transition.end,b):b()}else!this.isShown&&this.$backdrop?(this.$backdrop.removeClass("in"),a.support.transition&&this.$element.hasClass("fade")?this.$backdrop.one(a.support.transition.end,a.proxy(this.removeBackdrop,this)):this.removeBackdrop()):b&&b()}};var c=a.fn.modal;a.fn.modal=function(c){return this.each(function(){var d=a(this),e=d.data("modal"),f=a.extend({},a.fn.modal.defaults,d.data(),typeof c=="object"&&c);e||d.data("modal",e=new b(this,f)),typeof c=="string"?e[c]():f.show&&e.show()})},a.fn.modal.defaults={backdrop:!0,keyboard:!0,show:!0},a.fn.modal.Constructor=b,a.fn.modal.noConflict=function(){return a.fn.modal=c,this},a(document).on("click.modal.data-api",'[data-toggle="modal"]',function(b){var c=a(this),d=c.attr("href"),e=a(c.attr("data-target")||d&&d.replace(/.*(?=#[^\s]+$)/,"")),f=e.data("modal")?"toggle":a.extend({remote:!/#/.test(d)&&d},e.data(),c.data());b.preventDefault(),e.modal(f).one("hide",function(){c.focus()})})}(window.jQuery),!function(a){function d(){a(b).each(function(){e(a(this)).removeClass("open")})}function e(b){var c=b.attr("data-target"),d;return c||(c=b.attr("href"),c=c&&/#/.test(c)&&c.replace(/.*(?=#[^\s]*$)/,"")),d=a(c),d.length||(d=b.parent()),d}var b="[data-toggle=dropdown]",c=function(b){var c=a(b).on("click.dropdown.data-api",this.toggle);a("html").on("click.dropdown.data-api",function(){c.parent().removeClass("open")})};c.prototype={constructor:c,toggle:function(b){var c=a(this),f,g;if(c.is(".disabled, :disabled"))return;return f=e(c),g=f.hasClass("open"),d(),g||f.toggleClass("open"),c.focus(),!1},keydown:function(b){var c,d,f,g,h,i;if(!/(38|40|27)/.test(b.keyCode))return;c=a(this),b.preventDefault(),b.stopPropagation();if(c.is(".disabled, :disabled"))return;g=e(c),h=g.hasClass("open");if(!h||h&&b.keyCode==27)return c.click();d=a("[role=menu] li:not(.divider):visible a",g);if(!d.length)return;i=d.index(d.filter(":focus")),b.keyCode==38&&i>0&&i--,b.keyCode==40&&i<d.length-1&&i++,~i||(i=0),d.eq(i).focus()}};var f=a.fn.dropdown;a.fn.dropdown=function(b){return this.each(function(){var d=a(this),e=d.data("dropdown");e||d.data("dropdown",e=new c(this)),typeof b=="string"&&e[b].call(d)})},a.fn.dropdown.Constructor=c,a.fn.dropdown.noConflict=function(){return a.fn.dropdown=f,this},a(document).on("click.dropdown.data-api touchstart.dropdown.data-api",d).on("click.dropdown touchstart.dropdown.data-api",".dropdown form",function(a){a.stopPropagation()}).on("touchstart.dropdown.data-api",".dropdown-menu",function(a){a.stopPropagation()}).on("click.dropdown.data-api touchstart.dropdown.data-api",b,c.prototype.toggle).on("keydown.dropdown.data-api touchstart.dropdown.data-api",b+", [role=menu]",c.prototype.keydown)}(window.jQuery),!function(a){function b(b,c){var d=a.proxy(this.process,this),e=a(b).is("body")?a(window):a(b),f;this.options=a.extend({},a.fn.scrollspy.defaults,c),this.$scrollElement=e.on("scroll.scroll-spy.data-api",d),this.selector=(this.options.target||(f=a(b).attr("href"))&&f.replace(/.*(?=#[^\s]+$)/,"")||"")+" .nav li > a",this.$body=a("body"),this.refresh(),this.process()}b.prototype={constructor:b,refresh:function(){var b=this,c;this.offsets=a([]),this.targets=a([]),c=this.$body.find(this.selector).map(function(){var c=a(this),d=c.data("target")||c.attr("href"),e=/^#\w/.test(d)&&a(d);return e&&e.length&&[[e.position().top+b.$scrollElement.scrollTop(),d]]||null}).sort(function(a,b){return a[0]-b[0]}).each(function(){b.offsets.push(this[0]),b.targets.push(this[1])})},process:function(){var a=this.$scrollElement.scrollTop()+this.options.offset,b=this.$scrollElement[0].scrollHeight||this.$body[0].scrollHeight,c=b-this.$scrollElement.height(),d=this.offsets,e=this.targets,f=this.activeTarget,g;if(a>=c)return f!=(g=e.last()[0])&&this.activate(g);for(g=d.length;g--;)f!=e[g]&&a>=d[g]&&(!d[g+1]||a<=d[g+1])&&this.activate(e[g])},activate:function(b){var c,d;this.activeTarget=b,a(this.selector).parent(".active").removeClass("active"),d=this.selector+'[data-target="'+b+'"],'+this.selector+'[href="'+b+'"]',c=a(d).parent("li").addClass("active"),c.parent(".dropdown-menu").length&&(c=c.closest("li.dropdown").addClass("active")),c.trigger("activate")}};var c=a.fn.scrollspy;a.fn.scrollspy=function(c){return this.each(function(){var d=a(this),e=d.data("scrollspy"),f=typeof c=="object"&&c;e||d.data("scrollspy",e=new b(this,f)),typeof c=="string"&&e[c]()})},a.fn.scrollspy.Constructor=b,a.fn.scrollspy.defaults={offset:10},a.fn.scrollspy.noConflict=function(){return a.fn.scrollspy=c,this},a(window).on("load",function(){a('[data-spy="scroll"]').each(function(){var b=a(this);b.scrollspy(b.data())})})}(window.jQuery),!function(a){var b=function(b){this.element=a(b)};b.prototype={constructor:b,show:function(){var b=this.element,c=b.closest("ul:not(.dropdown-menu)"),d=b.attr("data-target"),e,f,g;d||(d=b.attr("href"),d=d&&d.replace(/.*(?=#[^\s]*$)/,""));if(b.parent("li").hasClass("active"))return;e=c.find(".active:last a")[0],g=a.Event("show",{relatedTarget:e}),b.trigger(g);if(g.isDefaultPrevented())return;f=a(d),this.activate(b.parent("li"),c),this.activate(f,f.parent(),function(){b.trigger({type:"shown",relatedTarget:e})})},activate:function(b,c,d){function g(){e.removeClass("active").find("> .dropdown-menu > .active").removeClass("active"),b.addClass("active"),f?(b[0].offsetWidth,b.addClass("in")):b.removeClass("fade"),b.parent(".dropdown-menu")&&b.closest("li.dropdown").addClass("active"),d&&d()}var e=c.find("> .active"),f=d&&a.support.transition&&e.hasClass("fade");f?e.one(a.support.transition.end,g):g(),e.removeClass("in")}};var c=a.fn.tab;a.fn.tab=function(c){return this.each(function(){var d=a(this),e=d.data("tab");e||d.data("tab",e=new b(this)),typeof c=="string"&&e[c]()})},a.fn.tab.Constructor=b,a.fn.tab.noConflict=function(){return a.fn.tab=c,this},a(document).on("click.tab.data-api",'[data-toggle="tab"], [data-toggle="pill"]',function(b){b.preventDefault(),a(this).tab("show")})}(window.jQuery),!function(a){var b=function(a,b){this.init("tooltip",a,b)};b.prototype={constructor:b,init:function(b,c,d){var e,f;this.type=b,this.$element=a(c),this.options=this.getOptions(d),this.enabled=!0,this.options.trigger=="click"?this.$element.on("click."+this.type,this.options.selector,a.proxy(this.toggle,this)):this.options.trigger!="manual"&&(e=this.options.trigger=="hover"?"mouseenter":"focus",f=this.options.trigger=="hover"?"mouseleave":"blur",this.$element.on(e+"."+this.type,this.options.selector,a.proxy(this.enter,this)),this.$element.on(f+"."+this.type,this.options.selector,a.proxy(this.leave,this))),this.options.selector?this._options=a.extend({},this.options,{trigger:"manual",selector:""}):this.fixTitle()},getOptions:function(b){return b=a.extend({},a.fn[this.type].defaults,b,this.$element.data()),b.delay&&typeof b.delay=="number"&&(b.delay={show:b.delay,hide:b.delay}),b},enter:function(b){var c=a(b.currentTarget)[this.type](this._options).data(this.type);if(!c.options.delay||!c.options.delay.show)return c.show();clearTimeout(this.timeout),c.hoverState="in",this.timeout=setTimeout(function(){c.hoverState=="in"&&c.show()},c.options.delay.show)},leave:function(b){var c=a(b.currentTarget)[this.type](this._options).data(this.type);this.timeout&&clearTimeout(this.timeout);if(!c.options.delay||!c.options.delay.hide)return c.hide();c.hoverState="out",this.timeout=setTimeout(function(){c.hoverState=="out"&&c.hide()},c.options.delay.hide)},show:function(){var a,b,c,d,e,f,g;if(this.hasContent()&&this.enabled){a=this.tip(),this.setContent(),this.options.animation&&a.addClass("fade"),f=typeof this.options.placement=="function"?this.options.placement.call(this,a[0],this.$element[0]):this.options.placement,b=/in/.test(f),a.detach().css({top:0,left:0,display:"block"}).insertAfter(this.$element),c=this.getPosition(b),d=a[0].offsetWidth,e=a[0].offsetHeight;switch(b?f.split(" ")[1]:f){case"bottom":g={top:c.top+c.height,left:c.left+c.width/2-d/2};break;case"top":g={top:c.top-e,left:c.left+c.width/2-d/2};break;case"left":g={top:c.top+c.height/2-e/2,left:c.left-d};break;case"right":g={top:c.top+c.height/2-e/2,left:c.left+c.width}}a.offset(g).addClass(f).addClass("in")}},setContent:function(){var a=this.tip(),b=this.getTitle();a.find(".tooltip-inner")[this.options.html?"html":"text"](b),a.removeClass("fade in top bottom left right")},hide:function(){function d(){var b=setTimeout(function(){c.off(a.support.transition.end).detach()},500);c.one(a.support.transition.end,function(){clearTimeout(b),c.detach()})}var b=this,c=this.tip();return c.removeClass("in"),a.support.transition&&this.$tip.hasClass("fade")?d():c.detach(),this},fixTitle:function(){var a=this.$element;(a.attr("title")||typeof a.attr("data-original-title")!="string")&&a.attr("data-original-title",a.attr("title")||"").removeAttr("title")},hasContent:function(){return this.getTitle()},getPosition:function(b){return a.extend({},b?{top:0,left:0}:this.$element.offset(),{width:this.$element[0].offsetWidth,height:this.$element[0].offsetHeight})},getTitle:function(){var a,b=this.$element,c=this.options;return a=b.attr("data-original-title")||(typeof c.title=="function"?c.title.call(b[0]):c.title),a},tip:function(){return this.$tip=this.$tip||a(this.options.template)},validate:function(){this.$element[0].parentNode||(this.hide(),this.$element=null,this.options=null)},enable:function(){this.enabled=!0},disable:function(){this.enabled=!1},toggleEnabled:function(){this.enabled=!this.enabled},toggle:function(b){var c=a(b.currentTarget)[this.type](this._options).data(this.type);c[c.tip().hasClass("in")?"hide":"show"]()},destroy:function(){this.hide().$element.off("."+this.type).removeData(this.type)}};var c=a.fn.tooltip;a.fn.tooltip=function(c){return this.each(function(){var d=a(this),e=d.data("tooltip"),f=typeof c=="object"&&c;e||d.data("tooltip",e=new b(this,f)),typeof c=="string"&&e[c]()})},a.fn.tooltip.Constructor=b,a.fn.tooltip.defaults={animation:!0,placement:"top",selector:!1,template:'<div class="tooltip"><div class="tooltip-arrow"></div><div class="tooltip-inner"></div></div>',trigger:"hover",title:"",delay:0,html:!1},a.fn.tooltip.noConflict=function(){return a.fn.tooltip=c,this}}(window.jQuery),!function(a){var b=function(a,b){this.init("popover",a,b)};b.prototype=a.extend({},a.fn.tooltip.Constructor.prototype,{constructor:b,setContent:function(){var a=this.tip(),b=this.getTitle(),c=this.getContent();a.find(".popover-title")[this.options.html?"html":"text"](b),a.find(".popover-content")[this.options.html?"html":"text"](c),a.removeClass("fade top bottom left right in")},hasContent:function(){return this.getTitle()||this.getContent()},getContent:function(){var a,b=this.$element,c=this.options;return a=b.attr("data-content")||(typeof c.content=="function"?c.content.call(b[0]):c.content),a},tip:function(){return this.$tip||(this.$tip=a(this.options.template)),this.$tip},destroy:function(){this.hide().$element.off("."+this.type).removeData(this.type)}});var c=a.fn.popover;a.fn.popover=function(c){return this.each(function(){var d=a(this),e=d.data("popover"),f=typeof c=="object"&&c;e||d.data("popover",e=new b(this,f)),typeof c=="string"&&e[c]()})},a.fn.popover.Constructor=b,a.fn.popover.defaults=a.extend({},a.fn.tooltip.defaults,{placement:"right",trigger:"click",content:"",template:'<div class="popover"><div class="arrow"></div><div class="popover-inner"><h3 class="popover-title"></h3><div class="popover-content"></div></div></div>'}),a.fn.popover.noConflict=function(){return a.fn.popover=c,this}}(window.jQuery),!function(a){var b=function(b,c){this.options=a.extend({},a.fn.affix.defaults,c),this.$window=a(window).on("scroll.affix.data-api",a.proxy(this.checkPosition,this)).on("click.affix.data-api",a.proxy(function(){setTimeout(a.proxy(this.checkPosition,this),1)},this)),this.$element=a(b),this.checkPosition()};b.prototype.checkPosition=function(){if(!this.$element.is(":visible"))return;var b=a(document).height(),c=this.$window.scrollTop(),d=this.$element.offset(),e=this.options.offset,f=e.bottom,g=e.top,h="affix affix-top affix-bottom",i;typeof e!="object"&&(f=g=e),typeof g=="function"&&(g=e.top()),typeof f=="function"&&(f=e.bottom()),i=this.unpin!=null&&c+this.unpin<=d.top?!1:f!=null&&d.top+this.$element.height()>=b-f?"bottom":g!=null&&c<=g?"top":!1;if(this.affixed===i)return;this.affixed=i,this.unpin=i=="bottom"?d.top-c:null,this.$element.removeClass(h).addClass("affix"+(i?"-"+i:""))};var c=a.fn.affix;a.fn.affix=function(c){return this.each(function(){var d=a(this),e=d.data("affix"),f=typeof c=="object"&&c;e||d.data("affix",e=new b(this,f)),typeof c=="string"&&e[c]()})},a.fn.affix.Constructor=b,a.fn.affix.defaults={offset:0},a.fn.affix.noConflict=function(){return a.fn.affix=c,this},a(window).on("load",function(){a('[data-spy="affix"]').each(function(){var b=a(this),c=b.data();c.offset=c.offset||{},c.offsetBottom&&(c.offset.bottom=c.offsetBottom),c.offsetTop&&(c.offset.top=c.offsetTop),b.affix(c)})})}(window.jQuery),!function(a){var b='[data-dismiss="alert"]',c=function(c){a(c).on("click",b,this.close)};c.prototype.close=function(b){function f(){e.trigger("closed").remove()}var c=a(this),d=c.attr("data-target"),e;d||(d=c.attr("href"),d=d&&d.replace(/.*(?=#[^\s]*$)/,"")),e=a(d),b&&b.preventDefault(),e.length||(e=c.hasClass("alert")?c:c.parent()),e.trigger(b=a.Event("close"));if(b.isDefaultPrevented())return;e.removeClass("in"),a.support.transition&&e.hasClass("fade")?e.on(a.support.transition.end,f):f()};var d=a.fn.alert;a.fn.alert=function(b){return this.each(function(){var d=a(this),e=d.data("alert");e||d.data("alert",e=new c(this)),typeof b=="string"&&e[b].call(d)})},a.fn.alert.Constructor=c,a.fn.alert.noConflict=function(){return a.fn.alert=d,this},a(document).on("click.alert.data-api",b,c.prototype.close)}(window.jQuery),!function(a){var b=function(b,c){this.$element=a(b),this.options=a.extend({},a.fn.button.defaults,c)};b.prototype.setState=function(a){var b="disabled",c=this.$element,d=c.data(),e=c.is("input")?"val":"html";a+="Text",d.resetText||c.data("resetText",c[e]()),c[e](d[a]||this.options[a]),setTimeout(function(){a=="loadingText"?c.addClass(b).attr(b,b):c.removeClass(b).removeAttr(b)},0)},b.prototype.toggle=function(){var a=this.$element.closest('[data-toggle="buttons-radio"]');a&&a.find(".active").removeClass("active"),this.$element.toggleClass("active")};var c=a.fn.button;a.fn.button=function(c){return this.each(function(){var d=a(this),e=d.data("button"),f=typeof c=="object"&&c;e||d.data("button",e=new b(this,f)),c=="toggle"?e.toggle():c&&e.setState(c)})},a.fn.button.defaults={loadingText:"loading..."},a.fn.button.Constructor=b,a.fn.button.noConflict=function(){return a.fn.button=c,this},a(document).on("click.button.data-api","[data-toggle^=button]",function(b){var c=a(b.target);c.hasClass("btn")||(c=c.closest(".btn")),c.button("toggle")})}(window.jQuery),!function(a){var b=function(b,c){this.$element=a(b),this.options=a.extend({},a.fn.collapse.defaults,c),this.options.parent&&(this.$parent=a(this.options.parent)),this.options.toggle&&this.toggle()};b.prototype={constructor:b,dimension:function(){var a=this.$element.hasClass("width");return a?"width":"height"},show:function(){var b,c,d,e;if(this.transitioning)return;b=this.dimension(),c=a.camelCase(["scroll",b].join("-")),d=this.$parent&&this.$parent.find("> .accordion-group > .in");if(d&&d.length){e=d.data("collapse");if(e&&e.transitioning)return;d.collapse("hide"),e||d.data("collapse",null)}this.$element[b](0),this.transition("addClass",a.Event("show"),"shown"),a.support.transition&&this.$element[b](this.$element[0][c])},hide:function(){var b;if(this.transitioning)return;b=this.dimension(),this.reset(this.$element[b]()),this.transition("removeClass",a.Event("hide"),"hidden"),this.$element[b](0)},reset:function(a){var b=this.dimension();return this.$element.removeClass("collapse")[b](a||"auto")[0].offsetWidth,this.$element[a!==null?"addClass":"removeClass"]("collapse"),this},transition:function(b,c,d){var e=this,f=function(){c.type=="show"&&e.reset(),e.transitioning=0,e.$element.trigger(d)};this.$element.trigger(c);if(c.isDefaultPrevented())return;this.transitioning=1,this.$element[b]("in"),a.support.transition&&this.$element.hasClass("collapse")?this.$element.one(a.support.transition.end,f):f()},toggle:function(){this[this.$element.hasClass("in")?"hide":"show"]()}};var c=a.fn.collapse;a.fn.collapse=function(c){return this.each(function(){var d=a(this),e=d.data("collapse"),f=typeof c=="object"&&c;e||d.data("collapse",e=new b(this,f)),typeof c=="string"&&e[c]()})},a.fn.collapse.defaults={toggle:!0},a.fn.collapse.Constructor=b,a.fn.collapse.noConflict=function(){return a.fn.collapse=c,this},a(document).on("click.collapse.data-api","[data-toggle=collapse]",function(b){var c=a(this),d,e=c.attr("data-target")||b.preventDefault()||(d=c.attr("href"))&&d.replace(/.*(?=#[^\s]+$)/,""),f=a(e).data("collapse")?"toggle":c.data();c[a(e).hasClass("in")?"addClass":"removeClass"]("collapsed"),a(e).collapse(f)})}(window.jQuery),!function(a){var b=function(b,c){this.$element=a(b),this.options=c,this.options.pause=="hover"&&this.$element.on("mouseenter",a.proxy(this.pause,this)).on("mouseleave",a.proxy(this.cycle,this))};b.prototype={cycle:function(b){return b||(this.paused=!1),this.options.interval&&!this.paused&&(this.interval=setInterval(a.proxy(this.next,this),this.options.interval)),this},to:function(b){var c=this.$element.find(".item.active"),d=c.parent().children(),e=d.index(c),f=this;if(b>d.length-1||b<0)return;return this.sliding?this.$element.one("slid",function(){f.to(b)}):e==b?this.pause().cycle():this.slide(b>e?"next":"prev",a(d[b]))},pause:function(b){return b||(this.paused=!0),this.$element.find(".next, .prev").length&&a.support.transition.end&&(this.$element.trigger(a.support.transition.end),this.cycle()),clearInterval(this.interval),this.interval=null,this},next:function(){if(this.sliding)return;return this.slide("next")},prev:function(){if(this.sliding)return;return this.slide("prev")},slide:function(b,c){var d=this.$element.find(".item.active"),e=c||d[b](),f=this.interval,g=b=="next"?"left":"right",h=b=="next"?"first":"last",i=this,j;this.sliding=!0,f&&this.pause(),e=e.length?e:this.$element.find(".item")[h](),j=a.Event("slide",{relatedTarget:e[0]});if(e.hasClass("active"))return;if(a.support.transition&&this.$element.hasClass("slide")){this.$element.trigger(j);if(j.isDefaultPrevented())return;e.addClass(b),e[0].offsetWidth,d.addClass(g),e.addClass(g),this.$element.one(a.support.transition.end,function(){e.removeClass([b,g].join(" ")).addClass("active"),d.removeClass(["active",g].join(" ")),i.sliding=!1,setTimeout(function(){i.$element.trigger("slid")},0)})}else{this.$element.trigger(j);if(j.isDefaultPrevented())return;d.removeClass("active"),e.addClass("active"),this.sliding=!1,this.$element.trigger("slid")}return f&&this.cycle(),this}};var c=a.fn.carousel;a.fn.carousel=function(c){return this.each(function(){var d=a(this),e=d.data("carousel"),f=a.extend({},a.fn.carousel.defaults,typeof c=="object"&&c),g=typeof c=="string"?c:f.slide;e||d.data("carousel",e=new b(this,f)),typeof c=="number"?e.to(c):g?e[g]():f.interval&&e.cycle()})},a.fn.carousel.defaults={interval:5e3,pause:"hover"},a.fn.carousel.Constructor=b,a.fn.carousel.noConflict=function(){return a.fn.carousel=c,this},a(document).on("click.carousel.data-api","[data-slide]",function(b){var c=a(this),d,e=a(c.attr("data-target")||(d=c.attr("href"))&&d.replace(/.*(?=#[^\s]+$)/,"")),f=a.extend({},e.data(),c.data());e.carousel(f),b.preventDefault()})}(window.jQuery),!function(a){var b=function(b,c){this.$element=a(b),this.options=a.extend({},a.fn.typeahead.defaults,c),this.matcher=this.options.matcher||this.matcher,this.sorter=this.options.sorter||this.sorter,this.highlighter=this.options.highlighter||this.highlighter,this.updater=this.options.updater||this.updater,this.source=this.options.source,this.$menu=a(this.options.menu),this.shown=!1,this.listen()};b.prototype={constructor:b,select:function(){var a=this.$menu.find(".active").attr("data-value");return this.$element.val(this.updater(a)).change(),this.hide()},updater:function(a){return a},show:function(){var b=a.extend({},this.$element.position(),{height:this.$element[0].offsetHeight});return this.$menu.insertAfter(this.$element).css({top:b.top+b.height,left:b.left}).show(),this.shown=!0,this},hide:function(){return this.$menu.hide(),this.shown=!1,this},lookup:function(b){var c;return this.query=this.$element.val(),!this.query||this.query.length<this.options.minLength?this.shown?this.hide():this:(c=a.isFunction(this.source)?this.source(this.query,a.proxy(this.process,this)):this.source,c?this.process(c):this)},process:function(b){var c=this;return b=a.grep(b,function(a){return c.matcher(a)}),b=this.sorter(b),b.length?this.render(b.slice(0,this.options.items)).show():this.shown?this.hide():this},matcher:function(a){return~a.toLowerCase().indexOf(this.query.toLowerCase())},sorter:function(a){var b=[],c=[],d=[],e;while(e=a.shift())e.toLowerCase().indexOf(this.query.toLowerCase())?~e.indexOf(this.query)?c.push(e):d.push(e):b.push(e);return b.concat(c,d)},highlighter:function(a){var b=this.query.replace(/[\-\[\]{}()*+?.,\\\^$|#\s]/g,"\\$&");return a.replace(new RegExp("("+b+")","ig"),function(a,b){return"<strong>"+b+"</strong>"})},render:function(b){var c=this;return b=a(b).map(function(b,d){return b=a(c.options.item).attr("data-value",d),b.find("a").html(c.highlighter(d)),b[0]}),b.first().addClass("active"),this.$menu.html(b),this},next:function(b){var c=this.$menu.find(".active").removeClass("active"),d=c.next();d.length||(d=a(this.$menu.find("li")[0])),d.addClass("active")},prev:function(a){var b=this.$menu.find(".active").removeClass("active"),c=b.prev();c.length||(c=this.$menu.find("li").last()),c.addClass("active")},listen:function(){this.$element.on("blur",a.proxy(this.blur,this)).on("keypress",a.proxy(this.keypress,this)).on("keyup",a.proxy(this.keyup,this)),this.eventSupported("keydown")&&this.$element.on("keydown",a.proxy(this.keydown,this)),this.$menu.on("click",a.proxy(this.click,this)).on("mouseenter","li",a.proxy(this.mouseenter,this))},eventSupported:function(a){var b=a in this.$element;return b||(this.$element.setAttribute(a,"return;"),b=typeof this.$element[a]=="function"),b},move:function(a){if(!this.shown)return;switch(a.keyCode){case 9:case 13:case 27:a.preventDefault();break;case 38:a.preventDefault(),this.prev();break;case 40:a.preventDefault(),this.next()}a.stopPropagation()},keydown:function(b){this.suppressKeyPressRepeat=~a.inArray(b.keyCode,[40,38,9,13,27]),this.move(b)},keypress:function(a){if(this.suppressKeyPressRepeat)return;this.move(a)},keyup:function(a){switch(a.keyCode){case 40:case 38:case 16:case 17:case 18:break;case 9:case 13:if(!this.shown)return;this.select();break;case 27:if(!this.shown)return;this.hide();break;default:this.lookup()}a.stopPropagation(),a.preventDefault()},blur:function(a){var b=this;setTimeout(function(){b.hide()},150)},click:function(a){a.stopPropagation(),a.preventDefault(),this.select()},mouseenter:function(b){this.$menu.find(".active").removeClass("active"),a(b.currentTarget).addClass("active")}};var c=a.fn.typeahead;a.fn.typeahead=function(c){return this.each(function(){var d=a(this),e=d.data("typeahead"),f=typeof c=="object"&&c;e||d.data("typeahead",e=new b(this,f)),typeof c=="string"&&e[c]()})},a.fn.typeahead.defaults={source:[],items:8,menu:'<ul class="typeahead dropdown-menu"></ul>',item:'<li><a href="#"></a></li>',minLength:1},a.fn.typeahead.Constructor=b,a.fn.typeahead.noConflict=function(){return a.fn.typeahead=c,this},a(document).on("focus.typeahead.data-api",'[data-provide="typeahead"]',function(b){var c=a(this);if(c.data("typeahead"))return;b.preventDefault(),c.typeahead(c.data())})}(window.jQuery) |
| URL | http://zero.webappsecurity.com/resources/js/jquery-1.8.2.min.js |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Request Header - size: 287 bytes. |
GET http://zero.webappsecurity.com/resources/js/jquery-1.8.2.min.js HTTP/1.1
Host: zero.webappsecurity.com User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0 Pragma: no-cache Cache-Control: no-cache Referer: http://zero.webappsecurity.com |
| Request Body - size: 0 bytes. |
|
| Response Header - size: 361 bytes. |
HTTP/1.1 200 OK
Date: Mon, 14 Mar 2022 07:13:42 GMT Server: Apache-Coyote/1.1 Access-Control-Allow-Origin: * Accept-Ranges: bytes ETag: W/"93436-1358437290000" Last-Modified: Thu, 17 Jan 2013 15:41:30 GMT Cache-Control: max-age=2678400 Expires: Thu, 14 Apr 2022 07:13:43 GMT Content-Type: application/javascript;charset=UTF-8 Content-Length: 93436 |
| Response Body - size: 93,436 bytes. |
/*! jQuery v1.8.2 jquery.com | jquery.org/license */
(function(a,b){function G(a){var b=F[a]={};return p.each(a.split(s),function(a,c){b[c]=!0}),b}function J(a,c,d){if(d===b&&a.nodeType===1){var e="data-"+c.replace(I,"-$1").toLowerCase();d=a.getAttribute(e);if(typeof d=="string"){try{d=d==="true"?!0:d==="false"?!1:d==="null"?null:+d+""===d?+d:H.test(d)?p.parseJSON(d):d}catch(f){}p.data(a,c,d)}else d=b}return d}function K(a){var b;for(b in a){if(b==="data"&&p.isEmptyObject(a[b]))continue;if(b!=="toJSON")return!1}return!0}function ba(){return!1}function bb(){return!0}function bh(a){return!a||!a.parentNode||a.parentNode.nodeType===11}function bi(a,b){do a=a[b];while(a&&a.nodeType!==1);return a}function bj(a,b,c){b=b||0;if(p.isFunction(b))return p.grep(a,function(a,d){var e=!!b.call(a,d,a);return e===c});if(b.nodeType)return p.grep(a,function(a,d){return a===b===c});if(typeof b=="string"){var d=p.grep(a,function(a){return a.nodeType===1});if(be.test(b))return p.filter(b,d,!c);b=p.filter(b,d)}return p.grep(a,function(a,d){return p.inArray(a,b)>=0===c})}function bk(a){var b=bl.split("|"),c=a.createDocumentFragment();if(c.createElement)while(b.length)c.createElement(b.pop());return c}function bC(a,b){return a.getElementsByTagName(b)[0]||a.appendChild(a.ownerDocument.createElement(b))}function bD(a,b){if(b.nodeType!==1||!p.hasData(a))return;var c,d,e,f=p._data(a),g=p._data(b,f),h=f.events;if(h){delete g.handle,g.events={};for(c in h)for(d=0,e=h[c].length;d<e;d++)p.event.add(b,c,h[c][d])}g.data&&(g.data=p.extend({},g.data))}function bE(a,b){var c;if(b.nodeType!==1)return;b.clearAttributes&&b.clearAttributes(),b.mergeAttributes&&b.mergeAttributes(a),c=b.nodeName.toLowerCase(),c==="object"?(b.parentNode&&(b.outerHTML=a.outerHTML),p.support.html5Clone&&a.innerHTML&&!p.trim(b.innerHTML)&&(b.innerHTML=a.innerHTML)):c==="input"&&bv.test(a.type)?(b.defaultChecked=b.checked=a.checked,b.value!==a.value&&(b.value=a.value)):c==="option"?b.selected=a.defaultSelected:c==="input"||c==="textarea"?b.defaultValue=a.defaultValue:c==="script"&&b.text!==a.text&&(b.text=a.text),b.removeAttribute(p.expando)}function bF(a){return typeof a.getElementsByTagName!="undefined"?a.getElementsByTagName("*"):typeof a.querySelectorAll!="undefined"?a.querySelectorAll("*"):[]}function bG(a){bv.test(a.type)&&(a.defaultChecked=a.checked)}function bY(a,b){if(b in a)return b;var c=b.charAt(0).toUpperCase()+b.slice(1),d=b,e=bW.length;while(e--){b=bW[e]+c;if(b in a)return b}return d}function bZ(a,b){return a=b||a,p.css(a,"display")==="none"||!p.contains(a.ownerDocument,a)}function b$(a,b){var c,d,e=[],f=0,g=a.length;for(;f<g;f++){c=a[f];if(!c.style)continue;e[f]=p._data(c,"olddisplay"),b?(!e[f]&&c.style.display==="none"&&(c.style.display=""),c.style.display===""&&bZ(c)&&(e[f]=p._data(c,"olddisplay",cc(c.nodeName)))):(d=bH(c,"display"),!e[f]&&d!=="none"&&p._data(c,"olddisplay",d))}for(f=0;f<g;f++){c=a[f];if(!c.style)continue;if(!b||c.style.display==="none"||c.style.display==="")c.style.display=b?e[f]||"":"none"}return a}function b_(a,b,c){var d=bP.exec(b);return d?Math.max(0,d[1]-(c||0))+(d[2]||"px"):b}function ca(a,b,c,d){var e=c===(d?"border":"content")?4:b==="width"?1:0,f=0;for(;e<4;e+=2)c==="margin"&&(f+=p.css(a,c+bV[e],!0)),d?(c==="content"&&(f-=parseFloat(bH(a,"padding"+bV[e]))||0),c!=="margin"&&(f-=parseFloat(bH(a,"border"+bV[e]+"Width"))||0)):(f+=parseFloat(bH(a,"padding"+bV[e]))||0,c!=="padding"&&(f+=parseFloat(bH(a,"border"+bV[e]+"Width"))||0));return f}function cb(a,b,c){var d=b==="width"?a.offsetWidth:a.offsetHeight,e=!0,f=p.support.boxSizing&&p.css(a,"boxSizing")==="border-box";if(d<=0||d==null){d=bH(a,b);if(d<0||d==null)d=a.style[b];if(bQ.test(d))return d;e=f&&(p.support.boxSizingReliable||d===a.style[b]),d=parseFloat(d)||0}return d+ca(a,b,c||(f?"border":"content"),e)+"px"}function cc(a){if(bS[a])return bS[a];var b=p("<"+a+">").appendTo(e.body),c=b.css("display");b.remove();if(c==="none"||c===""){bI=e.body.appendChild(bI||p.extend(e.createElement("iframe"),{frameBorder:0,width:0,height:0}));if(!bJ||!bI.createElement)bJ=(bI.contentWindow||bI.contentDocument).document,bJ.write("<!doctype html><html><body>"),bJ.close();b=bJ.body.appendChild(bJ.createElement(a)),c=bH(b,"display"),e.body.removeChild(bI)}return bS[a]=c,c}function ci(a,b,c,d){var e;if(p.isArray(b))p.each(b,function(b,e){c||ce.test(a)?d(a,e):ci(a+"["+(typeof e=="object"?b:"")+"]",e,c,d)});else if(!c&&p.type(b)==="object")for(e in b)ci(a+"["+e+"]",b[e],c,d);else d(a,b)}function cz(a){return function(b,c){typeof b!="string"&&(c=b,b="*");var d,e,f,g=b.toLowerCase().split(s),h=0,i=g.length;if(p.isFunction(c))for(;h<i;h++)d=g[h],f=/^\+/.test(d),f&&(d=d.substr(1)||"*"),e=a[d]=a[d]||[],e[f?"unshift":"push"](c)}}function cA(a,c,d,e,f,g){f=f||c.dataTypes[0],g=g||{},g[f]=!0;var h,i=a[f],j=0,k=i?i.length:0,l=a===cv;for(;j<k&&(l||!h);j++)h=i[j](c,d,e),typeof h=="string"&&(!l||g[h]?h=b:(c.dataTypes.unshift(h),h=cA(a,c,d,e,h,g)));return(l||!h)&&!g["*"]&&(h=cA(a,c,d,e,"*",g)),h}function cB(a,c){var d,e,f=p.ajaxSettings.flatOptions||{};for(d in c)c[d]!==b&&((f[d]?a:e||(e={}))[d]=c[d]);e&&p.extend(!0,a,e)}function cC(a,c,d){var e,f,g,h,i=a.contents,j=a.dataTypes,k=a.responseFields;for(f in k)f in d&&(c[k[f]]=d[f]);while(j[0]==="*")j.shift(),e===b&&(e=a.mimeType||c.getResponseHeader("content-type"));if(e)for(f in i)if(i[f]&&i[f].test(e)){j.unshift(f);break}if(j[0]in d)g=j[0];else{for(f in d){if(!j[0]||a.converters[f+" "+j[0]]){g=f;break}h||(h=f)}g=g||h}if(g)return g!==j[0]&&j.unshift(g),d[g]}function cD(a,b){var c,d,e,f,g=a.dataTypes.slice(),h=g[0],i={},j=0;a.dataFilter&&(b=a.dataFilter(b,a.dataType));if(g[1])for(c in a.converters)i[c.toLowerCase()]=a.converters[c];for(;e=g[++j];)if(e!=="*"){if(h!=="*"&&h!==e){c=i[h+" "+e]||i["* "+e];if(!c)for(d in i){f=d.split(" ");if(f[1]===e){c=i[h+" "+f[0]]||i["* "+f[0]];if(c){c===!0?c=i[d]:i[d]!==!0&&(e=f[0],g.splice(j--,0,e));break}}}if(c!==!0)if(c&&a["throws"])b=c(b);else try{b=c(b)}catch(k){return{state:"parsererror",error:c?k:"No conversion from "+h+" to "+e}}}h=e}return{state:"success",data:b}}function cL(){try{return new a.XMLHttpRequest}catch(b){}}function cM(){try{return new a.ActiveXObject("Microsoft.XMLHTTP")}catch(b){}}function cU(){return setTimeout(function(){cN=b},0),cN=p.now()}function cV(a,b){p.each(b,function(b,c){var d=(cT[b]||[]).concat(cT["*"]),e=0,f=d.length;for(;e<f;e++)if(d[e].call(a,b,c))return})}function cW(a,b,c){var d,e=0,f=0,g=cS.length,h=p.Deferred().always(function(){delete i.elem}),i=function(){var b=cN||cU(),c=Math.max(0,j.startTime+j.duration-b),d=1-(c/j.duration||0),e=0,f=j.tweens.length;for(;e<f;e++)j.tweens[e].run(d);return h.notifyWith(a,[j,d,c]),d<1&&f?c:(h.resolveWith(a,[j]),!1)},j=h.promise({elem:a,props:p.extend({},b),opts:p.extend(!0,{specialEasing:{}},c),originalProperties:b,originalOptions:c,startTime:cN||cU(),duration:c.duration,tweens:[],createTween:function(b,c,d){var e=p.Tween(a,j.opts,b,c,j.opts.specialEasing[b]||j.opts.easing);return j.tweens.push(e),e},stop:function(b){var c=0,d=b?j.tweens.length:0;for(;c<d;c++)j.tweens[c].run(1);return b?h.resolveWith(a,[j,b]):h.rejectWith(a,[j,b]),this}}),k=j.props;cX(k,j.opts.specialEasing);for(;e<g;e++){d=cS[e].call(j,a,k,j.opts);if(d)return d}return cV(j,k),p.isFunction(j.opts.start)&&j.opts.start.call(a,j),p.fx.timer(p.extend(i,{anim:j,queue:j.opts.queue,elem:a})),j.progress(j.opts.progress).done(j.opts.done,j.opts.complete).fail(j.opts.fail).always(j.opts.always)}function cX(a,b){var c,d,e,f,g;for(c in a){d=p.camelCase(c),e=b[d],f=a[c],p.isArray(f)&&(e=f[1],f=a[c]=f[0]),c!==d&&(a[d]=f,delete a[c]),g=p.cssHooks[d];if(g&&"expand"in g){f=g.expand(f),delete a[d];for(c in f)c in a||(a[c]=f[c],b[c]=e)}else b[d]=e}}function cY(a,b,c){var d,e,f,g,h,i,j,k,l=this,m=a.style,n={},o=[],q=a.nodeType&&bZ(a);c.queue||(j=p._queueHooks(a,"fx"),j.unqueued==null&&(j.unqueued=0,k=j.empty.fire,j.empty.fire=function(){j.unqueued||k()}),j.unqueued++,l.always(function(){l.always(function(){j.unqueued--,p.queue(a,"fx").length||j.empty.fire()})})),a.nodeType===1&&("height"in b||"width"in b)&&(c.overflow=[m.overflow,m.overflowX,m.overflowY],p.css(a,"display")==="inline"&&p.css(a,"float")==="none"&&(!p.support.inlineBlockNeedsLayout||cc(a.nodeName)==="inline"?m.display="inline-block":m.zoom=1)),c.overflow&&(m.overflow="hidden",p.support.shrinkWrapBlocks||l.done(function(){m.overflow=c.overflow[0],m.overflowX=c.overflow[1],m.overflowY=c.overflow[2]}));for(d in b){f=b[d];if(cP.exec(f)){delete b[d];if(f===(q?"hide":"show"))continue;o.push(d)}}g=o.length;if(g){h=p._data(a,"fxshow")||p._data(a,"fxshow",{}),q?p(a).show():l.done(function(){p(a).hide()}),l.done(function(){var b;p.removeData(a,"fxshow",!0);for(b in n)p.style(a,b,n[b])});for(d=0;d<g;d++)e=o[d],i=l.createTween(e,q?h[e]:0),n[e]=h[e]||p.style(a,e),e in h||(h[e]=i.start,q&&(i.end=i.start,i.start=e==="width"||e==="height"?1:0))}}function cZ(a,b,c,d,e){return new cZ.prototype.init(a,b,c,d,e)}function c$(a,b){var c,d={height:a},e=0;b=b?1:0;for(;e<4;e+=2-b)c=bV[e],d["margin"+c]=d["padding"+c]=a;return b&&(d.opacity=d.width=a),d}function da(a){return p.isWindow(a)?a:a.nodeType===9?a.defaultView||a.parentWindow:!1}var c,d,e=a.document,f=a.location,g=a.navigator,h=a.jQuery,i=a.$,j=Array.prototype.push,k=Array.prototype.slice,l=Array.prototype.indexOf,m=Object.prototype.toString,n=Object.prototype.hasOwnProperty,o=String.prototype.trim,p=function(a,b){return new p.fn.init(a,b,c)},q=/[\-+]?(?:\d*\.|)\d+(?:[eE][\-+]?\d+|)/.source,r=/\S/,s=/\s+/,t=/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,u=/^(?:[^#<]*(<[\w\W]+>)[^>]*$|#([\w\-]*)$)/,v=/^<(\w+)\s*\/?>(?:<\/\1>|)$/,w=/^[\],:{}\s]*$/,x=/(?:^|:|,)(?:\s*\[)+/g,y=/\\(?:["\\\/bfnrt]|u[\da-fA-F]{4})/g,z=/"[^"\\\r\n]*"|true|false|null|-?(?:\d\d*\.|)\d+(?:[eE][\-+]?\d+|)/g,A=/^-ms-/,B=/-([\da-z])/gi,C=function(a,b){return(b+"").toUpperCase()},D=function(){e.addEventListener?(e.removeEventListener("DOMContentLoaded",D,!1),p.ready()):e.readyState==="complete"&&(e.detachEvent("onreadystatechange",D),p.ready())},E={};p.fn=p.prototype={constructor:p,init:function(a,c,d){var f,g,h,i;if(!a)return this;if(a.nodeType)return this.context=this[0]=a,this.length=1,this;if(typeof a=="string"){a.charAt(0)==="<"&&a.charAt(a.length-1)===">"&&a.length>=3?f=[null,a,null]:f=u.exec(a);if(f&&(f[1]||!c)){if(f[1])return c=c instanceof p?c[0]:c,i=c&&c.nodeType?c.ownerDocument||c:e,a=p.parseHTML(f[1],i,!0),v.test(f[1])&&p.isPlainObject(c)&&this.attr.call(a,c,!0),p.merge(this,a);g=e.getElementById(f[2]);if(g&&g.parentNode){if(g.id!==f[2])return d.find(a);this.length=1,this[0]=g}return this.context=e,this.selector=a,this}return!c||c.jquery?(c||d).find(a):this.constructor(c).find(a)}return p.isFunction(a)?d.ready(a):(a.selector!==b&&(this.selector=a.selector,this.context=a.context),p.makeArray(a,this))},selector:"",jquery:"1.8.2",length:0,size:function(){return this.length},toArray:function(){return k.call(this)},get:function(a){return a==null?this.toArray():a<0?this[this.length+a]:this[a]},pushStack:function(a,b,c){var d=p.merge(this.constructor(),a);return d.prevObject=this,d.context=this.context,b==="find"?d.selector=this.selector+(this.selector?" ":"")+c:b&&(d.selector=this.selector+"."+b+"("+c+")"),d},each:function(a,b){return p.each(this,a,b)},ready:function(a){return p.ready.promise().done(a),this},eq:function(a){return a=+a,a===-1?this.slice(a):this.slice(a,a+1)},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},slice:function(){return this.pushStack(k.apply(this,arguments),"slice",k.call(arguments).join(","))},map:function(a){return this.pushStack(p.map(this,function(b,c){return a.call(b,c,b)}))},end:function(){return this.prevObject||this.constructor(null)},push:j,sort:[].sort,splice:[].splice},p.fn.init.prototype=p.fn,p.extend=p.fn.extend=function(){var a,c,d,e,f,g,h=arguments[0]||{},i=1,j=arguments.length,k=!1;typeof h=="boolean"&&(k=h,h=arguments[1]||{},i=2),typeof h!="object"&&!p.isFunction(h)&&(h={}),j===i&&(h=this,--i);for(;i<j;i++)if((a=arguments[i])!=null)for(c in a){d=h[c],e=a[c];if(h===e)continue;k&&e&&(p.isPlainObject(e)||(f=p.isArray(e)))?(f?(f=!1,g=d&&p.isArray(d)?d:[]):g=d&&p.isPlainObject(d)?d:{},h[c]=p.extend(k,g,e)):e!==b&&(h[c]=e)}return h},p.extend({noConflict:function(b){return a.$===p&&(a.$=i),b&&a.jQuery===p&&(a.jQuery=h),p},isReady:!1,readyWait:1,holdReady:function(a){a?p.readyWait++:p.ready(!0)},ready:function(a){if(a===!0?--p.readyWait:p.isReady)return;if(!e.body)return setTimeout(p.ready,1);p.isReady=!0;if(a!==!0&&--p.readyWait>0)return;d.resolveWith(e,[p]),p.fn.trigger&&p(e).trigger("ready").off("ready")},isFunction:function(a){return p.type(a)==="function"},isArray:Array.isArray||function(a){return p.type(a)==="array"},isWindow:function(a){return a!=null&&a==a.window},isNumeric:function(a){return!isNaN(parseFloat(a))&&isFinite(a)},type:function(a){return a==null?String(a):E[m.call(a)]||"object"},isPlainObject:function(a){if(!a||p.type(a)!=="object"||a.nodeType||p.isWindow(a))return!1;try{if(a.constructor&&!n.call(a,"constructor")&&!n.call(a.constructor.prototype,"isPrototypeOf"))return!1}catch(c){return!1}var d;for(d in a);return d===b||n.call(a,d)},isEmptyObject:function(a){var b;for(b in a)return!1;return!0},error:function(a){throw new Error(a)},parseHTML:function(a,b,c){var d;return!a||typeof a!="string"?null:(typeof b=="boolean"&&(c=b,b=0),b=b||e,(d=v.exec(a))?[b.createElement(d[1])]:(d=p.buildFragment([a],b,c?null:[]),p.merge([],(d.cacheable?p.clone(d.fragment):d.fragment).childNodes)))},parseJSON:function(b){if(!b||typeof b!="string")return null;b=p.trim(b);if(a.JSON&&a.JSON.parse)return a.JSON.parse(b);if(w.test(b.replace(y,"@").replace(z,"]").replace(x,"")))return(new Function("return "+b))();p.error("Invalid JSON: "+b)},parseXML:function(c){var d,e;if(!c||typeof c!="string")return null;try{a.DOMParser?(e=new DOMParser,d=e.parseFromString(c,"text/xml")):(d=new ActiveXObject("Microsoft.XMLDOM"),d.async="false",d.loadXML(c))}catch(f){d=b}return(!d||!d.documentElement||d.getElementsByTagName("parsererror").length)&&p.error("Invalid XML: "+c),d},noop:function(){},globalEval:function(b){b&&r.test(b)&&(a.execScript||function(b){a.eval.call(a,b)})(b)},camelCase:function(a){return a.replace(A,"ms-").replace(B,C)},nodeName:function(a,b){return a.nodeName&&a.nodeName.toLowerCase()===b.toLowerCase()},each:function(a,c,d){var e,f=0,g=a.length,h=g===b||p.isFunction(a);if(d){if(h){for(e in a)if(c.apply(a[e],d)===!1)break}else for(;f<g;)if(c.apply(a[f++],d)===!1)break}else if(h){for(e in a)if(c.call(a[e],e,a[e])===!1)break}else for(;f<g;)if(c.call(a[f],f,a[f++])===!1)break;return a},trim:o&&!o.call(" ")?function(a){return a==null?"":o.call(a)}:function(a){return a==null?"":(a+"").replace(t,"")},makeArray:function(a,b){var c,d=b||[];return a!=null&&(c=p.type(a),a.length==null||c==="string"||c==="function"||c==="regexp"||p.isWindow(a)?j.call(d,a):p.merge(d,a)),d},inArray:function(a,b,c){var d;if(b){if(l)return l.call(b,a,c);d=b.length,c=c?c<0?Math.max(0,d+c):c:0;for(;c<d;c++)if(c in b&&b[c]===a)return c}return-1},merge:function(a,c){var d=c.length,e=a.length,f=0;if(typeof d=="number")for(;f<d;f++)a[e++]=c[f];else while(c[f]!==b)a[e++]=c[f++];return a.length=e,a},grep:function(a,b,c){var d,e=[],f=0,g=a.length;c=!!c;for(;f<g;f++)d=!!b(a[f],f),c!==d&&e.push(a[f]);return e},map:function(a,c,d){var e,f,g=[],h=0,i=a.length,j=a instanceof p||i!==b&&typeof i=="number"&&(i>0&&a[0]&&a[i-1]||i===0||p.isArray(a));if(j)for(;h<i;h++)e=c(a[h],h,d),e!=null&&(g[g.length]=e);else for(f in a)e=c(a[f],f,d),e!=null&&(g[g.length]=e);return g.concat.apply([],g)},guid:1,proxy:function(a,c){var d,e,f;return typeof c=="string"&&(d=a[c],c=a,a=d),p.isFunction(a)?(e=k.call(arguments,2),f=function(){return a.apply(c,e.concat(k.call(arguments)))},f.guid=a.guid=a.guid||p.guid++,f):b},access:function(a,c,d,e,f,g,h){var i,j=d==null,k=0,l=a.length;if(d&&typeof d=="object"){for(k in d)p.access(a,c,k,d[k],1,g,e);f=1}else if(e!==b){i=h===b&&p.isFunction(e),j&&(i?(i=c,c=function(a,b,c){return i.call(p(a),c)}):(c.call(a,e),c=null));if(c)for(;k<l;k++)c(a[k],d,i?e.call(a[k],k,c(a[k],d)):e,h);f=1}return f?a:j?c.call(a):l?c(a[0],d):g},now:function(){return(new Date).getTime()}}),p.ready.promise=function(b){if(!d){d=p.Deferred();if(e.readyState==="complete")setTimeout(p.ready,1);else if(e.addEventListener)e.addEventListener("DOMContentLoaded",D,!1),a.addEventListener("load",p.ready,!1);else{e.attachEvent("onreadystatechange",D),a.attachEvent("onload",p.ready);var c=!1;try{c=a.frameElement==null&&e.documentElement}catch(f){}c&&c.doScroll&&function g(){if(!p.isReady){try{c.doScroll("left")}catch(a){return setTimeout(g,50)}p.ready()}}()}}return d.promise(b)},p.each("Boolean Number String Function Array Date RegExp Object".split(" "),function(a,b){E["[object "+b+"]"]=b.toLowerCase()}),c=p(e);var F={};p.Callbacks=function(a){a=typeof a=="string"?F[a]||G(a):p.extend({},a);var c,d,e,f,g,h,i=[],j=!a.once&&[],k=function(b){c=a.memory&&b,d=!0,h=f||0,f=0,g=i.length,e=!0;for(;i&&h<g;h++)if(i[h].apply(b[0],b[1])===!1&&a.stopOnFalse){c=!1;break}e=!1,i&&(j?j.length&&k(j.shift()):c?i=[]:l.disable())},l={add:function(){if(i){var b=i.length;(function d(b){p.each(b,function(b,c){var e=p.type(c);e==="function"&&(!a.unique||!l.has(c))?i.push(c):c&&c.length&&e!=="string"&&d(c)})})(arguments),e?g=i.length:c&&(f=b,k(c))}return this},remove:function(){return i&&p.each(arguments,function(a,b){var c;while((c=p.inArray(b,i,c))>-1)i.splice(c,1),e&&(c<=g&&g--,c<=h&&h--)}),this},has:function(a){return p.inArray(a,i)>-1},empty:function(){return i=[],this},disable:function(){return i=j=c=b,this},disabled:function(){return!i},lock:function(){return j=b,c||l.disable(),this},locked:function(){return!j},fireWith:function(a,b){return b=b||[],b=[a,b.slice?b.slice():b],i&&(!d||j)&&(e?j.push(b):k(b)),this},fire:function(){return l.fireWith(this,arguments),this},fired:function(){return!!d}};return l},p.extend({Deferred:function(a){var b=[["resolve","done",p.Callbacks("once memory"),"resolved"],["reject","fail",p.Callbacks("once memory"),"rejected"],["notify","progress",p.Callbacks("memory")]],c="pending",d={state:function(){return c},always:function(){return e.done(arguments).fail(arguments),this},then:function(){var a=arguments;return p.Deferred(function(c){p.each(b,function(b,d){var f=d[0],g=a[b];e[d[1]](p.isFunction(g)?function(){var a=g.apply(this,arguments);a&&p.isFunction(a.promise)?a.promise().done(c.resolve).fail(c.reject).progress(c.notify):c[f+"With"](this===e?c:this,[a])}:c[f])}),a=null}).promise()},promise:function(a){return a!=null?p.extend(a,d):d}},e={};return d.pipe=d.then,p.each(b,function(a,f){var g=f[2],h=f[3];d[f[1]]=g.add,h&&g.add(function(){c=h},b[a^1][2].disable,b[2][2].lock),e[f[0]]=g.fire,e[f[0]+"With"]=g.fireWith}),d.promise(e),a&&a.call(e,e),e},when:function(a){var b=0,c=k.call(arguments),d=c.length,e=d!==1||a&&p.isFunction(a.promise)?d:0,f=e===1?a:p.Deferred(),g=function(a,b,c){return function(d){b[a]=this,c[a]=arguments.length>1?k.call(arguments):d,c===h?f.notifyWith(b,c):--e||f.resolveWith(b,c)}},h,i,j;if(d>1){h=new Array(d),i=new Array(d),j=new Array(d);for(;b<d;b++)c[b]&&p.isFunction(c[b].promise)?c[b].promise().done(g(b,j,c)).fail(f.reject).progress(g(b,i,h)):--e}return e||f.resolveWith(j,c),f.promise()}}),p.support=function(){var b,c,d,f,g,h,i,j,k,l,m,n=e.createElement("div");n.setAttribute("className","t"),n.innerHTML=" <link/><table></table><a href='/a'>a</a><input type='checkbox'/>",c=n.getElementsByTagName("*"),d=n.getElementsByTagName("a")[0],d.style.cssText="top:1px;float:left;opacity:.5";if(!c||!c.length)return{};f=e.createElement("select"),g=f.appendChild(e.createElement("option")),h=n.getElementsByTagName("input")[0],b={leadingWhitespace:n.firstChild.nodeType===3,tbody:!n.getElementsByTagName("tbody").length,htmlSerialize:!!n.getElementsByTagName("link").length,style:/top/.test(d.getAttribute("style")),hrefNormalized:d.getAttribute("href")==="/a",opacity:/^0.5/.test(d.style.opacity),cssFloat:!!d.style.cssFloat,checkOn:h.value==="on",optSelected:g.selected,getSetAttribute:n.className!=="t",enctype:!!e.createElement("form").enctype,html5Clone:e.createElement("nav").cloneNode(!0).outerHTML!=="<:nav></:nav>",boxModel:e.compatMode==="CSS1Compat",submitBubbles:!0,changeBubbles:!0,focusinBubbles:!1,deleteExpando:!0,noCloneEvent:!0,inlineBlockNeedsLayout:!1,shrinkWrapBlocks:!1,reliableMarginRight:!0,boxSizingReliable:!0,pixelPosition:!1},h.checked=!0,b.noCloneChecked=h.cloneNode(!0).checked,f.disabled=!0,b.optDisabled=!g.disabled;try{delete n.test}catch(o){b.deleteExpando=!1}!n.addEventListener&&n.attachEvent&&n.fireEvent&&(n.attachEvent("onclick",m=function(){b.noCloneEvent=!1}),n.cloneNode(!0).fireEvent("onclick"),n.detachEvent("onclick",m)),h=e.createElement("input"),h.value="t",h.setAttribute("type","radio"),b.radioValue=h.value==="t",h.setAttribute("checked","checked"),h.setAttribute("name","t"),n.appendChild(h),i=e.createDocumentFragment(),i.appendChild(n.lastChild),b.checkClone=i.cloneNode(!0).cloneNode(!0).lastChild.checked,b.appendChecked=h.checked,i.removeChild(h),i.appendChild(n);if(n.attachEvent)for(k in{submit:!0,change:!0,focusin:!0})j="on"+k,l=j in n,l||(n.setAttribute(j,"return;"),l=typeof n[j]=="function"),b[k+"Bubbles"]=l;return p(function(){var c,d,f,g,h="padding:0;margin:0;border:0;display:block;overflow:hidden;",i=e.getElementsByTagName("body")[0];if(!i)return;c=e.createElement("div"),c.style.cssText="visibility:hidden;border:0;width:0;height:0;position:static;top:0;margin-top:1px",i.insertBefore(c,i.firstChild),d=e.createElement("div"),c.appendChild(d),d.innerHTML="<table><tr><td></td><td>t</td></tr></table>",f=d.getElementsByTagName("td"),f[0].style.cssText="padding:0;margin:0;border:0;display:none",l=f[0].offsetHeight===0,f[0].style.display="",f[1].style.display="none",b.reliableHiddenOffsets=l&&f[0].offsetHeight===0,d.innerHTML="",d.style.cssText="box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;padding:1px;border:1px;display:block;width:4px;margin-top:1%;position:absolute;top:1%;",b.boxSizing=d.offsetWidth===4,b.doesNotIncludeMarginInBodyOffset=i.offsetTop!==1,a.getComputedStyle&&(b.pixelPosition=(a.getComputedStyle(d,null)||{}).top!=="1%",b.boxSizingReliable=(a.getComputedStyle(d,null)||{width:"4px"}).width==="4px",g=e.createElement("div"),g.style.cssText=d.style.cssText=h,g.style.marginRight=g.style.width="0",d.style.width="1px",d.appendChild(g),b.reliableMarginRight=!parseFloat((a.getComputedStyle(g,null)||{}).marginRight)),typeof d.style.zoom!="undefined"&&(d.innerHTML="",d.style.cssText=h+"width:1px;padding:1px;display:inline;zoom:1",b.inlineBlockNeedsLayout=d.offsetWidth===3,d.style.display="block",d.style.overflow="visible",d.innerHTML="<div></div>",d.firstChild.style.width="5px",b.shrinkWrapBlocks=d.offsetWidth!==3,c.style.zoom=1),i.removeChild(c),c=d=f=g=null}),i.removeChild(n),c=d=f=g=h=i=n=null,b}();var H=/(?:\{[\s\S]*\}|\[[\s\S]*\])$/,I=/([A-Z])/g;p.extend({cache:{},deletedIds:[],uuid:0,expando:"jQuery"+(p.fn.jquery+Math.random()).replace(/\D/g,""),noData:{embed:!0,object:"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000",applet:!0},hasData:function(a){return a=a.nodeType?p.cache[a[p.expando]]:a[p.expando],!!a&&!K(a)},data:function(a,c,d,e){if(!p.acceptData(a))return;var f,g,h=p.expando,i=typeof c=="string",j=a.nodeType,k=j?p.cache:a,l=j?a[h]:a[h]&&h;if((!l||!k[l]||!e&&!k[l].data)&&i&&d===b)return;l||(j?a[h]=l=p.deletedIds.pop()||p.guid++:l=h),k[l]||(k[l]={},j||(k[l].toJSON=p.noop));if(typeof c=="object"||typeof c=="function")e?k[l]=p.extend(k[l],c):k[l].data=p.extend(k[l].data,c);return f=k[l],e||(f.data||(f.data={}),f=f.data),d!==b&&(f[p.camelCase(c)]=d),i?(g=f[c],g==null&&(g=f[p.camelCase(c)])):g=f,g},removeData:function(a,b,c){if(!p.acceptData(a))return;var d,e,f,g=a.nodeType,h=g?p.cache:a,i=g?a[p.expando]:p.expando;if(!h[i])return;if(b){d=c?h[i]:h[i].data;if(d){p.isArray(b)||(b in d?b=[b]:(b=p.camelCase(b),b in d?b=[b]:b=b.split(" ")));for(e=0,f=b.length;e<f;e++)delete d[b[e]];if(!(c?K:p.isEmptyObject)(d))return}}if(!c){delete h[i].data;if(!K(h[i]))return}g?p.cleanData([a],!0):p.support.deleteExpando||h!=h.window?delete h[i]:h[i]=null},_data:function(a,b,c){return p.data(a,b,c,!0)},acceptData:function(a){var b=a.nodeName&&p.noData[a.nodeName.toLowerCase()];return!b||b!==!0&&a.getAttribute("classid")===b}}),p.fn.extend({data:function(a,c){var d,e,f,g,h,i=this[0],j=0,k=null;if(a===b){if(this.length){k=p.data(i);if(i.nodeType===1&&!p._data(i,"parsedAttrs")){f=i.attributes;for(h=f.length;j<h;j++)g=f[j].name,g.indexOf("data-")||(g=p.camelCase(g.substring(5)),J(i,g,k[g]));p._data(i,"parsedAttrs",!0)}}return k}return typeof a=="object"?this.each(function(){p.data(this,a)}):(d=a.split(".",2),d[1]=d[1]?"."+d[1]:"",e=d[1]+"!",p.access(this,function(c){if(c===b)return k=this.triggerHandler("getData"+e,[d[0]]),k===b&&i&&(k=p.data(i,a),k=J(i,a,k)),k===b&&d[1]?this.data(d[0]):k;d[1]=c,this.each(function(){var b=p(this);b.triggerHandler("setData"+e,d),p.data(this,a,c),b.triggerHandler("changeData"+e,d)})},null,c,arguments.length>1,null,!1))},removeData:function(a){return this.each(function(){p.removeData(this,a)})}}),p.extend({queue:function(a,b,c){var d;if(a)return b=(b||"fx")+"queue",d=p._data(a,b),c&&(!d||p.isArray(c)?d=p._data(a,b,p.makeArray(c)):d.push(c)),d||[]},dequeue:function(a,b){b=b||"fx";var c=p.queue(a,b),d=c.length,e=c.shift(),f=p._queueHooks(a,b),g=function(){p.dequeue(a,b)};e==="inprogress"&&(e=c.shift(),d--),e&&(b==="fx"&&c.unshift("inprogress"),delete f.stop,e.call(a,g,f)),!d&&f&&f.empty.fire()},_queueHooks:function(a,b){var c=b+"queueHooks";return p._data(a,c)||p._data(a,c,{empty:p.Callbacks("once memory").add(function(){p.removeData(a,b+"queue",!0),p.removeData(a,c,!0)})})}}),p.fn.extend({queue:function(a,c){var d=2;return typeof a!="string"&&(c=a,a="fx",d--),arguments.length<d?p.queue(this[0],a):c===b?this:this.each(function(){var b=p.queue(this,a,c);p._queueHooks(this,a),a==="fx"&&b[0]!=="inprogress"&&p.dequeue(this,a)})},dequeue:function(a){return this.each(function(){p.dequeue(this,a)})},delay:function(a,b){return a=p.fx?p.fx.speeds[a]||a:a,b=b||"fx",this.queue(b,function(b,c){var d=setTimeout(b,a);c.stop=function(){clearTimeout(d)}})},clearQueue:function(a){return this.queue(a||"fx",[])},promise:function(a,c){var d,e=1,f=p.Deferred(),g=this,h=this.length,i=function(){--e||f.resolveWith(g,[g])};typeof a!="string"&&(c=a,a=b),a=a||"fx";while(h--)d=p._data(g[h],a+"queueHooks"),d&&d.empty&&(e++,d.empty.add(i));return i(),f.promise(c)}});var L,M,N,O=/[\t\r\n]/g,P=/\r/g,Q=/^(?:button|input)$/i,R=/^(?:button|input|object|select|textarea)$/i,S=/^a(?:rea|)$/i,T=/^(?:autofocus|autoplay|async|checked|controls|defer|disabled|hidden|loop|multiple|open|readonly|required|scoped|selected)$/i,U=p.support.getSetAttribute;p.fn.extend({attr:function(a,b){return p.access(this,p.attr,a,b,arguments.length>1)},removeAttr:function(a){return this.each(function(){p.removeAttr(this,a)})},prop:function(a,b){return p.access(this,p.prop,a,b,arguments.length>1)},removeProp:function(a){return a=p.propFix[a]||a,this.each(function(){try{this[a]=b,delete this[a]}catch(c){}})},addClass:function(a){var b,c,d,e,f,g,h;if(p.isFunction(a))return this.each(function(b){p(this).addClass(a.call(this,b,this.className))});if(a&&typeof a=="string"){b=a.split(s);for(c=0,d=this.length;c<d;c++){e=this[c];if(e.nodeType===1)if(!e.className&&b.length===1)e.className=a;else{f=" "+e.className+" ";for(g=0,h=b.length;g<h;g++)f.indexOf(" "+b[g]+" ")<0&&(f+=b[g]+" ");e.className=p.trim(f)}}}return this},removeClass:function(a){var c,d,e,f,g,h,i;if(p.isFunction(a))return this.each(function(b){p(this).removeClass(a.call(this,b,this.className))});if(a&&typeof a=="string"||a===b){c=(a||"").split(s);for(h=0,i=this.length;h<i;h++){e=this[h];if(e.nodeType===1&&e.className){d=(" "+e.className+" ").replace(O," ");for(f=0,g=c.length;f<g;f++)while(d.indexOf(" "+c[f]+" ")>=0)d=d.replace(" "+c[f]+" "," ");e.className=a?p.trim(d):""}}}return this},toggleClass:function(a,b){var c=typeof a,d=typeof b=="boolean";return p.isFunction(a)?this.each(function(c){p(this).toggleClass(a.call(this,c,this.className,b),b)}):this.each(function(){if(c==="string"){var e,f=0,g=p(this),h=b,i=a.split(s);while(e=i[f++])h=d?h:!g.hasClass(e),g[h?"addClass":"removeClass"](e)}else if(c==="undefined"||c==="boolean")this.className&&p._data(this,"__className__",this.className),this.className=this.className||a===!1?"":p._data(this,"__className__")||""})},hasClass:function(a){var b=" "+a+" ",c=0,d=this.length;for(;c<d;c++)if(this[c].nodeType===1&&(" "+this[c].className+" ").replace(O," ").indexOf(b)>=0)return!0;return!1},val:function(a){var c,d,e,f=this[0];if(!arguments.length){if(f)return c=p.valHooks[f.type]||p.valHooks[f.nodeName.toLowerCase()],c&&"get"in c&&(d=c.get(f,"value"))!==b?d:(d=f.value,typeof d=="string"?d.replace(P,""):d==null?"":d);return}return e=p.isFunction(a),this.each(function(d){var f,g=p(this);if(this.nodeType!==1)return;e?f=a.call(this,d,g.val()):f=a,f==null?f="":typeof f=="number"?f+="":p.isArray(f)&&(f=p.map(f,function(a){return a==null?"":a+""})),c=p.valHooks[this.type]||p.valHooks[this.nodeName.toLowerCase()];if(!c||!("set"in c)||c.set(this,f,"value")===b)this.value=f})}}),p.extend({valHooks:{option:{get:function(a){var b=a.attributes.value;return!b||b.specified?a.value:a.text}},select:{get:function(a){var b,c,d,e,f=a.selectedIndex,g=[],h=a.options,i=a.type==="select-one";if(f<0)return null;c=i?f:0,d=i?f+1:h.length;for(;c<d;c++){e=h[c];if(e.selected&&(p.support.optDisabled?!e.disabled:e.getAttribute("disabled")===null)&&(!e.parentNode.disabled||!p.nodeName(e.parentNode,"optgroup"))){b=p(e).val();if(i)return b;g.push(b)}}return i&&!g.length&&h.length?p(h[f]).val():g},set:function(a,b){var c=p.makeArray(b);return p(a).find("option").each(function(){this.selected=p.inArray(p(this).val(),c)>=0}),c.length||(a.selectedIndex=-1),c}}},attrFn:{},attr:function(a,c,d,e){var f,g,h,i=a.nodeType;if(!a||i===3||i===8||i===2)return;if(e&&p.isFunction(p.fn[c]))return p(a)[c](d);if(typeof a.getAttribute=="undefined")return p.prop(a,c,d);h=i!==1||!p.isXMLDoc(a),h&&(c=c.toLowerCase(),g=p.attrHooks[c]||(T.test(c)?M:L));if(d!==b){if(d===null){p.removeAttr(a,c);return}return g&&"set"in g&&h&&(f=g.set(a,d,c))!==b?f:(a.setAttribute(c,d+""),d)}return g&&"get"in g&&h&&(f=g.get(a,c))!==null?f:(f=a.getAttribute(c),f===null?b:f)},removeAttr:function(a,b){var c,d,e,f,g=0;if(b&&a.nodeType===1){d=b.split(s);for(;g<d.length;g++)e=d[g],e&&(c=p.propFix[e]||e,f=T.test(e),f||p.attr(a,e,""),a.removeAttribute(U?e:c),f&&c in a&&(a[c]=!1))}},attrHooks:{type:{set:function(a,b){if(Q.test(a.nodeName)&&a.parentNode)p.error("type property can't be changed");else if(!p.support.radioValue&&b==="radio"&&p.nodeName(a,"input")){var c=a.value;return a.setAttribute("type",b),c&&(a.value=c),b}}},value:{get:function(a,b){return L&&p.nodeName(a,"button")?L.get(a,b):b in a?a.value:null},set:function(a,b,c){if(L&&p.nodeName(a,"button"))return L.set(a,b,c);a.value=b}}},propFix:{tabindex:"tabIndex",readonly:"readOnly","for":"htmlFor","class":"className",maxlength:"maxLength",cellspacing:"cellSpacing",cellpadding:"cellPadding",rowspan:"rowSpan",colspan:"colSpan",usemap:"useMap",frameborder:"frameBorder",contenteditable:"contentEditable"},prop:function(a,c,d){var e,f,g,h=a.nodeType;if(!a||h===3||h===8||h===2)return;return g=h!==1||!p.isXMLDoc(a),g&&(c=p.propFix[c]||c,f=p.propHooks[c]),d!==b?f&&"set"in f&&(e=f.set(a,d,c))!==b?e:a[c]=d:f&&"get"in f&&(e=f.get(a,c))!==null?e:a[c]},propHooks:{tabIndex:{get:function(a){var c=a.getAttributeNode("tabindex");return c&&c.specified?parseInt(c.value,10):R.test(a.nodeName)||S.test(a.nodeName)&&a.href?0:b}}}}),M={get:function(a,c){var d,e=p.prop(a,c);return e===!0||typeof e!="boolean"&&(d=a.getAttributeNode(c))&&d.nodeValue!==!1?c.toLowerCase():b},set:function(a,b,c){var d;return b===!1?p.removeAttr(a,c):(d=p.propFix[c]||c,d in a&&(a[d]=!0),a.setAttribute(c,c.toLowerCase())),c}},U||(N={name:!0,id:!0,coords:!0},L=p.valHooks.button={get:function(a,c){var d;return d=a.getAttributeNode(c),d&&(N[c]?d.value!=="":d.specified)?d.value:b},set:function(a,b,c){var d=a.getAttributeNode(c);return d||(d=e.createAttribute(c),a.setAttributeNode(d)),d.value=b+""}},p.each(["width","height"],function(a,b){p.attrHooks[b]=p.extend(p.attrHooks[b],{set:function(a,c){if(c==="")return a.setAttribute(b,"auto"),c}})}),p.attrHooks.contenteditable={get:L.get,set:function(a,b,c){b===""&&(b="false"),L.set(a,b,c)}}),p.support.hrefNormalized||p.each(["href","src","width","height"],function(a,c){p.attrHooks[c]=p.extend(p.attrHooks[c],{get:function(a){var d=a.getAttribute(c,2);return d===null?b:d}})}),p.support.style||(p.attrHooks.style={get:function(a){return a.style.cssText.toLowerCase()||b},set:function(a,b){return a.style.cssText=b+""}}),p.support.optSelected||(p.propHooks.selected=p.extend(p.propHooks.selected,{get:function(a){var b=a.parentNode;return b&&(b.selectedIndex,b.parentNode&&b.parentNode.selectedIndex),null}})),p.support.enctype||(p.propFix.enctype="encoding"),p.support.checkOn||p.each(["radio","checkbox"],function(){p.valHooks[this]={get:function(a){return a.getAttribute("value")===null?"on":a.value}}}),p.each(["radio","checkbox"],function(){p.valHooks[this]=p.extend(p.valHooks[this],{set:function(a,b){if(p.isArray(b))return a.checked=p.inArray(p(a).val(),b)>=0}})});var V=/^(?:textarea|input|select)$/i,W=/^([^\.]*|)(?:\.(.+)|)$/,X=/(?:^|\s)hover(\.\S+|)\b/,Y=/^key/,Z=/^(?:mouse|contextmenu)|click/,$=/^(?:focusinfocus|focusoutblur)$/,_=function(a){return p.event.special.hover?a:a.replace(X,"mouseenter$1 mouseleave$1")};p.event={add:function(a,c,d,e,f){var g,h,i,j,k,l,m,n,o,q,r;if(a.nodeType===3||a.nodeType===8||!c||!d||!(g=p._data(a)))return;d.handler&&(o=d,d=o.handler,f=o.selector),d.guid||(d.guid=p.guid++),i=g.events,i||(g.events=i={}),h=g.handle,h||(g.handle=h=function(a){return typeof p!="undefined"&&(!a||p.event.triggered!==a.type)?p.event.dispatch.apply(h.elem,arguments):b},h.elem=a),c=p.trim(_(c)).split(" ");for(j=0;j<c.length;j++){k=W.exec(c[j])||[],l=k[1],m=(k[2]||"").split(".").sort(),r=p.event.special[l]||{},l=(f?r.delegateType:r.bindType)||l,r=p.event.special[l]||{},n=p.extend({type:l,origType:k[1],data:e,handler:d,guid:d.guid,selector:f,needsContext:f&&p.expr.match.needsContext.test(f),namespace:m.join(".")},o),q=i[l];if(!q){q=i[l]=[],q.delegateCount=0;if(!r.setup||r.setup.call(a,e,m,h)===!1)a.addEventListener?a.addEventListener(l,h,!1):a.attachEvent&&a.attachEvent("on"+l,h)}r.add&&(r.add.call(a,n),n.handler.guid||(n.handler.guid=d.guid)),f?q.splice(q.delegateCount++,0,n):q.push(n),p.event.global[l]=!0}a=null},global:{},remove:function(a,b,c,d,e){var f,g,h,i,j,k,l,m,n,o,q,r=p.hasData(a)&&p._data(a);if(!r||!(m=r.events))return;b=p.trim(_(b||"")).split(" ");for(f=0;f<b.length;f++){g=W.exec(b[f])||[],h=i=g[1],j=g[2];if(!h){for(h in m)p.event.remove(a,h+b[f],c,d,!0);continue}n=p.event.special[h]||{},h=(d?n.delegateType:n.bindType)||h,o=m[h]||[],k=o.length,j=j?new RegExp("(^|\\.)"+j.split(".").sort().join("\\.(?:.*\\.|)")+"(\\.|$)"):null;for(l=0;l<o.length;l++)q=o[l],(e||i===q.origType)&&(!c||c.guid===q.guid)&&(!j||j.test(q.namespace))&&(!d||d===q.selector||d==="**"&&q.selector)&&(o.splice(l--,1),q.selector&&o.delegateCount--,n.remove&&n.remove.call(a,q));o.length===0&&k!==o.length&&((!n.teardown||n.teardown.call(a,j,r.handle)===!1)&&p.removeEvent(a,h,r.handle),delete m[h])}p.isEmptyObject(m)&&(delete r.handle,p.removeData(a,"events",!0))},customEvent:{getData:!0,setData:!0,changeData:!0},trigger:function(c,d,f,g){if(!f||f.nodeType!==3&&f.nodeType!==8){var h,i,j,k,l,m,n,o,q,r,s=c.type||c,t=[];if($.test(s+p.event.triggered))return;s.indexOf("!")>=0&&(s=s.slice(0,-1),i=!0),s.indexOf(".")>=0&&(t=s.split("."),s=t.shift(),t.sort());if((!f||p.event.customEvent[s])&&!p.event.global[s])return;c=typeof c=="object"?c[p.expando]?c:new p.Event(s,c):new p.Event(s),c.type=s,c.isTrigger=!0,c.exclusive=i,c.namespace=t.join("."),c.namespace_re=c.namespace?new RegExp("(^|\\.)"+t.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,m=s.indexOf(":")<0?"on"+s:"";if(!f){h=p.cache;for(j in h)h[j].events&&h[j].events[s]&&p.event.trigger(c,d,h[j].handle.elem,!0);return}c.result=b,c.target||(c.target=f),d=d!=null?p.makeArray(d):[],d.unshift(c),n=p.event.special[s]||{};if(n.trigger&&n.trigger.apply(f,d)===!1)return;q=[[f,n.bindType||s]];if(!g&&!n.noBubble&&!p.isWindow(f)){r=n.delegateType||s,k=$.test(r+s)?f:f.parentNode;for(l=f;k;k=k.parentNode)q.push([k,r]),l=k;l===(f.ownerDocument||e)&&q.push([l.defaultView||l.parentWindow||a,r])}for(j=0;j<q.length&&!c.isPropagationStopped();j++)k=q[j][0],c.type=q[j][1],o=(p._data(k,"events")||{})[c.type]&&p._data(k,"handle"),o&&o.apply(k,d),o=m&&k[m],o&&p.acceptData(k)&&o.apply&&o.apply(k,d)===!1&&c.preventDefault();return c.type=s,!g&&!c.isDefaultPrevented()&&(!n._default||n._default.apply(f.ownerDocument,d)===!1)&&(s!=="click"||!p.nodeName(f,"a"))&&p.acceptData(f)&&m&&f[s]&&(s!=="focus"&&s!=="blur"||c.target.offsetWidth!==0)&&!p.isWindow(f)&&(l=f[m],l&&(f[m]=null),p.event.triggered=s,f[s](),p.event.triggered=b,l&&(f[m]=l)),c.result}return},dispatch:function(c){c=p.event.fix(c||a.event);var d,e,f,g,h,i,j,l,m,n,o=(p._data(this,"events")||{})[c.type]||[],q=o.delegateCount,r=k.call(arguments),s=!c.exclusive&&!c.namespace,t=p.event.special[c.type]||{},u=[];r[0]=c,c.delegateTarget=this;if(t.preDispatch&&t.preDispatch.call(this,c)===!1)return;if(q&&(!c.button||c.type!=="click"))for(f=c.target;f!=this;f=f.parentNode||this)if(f.disabled!==!0||c.type!=="click"){h={},j=[];for(d=0;d<q;d++)l=o[d],m=l.selector,h[m]===b&&(h[m]=l.needsContext?p(m,this).index(f)>=0:p.find(m,this,null,[f]).length),h[m]&&j.push(l);j.length&&u.push({elem:f,matches:j})}o.length>q&&u.push({elem:this,matches:o.slice(q)});for(d=0;d<u.length&&!c.isPropagationStopped();d++){i=u[d],c.currentTarget=i.elem;for(e=0;e<i.matches.length&&!c.isImmediatePropagationStopped();e++){l=i.matches[e];if(s||!c.namespace&&!l.namespace||c.namespace_re&&c.namespace_re.test(l.namespace))c.data=l.data,c.handleObj=l,g=((p.event.special[l.origType]||{}).handle||l.handler).apply(i.elem,r),g!==b&&(c.result=g,g===!1&&(c.preventDefault(),c.stopPropagation()))}}return t.postDispatch&&t.postDispatch.call(this,c),c.result},props:"attrChange attrName relatedNode srcElement altKey bubbles cancelable ctrlKey currentTarget eventPhase metaKey relatedTarget shiftKey target timeStamp view which".split(" "),fixHooks:{},keyHooks:{props:"char charCode key keyCode".split(" "),filter:function(a,b){return a.which==null&&(a.which=b.charCode!=null?b.charCode:b.keyCode),a}},mouseHooks:{props:"button buttons clientX clientY fromElement offsetX offsetY pageX pageY screenX screenY toElement".split(" "),filter:function(a,c){var d,f,g,h=c.button,i=c.fromElement;return a.pageX==null&&c.clientX!=null&&(d=a.target.ownerDocument||e,f=d.documentElement,g=d.body,a.pageX=c.clientX+(f&&f.scrollLeft||g&&g.scrollLeft||0)-(f&&f.clientLeft||g&&g.clientLeft||0),a.pageY=c.clientY+(f&&f.scrollTop||g&&g.scrollTop||0)-(f&&f.clientTop||g&&g.clientTop||0)),!a.relatedTarget&&i&&(a.relatedTarget=i===a.target?c.toElement:i),!a.which&&h!==b&&(a.which=h&1?1:h&2?3:h&4?2:0),a}},fix:function(a){if(a[p.expando])return a;var b,c,d=a,f=p.event.fixHooks[a.type]||{},g=f.props?this.props.concat(f.props):this.props;a=p.Event(d);for(b=g.length;b;)c=g[--b],a[c]=d[c];return a.target||(a.target=d.srcElement||e),a.target.nodeType===3&&(a.target=a.target.parentNode),a.metaKey=!!a.metaKey,f.filter?f.filter(a,d):a},special:{load:{noBubble:!0},focus:{delegateType:"focusin"},blur:{delegateType:"focusout"},beforeunload:{setup:function(a,b,c){p.isWindow(this)&&(this.onbeforeunload=c)},teardown:function(a,b){this.onbeforeunload===b&&(this.onbeforeunload=null)}}},simulate:function(a,b,c,d){var e=p.extend(new p.Event,c,{type:a,isSimulated:!0,originalEvent:{}});d?p.event.trigger(e,null,b):p.event.dispatch.call(b,e),e.isDefaultPrevented()&&c.preventDefault()}},p.event.handle=p.event.dispatch,p.removeEvent=e.removeEventListener?function(a,b,c){a.removeEventListener&&a.removeEventListener(b,c,!1)}:function(a,b,c){var d="on"+b;a.detachEvent&&(typeof a[d]=="undefined"&&(a[d]=null),a.detachEvent(d,c))},p.Event=function(a,b){if(this instanceof p.Event)a&&a.type?(this.originalEvent=a,this.type=a.type,this.isDefaultPrevented=a.defaultPrevented||a.returnValue===!1||a.getPreventDefault&&a.getPreventDefault()?bb:ba):this.type=a,b&&p.extend(this,b),this.timeStamp=a&&a.timeStamp||p.now(),this[p.expando]=!0;else return new p.Event(a,b)},p.Event.prototype={preventDefault:function(){this.isDefaultPrevented=bb;var a=this.originalEvent;if(!a)return;a.preventDefault?a.preventDefault():a.returnValue=!1},stopPropagation:function(){this.isPropagationStopped=bb;var a=this.originalEvent;if(!a)return;a.stopPropagation&&a.stopPropagation(),a.cancelBubble=!0},stopImmediatePropagation:function(){this.isImmediatePropagationStopped=bb,this.stopPropagation()},isDefaultPrevented:ba,isPropagationStopped:ba,isImmediatePropagationStopped:ba},p.each({mouseenter:"mouseover",mouseleave:"mouseout"},function(a,b){p.event.special[a]={delegateType:b,bindType:b,handle:function(a){var c,d=this,e=a.relatedTarget,f=a.handleObj,g=f.selector;if(!e||e!==d&&!p.contains(d,e))a.type=f.origType,c=f.handler.apply(this,arguments),a.type=b;return c}}}),p.support.submitBubbles||(p.event.special.submit={setup:function(){if(p.nodeName(this,"form"))return!1;p.event.add(this,"click._submit keypress._submit",function(a){var c=a.target,d=p.nodeName(c,"input")||p.nodeName(c,"button")?c.form:b;d&&!p._data(d,"_submit_attached")&&(p.event.add(d,"submit._submit",function(a){a._submit_bubble=!0}),p._data(d,"_submit_attached",!0))})},postDispatch:function(a){a._submit_bubble&&(delete a._submit_bubble,this.parentNode&&!a.isTrigger&&p.event.simulate("submit",this.parentNode,a,!0))},teardown:function(){if(p.nodeName(this,"form"))return!1;p.event.remove(this,"._submit")}}),p.support.changeBubbles||(p.event.special.change={setup:function(){if(V.test(this.nodeName)){if(this.type==="checkbox"||this.type==="radio")p.event.add(this,"propertychange._change",function(a){a.originalEvent.propertyName==="checked"&&(this._just_changed=!0)}),p.event.add(this,"click._change",function(a){this._just_changed&&!a.isTrigger&&(this._just_changed=!1),p.event.simulate("change",this,a,!0)});return!1}p.event.add(this,"beforeactivate._change",function(a){var b=a.target;V.test(b.nodeName)&&!p._data(b,"_change_attached")&&(p.event.add(b,"change._change",function(a){this.parentNode&&!a.isSimulated&&!a.isTrigger&&p.event.simulate("change",this.parentNode,a,!0)}),p._data(b,"_change_attached",!0))})},handle:function(a){var b=a.target;if(this!==b||a.isSimulated||a.isTrigger||b.type!=="radio"&&b.type!=="checkbox")return a.handleObj.handler.apply(this,arguments)},teardown:function(){return p.event.remove(this,"._change"),!V.test(this.nodeName)}}),p.support.focusinBubbles||p.each({focus:"focusin",blur:"focusout"},function(a,b){var c=0,d=function(a){p.event.simulate(b,a.target,p.event.fix(a),!0)};p.event.special[b]={setup:function(){c++===0&&e.addEventListener(a,d,!0)},teardown:function(){--c===0&&e.removeEventListener(a,d,!0)}}}),p.fn.extend({on:function(a,c,d,e,f){var g,h;if(typeof a=="object"){typeof c!="string"&&(d=d||c,c=b);for(h in a)this.on(h,c,d,a[h],f);return this}d==null&&e==null?(e=c,d=c=b):e==null&&(typeof c=="string"?(e=d,d=b):(e=d,d=c,c=b));if(e===!1)e=ba;else if(!e)return this;return f===1&&(g=e,e=function(a){return p().off(a),g.apply(this,arguments)},e.guid=g.guid||(g.guid=p.guid++)),this.each(function(){p.event.add(this,a,e,d,c)})},one:function(a,b,c,d){return this.on(a,b,c,d,1)},off:function(a,c,d){var e,f;if(a&&a.preventDefault&&a.handleObj)return e=a.handleObj,p(a.delegateTarget).off(e.namespace?e.origType+"."+e.namespace:e.origType,e.selector,e.handler),this;if(typeof a=="object"){for(f in a)this.off(f,c,a[f]);return this}if(c===!1||typeof c=="function")d=c,c=b;return d===!1&&(d=ba),this.each(function(){p.event.remove(this,a,d,c)})},bind:function(a,b,c){return this.on(a,null,b,c)},unbind:function(a,b){return this.off(a,null,b)},live:function(a,b,c){return p(this.context).on(a,this.selector,b,c),this},die:function(a,b){return p(this.context).off(a,this.selector||"**",b),this},delegate:function(a,b,c,d){return this.on(b,a,c,d)},undelegate:function(a,b,c){return arguments.length===1?this.off(a,"**"):this.off(b,a||"**",c)},trigger:function(a,b){return this.each(function(){p.event.trigger(a,b,this)})},triggerHandler:function(a,b){if(this[0])return p.event.trigger(a,b,this[0],!0)},toggle:function(a){var b=arguments,c=a.guid||p.guid++,d=0,e=function(c){var e=(p._data(this,"lastToggle"+a.guid)||0)%d;return p._data(this,"lastToggle"+a.guid,e+1),c.preventDefault(),b[e].apply(this,arguments)||!1};e.guid=c;while(d<b.length)b[d++].guid=c;return this.click(e)},hover:function(a,b){return this.mouseenter(a).mouseleave(b||a)}}),p.each("blur focus focusin focusout load resize scroll unload click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup error contextmenu".split(" "),function(a,b){p.fn[b]=function(a,c){return c==null&&(c=a,a=null),arguments.length>0?this.on(b,null,a,c):this.trigger(b)},Y.test(b)&&(p.event.fixHooks[b]=p.event.keyHooks),Z.test(b)&&(p.event.fixHooks[b]=p.event.mouseHooks)}),function(a,b){function bc(a,b,c,d){c=c||[],b=b||r;var e,f,i,j,k=b.nodeType;if(!a||typeof a!="string")return c;if(k!==1&&k!==9)return[];i=g(b);if(!i&&!d)if(e=P.exec(a))if(j=e[1]){if(k===9){f=b.getElementById(j);if(!f||!f.parentNode)return c;if(f.id===j)return c.push(f),c}else if(b.ownerDocument&&(f=b.ownerDocument.getElementById(j))&&h(b,f)&&f.id===j)return c.push(f),c}else{if(e[2])return w.apply(c,x.call(b.getElementsByTagName(a),0)),c;if((j=e[3])&&_&&b.getElementsByClassName)return w.apply(c,x.call(b.getElementsByClassName(j),0)),c}return bp(a.replace(L,"$1"),b,c,d,i)}function bd(a){return function(b){var c=b.nodeName.toLowerCase();return c==="input"&&b.type===a}}function be(a){return function(b){var c=b.nodeName.toLowerCase();return(c==="input"||c==="button")&&b.type===a}}function bf(a){return z(function(b){return b=+b,z(function(c,d){var e,f=a([],c.length,b),g=f.length;while(g--)c[e=f[g]]&&(c[e]=!(d[e]=c[e]))})})}function bg(a,b,c){if(a===b)return c;var d=a.nextSibling;while(d){if(d===b)return-1;d=d.nextSibling}return 1}function bh(a,b){var c,d,f,g,h,i,j,k=C[o][a];if(k)return b?0:k.slice(0);h=a,i=[],j=e.preFilter;while(h){if(!c||(d=M.exec(h)))d&&(h=h.slice(d[0].length)),i.push(f=[]);c=!1;if(d=N.exec(h))f.push(c=new q(d.shift())),h=h.slice(c.length),c.type=d[0].replace(L," ");for(g in e.filter)(d=W[g].exec(h))&&(!j[g]||(d=j[g](d,r,!0)))&&(f.push(c=new q(d.shift())),h=h.slice(c.length),c.type=g,c.matches=d);if(!c)break}return b?h.length:h?bc.error(a):C(a,i).slice(0)}function bi(a,b,d){var e=b.dir,f=d&&b.dir==="parentNode",g=u++;return b.first?function(b,c,d){while(b=b[e])if(f||b.nodeType===1)return a(b,c,d)}:function(b,d,h){if(!h){var i,j=t+" "+g+" ",k=j+c;while(b=b[e])if(f||b.nodeType===1){if((i=b[o])===k)return b.sizset;if(typeof i=="string"&&i.indexOf(j)===0){if(b.sizset)return b}else{b[o]=k;if(a(b,d,h))return b.sizset=!0,b;b.sizset=!1}}}else while(b=b[e])if(f||b.nodeType===1)if(a(b,d,h))return b}}function bj(a){return a.length>1?function(b,c,d){var e=a.length;while(e--)if(!a[e](b,c,d))return!1;return!0}:a[0]}function bk(a,b,c,d,e){var f,g=[],h=0,i=a.length,j=b!=null;for(;h<i;h++)if(f=a[h])if(!c||c(f,d,e))g.push(f),j&&b.push(h);return g}function bl(a,b,c,d,e,f){return d&&!d[o]&&(d=bl(d)),e&&!e[o]&&(e=bl(e,f)),z(function(f,g,h,i){if(f&&e)return;var j,k,l,m=[],n=[],o=g.length,p=f||bo(b||"*",h.nodeType?[h]:h,[],f),q=a&&(f||!b)?bk(p,m,a,h,i):p,r=c?e||(f?a:o||d)?[]:g:q;c&&c(q,r,h,i);if(d){l=bk(r,n),d(l,[],h,i),j=l.length;while(j--)if(k=l[j])r[n[j]]=!(q[n[j]]=k)}if(f){j=a&&r.length;while(j--)if(k=r[j])f[m[j]]=!(g[m[j]]=k)}else r=bk(r===g?r.splice(o,r.length):r),e?e(null,g,r,i):w.apply(g,r)})}function bm(a){var b,c,d,f=a.length,g=e.relative[a[0].type],h=g||e.relative[" "],i=g?1:0,j=bi(function(a){return a===b},h,!0),k=bi(function(a){return y.call(b,a)>-1},h,!0),m=[function(a,c,d){return!g&&(d||c!==l)||((b=c).nodeType?j(a,c,d):k(a,c,d))}];for(;i<f;i++)if(c=e.relative[a[i].type])m=[bi(bj(m),c)];else{c=e.filter[a[i].type].apply(null,a[i].matches);if(c[o]){d=++i;for(;d<f;d++)if(e.relative[a[d].type])break;return bl(i>1&&bj(m),i>1&&a.slice(0,i-1).join("").replace(L,"$1"),c,i<d&&bm(a.slice(i,d)),d<f&&bm(a=a.slice(d)),d<f&&a.join(""))}m.push(c)}return bj(m)}function bn(a,b){var d=b.length>0,f=a.length>0,g=function(h,i,j,k,m){var n,o,p,q=[],s=0,u="0",x=h&&[],y=m!=null,z=l,A=h||f&&e.find.TAG("*",m&&i.parentNode||i),B=t+=z==null?1:Math.E;y&&(l=i!==r&&i,c=g.el);for(;(n=A[u])!=null;u++){if(f&&n){for(o=0;p=a[o];o++)if(p(n,i,j)){k.push(n);break}y&&(t=B,c=++g.el)}d&&((n=!p&&n)&&s--,h&&x.push(n))}s+=u;if(d&&u!==s){for(o=0;p=b[o];o++)p(x,q,i,j);if(h){if(s>0)while(u--)!x[u]&&!q[u]&&(q[u]=v.call(k));q=bk(q)}w.apply(k,q),y&&!h&&q.length>0&&s+b.length>1&&bc.uniqueSort(k)}return y&&(t=B,l=z),x};return g.el=0,d?z(g):g}function bo(a,b,c,d){var e=0,f=b.length;for(;e<f;e++)bc(a,b[e],c,d);return c}function bp(a,b,c,d,f){var g,h,j,k,l,m=bh(a),n=m.length;if(!d&&m.length===1){h=m[0]=m[0].slice(0);if(h.length>2&&(j=h[0]).type==="ID"&&b.nodeType===9&&!f&&e.relative[h[1].type]){b=e.find.ID(j.matches[0].replace(V,""),b,f)[0];if(!b)return c;a=a.slice(h.shift().length)}for(g=W.POS.test(a)?-1:h.length-1;g>=0;g--){j=h[g];if(e.relative[k=j.type])break;if(l=e.find[k])if(d=l(j.matches[0].replace(V,""),R.test(h[0].type)&&b.parentNode||b,f)){h.splice(g,1),a=d.length&&h.join("");if(!a)return w.apply(c,x.call(d,0)),c;break}}}return i(a,m)(d,b,f,c,R.test(a)),c}function bq(){}var c,d,e,f,g,h,i,j,k,l,m=!0,n="undefined",o=("sizcache"+Math.random()).replace(".",""),q=String,r=a.document,s=r.documentElement,t=0,u=0,v=[].pop,w=[].push,x=[].slice,y=[].indexOf||function(a){var b=0,c=this.length;for(;b<c;b++)if(this[b]===a)return b;return-1},z=function(a,b){return a[o]=b==null||b,a},A=function(){var a={},b=[];return z(function(c,d){return b.push(c)>e.cacheLength&&delete a[b.shift()],a[c]=d},a)},B=A(),C=A(),D=A(),E="[\\x20\\t\\r\\n\\f]",F="(?:\\\\.|[-\\w]|[^\\x00-\\xa0])+",G=F.replace("w","w#"),H="([*^$|!~]?=)",I="\\["+E+"*("+F+")"+E+"*(?:"+H+E+"*(?:(['\"])((?:\\\\.|[^\\\\])*?)\\3|("+G+")|)|)"+E+"*\\]",J=":("+F+")(?:\\((?:(['\"])((?:\\\\.|[^\\\\])*?)\\2|([^()[\\]]*|(?:(?:"+I+")|[^:]|\\\\.)*|.*))\\)|)",K=":(even|odd|eq|gt|lt|nth|first|last)(?:\\("+E+"*((?:-\\d)?\\d*)"+E+"*\\)|)(?=[^-]|$)",L=new RegExp("^"+E+"+|((?:^|[^\\\\])(?:\\\\.)*)"+E+"+$","g"),M=new RegExp("^"+E+"*,"+E+"*"),N=new RegExp("^"+E+"*([\\x20\\t\\r\\n\\f>+~])"+E+"*"),O=new RegExp(J),P=/^(?:#([\w\-]+)|(\w+)|\.([\w\-]+))$/,Q=/^:not/,R=/[\x20\t\r\n\f]*[+~]/,S=/:not\($/,T=/h\d/i,U=/input|select|textarea|button/i,V=/\\(?!\\)/g,W={ID:new RegExp("^#("+F+")"),CLASS:new RegExp("^\\.("+F+")"),NAME:new RegExp("^\\[name=['\"]?("+F+")['\"]?\\]"),TAG:new RegExp("^("+F.replace("w","w*")+")"),ATTR:new RegExp("^"+I),PSEUDO:new RegExp("^"+J),POS:new RegExp(K,"i"),CHILD:new RegExp("^:(only|nth|first|last)-child(?:\\("+E+"*(even|odd|(([+-]|)(\\d*)n|)"+E+"*(?:([+-]|)"+E+"*(\\d+)|))"+E+"*\\)|)","i"),needsContext:new RegExp("^"+E+"*[>+~]|"+K,"i")},X=function(a){var b=r.createElement("div");try{return a(b)}catch(c){return!1}finally{b=null}},Y=X(function(a){return a.appendChild(r.createComment("")),!a.getElementsByTagName("*").length}),Z=X(function(a){return a.innerHTML="<a href='#'></a>",a.firstChild&&typeof a.firstChild.getAttribute!==n&&a.firstChild.getAttribute("href")==="#"}),$=X(function(a){a.innerHTML="<select></select>";var b=typeof a.lastChild.getAttribute("multiple");return b!=="boolean"&&b!=="string"}),_=X(function(a){return a.innerHTML="<div class='hidden e'></div><div class='hidden'></div>",!a.getElementsByClassName||!a.getElementsByClassName("e").length?!1:(a.lastChild.className="e",a.getElementsByClassName("e").length===2)}),ba=X(function(a){a.id=o+0,a.innerHTML="<a name='"+o+"'></a><div name='"+o+"'></div>",s.insertBefore(a,s.firstChild);var b=r.getElementsByName&&r.getElementsByName(o).length===2+r.getElementsByName(o+0).length;return d=!r.getElementById(o),s.removeChild(a),b});try{x.call(s.childNodes,0)[0].nodeType}catch(bb){x=function(a){var b,c=[];for(;b=this[a];a++)c.push(b);return c}}bc.matches=function(a,b){return bc(a,null,null,b)},bc.matchesSelector=function(a,b){return bc(b,null,null,[a]).length>0},f=bc.getText=function(a){var b,c="",d=0,e=a.nodeType;if(e){if(e===1||e===9||e===11){if(typeof a.textContent=="string")return a.textContent;for(a=a.firstChild;a;a=a.nextSibling)c+=f(a)}else if(e===3||e===4)return a.nodeValue}else for(;b=a[d];d++)c+=f(b);return c},g=bc.isXML=function(a){var b=a&&(a.ownerDocument||a).documentElement;return b?b.nodeName!=="HTML":!1},h=bc.contains=s.contains?function(a,b){var c=a.nodeType===9?a.documentElement:a,d=b&&b.parentNode;return a===d||!!(d&&d.nodeType===1&&c.contains&&c.contains(d))}:s.compareDocumentPosition?function(a,b){return b&&!!(a.compareDocumentPosition(b)&16)}:function(a,b){while(b=b.parentNode)if(b===a)return!0;return!1},bc.attr=function(a,b){var c,d=g(a);return d||(b=b.toLowerCase()),(c=e.attrHandle[b])?c(a):d||$?a.getAttribute(b):(c=a.getAttributeNode(b),c?typeof a[b]=="boolean"?a[b]?b:null:c.specified?c.value:null:null)},e=bc.selectors={cacheLength:50,createPseudo:z,match:W,attrHandle:Z?{}:{href:function(a){return a.getAttribute("href",2)},type:function(a){return a.getAttribute("type")}},find:{ID:d?function(a,b,c){if(typeof b.getElementById!==n&&!c){var d=b.getElementById(a);return d&&d.parentNode?[d]:[]}}:function(a,c,d){if(typeof c.getElementById!==n&&!d){var e=c.getElementById(a);return e?e.id===a||typeof e.getAttributeNode!==n&&e.getAttributeNode("id").value===a?[e]:b:[]}},TAG:Y?function(a,b){if(typeof b.getElementsByTagName!==n)return b.getElementsByTagName(a)}:function(a,b){var c=b.getElementsByTagName(a);if(a==="*"){var d,e=[],f=0;for(;d=c[f];f++)d.nodeType===1&&e.push(d);return e}return c},NAME:ba&&function(a,b){if(typeof b.getElementsByName!==n)return b.getElementsByName(name)},CLASS:_&&function(a,b,c){if(typeof b.getElementsByClassName!==n&&!c)return b.getElementsByClassName(a)}},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(a){return a[1]=a[1].replace(V,""),a[3]=(a[4]||a[5]||"").replace(V,""),a[2]==="~="&&(a[3]=" "+a[3]+" "),a.slice(0,4)},CHILD:function(a){return a[1]=a[1].toLowerCase(),a[1]==="nth"?(a[2]||bc.error(a[0]),a[3]=+(a[3]?a[4]+(a[5]||1):2*(a[2]==="even"||a[2]==="odd")),a[4]=+(a[6]+a[7]||a[2]==="odd")):a[2]&&bc.error(a[0]),a},PSEUDO:function(a){var b,c;if(W.CHILD.test(a[0]))return null;if(a[3])a[2]=a[3];else if(b=a[4])O.test(b)&&(c=bh(b,!0))&&(c=b.indexOf(")",b.length-c)-b.length)&&(b=b.slice(0,c),a[0]=a[0].slice(0,c)),a[2]=b;return a.slice(0,3)}},filter:{ID:d?function(a){return a=a.replace(V,""),function(b){return b.getAttribute("id")===a}}:function(a){return a=a.replace(V,""),function(b){var c=typeof b.getAttributeNode!==n&&b.getAttributeNode("id");return c&&c.value===a}},TAG:function(a){return a==="*"?function(){return!0}:(a=a.replace(V,"").toLowerCase(),function(b){return b.nodeName&&b.nodeName.toLowerCase()===a})},CLASS:function(a){var b=B[o][a];return b||(b=B(a,new RegExp("(^|"+E+")"+a+"("+E+"|$)"))),function(a){return b.test(a.className||typeof a.getAttribute!==n&&a.getAttribute("class")||"")}},ATTR:function(a,b,c){return function(d,e){var f=bc.attr(d,a);return f==null?b==="!=":b?(f+="",b==="="?f===c:b==="!="?f!==c:b==="^="?c&&f.indexOf(c)===0:b==="*="?c&&f.indexOf(c)>-1:b==="$="?c&&f.substr(f.length-c.length)===c:b==="~="?(" "+f+" ").indexOf(c)>-1:b==="|="?f===c||f.substr(0,c.length+1)===c+"-":!1):!0}},CHILD:function(a,b,c,d){return a==="nth"?function(a){var b,e,f=a.parentNode;if(c===1&&d===0)return!0;if(f){e=0;for(b=f.firstChild;b;b=b.nextSibling)if(b.nodeType===1){e++;if(a===b)break}}return e-=d,e===c||e%c===0&&e/c>=0}:function(b){var c=b;switch(a){case"only":case"first":while(c=c.previousSibling)if(c.nodeType===1)return!1;if(a==="first")return!0;c=b;case"last":while(c=c.nextSibling)if(c.nodeType===1)return!1;return!0}}},PSEUDO:function(a,b){var c,d=e.pseudos[a]||e.setFilters[a.toLowerCase()]||bc.error("unsupported pseudo: "+a);return d[o]?d(b):d.length>1?(c=[a,a,"",b],e.setFilters.hasOwnProperty(a.toLowerCase())?z(function(a,c){var e,f=d(a,b),g=f.length;while(g--)e=y.call(a,f[g]),a[e]=!(c[e]=f[g])}):function(a){return d(a,0,c)}):d}},pseudos:{not:z(function(a){var b=[],c=[],d=i(a.replace(L,"$1"));return d[o]?z(function(a,b,c,e){var f,g=d(a,null,e,[]),h=a.length;while(h--)if(f=g[h])a[h]=!(b[h]=f)}):function(a,e,f){return b[0]=a,d(b,null,f,c),!c.pop()}}),has:z(function(a){return function(b){return bc(a,b).length>0}}),contains:z(function(a){return function(b){return(b.textContent||b.innerText||f(b)).indexOf(a)>-1}}),enabled:function(a){return a.disabled===!1},disabled:function(a){return a.disabled===!0},checked:function(a){var b=a.nodeName.toLowerCase();return b==="input"&&!!a.checked||b==="option"&&!!a.selected},selected:function(a){return a.parentNode&&a.parentNode.selectedIndex,a.selected===!0},parent:function(a){return!e.pseudos.empty(a)},empty:function(a){var b;a=a.firstChild;while(a){if(a.nodeName>"@"||(b=a.nodeType)===3||b===4)return!1;a=a.nextSibling}return!0},header:function(a){return T.test(a.nodeName)},text:function(a){var b,c;return a.nodeName.toLowerCase()==="input"&&(b=a.type)==="text"&&((c=a.getAttribute("type"))==null||c.toLowerCase()===b)},radio:bd("radio"),checkbox:bd("checkbox"),file:bd("file"),password:bd("password"),image:bd("image"),submit:be("submit"),reset:be("reset"),button:function(a){var b=a.nodeName.toLowerCase();return b==="input"&&a.type==="button"||b==="button"},input:function(a){return U.test(a.nodeName)},focus:function(a){var b=a.ownerDocument;return a===b.activeElement&&(!b.hasFocus||b.hasFocus())&&(!!a.type||!!a.href)},active:function(a){return a===a.ownerDocument.activeElement},first:bf(function(a,b,c){return[0]}),last:bf(function(a,b,c){return[b-1]}),eq:bf(function(a,b,c){return[c<0?c+b:c]}),even:bf(function(a,b,c){for(var d=0;d<b;d+=2)a.push(d);return a}),odd:bf(function(a,b,c){for(var d=1;d<b;d+=2)a.push(d);return a}),lt:bf(function(a,b,c){for(var d=c<0?c+b:c;--d>=0;)a.push(d);return a}),gt:bf(function(a,b,c){for(var d=c<0?c+b:c;++d<b;)a.push(d);return a})}},j=s.compareDocumentPosition?function(a,b){return a===b?(k=!0,0):(!a.compareDocumentPosition||!b.compareDocumentPosition?a.compareDocumentPosition:a.compareDocumentPosition(b)&4)?-1:1}:function(a,b){if(a===b)return k=!0,0;if(a.sourceIndex&&b.sourceIndex)return a.sourceIndex-b.sourceIndex;var c,d,e=[],f=[],g=a.parentNode,h=b.parentNode,i=g;if(g===h)return bg(a,b);if(!g)return-1;if(!h)return 1;while(i)e.unshift(i),i=i.parentNode;i=h;while(i)f.unshift(i),i=i.parentNode;c=e.length,d=f.length;for(var j=0;j<c&&j<d;j++)if(e[j]!==f[j])return bg(e[j],f[j]);return j===c?bg(a,f[j],-1):bg(e[j],b,1)},[0,0].sort(j),m=!k,bc.uniqueSort=function(a){var b,c=1;k=m,a.sort(j);if(k)for(;b=a[c];c++)b===a[c-1]&&a.splice(c--,1);return a},bc.error=function(a){throw new Error("Syntax error, unrecognized expression: "+a)},i=bc.compile=function(a,b){var c,d=[],e=[],f=D[o][a];if(!f){b||(b=bh(a)),c=b.length;while(c--)f=bm(b[c]),f[o]?d.push(f):e.push(f);f=D(a,bn(e,d))}return f},r.querySelectorAll&&function(){var a,b=bp,c=/'|\\/g,d=/\=[\x20\t\r\n\f]*([^'"\]]*)[\x20\t\r\n\f]*\]/g,e=[":focus"],f=[":active",":focus"],h=s.matchesSelector||s.mozMatchesSelector||s.webkitMatchesSelector||s.oMatchesSelector||s.msMatchesSelector;X(function(a){a.innerHTML="<select><option selected=''></option></select>",a.querySelectorAll("[selected]").length||e.push("\\["+E+"*(?:checked|disabled|ismap|multiple|readonly|selected|value)"),a.querySelectorAll(":checked").length||e.push(":checked")}),X(function(a){a.innerHTML="<p test=''></p>",a.querySelectorAll("[test^='']").length&&e.push("[*^$]="+E+"*(?:\"\"|'')"),a.innerHTML="<input type='hidden'/>",a.querySelectorAll(":enabled").length||e.push(":enabled",":disabled")}),e=new RegExp(e.join("|")),bp=function(a,d,f,g,h){if(!g&&!h&&(!e||!e.test(a))){var i,j,k=!0,l=o,m=d,n=d.nodeType===9&&a;if(d.nodeType===1&&d.nodeName.toLowerCase()!=="object"){i=bh(a),(k=d.getAttribute("id"))?l=k.replace(c,"\\$&"):d.setAttribute("id",l),l="[id='"+l+"'] ",j=i.length;while(j--)i[j]=l+i[j].join("");m=R.test(a)&&d.parentNode||d,n=i.join(",")}if(n)try{return w.apply(f,x.call(m.querySelectorAll(n),0)),f}catch(p){}finally{k||d.removeAttribute("id")}}return b(a,d,f,g,h)},h&&(X(function(b){a=h.call(b,"div");try{h.call(b,"[test!='']:sizzle"),f.push("!=",J)}catch(c){}}),f=new RegExp(f.join("|")),bc.matchesSelector=function(b,c){c=c.replace(d,"='$1']");if(!g(b)&&!f.test(c)&&(!e||!e.test(c)))try{var i=h.call(b,c);if(i||a||b.document&&b.document.nodeType!==11)return i}catch(j){}return bc(c,null,null,[b]).length>0})}(),e.pseudos.nth=e.pseudos.eq,e.filters=bq.prototype=e.pseudos,e.setFilters=new bq,bc.attr=p.attr,p.find=bc,p.expr=bc.selectors,p.expr[":"]=p.expr.pseudos,p.unique=bc.uniqueSort,p.text=bc.getText,p.isXMLDoc=bc.isXML,p.contains=bc.contains}(a);var bc=/Until$/,bd=/^(?:parents|prev(?:Until|All))/,be=/^.[^:#\[\.,]*$/,bf=p.expr.match.needsContext,bg={children:!0,contents:!0,next:!0,prev:!0};p.fn.extend({find:function(a){var b,c,d,e,f,g,h=this;if(typeof a!="string")return p(a).filter(function(){for(b=0,c=h.length;b<c;b++)if(p.contains(h[b],this))return!0});g=this.pushStack("","find",a);for(b=0,c=this.length;b<c;b++){d=g.length,p.find(a,this[b],g);if(b>0)for(e=d;e<g.length;e++)for(f=0;f<d;f++)if(g[f]===g[e]){g.splice(e--,1);break}}return g},has:function(a){var b,c=p(a,this),d=c.length;return this.filter(function(){for(b=0;b<d;b++)if(p.contains(this,c[b]))return!0})},not:function(a){return this.pushStack(bj(this,a,!1),"not",a)},filter:function(a){return this.pushStack(bj(this,a,!0),"filter",a)},is:function(a){return!!a&&(typeof a=="string"?bf.test(a)?p(a,this.context).index(this[0])>=0:p.filter(a,this).length>0:this.filter(a).length>0)},closest:function(a,b){var c,d=0,e=this.length,f=[],g=bf.test(a)||typeof a!="string"?p(a,b||this.context):0;for(;d<e;d++){c=this[d];while(c&&c.ownerDocument&&c!==b&&c.nodeType!==11){if(g?g.index(c)>-1:p.find.matchesSelector(c,a)){f.push(c);break}c=c.parentNode}}return f=f.length>1?p.unique(f):f,this.pushStack(f,"closest",a)},index:function(a){return a?typeof a=="string"?p.inArray(this[0],p(a)):p.inArray(a.jquery?a[0]:a,this):this[0]&&this[0].parentNode?this.prevAll().length:-1},add:function(a,b){var c=typeof a=="string"?p(a,b):p.makeArray(a&&a.nodeType?[a]:a),d=p.merge(this.get(),c);return this.pushStack(bh(c[0])||bh(d[0])?d:p.unique(d))},addBack:function(a){return this.add(a==null?this.prevObject:this.prevObject.filter(a))}}),p.fn.andSelf=p.fn.addBack,p.each({parent:function(a){var b=a.parentNode;return b&&b.nodeType!==11?b:null},parents:function(a){return p.dir(a,"parentNode")},parentsUntil:function(a,b,c){return p.dir(a,"parentNode",c)},next:function(a){return bi(a,"nextSibling")},prev:function(a){return bi(a,"previousSibling")},nextAll:function(a){return p.dir(a,"nextSibling")},prevAll:function(a){return p.dir(a,"previousSibling")},nextUntil:function(a,b,c){return p.dir(a,"nextSibling",c)},prevUntil:function(a,b,c){return p.dir(a,"previousSibling",c)},siblings:function(a){return p.sibling((a.parentNode||{}).firstChild,a)},children:function(a){return p.sibling(a.firstChild)},contents:function(a){return p.nodeName(a,"iframe")?a.contentDocument||a.contentWindow.document:p.merge([],a.childNodes)}},function(a,b){p.fn[a]=function(c,d){var e=p.map(this,b,c);return bc.test(a)||(d=c),d&&typeof d=="string"&&(e=p.filter(d,e)),e=this.length>1&&!bg[a]?p.unique(e):e,this.length>1&&bd.test(a)&&(e=e.reverse()),this.pushStack(e,a,k.call(arguments).join(","))}}),p.extend({filter:function(a,b,c){return c&&(a=":not("+a+")"),b.length===1?p.find.matchesSelector(b[0],a)?[b[0]]:[]:p.find.matches(a,b)},dir:function(a,c,d){var e=[],f=a[c];while(f&&f.nodeType!==9&&(d===b||f.nodeType!==1||!p(f).is(d)))f.nodeType===1&&e.push(f),f=f[c];return e},sibling:function(a,b){var c=[];for(;a;a=a.nextSibling)a.nodeType===1&&a!==b&&c.push(a);return c}});var bl="abbr|article|aside|audio|bdi|canvas|data|datalist|details|figcaption|figure|footer|header|hgroup|mark|meter|nav|output|progress|section|summary|time|video",bm=/ jQuery\d+="(?:null|\d+)"/g,bn=/^\s+/,bo=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/gi,bp=/<([\w:]+)/,bq=/<tbody/i,br=/<|&#?\w+;/,bs=/<(?:script|style|link)/i,bt=/<(?:script|object|embed|option|style)/i,bu=new RegExp("<(?:"+bl+")[\\s/>]","i"),bv=/^(?:checkbox|radio)$/,bw=/checked\s*(?:[^=]|=\s*.checked.)/i,bx=/\/(java|ecma)script/i,by=/^\s*<!(?:\[CDATA\[|\-\-)|[\]\-]{2}>\s*$/g,bz={option:[1,"<select multiple='multiple'>","</select>"],legend:[1,"<fieldset>","</fieldset>"],thead:[1,"<table>","</table>"],tr:[2,"<table><tbody>","</tbody></table>"],td:[3,"<table><tbody><tr>","</tr></tbody></table>"],col:[2,"<table><tbody></tbody><colgroup>","</colgroup></table>"],area:[1,"<map>","</map>"],_default:[0,"",""]},bA=bk(e),bB=bA.appendChild(e.createElement("div"));bz.optgroup=bz.option,bz.tbody=bz.tfoot=bz.colgroup=bz.caption=bz.thead,bz.th=bz.td,p.support.htmlSerialize||(bz._default=[1,"X<div>","</div>"]),p.fn.extend({text:function(a){return p.access(this,function(a){return a===b?p.text(this):this.empty().append((this[0]&&this[0].ownerDocument||e).createTextNode(a))},null,a,arguments.length)},wrapAll:function(a){if(p.isFunction(a))return this.each(function(b){p(this).wrapAll(a.call(this,b))});if(this[0]){var b=p(a,this[0].ownerDocument).eq(0).clone(!0);this[0].parentNode&&b.insertBefore(this[0]),b.map(function(){var a=this;while(a.firstChild&&a.firstChild.nodeType===1)a=a.firstChild;return a}).append(this)}return this},wrapInner:function(a){return p.isFunction(a)?this.each(function(b){p(this).wrapInner(a.call(this,b))}):this.each(function(){var b=p(this),c=b.contents();c.length?c.wrapAll(a):b.append(a)})},wrap:function(a){var b=p.isFunction(a);return this.each(function(c){p(this).wrapAll(b?a.call(this,c):a)})},unwrap:function(){return this.parent().each(function(){p.nodeName(this,"body")||p(this).replaceWith(this.childNodes)}).end()},append:function(){return this.domManip(arguments,!0,function(a){(this.nodeType===1||this.nodeType===11)&&this.appendChild(a)})},prepend:function(){return this.domManip(arguments,!0,function(a){(this.nodeType===1||this.nodeType===11)&&this.insertBefore(a,this.firstChild)})},before:function(){if(!bh(this[0]))return this.domManip(arguments,!1,function(a){this.parentNode.insertBefore(a,this)});if(arguments.length){var a=p.clean(arguments);return this.pushStack(p.merge(a,this),"before",this.selector)}},after:function(){if(!bh(this[0]))return this.domManip(arguments,!1,function(a){this.parentNode.insertBefore(a,this.nextSibling)});if(arguments.length){var a=p.clean(arguments);return this.pushStack(p.merge(this,a),"after",this.selector)}},remove:function(a,b){var c,d=0;for(;(c=this[d])!=null;d++)if(!a||p.filter(a,[c]).length)!b&&c.nodeType===1&&(p.cleanData(c.getElementsByTagName("*")),p.cleanData([c])),c.parentNode&&c.parentNode.removeChild(c);return this},empty:function(){var a,b=0;for(;(a=this[b])!=null;b++){a.nodeType===1&&p.cleanData(a.getElementsByTagName("*"));while(a.firstChild)a.removeChild(a.firstChild)}return this},clone:function(a,b){return a=a==null?!1:a,b=b==null?a:b,this.map(function(){return p.clone(this,a,b)})},html:function(a){return p.access(this,function(a){var c=this[0]||{},d=0,e=this.length;if(a===b)return c.nodeType===1?c.innerHTML.replace(bm,""):b;if(typeof a=="string"&&!bs.test(a)&&(p.support.htmlSerialize||!bu.test(a))&&(p.support.leadingWhitespace||!bn.test(a))&&!bz[(bp.exec(a)||["",""])[1].toLowerCase()]){a=a.replace(bo,"<$1></$2>");try{for(;d<e;d++)c=this[d]||{},c.nodeType===1&&(p.cleanData(c.getElementsByTagName("*")),c.innerHTML=a);c=0}catch(f){}}c&&this.empty().append(a)},null,a,arguments.length)},replaceWith:function(a){return bh(this[0])?this.length?this.pushStack(p(p.isFunction(a)?a():a),"replaceWith",a):this:p.isFunction(a)?this.each(function(b){var c=p(this),d=c.html();c.replaceWith(a.call(this,b,d))}):(typeof a!="string"&&(a=p(a).detach()),this.each(function(){var b=this.nextSibling,c=this.parentNode;p(this).remove(),b?p(b).before(a):p(c).append(a)}))},detach:function(a){return this.remove(a,!0)},domManip:function(a,c,d){a=[].concat.apply([],a);var e,f,g,h,i=0,j=a[0],k=[],l=this.length;if(!p.support.checkClone&&l>1&&typeof j=="string"&&bw.test(j))return this.each(function(){p(this).domManip(a,c,d)});if(p.isFunction(j))return this.each(function(e){var f=p(this);a[0]=j.call(this,e,c?f.html():b),f.domManip(a,c,d)});if(this[0]){e=p.buildFragment(a,this,k),g=e.fragment,f=g.firstChild,g.childNodes.length===1&&(g=f);if(f){c=c&&p.nodeName(f,"tr");for(h=e.cacheable||l-1;i<l;i++)d.call(c&&p.nodeName(this[i],"table")?bC(this[i],"tbody"):this[i],i===h?g:p.clone(g,!0,!0))}g=f=null,k.length&&p.each(k,function(a,b){b.src?p.ajax?p.ajax({url:b.src,type:"GET",dataType:"script",async:!1,global:!1,"throws":!0}):p.error("no ajax"):p.globalEval((b.text||b.textContent||b.innerHTML||"").replace(by,"")),b.parentNode&&b.parentNode.removeChild(b)})}return this}}),p.buildFragment=function(a,c,d){var f,g,h,i=a[0];return c=c||e,c=!c.nodeType&&c[0]||c,c=c.ownerDocument||c,a.length===1&&typeof i=="string"&&i.length<512&&c===e&&i.charAt(0)==="<"&&!bt.test(i)&&(p.support.checkClone||!bw.test(i))&&(p.support.html5Clone||!bu.test(i))&&(g=!0,f=p.fragments[i],h=f!==b),f||(f=c.createDocumentFragment(),p.clean(a,c,f,d),g&&(p.fragments[i]=h&&f)),{fragment:f,cacheable:g}},p.fragments={},p.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(a,b){p.fn[a]=function(c){var d,e=0,f=[],g=p(c),h=g.length,i=this.length===1&&this[0].parentNode;if((i==null||i&&i.nodeType===11&&i.childNodes.length===1)&&h===1)return g[b](this[0]),this;for(;e<h;e++)d=(e>0?this.clone(!0):this).get(),p(g[e])[b](d),f=f.concat(d);return this.pushStack(f,a,g.selector)}}),p.extend({clone:function(a,b,c){var d,e,f,g;p.support.html5Clone||p.isXMLDoc(a)||!bu.test("<"+a.nodeName+">")?g=a.cloneNode(!0):(bB.innerHTML=a.outerHTML,bB.removeChild(g=bB.firstChild));if((!p.support.noCloneEvent||!p.support.noCloneChecked)&&(a.nodeType===1||a.nodeType===11)&&!p.isXMLDoc(a)){bE(a,g),d=bF(a),e=bF(g);for(f=0;d[f];++f)e[f]&&bE(d[f],e[f])}if(b){bD(a,g);if(c){d=bF(a),e=bF(g);for(f=0;d[f];++f)bD(d[f],e[f])}}return d=e=null,g},clean:function(a,b,c,d){var f,g,h,i,j,k,l,m,n,o,q,r,s=b===e&&bA,t=[];if(!b||typeof b.createDocumentFragment=="undefined")b=e;for(f=0;(h=a[f])!=null;f++){typeof h=="number"&&(h+="");if(!h)continue;if(typeof h=="string")if(!br.test(h))h=b.createTextNode(h);else{s=s||bk(b),l=b.createElement("div"),s.appendChild(l),h=h.replace(bo,"<$1></$2>"),i=(bp.exec(h)||["",""])[1].toLowerCase(),j=bz[i]||bz._default,k=j[0],l.innerHTML=j[1]+h+j[2];while(k--)l=l.lastChild;if(!p.support.tbody){m=bq.test(h),n=i==="table"&&!m?l.firstChild&&l.firstChild.childNodes:j[1]==="<table>"&&!m?l.childNodes:[];for(g=n.length-1;g>=0;--g)p.nodeName(n[g],"tbody")&&!n[g].childNodes.length&&n[g].parentNode.removeChild(n[g])}!p.support.leadingWhitespace&&bn.test(h)&&l.insertBefore(b.createTextNode(bn.exec(h)[0]),l.firstChild),h=l.childNodes,l.parentNode.removeChild(l)}h.nodeType?t.push(h):p.merge(t,h)}l&&(h=l=s=null);if(!p.support.appendChecked)for(f=0;(h=t[f])!=null;f++)p.nodeName(h,"input")?bG(h):typeof h.getElementsByTagName!="undefined"&&p.grep(h.getElementsByTagName("input"),bG);if(c){q=function(a){if(!a.type||bx.test(a.type))return d?d.push(a.parentNode?a.parentNode.removeChild(a):a):c.appendChild(a)};for(f=0;(h=t[f])!=null;f++)if(!p.nodeName(h,"script")||!q(h))c.appendChild(h),typeof h.getElementsByTagName!="undefined"&&(r=p.grep(p.merge([],h.getElementsByTagName("script")),q),t.splice.apply(t,[f+1,0].concat(r)),f+=r.length)}return t},cleanData:function(a,b){var c,d,e,f,g=0,h=p.expando,i=p.cache,j=p.support.deleteExpando,k=p.event.special;for(;(e=a[g])!=null;g++)if(b||p.acceptData(e)){d=e[h],c=d&&i[d];if(c){if(c.events)for(f in c.events)k[f]?p.event.remove(e,f):p.removeEvent(e,f,c.handle);i[d]&&(delete i[d],j?delete e[h]:e.removeAttribute?e.removeAttribute(h):e[h]=null,p.deletedIds.push(d))}}}}),function(){var a,b;p.uaMatch=function(a){a=a.toLowerCase();var b=/(chrome)[ \/]([\w.]+)/.exec(a)||/(webkit)[ \/]([\w.]+)/.exec(a)||/(opera)(?:.*version|)[ \/]([\w.]+)/.exec(a)||/(msie) ([\w.]+)/.exec(a)||a.indexOf("compatible")<0&&/(mozilla)(?:.*? rv:([\w.]+)|)/.exec(a)||[];return{browser:b[1]||"",version:b[2]||"0"}},a=p.uaMatch(g.userAgent),b={},a.browser&&(b[a.browser]=!0,b.version=a.version),b.chrome?b.webkit=!0:b.webkit&&(b.safari=!0),p.browser=b,p.sub=function(){function a(b,c){return new a.fn.init(b,c)}p.extend(!0,a,this),a.superclass=this,a.fn=a.prototype=this(),a.fn.constructor=a,a.sub=this.sub,a.fn.init=function c(c,d){return d&&d instanceof p&&!(d instanceof a)&&(d=a(d)),p.fn.init.call(this,c,d,b)},a.fn.init.prototype=a.fn;var b=a(e);return a}}();var bH,bI,bJ,bK=/alpha\([^)]*\)/i,bL=/opacity=([^)]*)/,bM=/^(top|right|bottom|left)$/,bN=/^(none|table(?!-c[ea]).+)/,bO=/^margin/,bP=new RegExp("^("+q+")(.*)$","i"),bQ=new RegExp("^("+q+")(?!px)[a-z%]+$","i"),bR=new RegExp("^([-+])=("+q+")","i"),bS={},bT={position:"absolute",visibility:"hidden",display:"block"},bU={letterSpacing:0,fontWeight:400},bV=["Top","Right","Bottom","Left"],bW=["Webkit","O","Moz","ms"],bX=p.fn.toggle;p.fn.extend({css:function(a,c){return p.access(this,function(a,c,d){return d!==b?p.style(a,c,d):p.css(a,c)},a,c,arguments.length>1)},show:function(){return b$(this,!0)},hide:function(){return b$(this)},toggle:function(a,b){var c=typeof a=="boolean";return p.isFunction(a)&&p.isFunction(b)?bX.apply(this,arguments):this.each(function(){(c?a:bZ(this))?p(this).show():p(this).hide()})}}),p.extend({cssHooks:{opacity:{get:function(a,b){if(b){var c=bH(a,"opacity");return c===""?"1":c}}}},cssNumber:{fillOpacity:!0,fontWeight:!0,lineHeight:!0,opacity:!0,orphans:!0,widows:!0,zIndex:!0,zoom:!0},cssProps:{"float":p.support.cssFloat?"cssFloat":"styleFloat"},style:function(a,c,d,e){if(!a||a.nodeType===3||a.nodeType===8||!a.style)return;var f,g,h,i=p.camelCase(c),j=a.style;c=p.cssProps[i]||(p.cssProps[i]=bY(j,i)),h=p.cssHooks[c]||p.cssHooks[i];if(d===b)return h&&"get"in h&&(f=h.get(a,!1,e))!==b?f:j[c];g=typeof d,g==="string"&&(f=bR.exec(d))&&(d=(f[1]+1)*f[2]+parseFloat(p.css(a,c)),g="number");if(d==null||g==="number"&&isNaN(d))return;g==="number"&&!p.cssNumber[i]&&(d+="px");if(!h||!("set"in h)||(d=h.set(a,d,e))!==b)try{j[c]=d}catch(k){}},css:function(a,c,d,e){var f,g,h,i=p.camelCase(c);return c=p.cssProps[i]||(p.cssProps[i]=bY(a.style,i)),h=p.cssHooks[c]||p.cssHooks[i],h&&"get"in h&&(f=h.get(a,!0,e)),f===b&&(f=bH(a,c)),f==="normal"&&c in bU&&(f=bU[c]),d||e!==b?(g=parseFloat(f),d||p.isNumeric(g)?g||0:f):f},swap:function(a,b,c){var d,e,f={};for(e in b)f[e]=a.style[e],a.style[e]=b[e];d=c.call(a);for(e in b)a.style[e]=f[e];return d}}),a.getComputedStyle?bH=function(b,c){var d,e,f,g,h=a.getComputedStyle(b,null),i=b.style;return h&&(d=h[c],d===""&&!p.contains(b.ownerDocument,b)&&(d=p.style(b,c)),bQ.test(d)&&bO.test(c)&&(e=i.width,f=i.minWidth,g=i.maxWidth,i.minWidth=i.maxWidth=i.width=d,d=h.width,i.width=e,i.minWidth=f,i.maxWidth=g)),d}:e.documentElement.currentStyle&&(bH=function(a,b){var c,d,e=a.currentStyle&&a.currentStyle[b],f=a.style;return e==null&&f&&f[b]&&(e=f[b]),bQ.test(e)&&!bM.test(b)&&(c=f.left,d=a.runtimeStyle&&a.runtimeStyle.left,d&&(a.runtimeStyle.left=a.currentStyle.left),f.left=b==="fontSize"?"1em":e,e=f.pixelLeft+"px",f.left=c,d&&(a.runtimeStyle.left=d)),e===""?"auto":e}),p.each(["height","width"],function(a,b){p.cssHooks[b]={get:function(a,c,d){if(c)return a.offsetWidth===0&&bN.test(bH(a,"display"))?p.swap(a,bT,function(){return cb(a,b,d)}):cb(a,b,d)},set:function(a,c,d){return b_(a,c,d?ca(a,b,d,p.support.boxSizing&&p.css(a,"boxSizing")==="border-box"):0)}}}),p.support.opacity||(p.cssHooks.opacity={get:function(a,b){return bL.test((b&&a.currentStyle?a.currentStyle.filter:a.style.filter)||"")?.01*parseFloat(RegExp.$1)+"":b?"1":""},set:function(a,b){var c=a.style,d=a.currentStyle,e=p.isNumeric(b)?"alpha(opacity="+b*100+")":"",f=d&&d.filter||c.filter||"";c.zoom=1;if(b>=1&&p.trim(f.replace(bK,""))===""&&c.removeAttribute){c.removeAttribute("filter");if(d&&!d.filter)return}c.filter=bK.test(f)?f.replace(bK,e):f+" "+e}}),p(function(){p.support.reliableMarginRight||(p.cssHooks.marginRight={get:function(a,b){return p.swap(a,{display:"inline-block"},function(){if(b)return bH(a,"marginRight")})}}),!p.support.pixelPosition&&p.fn.position&&p.each(["top","left"],function(a,b){p.cssHooks[b]={get:function(a,c){if(c){var d=bH(a,b);return bQ.test(d)?p(a).position()[b]+"px":d}}}})}),p.expr&&p.expr.filters&&(p.expr.filters.hidden=function(a){return a.offsetWidth===0&&a.offsetHeight===0||!p.support.reliableHiddenOffsets&&(a.style&&a.style.display||bH(a,"display"))==="none"},p.expr.filters.visible=function(a){return!p.expr.filters.hidden(a)}),p.each({margin:"",padding:"",border:"Width"},function(a,b){p.cssHooks[a+b]={expand:function(c){var d,e=typeof c=="string"?c.split(" "):[c],f={};for(d=0;d<4;d++)f[a+bV[d]+b]=e[d]||e[d-2]||e[0];return f}},bO.test(a)||(p.cssHooks[a+b].set=b_)});var cd=/%20/g,ce=/\[\]$/,cf=/\r?\n/g,cg=/^(?:color|date|datetime|datetime-local|email|hidden|month|number|password|range|search|tel|text|time|url|week)$/i,ch=/^(?:select|textarea)/i;p.fn.extend({serialize:function(){return p.param(this.serializeArray())},serializeArray:function(){return this.map(function(){return this.elements?p.makeArray(this.elements):this}).filter(function(){return this.name&&!this.disabled&&(this.checked||ch.test(this.nodeName)||cg.test(this.type))}).map(function(a,b){var c=p(this).val();return c==null?null:p.isArray(c)?p.map(c,function(a,c){return{name:b.name,value:a.replace(cf,"\r\n")}}):{name:b.name,value:c.replace(cf,"\r\n")}}).get()}}),p.param=function(a,c){var d,e=[],f=function(a,b){b=p.isFunction(b)?b():b==null?"":b,e[e.length]=encodeURIComponent(a)+"="+encodeURIComponent(b)};c===b&&(c=p.ajaxSettings&&p.ajaxSettings.traditional);if(p.isArray(a)||a.jquery&&!p.isPlainObject(a))p.each(a,function(){f(this.name,this.value)});else for(d in a)ci(d,a[d],c,f);return e.join("&").replace(cd,"+")};var cj,ck,cl=/#.*$/,cm=/^(.*?):[ \t]*([^\r\n]*)\r?$/mg,cn=/^(?:about|app|app\-storage|.+\-extension|file|res|widget):$/,co=/^(?:GET|HEAD)$/,cp=/^\/\//,cq=/\?/,cr=/<script\b[^<]*(?:(?!<\/script>)<[^<]*)*<\/script>/gi,cs=/([?&])_=[^&]*/,ct=/^([\w\+\.\-]+:)(?:\/\/([^\/?#:]*)(?::(\d+)|)|)/,cu=p.fn.load,cv={},cw={},cx=["*/"]+["*"];try{ck=f.href}catch(cy){ck=e.createElement("a"),ck.href="",ck=ck.href}cj=ct.exec(ck.toLowerCase())||[],p.fn.load=function(a,c,d){if(typeof a!="string"&&cu)return cu.apply(this,arguments);if(!this.length)return this;var e,f,g,h=this,i=a.indexOf(" ");return i>=0&&(e=a.slice(i,a.length),a=a.slice(0,i)),p.isFunction(c)?(d=c,c=b):c&&typeof c=="object"&&(f="POST"),p.ajax({url:a,type:f,dataType:"html",data:c,complete:function(a,b){d&&h.each(d,g||[a.responseText,b,a])}}).done(function(a){g=arguments,h.html(e?p("<div>").append(a.replace(cr,"")).find(e):a)}),this},p.each("ajaxStart ajaxStop ajaxComplete ajaxError ajaxSuccess ajaxSend".split(" "),function(a,b){p.fn[b]=function(a){return this.on(b,a)}}),p.each(["get","post"],function(a,c){p[c]=function(a,d,e,f){return p.isFunction(d)&&(f=f||e,e=d,d=b),p.ajax({type:c,url:a,data:d,success:e,dataType:f})}}),p.extend({getScript:function(a,c){return p.get(a,b,c,"script")},getJSON:function(a,b,c){return p.get(a,b,c,"json")},ajaxSetup:function(a,b){return b?cB(a,p.ajaxSettings):(b=a,a=p.ajaxSettings),cB(a,b),a},ajaxSettings:{url:ck,isLocal:cn.test(cj[1]),global:!0,type:"GET",contentType:"application/x-www-form-urlencoded; charset=UTF-8",processData:!0,async:!0,accepts:{xml:"application/xml, text/xml",html:"text/html",text:"text/plain",json:"application/json, text/javascript","*":cx},contents:{xml:/xml/,html:/html/,json:/json/},responseFields:{xml:"responseXML",text:"responseText"},converters:{"* text":a.String,"text html":!0,"text json":p.parseJSON,"text xml":p.parseXML},flatOptions:{context:!0,url:!0}},ajaxPrefilter:cz(cv),ajaxTransport:cz(cw),ajax:function(a,c){function y(a,c,f,i){var k,s,t,u,w,y=c;if(v===2)return;v=2,h&&clearTimeout(h),g=b,e=i||"",x.readyState=a>0?4:0,f&&(u=cC(l,x,f));if(a>=200&&a<300||a===304)l.ifModified&&(w=x.getResponseHeader("Last-Modified"),w&&(p.lastModified[d]=w),w=x.getResponseHeader("Etag"),w&&(p.etag[d]=w)),a===304?(y="notmodified",k=!0):(k=cD(l,u),y=k.state,s=k.data,t=k.error,k=!t);else{t=y;if(!y||a)y="error",a<0&&(a=0)}x.status=a,x.statusText=(c||y)+"",k?o.resolveWith(m,[s,y,x]):o.rejectWith(m,[x,y,t]),x.statusCode(r),r=b,j&&n.trigger("ajax"+(k?"Success":"Error"),[x,l,k?s:t]),q.fireWith(m,[x,y]),j&&(n.trigger("ajaxComplete",[x,l]),--p.active||p.event.trigger("ajaxStop"))}typeof a=="object"&&(c=a,a=b),c=c||{};var d,e,f,g,h,i,j,k,l=p.ajaxSetup({},c),m=l.context||l,n=m!==l&&(m.nodeType||m instanceof p)?p(m):p.event,o=p.Deferred(),q=p.Callbacks("once memory"),r=l.statusCode||{},t={},u={},v=0,w="canceled",x={readyState:0,setRequestHeader:function(a,b){if(!v){var c=a.toLowerCase();a=u[c]=u[c]||a,t[a]=b}return this},getAllResponseHeaders:function(){return v===2?e:null},getResponseHeader:function(a){var c;if(v===2){if(!f){f={};while(c=cm.exec(e))f[c[1].toLowerCase()]=c[2]}c=f[a.toLowerCase()]}return c===b?null:c},overrideMimeType:function(a){return v||(l.mimeType=a),this},abort:function(a){return a=a||w,g&&g.abort(a),y(0,a),this}};o.promise(x),x.success=x.done,x.error=x.fail,x.complete=q.add,x.statusCode=function(a){if(a){var b;if(v<2)for(b in a)r[b]=[r[b],a[b]];else b=a[x.status],x.always(b)}return this},l.url=((a||l.url)+"").replace(cl,"").replace(cp,cj[1]+"//"),l.dataTypes=p.trim(l.dataType||"*").toLowerCase().split(s),l.crossDomain==null&&(i=ct.exec(l.url.toLowerCase())||!1,l.crossDomain=i&&i.join(":")+(i[3]?"":i[1]==="http:"?80:443)!==cj.join(":")+(cj[3]?"":cj[1]==="http:"?80:443)),l.data&&l.processData&&typeof l.data!="string"&&(l.data=p.param(l.data,l.traditional)),cA(cv,l,c,x);if(v===2)return x;j=l.global,l.type=l.type.toUpperCase(),l.hasContent=!co.test(l.type),j&&p.active++===0&&p.event.trigger("ajaxStart");if(!l.hasContent){l.data&&(l.url+=(cq.test(l.url)?"&":"?")+l.data,delete l.data),d=l.url;if(l.cache===!1){var z=p.now(),A=l.url.replace(cs,"$1_="+z);l.url=A+(A===l.url?(cq.test(l.url)?"&":"?")+"_="+z:"")}}(l.data&&l.hasContent&&l.contentType!==!1||c.contentType)&&x.setRequestHeader("Content-Type",l.contentType),l.ifModified&&(d=d||l.url,p.lastModified[d]&&x.setRequestHeader("If-Modified-Since",p.lastModified[d]),p.etag[d]&&x.setRequestHeader("If-None-Match",p.etag[d])),x.setRequestHeader("Accept",l.dataTypes[0]&&l.accepts[l.dataTypes[0]]?l.accepts[l.dataTypes[0]]+(l.dataTypes[0]!=="*"?", "+cx+"; q=0.01":""):l.accepts["*"]);for(k in l.headers)x.setRequestHeader(k,l.headers[k]);if(!l.beforeSend||l.beforeSend.call(m,x,l)!==!1&&v!==2){w="abort";for(k in{success:1,error:1,complete:1})x[k](l[k]);g=cA(cw,l,c,x);if(!g)y(-1,"No Transport");else{x.readyState=1,j&&n.trigger("ajaxSend",[x,l]),l.async&&l.timeout>0&&(h=setTimeout(function(){x.abort("timeout")},l.timeout));try{v=1,g.send(t,y)}catch(B){if(v<2)y(-1,B);else throw B}}return x}return x.abort()},active:0,lastModified:{},etag:{}});var cE=[],cF=/\?/,cG=/(=)\?(?=&|$)|\?\?/,cH=p.now();p.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var a=cE.pop()||p.expando+"_"+cH++;return this[a]=!0,a}}),p.ajaxPrefilter("json jsonp",function(c,d,e){var f,g,h,i=c.data,j=c.url,k=c.jsonp!==!1,l=k&&cG.test(j),m=k&&!l&&typeof i=="string"&&!(c.contentType||"").indexOf("application/x-www-form-urlencoded")&&cG.test(i);if(c.dataTypes[0]==="jsonp"||l||m)return f=c.jsonpCallback=p.isFunction(c.jsonpCallback)?c.jsonpCallback():c.jsonpCallback,g=a[f],l?c.url=j.replace(cG,"$1"+f):m?c.data=i.replace(cG,"$1"+f):k&&(c.url+=(cF.test(j)?"&":"?")+c.jsonp+"="+f),c.converters["script json"]=function(){return h||p.error(f+" was not called"),h[0]},c.dataTypes[0]="json",a[f]=function(){h=arguments},e.always(function(){a[f]=g,c[f]&&(c.jsonpCallback=d.jsonpCallback,cE.push(f)),h&&p.isFunction(g)&&g(h[0]),h=g=b}),"script"}),p.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/javascript|ecmascript/},converters:{"text script":function(a){return p.globalEval(a),a}}}),p.ajaxPrefilter("script",function(a){a.cache===b&&(a.cache=!1),a.crossDomain&&(a.type="GET",a.global=!1)}),p.ajaxTransport("script",function(a){if(a.crossDomain){var c,d=e.head||e.getElementsByTagName("head")[0]||e.documentElement;return{send:function(f,g){c=e.createElement("script"),c.async="async",a.scriptCharset&&(c.charset=a.scriptCharset),c.src=a.url,c.onload=c.onreadystatechange=function(a,e){if(e||!c.readyState||/loaded|complete/.test(c.readyState))c.onload=c.onreadystatechange=null,d&&c.parentNode&&d.removeChild(c),c=b,e||g(200,"success")},d.insertBefore(c,d.firstChild)},abort:function(){c&&c.onload(0,1)}}}});var cI,cJ=a.ActiveXObject?function(){for(var a in cI)cI[a](0,1)}:!1,cK=0;p.ajaxSettings.xhr=a.ActiveXObject?function(){return!this.isLocal&&cL()||cM()}:cL,function(a){p.extend(p.support,{ajax:!!a,cors:!!a&&"withCredentials"in a})}(p.ajaxSettings.xhr()),p.support.ajax&&p.ajaxTransport(function(c){if(!c.crossDomain||p.support.cors){var d;return{send:function(e,f){var g,h,i=c.xhr();c.username?i.open(c.type,c.url,c.async,c.username,c.password):i.open(c.type,c.url,c.async);if(c.xhrFields)for(h in c.xhrFields)i[h]=c.xhrFields[h];c.mimeType&&i.overrideMimeType&&i.overrideMimeType(c.mimeType),!c.crossDomain&&!e["X-Requested-With"]&&(e["X-Requested-With"]="XMLHttpRequest");try{for(h in e)i.setRequestHeader(h,e[h])}catch(j){}i.send(c.hasContent&&c.data||null),d=function(a,e){var h,j,k,l,m;try{if(d&&(e||i.readyState===4)){d=b,g&&(i.onreadystatechange=p.noop,cJ&&delete cI[g]);if(e)i.readyState!==4&&i.abort();else{h=i.status,k=i.getAllResponseHeaders(),l={},m=i.responseXML,m&&m.documentElement&&(l.xml=m);try{l.text=i.responseText}catch(a){}try{j=i.statusText}catch(n){j=""}!h&&c.isLocal&&!c.crossDomain?h=l.text?200:404:h===1223&&(h=204)}}}catch(o){e||f(-1,o)}l&&f(h,j,l,k)},c.async?i.readyState===4?setTimeout(d,0):(g=++cK,cJ&&(cI||(cI={},p(a).unload(cJ)),cI[g]=d),i.onreadystatechange=d):d()},abort:function(){d&&d(0,1)}}}});var cN,cO,cP=/^(?:toggle|show|hide)$/,cQ=new RegExp("^(?:([-+])=|)("+q+")([a-z%]*)$","i"),cR=/queueHooks$/,cS=[cY],cT={"*":[function(a,b){var c,d,e=this.createTween(a,b),f=cQ.exec(b),g=e.cur(),h=+g||0,i=1,j=20;if(f){c=+f[2],d=f[3]||(p.cssNumber[a]?"":"px");if(d!=="px"&&h){h=p.css(e.elem,a,!0)||c||1;do i=i||".5",h=h/i,p.style(e.elem,a,h+d);while(i!==(i=e.cur()/g)&&i!==1&&--j)}e.unit=d,e.start=h,e.end=f[1]?h+(f[1]+1)*c:c}return e}]};p.Animation=p.extend(cW,{tweener:function(a,b){p.isFunction(a)?(b=a,a=["*"]):a=a.split(" ");var c,d=0,e=a.length;for(;d<e;d++)c=a[d],cT[c]=cT[c]||[],cT[c].unshift(b)},prefilter:function(a,b){b?cS.unshift(a):cS.push(a)}}),p.Tween=cZ,cZ.prototype={constructor:cZ,init:function(a,b,c,d,e,f){this.elem=a,this.prop=c,this.easing=e||"swing",this.options=b,this.start=this.now=this.cur(),this.end=d,this.unit=f||(p.cssNumber[c]?"":"px")},cur:function(){var a=cZ.propHooks[this.prop];return a&&a.get?a.get(this):cZ.propHooks._default.get(this)},run:function(a){var b,c=cZ.propHooks[this.prop];return this.options.duration?this.pos=b=p.easing[this.easing](a,this.options.duration*a,0,1,this.options.duration):this.pos=b=a,this.now=(this.end-this.start)*b+this.start,this.options.step&&this.options.step.call(this.elem,this.now,this),c&&c.set?c.set(this):cZ.propHooks._default.set(this),this}},cZ.prototype.init.prototype=cZ.prototype,cZ.propHooks={_default:{get:function(a){var b;return a.elem[a.prop]==null||!!a.elem.style&&a.elem.style[a.prop]!=null?(b=p.css(a.elem,a.prop,!1,""),!b||b==="auto"?0:b):a.elem[a.prop]},set:function(a){p.fx.step[a.prop]?p.fx.step[a.prop](a):a.elem.style&&(a.elem.style[p.cssProps[a.prop]]!=null||p.cssHooks[a.prop])?p.style(a.elem,a.prop,a.now+a.unit):a.elem[a.prop]=a.now}}},cZ.propHooks.scrollTop=cZ.propHooks.scrollLeft={set:function(a){a.elem.nodeType&&a.elem.parentNode&&(a.elem[a.prop]=a.now)}},p.each(["toggle","show","hide"],function(a,b){var c=p.fn[b];p.fn[b]=function(d,e,f){return d==null||typeof d=="boolean"||!a&&p.isFunction(d)&&p.isFunction(e)?c.apply(this,arguments):this.animate(c$(b,!0),d,e,f)}}),p.fn.extend({fadeTo:function(a,b,c,d){return this.filter(bZ).css("opacity",0).show().end().animate({opacity:b},a,c,d)},animate:function(a,b,c,d){var e=p.isEmptyObject(a),f=p.speed(b,c,d),g=function(){var b=cW(this,p.extend({},a),f);e&&b.stop(!0)};return e||f.queue===!1?this.each(g):this.queue(f.queue,g)},stop:function(a,c,d){var e=function(a){var b=a.stop;delete a.stop,b(d)};return typeof a!="string"&&(d=c,c=a,a=b),c&&a!==!1&&this.queue(a||"fx",[]),this.each(function(){var b=!0,c=a!=null&&a+"queueHooks",f=p.timers,g=p._data(this);if(c)g[c]&&g[c].stop&&e(g[c]);else for(c in g)g[c]&&g[c].stop&&cR.test(c)&&e(g[c]);for(c=f.length;c--;)f[c].elem===this&&(a==null||f[c].queue===a)&&(f[c].anim.stop(d),b=!1,f.splice(c,1));(b||!d)&&p.dequeue(this,a)})}}),p.each({slideDown:c$("show"),slideUp:c$("hide"),slideToggle:c$("toggle"),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"},fadeToggle:{opacity:"toggle"}},function(a,b){p.fn[a]=function(a,c,d){return this.animate(b,a,c,d)}}),p.speed=function(a,b,c){var d=a&&typeof a=="object"?p.extend({},a):{complete:c||!c&&b||p.isFunction(a)&&a,duration:a,easing:c&&b||b&&!p.isFunction(b)&&b};d.duration=p.fx.off?0:typeof d.duration=="number"?d.duration:d.duration in p.fx.speeds?p.fx.speeds[d.duration]:p.fx.speeds._default;if(d.queue==null||d.queue===!0)d.queue="fx";return d.old=d.complete,d.complete=function(){p.isFunction(d.old)&&d.old.call(this),d.queue&&p.dequeue(this,d.queue)},d},p.easing={linear:function(a){return a},swing:function(a){return.5-Math.cos(a*Math.PI)/2}},p.timers=[],p.fx=cZ.prototype.init,p.fx.tick=function(){var a,b=p.timers,c=0;for(;c<b.length;c++)a=b[c],!a()&&b[c]===a&&b.splice(c--,1);b.length||p.fx.stop()},p.fx.timer=function(a){a()&&p.timers.push(a)&&!cO&&(cO=setInterval(p.fx.tick,p.fx.interval))},p.fx.interval=13,p.fx.stop=function(){clearInterval(cO),cO=null},p.fx.speeds={slow:600,fast:200,_default:400},p.fx.step={},p.expr&&p.expr.filters&&(p.expr.filters.animated=function(a){return p.grep(p.timers,function(b){return a===b.elem}).length});var c_=/^(?:body|html)$/i;p.fn.offset=function(a){if(arguments.length)return a===b?this:this.each(function(b){p.offset.setOffset(this,a,b)});var c,d,e,f,g,h,i,j={top:0,left:0},k=this[0],l=k&&k.ownerDocument;if(!l)return;return(d=l.body)===k?p.offset.bodyOffset(k):(c=l.documentElement,p.contains(c,k)?(typeof k.getBoundingClientRect!="undefined"&&(j=k.getBoundingClientRect()),e=da(l),f=c.clientTop||d.clientTop||0,g=c.clientLeft||d.clientLeft||0,h=e.pageYOffset||c.scrollTop,i=e.pageXOffset||c.scrollLeft,{top:j.top+h-f,left:j.left+i-g}):j)},p.offset={bodyOffset:function(a){var b=a.offsetTop,c=a.offsetLeft;return p.support.doesNotIncludeMarginInBodyOffset&&(b+=parseFloat(p.css(a,"marginTop"))||0,c+=parseFloat(p.css(a,"marginLeft"))||0),{top:b,left:c}},setOffset:function(a,b,c){var d=p.css(a,"position");d==="static"&&(a.style.position="relative");var e=p(a),f=e.offset(),g=p.css(a,"top"),h=p.css(a,"left"),i=(d==="absolute"||d==="fixed")&&p.inArray("auto",[g,h])>-1,j={},k={},l,m;i?(k=e.position(),l=k.top,m=k.left):(l=parseFloat(g)||0,m=parseFloat(h)||0),p.isFunction(b)&&(b=b.call(a,c,f)),b.top!=null&&(j.top=b.top-f.top+l),b.left!=null&&(j.left=b.left-f.left+m),"using"in b?b.using.call(a,j):e.css(j)}},p.fn.extend({position:function(){if(!this[0])return;var a=this[0],b=this.offsetParent(),c=this.offset(),d=c_.test(b[0].nodeName)?{top:0,left:0}:b.offset();return c.top-=parseFloat(p.css(a,"marginTop"))||0,c.left-=parseFloat(p.css(a,"marginLeft"))||0,d.top+=parseFloat(p.css(b[0],"borderTopWidth"))||0,d.left+=parseFloat(p.css(b[0],"borderLeftWidth"))||0,{top:c.top-d.top,left:c.left-d.left}},offsetParent:function(){return this.map(function(){var a=this.offsetParent||e.body;while(a&&!c_.test(a.nodeName)&&p.css(a,"position")==="static")a=a.offsetParent;return a||e.body})}}),p.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(a,c){var d=/Y/.test(c);p.fn[a]=function(e){return p.access(this,function(a,e,f){var g=da(a);if(f===b)return g?c in g?g[c]:g.document.documentElement[e]:a[e];g?g.scrollTo(d?p(g).scrollLeft():f,d?f:p(g).scrollTop()):a[e]=f},a,e,arguments.length,null)}}),p.each({Height:"height",Width:"width"},function(a,c){p.each({padding:"inner"+a,content:c,"":"outer"+a},function(d,e){p.fn[e]=function(e,f){var g=arguments.length&&(d||typeof e!="boolean"),h=d||(e===!0||f===!0?"margin":"border");return p.access(this,function(c,d,e){var f;return p.isWindow(c)?c.document.documentElement["client"+a]:c.nodeType===9?(f=c.documentElement,Math.max(c.body["scroll"+a],f["scroll"+a],c.body["offset"+a],f["offset"+a],f["client"+a])):e===b?p.css(c,d,e,h):p.style(c,d,e,h)},c,g?e:b,g,null)}})}),a.jQuery=a.$=p,typeof define=="function"&&define.amd&&define.amd.jQuery&&define("jquery",[],function(){return p})})(window); |
| URL | http://zero.webappsecurity.com/resources/js/placeholders.min.js |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Request Header - size: 287 bytes. |
GET http://zero.webappsecurity.com/resources/js/placeholders.min.js HTTP/1.1
Host: zero.webappsecurity.com User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0 Pragma: no-cache Cache-Control: no-cache Referer: http://zero.webappsecurity.com |
| Request Body - size: 0 bytes. |
|
| Response Header - size: 359 bytes. |
HTTP/1.1 200 OK
Date: Mon, 14 Mar 2022 07:13:42 GMT Server: Apache-Coyote/1.1 Access-Control-Allow-Origin: * Accept-Ranges: bytes ETag: W/"5615-1360116138000" Last-Modified: Wed, 06 Feb 2013 02:02:18 GMT Cache-Control: max-age=2678400 Expires: Thu, 14 Apr 2022 07:13:43 GMT Content-Type: application/javascript;charset=UTF-8 Content-Length: 5615 |
| Response Body - size: 5,615 bytes. |
var Placeholders=function(){var validTypes=["text","search","url","tel","email","password","number","textarea"],settings={live:false,hideOnFocus:false,className:"placeholderspolyfill",textColor:"#999",styleImportant:true},badKeys=[37,38,39,40],interval,valueKeyDown,classNameRegExp=new RegExp("\\b"+settings.className+"\\b");function cursorToStart(elem){var range;if(elem.createTextRange){range=elem.createTextRange();range.move("character",0);range.select()}else if(elem.selectionStart){elem.focus();
elem.setSelectionRange(0,0)}}function focusHandler(){var type;if(this.value===this.getAttribute("placeholder"))if(!settings.hideOnFocus)cursorToStart(this);else{this.className=this.className.replace(classNameRegExp,"");this.value="";type=this.getAttribute("data-placeholdertype");if(type)this.type=type}}function blurHandler(){var type;if(this.value===""){this.className=this.className+" "+settings.className;this.value=this.getAttribute("placeholder");type=this.getAttribute("data-placeholdertype");if(type)this.type= "text"}}function submitHandler(){var inputs=this.getElementsByTagName("input"),textareas=this.getElementsByTagName("textarea"),numInputs=inputs.length,num=numInputs+textareas.length,element,placeholder,i;for(i=0;i<num;i+=1){element=i<numInputs?inputs[i]:textareas[i-numInputs];placeholder=element.getAttribute("placeholder");if(element.value===placeholder)element.value=""}}function keydownHandler(event){valueKeyDown=this.value;return!(valueKeyDown===this.getAttribute("placeholder")&&badKeys.indexOf(event.keyCode)> -1)}function keyupHandler(){var type;if(this.value!==valueKeyDown){this.className=this.className.replace(classNameRegExp,"");this.value=this.value.replace(this.getAttribute("placeholder"),"");type=this.getAttribute("data-placeholdertype");if(type)this.type=type}if(this.value===""){blurHandler.call(this);cursorToStart(this)}}function addEventListener(element,event,fn){if(element.addEventListener)return element.addEventListener(event,fn.bind(element),false);if(element.attachEvent)return element.attachEvent("on"+ event,fn.bind(element))}function addEventListeners(element){if(!settings.hideOnFocus){addEventListener(element,"keydown",keydownHandler);addEventListener(element,"keyup",keyupHandler)}addEventListener(element,"focus",focusHandler);addEventListener(element,"blur",blurHandler)}function updatePlaceholders(){var inputs=document.getElementsByTagName("input"),textareas=document.getElementsByTagName("textarea"),numInputs=inputs.length,num=numInputs+textareas.length,i,form,element,oldPlaceholder,newPlaceholder; for(i=0;i<num;i+=1){element=i<numInputs?inputs[i]:textareas[i-numInputs];newPlaceholder=element.getAttribute("placeholder");if(validTypes.indexOf(element.type)>-1)if(newPlaceholder){oldPlaceholder=element.getAttribute("data-currentplaceholder");if(newPlaceholder!==oldPlaceholder){if(element.value===oldPlaceholder||element.value===newPlaceholder||!element.value){element.value=newPlaceholder;element.className=element.className+" "+settings.className}if(!oldPlaceholder){if(element.form){form=element.form; if(!form.getAttribute("data-placeholdersubmit")){addEventListener(form,"submit",submitHandler);form.setAttribute("data-placeholdersubmit","true")}}addEventListeners(element)}element.setAttribute("data-currentplaceholder",newPlaceholder)}}}}function createPlaceholders(){var inputs=document.getElementsByTagName("input"),textareas=document.getElementsByTagName("textarea"),numInputs=inputs.length,num=numInputs+textareas.length,i,element,form,placeholder;for(i=0;i<num;i+=1){element=i<numInputs?inputs[i]: textareas[i-numInputs];placeholder=element.getAttribute("placeholder");if(validTypes.indexOf(element.type)>-1)if(placeholder){if(element.type==="password")try{element.type="text";element.setAttribute("data-placeholdertype","password")}catch(e){}element.setAttribute("data-currentplaceholder",placeholder);if(element.value===""||element.value===placeholder){element.className=element.className+" "+settings.className;element.value=placeholder}if(element.form){form=element.form;if(!form.getAttribute("data-placeholdersubmit")){addEventListener(form, "submit",submitHandler);form.setAttribute("data-placeholdersubmit","true")}}addEventListeners(element)}}}function init(opts){var test=document.createElement("input"),opt,styleElem,styleRules,i,j;if(typeof test.placeholder==="undefined"){for(opt in opts)if(opts.hasOwnProperty(opt))settings[opt]=opts[opt];styleElem=document.createElement("style");styleElem.type="text/css";var importantValue=settings.styleImportant?"!important":"";styleRules=document.createTextNode("."+settings.className+" { color:"+ settings.textColor+importantValue+"; }");if(styleElem.styleSheet)styleElem.styleSheet.cssText=styleRules.nodeValue;else styleElem.appendChild(styleRules);document.getElementsByTagName("head")[0].appendChild(styleElem);if(!Array.prototype.indexOf)Array.prototype.indexOf=function(obj,start){for(i=start||0,j=this.length;i<j;i+=1)if(this[i]===obj)return i;return-1};if(!Function.prototype.bind)Function.prototype.bind=function(oThis){if(typeof this!=="function")throw new TypeError("Function.prototype.bind - what is trying to be bound is not callable"); var aArgs=Array.prototype.slice.call(arguments,1),fToBind=this,FNop=function(){},fBound=function(){return fToBind.apply(this instanceof FNop?this:oThis,aArgs.concat(Array.prototype.slice.call(arguments)))};FNop.prototype=this.prototype;fBound.prototype=new FNop;return fBound};createPlaceholders();if(settings.live)interval=setInterval(updatePlaceholders,100);return true}return false}return{init:init,refresh:updatePlaceholders}}(); |
| URL | http://zero.webappsecurity.com/robots.txt |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Request Header - size: 224 bytes. |
GET http://zero.webappsecurity.com/robots.txt HTTP/1.1
Host: zero.webappsecurity.com User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0 Pragma: no-cache Cache-Control: no-cache |
| Request Body - size: 0 bytes. |
|
| Response Header - size: 204 bytes. |
HTTP/1.1 404 Not Found
Date: Mon, 14 Mar 2022 07:13:40 GMT Server: Apache-Coyote/1.1 Access-Control-Allow-Origin: * Content-Type: text/html;charset=utf-8 Content-Language: en Content-Length: 971 |
| Response Body - size: 971 bytes. |
<html><head><title>Apache Tomcat/7.0.70 - Error report</title><style><!--H1 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:22px;} H2 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:16px;} H3 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:14px;} BODY {font-family:Tahoma,Arial,sans-serif;color:black;background-color:white;} B {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;} P {font-family:Tahoma,Arial,sans-serif;background:white;color:black;font-size:12px;}A {color : black;}A.name {color : black;}HR {color : #525D76;}--></style> </head><body><h1>HTTP Status 404 - /robots.txt</h1><HR size="1" noshade="noshade"><p><b>type</b> Status report</p><p><b>message</b> <u>/robots.txt</u></p><p><b>description</b> <u>The requested resource is not available.</u></p><HR size="1" noshade="noshade"><h3>Apache Tomcat/7.0.70</h3></body></html>
|
| URL | http://zero.webappsecurity.com/search.html?searchTerm=ZAP |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Request Header - size: 281 bytes. |
GET http://zero.webappsecurity.com/search.html?searchTerm=ZAP HTTP/1.1
Host: zero.webappsecurity.com User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0 Pragma: no-cache Cache-Control: no-cache Referer: http://zero.webappsecurity.com |
| Request Body - size: 0 bytes. |
|
| Response Header - size: 242 bytes. |
HTTP/1.1 200 OK
Date: Mon, 14 Mar 2022 07:13:43 GMT Server: Apache-Coyote/1.1 Access-Control-Allow-Origin: * Cache-Control: no-cache, max-age=0, must-revalidate, no-store Content-Type: text/html;charset=UTF-8 Content-Language: en-US |
| Response Body - size: 7,723 bytes. |
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Zero - Search Tips</title> <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"> <meta http-equiv="X-UA-Compatible" content="IE=Edge"> <link type="text/css" rel="stylesheet" href="/resources/css/bootstrap.min.css"/> <link type="text/css" rel="stylesheet" href="/resources/css/font-awesome.css"/> <link type="text/css" rel="stylesheet" href="/resources/css/main.css"/> <script src="/resources/js/jquery-1.8.2.min.js"></script> <script src="/resources/js/bootstrap.min.js"></script> <script src="/resources/js/placeholders.min.js"></script> <script type="text/javascript"> Placeholders.init({ live: true, // Apply to future and modified elements too hideOnFocus: true // Hide the placeholder when the element receives focus }); </script> <script type="text/javascript"> $(document).ajaxError(function errorHandler(event, xhr, ajaxOptions, thrownError) { if (xhr.status == 403) { window.location.reload(); } }); </script> </head> <body> <div class="wrapper"> <div class="navbar navbar-fixed-top"> <div class="navbar-inner"> <div class="container"> <a href="/index.html" class="brand">Zero Bank</a> <div> <ul class="nav float-right"> <li> <form action="/search.html" class="navbar-search pull-right" style="padding-right: 20px"> <input type="text" id="searchTerm" name="searchTerm" class="search-query" placeholder="Search"/> </form> </li> <li> <button id="signin_button" type="button" class="signin btn btn-info"> <i class="icon-signin"></i>Signin </button> </li> </ul> </div> </div> </div> </div> <script type="text/javascript"> $(function() { var path = "/"; $("#signin_button").click(function(event) { event.preventDefault(); window.location.href = path + "login" + ".html"; }); }); </script> <div class="container"> <div class="top_offset"> <div class="row"> <div class="span12"> <div id="nav" class="clearfix"> <ul id="pages-nav"> <li id="homeMenu"><div><strong>Home</strong></div></li> <li id="onlineBankingMenu"><div><strong>Online Banking</strong></div></li> <li id="feedback"><div><strong>Feedback</strong></div></li> </ul> </div> </div> <script type="text/javascript"> $(function () { var path = "/"; var featureIdToName = { "index": "homeMenu", "online-banking": "onlineBankingMenu", "feedback": "feedback" }; if (document.location.href.match(".*" + path + "$") != null) { $("#homeMenu").addClass("active"); } else { $.each(featureIdToName, function(featureId, featureName) { if (document.location.href.indexOf(featureId + ".html") >= 0) { $("#" + featureName).addClass("active"); } }); } $.each(featureIdToName, function(featureId, featureName) { $("#nav").on("click", "li[id='" + featureName + "']", function(event) { event.preventDefault(); window.location.href = path + featureId + ".html"; }); }); }); </script> </div> <hr class="row-divider"/> <h2>Search Results:</h2> No results were found for the query: ZAP </div> </div> <div class="clearfix push"></div> </div> <div class="extra"> <div class="extra-inner"> <div class="container"> <div class="row"> <div class="span4"> <ul> <li><span id="download_webinspect_link">Download WebInspect</span></li> </ul> </div> <div class="span4"> <ul> <li><span id="terms_of_use_link">Terms of Use</span></li> </ul> </div> <div class="span4"> <ul> <li><span id="contact_hp_link">Contact Micro Focus</span></li> <li><span id="privacy_statement_link">Privacy Statement</span></li> </ul> </div> </div> <div class="row"> <div class="disclaimer span12"> The Free Online Bank Web site is published by Micro Focus Fortify for the sole purpose of demonstrating the functionality and effectiveness of Micro Focus Fortify’s WebInspect products in detecting and reporting Web application vulnerabilities. This site is not a real banking site and any similarities to third party products and/or Web sites are purely coincidental. This site is provided "as is" without warranty of any kind, either express or implied. Micro Focus Fortify does not assume any risk in relation to your use of this Web site. Use of this Web site indicates that you have read and agree to Micro Focus Fortify’s Terms of Use found at <a href="https://www.microfocus.com/about/legal/#privacy" target="_blank">https://www.microfocus.com/about/legal/#privacy</a> and Micro Focus Fortify’s Online Privacy Statement found at <a href="https://www.microfocus.com/about/legal/#privacy" target="_blank">https://www.microfocus.com/about/legal/#privacy</a>. <br/><br/> Copyright © 2012-2018, Micro Focus Development Company. All rights reserved. </div> </div> </div> </div> </div> <script type="text/javascript"> $(function () { var path = "/"; var attachClickHandler = function(selector, handler) { $(".extra").on('click', selector, handler); } var footerLinks = { "download_webinspect_link": { absolute: true, page: "https://software.microfocus.com/en-us/products/webinspect-dynamic-analysis-dast/overview" }, "contact_hp_link" : { absolute: true, page: "https://support.fortify.com" }, "privacy_statement_link": { absolute: true, page: "https://www.microfocus.com/about/legal/#privacy" }, "terms_of_use_link": { absolute: true, page: "https://www.microfocus.com/about/legal/" } }; $.each(footerLinks, function(linkId, link) { attachClickHandler('span[id="' + linkId + '"]', function(event) { event.preventDefault(); if (link.absolute) { window.location.href = link.page; } else { window.location.href = path + link.page + ".html"; } }); }); }); </script> </body> </html> |
| URL | http://zero.webappsecurity.com/sitemap.xml |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Request Header - size: 225 bytes. |
GET http://zero.webappsecurity.com/sitemap.xml HTTP/1.1
Host: zero.webappsecurity.com User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0 Pragma: no-cache Cache-Control: no-cache |
| Request Body - size: 0 bytes. |
|
| Response Header - size: 204 bytes. |
HTTP/1.1 404 Not Found
Date: Mon, 14 Mar 2022 07:13:40 GMT Server: Apache-Coyote/1.1 Access-Control-Allow-Origin: * Content-Type: text/html;charset=utf-8 Content-Language: en Content-Length: 973 |
| Response Body - size: 973 bytes. |
<html><head><title>Apache Tomcat/7.0.70 - Error report</title><style><!--H1 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:22px;} H2 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:16px;} H3 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:14px;} BODY {font-family:Tahoma,Arial,sans-serif;color:black;background-color:white;} B {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;} P {font-family:Tahoma,Arial,sans-serif;background:white;color:black;font-size:12px;}A {color : black;}A.name {color : black;}HR {color : #525D76;}--></style> </head><body><h1>HTTP Status 404 - /sitemap.xml</h1><HR size="1" noshade="noshade"><p><b>type</b> Status report</p><p><b>message</b> <u>/sitemap.xml</u></p><p><b>description</b> <u>The requested resource is not available.</u></p><HR size="1" noshade="noshade"><h3>Apache Tomcat/7.0.70</h3></body></html>
|
| Instances | 9 |
| Solution |
Ensure that your web server, application server, load balancer, etc. is configured to set the Permissions-Policy header.
|
| Reference |
https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Feature-Policy
https://developers.google.com/web/updates/2018/06/feature-policy https://scotthelme.co.uk/a-new-security-header-feature-policy/ https://w3c.github.io/webappsec-feature-policy/ https://www.smashingmagazine.com/2018/12/feature-policy/ |
| Tags |
OWASP_2021_A01
OWASP_2017_A05 |
| CWE Id | 693 |
| WASC Id | 15 |
| Plugin Id | 10063 |
|
Low |
Server Leaks Version Information via "Server" HTTP Response Header Field |
|---|---|
| Description |
The web/application server is leaking version information via the "Server" HTTP response header. Access to such information may facilitate attackers identifying other vulnerabilities your web/application server is subject to.
|
| URL | http://zero.webappsecurity.com |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | Apache-Coyote/1.1 |
| Request Header - size: 213 bytes. |
GET http://zero.webappsecurity.com HTTP/1.1
Host: zero.webappsecurity.com User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0 Pragma: no-cache Cache-Control: no-cache |
| Request Body - size: 0 bytes. |
|
| Response Header - size: 242 bytes. |
HTTP/1.1 200 OK
Date: Mon, 14 Mar 2022 07:13:40 GMT Server: Apache-Coyote/1.1 Access-Control-Allow-Origin: * Cache-Control: no-cache, max-age=0, must-revalidate, no-store Content-Type: text/html;charset=UTF-8 Content-Language: en-US |
| Response Body - size: 12,471 bytes. |
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Zero - Personal Banking - Loans - Credit Cards</title> <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"> <meta http-equiv="X-UA-Compatible" content="IE=Edge"> <link type="text/css" rel="stylesheet" href="/resources/css/bootstrap.min.css"/> <link type="text/css" rel="stylesheet" href="/resources/css/font-awesome.css"/> <link type="text/css" rel="stylesheet" href="/resources/css/main.css"/> <script src="/resources/js/jquery-1.8.2.min.js"></script> <script src="/resources/js/bootstrap.min.js"></script> <script src="/resources/js/placeholders.min.js"></script> <script type="text/javascript"> Placeholders.init({ live: true, // Apply to future and modified elements too hideOnFocus: true // Hide the placeholder when the element receives focus }); </script> <script type="text/javascript"> $(document).ajaxError(function errorHandler(event, xhr, ajaxOptions, thrownError) { if (xhr.status == 403) { window.location.reload(); } }); </script> </head> <body> <div class="wrapper"> <div class="navbar navbar-fixed-top"> <div class="navbar-inner"> <div class="container"> <a href="/index.html" class="brand">Zero Bank</a> <div> <ul class="nav float-right"> <li> <form action="/search.html" class="navbar-search pull-right" style="padding-right: 20px"> <input type="text" id="searchTerm" name="searchTerm" class="search-query" placeholder="Search"/> </form> </li> <li> <button id="signin_button" type="button" class="signin btn btn-info"> <i class="icon-signin"></i>Signin </button> </li> </ul> </div> </div> </div> </div> <script type="text/javascript"> $(function() { var path = "/"; $("#signin_button").click(function(event) { event.preventDefault(); window.location.href = path + "login" + ".html"; }); }); </script> <div class="container"> <div class="top_offset"> <div class="row"> <div class="span12"> <div id="nav" class="clearfix"> <ul id="pages-nav"> <li id="homeMenu"><div><strong>Home</strong></div></li> <li id="onlineBankingMenu"><div><strong>Online Banking</strong></div></li> <li id="feedback"><div><strong>Feedback</strong></div></li> </ul> </div> </div> <script type="text/javascript"> $(function () { var path = "/"; var featureIdToName = { "index": "homeMenu", "online-banking": "onlineBankingMenu", "feedback": "feedback" }; if (document.location.href.match(".*" + path + "$") != null) { $("#homeMenu").addClass("active"); } else { $.each(featureIdToName, function(featureId, featureName) { if (document.location.href.indexOf(featureId + ".html") >= 0) { $("#" + featureName).addClass("active"); } }); } $.each(featureIdToName, function(featureId, featureName) { $("#nav").on("click", "li[id='" + featureName + "']", function(event) { event.preventDefault(); window.location.href = path + featureId + ".html"; }); }); }); </script> </div> <div class="row"> <div class="span12"> <div id="carousel" class="carousel slide"> <div class="carousel-inner"> <div class="active item"> <img src="/resources/img/main_carousel_1.jpg" width="940" height="401" alt=""/> <div class="custom carousel-caption"> <h4>Online Banking</h4> <p>Welcome to Zero Online Banking. Zero provides a greener and more convenient way to manage your money. Zero enables you to check your account balances, pay your bills, transfer money, and keep detailed records of your transactions, wherever there is an internet connection.</p> </div> </div> <div class="item"> <img src="/resources/img/main_carousel_2.jpg" width="940" height="401" alt=""/> <div class="custom carousel-caption"> <h4>Online Banking</h4> <p>Welcome to Zero Online Banking. Zero provides a greener and more convenient way to manage your money. Zero enables you to check your account balances, pay your bills, transfer money, and keep detailed records of your transactions, wherever there is an internet connection.</p> </div> </div> <div class="item"> <img src="/resources/img/main_carousel_3.jpg" width="940" height="401" alt=""/> <div class="custom carousel-caption"> <h4>Online Banking</h4> <p>Welcome to Zero Online Banking. Zero provides a greener and more convenient way to manage your money. Zero enables you to check your account balances, pay your bills, transfer money, and keep detailed records of your transactions, wherever there is an internet connection.</p> </div> </div> </div> <a class="carousel-control custom left" href="#carousel" data-slide="prev">‹</a> <a class="carousel-control custom right" href="#carousel" data-slide="next">›</a> </div> </div> </div> <hr class="row-divider"/> <div id="online_banking_features" class="row divider"> <div class="span3"> <h4><i class="icon icon-bookmark"></i> Online Banking</h4> <p>Click the button below to view online banking features.</p> <a id="online-banking" class="btn btn-small btn-info">More Services</a> </div> <div class="span3"> <div> <h4><span class="headers" id="account_activity_link"><i class="icon icon-user"></i>Checking Account Activity</span></h4> <p>Use Zero to view the most up-to-date listings of your deposits, withdrawals, interest payments, and a number of other useful transactions. </p> </div> </div> <div class="span3"> <div> <h4><span class="headers" id="transfer_funds_link"><i class="icon icon-random"></i>Transfer Funds</span></h4> <p>Use Zero to safely and securely transfer funds between accounts. There is no hold placed on online money transfers, so your funds are available when you need them. </p> </div> </div> <div class="span3"> <div> <h4><span class="headers" id="money_map_link"><i class="icon icon-list-alt"></i>My Money Map</span></h4> <p>Use Zero to set up and monitor your personalized money map. A money map is an easy-to-use online tool that helps you manage your finances efficiently. With Money Map, you can create a budget, sort your finances into spending and savings categories, check the interest your accounts are earning, and gain new understanding of your patterns with the help of Zero’s clear charts and graphs. </p> </div> </div> </div> <script type="text/javascript"> $(function() { $("#carousel").carousel({ interval: false }); $("div").on("click", "a[id='online-banking']", function(event){ event.preventDefault(); window.location.href = "/" + "online-banking" + ".html"; }); var path = "/bank/"; var featureIdToName = { "account_activity_link": "account-activity", "transfer_funds_link": "transfer-funds", "money_map_link": "money-map" } $.each(featureIdToName, function(featureId, featureName) { $("#online_banking_features").on("click", "span[id='" + featureId + "']", function(event) { event.preventDefault(); window.location.href = path + featureName +".html"; }); }); }); </script> </div> </div> <div class="clearfix push"></div> </div> <div class="extra"> <div class="extra-inner"> <div class="container"> <div class="row"> <div class="span4"> <ul> <li><span id="download_webinspect_link">Download WebInspect</span></li> </ul> </div> <div class="span4"> <ul> <li><span id="terms_of_use_link">Terms of Use</span></li> </ul> </div> <div class="span4"> <ul> <li><span id="contact_hp_link">Contact Micro Focus</span></li> <li><span id="privacy_statement_link">Privacy Statement</span></li> </ul> </div> </div> <div class="row"> <div class="disclaimer span12"> The Free Online Bank Web site is published by Micro Focus Fortify for the sole purpose of demonstrating the functionality and effectiveness of Micro Focus Fortify’s WebInspect products in detecting and reporting Web application vulnerabilities. This site is not a real banking site and any similarities to third party products and/or Web sites are purely coincidental. This site is provided "as is" without warranty of any kind, either express or implied. Micro Focus Fortify does not assume any risk in relation to your use of this Web site. Use of this Web site indicates that you have read and agree to Micro Focus Fortify’s Terms of Use found at <a href="https://www.microfocus.com/about/legal/#privacy" target="_blank">https://www.microfocus.com/about/legal/#privacy</a> and Micro Focus Fortify’s Online Privacy Statement found at <a href="https://www.microfocus.com/about/legal/#privacy" target="_blank">https://www.microfocus.com/about/legal/#privacy</a>. <br/><br/> Copyright © 2012-2018, Micro Focus Development Company. All rights reserved. </div> </div> </div> </div> </div> <script type="text/javascript"> $(function () { var path = "/"; var attachClickHandler = function(selector, handler) { $(".extra").on('click', selector, handler); } var footerLinks = { "download_webinspect_link": { absolute: true, page: "https://software.microfocus.com/en-us/products/webinspect-dynamic-analysis-dast/overview" }, "contact_hp_link" : { absolute: true, page: "https://support.fortify.com" }, "privacy_statement_link": { absolute: true, page: "https://www.microfocus.com/about/legal/#privacy" }, "terms_of_use_link": { absolute: true, page: "https://www.microfocus.com/about/legal/" } }; $.each(footerLinks, function(linkId, link) { attachClickHandler('span[id="' + linkId + '"]', function(event) { event.preventDefault(); if (link.absolute) { window.location.href = link.page; } else { window.location.href = path + link.page + ".html"; } }); }); }); </script> </body> </html> |
| URL | http://zero.webappsecurity.com/ |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | Apache-Coyote/1.1 |
| Request Header - size: 214 bytes. |
GET http://zero.webappsecurity.com/ HTTP/1.1
Host: zero.webappsecurity.com User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0 Pragma: no-cache Cache-Control: no-cache |
| Request Body - size: 0 bytes. |
|
| Response Header - size: 242 bytes. |
HTTP/1.1 200 OK
Date: Mon, 14 Mar 2022 07:13:39 GMT Server: Apache-Coyote/1.1 Access-Control-Allow-Origin: * Cache-Control: no-cache, max-age=0, must-revalidate, no-store Content-Type: text/html;charset=UTF-8 Content-Language: en-US |
| Response Body - size: 12,471 bytes. |
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Zero - Personal Banking - Loans - Credit Cards</title> <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"> <meta http-equiv="X-UA-Compatible" content="IE=Edge"> <link type="text/css" rel="stylesheet" href="/resources/css/bootstrap.min.css"/> <link type="text/css" rel="stylesheet" href="/resources/css/font-awesome.css"/> <link type="text/css" rel="stylesheet" href="/resources/css/main.css"/> <script src="/resources/js/jquery-1.8.2.min.js"></script> <script src="/resources/js/bootstrap.min.js"></script> <script src="/resources/js/placeholders.min.js"></script> <script type="text/javascript"> Placeholders.init({ live: true, // Apply to future and modified elements too hideOnFocus: true // Hide the placeholder when the element receives focus }); </script> <script type="text/javascript"> $(document).ajaxError(function errorHandler(event, xhr, ajaxOptions, thrownError) { if (xhr.status == 403) { window.location.reload(); } }); </script> </head> <body> <div class="wrapper"> <div class="navbar navbar-fixed-top"> <div class="navbar-inner"> <div class="container"> <a href="/index.html" class="brand">Zero Bank</a> <div> <ul class="nav float-right"> <li> <form action="/search.html" class="navbar-search pull-right" style="padding-right: 20px"> <input type="text" id="searchTerm" name="searchTerm" class="search-query" placeholder="Search"/> </form> </li> <li> <button id="signin_button" type="button" class="signin btn btn-info"> <i class="icon-signin"></i>Signin </button> </li> </ul> </div> </div> </div> </div> <script type="text/javascript"> $(function() { var path = "/"; $("#signin_button").click(function(event) { event.preventDefault(); window.location.href = path + "login" + ".html"; }); }); </script> <div class="container"> <div class="top_offset"> <div class="row"> <div class="span12"> <div id="nav" class="clearfix"> <ul id="pages-nav"> <li id="homeMenu"><div><strong>Home</strong></div></li> <li id="onlineBankingMenu"><div><strong>Online Banking</strong></div></li> <li id="feedback"><div><strong>Feedback</strong></div></li> </ul> </div> </div> <script type="text/javascript"> $(function () { var path = "/"; var featureIdToName = { "index": "homeMenu", "online-banking": "onlineBankingMenu", "feedback": "feedback" }; if (document.location.href.match(".*" + path + "$") != null) { $("#homeMenu").addClass("active"); } else { $.each(featureIdToName, function(featureId, featureName) { if (document.location.href.indexOf(featureId + ".html") >= 0) { $("#" + featureName).addClass("active"); } }); } $.each(featureIdToName, function(featureId, featureName) { $("#nav").on("click", "li[id='" + featureName + "']", function(event) { event.preventDefault(); window.location.href = path + featureId + ".html"; }); }); }); </script> </div> <div class="row"> <div class="span12"> <div id="carousel" class="carousel slide"> <div class="carousel-inner"> <div class="active item"> <img src="/resources/img/main_carousel_1.jpg" width="940" height="401" alt=""/> <div class="custom carousel-caption"> <h4>Online Banking</h4> <p>Welcome to Zero Online Banking. Zero provides a greener and more convenient way to manage your money. Zero enables you to check your account balances, pay your bills, transfer money, and keep detailed records of your transactions, wherever there is an internet connection.</p> </div> </div> <div class="item"> <img src="/resources/img/main_carousel_2.jpg" width="940" height="401" alt=""/> <div class="custom carousel-caption"> <h4>Online Banking</h4> <p>Welcome to Zero Online Banking. Zero provides a greener and more convenient way to manage your money. Zero enables you to check your account balances, pay your bills, transfer money, and keep detailed records of your transactions, wherever there is an internet connection.</p> </div> </div> <div class="item"> <img src="/resources/img/main_carousel_3.jpg" width="940" height="401" alt=""/> <div class="custom carousel-caption"> <h4>Online Banking</h4> <p>Welcome to Zero Online Banking. Zero provides a greener and more convenient way to manage your money. Zero enables you to check your account balances, pay your bills, transfer money, and keep detailed records of your transactions, wherever there is an internet connection.</p> </div> </div> </div> <a class="carousel-control custom left" href="#carousel" data-slide="prev">‹</a> <a class="carousel-control custom right" href="#carousel" data-slide="next">›</a> </div> </div> </div> <hr class="row-divider"/> <div id="online_banking_features" class="row divider"> <div class="span3"> <h4><i class="icon icon-bookmark"></i> Online Banking</h4> <p>Click the button below to view online banking features.</p> <a id="online-banking" class="btn btn-small btn-info">More Services</a> </div> <div class="span3"> <div> <h4><span class="headers" id="account_activity_link"><i class="icon icon-user"></i>Checking Account Activity</span></h4> <p>Use Zero to view the most up-to-date listings of your deposits, withdrawals, interest payments, and a number of other useful transactions. </p> </div> </div> <div class="span3"> <div> <h4><span class="headers" id="transfer_funds_link"><i class="icon icon-random"></i>Transfer Funds</span></h4> <p>Use Zero to safely and securely transfer funds between accounts. There is no hold placed on online money transfers, so your funds are available when you need them. </p> </div> </div> <div class="span3"> <div> <h4><span class="headers" id="money_map_link"><i class="icon icon-list-alt"></i>My Money Map</span></h4> <p>Use Zero to set up and monitor your personalized money map. A money map is an easy-to-use online tool that helps you manage your finances efficiently. With Money Map, you can create a budget, sort your finances into spending and savings categories, check the interest your accounts are earning, and gain new understanding of your patterns with the help of Zero’s clear charts and graphs. </p> </div> </div> </div> <script type="text/javascript"> $(function() { $("#carousel").carousel({ interval: false }); $("div").on("click", "a[id='online-banking']", function(event){ event.preventDefault(); window.location.href = "/" + "online-banking" + ".html"; }); var path = "/bank/"; var featureIdToName = { "account_activity_link": "account-activity", "transfer_funds_link": "transfer-funds", "money_map_link": "money-map" } $.each(featureIdToName, function(featureId, featureName) { $("#online_banking_features").on("click", "span[id='" + featureId + "']", function(event) { event.preventDefault(); window.location.href = path + featureName +".html"; }); }); }); </script> </div> </div> <div class="clearfix push"></div> </div> <div class="extra"> <div class="extra-inner"> <div class="container"> <div class="row"> <div class="span4"> <ul> <li><span id="download_webinspect_link">Download WebInspect</span></li> </ul> </div> <div class="span4"> <ul> <li><span id="terms_of_use_link">Terms of Use</span></li> </ul> </div> <div class="span4"> <ul> <li><span id="contact_hp_link">Contact Micro Focus</span></li> <li><span id="privacy_statement_link">Privacy Statement</span></li> </ul> </div> </div> <div class="row"> <div class="disclaimer span12"> The Free Online Bank Web site is published by Micro Focus Fortify for the sole purpose of demonstrating the functionality and effectiveness of Micro Focus Fortify’s WebInspect products in detecting and reporting Web application vulnerabilities. This site is not a real banking site and any similarities to third party products and/or Web sites are purely coincidental. This site is provided "as is" without warranty of any kind, either express or implied. Micro Focus Fortify does not assume any risk in relation to your use of this Web site. Use of this Web site indicates that you have read and agree to Micro Focus Fortify’s Terms of Use found at <a href="https://www.microfocus.com/about/legal/#privacy" target="_blank">https://www.microfocus.com/about/legal/#privacy</a> and Micro Focus Fortify’s Online Privacy Statement found at <a href="https://www.microfocus.com/about/legal/#privacy" target="_blank">https://www.microfocus.com/about/legal/#privacy</a>. <br/><br/> Copyright © 2012-2018, Micro Focus Development Company. All rights reserved. </div> </div> </div> </div> </div> <script type="text/javascript"> $(function () { var path = "/"; var attachClickHandler = function(selector, handler) { $(".extra").on('click', selector, handler); } var footerLinks = { "download_webinspect_link": { absolute: true, page: "https://software.microfocus.com/en-us/products/webinspect-dynamic-analysis-dast/overview" }, "contact_hp_link" : { absolute: true, page: "https://support.fortify.com" }, "privacy_statement_link": { absolute: true, page: "https://www.microfocus.com/about/legal/#privacy" }, "terms_of_use_link": { absolute: true, page: "https://www.microfocus.com/about/legal/" } }; $.each(footerLinks, function(linkId, link) { attachClickHandler('span[id="' + linkId + '"]', function(event) { event.preventDefault(); if (link.absolute) { window.location.href = link.page; } else { window.location.href = path + link.page + ".html"; } }); }); }); </script> </body> </html> |
| URL | http://zero.webappsecurity.com/index.html |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | Apache-Coyote/1.1 |
| Request Header - size: 265 bytes. |
GET http://zero.webappsecurity.com/index.html HTTP/1.1
Host: zero.webappsecurity.com User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0 Pragma: no-cache Cache-Control: no-cache Referer: http://zero.webappsecurity.com |
| Request Body - size: 0 bytes. |
|
| Response Header - size: 242 bytes. |
HTTP/1.1 200 OK
Date: Mon, 14 Mar 2022 07:13:41 GMT Server: Apache-Coyote/1.1 Access-Control-Allow-Origin: * Cache-Control: no-cache, max-age=0, must-revalidate, no-store Content-Type: text/html;charset=UTF-8 Content-Language: en-US |
| Response Body - size: 12,471 bytes. |
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Zero - Personal Banking - Loans - Credit Cards</title> <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"> <meta http-equiv="X-UA-Compatible" content="IE=Edge"> <link type="text/css" rel="stylesheet" href="/resources/css/bootstrap.min.css"/> <link type="text/css" rel="stylesheet" href="/resources/css/font-awesome.css"/> <link type="text/css" rel="stylesheet" href="/resources/css/main.css"/> <script src="/resources/js/jquery-1.8.2.min.js"></script> <script src="/resources/js/bootstrap.min.js"></script> <script src="/resources/js/placeholders.min.js"></script> <script type="text/javascript"> Placeholders.init({ live: true, // Apply to future and modified elements too hideOnFocus: true // Hide the placeholder when the element receives focus }); </script> <script type="text/javascript"> $(document).ajaxError(function errorHandler(event, xhr, ajaxOptions, thrownError) { if (xhr.status == 403) { window.location.reload(); } }); </script> </head> <body> <div class="wrapper"> <div class="navbar navbar-fixed-top"> <div class="navbar-inner"> <div class="container"> <a href="/index.html" class="brand">Zero Bank</a> <div> <ul class="nav float-right"> <li> <form action="/search.html" class="navbar-search pull-right" style="padding-right: 20px"> <input type="text" id="searchTerm" name="searchTerm" class="search-query" placeholder="Search"/> </form> </li> <li> <button id="signin_button" type="button" class="signin btn btn-info"> <i class="icon-signin"></i>Signin </button> </li> </ul> </div> </div> </div> </div> <script type="text/javascript"> $(function() { var path = "/"; $("#signin_button").click(function(event) { event.preventDefault(); window.location.href = path + "login" + ".html"; }); }); </script> <div class="container"> <div class="top_offset"> <div class="row"> <div class="span12"> <div id="nav" class="clearfix"> <ul id="pages-nav"> <li id="homeMenu"><div><strong>Home</strong></div></li> <li id="onlineBankingMenu"><div><strong>Online Banking</strong></div></li> <li id="feedback"><div><strong>Feedback</strong></div></li> </ul> </div> </div> <script type="text/javascript"> $(function () { var path = "/"; var featureIdToName = { "index": "homeMenu", "online-banking": "onlineBankingMenu", "feedback": "feedback" }; if (document.location.href.match(".*" + path + "$") != null) { $("#homeMenu").addClass("active"); } else { $.each(featureIdToName, function(featureId, featureName) { if (document.location.href.indexOf(featureId + ".html") >= 0) { $("#" + featureName).addClass("active"); } }); } $.each(featureIdToName, function(featureId, featureName) { $("#nav").on("click", "li[id='" + featureName + "']", function(event) { event.preventDefault(); window.location.href = path + featureId + ".html"; }); }); }); </script> </div> <div class="row"> <div class="span12"> <div id="carousel" class="carousel slide"> <div class="carousel-inner"> <div class="active item"> <img src="/resources/img/main_carousel_1.jpg" width="940" height="401" alt=""/> <div class="custom carousel-caption"> <h4>Online Banking</h4> <p>Welcome to Zero Online Banking. Zero provides a greener and more convenient way to manage your money. Zero enables you to check your account balances, pay your bills, transfer money, and keep detailed records of your transactions, wherever there is an internet connection.</p> </div> </div> <div class="item"> <img src="/resources/img/main_carousel_2.jpg" width="940" height="401" alt=""/> <div class="custom carousel-caption"> <h4>Online Banking</h4> <p>Welcome to Zero Online Banking. Zero provides a greener and more convenient way to manage your money. Zero enables you to check your account balances, pay your bills, transfer money, and keep detailed records of your transactions, wherever there is an internet connection.</p> </div> </div> <div class="item"> <img src="/resources/img/main_carousel_3.jpg" width="940" height="401" alt=""/> <div class="custom carousel-caption"> <h4>Online Banking</h4> <p>Welcome to Zero Online Banking. Zero provides a greener and more convenient way to manage your money. Zero enables you to check your account balances, pay your bills, transfer money, and keep detailed records of your transactions, wherever there is an internet connection.</p> </div> </div> </div> <a class="carousel-control custom left" href="#carousel" data-slide="prev">‹</a> <a class="carousel-control custom right" href="#carousel" data-slide="next">›</a> </div> </div> </div> <hr class="row-divider"/> <div id="online_banking_features" class="row divider"> <div class="span3"> <h4><i class="icon icon-bookmark"></i> Online Banking</h4> <p>Click the button below to view online banking features.</p> <a id="online-banking" class="btn btn-small btn-info">More Services</a> </div> <div class="span3"> <div> <h4><span class="headers" id="account_activity_link"><i class="icon icon-user"></i>Checking Account Activity</span></h4> <p>Use Zero to view the most up-to-date listings of your deposits, withdrawals, interest payments, and a number of other useful transactions. </p> </div> </div> <div class="span3"> <div> <h4><span class="headers" id="transfer_funds_link"><i class="icon icon-random"></i>Transfer Funds</span></h4> <p>Use Zero to safely and securely transfer funds between accounts. There is no hold placed on online money transfers, so your funds are available when you need them. </p> </div> </div> <div class="span3"> <div> <h4><span class="headers" id="money_map_link"><i class="icon icon-list-alt"></i>My Money Map</span></h4> <p>Use Zero to set up and monitor your personalized money map. A money map is an easy-to-use online tool that helps you manage your finances efficiently. With Money Map, you can create a budget, sort your finances into spending and savings categories, check the interest your accounts are earning, and gain new understanding of your patterns with the help of Zero’s clear charts and graphs. </p> </div> </div> </div> <script type="text/javascript"> $(function() { $("#carousel").carousel({ interval: false }); $("div").on("click", "a[id='online-banking']", function(event){ event.preventDefault(); window.location.href = "/" + "online-banking" + ".html"; }); var path = "/bank/"; var featureIdToName = { "account_activity_link": "account-activity", "transfer_funds_link": "transfer-funds", "money_map_link": "money-map" } $.each(featureIdToName, function(featureId, featureName) { $("#online_banking_features").on("click", "span[id='" + featureId + "']", function(event) { event.preventDefault(); window.location.href = path + featureName +".html"; }); }); }); </script> </div> </div> <div class="clearfix push"></div> </div> <div class="extra"> <div class="extra-inner"> <div class="container"> <div class="row"> <div class="span4"> <ul> <li><span id="download_webinspect_link">Download WebInspect</span></li> </ul> </div> <div class="span4"> <ul> <li><span id="terms_of_use_link">Terms of Use</span></li> </ul> </div> <div class="span4"> <ul> <li><span id="contact_hp_link">Contact Micro Focus</span></li> <li><span id="privacy_statement_link">Privacy Statement</span></li> </ul> </div> </div> <div class="row"> <div class="disclaimer span12"> The Free Online Bank Web site is published by Micro Focus Fortify for the sole purpose of demonstrating the functionality and effectiveness of Micro Focus Fortify’s WebInspect products in detecting and reporting Web application vulnerabilities. This site is not a real banking site and any similarities to third party products and/or Web sites are purely coincidental. This site is provided "as is" without warranty of any kind, either express or implied. Micro Focus Fortify does not assume any risk in relation to your use of this Web site. Use of this Web site indicates that you have read and agree to Micro Focus Fortify’s Terms of Use found at <a href="https://www.microfocus.com/about/legal/#privacy" target="_blank">https://www.microfocus.com/about/legal/#privacy</a> and Micro Focus Fortify’s Online Privacy Statement found at <a href="https://www.microfocus.com/about/legal/#privacy" target="_blank">https://www.microfocus.com/about/legal/#privacy</a>. <br/><br/> Copyright © 2012-2018, Micro Focus Development Company. All rights reserved. </div> </div> </div> </div> </div> <script type="text/javascript"> $(function () { var path = "/"; var attachClickHandler = function(selector, handler) { $(".extra").on('click', selector, handler); } var footerLinks = { "download_webinspect_link": { absolute: true, page: "https://software.microfocus.com/en-us/products/webinspect-dynamic-analysis-dast/overview" }, "contact_hp_link" : { absolute: true, page: "https://support.fortify.com" }, "privacy_statement_link": { absolute: true, page: "https://www.microfocus.com/about/legal/#privacy" }, "terms_of_use_link": { absolute: true, page: "https://www.microfocus.com/about/legal/" } }; $.each(footerLinks, function(linkId, link) { attachClickHandler('span[id="' + linkId + '"]', function(event) { event.preventDefault(); if (link.absolute) { window.location.href = link.page; } else { window.location.href = path + link.page + ".html"; } }); }); }); </script> </body> </html> |
| URL | http://zero.webappsecurity.com/resources/css/bootstrap.min.css |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | Apache-Coyote/1.1 |
| Request Header - size: 286 bytes. |
GET http://zero.webappsecurity.com/resources/css/bootstrap.min.css HTTP/1.1
Host: zero.webappsecurity.com User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0 Pragma: no-cache Cache-Control: no-cache Referer: http://zero.webappsecurity.com |
| Request Body - size: 0 bytes. |
|
| Response Header - size: 349 bytes. |
HTTP/1.1 200 OK
Date: Mon, 14 Mar 2022 07:13:41 GMT Server: Apache-Coyote/1.1 Access-Control-Allow-Origin: * Accept-Ranges: bytes ETag: W/"115795-1358437290000" Last-Modified: Thu, 17 Jan 2013 15:41:30 GMT Cache-Control: max-age=2678400 Expires: Thu, 14 Apr 2022 07:13:42 GMT Content-Type: text/css;charset=UTF-8 Content-Length: 115795 |
| Response Body - size: 115,795 bytes. |
/*!
* Bootstrap v2.2.2 * * Copyright 2012 Twitter, Inc * Licensed under the Apache License v2.0 * http://www.apache.org/licenses/LICENSE-2.0 * * Designed and built with all the love in the world @twitter by @mdo and @fat. */ .clearfix{*zoom:1;}.clearfix:before,.clearfix:after{display:table;content:"";line-height:0;} .clearfix:after{clear:both;} .hide-text{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0;} .input-block-level{display:block;width:100%;min-height:30px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;} article,aside,details,figcaption,figure,footer,header,hgroup,nav,section{display:block;} audio,canvas,video{display:inline-block;*display:inline;*zoom:1;} audio:not([controls]){display:none;} html{font-size:100%;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%;} a:focus{outline:thin dotted #333;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px;} a:hover,a:active{outline:0;} sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline;} sup{top:-0.5em;} sub{bottom:-0.25em;} img{max-width:100%;width:auto\9;height:auto;vertical-align:middle;border:0;-ms-interpolation-mode:bicubic;} #map_canvas img,.google-maps img{max-width:none;} button,input,select,textarea{margin:0;font-size:100%;vertical-align:middle;} button,input{*overflow:visible;line-height:normal;} button::-moz-focus-inner,input::-moz-focus-inner{padding:0;border:0;} button,html input[type="button"],input[type="reset"],input[type="submit"]{-webkit-appearance:button;cursor:pointer;} label,select,button,input[type="button"],input[type="reset"],input[type="submit"],input[type="radio"],input[type="checkbox"]{cursor:pointer;} input[type="search"]{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;-webkit-appearance:textfield;} input[type="search"]::-webkit-search-decoration,input[type="search"]::-webkit-search-cancel-button{-webkit-appearance:none;} textarea{overflow:auto;vertical-align:top;} @media print{*{text-shadow:none !important;color:#000 !important;background:transparent !important;box-shadow:none !important;} a,a:visited{text-decoration:underline;} a[href]:after{content:" (" attr(href) ")";} abbr[title]:after{content:" (" attr(title) ")";} .ir a:after,a[href^="javascript:"]:after,a[href^="#"]:after{content:"";} pre,blockquote{border:1px solid #999;page-break-inside:avoid;} thead{display:table-header-group;} tr,img{page-break-inside:avoid;} img{max-width:100% !important;} @page {margin:0.5cm;}p,h2,h3{orphans:3;widows:3;} h2,h3{page-break-after:avoid;}}body{margin:0;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;line-height:20px;color:#333333;background-color:#ffffff;} a{color:#0088cc;text-decoration:none;} a:hover{color:#005580;text-decoration:underline;} .img-rounded{-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;} .img-polaroid{padding:4px;background-color:#fff;border:1px solid #ccc;border:1px solid rgba(0, 0, 0, 0.2);-webkit-box-shadow:0 1px 3px rgba(0, 0, 0, 0.1);-moz-box-shadow:0 1px 3px rgba(0, 0, 0, 0.1);box-shadow:0 1px 3px rgba(0, 0, 0, 0.1);} .img-circle{-webkit-border-radius:500px;-moz-border-radius:500px;border-radius:500px;} .row{margin-left:-20px;*zoom:1;}.row:before,.row:after{display:table;content:"";line-height:0;} .row:after{clear:both;} [class*="span"]{float:left;min-height:1px;margin-left:20px;} .container,.navbar-static-top .container,.navbar-fixed-top .container,.navbar-fixed-bottom .container{width:940px;} .span12{width:940px;} .span11{width:860px;} .span10{width:780px;} .span9{width:700px;} .span8{width:620px;} .span7{width:540px;} .span6{width:460px;} .span5{width:380px;} .span4{width:300px;} .span3{width:220px;} .span2{width:140px;} .span1{width:60px;} .offset12{margin-left:980px;} .offset11{margin-left:900px;} .offset10{margin-left:820px;} .offset9{margin-left:740px;} .offset8{margin-left:660px;} .offset7{margin-left:580px;} .offset6{margin-left:500px;} .offset5{margin-left:420px;} .offset4{margin-left:340px;} .offset3{margin-left:260px;} .offset2{margin-left:180px;} .offset1{margin-left:100px;} .row-fluid{width:100%;*zoom:1;}.row-fluid:before,.row-fluid:after{display:table;content:"";line-height:0;} .row-fluid:after{clear:both;} .row-fluid [class*="span"]{display:block;width:100%;min-height:30px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;float:left;margin-left:2.127659574468085%;*margin-left:2.074468085106383%;} .row-fluid [class*="span"]:first-child{margin-left:0;} .row-fluid .controls-row [class*="span"]+[class*="span"]{margin-left:2.127659574468085%;} .row-fluid .span12{width:100%;*width:99.94680851063829%;} .row-fluid .span11{width:91.48936170212765%;*width:91.43617021276594%;} .row-fluid .span10{width:82.97872340425532%;*width:82.92553191489361%;} .row-fluid .span9{width:74.46808510638297%;*width:74.41489361702126%;} .row-fluid .span8{width:65.95744680851064%;*width:65.90425531914893%;} .row-fluid .span7{width:57.44680851063829%;*width:57.39361702127659%;} .row-fluid .span6{width:48.93617021276595%;*width:48.88297872340425%;} .row-fluid .span5{width:40.42553191489362%;*width:40.37234042553192%;} .row-fluid .span4{width:31.914893617021278%;*width:31.861702127659576%;} .row-fluid .span3{width:23.404255319148934%;*width:23.351063829787233%;} .row-fluid .span2{width:14.893617021276595%;*width:14.840425531914894%;} .row-fluid .span1{width:6.382978723404255%;*width:6.329787234042553%;} .row-fluid .offset12{margin-left:104.25531914893617%;*margin-left:104.14893617021275%;} .row-fluid .offset12:first-child{margin-left:102.12765957446808%;*margin-left:102.02127659574467%;} .row-fluid .offset11{margin-left:95.74468085106382%;*margin-left:95.6382978723404%;} .row-fluid .offset11:first-child{margin-left:93.61702127659574%;*margin-left:93.51063829787232%;} .row-fluid .offset10{margin-left:87.23404255319149%;*margin-left:87.12765957446807%;} .row-fluid .offset10:first-child{margin-left:85.1063829787234%;*margin-left:84.99999999999999%;} .row-fluid .offset9{margin-left:78.72340425531914%;*margin-left:78.61702127659572%;} .row-fluid .offset9:first-child{margin-left:76.59574468085106%;*margin-left:76.48936170212764%;} .row-fluid .offset8{margin-left:70.2127659574468%;*margin-left:70.10638297872339%;} .row-fluid .offset8:first-child{margin-left:68.08510638297872%;*margin-left:67.9787234042553%;} .row-fluid .offset7{margin-left:61.70212765957446%;*margin-left:61.59574468085106%;} .row-fluid .offset7:first-child{margin-left:59.574468085106375%;*margin-left:59.46808510638297%;} .row-fluid .offset6{margin-left:53.191489361702125%;*margin-left:53.085106382978715%;} .row-fluid .offset6:first-child{margin-left:51.063829787234035%;*margin-left:50.95744680851063%;} .row-fluid .offset5{margin-left:44.68085106382979%;*margin-left:44.57446808510638%;} .row-fluid .offset5:first-child{margin-left:42.5531914893617%;*margin-left:42.4468085106383%;} .row-fluid .offset4{margin-left:36.170212765957444%;*margin-left:36.06382978723405%;} .row-fluid .offset4:first-child{margin-left:34.04255319148936%;*margin-left:33.93617021276596%;} .row-fluid .offset3{margin-left:27.659574468085104%;*margin-left:27.5531914893617%;} .row-fluid .offset3:first-child{margin-left:25.53191489361702%;*margin-left:25.425531914893618%;} .row-fluid .offset2{margin-left:19.148936170212764%;*margin-left:19.04255319148936%;} .row-fluid .offset2:first-child{margin-left:17.02127659574468%;*margin-left:16.914893617021278%;} .row-fluid .offset1{margin-left:10.638297872340425%;*margin-left:10.53191489361702%;} .row-fluid .offset1:first-child{margin-left:8.51063829787234%;*margin-left:8.404255319148938%;} [class*="span"].hide,.row-fluid [class*="span"].hide{display:none;} [class*="span"].pull-right,.row-fluid [class*="span"].pull-right{float:right;} .container{margin-right:auto;margin-left:auto;*zoom:1;}.container:before,.container:after{display:table;content:"";line-height:0;} .container:after{clear:both;} .container-fluid{padding-right:20px;padding-left:20px;*zoom:1;}.container-fluid:before,.container-fluid:after{display:table;content:"";line-height:0;} .container-fluid:after{clear:both;} p{margin:0 0 10px;} .lead{margin-bottom:20px;font-size:21px;font-weight:200;line-height:30px;} small{font-size:85%;} strong{font-weight:bold;} em{font-style:italic;} cite{font-style:normal;} .muted{color:#999999;} a.muted:hover{color:#808080;} .text-warning{color:#c09853;} a.text-warning:hover{color:#a47e3c;} .text-error{color:#b94a48;} a.text-error:hover{color:#953b39;} .text-info{color:#3a87ad;} a.text-info:hover{color:#2d6987;} .text-success{color:#468847;} a.text-success:hover{color:#356635;} h1,h2,h3,h4,h5,h6{margin:10px 0;font-family:inherit;font-weight:bold;line-height:20px;color:inherit;text-rendering:optimizelegibility;}h1 small,h2 small,h3 small,h4 small,h5 small,h6 small{font-weight:normal;line-height:1;color:#999999;} h1,h2,h3{line-height:40px;} h1{font-size:38.5px;} h2{font-size:31.5px;} h3{font-size:24.5px;} h4{font-size:17.5px;} h5{font-size:14px;} h6{font-size:11.9px;} h1 small{font-size:24.5px;} h2 small{font-size:17.5px;} h3 small{font-size:14px;} h4 small{font-size:14px;} .page-header{padding-bottom:9px;margin:20px 0 30px;border-bottom:1px solid #eeeeee;} ul,ol{padding:0;margin:0 0 10px 25px;} ul ul,ul ol,ol ol,ol ul{margin-bottom:0;} li{line-height:20px;} ul.unstyled,ol.unstyled{margin-left:0;list-style:none;} ul.inline,ol.inline{margin-left:0;list-style:none;}ul.inline >li,ol.inline >li{display:inline-block;padding-left:5px;padding-right:5px;} dl{margin-bottom:20px;} dt,dd{line-height:20px;} dt{font-weight:bold;} dd{margin-left:10px;} .dl-horizontal{*zoom:1;}.dl-horizontal:before,.dl-horizontal:after{display:table;content:"";line-height:0;} .dl-horizontal:after{clear:both;} .dl-horizontal dt{float:left;width:160px;clear:left;text-align:right;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;} .dl-horizontal dd{margin-left:180px;} hr{margin:20px 0;border:0;border-top:1px solid #eeeeee;border-bottom:1px solid #ffffff;} abbr[title],abbr[data-original-title]{cursor:help;border-bottom:1px dotted #999999;} abbr.initialism{font-size:90%;text-transform:uppercase;} blockquote{padding:0 0 0 15px;margin:0 0 20px;border-left:5px solid #eeeeee;}blockquote p{margin-bottom:0;font-size:16px;font-weight:300;line-height:25px;} blockquote small{display:block;line-height:20px;color:#999999;}blockquote small:before{content:'\2014 \00A0';} blockquote.pull-right{float:right;padding-right:15px;padding-left:0;border-right:5px solid #eeeeee;border-left:0;}blockquote.pull-right p,blockquote.pull-right small{text-align:right;} blockquote.pull-right small:before{content:'';} blockquote.pull-right small:after{content:'\00A0 \2014';} q:before,q:after,blockquote:before,blockquote:after{content:"";} address{display:block;margin-bottom:20px;font-style:normal;line-height:20px;} code,pre{padding:0 3px 2px;font-family:Monaco,Menlo,Consolas,"Courier New",monospace;font-size:12px;color:#333333;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;} code{padding:2px 4px;color:#d14;background-color:#f7f7f9;border:1px solid #e1e1e8;white-space:nowrap;} pre{display:block;padding:9.5px;margin:0 0 10px;font-size:13px;line-height:20px;word-break:break-all;word-wrap:break-word;white-space:pre;white-space:pre-wrap;background-color:#f5f5f5;border:1px solid #ccc;border:1px solid rgba(0, 0, 0, 0.15);-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;}pre.prettyprint{margin-bottom:20px;} pre code{padding:0;color:inherit;white-space:pre;white-space:pre-wrap;background-color:transparent;border:0;} .pre-scrollable{max-height:340px;overflow-y:scroll;} .label,.badge{display:inline-block;padding:2px 4px;font-size:11.844px;font-weight:bold;line-height:14px;color:#ffffff;vertical-align:baseline;white-space:nowrap;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);background-color:#999999;} .label{-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;} .badge{padding-left:9px;padding-right:9px;-webkit-border-radius:9px;-moz-border-radius:9px;border-radius:9px;} .label:empty,.badge:empty{display:none;} a.label:hover,a.badge:hover{color:#ffffff;text-decoration:none;cursor:pointer;} .label-important,.badge-important{background-color:#b94a48;} .label-important[href],.badge-important[href]{background-color:#953b39;} .label-warning,.badge-warning{background-color:#f89406;} .label-warning[href],.badge-warning[href]{background-color:#c67605;} .label-success,.badge-success{background-color:#468847;} .label-success[href],.badge-success[href]{background-color:#356635;} .label-info,.badge-info{background-color:#3a87ad;} .label-info[href],.badge-info[href]{background-color:#2d6987;} .label-inverse,.badge-inverse{background-color:#333333;} .label-inverse[href],.badge-inverse[href]{background-color:#1a1a1a;} .btn .label,.btn .badge{position:relative;top:-1px;} .btn-mini .label,.btn-mini .badge{top:0;} table{max-width:100%;background-color:transparent;border-collapse:collapse;border-spacing:0;} .table{width:100%;margin-bottom:20px;}.table th,.table td{padding:8px;line-height:20px;text-align:left;vertical-align:top;border-top:1px solid #dddddd;} .table th{font-weight:bold;} .table thead th{vertical-align:bottom;} .table caption+thead tr:first-child th,.table caption+thead tr:first-child td,.table colgroup+thead tr:first-child th,.table colgroup+thead tr:first-child td,.table thead:first-child tr:first-child th,.table thead:first-child tr:first-child td{border-top:0;} .table tbody+tbody{border-top:2px solid #dddddd;} .table .table{background-color:#ffffff;} .table-condensed th,.table-condensed td{padding:4px 5px;} .table-bordered{border:1px solid #dddddd;border-collapse:separate;*border-collapse:collapse;border-left:0;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;}.table-bordered th,.table-bordered td{border-left:1px solid #dddddd;} .table-bordered caption+thead tr:first-child th,.table-bordered caption+tbody tr:first-child th,.table-bordered caption+tbody tr:first-child td,.table-bordered colgroup+thead tr:first-child th,.table-bordered colgroup+tbody tr:first-child th,.table-bordered colgroup+tbody tr:first-child td,.table-bordered thead:first-child tr:first-child th,.table-bordered tbody:first-child tr:first-child th,.table-bordered tbody:first-child tr:first-child td{border-top:0;} .table-bordered thead:first-child tr:first-child>th:first-child,.table-bordered tbody:first-child tr:first-child>td:first-child{-webkit-border-top-left-radius:4px;-moz-border-radius-topleft:4px;border-top-left-radius:4px;} .table-bordered thead:first-child tr:first-child>th:last-child,.table-bordered tbody:first-child tr:first-child>td:last-child{-webkit-border-top-right-radius:4px;-moz-border-radius-topright:4px;border-top-right-radius:4px;} .table-bordered thead:last-child tr:last-child>th:first-child,.table-bordered tbody:last-child tr:last-child>td:first-child,.table-bordered tfoot:last-child tr:last-child>td:first-child{-webkit-border-bottom-left-radius:4px;-moz-border-radius-bottomleft:4px;border-bottom-left-radius:4px;} .table-bordered thead:last-child tr:last-child>th:last-child,.table-bordered tbody:last-child tr:last-child>td:last-child,.table-bordered tfoot:last-child tr:last-child>td:last-child{-webkit-border-bottom-right-radius:4px;-moz-border-radius-bottomright:4px;border-bottom-right-radius:4px;} .table-bordered tfoot+tbody:last-child tr:last-child td:first-child{-webkit-border-bottom-left-radius:0;-moz-border-radius-bottomleft:0;border-bottom-left-radius:0;} .table-bordered tfoot+tbody:last-child tr:last-child td:last-child{-webkit-border-bottom-right-radius:0;-moz-border-radius-bottomright:0;border-bottom-right-radius:0;} .table-bordered caption+thead tr:first-child th:first-child,.table-bordered caption+tbody tr:first-child td:first-child,.table-bordered colgroup+thead tr:first-child th:first-child,.table-bordered colgroup+tbody tr:first-child td:first-child{-webkit-border-top-left-radius:4px;-moz-border-radius-topleft:4px;border-top-left-radius:4px;} .table-bordered caption+thead tr:first-child th:last-child,.table-bordered caption+tbody tr:first-child td:last-child,.table-bordered colgroup+thead tr:first-child th:last-child,.table-bordered colgroup+tbody tr:first-child td:last-child{-webkit-border-top-right-radius:4px;-moz-border-radius-topright:4px;border-top-right-radius:4px;} .table-striped tbody>tr:nth-child(odd)>td,.table-striped tbody>tr:nth-child(odd)>th{background-color:#f9f9f9;} .table-hover tbody tr:hover td,.table-hover tbody tr:hover th{background-color:#f5f5f5;} table td[class*="span"],table th[class*="span"],.row-fluid table td[class*="span"],.row-fluid table th[class*="span"]{display:table-cell;float:none;margin-left:0;} .table td.span1,.table th.span1{float:none;width:44px;margin-left:0;} .table td.span2,.table th.span2{float:none;width:124px;margin-left:0;} .table td.span3,.table th.span3{float:none;width:204px;margin-left:0;} .table td.span4,.table th.span4{float:none;width:284px;margin-left:0;} .table td.span5,.table th.span5{float:none;width:364px;margin-left:0;} .table td.span6,.table th.span6{float:none;width:444px;margin-left:0;} .table td.span7,.table th.span7{float:none;width:524px;margin-left:0;} .table td.span8,.table th.span8{float:none;width:604px;margin-left:0;} .table td.span9,.table th.span9{float:none;width:684px;margin-left:0;} .table td.span10,.table th.span10{float:none;width:764px;margin-left:0;} .table td.span11,.table th.span11{float:none;width:844px;margin-left:0;} .table td.span12,.table th.span12{float:none;width:924px;margin-left:0;} .table tbody tr.success td{background-color:#dff0d8;} .table tbody tr.error td{background-color:#f2dede;} .table tbody tr.warning td{background-color:#fcf8e3;} .table tbody tr.info td{background-color:#d9edf7;} .table-hover tbody tr.success:hover td{background-color:#d0e9c6;} .table-hover tbody tr.error:hover td{background-color:#ebcccc;} .table-hover tbody tr.warning:hover td{background-color:#faf2cc;} .table-hover tbody tr.info:hover td{background-color:#c4e3f3;} form{margin:0 0 20px;} fieldset{padding:0;margin:0;border:0;} legend{display:block;width:100%;padding:0;margin-bottom:20px;font-size:21px;line-height:40px;color:#333333;border:0;border-bottom:1px solid #e5e5e5;}legend small{font-size:15px;color:#999999;} label,input,button,select,textarea{font-size:14px;font-weight:normal;line-height:20px;} input,button,select,textarea{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;} label{display:block;margin-bottom:5px;} select,textarea,input[type="text"],input[type="password"],input[type="datetime"],input[type="datetime-local"],input[type="date"],input[type="month"],input[type="time"],input[type="week"],input[type="number"],input[type="email"],input[type="url"],input[type="search"],input[type="tel"],input[type="color"],.uneditable-input{display:inline-block;height:20px;padding:4px 6px;margin-bottom:10px;font-size:14px;line-height:20px;color:#555555;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;vertical-align:middle;} input,textarea,.uneditable-input{width:206px;} textarea{height:auto;} textarea,input[type="text"],input[type="password"],input[type="datetime"],input[type="datetime-local"],input[type="date"],input[type="month"],input[type="time"],input[type="week"],input[type="number"],input[type="email"],input[type="url"],input[type="search"],input[type="tel"],input[type="color"],.uneditable-input{background-color:#ffffff;border:1px solid #cccccc;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);-moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);-webkit-transition:border linear .2s, box-shadow linear .2s;-moz-transition:border linear .2s, box-shadow linear .2s;-o-transition:border linear .2s, box-shadow linear .2s;transition:border linear .2s, box-shadow linear .2s;}textarea:focus,input[type="text"]:focus,input[type="password"]:focus,input[type="datetime"]:focus,input[type="datetime-local"]:focus,input[type="date"]:focus,input[type="month"]:focus,input[type="time"]:focus,input[type="week"]:focus,input[type="number"]:focus,input[type="email"]:focus,input[type="url"]:focus,input[type="search"]:focus,input[type="tel"]:focus,input[type="color"]:focus,.uneditable-input:focus{border-color:rgba(82, 168, 236, 0.8);outline:0;outline:thin dotted \9;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(82,168,236,.6);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(82,168,236,.6);box-shadow:inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(82,168,236,.6);} input[type="radio"],input[type="checkbox"]{margin:4px 0 0;*margin-top:0;margin-top:1px \9;line-height:normal;} input[type="file"],input[type="image"],input[type="submit"],input[type="reset"],input[type="button"],input[type="radio"],input[type="checkbox"]{width:auto;} select,input[type="file"]{height:30px;*margin-top:4px;line-height:30px;} select{width:220px;border:1px solid #cccccc;background-color:#ffffff;} select[multiple],select[size]{height:auto;} select:focus,input[type="file"]:focus,input[type="radio"]:focus,input[type="checkbox"]:focus{outline:thin dotted #333;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px;} .uneditable-input,.uneditable-textarea{color:#999999;background-color:#fcfcfc;border-color:#cccccc;-webkit-box-shadow:inset 0 1px 2px rgba(0, 0, 0, 0.025);-moz-box-shadow:inset 0 1px 2px rgba(0, 0, 0, 0.025);box-shadow:inset 0 1px 2px rgba(0, 0, 0, 0.025);cursor:not-allowed;} .uneditable-input{overflow:hidden;white-space:nowrap;} .uneditable-textarea{width:auto;height:auto;} input:-moz-placeholder,textarea:-moz-placeholder{color:#999999;} input:-ms-input-placeholder,textarea:-ms-input-placeholder{color:#999999;} input::-webkit-input-placeholder,textarea::-webkit-input-placeholder{color:#999999;} .radio,.checkbox{min-height:20px;padding-left:20px;} .radio input[type="radio"],.checkbox input[type="checkbox"]{float:left;margin-left:-20px;} .controls>.radio:first-child,.controls>.checkbox:first-child{padding-top:5px;} .radio.inline,.checkbox.inline{display:inline-block;padding-top:5px;margin-bottom:0;vertical-align:middle;} .radio.inline+.radio.inline,.checkbox.inline+.checkbox.inline{margin-left:10px;} .input-mini{width:60px;} .input-small{width:90px;} .input-medium{width:150px;} .input-large{width:210px;} .input-xlarge{width:270px;} .input-xxlarge{width:530px;} input[class*="span"],select[class*="span"],textarea[class*="span"],.uneditable-input[class*="span"],.row-fluid input[class*="span"],.row-fluid select[class*="span"],.row-fluid textarea[class*="span"],.row-fluid .uneditable-input[class*="span"]{float:none;margin-left:0;} .input-append input[class*="span"],.input-append .uneditable-input[class*="span"],.input-prepend input[class*="span"],.input-prepend .uneditable-input[class*="span"],.row-fluid input[class*="span"],.row-fluid select[class*="span"],.row-fluid textarea[class*="span"],.row-fluid .uneditable-input[class*="span"],.row-fluid .input-prepend [class*="span"],.row-fluid .input-append [class*="span"]{display:inline-block;} input,textarea,.uneditable-input{margin-left:0;} .controls-row [class*="span"]+[class*="span"]{margin-left:20px;} input.span12, textarea.span12, .uneditable-input.span12{width:926px;} input.span11, textarea.span11, .uneditable-input.span11{width:846px;} input.span10, textarea.span10, .uneditable-input.span10{width:766px;} input.span9, textarea.span9, .uneditable-input.span9{width:686px;} input.span8, textarea.span8, .uneditable-input.span8{width:606px;} input.span7, textarea.span7, .uneditable-input.span7{width:526px;} input.span6, textarea.span6, .uneditable-input.span6{width:446px;} input.span5, textarea.span5, .uneditable-input.span5{width:366px;} input.span4, textarea.span4, .uneditable-input.span4{width:286px;} input.span3, textarea.span3, .uneditable-input.span3{width:206px;} input.span2, textarea.span2, .uneditable-input.span2{width:126px;} input.span1, textarea.span1, .uneditable-input.span1{width:46px;} .controls-row{*zoom:1;}.controls-row:before,.controls-row:after{display:table;content:"";line-height:0;} .controls-row:after{clear:both;} .controls-row [class*="span"],.row-fluid .controls-row [class*="span"]{float:left;} .controls-row .checkbox[class*="span"],.controls-row .radio[class*="span"]{padding-top:5px;} input[disabled],select[disabled],textarea[disabled],input[readonly],select[readonly],textarea[readonly]{cursor:not-allowed;background-color:#eeeeee;} input[type="radio"][disabled],input[type="checkbox"][disabled],input[type="radio"][readonly],input[type="checkbox"][readonly]{background-color:transparent;} .control-group.warning .control-label,.control-group.warning .help-block,.control-group.warning .help-inline{color:#c09853;} .control-group.warning .checkbox,.control-group.warning .radio,.control-group.warning input,.control-group.warning select,.control-group.warning textarea{color:#c09853;} .control-group.warning input,.control-group.warning select,.control-group.warning textarea{border-color:#c09853;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);-moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);}.control-group.warning input:focus,.control-group.warning select:focus,.control-group.warning textarea:focus{border-color:#a47e3c;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 6px #dbc59e;-moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 6px #dbc59e;box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 6px #dbc59e;} .control-group.warning .input-prepend .add-on,.control-group.warning .input-append .add-on{color:#c09853;background-color:#fcf8e3;border-color:#c09853;} .control-group.error .control-label,.control-group.error .help-block,.control-group.error .help-inline{color:#b94a48;} .control-group.error .checkbox,.control-group.error .radio,.control-group.error input,.control-group.error select,.control-group.error textarea{color:#b94a48;} .control-group.error input,.control-group.error select,.control-group.error textarea{border-color:#b94a48;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);-moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);}.control-group.error input:focus,.control-group.error select:focus,.control-group.error textarea:focus{border-color:#953b39;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 6px #d59392;-moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 6px #d59392;box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 6px #d59392;} .control-group.error .input-prepend .add-on,.control-group.error .input-append .add-on{color:#b94a48;background-color:#f2dede;border-color:#b94a48;} .control-group.success .control-label,.control-group.success .help-block,.control-group.success .help-inline{color:#468847;} .control-group.success .checkbox,.control-group.success .radio,.control-group.success input,.control-group.success select,.control-group.success textarea{color:#468847;} .control-group.success input,.control-group.success select,.control-group.success textarea{border-color:#468847;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);-moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);}.control-group.success input:focus,.control-group.success select:focus,.control-group.success textarea:focus{border-color:#356635;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 6px #7aba7b;-moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 6px #7aba7b;box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 6px #7aba7b;} .control-group.success .input-prepend .add-on,.control-group.success .input-append .add-on{color:#468847;background-color:#dff0d8;border-color:#468847;} .control-group.info .control-label,.control-group.info .help-block,.control-group.info .help-inline{color:#3a87ad;} .control-group.info .checkbox,.control-group.info .radio,.control-group.info input,.control-group.info select,.control-group.info textarea{color:#3a87ad;} .control-group.info input,.control-group.info select,.control-group.info textarea{border-color:#3a87ad;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);-moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);}.control-group.info input:focus,.control-group.info select:focus,.control-group.info textarea:focus{border-color:#2d6987;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 6px #7ab5d3;-moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 6px #7ab5d3;box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 6px #7ab5d3;} .control-group.info .input-prepend .add-on,.control-group.info .input-append .add-on{color:#3a87ad;background-color:#d9edf7;border-color:#3a87ad;} input:focus:invalid,textarea:focus:invalid,select:focus:invalid{color:#b94a48;border-color:#ee5f5b;}input:focus:invalid:focus,textarea:focus:invalid:focus,select:focus:invalid:focus{border-color:#e9322d;-webkit-box-shadow:0 0 6px #f8b9b7;-moz-box-shadow:0 0 6px #f8b9b7;box-shadow:0 0 6px #f8b9b7;} .form-actions{padding:19px 20px 20px;margin-top:20px;margin-bottom:20px;background-color:#f5f5f5;border-top:1px solid #e5e5e5;*zoom:1;}.form-actions:before,.form-actions:after{display:table;content:"";line-height:0;} .form-actions:after{clear:both;} .help-block,.help-inline{color:#595959;} .help-block{display:block;margin-bottom:10px;} .help-inline{display:inline-block;*display:inline;*zoom:1;vertical-align:middle;padding-left:5px;} .input-append,.input-prepend{margin-bottom:5px;font-size:0;white-space:nowrap;}.input-append input,.input-prepend input,.input-append select,.input-prepend select,.input-append .uneditable-input,.input-prepend .uneditable-input,.input-append .dropdown-menu,.input-prepend .dropdown-menu{font-size:14px;} .input-append input,.input-prepend input,.input-append select,.input-prepend select,.input-append .uneditable-input,.input-prepend .uneditable-input{position:relative;margin-bottom:0;*margin-left:0;vertical-align:top;-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0;}.input-append input:focus,.input-prepend input:focus,.input-append select:focus,.input-prepend select:focus,.input-append .uneditable-input:focus,.input-prepend .uneditable-input:focus{z-index:2;} .input-append .add-on,.input-prepend .add-on{display:inline-block;width:auto;height:20px;min-width:16px;padding:4px 5px;font-size:14px;font-weight:normal;line-height:20px;text-align:center;text-shadow:0 1px 0 #ffffff;background-color:#eeeeee;border:1px solid #ccc;} .input-append .add-on,.input-prepend .add-on,.input-append .btn,.input-prepend .btn,.input-append .btn-group>.dropdown-toggle,.input-prepend .btn-group>.dropdown-toggle{vertical-align:top;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;} .input-append .active,.input-prepend .active{background-color:#a9dba9;border-color:#46a546;} .input-prepend .add-on,.input-prepend .btn{margin-right:-1px;} .input-prepend .add-on:first-child,.input-prepend .btn:first-child{-webkit-border-radius:4px 0 0 4px;-moz-border-radius:4px 0 0 4px;border-radius:4px 0 0 4px;} .input-append input,.input-append select,.input-append .uneditable-input{-webkit-border-radius:4px 0 0 4px;-moz-border-radius:4px 0 0 4px;border-radius:4px 0 0 4px;}.input-append input+.btn-group .btn:last-child,.input-append select+.btn-group .btn:last-child,.input-append .uneditable-input+.btn-group .btn:last-child{-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0;} .input-append .add-on,.input-append .btn,.input-append .btn-group{margin-left:-1px;} .input-append .add-on:last-child,.input-append .btn:last-child,.input-append .btn-group:last-child>.dropdown-toggle{-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0;} .input-prepend.input-append input,.input-prepend.input-append select,.input-prepend.input-append .uneditable-input{-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;}.input-prepend.input-append input+.btn-group .btn,.input-prepend.input-append select+.btn-group .btn,.input-prepend.input-append .uneditable-input+.btn-group .btn{-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0;} .input-prepend.input-append .add-on:first-child,.input-prepend.input-append .btn:first-child{margin-right:-1px;-webkit-border-radius:4px 0 0 4px;-moz-border-radius:4px 0 0 4px;border-radius:4px 0 0 4px;} .input-prepend.input-append .add-on:last-child,.input-prepend.input-append .btn:last-child{margin-left:-1px;-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0;} .input-prepend.input-append .btn-group:first-child{margin-left:0;} input.search-query{padding-right:14px;padding-right:4px \9;padding-left:14px;padding-left:4px \9;margin-bottom:0;-webkit-border-radius:15px;-moz-border-radius:15px;border-radius:15px;} .form-search .input-append .search-query,.form-search .input-prepend .search-query{-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;} .form-search .input-append .search-query{-webkit-border-radius:14px 0 0 14px;-moz-border-radius:14px 0 0 14px;border-radius:14px 0 0 14px;} .form-search .input-append .btn{-webkit-border-radius:0 14px 14px 0;-moz-border-radius:0 14px 14px 0;border-radius:0 14px 14px 0;} .form-search .input-prepend .search-query{-webkit-border-radius:0 14px 14px 0;-moz-border-radius:0 14px 14px 0;border-radius:0 14px 14px 0;} .form-search .input-prepend .btn{-webkit-border-radius:14px 0 0 14px;-moz-border-radius:14px 0 0 14px;border-radius:14px 0 0 14px;} .form-search input,.form-inline input,.form-horizontal input,.form-search textarea,.form-inline textarea,.form-horizontal textarea,.form-search select,.form-inline select,.form-horizontal select,.form-search .help-inline,.form-inline .help-inline,.form-horizontal .help-inline,.form-search .uneditable-input,.form-inline .uneditable-input,.form-horizontal .uneditable-input,.form-search .input-prepend,.form-inline .input-prepend,.form-horizontal .input-prepend,.form-search .input-append,.form-inline .input-append,.form-horizontal .input-append{display:inline-block;*display:inline;*zoom:1;margin-bottom:0;vertical-align:middle;} .form-search .hide,.form-inline .hide,.form-horizontal .hide{display:none;} .form-search label,.form-inline label,.form-search .btn-group,.form-inline .btn-group{display:inline-block;} .form-search .input-append,.form-inline .input-append,.form-search .input-prepend,.form-inline .input-prepend{margin-bottom:0;} .form-search .radio,.form-search .checkbox,.form-inline .radio,.form-inline .checkbox{padding-left:0;margin-bottom:0;vertical-align:middle;} .form-search .radio input[type="radio"],.form-search .checkbox input[type="checkbox"],.form-inline .radio input[type="radio"],.form-inline .checkbox input[type="checkbox"]{float:left;margin-right:3px;margin-left:0;} .control-group{margin-bottom:10px;} legend+.control-group{margin-top:20px;-webkit-margin-top-collapse:separate;} .form-horizontal .control-group{margin-bottom:20px;*zoom:1;}.form-horizontal .control-group:before,.form-horizontal .control-group:after{display:table;content:"";line-height:0;} .form-horizontal .control-group:after{clear:both;} .form-horizontal .control-label{float:left;width:160px;padding-top:5px;text-align:right;} .form-horizontal .controls{*display:inline-block;*padding-left:20px;margin-left:180px;*margin-left:0;}.form-horizontal .controls:first-child{*padding-left:180px;} .form-horizontal .help-block{margin-bottom:0;} .form-horizontal input+.help-block,.form-horizontal select+.help-block,.form-horizontal textarea+.help-block,.form-horizontal .uneditable-input+.help-block,.form-horizontal .input-prepend+.help-block,.form-horizontal .input-append+.help-block{margin-top:10px;} .form-horizontal .form-actions{padding-left:180px;} .btn{display:inline-block;*display:inline;*zoom:1;padding:4px 12px;margin-bottom:0;font-size:14px;line-height:20px;text-align:center;vertical-align:middle;cursor:pointer;color:#333333;text-shadow:0 1px 1px rgba(255, 255, 255, 0.75);background-color:#f5f5f5;background-image:-moz-linear-gradient(top, #ffffff, #e6e6e6);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#e6e6e6));background-image:-webkit-linear-gradient(top, #ffffff, #e6e6e6);background-image:-o-linear-gradient(top, #ffffff, #e6e6e6);background-image:linear-gradient(to bottom, #ffffff, #e6e6e6);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe6e6e6', GradientType=0);border-color:#e6e6e6 #e6e6e6 #bfbfbf;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);*background-color:#e6e6e6;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);border:1px solid #bbbbbb;*border:0;border-bottom-color:#a2a2a2;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;*margin-left:.3em;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);-moz-box-shadow:inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);box-shadow:inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);}.btn:hover,.btn:active,.btn.active,.btn.disabled,.btn[disabled]{color:#333333;background-color:#e6e6e6;*background-color:#d9d9d9;} .btn:active,.btn.active{background-color:#cccccc \9;} .btn:first-child{*margin-left:0;} .btn:hover{color:#333333;text-decoration:none;background-position:0 -15px;-webkit-transition:background-position 0.1s linear;-moz-transition:background-position 0.1s linear;-o-transition:background-position 0.1s linear;transition:background-position 0.1s linear;} .btn:focus{outline:thin dotted #333;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px;} .btn.active,.btn:active{background-image:none;outline:0;-webkit-box-shadow:inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);-moz-box-shadow:inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);box-shadow:inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);} .btn.disabled,.btn[disabled]{cursor:default;background-image:none;opacity:0.65;filter:alpha(opacity=65);-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;} .btn-large{padding:11px 19px;font-size:17.5px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;} .btn-large [class^="icon-"],.btn-large [class*=" icon-"]{margin-top:4px;} .btn-small{padding:2px 10px;font-size:11.9px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;} .btn-small [class^="icon-"],.btn-small [class*=" icon-"]{margin-top:0;} .btn-mini [class^="icon-"],.btn-mini [class*=" icon-"]{margin-top:-1px;} .btn-mini{padding:0 6px;font-size:10.5px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;} .btn-block{display:block;width:100%;padding-left:0;padding-right:0;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;} .btn-block+.btn-block{margin-top:5px;} input[type="submit"].btn-block,input[type="reset"].btn-block,input[type="button"].btn-block{width:100%;} .btn-primary.active,.btn-warning.active,.btn-danger.active,.btn-success.active,.btn-info.active,.btn-inverse.active{color:rgba(255, 255, 255, 0.75);} .btn{border-color:#c5c5c5;border-color:rgba(0, 0, 0, 0.15) rgba(0, 0, 0, 0.15) rgba(0, 0, 0, 0.25);} .btn-primary{color:#ffffff;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);background-color:#006dcc;background-image:-moz-linear-gradient(top, #0088cc, #0044cc);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0044cc));background-image:-webkit-linear-gradient(top, #0088cc, #0044cc);background-image:-o-linear-gradient(top, #0088cc, #0044cc);background-image:linear-gradient(to bottom, #0088cc, #0044cc);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff0044cc', GradientType=0);border-color:#0044cc #0044cc #002a80;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);*background-color:#0044cc;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);}.btn-primary:hover,.btn-primary:active,.btn-primary.active,.btn-primary.disabled,.btn-primary[disabled]{color:#ffffff;background-color:#0044cc;*background-color:#003bb3;} .btn-primary:active,.btn-primary.active{background-color:#003399 \9;} .btn-warning{color:#ffffff;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);background-color:#faa732;background-image:-moz-linear-gradient(top, #fbb450, #f89406);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#fbb450), to(#f89406));background-image:-webkit-linear-gradient(top, #fbb450, #f89406);background-image:-o-linear-gradient(top, #fbb450, #f89406);background-image:linear-gradient(to bottom, #fbb450, #f89406);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffbb450', endColorstr='#fff89406', GradientType=0);border-color:#f89406 #f89406 #ad6704;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);*background-color:#f89406;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);}.btn-warning:hover,.btn-warning:active,.btn-warning.active,.btn-warning.disabled,.btn-warning[disabled]{color:#ffffff;background-color:#f89406;*background-color:#df8505;} .btn-warning:active,.btn-warning.active{background-color:#c67605 \9;} .btn-danger{color:#ffffff;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);background-color:#da4f49;background-image:-moz-linear-gradient(top, #ee5f5b, #bd362f);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#ee5f5b), to(#bd362f));background-image:-webkit-linear-gradient(top, #ee5f5b, #bd362f);background-image:-o-linear-gradient(top, #ee5f5b, #bd362f);background-image:linear-gradient(to bottom, #ee5f5b, #bd362f);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffee5f5b', endColorstr='#ffbd362f', GradientType=0);border-color:#bd362f #bd362f #802420;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);*background-color:#bd362f;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);}.btn-danger:hover,.btn-danger:active,.btn-danger.active,.btn-danger.disabled,.btn-danger[disabled]{color:#ffffff;background-color:#bd362f;*background-color:#a9302a;} .btn-danger:active,.btn-danger.active{background-color:#942a25 \9;} .btn-success{color:#ffffff;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);background-color:#5bb75b;background-image:-moz-linear-gradient(top, #62c462, #51a351);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#62c462), to(#51a351));background-image:-webkit-linear-gradient(top, #62c462, #51a351);background-image:-o-linear-gradient(top, #62c462, #51a351);background-image:linear-gradient(to bottom, #62c462, #51a351);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff62c462', endColorstr='#ff51a351', GradientType=0);border-color:#51a351 #51a351 #387038;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);*background-color:#51a351;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);}.btn-success:hover,.btn-success:active,.btn-success.active,.btn-success.disabled,.btn-success[disabled]{color:#ffffff;background-color:#51a351;*background-color:#499249;} .btn-success:active,.btn-success.active{background-color:#408140 \9;} .btn-info{color:#ffffff;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);background-color:#49afcd;background-image:-moz-linear-gradient(top, #5bc0de, #2f96b4);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#5bc0de), to(#2f96b4));background-image:-webkit-linear-gradient(top, #5bc0de, #2f96b4);background-image:-o-linear-gradient(top, #5bc0de, #2f96b4);background-image:linear-gradient(to bottom, #5bc0de, #2f96b4);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff2f96b4', GradientType=0);border-color:#2f96b4 #2f96b4 #1f6377;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);*background-color:#2f96b4;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);}.btn-info:hover,.btn-info:active,.btn-info.active,.btn-info.disabled,.btn-info[disabled]{color:#ffffff;background-color:#2f96b4;*background-color:#2a85a0;} .btn-info:active,.btn-info.active{background-color:#24748c \9;} .btn-inverse{color:#ffffff;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);background-color:#363636;background-image:-moz-linear-gradient(top, #444444, #222222);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#444444), to(#222222));background-image:-webkit-linear-gradient(top, #444444, #222222);background-image:-o-linear-gradient(top, #444444, #222222);background-image:linear-gradient(to bottom, #444444, #222222);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff444444', endColorstr='#ff222222', GradientType=0);border-color:#222222 #222222 #000000;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);*background-color:#222222;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);}.btn-inverse:hover,.btn-inverse:active,.btn-inverse.active,.btn-inverse.disabled,.btn-inverse[disabled]{color:#ffffff;background-color:#222222;*background-color:#151515;} .btn-inverse:active,.btn-inverse.active{background-color:#080808 \9;} button.btn,input[type="submit"].btn{*padding-top:3px;*padding-bottom:3px;}button.btn::-moz-focus-inner,input[type="submit"].btn::-moz-focus-inner{padding:0;border:0;} button.btn.btn-large,input[type="submit"].btn.btn-large{*padding-top:7px;*padding-bottom:7px;} button.btn.btn-small,input[type="submit"].btn.btn-small{*padding-top:3px;*padding-bottom:3px;} button.btn.btn-mini,input[type="submit"].btn.btn-mini{*padding-top:1px;*padding-bottom:1px;} .btn-link,.btn-link:active,.btn-link[disabled]{background-color:transparent;background-image:none;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;} .btn-link{border-color:transparent;cursor:pointer;color:#0088cc;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;} .btn-link:hover{color:#005580;text-decoration:underline;background-color:transparent;} .btn-link[disabled]:hover{color:#333333;text-decoration:none;} .btn-group{position:relative;display:inline-block;*display:inline;*zoom:1;font-size:0;vertical-align:middle;white-space:nowrap;*margin-left:.3em;}.btn-group:first-child{*margin-left:0;} .btn-group+.btn-group{margin-left:5px;} .btn-toolbar{font-size:0;margin-top:10px;margin-bottom:10px;}.btn-toolbar>.btn+.btn,.btn-toolbar>.btn-group+.btn,.btn-toolbar>.btn+.btn-group{margin-left:5px;} .btn-group>.btn{position:relative;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;} .btn-group>.btn+.btn{margin-left:-1px;} .btn-group>.btn,.btn-group>.dropdown-menu,.btn-group>.popover{font-size:14px;} .btn-group>.btn-mini{font-size:10.5px;} .btn-group>.btn-small{font-size:11.9px;} .btn-group>.btn-large{font-size:17.5px;} .btn-group>.btn:first-child{margin-left:0;-webkit-border-top-left-radius:4px;-moz-border-radius-topleft:4px;border-top-left-radius:4px;-webkit-border-bottom-left-radius:4px;-moz-border-radius-bottomleft:4px;border-bottom-left-radius:4px;} .btn-group>.btn:last-child,.btn-group>.dropdown-toggle{-webkit-border-top-right-radius:4px;-moz-border-radius-topright:4px;border-top-right-radius:4px;-webkit-border-bottom-right-radius:4px;-moz-border-radius-bottomright:4px;border-bottom-right-radius:4px;} .btn-group>.btn.large:first-child{margin-left:0;-webkit-border-top-left-radius:6px;-moz-border-radius-topleft:6px;border-top-left-radius:6px;-webkit-border-bottom-left-radius:6px;-moz-border-radius-bottomleft:6px;border-bottom-left-radius:6px;} .btn-group>.btn.large:last-child,.btn-group>.large.dropdown-toggle{-webkit-border-top-right-radius:6px;-moz-border-radius-topright:6px;border-top-right-radius:6px;-webkit-border-bottom-right-radius:6px;-moz-border-radius-bottomright:6px;border-bottom-right-radius:6px;} .btn-group>.btn:hover,.btn-group>.btn:focus,.btn-group>.btn:active,.btn-group>.btn.active{z-index:2;} .btn-group .dropdown-toggle:active,.btn-group.open .dropdown-toggle{outline:0;} .btn-group>.btn+.dropdown-toggle{padding-left:8px;padding-right:8px;-webkit-box-shadow:inset 1px 0 0 rgba(255,255,255,.125), inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);-moz-box-shadow:inset 1px 0 0 rgba(255,255,255,.125), inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);box-shadow:inset 1px 0 0 rgba(255,255,255,.125), inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);*padding-top:5px;*padding-bottom:5px;} .btn-group>.btn-mini+.dropdown-toggle{padding-left:5px;padding-right:5px;*padding-top:2px;*padding-bottom:2px;} .btn-group>.btn-small+.dropdown-toggle{*padding-top:5px;*padding-bottom:4px;} .btn-group>.btn-large+.dropdown-toggle{padding-left:12px;padding-right:12px;*padding-top:7px;*padding-bottom:7px;} .btn-group.open .dropdown-toggle{background-image:none;-webkit-box-shadow:inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);-moz-box-shadow:inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);box-shadow:inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);} .btn-group.open .btn.dropdown-toggle{background-color:#e6e6e6;} .btn-group.open .btn-primary.dropdown-toggle{background-color:#0044cc;} .btn-group.open .btn-warning.dropdown-toggle{background-color:#f89406;} .btn-group.open .btn-danger.dropdown-toggle{background-color:#bd362f;} .btn-group.open .btn-success.dropdown-toggle{background-color:#51a351;} .btn-group.open .btn-info.dropdown-toggle{background-color:#2f96b4;} .btn-group.open .btn-inverse.dropdown-toggle{background-color:#222222;} .btn .caret{margin-top:8px;margin-left:0;} .btn-mini .caret,.btn-small .caret,.btn-large .caret{margin-top:6px;} .btn-large .caret{border-left-width:5px;border-right-width:5px;border-top-width:5px;} .dropup .btn-large .caret{border-bottom-width:5px;} .btn-primary .caret,.btn-warning .caret,.btn-danger .caret,.btn-info .caret,.btn-success .caret,.btn-inverse .caret{border-top-color:#ffffff;border-bottom-color:#ffffff;} .btn-group-vertical{display:inline-block;*display:inline;*zoom:1;} .btn-group-vertical>.btn{display:block;float:none;max-width:100%;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;} .btn-group-vertical>.btn+.btn{margin-left:0;margin-top:-1px;} .btn-group-vertical>.btn:first-child{-webkit-border-radius:4px 4px 0 0;-moz-border-radius:4px 4px 0 0;border-radius:4px 4px 0 0;} .btn-group-vertical>.btn:last-child{-webkit-border-radius:0 0 4px 4px;-moz-border-radius:0 0 4px 4px;border-radius:0 0 4px 4px;} .btn-group-vertical>.btn-large:first-child{-webkit-border-radius:6px 6px 0 0;-moz-border-radius:6px 6px 0 0;border-radius:6px 6px 0 0;} .btn-group-vertical>.btn-large:last-child{-webkit-border-radius:0 0 6px 6px;-moz-border-radius:0 0 6px 6px;border-radius:0 0 6px 6px;} .nav{margin-left:0;margin-bottom:20px;list-style:none;} .nav>li>a{display:block;} .nav>li>a:hover{text-decoration:none;background-color:#eeeeee;} .nav>li>a>img{max-width:none;} .nav>.pull-right{float:right;} .nav-header{display:block;padding:3px 15px;font-size:11px;font-weight:bold;line-height:20px;color:#999999;text-shadow:0 1px 0 rgba(255, 255, 255, 0.5);text-transform:uppercase;} .nav li+.nav-header{margin-top:9px;} .nav-list{padding-left:15px;padding-right:15px;margin-bottom:0;} .nav-list>li>a,.nav-list .nav-header{margin-left:-15px;margin-right:-15px;text-shadow:0 1px 0 rgba(255, 255, 255, 0.5);} .nav-list>li>a{padding:3px 15px;} .nav-list>.active>a,.nav-list>.active>a:hover{color:#ffffff;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.2);background-color:#0088cc;} .nav-list [class^="icon-"],.nav-list [class*=" icon-"]{margin-right:2px;} .nav-list .divider{*width:100%;height:1px;margin:9px 1px;*margin:-5px 0 5px;overflow:hidden;background-color:#e5e5e5;border-bottom:1px solid #ffffff;} .nav-tabs,.nav-pills{*zoom:1;}.nav-tabs:before,.nav-pills:before,.nav-tabs:after,.nav-pills:after{display:table;content:"";line-height:0;} .nav-tabs:after,.nav-pills:after{clear:both;} .nav-tabs>li,.nav-pills>li{float:left;} .nav-tabs>li>a,.nav-pills>li>a{padding-right:12px;padding-left:12px;margin-right:2px;line-height:14px;} .nav-tabs{border-bottom:1px solid #ddd;} .nav-tabs>li{margin-bottom:-1px;} .nav-tabs>li>a{padding-top:8px;padding-bottom:8px;line-height:20px;border:1px solid transparent;-webkit-border-radius:4px 4px 0 0;-moz-border-radius:4px 4px 0 0;border-radius:4px 4px 0 0;}.nav-tabs>li>a:hover{border-color:#eeeeee #eeeeee #dddddd;} .nav-tabs>.active>a,.nav-tabs>.active>a:hover{color:#555555;background-color:#ffffff;border:1px solid #ddd;border-bottom-color:transparent;cursor:default;} .nav-pills>li>a{padding-top:8px;padding-bottom:8px;margin-top:2px;margin-bottom:2px;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;} .nav-pills>.active>a,.nav-pills>.active>a:hover{color:#ffffff;background-color:#0088cc;} .nav-stacked>li{float:none;} .nav-stacked>li>a{margin-right:0;} .nav-tabs.nav-stacked{border-bottom:0;} .nav-tabs.nav-stacked>li>a{border:1px solid #ddd;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;} .nav-tabs.nav-stacked>li:first-child>a{-webkit-border-top-right-radius:4px;-moz-border-radius-topright:4px;border-top-right-radius:4px;-webkit-border-top-left-radius:4px;-moz-border-radius-topleft:4px;border-top-left-radius:4px;} .nav-tabs.nav-stacked>li:last-child>a{-webkit-border-bottom-right-radius:4px;-moz-border-radius-bottomright:4px;border-bottom-right-radius:4px;-webkit-border-bottom-left-radius:4px;-moz-border-radius-bottomleft:4px;border-bottom-left-radius:4px;} .nav-tabs.nav-stacked>li>a:hover{border-color:#ddd;z-index:2;} .nav-pills.nav-stacked>li>a{margin-bottom:3px;} .nav-pills.nav-stacked>li:last-child>a{margin-bottom:1px;} .nav-tabs .dropdown-menu{-webkit-border-radius:0 0 6px 6px;-moz-border-radius:0 0 6px 6px;border-radius:0 0 6px 6px;} .nav-pills .dropdown-menu{-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;} .nav .dropdown-toggle .caret{border-top-color:#0088cc;border-bottom-color:#0088cc;margin-top:6px;} .nav .dropdown-toggle:hover .caret{border-top-color:#005580;border-bottom-color:#005580;} .nav-tabs .dropdown-toggle .caret{margin-top:8px;} .nav .active .dropdown-toggle .caret{border-top-color:#fff;border-bottom-color:#fff;} .nav-tabs .active .dropdown-toggle .caret{border-top-color:#555555;border-bottom-color:#555555;} .nav>.dropdown.active>a:hover{cursor:pointer;} .nav-tabs .open .dropdown-toggle,.nav-pills .open .dropdown-toggle,.nav>li.dropdown.open.active>a:hover{color:#ffffff;background-color:#999999;border-color:#999999;} .nav li.dropdown.open .caret,.nav li.dropdown.open.active .caret,.nav li.dropdown.open a:hover .caret{border-top-color:#ffffff;border-bottom-color:#ffffff;opacity:1;filter:alpha(opacity=100);} .tabs-stacked .open>a:hover{border-color:#999999;} .tabbable{*zoom:1;}.tabbable:before,.tabbable:after{display:table;content:"";line-height:0;} .tabbable:after{clear:both;} .tab-content{overflow:auto;} .tabs-below>.nav-tabs,.tabs-right>.nav-tabs,.tabs-left>.nav-tabs{border-bottom:0;} .tab-content>.tab-pane,.pill-content>.pill-pane{display:none;} .tab-content>.active,.pill-content>.active{display:block;} .tabs-below>.nav-tabs{border-top:1px solid #ddd;} .tabs-below>.nav-tabs>li{margin-top:-1px;margin-bottom:0;} .tabs-below>.nav-tabs>li>a{-webkit-border-radius:0 0 4px 4px;-moz-border-radius:0 0 4px 4px;border-radius:0 0 4px 4px;}.tabs-below>.nav-tabs>li>a:hover{border-bottom-color:transparent;border-top-color:#ddd;} .tabs-below>.nav-tabs>.active>a,.tabs-below>.nav-tabs>.active>a:hover{border-color:transparent #ddd #ddd #ddd;} .tabs-left>.nav-tabs>li,.tabs-right>.nav-tabs>li{float:none;} .tabs-left>.nav-tabs>li>a,.tabs-right>.nav-tabs>li>a{min-width:74px;margin-right:0;margin-bottom:3px;} .tabs-left>.nav-tabs{float:left;margin-right:19px;border-right:1px solid #ddd;} .tabs-left>.nav-tabs>li>a{margin-right:-1px;-webkit-border-radius:4px 0 0 4px;-moz-border-radius:4px 0 0 4px;border-radius:4px 0 0 4px;} .tabs-left>.nav-tabs>li>a:hover{border-color:#eeeeee #dddddd #eeeeee #eeeeee;} .tabs-left>.nav-tabs .active>a,.tabs-left>.nav-tabs .active>a:hover{border-color:#ddd transparent #ddd #ddd;*border-right-color:#ffffff;} .tabs-right>.nav-tabs{float:right;margin-left:19px;border-left:1px solid #ddd;} .tabs-right>.nav-tabs>li>a{margin-left:-1px;-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0;} .tabs-right>.nav-tabs>li>a:hover{border-color:#eeeeee #eeeeee #eeeeee #dddddd;} .tabs-right>.nav-tabs .active>a,.tabs-right>.nav-tabs .active>a:hover{border-color:#ddd #ddd #ddd transparent;*border-left-color:#ffffff;} .nav>.disabled>a{color:#999999;} .nav>.disabled>a:hover{text-decoration:none;background-color:transparent;cursor:default;} .navbar{overflow:visible;margin-bottom:20px;*position:relative;*z-index:2;} .navbar-inner{min-height:50px;padding-left:20px;padding-right:20px;background-color:#fafafa;background-image:-moz-linear-gradient(top, #ffffff, #f2f2f2);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#f2f2f2));background-image:-webkit-linear-gradient(top, #ffffff, #f2f2f2);background-image:-o-linear-gradient(top, #ffffff, #f2f2f2);background-image:linear-gradient(to bottom, #ffffff, #f2f2f2);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#fff2f2f2', GradientType=0);border:1px solid #d4d4d4;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:0 1px 4px rgba(0, 0, 0, 0.065);-moz-box-shadow:0 1px 4px rgba(0, 0, 0, 0.065);box-shadow:0 1px 4px rgba(0, 0, 0, 0.065);*zoom:1;}.navbar-inner:before,.navbar-inner:after{display:table;content:"";line-height:0;} .navbar-inner:after{clear:both;} .navbar .container{width:auto;} .nav-collapse.collapse{height:auto;overflow:visible;} .navbar .brand{float:left;display:block;padding:15px 20px 15px;margin-left:-20px;font-size:20px;font-weight:200;color:#777777;text-shadow:0 1px 0 #ffffff;}.navbar .brand:hover{text-decoration:none;} .navbar-text{margin-bottom:0;line-height:50px;color:#777777;} .navbar-link{color:#777777;}.navbar-link:hover{color:#333333;} .navbar .divider-vertical{height:50px;margin:0 9px;border-left:1px solid #f2f2f2;border-right:1px solid #ffffff;} .navbar .btn,.navbar .btn-group{margin-top:10px;} .navbar .btn-group .btn,.navbar .input-prepend .btn,.navbar .input-append .btn{margin-top:0;} .navbar-form{margin-bottom:0;*zoom:1;}.navbar-form:before,.navbar-form:after{display:table;content:"";line-height:0;} .navbar-form:after{clear:both;} .navbar-form input,.navbar-form select,.navbar-form .radio,.navbar-form .checkbox{margin-top:10px;} .navbar-form input,.navbar-form select,.navbar-form .btn{display:inline-block;margin-bottom:0;} .navbar-form input[type="image"],.navbar-form input[type="checkbox"],.navbar-form input[type="radio"]{margin-top:3px;} .navbar-form .input-append,.navbar-form .input-prepend{margin-top:5px;white-space:nowrap;}.navbar-form .input-append input,.navbar-form .input-prepend input{margin-top:0;} .navbar-search{position:relative;float:left;margin-top:10px;margin-bottom:0;}.navbar-search .search-query{margin-bottom:0;padding:4px 14px;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:13px;font-weight:normal;line-height:1;-webkit-border-radius:15px;-moz-border-radius:15px;border-radius:15px;} .navbar-static-top{position:static;margin-bottom:0;}.navbar-static-top .navbar-inner{-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;} .navbar-fixed-top,.navbar-fixed-bottom{position:fixed;right:0;left:0;z-index:1030;margin-bottom:0;} .navbar-fixed-top .navbar-inner,.navbar-static-top .navbar-inner{border-width:0 0 1px;} .navbar-fixed-bottom .navbar-inner{border-width:1px 0 0;} .navbar-fixed-top .navbar-inner,.navbar-fixed-bottom .navbar-inner{padding-left:0;padding-right:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;} .navbar-static-top .container,.navbar-fixed-top .container,.navbar-fixed-bottom .container{width:940px;} .navbar-fixed-top{top:0;} .navbar-fixed-top .navbar-inner,.navbar-static-top .navbar-inner{-webkit-box-shadow:0 1px 10px rgba(0,0,0,.1);-moz-box-shadow:0 1px 10px rgba(0,0,0,.1);box-shadow:0 1px 10px rgba(0,0,0,.1);} .navbar-fixed-bottom{bottom:0;}.navbar-fixed-bottom .navbar-inner{-webkit-box-shadow:0 -1px 10px rgba(0,0,0,.1);-moz-box-shadow:0 -1px 10px rgba(0,0,0,.1);box-shadow:0 -1px 10px rgba(0,0,0,.1);} .navbar .nav{position:relative;left:0;display:block;float:left;margin:0 10px 0 0;} .navbar .nav.pull-right{float:right;margin-right:0;} .navbar .nav>li{float:left;} .navbar .nav>li>a{float:none;padding:15px 15px 15px;color:#777777;text-decoration:none;text-shadow:0 1px 0 #ffffff;} .navbar .nav .dropdown-toggle .caret{margin-top:8px;} .navbar .nav>li>a:focus,.navbar .nav>li>a:hover{background-color:transparent;color:#333333;text-decoration:none;} .navbar .nav>.active>a,.navbar .nav>.active>a:hover,.navbar .nav>.active>a:focus{color:#555555;text-decoration:none;background-color:#e5e5e5;-webkit-box-shadow:inset 0 3px 8px rgba(0, 0, 0, 0.125);-moz-box-shadow:inset 0 3px 8px rgba(0, 0, 0, 0.125);box-shadow:inset 0 3px 8px rgba(0, 0, 0, 0.125);} .navbar .btn-navbar{display:none;float:right;padding:7px 10px;margin-left:5px;margin-right:5px;color:#ffffff;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);background-color:#ededed;background-image:-moz-linear-gradient(top, #f2f2f2, #e5e5e5);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#f2f2f2), to(#e5e5e5));background-image:-webkit-linear-gradient(top, #f2f2f2, #e5e5e5);background-image:-o-linear-gradient(top, #f2f2f2, #e5e5e5);background-image:linear-gradient(to bottom, #f2f2f2, #e5e5e5);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2f2f2', endColorstr='#ffe5e5e5', GradientType=0);border-color:#e5e5e5 #e5e5e5 #bfbfbf;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);*background-color:#e5e5e5;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.075);-moz-box-shadow:inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.075);box-shadow:inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.075);}.navbar .btn-navbar:hover,.navbar .btn-navbar:active,.navbar .btn-navbar.active,.navbar .btn-navbar.disabled,.navbar .btn-navbar[disabled]{color:#ffffff;background-color:#e5e5e5;*background-color:#d9d9d9;} .navbar .btn-navbar:active,.navbar .btn-navbar.active{background-color:#cccccc \9;} .navbar .btn-navbar .icon-bar{display:block;width:18px;height:2px;background-color:#f5f5f5;-webkit-border-radius:1px;-moz-border-radius:1px;border-radius:1px;-webkit-box-shadow:0 1px 0 rgba(0, 0, 0, 0.25);-moz-box-shadow:0 1px 0 rgba(0, 0, 0, 0.25);box-shadow:0 1px 0 rgba(0, 0, 0, 0.25);} .btn-navbar .icon-bar+.icon-bar{margin-top:3px;} .navbar .nav>li>.dropdown-menu:before{content:'';display:inline-block;border-left:7px solid transparent;border-right:7px solid transparent;border-bottom:7px solid #ccc;border-bottom-color:rgba(0, 0, 0, 0.2);position:absolute;top:-7px;left:9px;} .navbar .nav>li>.dropdown-menu:after{content:'';display:inline-block;border-left:6px solid transparent;border-right:6px solid transparent;border-bottom:6px solid #ffffff;position:absolute;top:-6px;left:10px;} .navbar-fixed-bottom .nav>li>.dropdown-menu:before{border-top:7px solid #ccc;border-top-color:rgba(0, 0, 0, 0.2);border-bottom:0;bottom:-7px;top:auto;} .navbar-fixed-bottom .nav>li>.dropdown-menu:after{border-top:6px solid #ffffff;border-bottom:0;bottom:-6px;top:auto;} .navbar .nav li.dropdown>a:hover .caret{border-top-color:#555555;border-bottom-color:#555555;} .navbar .nav li.dropdown.open>.dropdown-toggle,.navbar .nav li.dropdown.active>.dropdown-toggle,.navbar .nav li.dropdown.open.active>.dropdown-toggle{background-color:#e5e5e5;color:#555555;} .navbar .nav li.dropdown>.dropdown-toggle .caret{border-top-color:#777777;border-bottom-color:#777777;} .navbar .nav li.dropdown.open>.dropdown-toggle .caret,.navbar .nav li.dropdown.active>.dropdown-toggle .caret,.navbar .nav li.dropdown.open.active>.dropdown-toggle .caret{border-top-color:#555555;border-bottom-color:#555555;} .navbar .pull-right>li>.dropdown-menu,.navbar .nav>li>.dropdown-menu.pull-right{left:auto;right:0;}.navbar .pull-right>li>.dropdown-menu:before,.navbar .nav>li>.dropdown-menu.pull-right:before{left:auto;right:12px;} .navbar .pull-right>li>.dropdown-menu:after,.navbar .nav>li>.dropdown-menu.pull-right:after{left:auto;right:13px;} .navbar .pull-right>li>.dropdown-menu .dropdown-menu,.navbar .nav>li>.dropdown-menu.pull-right .dropdown-menu{left:auto;right:100%;margin-left:0;margin-right:-1px;-webkit-border-radius:6px 0 6px 6px;-moz-border-radius:6px 0 6px 6px;border-radius:6px 0 6px 6px;} .navbar-inverse .navbar-inner{background-color:#1b1b1b;background-image:-moz-linear-gradient(top, #222222, #111111);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#222222), to(#111111));background-image:-webkit-linear-gradient(top, #222222, #111111);background-image:-o-linear-gradient(top, #222222, #111111);background-image:linear-gradient(to bottom, #222222, #111111);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff222222', endColorstr='#ff111111', GradientType=0);border-color:#252525;} .navbar-inverse .brand,.navbar-inverse .nav>li>a{color:#999999;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);}.navbar-inverse .brand:hover,.navbar-inverse .nav>li>a:hover{color:#ffffff;} .navbar-inverse .brand{color:#999999;} .navbar-inverse .navbar-text{color:#999999;} .navbar-inverse .nav>li>a:focus,.navbar-inverse .nav>li>a:hover{background-color:transparent;color:#ffffff;} .navbar-inverse .nav .active>a,.navbar-inverse .nav .active>a:hover,.navbar-inverse .nav .active>a:focus{color:#ffffff;background-color:#111111;} .navbar-inverse .navbar-link{color:#999999;}.navbar-inverse .navbar-link:hover{color:#ffffff;} .navbar-inverse .divider-vertical{border-left-color:#111111;border-right-color:#222222;} .navbar-inverse .nav li.dropdown.open>.dropdown-toggle,.navbar-inverse .nav li.dropdown.active>.dropdown-toggle,.navbar-inverse .nav li.dropdown.open.active>.dropdown-toggle{background-color:#111111;color:#ffffff;} .navbar-inverse .nav li.dropdown>a:hover .caret{border-top-color:#ffffff;border-bottom-color:#ffffff;} .navbar-inverse .nav li.dropdown>.dropdown-toggle .caret{border-top-color:#999999;border-bottom-color:#999999;} .navbar-inverse .nav li.dropdown.open>.dropdown-toggle .caret,.navbar-inverse .nav li.dropdown.active>.dropdown-toggle .caret,.navbar-inverse .nav li.dropdown.open.active>.dropdown-toggle .caret{border-top-color:#ffffff;border-bottom-color:#ffffff;} .navbar-inverse .navbar-search .search-query{color:#ffffff;background-color:#515151;border-color:#111111;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.1), 0 1px 0 rgba(255,255,255,.15);-moz-box-shadow:inset 0 1px 2px rgba(0,0,0,.1), 0 1px 0 rgba(255,255,255,.15);box-shadow:inset 0 1px 2px rgba(0,0,0,.1), 0 1px 0 rgba(255,255,255,.15);-webkit-transition:none;-moz-transition:none;-o-transition:none;transition:none;}.navbar-inverse .navbar-search .search-query:-moz-placeholder{color:#cccccc;} .navbar-inverse .navbar-search .search-query:-ms-input-placeholder{color:#cccccc;} .navbar-inverse .navbar-search .search-query::-webkit-input-placeholder{color:#cccccc;} .navbar-inverse .navbar-search .search-query:focus,.navbar-inverse .navbar-search .search-query.focused{padding:5px 15px;color:#333333;text-shadow:0 1px 0 #ffffff;background-color:#ffffff;border:0;-webkit-box-shadow:0 0 3px rgba(0, 0, 0, 0.15);-moz-box-shadow:0 0 3px rgba(0, 0, 0, 0.15);box-shadow:0 0 3px rgba(0, 0, 0, 0.15);outline:0;} .navbar-inverse .btn-navbar{color:#ffffff;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);background-color:#0e0e0e;background-image:-moz-linear-gradient(top, #151515, #040404);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#151515), to(#040404));background-image:-webkit-linear-gradient(top, #151515, #040404);background-image:-o-linear-gradient(top, #151515, #040404);background-image:linear-gradient(to bottom, #151515, #040404);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff151515', endColorstr='#ff040404', GradientType=0);border-color:#040404 #040404 #000000;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);*background-color:#040404;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);}.navbar-inverse .btn-navbar:hover,.navbar-inverse .btn-navbar:active,.navbar-inverse .btn-navbar.active,.navbar-inverse .btn-navbar.disabled,.navbar-inverse .btn-navbar[disabled]{color:#ffffff;background-color:#040404;*background-color:#000000;} .navbar-inverse .btn-navbar:active,.navbar-inverse .btn-navbar.active{background-color:#000000 \9;} .breadcrumb{padding:8px 15px;margin:0 0 20px;list-style:none;background-color:#f5f5f5;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;}.breadcrumb>li{display:inline-block;*display:inline;*zoom:1;text-shadow:0 1px 0 #ffffff;}.breadcrumb>li>.divider{padding:0 5px;color:#ccc;} .breadcrumb>.active{color:#999999;} .pagination{margin:20px 0;} .pagination ul{display:inline-block;*display:inline;*zoom:1;margin-left:0;margin-bottom:0;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:0 1px 2px rgba(0, 0, 0, 0.05);-moz-box-shadow:0 1px 2px rgba(0, 0, 0, 0.05);box-shadow:0 1px 2px rgba(0, 0, 0, 0.05);} .pagination ul>li{display:inline;} .pagination ul>li>a,.pagination ul>li>span{float:left;padding:4px 12px;line-height:20px;text-decoration:none;background-color:#ffffff;border:1px solid #dddddd;border-left-width:0;} .pagination ul>li>a:hover,.pagination ul>.active>a,.pagination ul>.active>span{background-color:#f5f5f5;} .pagination ul>.active>a,.pagination ul>.active>span{color:#999999;cursor:default;} .pagination ul>.disabled>span,.pagination ul>.disabled>a,.pagination ul>.disabled>a:hover{color:#999999;background-color:transparent;cursor:default;} .pagination ul>li:first-child>a,.pagination ul>li:first-child>span{border-left-width:1px;-webkit-border-top-left-radius:4px;-moz-border-radius-topleft:4px;border-top-left-radius:4px;-webkit-border-bottom-left-radius:4px;-moz-border-radius-bottomleft:4px;border-bottom-left-radius:4px;} .pagination ul>li:last-child>a,.pagination ul>li:last-child>span{-webkit-border-top-right-radius:4px;-moz-border-radius-topright:4px;border-top-right-radius:4px;-webkit-border-bottom-right-radius:4px;-moz-border-radius-bottomright:4px;border-bottom-right-radius:4px;} .pagination-centered{text-align:center;} .pagination-right{text-align:right;} .pagination-large ul>li>a,.pagination-large ul>li>span{padding:11px 19px;font-size:17.5px;} .pagination-large ul>li:first-child>a,.pagination-large ul>li:first-child>span{-webkit-border-top-left-radius:6px;-moz-border-radius-topleft:6px;border-top-left-radius:6px;-webkit-border-bottom-left-radius:6px;-moz-border-radius-bottomleft:6px;border-bottom-left-radius:6px;} .pagination-large ul>li:last-child>a,.pagination-large ul>li:last-child>span{-webkit-border-top-right-radius:6px;-moz-border-radius-topright:6px;border-top-right-radius:6px;-webkit-border-bottom-right-radius:6px;-moz-border-radius-bottomright:6px;border-bottom-right-radius:6px;} .pagination-mini ul>li:first-child>a,.pagination-small ul>li:first-child>a,.pagination-mini ul>li:first-child>span,.pagination-small ul>li:first-child>span{-webkit-border-top-left-radius:3px;-moz-border-radius-topleft:3px;border-top-left-radius:3px;-webkit-border-bottom-left-radius:3px;-moz-border-radius-bottomleft:3px;border-bottom-left-radius:3px;} .pagination-mini ul>li:last-child>a,.pagination-small ul>li:last-child>a,.pagination-mini ul>li:last-child>span,.pagination-small ul>li:last-child>span{-webkit-border-top-right-radius:3px;-moz-border-radius-topright:3px;border-top-right-radius:3px;-webkit-border-bottom-right-radius:3px;-moz-border-radius-bottomright:3px;border-bottom-right-radius:3px;} .pagination-small ul>li>a,.pagination-small ul>li>span{padding:2px 10px;font-size:11.9px;} .pagination-mini ul>li>a,.pagination-mini ul>li>span{padding:0 6px;font-size:10.5px;} .pager{margin:20px 0;list-style:none;text-align:center;*zoom:1;}.pager:before,.pager:after{display:table;content:"";line-height:0;} .pager:after{clear:both;} .pager li{display:inline;} .pager li>a,.pager li>span{display:inline-block;padding:5px 14px;background-color:#fff;border:1px solid #ddd;-webkit-border-radius:15px;-moz-border-radius:15px;border-radius:15px;} .pager li>a:hover{text-decoration:none;background-color:#f5f5f5;} .pager .next>a,.pager .next>span{float:right;} .pager .previous>a,.pager .previous>span{float:left;} .pager .disabled>a,.pager .disabled>a:hover,.pager .disabled>span{color:#999999;background-color:#fff;cursor:default;} .thumbnails{margin-left:-20px;list-style:none;*zoom:1;}.thumbnails:before,.thumbnails:after{display:table;content:"";line-height:0;} .thumbnails:after{clear:both;} .row-fluid .thumbnails{margin-left:0;} .thumbnails>li{float:left;margin-bottom:20px;margin-left:20px;} .thumbnail{display:block;padding:4px;line-height:20px;border:1px solid #ddd;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:0 1px 3px rgba(0, 0, 0, 0.055);-moz-box-shadow:0 1px 3px rgba(0, 0, 0, 0.055);box-shadow:0 1px 3px rgba(0, 0, 0, 0.055);-webkit-transition:all 0.2s ease-in-out;-moz-transition:all 0.2s ease-in-out;-o-transition:all 0.2s ease-in-out;transition:all 0.2s ease-in-out;} a.thumbnail:hover{border-color:#0088cc;-webkit-box-shadow:0 1px 4px rgba(0, 105, 214, 0.25);-moz-box-shadow:0 1px 4px rgba(0, 105, 214, 0.25);box-shadow:0 1px 4px rgba(0, 105, 214, 0.25);} .thumbnail>img{display:block;max-width:100%;margin-left:auto;margin-right:auto;} .thumbnail .caption{padding:9px;color:#555555;} .alert{padding:8px 35px 8px 14px;margin-bottom:20px;text-shadow:0 1px 0 rgba(255, 255, 255, 0.5);background-color:#fcf8e3;border:1px solid #fbeed5;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;} .alert,.alert h4{color:#c09853;} .alert h4{margin:0;} .alert .close{position:relative;top:-2px;right:-21px;line-height:20px;} .alert-success{background-color:#dff0d8;border-color:#d6e9c6;color:#468847;} .alert-success h4{color:#468847;} .alert-danger,.alert-error{background-color:#f2dede;border-color:#eed3d7;color:#b94a48;} .alert-danger h4,.alert-error h4{color:#b94a48;} .alert-info{background-color:#d9edf7;border-color:#bce8f1;color:#3a87ad;} .alert-info h4{color:#3a87ad;} .alert-block{padding-top:14px;padding-bottom:14px;} .alert-block>p,.alert-block>ul{margin-bottom:0;} .alert-block p+p{margin-top:5px;} @-webkit-keyframes progress-bar-stripes{from{background-position:40px 0;} to{background-position:0 0;}}@-moz-keyframes progress-bar-stripes{from{background-position:40px 0;} to{background-position:0 0;}}@-ms-keyframes progress-bar-stripes{from{background-position:40px 0;} to{background-position:0 0;}}@-o-keyframes progress-bar-stripes{from{background-position:0 0;} to{background-position:40px 0;}}@keyframes progress-bar-stripes{from{background-position:40px 0;} to{background-position:0 0;}}.progress{overflow:hidden;height:20px;margin-bottom:20px;background-color:#f7f7f7;background-image:-moz-linear-gradient(top, #f5f5f5, #f9f9f9);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#f5f5f5), to(#f9f9f9));background-image:-webkit-linear-gradient(top, #f5f5f5, #f9f9f9);background-image:-o-linear-gradient(top, #f5f5f5, #f9f9f9);background-image:linear-gradient(to bottom, #f5f5f5, #f9f9f9);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#fff9f9f9', GradientType=0);-webkit-box-shadow:inset 0 1px 2px rgba(0, 0, 0, 0.1);-moz-box-shadow:inset 0 1px 2px rgba(0, 0, 0, 0.1);box-shadow:inset 0 1px 2px rgba(0, 0, 0, 0.1);-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;} .progress .bar{width:0%;height:100%;color:#ffffff;float:left;font-size:12px;text-align:center;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);background-color:#0e90d2;background-image:-moz-linear-gradient(top, #149bdf, #0480be);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#149bdf), to(#0480be));background-image:-webkit-linear-gradient(top, #149bdf, #0480be);background-image:-o-linear-gradient(top, #149bdf, #0480be);background-image:linear-gradient(to bottom, #149bdf, #0480be);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff149bdf', endColorstr='#ff0480be', GradientType=0);-webkit-box-shadow:inset 0 -1px 0 rgba(0, 0, 0, 0.15);-moz-box-shadow:inset 0 -1px 0 rgba(0, 0, 0, 0.15);box-shadow:inset 0 -1px 0 rgba(0, 0, 0, 0.15);-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;-webkit-transition:width 0.6s ease;-moz-transition:width 0.6s ease;-o-transition:width 0.6s ease;transition:width 0.6s ease;} .progress .bar+.bar{-webkit-box-shadow:inset 1px 0 0 rgba(0,0,0,.15), inset 0 -1px 0 rgba(0,0,0,.15);-moz-box-shadow:inset 1px 0 0 rgba(0,0,0,.15), inset 0 -1px 0 rgba(0,0,0,.15);box-shadow:inset 1px 0 0 rgba(0,0,0,.15), inset 0 -1px 0 rgba(0,0,0,.15);} .progress-striped .bar{background-color:#149bdf;background-image:-webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));background-image:-webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);-webkit-background-size:40px 40px;-moz-background-size:40px 40px;-o-background-size:40px 40px;background-size:40px 40px;} .progress.active .bar{-webkit-animation:progress-bar-stripes 2s linear infinite;-moz-animation:progress-bar-stripes 2s linear infinite;-ms-animation:progress-bar-stripes 2s linear infinite;-o-animation:progress-bar-stripes 2s linear infinite;animation:progress-bar-stripes 2s linear infinite;} .progress-danger .bar,.progress .bar-danger{background-color:#dd514c;background-image:-moz-linear-gradient(top, #ee5f5b, #c43c35);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#ee5f5b), to(#c43c35));background-image:-webkit-linear-gradient(top, #ee5f5b, #c43c35);background-image:-o-linear-gradient(top, #ee5f5b, #c43c35);background-image:linear-gradient(to bottom, #ee5f5b, #c43c35);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffee5f5b', endColorstr='#ffc43c35', GradientType=0);} .progress-danger.progress-striped .bar,.progress-striped .bar-danger{background-color:#ee5f5b;background-image:-webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));background-image:-webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);} .progress-success .bar,.progress .bar-success{background-color:#5eb95e;background-image:-moz-linear-gradient(top, #62c462, #57a957);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#62c462), to(#57a957));background-image:-webkit-linear-gradient(top, #62c462, #57a957);background-image:-o-linear-gradient(top, #62c462, #57a957);background-image:linear-gradient(to bottom, #62c462, #57a957);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff62c462', endColorstr='#ff57a957', GradientType=0);} .progress-success.progress-striped .bar,.progress-striped .bar-success{background-color:#62c462;background-image:-webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));background-image:-webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);} .progress-info .bar,.progress .bar-info{background-color:#4bb1cf;background-image:-moz-linear-gradient(top, #5bc0de, #339bb9);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#5bc0de), to(#339bb9));background-image:-webkit-linear-gradient(top, #5bc0de, #339bb9);background-image:-o-linear-gradient(top, #5bc0de, #339bb9);background-image:linear-gradient(to bottom, #5bc0de, #339bb9);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff339bb9', GradientType=0);} .progress-info.progress-striped .bar,.progress-striped .bar-info{background-color:#5bc0de;background-image:-webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));background-image:-webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);} .progress-warning .bar,.progress .bar-warning{background-color:#faa732;background-image:-moz-linear-gradient(top, #fbb450, #f89406);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#fbb450), to(#f89406));background-image:-webkit-linear-gradient(top, #fbb450, #f89406);background-image:-o-linear-gradient(top, #fbb450, #f89406);background-image:linear-gradient(to bottom, #fbb450, #f89406);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffbb450', endColorstr='#fff89406', GradientType=0);} .progress-warning.progress-striped .bar,.progress-striped .bar-warning{background-color:#fbb450;background-image:-webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));background-image:-webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);} .hero-unit{padding:60px;margin-bottom:30px;font-size:18px;font-weight:200;line-height:30px;color:inherit;background-color:#eeeeee;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;}.hero-unit h1{margin-bottom:0;font-size:60px;line-height:1;color:inherit;letter-spacing:-1px;} .hero-unit li{line-height:30px;} .media,.media-body{overflow:hidden;*overflow:visible;zoom:1;} .media,.media .media{margin-top:15px;} .media:first-child{margin-top:0;} .media-object{display:block;} .media-heading{margin:0 0 5px;} .media .pull-left{margin-right:10px;} .media .pull-right{margin-left:10px;} .media-list{margin-left:0;list-style:none;} .tooltip{position:absolute;z-index:1030;display:block;visibility:visible;padding:5px;font-size:11px;opacity:0;filter:alpha(opacity=0);}.tooltip.in{opacity:0.8;filter:alpha(opacity=80);} .tooltip.top{margin-top:-3px;} .tooltip.right{margin-left:3px;} .tooltip.bottom{margin-top:3px;} .tooltip.left{margin-left:-3px;} .tooltip-inner{max-width:200px;padding:3px 8px;color:#ffffff;text-align:center;text-decoration:none;background-color:#000000;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;} .tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid;} .tooltip.top .tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-width:5px 5px 0;border-top-color:#000000;} .tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#000000;} .tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-width:5px 0 5px 5px;border-left-color:#000000;} .tooltip.bottom .tooltip-arrow{top:0;left:50%;margin-left:-5px;border-width:0 5px 5px;border-bottom-color:#000000;} .popover{position:absolute;top:0;left:0;z-index:1010;display:none;width:236px;padding:1px;text-align:left;background-color:#ffffff;-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0, 0, 0, 0.2);-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0, 0, 0, 0.2);-moz-box-shadow:0 5px 10px rgba(0, 0, 0, 0.2);box-shadow:0 5px 10px rgba(0, 0, 0, 0.2);white-space:normal;}.popover.top{margin-top:-10px;} .popover.right{margin-left:10px;} .popover.bottom{margin-top:10px;} .popover.left{margin-left:-10px;} .popover-title{margin:0;padding:8px 14px;font-size:14px;font-weight:normal;line-height:18px;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;-webkit-border-radius:5px 5px 0 0;-moz-border-radius:5px 5px 0 0;border-radius:5px 5px 0 0;} .popover-content{padding:9px 14px;} .popover .arrow,.popover .arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid;} .popover .arrow{border-width:11px;} .popover .arrow:after{border-width:10px;content:"";} .popover.top .arrow{left:50%;margin-left:-11px;border-bottom-width:0;border-top-color:#999;border-top-color:rgba(0, 0, 0, 0.25);bottom:-11px;}.popover.top .arrow:after{bottom:1px;margin-left:-10px;border-bottom-width:0;border-top-color:#ffffff;} .popover.right .arrow{top:50%;left:-11px;margin-top:-11px;border-left-width:0;border-right-color:#999;border-right-color:rgba(0, 0, 0, 0.25);}.popover.right .arrow:after{left:1px;bottom:-10px;border-left-width:0;border-right-color:#ffffff;} .popover.bottom .arrow{left:50%;margin-left:-11px;border-top-width:0;border-bottom-color:#999;border-bottom-color:rgba(0, 0, 0, 0.25);top:-11px;}.popover.bottom .arrow:after{top:1px;margin-left:-10px;border-top-width:0;border-bottom-color:#ffffff;} .popover.left .arrow{top:50%;right:-11px;margin-top:-11px;border-right-width:0;border-left-color:#999;border-left-color:rgba(0, 0, 0, 0.25);}.popover.left .arrow:after{right:1px;border-right-width:0;border-left-color:#ffffff;bottom:-10px;} .modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040;background-color:#000000;}.modal-backdrop.fade{opacity:0;} .modal-backdrop,.modal-backdrop.fade.in{opacity:0.8;filter:alpha(opacity=80);} .modal{position:fixed;top:10%;left:50%;z-index:1050;width:560px;margin-left:-280px;background-color:#ffffff;border:1px solid #999;border:1px solid rgba(0, 0, 0, 0.3);*border:1px solid #999;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;-webkit-box-shadow:0 3px 7px rgba(0, 0, 0, 0.3);-moz-box-shadow:0 3px 7px rgba(0, 0, 0, 0.3);box-shadow:0 3px 7px rgba(0, 0, 0, 0.3);-webkit-background-clip:padding-box;-moz-background-clip:padding-box;background-clip:padding-box;outline:none;}.modal.fade{-webkit-transition:opacity .3s linear, top .3s ease-out;-moz-transition:opacity .3s linear, top .3s ease-out;-o-transition:opacity .3s linear, top .3s ease-out;transition:opacity .3s linear, top .3s ease-out;top:-25%;} .modal.fade.in{top:10%;} .modal-header{padding:9px 15px;border-bottom:1px solid #eee;}.modal-header .close{margin-top:2px;} .modal-header h3{margin:0;line-height:30px;} .modal-body{position:relative;overflow-y:auto;max-height:400px;padding:15px;} .modal-form{margin-bottom:0;} .modal-footer{padding:14px 15px 15px;margin-bottom:0;text-align:right;background-color:#f5f5f5;border-top:1px solid #ddd;-webkit-border-radius:0 0 6px 6px;-moz-border-radius:0 0 6px 6px;border-radius:0 0 6px 6px;-webkit-box-shadow:inset 0 1px 0 #ffffff;-moz-box-shadow:inset 0 1px 0 #ffffff;box-shadow:inset 0 1px 0 #ffffff;*zoom:1;}.modal-footer:before,.modal-footer:after{display:table;content:"";line-height:0;} .modal-footer:after{clear:both;} .modal-footer .btn+.btn{margin-left:5px;margin-bottom:0;} .modal-footer .btn-group .btn+.btn{margin-left:-1px;} .modal-footer .btn-block+.btn-block{margin-left:0;} .dropup,.dropdown{position:relative;} .dropdown-toggle{*margin-bottom:-3px;} .dropdown-toggle:active,.open .dropdown-toggle{outline:0;} .caret{display:inline-block;width:0;height:0;vertical-align:top;border-top:4px solid #000000;border-right:4px solid transparent;border-left:4px solid transparent;content:"";} .dropdown .caret{margin-top:8px;margin-left:2px;} .dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:160px;padding:5px 0;margin:2px 0 0;list-style:none;background-color:#ffffff;border:1px solid #ccc;border:1px solid rgba(0, 0, 0, 0.2);*border-right-width:2px;*border-bottom-width:2px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0, 0, 0, 0.2);-moz-box-shadow:0 5px 10px rgba(0, 0, 0, 0.2);box-shadow:0 5px 10px rgba(0, 0, 0, 0.2);-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box;}.dropdown-menu.pull-right{right:0;left:auto;} .dropdown-menu .divider{*width:100%;height:1px;margin:9px 1px;*margin:-5px 0 5px;overflow:hidden;background-color:#e5e5e5;border-bottom:1px solid #ffffff;} .dropdown-menu li>a{display:block;padding:3px 20px;clear:both;font-weight:normal;line-height:20px;color:#333333;white-space:nowrap;} .dropdown-menu li>a:hover,.dropdown-menu li>a:focus,.dropdown-submenu:hover>a{text-decoration:none;color:#ffffff;background-color:#0081c2;background-image:-moz-linear-gradient(top, #0088cc, #0077b3);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0077b3));background-image:-webkit-linear-gradient(top, #0088cc, #0077b3);background-image:-o-linear-gradient(top, #0088cc, #0077b3);background-image:linear-gradient(to bottom, #0088cc, #0077b3);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff0077b3', GradientType=0);} .dropdown-menu .active>a,.dropdown-menu .active>a:hover{color:#ffffff;text-decoration:none;outline:0;background-color:#0081c2;background-image:-moz-linear-gradient(top, #0088cc, #0077b3);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0077b3));background-image:-webkit-linear-gradient(top, #0088cc, #0077b3);background-image:-o-linear-gradient(top, #0088cc, #0077b3);background-image:linear-gradient(to bottom, #0088cc, #0077b3);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff0077b3', GradientType=0);} .dropdown-menu .disabled>a,.dropdown-menu .disabled>a:hover{color:#999999;} .dropdown-menu .disabled>a:hover{text-decoration:none;background-color:transparent;background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);cursor:default;} .open{*z-index:1000;}.open >.dropdown-menu{display:block;} .pull-right>.dropdown-menu{right:0;left:auto;} .dropup .caret,.navbar-fixed-bottom .dropdown .caret{border-top:0;border-bottom:4px solid #000000;content:"";} .dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:1px;} .dropdown-submenu{position:relative;} .dropdown-submenu>.dropdown-menu{top:0;left:100%;margin-top:-6px;margin-left:-1px;-webkit-border-radius:0 6px 6px 6px;-moz-border-radius:0 6px 6px 6px;border-radius:0 6px 6px 6px;} .dropdown-submenu:hover>.dropdown-menu{display:block;} .dropup .dropdown-submenu>.dropdown-menu{top:auto;bottom:0;margin-top:0;margin-bottom:-2px;-webkit-border-radius:5px 5px 5px 0;-moz-border-radius:5px 5px 5px 0;border-radius:5px 5px 5px 0;} .dropdown-submenu>a:after{display:block;content:" ";float:right;width:0;height:0;border-color:transparent;border-style:solid;border-width:5px 0 5px 5px;border-left-color:#cccccc;margin-top:5px;margin-right:-10px;} .dropdown-submenu:hover>a:after{border-left-color:#ffffff;} .dropdown-submenu.pull-left{float:none;}.dropdown-submenu.pull-left>.dropdown-menu{left:-100%;margin-left:10px;-webkit-border-radius:6px 0 6px 6px;-moz-border-radius:6px 0 6px 6px;border-radius:6px 0 6px 6px;} .dropdown .dropdown-menu .nav-header{padding-left:20px;padding-right:20px;} .typeahead{z-index:1051;margin-top:2px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;} .accordion{margin-bottom:20px;} .accordion-group{margin-bottom:2px;border:1px solid #e5e5e5;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;} .accordion-heading{border-bottom:0;} .accordion-heading .accordion-toggle{display:block;padding:8px 15px;} .accordion-toggle{cursor:pointer;} .accordion-inner{padding:9px 15px;border-top:1px solid #e5e5e5;} .carousel{position:relative;margin-bottom:20px;line-height:1;} .carousel-inner{overflow:hidden;width:100%;position:relative;} .carousel-inner>.item{display:none;position:relative;-webkit-transition:0.6s ease-in-out left;-moz-transition:0.6s ease-in-out left;-o-transition:0.6s ease-in-out left;transition:0.6s ease-in-out left;} .carousel-inner>.item>img{display:block;line-height:1;} .carousel-inner>.active,.carousel-inner>.next,.carousel-inner>.prev{display:block;} .carousel-inner>.active{left:0;} .carousel-inner>.next,.carousel-inner>.prev{position:absolute;top:0;width:100%;} .carousel-inner>.next{left:100%;} .carousel-inner>.prev{left:-100%;} .carousel-inner>.next.left,.carousel-inner>.prev.right{left:0;} .carousel-inner>.active.left{left:-100%;} .carousel-inner>.active.right{left:100%;} .carousel-control{position:absolute;top:40%;left:15px;width:40px;height:40px;margin-top:-20px;font-size:60px;font-weight:100;line-height:30px;color:#ffffff;text-align:center;background:#222222;border:3px solid #ffffff;-webkit-border-radius:23px;-moz-border-radius:23px;border-radius:23px;opacity:0.5;filter:alpha(opacity=50);}.carousel-control.right{left:auto;right:15px;} .carousel-control:hover{color:#ffffff;text-decoration:none;opacity:0.9;filter:alpha(opacity=90);} .carousel-caption{position:absolute;left:0;right:0;bottom:0;padding:15px;background:#333333;background:rgba(0, 0, 0, 0.75);} .carousel-caption h4,.carousel-caption p{color:#ffffff;line-height:20px;} .carousel-caption h4{margin:0 0 5px;} .carousel-caption p{margin-bottom:0;} .well{min-height:20px;padding:19px;margin-bottom:20px;background-color:#f5f5f5;border:1px solid #e3e3e3;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.05);-moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.05);box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.05);}.well blockquote{border-color:#ddd;border-color:rgba(0, 0, 0, 0.15);} .well-large{padding:24px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;} .well-small{padding:9px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;} .close{float:right;font-size:20px;font-weight:bold;line-height:20px;color:#000000;text-shadow:0 1px 0 #ffffff;opacity:0.2;filter:alpha(opacity=20);}.close:hover{color:#000000;text-decoration:none;cursor:pointer;opacity:0.4;filter:alpha(opacity=40);} button.close{padding:0;cursor:pointer;background:transparent;border:0;-webkit-appearance:none;} .pull-right{float:right;} .pull-left{float:left;} .hide{display:none;} .show{display:block;} .invisible{visibility:hidden;} .affix{position:fixed;} .fade{opacity:0;-webkit-transition:opacity 0.15s linear;-moz-transition:opacity 0.15s linear;-o-transition:opacity 0.15s linear;transition:opacity 0.15s linear;}.fade.in{opacity:1;} .collapse{position:relative;height:0;overflow:hidden;-webkit-transition:height 0.35s ease;-moz-transition:height 0.35s ease;-o-transition:height 0.35s ease;transition:height 0.35s ease;}.collapse.in{height:auto;} .hidden{display:none;visibility:hidden;} .visible-phone{display:none !important;} .visible-tablet{display:none !important;} .hidden-desktop{display:none !important;} .visible-desktop{display:inherit !important;} @media (min-width:768px) and (max-width:979px){.hidden-desktop{display:inherit !important;} .visible-desktop{display:none !important ;} .visible-tablet{display:inherit !important;} .hidden-tablet{display:none !important;}}@media (max-width:767px){.hidden-desktop{display:inherit !important;} .visible-desktop{display:none !important;} .visible-phone{display:inherit !important;} .hidden-phone{display:none !important;}}@media (max-width:767px){body{padding-left:20px;padding-right:20px;} .navbar-fixed-top,.navbar-fixed-bottom,.navbar-static-top{margin-left:-20px;margin-right:-20px;} .container-fluid{padding:0;} .dl-horizontal dt{float:none;clear:none;width:auto;text-align:left;} .dl-horizontal dd{margin-left:0;} .container{width:auto;} .row-fluid{width:100%;} .row,.thumbnails{margin-left:0;} .thumbnails>li{float:none;margin-left:0;} [class*="span"],.uneditable-input[class*="span"],.row-fluid [class*="span"]{float:none;display:block;width:100%;margin-left:0;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;} .span12,.row-fluid .span12{width:100%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;} .row-fluid [class*="offset"]:first-child{margin-left:0;} .input-large,.input-xlarge,.input-xxlarge,input[class*="span"],select[class*="span"],textarea[class*="span"],.uneditable-input{display:block;width:100%;min-height:30px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;} .input-prepend input,.input-append input,.input-prepend input[class*="span"],.input-append input[class*="span"]{display:inline-block;width:auto;} .controls-row [class*="span"]+[class*="span"]{margin-left:0;} .modal{position:fixed;top:20px;left:20px;right:20px;width:auto;margin:0;}.modal.fade{top:-100px;} .modal.fade.in{top:20px;}}@media (max-width:480px){.nav-collapse{-webkit-transform:translate3d(0, 0, 0);} .page-header h1 small{display:block;line-height:20px;} input[type="checkbox"],input[type="radio"]{border:1px solid #ccc;} .form-horizontal .control-label{float:none;width:auto;padding-top:0;text-align:left;} .form-horizontal .controls{margin-left:0;} .form-horizontal .control-list{padding-top:0;} .form-horizontal .form-actions{padding-left:10px;padding-right:10px;} .media .pull-left,.media .pull-right{float:none;display:block;margin-bottom:10px;} .media-object{margin-right:0;margin-left:0;} .modal{top:10px;left:10px;right:10px;} .modal-header .close{padding:10px;margin:-10px;} .carousel-caption{position:static;}}@media (min-width:768px) and (max-width:979px){.row{margin-left:-20px;*zoom:1;}.row:before,.row:after{display:table;content:"";line-height:0;} .row:after{clear:both;} [class*="span"]{float:left;min-height:1px;margin-left:20px;} .container,.navbar-static-top .container,.navbar-fixed-top .container,.navbar-fixed-bottom .container{width:724px;} .span12{width:724px;} .span11{width:662px;} .span10{width:600px;} .span9{width:538px;} .span8{width:476px;} .span7{width:414px;} .span6{width:352px;} .span5{width:290px;} .span4{width:228px;} .span3{width:166px;} .span2{width:104px;} .span1{width:42px;} .offset12{margin-left:764px;} .offset11{margin-left:702px;} .offset10{margin-left:640px;} .offset9{margin-left:578px;} .offset8{margin-left:516px;} .offset7{margin-left:454px;} .offset6{margin-left:392px;} .offset5{margin-left:330px;} .offset4{margin-left:268px;} .offset3{margin-left:206px;} .offset2{margin-left:144px;} .offset1{margin-left:82px;} .row-fluid{width:100%;*zoom:1;}.row-fluid:before,.row-fluid:after{display:table;content:"";line-height:0;} .row-fluid:after{clear:both;} .row-fluid [class*="span"]{display:block;width:100%;min-height:30px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;float:left;margin-left:2.7624309392265194%;*margin-left:2.709239449864817%;} .row-fluid [class*="span"]:first-child{margin-left:0;} .row-fluid .controls-row [class*="span"]+[class*="span"]{margin-left:2.7624309392265194%;} .row-fluid .span12{width:100%;*width:99.94680851063829%;} .row-fluid .span11{width:91.43646408839778%;*width:91.38327259903608%;} .row-fluid .span10{width:82.87292817679558%;*width:82.81973668743387%;} .row-fluid .span9{width:74.30939226519337%;*width:74.25620077583166%;} .row-fluid .span8{width:65.74585635359117%;*width:65.69266486422946%;} .row-fluid .span7{width:57.18232044198895%;*width:57.12912895262725%;} .row-fluid .span6{width:48.61878453038674%;*width:48.56559304102504%;} .row-fluid .span5{width:40.05524861878453%;*width:40.00205712942283%;} .row-fluid .span4{width:31.491712707182323%;*width:31.43852121782062%;} .row-fluid .span3{width:22.92817679558011%;*width:22.87498530621841%;} .row-fluid .span2{width:14.3646408839779%;*width:14.311449394616199%;} .row-fluid .span1{width:5.801104972375691%;*width:5.747913483013988%;} .row-fluid .offset12{margin-left:105.52486187845304%;*margin-left:105.41847889972962%;} .row-fluid .offset12:first-child{margin-left:102.76243093922652%;*margin-left:102.6560479605031%;} .row-fluid .offset11{margin-left:96.96132596685082%;*margin-left:96.8549429881274%;} .row-fluid .offset11:first-child{margin-left:94.1988950276243%;*margin-left:94.09251204890089%;} .row-fluid .offset10{margin-left:88.39779005524862%;*margin-left:88.2914070765252%;} .row-fluid .offset10:first-child{margin-left:85.6353591160221%;*margin-left:85.52897613729868%;} .row-fluid .offset9{margin-left:79.8342541436464%;*margin-left:79.72787116492299%;} .row-fluid .offset9:first-child{margin-left:77.07182320441989%;*margin-left:76.96544022569647%;} .row-fluid .offset8{margin-left:71.2707182320442%;*margin-left:71.16433525332079%;} .row-fluid .offset8:first-child{margin-left:68.50828729281768%;*margin-left:68.40190431409427%;} .row-fluid .offset7{margin-left:62.70718232044199%;*margin-left:62.600799341718584%;} .row-fluid .offset7:first-child{margin-left:59.94475138121547%;*margin-left:59.838368402492065%;} .row-fluid .offset6{margin-left:54.14364640883978%;*margin-left:54.037263430116376%;} .row-fluid .offset6:first-child{margin-left:51.38121546961326%;*margin-left:51.27483249088986%;} .row-fluid .offset5{margin-left:45.58011049723757%;*margin-left:45.47372751851417%;} .row-fluid .offset5:first-child{margin-left:42.81767955801105%;*margin-left:42.71129657928765%;} .row-fluid .offset4{margin-left:37.01657458563536%;*margin-left:36.91019160691196%;} .row-fluid .offset4:first-child{margin-left:34.25414364640884%;*margin-left:34.14776066768544%;} .row-fluid .offset3{margin-left:28.45303867403315%;*margin-left:28.346655695309746%;} .row-fluid .offset3:first-child{margin-left:25.69060773480663%;*margin-left:25.584224756083227%;} .row-fluid .offset2{margin-left:19.88950276243094%;*margin-left:19.783119783707537%;} .row-fluid .offset2:first-child{margin-left:17.12707182320442%;*margin-left:17.02068884448102%;} .row-fluid .offset1{margin-left:11.32596685082873%;*margin-left:11.219583872105325%;} .row-fluid .offset1:first-child{margin-left:8.56353591160221%;*margin-left:8.457152932878806%;} input,textarea,.uneditable-input{margin-left:0;} .controls-row [class*="span"]+[class*="span"]{margin-left:20px;} input.span12, textarea.span12, .uneditable-input.span12{width:710px;} input.span11, textarea.span11, .uneditable-input.span11{width:648px;} input.span10, textarea.span10, .uneditable-input.span10{width:586px;} input.span9, textarea.span9, .uneditable-input.span9{width:524px;} input.span8, textarea.span8, .uneditable-input.span8{width:462px;} input.span7, textarea.span7, .uneditable-input.span7{width:400px;} input.span6, textarea.span6, .uneditable-input.span6{width:338px;} input.span5, textarea.span5, .uneditable-input.span5{width:276px;} input.span4, textarea.span4, .uneditable-input.span4{width:214px;} input.span3, textarea.span3, .uneditable-input.span3{width:152px;} input.span2, textarea.span2, .uneditable-input.span2{width:90px;} input.span1, textarea.span1, .uneditable-input.span1{width:28px;}}@media (min-width:1200px){.row{margin-left:-30px;*zoom:1;}.row:before,.row:after{display:table;content:"";line-height:0;} .row:after{clear:both;} [class*="span"]{float:left;min-height:1px;margin-left:30px;} .container,.navbar-static-top .container,.navbar-fixed-top .container,.navbar-fixed-bottom .container{width:1170px;} .span12{width:1170px;} .span11{width:1070px;} .span10{width:970px;} .span9{width:870px;} .span8{width:770px;} .span7{width:670px;} .span6{width:570px;} .span5{width:470px;} .span4{width:370px;} .span3{width:270px;} .span2{width:170px;} .span1{width:70px;} .offset12{margin-left:1230px;} .offset11{margin-left:1130px;} .offset10{margin-left:1030px;} .offset9{margin-left:930px;} .offset8{margin-left:830px;} .offset7{margin-left:730px;} .offset6{margin-left:630px;} .offset5{margin-left:530px;} .offset4{margin-left:430px;} .offset3{margin-left:330px;} .offset2{margin-left:230px;} .offset1{margin-left:130px;} .row-fluid{width:100%;*zoom:1;}.row-fluid:before,.row-fluid:after{display:table;content:"";line-height:0;} .row-fluid:after{clear:both;} .row-fluid [class*="span"]{display:block;width:100%;min-height:30px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;float:left;margin-left:2.564102564102564%;*margin-left:2.5109110747408616%;} .row-fluid [class*="span"]:first-child{margin-left:0;} .row-fluid .controls-row [class*="span"]+[class*="span"]{margin-left:2.564102564102564%;} .row-fluid .span12{width:100%;*width:99.94680851063829%;} .row-fluid .span11{width:91.45299145299145%;*width:91.39979996362975%;} .row-fluid .span10{width:82.90598290598291%;*width:82.8527914166212%;} .row-fluid .span9{width:74.35897435897436%;*width:74.30578286961266%;} .row-fluid .span8{width:65.81196581196582%;*width:65.75877432260411%;} .row-fluid .span7{width:57.26495726495726%;*width:57.21176577559556%;} .row-fluid .span6{width:48.717948717948715%;*width:48.664757228587014%;} .row-fluid .span5{width:40.17094017094017%;*width:40.11774868157847%;} .row-fluid .span4{width:31.623931623931625%;*width:31.570740134569924%;} .row-fluid .span3{width:23.076923076923077%;*width:23.023731587561375%;} .row-fluid .span2{width:14.52991452991453%;*width:14.476723040552828%;} .row-fluid .span1{width:5.982905982905983%;*width:5.929714493544281%;} .row-fluid .offset12{margin-left:105.12820512820512%;*margin-left:105.02182214948171%;} .row-fluid .offset12:first-child{margin-left:102.56410256410257%;*margin-left:102.45771958537915%;} .row-fluid .offset11{margin-left:96.58119658119658%;*margin-left:96.47481360247316%;} .row-fluid .offset11:first-child{margin-left:94.01709401709402%;*margin-left:93.91071103837061%;} .row-fluid .offset10{margin-left:88.03418803418803%;*margin-left:87.92780505546462%;} .row-fluid .offset10:first-child{margin-left:85.47008547008548%;*margin-left:85.36370249136206%;} .row-fluid .offset9{margin-left:79.48717948717949%;*margin-left:79.38079650845607%;} .row-fluid .offset9:first-child{margin-left:76.92307692307693%;*margin-left:76.81669394435352%;} .row-fluid .offset8{margin-left:70.94017094017094%;*margin-left:70.83378796144753%;} .row-fluid .offset8:first-child{margin-left:68.37606837606839%;*margin-left:68.26968539734497%;} .row-fluid .offset7{margin-left:62.393162393162385%;*margin-left:62.28677941443899%;} .row-fluid .offset7:first-child{margin-left:59.82905982905982%;*margin-left:59.72267685033642%;} .row-fluid .offset6{margin-left:53.84615384615384%;*margin-left:53.739770867430444%;} .row-fluid .offset6:first-child{margin-left:51.28205128205128%;*margin-left:51.175668303327875%;} .row-fluid .offset5{margin-left:45.299145299145295%;*margin-left:45.1927623204219%;} .row-fluid .offset5:first-child{margin-left:42.73504273504273%;*margin-left:42.62865975631933%;} .row-fluid .offset4{margin-left:36.75213675213675%;*margin-left:36.645753773413354%;} .row-fluid .offset4:first-child{margin-left:34.18803418803419%;*margin-left:34.081651209310785%;} .row-fluid .offset3{margin-left:28.205128205128204%;*margin-left:28.0987452264048%;} .row-fluid .offset3:first-child{margin-left:25.641025641025642%;*margin-left:25.53464266230224%;} .row-fluid .offset2{margin-left:19.65811965811966%;*margin-left:19.551736679396257%;} .row-fluid .offset2:first-child{margin-left:17.094017094017094%;*margin-left:16.98763411529369%;} .row-fluid .offset1{margin-left:11.11111111111111%;*margin-left:11.004728132387708%;} .row-fluid .offset1:first-child{margin-left:8.547008547008547%;*margin-left:8.440625568285142%;} input,textarea,.uneditable-input{margin-left:0;} .controls-row [class*="span"]+[class*="span"]{margin-left:30px;} input.span12, textarea.span12, .uneditable-input.span12{width:1156px;} input.span11, textarea.span11, .uneditable-input.span11{width:1056px;} input.span10, textarea.span10, .uneditable-input.span10{width:956px;} input.span9, textarea.span9, .uneditable-input.span9{width:856px;} input.span8, textarea.span8, .uneditable-input.span8{width:756px;} input.span7, textarea.span7, .uneditable-input.span7{width:656px;} input.span6, textarea.span6, .uneditable-input.span6{width:556px;} input.span5, textarea.span5, .uneditable-input.span5{width:456px;} input.span4, textarea.span4, .uneditable-input.span4{width:356px;} input.span3, textarea.span3, .uneditable-input.span3{width:256px;} input.span2, textarea.span2, .uneditable-input.span2{width:156px;} input.span1, textarea.span1, .uneditable-input.span1{width:56px;} .thumbnails{margin-left:-30px;} .thumbnails>li{margin-left:30px;} .row-fluid .thumbnails{margin-left:0;}}@media (max-width:979px){body{padding-top:0;} .navbar-fixed-top,.navbar-fixed-bottom{position:static;} .navbar-fixed-top{margin-bottom:20px;} .navbar-fixed-bottom{margin-top:20px;} .navbar-fixed-top .navbar-inner,.navbar-fixed-bottom .navbar-inner{padding:5px;} .navbar .container{width:auto;padding:0;} .navbar .brand{padding-left:10px;padding-right:10px;margin:0 0 0 -5px;} .nav-collapse{clear:both;} .nav-collapse .nav{float:none;margin:0 0 10px;} .nav-collapse .nav>li{float:none;} .nav-collapse .nav>li>a{margin-bottom:2px;} .nav-collapse .nav>.divider-vertical{display:none;} .nav-collapse .nav .nav-header{color:#777777;text-shadow:none;} .nav-collapse .nav>li>a,.nav-collapse .dropdown-menu a{padding:9px 15px;font-weight:bold;color:#777777;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;} .nav-collapse .btn{padding:4px 10px 4px;font-weight:normal;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;} .nav-collapse .dropdown-menu li+li a{margin-bottom:2px;} .nav-collapse .nav>li>a:hover,.nav-collapse .dropdown-menu a:hover{background-color:#f2f2f2;} .navbar-inverse .nav-collapse .nav>li>a,.navbar-inverse .nav-collapse .dropdown-menu a{color:#999999;} .navbar-inverse .nav-collapse .nav>li>a:hover,.navbar-inverse .nav-collapse .dropdown-menu a:hover{background-color:#111111;} .nav-collapse.in .btn-group{margin-top:5px;padding:0;} .nav-collapse .dropdown-menu{position:static;top:auto;left:auto;float:none;display:none;max-width:none;margin:0 15px;padding:0;background-color:transparent;border:none;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;} .nav-collapse .open>.dropdown-menu{display:block;} .nav-collapse .dropdown-menu:before,.nav-collapse .dropdown-menu:after{display:none;} .nav-collapse .dropdown-menu .divider{display:none;} .nav-collapse .nav>li>.dropdown-menu:before,.nav-collapse .nav>li>.dropdown-menu:after{display:none;} .nav-collapse .navbar-form,.nav-collapse .navbar-search{float:none;padding:10px 15px;margin:10px 0;border-top:1px solid #f2f2f2;border-bottom:1px solid #f2f2f2;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.1);-moz-box-shadow:inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.1);box-shadow:inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.1);} .navbar-inverse .nav-collapse .navbar-form,.navbar-inverse .nav-collapse .navbar-search{border-top-color:#111111;border-bottom-color:#111111;} .navbar .nav-collapse .nav.pull-right{float:none;margin-left:0;} .nav-collapse,.nav-collapse.collapse{overflow:hidden;height:0;} .navbar .btn-navbar{display:block;} .navbar-static .navbar-inner{padding-left:10px;padding-right:10px;}}@media (min-width:980px){.nav-collapse.collapse{height:auto !important;overflow:visible !important;}} |
| URL | http://zero.webappsecurity.com/resources/css/font-awesome.css |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | Apache-Coyote/1.1 |
| Request Header - size: 285 bytes. |
GET http://zero.webappsecurity.com/resources/css/font-awesome.css HTTP/1.1
Host: zero.webappsecurity.com User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0 Pragma: no-cache Cache-Control: no-cache Referer: http://zero.webappsecurity.com |
| Request Body - size: 0 bytes. |
|
| Response Header - size: 347 bytes. |
HTTP/1.1 200 OK
Date: Mon, 14 Mar 2022 07:13:41 GMT Server: Apache-Coyote/1.1 Access-Control-Allow-Origin: * Accept-Ranges: bytes ETag: W/"21752-1360580252000" Last-Modified: Mon, 11 Feb 2013 10:57:32 GMT Cache-Control: max-age=2678400 Expires: Thu, 14 Apr 2022 07:13:42 GMT Content-Type: text/css;charset=UTF-8 Content-Length: 21752 |
| Response Body - size: 21,752 bytes. |
/*!
* Font Awesome 3.0.2 * the iconic font designed for use with Twitter Bootstrap * ------------------------------------------------------- * The full suite of pictographic icons, examples, and documentation * can be found at: http://fortawesome.github.com/Font-Awesome/ * * License * ------------------------------------------------------- * - The Font Awesome font is licensed under the SIL Open Font License - http://scripts.sil.org/OFL * - Font Awesome CSS, LESS, and SASS files are licensed under the MIT License - * http://opensource.org/licenses/mit-license.html * - The Font Awesome pictograms are licensed under the CC BY 3.0 License - http://creativecommons.org/licenses/by/3.0/ * - Attribution is no longer required in Font Awesome 3.0, but much appreciated: * "Font Awesome by Dave Gandy - http://fortawesome.github.com/Font-Awesome" * Contact * ------------------------------------------------------- * Email: dave@davegandy.com * Twitter: http://twitter.com/fortaweso_me * Work: Lead Product Designer @ http://kyruus.com */ @font-face { font-family: 'FontAwesome'; src: url('../font/fontawesome-webfont.eot?v=3.0.1'); src: url('../font/fontawesome-webfont.eot?#iefix&v=3.0.1') format('embedded-opentype'), url('../font/fontawesome-webfont.woff?v=3.0.1') format('woff'), url('../font/fontawesome-webfont.ttf?v=3.0.1') format('truetype'); font-weight: normal; font-style: normal; } /* Font Awesome styles ------------------------------------------------------- */ [class^="icon-"], [class*=" icon-"] { font-family: FontAwesome; font-weight: normal; font-style: normal; text-decoration: inherit; -webkit-font-smoothing: antialiased; /* sprites.less reset */ display: inline; width: auto; height: auto; line-height: normal; vertical-align: baseline; background-image: none; background-position: 0% 0%; background-repeat: repeat; margin-top: 0; } /* more sprites.less reset */ .icon-white, .nav-pills > .active > a > [class^="icon-"], .nav-pills > .active > a > [class*=" icon-"], .nav-list > .active > a > [class^="icon-"], .nav-list > .active > a > [class*=" icon-"], .navbar-inverse .nav > .active > a > [class^="icon-"], .navbar-inverse .nav > .active > a > [class*=" icon-"], .dropdown-menu > li > a:hover > [class^="icon-"], .dropdown-menu > li > a:hover > [class*=" icon-"], .dropdown-menu > .active > a > [class^="icon-"], .dropdown-menu > .active > a > [class*=" icon-"], .dropdown-submenu:hover > a > [class^="icon-"], .dropdown-submenu:hover > a > [class*=" icon-"] { background-image: none; } [class^="icon-"]:before, [class*=" icon-"]:before { text-decoration: inherit; display: inline-block; speak: none; } /* makes sure icons active on rollover in links */ a [class^="icon-"], a [class*=" icon-"] { display: inline-block; } /* makes the font 33% larger relative to the icon container */ .icon-large:before { vertical-align: -10%; font-size: 1.3333333333333333em; } .btn [class^="icon-"], .nav [class^="icon-"], .btn [class*=" icon-"], .nav [class*=" icon-"] { display: inline; /* keeps button heights with and without icons the same */ } .btn [class^="icon-"].icon-large, .nav [class^="icon-"].icon-large, .btn [class*=" icon-"].icon-large, .nav [class*=" icon-"].icon-large { line-height: .9em; } .btn [class^="icon-"].icon-spin, .nav [class^="icon-"].icon-spin, .btn [class*=" icon-"].icon-spin, .nav [class*=" icon-"].icon-spin { display: inline-block; } .nav-tabs [class^="icon-"], .nav-pills [class^="icon-"], .nav-tabs [class*=" icon-"], .nav-pills [class*=" icon-"] { /* keeps button heights with and without icons the same */ } .nav-tabs [class^="icon-"], .nav-pills [class^="icon-"], .nav-tabs [class*=" icon-"], .nav-pills [class*=" icon-"], .nav-tabs [class^="icon-"].icon-large, .nav-pills [class^="icon-"].icon-large, .nav-tabs [class*=" icon-"].icon-large, .nav-pills [class*=" icon-"].icon-large { line-height: .9em; } li [class^="icon-"], .nav li [class^="icon-"], li [class*=" icon-"], .nav li [class*=" icon-"] { display: inline-block; width: 1.25em; text-align: center; } li [class^="icon-"].icon-large, .nav li [class^="icon-"].icon-large, li [class*=" icon-"].icon-large, .nav li [class*=" icon-"].icon-large { /* increased font size for icon-large */ width: 1.5625em; } ul.icons { list-style-type: none; text-indent: -0.75em; } ul.icons li [class^="icon-"], ul.icons li [class*=" icon-"] { width: .75em; } .icon-muted { color: #eeeeee; } .icon-border { border: solid 1px #eeeeee; padding: .2em .25em .15em; -webkit-border-radius: 3px; -moz-border-radius: 3px; border-radius: 3px; } .icon-2x { font-size: 2em; } .icon-2x.icon-border { border-width: 2px; -webkit-border-radius: 4px; -moz-border-radius: 4px; border-radius: 4px; } .icon-3x { font-size: 3em; } .icon-3x.icon-border { border-width: 3px; -webkit-border-radius: 5px; -moz-border-radius: 5px; border-radius: 5px; } .icon-4x { font-size: 4em; } .icon-4x.icon-border { border-width: 4px; -webkit-border-radius: 6px; -moz-border-radius: 6px; border-radius: 6px; } .pull-right { float: right; } .pull-left { float: left; } [class^="icon-"].pull-left, [class*=" icon-"].pull-left { margin-right: .3em; } [class^="icon-"].pull-right, [class*=" icon-"].pull-right { margin-left: .3em; } .btn [class^="icon-"].pull-left.icon-2x, .btn [class*=" icon-"].pull-left.icon-2x, .btn [class^="icon-"].pull-right.icon-2x, .btn [class*=" icon-"].pull-right.icon-2x { margin-top: .18em; } .btn [class^="icon-"].icon-spin.icon-large, .btn [class*=" icon-"].icon-spin.icon-large { line-height: .8em; } .btn.btn-small [class^="icon-"].pull-left.icon-2x, .btn.btn-small [class*=" icon-"].pull-left.icon-2x, .btn.btn-small [class^="icon-"].pull-right.icon-2x, .btn.btn-small [class*=" icon-"].pull-right.icon-2x { margin-top: .25em; } .btn.btn-large [class^="icon-"], .btn.btn-large [class*=" icon-"] { margin-top: 0; } .btn.btn-large [class^="icon-"].pull-left.icon-2x, .btn.btn-large [class*=" icon-"].pull-left.icon-2x, .btn.btn-large [class^="icon-"].pull-right.icon-2x, .btn.btn-large [class*=" icon-"].pull-right.icon-2x { margin-top: .05em; } .btn.btn-large [class^="icon-"].pull-left.icon-2x, .btn.btn-large [class*=" icon-"].pull-left.icon-2x { margin-right: .2em; } .btn.btn-large [class^="icon-"].pull-right.icon-2x, .btn.btn-large [class*=" icon-"].pull-right.icon-2x { margin-left: .2em; } .icon-spin { display: inline-block; -moz-animation: spin 2s infinite linear; -o-animation: spin 2s infinite linear; -webkit-animation: spin 2s infinite linear; animation: spin 2s infinite linear; } @-moz-keyframes spin { 0% { -moz-transform: rotate(0deg); } 100% { -moz-transform: rotate(359deg); } } @-webkit-keyframes spin { 0% { -webkit-transform: rotate(0deg); } 100% { -webkit-transform: rotate(359deg); } } @-o-keyframes spin { 0% { -o-transform: rotate(0deg); } 100% { -o-transform: rotate(359deg); } } @-ms-keyframes spin { 0% { -ms-transform: rotate(0deg); } 100% { -ms-transform: rotate(359deg); } } @keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(359deg); } } @-moz-document url-prefix() { .icon-spin { height: .9em; } .btn .icon-spin { height: auto; } .icon-spin.icon-large { height: 1.25em; } .btn .icon-spin.icon-large { height: .75em; } } /* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen readers do not read off random characters that represent icons */ .icon-glass:before { content: "\f000"; } .icon-music:before { content: "\f001"; } .icon-search:before { content: "\f002"; } .icon-envelope:before { content: "\f003"; } .icon-heart:before { content: "\f004"; } .icon-star:before { content: "\f005"; } .icon-star-empty:before { content: "\f006"; } .icon-user:before { content: "\f007"; } .icon-film:before { content: "\f008"; } .icon-th-large:before { content: "\f009"; } .icon-th:before { content: "\f00a"; } .icon-th-list:before { content: "\f00b"; } .icon-ok:before { content: "\f00c"; } .icon-remove:before { content: "\f00d"; } .icon-zoom-in:before { content: "\f00e"; } .icon-zoom-out:before { content: "\f010"; } .icon-off:before { content: "\f011"; } .icon-signal:before { content: "\f012"; } .icon-cog:before { content: "\f013"; } .icon-trash:before { content: "\f014"; } .icon-home:before { content: "\f015"; } .icon-file:before { content: "\f016"; } .icon-time:before { content: "\f017"; } .icon-road:before { content: "\f018"; } .icon-download-alt:before { content: "\f019"; } .icon-download:before { content: "\f01a"; } .icon-upload:before { content: "\f01b"; } .icon-inbox:before { content: "\f01c"; } .icon-play-circle:before { content: "\f01d"; } .icon-repeat:before { content: "\f01e"; } /* \f020 doesn't work in Safari. all shifted one down */ .icon-refresh:before { content: "\f021"; } .icon-list-alt:before { content: "\f022"; } .icon-lock:before { content: "\f023"; } .icon-flag:before { content: "\f024"; } .icon-headphones:before { content: "\f025"; } .icon-volume-off:before { content: "\f026"; } .icon-volume-down:before { content: "\f027"; } .icon-volume-up:before { content: "\f028"; } .icon-qrcode:before { content: "\f029"; } .icon-barcode:before { content: "\f02a"; } .icon-tag:before { content: "\f02b"; } .icon-tags:before { content: "\f02c"; } .icon-book:before { content: "\f02d"; } .icon-bookmark:before { content: "\f02e"; } .icon-print:before { content: "\f02f"; } .icon-camera:before { content: "\f030"; } .icon-font:before { content: "\f031"; } .icon-bold:before { content: "\f032"; } .icon-italic:before { content: "\f033"; } .icon-text-height:before { content: "\f034"; } .icon-text-width:before { content: "\f035"; } .icon-align-left:before { content: "\f036"; } .icon-align-center:before { content: "\f037"; } .icon-align-right:before { content: "\f038"; } .icon-align-justify:before { content: "\f039"; } .icon-list:before { content: "\f03a"; } .icon-indent-left:before { content: "\f03b"; } .icon-indent-right:before { content: "\f03c"; } .icon-facetime-video:before { content: "\f03d"; } .icon-picture:before { content: "\f03e"; } .icon-pencil:before { content: "\f040"; } .icon-map-marker:before { content: "\f041"; } .icon-adjust:before { content: "\f042"; } .icon-tint:before { content: "\f043"; } .icon-edit:before { content: "\f044"; } .icon-share:before { content: "\f045"; } .icon-check:before { content: "\f046"; } .icon-move:before { content: "\f047"; } .icon-step-backward:before { content: "\f048"; } .icon-fast-backward:before { content: "\f049"; } .icon-backward:before { content: "\f04a"; } .icon-play:before { content: "\f04b"; } .icon-pause:before { content: "\f04c"; } .icon-stop:before { content: "\f04d"; } .icon-forward:before { content: "\f04e"; } .icon-fast-forward:before { content: "\f050"; } .icon-step-forward:before { content: "\f051"; } .icon-eject:before { content: "\f052"; } .icon-chevron-left:before { content: "\f053"; } .icon-chevron-right:before { content: "\f054"; } .icon-plus-sign:before { content: "\f055"; } .icon-minus-sign:before { content: "\f056"; } .icon-remove-sign:before { content: "\f057"; } .icon-ok-sign:before { content: "\f058"; } .icon-question-sign:before { content: "\f059"; } .icon-info-sign:before { content: "\f05a"; } .icon-screenshot:before { content: "\f05b"; } .icon-remove-circle:before { content: "\f05c"; } .icon-ok-circle:before { content: "\f05d"; } .icon-ban-circle:before { content: "\f05e"; } .icon-arrow-left:before { content: "\f060"; } .icon-arrow-right:before { content: "\f061"; } .icon-arrow-up:before { content: "\f062"; } .icon-arrow-down:before { content: "\f063"; } .icon-share-alt:before { content: "\f064"; } .icon-resize-full:before { content: "\f065"; } .icon-resize-small:before { content: "\f066"; } .icon-plus:before { content: "\f067"; } .icon-minus:before { content: "\f068"; } .icon-asterisk:before { content: "\f069"; } .icon-exclamation-sign:before { content: "\f06a"; } .icon-gift:before { content: "\f06b"; } .icon-leaf:before { content: "\f06c"; } .icon-fire:before { content: "\f06d"; } .icon-eye-open:before { content: "\f06e"; } .icon-eye-close:before { content: "\f070"; } .icon-warning-sign:before { content: "\f071"; } .icon-plane:before { content: "\f072"; } .icon-calendar:before { content: "\f073"; } .icon-random:before { content: "\f074"; } .icon-comment:before { content: "\f075"; } .icon-magnet:before { content: "\f076"; } .icon-chevron-up:before { content: "\f077"; } .icon-chevron-down:before { content: "\f078"; } .icon-retweet:before { content: "\f079"; } .icon-shopping-cart:before { content: "\f07a"; } .icon-folder-close:before { content: "\f07b"; } .icon-folder-open:before { content: "\f07c"; } .icon-resize-vertical:before { content: "\f07d"; } .icon-resize-horizontal:before { content: "\f07e"; } .icon-bar-chart:before { content: "\f080"; } .icon-twitter-sign:before { content: "\f081"; } .icon-facebook-sign:before { content: "\f082"; } .icon-camera-retro:before { content: "\f083"; } .icon-key:before { content: "\f084"; } .icon-cogs:before { content: "\f085"; } .icon-comments:before { content: "\f086"; } .icon-thumbs-up:before { content: "\f087"; } .icon-thumbs-down:before { content: "\f088"; } .icon-star-half:before { content: "\f089"; } .icon-heart-empty:before { content: "\f08a"; } .icon-signout:before { content: "\f08b"; } .icon-linkedin-sign:before { content: "\f08c"; } .icon-pushpin:before { content: "\f08d"; } .icon-external-link:before { content: "\f08e"; } .icon-signin:before { content: "\f090"; } .icon-trophy:before { content: "\f091"; } .icon-github-sign:before { content: "\f092"; } .icon-upload-alt:before { content: "\f093"; } .icon-lemon:before { content: "\f094"; } .icon-phone:before { content: "\f095"; } .icon-check-empty:before { content: "\f096"; } .icon-bookmark-empty:before { content: "\f097"; } .icon-phone-sign:before { content: "\f098"; } .icon-twitter:before { content: "\f099"; } .icon-facebook:before { content: "\f09a"; } .icon-github:before { content: "\f09b"; } .icon-unlock:before { content: "\f09c"; } .icon-credit-card:before { content: "\f09d"; } .icon-rss:before { content: "\f09e"; } .icon-hdd:before { content: "\f0a0"; } .icon-bullhorn:before { content: "\f0a1"; } .icon-bell:before { content: "\f0a2"; } .icon-certificate:before { content: "\f0a3"; } .icon-hand-right:before { content: "\f0a4"; } .icon-hand-left:before { content: "\f0a5"; } .icon-hand-up:before { content: "\f0a6"; } .icon-hand-down:before { content: "\f0a7"; } .icon-circle-arrow-left:before { content: "\f0a8"; } .icon-circle-arrow-right:before { content: "\f0a9"; } .icon-circle-arrow-up:before { content: "\f0aa"; } .icon-circle-arrow-down:before { content: "\f0ab"; } .icon-globe:before { content: "\f0ac"; } .icon-wrench:before { content: "\f0ad"; } .icon-tasks:before { content: "\f0ae"; } .icon-filter:before { content: "\f0b0"; } .icon-briefcase:before { content: "\f0b1"; } .icon-fullscreen:before { content: "\f0b2"; } .icon-group:before { content: "\f0c0"; } .icon-link:before { content: "\f0c1"; } .icon-cloud:before { content: "\f0c2"; } .icon-beaker:before { content: "\f0c3"; } .icon-cut:before { content: "\f0c4"; } .icon-copy:before { content: "\f0c5"; } .icon-paper-clip:before { content: "\f0c6"; } .icon-save:before { content: "\f0c7"; } .icon-sign-blank:before { content: "\f0c8"; } .icon-reorder:before { content: "\f0c9"; } .icon-list-ul:before { content: "\f0ca"; } .icon-list-ol:before { content: "\f0cb"; } .icon-strikethrough:before { content: "\f0cc"; } .icon-underline:before { content: "\f0cd"; } .icon-table:before { content: "\f0ce"; } .icon-magic:before { content: "\f0d0"; } .icon-truck:before { content: "\f0d1"; } .icon-pinterest:before { content: "\f0d2"; } .icon-pinterest-sign:before { content: "\f0d3"; } .icon-google-plus-sign:before { content: "\f0d4"; } .icon-google-plus:before { content: "\f0d5"; } .icon-money:before { content: "\f0d6"; } .icon-caret-down:before { content: "\f0d7"; } .icon-caret-up:before { content: "\f0d8"; } .icon-caret-left:before { content: "\f0d9"; } .icon-caret-right:before { content: "\f0da"; } .icon-columns:before { content: "\f0db"; } .icon-sort:before { content: "\f0dc"; } .icon-sort-down:before { content: "\f0dd"; } .icon-sort-up:before { content: "\f0de"; } .icon-envelope-alt:before { content: "\f0e0"; } .icon-linkedin:before { content: "\f0e1"; } .icon-undo:before { content: "\f0e2"; } .icon-legal:before { content: "\f0e3"; } .icon-dashboard:before { content: "\f0e4"; } .icon-comment-alt:before { content: "\f0e5"; } .icon-comments-alt:before { content: "\f0e6"; } .icon-bolt:before { content: "\f0e7"; } .icon-sitemap:before { content: "\f0e8"; } .icon-umbrella:before { content: "\f0e9"; } .icon-paste:before { content: "\f0ea"; } .icon-lightbulb:before { content: "\f0eb"; } .icon-exchange:before { content: "\f0ec"; } .icon-cloud-download:before { content: "\f0ed"; } .icon-cloud-upload:before { content: "\f0ee"; } .icon-user-md:before { content: "\f0f0"; } .icon-stethoscope:before { content: "\f0f1"; } .icon-suitcase:before { content: "\f0f2"; } .icon-bell-alt:before { content: "\f0f3"; } .icon-coffee:before { content: "\f0f4"; } .icon-food:before { content: "\f0f5"; } .icon-file-alt:before { content: "\f0f6"; } .icon-building:before { content: "\f0f7"; } .icon-hospital:before { content: "\f0f8"; } .icon-ambulance:before { content: "\f0f9"; } .icon-medkit:before { content: "\f0fa"; } .icon-fighter-jet:before { content: "\f0fb"; } .icon-beer:before { content: "\f0fc"; } .icon-h-sign:before { content: "\f0fd"; } .icon-plus-sign-alt:before { content: "\f0fe"; } .icon-double-angle-left:before { content: "\f100"; } .icon-double-angle-right:before { content: "\f101"; } .icon-double-angle-up:before { content: "\f102"; } .icon-double-angle-down:before { content: "\f103"; } .icon-angle-left:before { content: "\f104"; } .icon-angle-right:before { content: "\f105"; } .icon-angle-up:before { content: "\f106"; } .icon-angle-down:before { content: "\f107"; } .icon-desktop:before { content: "\f108"; } .icon-laptop:before { content: "\f109"; } .icon-tablet:before { content: "\f10a"; } .icon-mobile-phone:before { content: "\f10b"; } .icon-circle-blank:before { content: "\f10c"; } .icon-quote-left:before { content: "\f10d"; } .icon-quote-right:before { content: "\f10e"; } .icon-spinner:before { content: "\f110"; } .icon-circle:before { content: "\f111"; } .icon-reply:before { content: "\f112"; } .icon-github-alt:before { content: "\f113"; } .icon-folder-close-alt:before { content: "\f114"; } .icon-folder-open-alt:before { content: "\f115"; } |
| URL | http://zero.webappsecurity.com/resources/css/main.css |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | Apache-Coyote/1.1 |
| Request Header - size: 277 bytes. |
GET http://zero.webappsecurity.com/resources/css/main.css HTTP/1.1
Host: zero.webappsecurity.com User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0 Pragma: no-cache Cache-Control: no-cache Referer: http://zero.webappsecurity.com |
| Request Body - size: 0 bytes. |
|
| Response Header - size: 347 bytes. |
HTTP/1.1 200 OK
Date: Mon, 14 Mar 2022 07:13:42 GMT Server: Apache-Coyote/1.1 Access-Control-Allow-Origin: * Accept-Ranges: bytes ETag: W/"15037-1360116138000" Last-Modified: Wed, 06 Feb 2013 02:02:18 GMT Cache-Control: max-age=2678400 Expires: Thu, 14 Apr 2022 07:13:42 GMT Content-Type: text/css;charset=UTF-8 Content-Length: 15037 |
| Response Body - size: 15,037 bytes. |
.btn-info {
background-color: #0098D8 } /**************************************** Menu top ***************************************/ .top-menu divider-vertical { height: 57px; } .top-menu .navbar-search { margin-top: 14px; } .top-menu .label { margin-top: 14px; } .top-menu .nav > li > a { padding: 18px 10px; } .dropdown a.btn { color: #ffffff; } .dropdown .modal-footer { padding: 7px 15px; } .dropdown-menu .modal-body a { padding: 3px 0px; float: left; clear: none; } .dropdown-menu a.link-modal { padding: 3px 23px 3px 0; float: left; color: #4572a7; } .dropdown-menu a.link-modal:hover { color: #4572a7; text-decoration: none; } .navbar .bar-root { margin-top: 10px; } .navbar .bar-root .dropdown-menu a { color: #999; } .navbar .bar-root .dropdown-menu a:hover { background: #222; } .navbar .bar-root .dropdown-menu img { border: 1px solid #888; margin-right: 4px; } .navbar .bar-root .label { position: relative; top: -9px; } /*#####################################################################*/ body, html { height: 100%; } .wrapper { min-height: 100%; height: auto !important; margin: 0 auto -121px; } .push { height: 147px; } /*#####################################################################*/ div.item img { width: 940px; height: 401px; } /*#####################################################################*/ .content { padding: 40px 60px 40px 60px; min-height: 100%; } /*#####################################################################*/ .row.divider:last-child { margin-bottom: 40px; border: none; } .row-divider { border: none; margin: 10px 0 21px; border-bottom: 1px dotted #0098D8; } .content-divider { margin-bottom : 10px; margin-top : 10px; border: none; border-bottom: 1px solid #0098D8; -webkit-box-shadow: inset 0 16px 8px -20px rgba(0, 0, 0, 0.4); -moz-box-shadow: inset 0 15px 8px -20px rgba(0, 0, 0, 0.4); -webkit-mask-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0), black 20%, black 80%, rgba(0, 0, 0, 0) 100%); -moz-mask-image: -moz-linear-gradient(left, rgba(0, 0, 0, 0), black 20%, black 80%, rgba(0, 0, 0, 0) 100%); } /*#####################################################################*/ #nav { margin-bottom: .5em; } #nav > #pages-nav { padding: 0; margin: 0; border-top: 1px solid #A1A1A1; } #nav > #pages-nav > li { position: relative; top: -1px; float: left; padding: 0 40px 0 0; margin: 0; list-style: none; border-top: 1px solid #A1A1A1; } #nav > #pages-nav > li:last-child { padding-right: 0; } #nav > #pages-nav > li > a { position: relative; top: -1px; display: block; padding: 15px 5px 5px; color: #888; text-transform: uppercase; border-top: 1px solid transparent; cursor: pointer; } #nav > #pages-nav > li > a:hover, #nav > #pages-nav > li.dropdown.open > a { color: #0098D8; text-decoration: none; border-top-color: #0098D8; border-top-width: 1px; } #nav > #pages-nav > li.active a { padding-top: 12px; top: -2px; color: #0098D8; border-top-color: #0098D8; border-top-width: 4px; } #nav > #pages-nav > li > a > .caret { position: relative; top: -2px; margin-left: .5em; } #nav .dropdown-menu a:hover { background-color: #0098D8; } #nav .dropdown-menu > li > a { padding: 6px 12px; } #nav .dropdown-menu i { margin-right: .5em; font-size: 14px; } #nav .dropdown-menu::before { content: ''; display: inline-block; border-left: 7px solid transparent; border-right: 7px solid transparent; border-bottom: 7px solid #CCC; border-bottom-color: rgba(0, 0, 0, 0.2); position: absolute; top: -7px; left: 9px; } #nav .dropdown-menu::after { content: ''; display: inline-block; border-left: 6px solid transparent; border-right: 6px solid transparent; border-bottom: 6px solid white; position: absolute; top: -6px; left: 10px; } /*#####################################################################*/ #welcome { padding-left: 90px; text-align: center; } /*#####################################################################*/ i.icon, .slash, i.icon-middle { margin-right: 5px; color: #0098D8; font-size: 18px; line-height: 18px; } i.icon-middle { font-size: 20px; margin-right: 10px; line-height: 30px; } /**************************************** Footer ***************************************/ .footer { margin-top: 0; line-height: 12px; border-top: 1px solid #292929; } .footer-inner { padding: 15px 0; font-size: 12px; background: #111; color: #999; } .footer a { color: #999; } .footer a:hover { color: #FFF; text-decoration: none; } .extra { border-top: 1px solid #E5E5E5; background-color: whiteSmoke; } .extra-inner { padding: 20px 0; font-size: 11px; } .extra span { color: #666; cursor: pointer; } .extra h4 { margin-bottom: 1em; font-weight: 400; } .extra ul { padding: 0; margin: 0; } .extra li { margin-bottom: .6em; list-style: none; } /***********************************************************/ .hero-home { background: url('../img/online_banking_hero.jpg') no-repeat; color: #0082D8; position: relative; } .hero-home p { color: #0082D8; } .large-btn:hover, .large-btn:active, .large-btn.active { background-color: #5BB900; } .large-btn { font-size: 24px; padding: 12px 32px; font-weight: bold; margin-top: 15px; background: #65C31F; color: white; border-color: #57AF17; font-weight: bold; } .text-shadow { text-shadow: 1px 2px 5px black; } .btn.text-shadow { text-shadow: 2px 1px 1px black; } .feature-description { border-radius: 15px; padding: 15px; position: relative; background: #383838; } .margin15 { margin-bottom: 15px } .margin7top { margin-top: 7px } .margin20top { margin-top: 20px } a.actions { padding: 4px 9px!important; border: 2px solid #A1A1A1; border-radius: 4px; font-size: 11px; line-height: 1; margin-left: 20px; text-transform: uppercase; margin-top: 10px } .accordion-heading { background-color: whiteSmoke; } .footer.fixed { position: fixed; bottom: 0; right: 0; left: 0; } .carousel-caption.custom { top: 0; width: 200px; background-color: rgba(0, 0, 0, 0.8) } .item > img { margin-left: 230px; } .carousel-control.custom.left,.carousel-control.custom.right { font-family: 'Helvetica Neue', Helvetica,Arial, sans-serif; background: white; border: none; color: #2F96B4; top: 50%; } .carousel-control.custom.left { left: -50px; } .carousel-control.custom.right { right: -50px; } .button-large { font-size: 20px; padding: 20px 50px 20px 50px; } .carousel-btn,.hero-btn { position: absolute; border-radius: 15px } .carousel-btn { bottom: 80px; left: 27px; } .hero-btn { right: 130px; top:35%; } .signin-controls input { padding: 8px 15px 8px 50px; background-color: #FDFDFD; width: 255px; display: block; margin: 0; box-shadow: inset 0 0 2px rgba(47, 150, 252, 0.8) } input.login { background: url(../img/user_login.png) no-repeat; } input.password { background: url(../img/password_login.png) no-repeat; } .account_summary th { color: #AFAFAF; } .account_summary tbody tr:last-of-type{ background-color: rgba(3, 152, 252, 0.1); } .account_summary .activities { text-decoration: underline; } span.headers, span.link { cursor: pointer; color: #333; } span.link { color: #08C; text-decoration: underline; } #account_summary .accordion-toggle { text-decoration: none; } .top_offset { padding-top: 70px; padding-bottom: 20px; } div.pictured { position: relative; } div.pictured i { position: absolute; top: 1px; left: 1px; font-size: 18px; background-color: #E5F2FE; padding-left: 13px; padding-right: 13px; box-shadow: inset 0 0 2px rgba(47, 150, 252, 0.8); border-top-left-radius: 2px; border-bottom-left-radius: 2px; padding-bottom: 7px; padding-top: 7px; color: #2F96FC; width: 16px; height: 22px; } div.pictured textarea { box-shadow: inset 0 0 2px rgba(47, 150, 252, 0.8); } hr.wide { margin-bottom: 30px; margin-top: 30px; } /* Sidenav for Docs -------------------------------------------------- */ .bs-docs-sidenav { width: 228px; margin: 30px 0 0; padding: 0; background-color: #fff; -webkit-border-radius: 6px; -moz-border-radius: 6px; border-radius: 6px; -webkit-box-shadow: 0 1px 4px rgba(0,0,0,.065); -moz-box-shadow: 0 1px 4px rgba(0,0,0,.065); box-shadow: 0 1px 4px rgba(0,0,0,.065); } .bs-docs-sidenav > li > a { display: block; *width: 190px; margin: 0 0 -1px; padding: 8px 14px; border: 1px solid #e5e5e5; } .bs-docs-sidenav > li:first-child > a { -webkit-border-radius: 6px 6px 0 0; -moz-border-radius: 6px 6px 0 0; border-radius: 6px 6px 0 0; } .bs-docs-sidenav > li:last-child > a { -webkit-border-radius: 0 0 6px 6px; -moz-border-radius: 0 0 6px 6px; border-radius: 0 0 6px 6px; } .bs-docs-sidenav > .active > a { position: relative; z-index: 2; padding: 9px 15px; border: 0; text-shadow: 0 1px 0 rgba(0,0,0,.15); -webkit-box-shadow: inset 1px 0 0 rgba(0,0,0,.1), inset -1px 0 0 rgba(0,0,0,.1); -moz-box-shadow: inset 1px 0 0 rgba(0,0,0,.1), inset -1px 0 0 rgba(0,0,0,.1); box-shadow: inset 1px 0 0 rgba(0,0,0,.1), inset -1px 0 0 rgba(0,0,0,.1); } /* Chevrons */ .bs-docs-sidenav .icon-chevron-right { float: right; margin-top: 2px; margin-right: -6px; opacity: .25; } .bs-docs-sidenav > li > a:hover { background-color: #f5f5f5; } .bs-docs-sidenav.affix { top: 90px; } .bs-docs-sidenav.affix-bottom { position: absolute; top: auto; bottom: 270px; } /* Responsive -------------------------------------------------- */ /* Desktop large ------------------------- */ @media (min-width: 1200px) { .bs-docs-container { max-width: 970px; } .bs-docs-sidenav { width: 258px; } } hr.gray-dotted { border-bottom: 1px dotted #D9D9D9; } .blog { padding-right: 30px; } .blog > div { padding-left: 10px; } .blog p.date { text-align: right; padding-right: 10px; } button.signin { margin-right: 5px; border-radius: 20px } button.signin > i { padding-right: 10px; } .accordion-inner form { margin-bottom: 0px; } .board { background: white; padding: 3px; box-shadow: rgba(0, 0, 0, 0.3) 0 1px 3px; margin-bottom: 25px; -webkit-border-top-right-radius: 4px; -webkit-border-bottom-right-radius: 4px; -webkit-border-bottom-left-radius: 4px; -webkit-border-top-left-radius: 4px; moz-border-radius-topright: 4px; -moz-border-radius-bottomright: 4px; -moz-border-radius-bottomleft: 4px; -moz-border-radius-topleft: 4px; border-radius: 4px 4px 4px 4px; -moz-background-clip: padding; -webkit-background-clip: padding-box; background-clip: padding-box; } .board-content { display: block; height: 100%; -webkit-border-top-right-radius: 3px; -webkit-border-bottom-right-radius: 3px; -webkit-border-bottom-left-radius: 3px; -webkit-border-top-left-radius: 3px; moz-border-radius-topright: 3px; -moz-border-radius-bottomright: 3px; -moz-border-radius-bottomleft: 3px; -moz-border-radius-topleft: 3px; border-radius: 3px 3px 3px 3px; -moz-background-clip: padding; -webkit-background-clip: padding-box; background-clip: padding-box; background: #F3F3F3; background: #F3F3F3; background: -webkit-gradient(linear, left top, left bottom, from(#FBFBFB), to(#F3F3F3)); background: -moz-linear-gradient(top, #FBFBFB, #F3F3F3); } h2.board-header { font-weight: normal; letter-spacing: -1px; padding: 5px 10px; margin: 0; text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.2); font-size: 24px; line-height: 36px; } .board .table { margin-bottom: 0; border-collapse: collapse; border-spacing: 0; } .board .table th, .board .table td { font-size: 12px; padding: 5px 20px; font-weight: bold; border-bottom: 1px solid #DEDEDE; } .board .table thead th { vertical-align: bottom; } .board .table td { border-bottom: 1px solid #DEDEDE; border-top: 1px solid white; padding: 5px 20px; text-shadow: 0px 1px 1px white; } .board-content .control-group { margin: 0px; padding-top: 10px; padding-bottom: 10px; } .board-content hr { margin: 0; } article form { margin-bottom: 0 } #nav > #pages-nav > li.active div { padding-top: 12px; top: -2px; color: #0098D8; border-top-color: #0098D8; border-top-width: 4px; text-decoration: none; } #nav > #pages-nav > li > div { position: relative; top: -1px; display: block; padding: 15px 5px 5px; color: #888; text-transform: uppercase; border-top: 1px solid transparent; cursor: pointer; text-decoration: none; } .number { margin-top: 6px; width: 40px; height: 40px; font-size: 28px; font-weight: 600; text-align: center; line-height: 40px; color: white; background: #08C; border: 3px solid white; box-shadow: 1px 1px 3px rgba(0, 0, 0, .4); border-radius: 40px; text-shadow: 1px 1px 2px rgba(0, 0, 0, .4); } ol.questions > li { padding-bottom: 12px; font-size: 15px } div.disclaimer { border: 1px dashed #0098D8; margin-top: 10px; padding: 10px; } @media (max-width:979px) { button.signin { margin-left: 15px; border-radius: 20px!important; } } @media (max-width: 260px) { .nav.float-right { float: left!important; } } @media (min-width: 261px) { .nav.float-right { float: right!important; } } |
| URL | http://zero.webappsecurity.com/resources/img/main_carousel_1.jpg |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | Apache-Coyote/1.1 |
| Request Header - size: 288 bytes. |
GET http://zero.webappsecurity.com/resources/img/main_carousel_1.jpg HTTP/1.1
Host: zero.webappsecurity.com User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0 Pragma: no-cache Cache-Control: no-cache Referer: http://zero.webappsecurity.com |
| Request Body - size: 0 bytes. |
|
| Response Header - size: 349 bytes. |
HTTP/1.1 200 OK
Date: Mon, 14 Mar 2022 07:13:43 GMT Server: Apache-Coyote/1.1 Access-Control-Allow-Origin: * Accept-Ranges: bytes ETag: W/"78506-1358497020000" Last-Modified: Fri, 18 Jan 2013 08:17:00 GMT Cache-Control: max-age=2678400 Expires: Thu, 14 Apr 2022 07:13:43 GMT Content-Type: image/jpeg;charset=UTF-8 Content-Length: 78506 |
| Response Body - size: 78,506 bytes. |
����JFIFHH���ExifMM*V^(1f2x�i��HHPaint.NET v3.5.102013:01:16 15:54:06������(HH��XICC_PROFILEHLinomntrRGB XYZ � 1acspMSFTIEC sRGB���-HP cprtP3desc�lwtpt�bkptrXYZgXYZ,bXYZ@dmndTpdmdd��vuedL�view�$lumi�meas$tech0rTRC<gTRC<bTRC<textCopyright (c) 1998 Hewlett-Packard CompanydescsRGB IEC61966-2.1sRGB IEC61966-2.1XYZ �Q�XYZ XYZ o�8��XYZ b����XYZ $����descIEC http://www.iec.chIEC http://www.iec.chdesc.IEC 61966-2.1 Default RGB colour space - sRGB.IEC 61966-2.1 Default RGB colour space - sRGBdesc,Reference Viewing Condition in IEC61966-2.1,Reference Viewing Condition in IEC61966-2.1view��_.���\�XYZ L VPW�meas�sig CRT curv
#(-27;@EJOTY^chmrw|������������������������� %+28>ELRY`gnu|����������������&/8AKT]gqz������������!-8COZfr~���������� -;HUcq~��������� +:IXgw��������'7HYj{�������+=Oat�������2FZn������� % : O d y � � � � � � ' = T j � � � � � �"9Qi������*C\u����� & @ Z t � � � � �.Id���� %A^z���� &Ca~����1Om����&Ed����#Cc����'Ij����4Vx���&Il����Ae����@e���� Ek���*Qw���;c���*R{���Gp���@j���>i��� A l � � �!!H!u!�!�!�"'"U"�"�"�# #8#f#�#�#�$$M$|$�$�% %8%h%�%�%�&'&W&�&�&�''I'z'�'�( (?(q(�(�))8)k)�)�**5*h*�*�++6+i+�+�,,9,n,�,�--A-v-�-�..L.�.�.�/$/Z/�/�/�050l0�0�11J1�1�1�2*2c2�2�3 3F33�3�4+4e4�4�55M5�5�5�676r6�6�7$7`7�7�88P8�8�99B99�9�:6:t:�:�;-;k;�;�<'<e<�<�="=a=�=�> >`>�>�?!?a?�?�@#@d@�@�A)AjA�A�B0BrB�B�C:C}C�DDGD�D�EEUE�E�F"FgF�F�G5G{G�HHKH�H�IIcI�I�J7J}J�KKSK�K�L*LrL�MMJM�M�N%NnN�OOIO�O�P'PqP�QQPQ�Q�R1R|R�SS_S�S�TBT�T�U(UuU�VV\V�V�WDW�W�X/X}X�YYiY�ZZVZ�Z�[E[�[�\5\�\�]']x]�^^l^�__a_�``W`�`�aOa�a�bIb�b�cCc�c�d@d�d�e=e�e�f=f�f�g=g�g�h?h�h�iCi�i�jHj�j�kOk�k�lWl�mm`m�nnkn�ooxo�p+p�p�q:q�q�rKr�ss]s�ttpt�u(u�u�v>v�v�wVw�xxnx�y*y�y�zFz�{{c{�|!|�|�}A}�~~b~�#��G��� �k�͂0����W�������G����r�ׇ;����i�Ή3�����d�ʋ0�����c�ʍ1�����f�Ώ6����n�֑?����z��M��� �����_�ɖ4��� �u���L���$�����h�՛B��������d�Ҟ@��������i�ءG���&����v��V�ǥ8��������n��R�ĩ7�������u��\�ЭD���-�������u��`�ֲK�³8���%�������y��h��Y�ѹJ�º;���.���!������ �����z���p���g���_���X���Q���K���F���Aǿ�=ȼ�:ɹ�8ʷ�6˶�5̵�5͵�6ζ�7ϸ�9к�<Ѿ�?���D���I���N���U���\���d���l���v��ۀ�܊�ݖ�ޢ�)߯�6��D���S���c���s���� ����2��F���[���p������(��@���X���r������4���P���m��������8���W���w����)���K���m����C ��C ����"�� ���}!1AQa"q2���#B��R��$3br� %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz��������������������������������������������������������������������������� ���w!1AQaq"2�B���� #3R�br� $4�%�&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz��������������������������������������������������������������������������?�@! ���Zi,��Lch�N�p{�PNp[�<�+�>�B?�1?��N+��F@�����c��Ɯ �\CHcW$�<�p �����$�>a�zR�X9=x‸|���3ҜC)����<GjS�ۜ��qh!J�>`I>�����SK������q��ߚv��G��R(��>��?���B�Ӱ l$��4�@y�($�=x�.�r� �Ѡ b08 ޔ�6�������8\6y4#a ��s�5�8PKB)�m���@#;O$��i� �2#�-І�z��z�R��ќ����҅S�H��Q��F���Jh �����Ü�f��#'<�zU0�7$�;s�p�8��Ф�@�ا ����@ � |�\R��8��rT} I'q>�����4HF:�Ҳ��=s�֑�(���N�0i�p"�lz|ݿ�T�p;����F1��-ר)Î1�~��b<�?o��:Hb/#��I��oNh�l�=�i�㞹�: �RF�}Xz�t��:�S��zt�d�+��q֩�FN0;�)AVǠ�"@��iO ��=�c����H�?x�<�Ib� m��2N#���ov������ .{f��{�������A���$�P�&s���sA�Q�GR3(�N�9���8��ʒ��R�H�s�R�u���.�`g�#�Q`BH��M�ހ���w��z�S�p�P�=F�3בJ9���ў0{�E<�x��S����h>�<P�'��� �!z�)�9� �q֫��Q�ǽZn��֫���*����r:~��21�O8�*u��Қ�K?T�)�A9�L���G_ZIRNFOAH:���X}OZV�tn}1H��I��Zv�' ��[��+��4��O,� �t�$.y �J����������S���`.v知7,=z�W@p� ��X0<�t>b@휊]�����$d�\u�Rw��NO�曼c9ڇ��C$��=��z�݆H�nS��Mg,�,z�z�B��q���ub�c�x�}� ��ɎA��u�1���*��8�<u�~���.6�℅�f� �8�^j9�Xӊ�tS-�:����J������ԅ�\� ��݅�G�j����$��lVE��g��Z�r�q�֚�P���j���_���~�R�v�ޕF]P������X���ӕX���9>��_S��} =듸�P��CҠ:��y���J�W�G\u���{S�PR>�=돋Q�-�j�j8��Ga�%; �����%��\rh7Y\���ڹ�}��|��OK��v�9�ީO�-� �pv�O�$W�N�u�(��ޔ�y� 0'?��K��p�:X5�<���r��O�k���Vp3�v�Zг�P�C����m����r:�'�ֶ,��~��\���������J�FI$��Zɐ���V�9�$c�}��b�9<�ƴ ��n;�ֶM2.^PX��c�O#��l�������=����{�N��&8�՛uFp��N2Ek�I�w���H�r0:Ri3E#N���SK��=j��I��\ҩ�܀A㿭dՍ�Lv7b�ߜ3Bp��/cM�w ��=�!�`�V'g!{b�1�r2Ojq ���1O��*�ri8 ��s�qϷjk� �q�s�L�99S�4rs�8�ϥ-�������CҐ}nj�?����b�<u�魍ŏ������s��1�Qڐa������t���!v�Ӝt�H�t�~����1�;�H�3�G�1�{�����>� �#��Mn8�'-�!���d�ڍ��#*;��C��/�Fs�=(Pq�3�^���9��n��lҡIJi��$�4�����77N��� qܓޓ\�y�⇰��n�x��9�r� !@FGB)A88$��B�8�c� r�R��G$})O�=8�� ��g�Jw|�r8� ���4��+DZ�O�@wd��&�3�4�K>�=idž?/^�ҋ��B��ւG�?��+����)�u���$sM�p�H��I�r2��gh�ԛ�Ie�J6�����3#y��Ҝ����~=i��˞Grx���b ��)ÚnpNq�aG�!䀁�9�����}=)s��nH���n�V �88����rz��RrF1��@��}OaN�8��,{�9�8)��ǭ/ dsD&J���My�����B�.@bZT���j��/���֣ld�'�z�h�y�#8�:��@�h�'��+��ߍLQG^�y��9��1I�a�n�\�4���:ZU��@�✤�I����$ �=8�oL6I⃟^��)q끞M?QvF:���c���RP��Ӟ���OnƤ!A'�/]�#ʢ���'=�7t�2?<�*\�U���w����A���Wg�n�F~^�4�v0H#����r���r��J[�A����U|��RJkL�Ϲ�u��\��#�+�c����R2����<����j}����[9#v4��q��#�Us�pzdҬ�$u���� �a����$c'#��Y�pc�EX�� 21O�.串�i�N��?�z�_r���`Ա7<~4�QXp�e���9��Ո�N���Ӝ����S��e:1'(G�Ud����[�1�_�S��G�J���i!?)�#�{Pzᶞ:Ջ�0��9\pz�'���;U\v����q�9=�iT���#4�s�i�����}�K ���Z{�9�x�8,H횧��46x��:f��s�ǿz\��};�Ԁj��?�)8�o����I�qHa��"�����ps�c� ����g�I�� v8RyFO���)41�R��:h�$(\v��cr�j!t����sYsY�Cn@c��M]�;A����k��r����mPGL}*ԯ����%wm�1���g�O�Sk�����ڡ��R?��櫙6G�6��OJ�5K�Vtbx� ���x$�+����fÓ���\�diʺ���v�0x�`�:��F���j-j�pb��\��z��{��)&�:f����O�N�CY7:�%�y�לV%��6T9�3ҳn��q�>�!ݝ���<��2i �w��\�H�ZL��7�SqV���^�`c*=^��fq��N{�5��O e�v��Zذr�9���՜���3�#=;T���p��7OB~� µ,!ڤ����r���n�������*\���#��1Z��>���#�W��\A�?J��r�7͓���ZW�s��{w�t$�$��#��<q�ߠ��@��i��y�;Mt:f�0� �3���#MU�s�5�eⅆA��}8��6�"Qv=�O��1�Z��� ���:��9���7#>j�ӼihG�F� [�����=cD��Fя¸k/��0�u��VFO���ҴU������5� I���z�+�:�g�s��➗��`=*��z���'�=q֠��C)�lUv��P=*A8` b =0hn�,���s����<� �X�g��M �s��R�4�x��G�qN�9�G�!h7N}��J��?�R��1���P�#�a6O��8�R���v����@��� �X�'��H�#�J@ f`A�)�v�m9��ñ!H<�SX��S�ZB�.z��HGF=� 2�t�)�y<dz�'�����G�1�s�����<p8���A �#�8�n�/# 暤6�ӚZH��IR>���1�z{R���:�[C���7qp��<m4tA �C��0=i�rs��F���})T.:Κ~`}OO�8c'�*S�2�r:z�/���\�FpO~�~P8��Zjf8� �L9�<����ѻ�)�X�[�=F� �h' �H ��N$m��"�����X`��<��z88�on��r�H��4�*��g��8�Q��,y����O=}iۈ �A�����r���ZO��n��.тI�>��A`O���J\�`�4['�%���9�H98#�>�(��rI��9�x���N���ߡ�I�1���F =3�;�1�7 A���lT������y���R���(N;�����A��=1֗��O�52��?�<��t���Ln2�й���Ɵ�@������s�C*�$w��=3��sۮE6.��^���c��sMl!�e�����zVv��w����đ�@�w#�1��Q��(2q��������UFH=��O'ˀ@Ǡ�Ck��s������3ޠi��z~���8�$�*�D�(np~n��/��ǎ~��p'��D�(�du�u Q,�pq���4����G`j��nݸ����#78�Y:�娲y���ǧ�?ˀ:s�Z ��n�P�J�s1l���uIiW���L�>�?JF��2����m�\�@ �Ԃ+RM�Ѐ;�m�7�"�B�!}F+f*�4�EӶx5͜�9�$tǥm!&��8� |���L��s��8��f�O��n*�п�Tc#ҳuj�Z�i����I��� 9�^!��q9�i�e�W�}*f��\�dq�ږ;�V*��T<�g�H�sMVSb��H'�z֕��L���$�+g�Z6.p��\k܇L��^�1�5r�'�j³�rW�Z6gp�O��l�" $�~3������j��R7x�3�����'�5���RT5$�A3�f�\�6��4�0���N8�M�EْA9��T��8�����ppED�Crx�r�@���C8S��5.G(��� ��J������R���{��3�2ke+�Z>H���E�c�zps���&A8�q�~������P��u�?x��vy����r <�jZ��u ;���yu�F}�X�e�{�W=����F:b���RWu|�gc�qUS@9n=z�\���a�[�ֱ.u�V�ϡ��GU�A�X�;=O$|�ȭ�WvFH�Ҽ��Y��I_z贽P˸j�U��Gp���r뚂k���l�1'�b�8$dq��n��d>[��<v�C5{X�#�!�-q^#բ�~|Vf��0$>���rڞ��6<�`�=kI�CH���u s��:sڹ��%���g��w�N�$<�z������ta�9�Z&�#�O. ����&��c�G�z��]���*#3�9z�H�#��.vY�O�:0GJ�\���˭6�D��Tg��Y��!�)����9��p�9[R:�23��J��6H�=�Ixfe,���~ubѲ����T��;�o�cH�� ּD+`�\���@F�W�I�E�ʲ�І����Ε�U����y�CqӯJ�K�@�\�����s�L�[`l�y��/���=O��g��*r�<՛.��"PN};�U95�a����"�[�ӹo(na�������n���As�[��Y�$zVu��m���y9�R���}����'i�=ET�P��n]H� �^�=�������W����?���Y3PrA5�xs�I) r#�:f�=<��;����]�Ɇ��A��M�D:q�z����įᗞ�z�Wb�9��J�=,�Y�����2V��$l��.��\�tBVv;K]O��ןzճ�V!��au�b3��3��5��ީ�H�#�\g��*�a�����MY�q�'���K[�@���z�Q�nq���T�-#Y~���+~�9'��E�&3��J~�T�������`�m�چ�ۏ9�n0�~��q�с��N�'?@)�~l��� 1�0bs��Z^CCH����R�w-�'4r1Ȥ~sӧ^���Wzp9��H��Oa�J��8�!<g�꾔i�����i��8��� ��\�i?7aޒ�08��) z�oj:� ����ZN�`bN3�AH�끞��=�\ӆ��7~i0Þzf�5P�jq8B�4�[��lQmCr�y �>�ԣ"NXr8��bI�ܑ��Zr�pq�դ@2�pO�0)�9�c�10T�;�{w��+��~�/ �I#�_�@q�Fi�>Ps���R��N��@1C3�p��7)���ѷ�I�q���?��� �FrA��(t�B�b��ɥQ����� đ�qߧz\���S_s73�Әd��;`�^~�i�F3��J��1���ƀ�c�f�+�����8\��(e��qO�<�F^��c8�}:Q���OZQ�)_���0 �)��� �r3J��iF��)�z�8��r�s�L.�-����9ɤ$��s�>�6�bL�c�R���#���S0��#�=1B.�s�ƞ��BE���qۊq㩦�`.��Mvڤg��`$`��k�#��ب���=�#ˀ�'�z�Jð�|�=}Gj�wn���R�c���;㩧���� ��A�Us�����������U� �u���;w6y'�`+ U��N��{T.�v�Ǟj���N8� KH�'��v�%P��V���B2�d��[:b�6��"��m��eTt����@*3یQ�D�c"=&20���J��(T2����o�`�zV��@ v�2uˮ���⤏Oh�r����j)-�$�hpA����;� Ւ���ҵ�>��\S��r�s�ڧ�9��]i�[G务�!S��8��[sj���To�B�`篭e(#X�9 �G$�q֡6�I%>��tm�QԚ��%�yȬyQ��rKq��W9�U|�e �pO_A[s@P�O�:~5D�W� fᦃL�d�U���>��o�Q���O�Q�3�=}j�� �Oֲ��ZW6�ۨYD�pA���>��g��H ^;��VX�U��~F���C�98�ZF�V��6�ծѓ����'�[x��Es�\ʄ-�inu ��A�bj���N�������>+��zs����j�>c9S랕f;� �9Q�}*c�w�n����� �)��+�Ny��;�5��~fa�8�5?��w���j�Z�R�[i��H9���@�*pN�`)���I��T2p��X0/�iS��3֫���@�V{��z�Jw�5mi��$t�.����EYR�H�S�!�q��x�A�]Q��p �ָ�N� �{�W�1�á'��|JH����V]M��;ķ�+n�k�7�$�|��@�5����\��_3r��H�ef��w: >�#]��y��RI�\+9 ���L.03�1��+ �B�GN=)-:����eʜp{�u�����02:ֳ�i��c�2*��Y��\�g'��i���\�X_ݩ�G�:)����L��qҺ�:�;����H��.x���Rw�ᴋfE,~W2:~u�m �0����i�4XhrA�#�1���a�'��7t �S�Ԓ<�[V��U�f;���s[��~�V���[��@Rب��!=:V���rrIɩk����9t%����#b2�z��*��x�W��s��G+��ߊ�ul�Q*�ȩq9k�!FR8�MP��p������B�i#��x�W���8愣'b�Ι�u��ꎥr�w3v��k���@~�q'�Bh�S��z�5j�k}M;��/�\�ֳo��Ơ�As�9��I[���GJ�F�e;���pi�[M+�0X�ƺ=;C�t��O����QC�Y8��{T��7A��H�U9��Ҽ:c s���Y��v3��oF5���1eF8<�^Rv!���xp0�=+V���J�.v�Oм5�5���M.�~�c�济���ϡ�x9cP����=m�`S��W��(��Q�{W#�F�:�ڳ�O�R�.c��*U%��ҭi��I0���\,[���VZ�F�K�`��;i������r8�miWa��O=~��:^�$�j� ��C� P���Ш�fl��z ��b��ԓWbq��G<��t۰ʿ0q�k[�G�I�:v������&�$��敉��8��T��BaX.9�^�'�9�$���C�=y�y�,���Y��c#�ooƢk�;RuP�j����8���RN1�:���z�I��k�c�O�In5�e#>��cJ0N++�rF;�Tm�bBK�����,k�A8��Lc�uzVO������=��^��a���Yl�f�57ez�w��Y��lu�5N�xlS�S��mw�=�D����0`���(��#=�$r�/l�:Ո��>S���j���G\����kr~W =*�٣`Fz�8��8�����1s"�<s���� ũ���8<��zRJ�8''"��!N7Oh�Xs��>_�K&2�ךNI۟��V�ăړn�#�q�˓�Z[�� ����$�jdm���<S�$��ҝ�+�8�t�c��M �$�sK��<�ҁs�qڜ3�ױ���3� �7sC%�#��:�ql��=x���nj�8�X��P�1�� �~���?�5����: y�I�zP����9b~��c�i����8�)$�}����qc��8��#0�y����c�=sN�e?.=�Z����T@[��=(R ^��;rǥ@A�o�J��3�?R0����e` ���Q�!��`ݏ�@�d���9#�#���8'�)Tg���S-!���Tѫ�'�ӭ�?�'�CV�2w��Nk L,D0.^��I;r?K�x�� j{x�������J%arI#Js�1P;�:V��=3�r)Y&㎆�1��gp8�F�RL�� j�^C��ӽDВ���R���<G]�#?Z���n�q��M��`��+f�E��A>��cds�ݗ6$s�jUq�O�Uن�֫^Α�}+}-����y�j32n���Eަc��|��:�x;�Y�j���Wi �;Z���1�����#�TRꀜ�${Vni��3j��3Ԩ�U9dV ǩ�w��2;����w5�����b�o$t�j�� ��t"��^s��Pel z��\I�'#�8�i$e�뎽*�D��A�5���M2�N;��$���ћ��C�:u�qx�[�㚃W�t,eM��z�'��c~�#Ҹ''{#��;k+ĕb� ���וZx��;�1|���4mad(��n��i95�\�R� ��j��"2����E�DT�q�梑ö�I�V����2� ]�b��X�9��(�ӵ�\�c֭��(,����@�#��pz�U��r�Ϻ�g!�x�j�m�+���M������'ץXI���8��;i�lքNpT��ס��s�״�##'���_��!}��[b���d�h;��Z���i���9���U�L��t�z��`d�nj+�\)'8�v�*��;�:�����H�p#���=�����#�1X����I!����8�}����4�W<s��9���+!-�B��Z��G����m�;��S�ML��4��j�oR��E��,�`��5WP��`C�ˎ}A�Co jE��s�To�?��'Npy5<����6�D�Ha�w��+�c��'��xoXi �=�Ӵ��e�ԏn�|���4tX$� ��rq]&�h2��{~�am2��;� t1�" ���h�]L�Z `��B��VN��O�[i{ֆ�8�H`3��¹�nu.�*��bH�!��c���M�4�Y� �,k��gQ)S&H�ɬͬ��i�1��l�;I���#��S�Ce}5�c����m�s��(^8'֝����u�g.~`?�X�]a-ٺv�svw�GȕH�hԵy]v�\���݁[\���'�ps��#Z���`�9����G|��NՏ�@ +eO͚��ݜM�O�?�=�5!,����� t�5���9p���R�X���r:��h�?2^��:u�c�x��趸���Q+�;�VjU"�����ksM���Sv��²Z�(�{�:�Ӑ���Fzҍ6��]���B����]n�kH���{�ô�>\`�'���5x� �C�We8#�l� M��l��Q�J<'?�UV�S��H�Oz�}w ��|��+f݈�P ��<���Z�Ƅ�;��\F#%��ץyg���t�m峀=+����I#����eǙ���珮�IrDg OZ���5�]�������������a�֢�)�k��BQH�/���<��ӟ�Ú�u�95�Z6�s�<M�c����ZNc����5�VJ.撚h�}#S��ٵԷ�<�\e�Sā��g5� � +�9��c����:���F�=)�|���zW?-�T&#���TV����ܑ��K�]Վ��{���f� �3+��ұooYb,��w�5�����G��d�,,tk��&��)��e�X�u�Yy�j�؝�"��hgX���>c����1�P��T�Ĭ<�}��Q]��'-�����z\i<گά�����=���~c�q��� }LF>�`���T���?�3��?i+ ����l?7�S��˂7s��߽y����A�;�4 q��`/�jY���m�0e��g�.�_J�{?��*�9�kgLח$����4C�=_O�^��l��h�=��|9�+>D�ד]U��DX�S[�Ů�mXy�d�a��@ ���H����z�qϮA랢��1U�Q�)��Q�<``�R@m鎸�9�;�>��LCI �7\�B��I�����.I��8�1�x$��v�\����3��pzr8�����l��L�t�;89'�2=)���pۥ�{���� a��3�R��`�{�K�Gz�r�H�(@8`)�s�4�ـ�(\�6�JP2{n����|�tR�\�c��h?|��#+��9��� ���.3����h�.��9��2h�}zd}�SOp21N�[�^ԤrGO�S2O>��` YN;�J8�q�:��֜���D̓���d�*�͓�u#�K9��y<�k������fˊ#�?��5n�c��Vr6��=�oi�� �<g5�)ݚX�m21��8�(��;y8�S;AL��=�n�z�rz�t@aL�r9�p,9����x�Ud��?�jn4�4c��{�#�[����f늣`��9���c���AU9��Ҝ�23���Tў�����X�9�(�(��sZ8{Ws�x��0�)�s�^���J�2zc=�e\Z�\�����3T�,G{"�2��u���)��u��BI�cY�Gr3g�No�j���Mp�Y�s�Wf�E� ǵ4r�q��Y�HQ�r:Vm�5H�`!���4*}}qW�{��:w譲6���S˨�e��3`w"�X�N�r=kz+M�ALm=���'�>N��T��C�c��̖��9�֕m���Wۯ��6�'h���*���1m��>�r�ωH��8�M���'�����H9=�9Lj���99���<���%L��$W��$��oq^��@�H��θ[f*O�H��2��~�e)YXᡷ.0 '��[�Pc'4��/�i�+K]��)<�����,d$�Ԏ l��H==}Nk"*��;��KN_߀���Qz؉msb��#�S��J� �W�tD����We1�* ��I���S��UC�0@��r�\�Nx9>��x���@�CQ;� zڰ�lˋ�z w2��>�֤.J�3�?�bY��>�����eFx��f�KF9628�m8��x��q��1�<��~�~�Qcw �bR��2�ή�Q�l��Y�#dq�+���'���?�ڴc�P2��8�� ��խs?e�����r�LqS�l��ߊǵ���sܠNx�^��I�1��-随m�.:�I�XBye��u�"�p@Q����[��Ϟ��k9<chee�H���4���l��o�Y$��qҲ�4�$����Z�?��yH�Y���om�?�����H��Ze�4��A(�x'=��8�Y7�:���$r8�Ao�Ms�x$��/���}��:)$�Q�{U�*�A16��S[��L��.�x���e2�Dr3��s����#�6���}�*?�9�qz��&�c�L-����9�s)�whe� �z`~5J��%F��$in�Ȼx=2+J���k#�kk�Z�mt*�~Rɨ����g9=k��EQhsU�鲫[ȼ���*$�~G �s��=��0ǑT�0��&�Q��l��;p�q���b�9�8��� y��%S�������v�F%�J���"���>���:�<Vuź���8�*Fh�� e_Y[�N%/���b�9�-K�Ǘל�)5 �_�9�9���HT��0A�:�h�B��@�p)�X.�7K�J2��`�H�]����H�w��Y��KL�0 iA1++�zJ��Z�Fh��b�<S�5QT �X�uML�6C�G_zͺ���O��Zr�z '��g����U}s��X��M� �&��_/���9��WWFbl�c������=f��JF�s�Է!����l��>���$Ɍ�:⢻�V�z&�w�y�Zʺ�������8��=j�#��#�q�ָh~!i���kkJ���V7 d�j��E���t_�(�(Q�;t���N�D�+�1�P�|]�^H�+ȉ>��>���0<��}�����vg6���T��vc�&�)e]����]�� �!q��9<�F�n\?*r����*��s>�sev�������v6��+ԯP� S�zs��?Y�31t�Ã^n'���oJ��g*�?�X�Ӝ��K�c��֔�$@ ���g�H�0T��+ϕ9Eꎕ$�-_(̬H#�1X�`�S���sQ�jo8' ��ԙ��X�J��w�W���� ���5[�Ls�7V*^�ϒG9�K5ˑ�bG\��}j�-��.K�*\�)�n���syw1 �z�6�!|��H�֛�� �{M�oa�mM���H$p9�*�v��\6s�u��m?RVa�/�ٱ�C��'=)I4=�O<d7��_d�e�=*�2۴d���j9%�I�x��P�[���xgڠ���m3LUB@ �i�H�+�kZ�X�nNq��JSvW)���\�r�PqZ ��0��]�ET�D��<�{SnfE����"�4�d'��kp $��0p:R��@'��J�U��8�ђv����}a�aS��ӷj~v�E^O�M�x���o$u���@�R ��>���s��@�W�Jhm�g<t���A��3M��ȥ��ǿzQ�rr<qK�XR�H��ZO�I ӾE�ŏRA�c�dz�S�ʐ7�&��3�{Ҩ�˔�qN#-��0)� �v����A�I��4&9��<{SI$���9�M_c���Mb������Zi�`�g?JOa�wd���<ԉ�C�:�*$Uc�Ҥ���*��L@��'�>��r}ǿ_�����Bz��r8'�v��)�:��c���# �©�EI��@^k:�b[���к�8��f���\d���ןC�бa'�_�;z�E�1�=z��4�L����X#UB8�k�l�#b�GJ��P���bb�z}*��w��n�լ��������Ҫ��x+>�匸��I�0$>�ֹeQ7cU �H�U��5�铒����Y��ܧ<���A��(���[S���Jz\뭟 ����) {v��+�H����5BCg�+���Q5�J���X�̨J�}*��7'$t�P�d�^ry�ۻ���R��I�� �W�Z��� �Iu�� eN��Qv4�KC��XdgwLV��H��z�l&Q���=i��]g!}��j.��}I .>qש�@+� k��r0�r:Uv����O~��F͢N3��5n(A�o qX�W�0H'=�Z����T]̤�b]C��I����(X�N8��sX���yd������g^�(���zλբ(Ap1�U}R'ÞA�=���z�-J�lu�$ڭИ�Sׯ8�[�̇���*�q�����V�fm�<ם6��Έ�f[Z(��'�T�[�J�s�k2$+��Y�,�w=��PՑ�ԥ�hn�=��I����Ay,aO# s�⪵ϗ��s��PN�%���]:t�n.�c��k���,0�6��^ǭt��(�_j��F���k����� ��9j;>$�n���aF #�Vr��f����;'�G���0���s�X�2��֬[9�A$:��d�_-٣��ۤ�.H���r�6Ռ��wQ@#<@�Es�6�$��g�i��g@�(�rWv�8��RI�^��-��W;��^��ҙ� .U��¯��C����8�:�kɥ��'#j��ڥڨv�$u���\����(H�X��ާ�M��ȍ��/�fa��L�[r�we�8�*Ar���u���ڲ�|�%Ȓ@Kuԥ���:��dr)�=j���"H�9��2�Yd_����NO�j������`b��q8\�֭��#��'��}�R�zWmu�l�z��0̀��;S�{ J�5�[\'��)s"q������}�M��A�J˰��#����uJlVOBm3^���4ș7J���mP� �B8q�^yr�%�� I�-/I�8����a��ɣ)�n���Z"�i�")*2�^k��Ios��=����<+!�O�!�{ה�F�6ws:�*���ⶋt�E�dYU���E:���1��t�q�@�Ι0��p���)��g$��{p��x����x�3�������v��`��Ҙ֎e�y�Wmt�q�)$~�IY�N�5渇�J����������d����m�(��Fx���B�pX��CVav֥�3���ԛ G�x��D˳,A����7�p�3�+99�/֯«Nԗ� �z�N4�����~ ��䈘���V嶹p�6g�#�v�)�F��l'$+\��<��uR�$��8���������R��t���$�'9��?�)@7sҮ����-�nrA��[�]��sr[��1����ƛI�^�zV�����@��� �G��6;)����*E����x��(@�zV���yev��9zͼ�d��X�zR{��<�P���!$t��A��P_�rFk�m<,�1��� $g����#�J�4��v��R}u��4 уF ~�k�<8����̠����G��X��FT��T�nZ����J�^K[��Z;t�գ�8����_Ƴo~!�Z���n�x� ���������r;0�_�j��$hNpGC�V��8��j�%����.�1��[�^U��$^%��`�BI� ^��^�Ą%I8�O��J���?ҦmO[�(r�BY�Vn�dXe�Rs�+�𦷭�b�x�]�&��W��2��J�2�(�b��_V�q!Vlc��s ���]��b&��22+��ų�s��Ƽ괜� �s cĘ�4�"F '��Z���}�N��d{��?±�5HøO'�1���}�>���]A0��Zroʶ�`��!��|�zr5�m~�R�׃֫���s�LԂ�Ɲ����sV=T���q�j_��y��ְ�)��qޘ�B�L�n�ܤ·�Q�1��`���W��oPT���u88�����~��S��hβ��Q�����=p8y�|��"�v���q�d a�t'�J"��JTz+7J-頛���`}��鞴�rWvx�Ԃ0���گZB�=O<W�J��ͱJ4� ���S%��p>��ͭ�d���ո�@�>�V/��0��p!�Rǥ�m�1��ޕ����z��ݙ����&��f 觜�z�R'o<�3�l���(ܤd�A�f� �2���Sƒ��\n�\V�W��T��wqϭ)b�����C��<c�)�G��~keB�-��P� O���SX��]���6Ӏ0���ȋ��s��t��`u��i|�v��bX�g0�m�c��z��'E%�3J�#E'F'�J�q6A\�q�]j>c��S;�=���E�ޣ�5�O�@�ڣ��u� m�<V��E���T��w�i�C9#?�=̈́� �E:��yN ���鋸s"� �i&6���8��}���I��i1�Ol�N��%U�9i�w^�67R7���1�є!W�q��Q�cr��W%L�Z��'g�ݼ��X_\�+r���:v�qҷ"�Ce�t�R���9=��J9{�!�U���/��:�U�����drF��s���=���aT�.Z�$r��e�oJ��r(���zV��st1��;qҜ��yy(CcV-l�c�f$/��w�^�7X�m;�q�����c$z��2���j����6g%��1Q#b�7/�8G�\�s�?J��|-e}EO��?oM��G#H[��q�"*�qS-�Y ݐ} iZZn@3���s��)ԍ�%� t��m��ʩ�v���>���j������WM83���E�A,�ױ�zcz��#��M����s].���_n�c���E\�����_T@�����]���)����Vr$r=k��Rz�e����]�ʏJ���� KzV�!�f"�݊ӟC������Xr�{���}���-�|Մ�H����Y�n��PNTu�?J��E 㜏�j����TW��Gr0z�����O����Θ��{�ekwQ���s�k9�i��6ѡ�=�%�聀#=�����l�Ǧϵd���k�=+ϖ��M�^�mį�5�.��@y�qQ�$�/�p ���>�1pź��k���"n���O<Tr���pO����9�!���c5���/�����j���9�b�������,ڀx��8���Q�-�H�r��x?N���eݫI �G�f�!ę#�Z�u\)��PΈQ� �Vr�����.v�#�X�w"0F} ^hA�z��֎�%��N��Sz"'Q#�L�q����W-�V8���]妌�D7|�q��m12m�;+�a�`��<�S�#Xy608�s�+�Q��+�|F��ۊ���u(���7OZ�ٴ�Z���k`�8$�Ҵқf�]F���� @��*��&g+�9���q:�5��,�=J���*���+���i<�r��>��/F,C�,{��a�K։��3)Q�N+B{��s]?�a��Es>+Ԡ����=��L�"�V����YNN@�)��<�d'>ݫ����j�<18�Xr���D��=p���'$��)\�VH��������8j�kkv�,&أ��Gֻ��M�]-�Ĭ ������0�Z�K�e��P+��I-l�9�%���i�l�$�ѱ�9��R���H~˽�8=������qn4���S�CZ�� l�ی�e줤��MjS�hnl4=F�� yĕ��^_��;{)�n���:�J�[� -�NE ��d�a_*�מ-���cM}�n7�HG*�]*��V�5�p��R�7>9���f%�� �h�%h��p+��gm6J���2O8�����En ��8>���ӊW�� ��tb���>a@��V,4ԍ���GN9�n�T�ہ��V@���$Z��71�d-e��~uN�L���x?�L����w���ސjV�f7/�zMDf��n-��G((�`+�|-�ir�`I�8���'��&�T6�s��U��U~`�m��ZӫЙE���x� �+6��9�A�;���K��x=G�P�5�Q<�4��FZ���.����s�vC�Z�׆�Ց]T+`A]�z$"�r�ch$��ו���S�,�\]^��]R<C8[�Q��t�(l�����'�"�?yi�:���.���C��$�\�s�#�ҕ������|�Z��ּ=e��ӵgE�F����v��{�.[7��ܑK�#��T���Fd�t k�מ�ol�H99��Ceuu<��l6I�W<+��KZ�x`p�8,F҅�BrKvq�f]rܞEe���31 zװ�?5k[r�@��95�>#��ү���?(�{�uiN�Ju#-��Hm�B�h汼M{juX��_��i,sO����m�HW{�p�Ԛ����¯�Y�{$z/��m�;Lm�=1IQ��ib����ϵ` z�|=��3�U��+�ԣ����"WS�� ��W����:xgD��u� �������13���Qѹ��V>:�d�Pj�I2Hq\��yy}pg���u��M�=�{��{���x���ֲu�s�Ӯp:�/���|'���y0��k����ZHT�eQ�z��%�4�w#9��#9��W�l`pz���:�6�fq� -�̥x��w�x׳:��R�դ%T�S,4Y\d� q���S�h7��%s����[)����$(��{�O�Y �r�::�����Vu/��J��] ���� �R�O�m�P�2s��e*���y���J��n1Q��c;�������v��z��Y�Wr�N����)wf&��4`�sڨZ�I�[�L֦���A���f�.�.�,q�錢���Bk?�%88��z�A@2,2j�ݐ�#?(�Ȭ���Iv�� �IlTWs�O0+��w*Ŭ�c����zù�+.��{��,/@m���}�O�c>C��~��<���R���s0j�*����i�����Ұx��eL�&�A*��G��>_߽q���-�!���y�-�e8�Vr�0P�;�.���u�S��k����B��D�"��*��֧�{���U��R1��&�G8 �W�i�"��, >�֜:ޢ�p��~�����t��]�hN��⡒�p8�?��/��3��1ҳS����84}c���=<�^wx棷�C'\�S^w� �\�<��+�K�p# ���g4�Zrv�8(�zť�f��V���'>��x6=KPU�x�Hޠ��lm�?��:⽜>�Ev�*��aa���~Էq��c��Iw�E�E�k(��΅͌Far�⽪8A{ۜs�I����Y��< ���`o��Vmm�uM:[�X�H�j��]���έ4�s�v*q�C�.�n�I@/Ӑ1V���m�a�nDڞ�gk���`�= G�x��R8b����h�ݙ�;�Zs�j����>�Su -a����,~oQ\֣�k�*�[�'OLV>���va��v��'�p��d���V��X�g��5�id&�k(�"��R�^�m0iئG`b�K�fI2��@������S���Ӗ�!�0:��ޝ5�`dz� s^�Ʃutw]8sֵ���#�ViO\� �^�{6{���T2o�o��)҆�Y�,���^1�>�ki+�u<rV��/�A$M��N~ojn����3�����}��V��l���6t\�f�}_���V�� I�o�x�SeO0����5���X���=2}1�,��9�W�]�M��v�I�=Ѽtg�I.��C��v'�m�.w�a� ��J2�E��6�E�0�c!O5J+�m��:���]}�����dV��Q�e�zU�����d��4(U�d�E�7�A>��00�}kϮt�Fȉ�o����x,�(�R����5��ui*�H�T�2�_je��7����v5�6ӆ�#�U���ى�2K���g�,��v��k����c��Ză*r@���j��=zQ�M�;b�6�ˎ��v�"�g�=*K�1��s�Qj���L���O�.P��M�1�s\�x����W��Z�q�WwP3ɮ?Z�3�8��rԚH�cF]Tc>��_j��5#(����eڇy>g��3���?LY�̼���2��t\�pF3�Ҥ:m�S�&�+]"T������0�� 2�#���$��s�9t��[j��+R�ES��>����#�ҵ��Å���1["���2�Ubg$����{��0W�ch�Q� ��Ҷ$X�3c'��o�e�q�D���SB��QG�N+��ڸ#�H�,LM;�#�<RTbޣsf�qX|�@��W�<7�ڈ|�W]r�6R�`w�H7Ĺ&���ֱ<���~x�b�ÞÊ��f:}�[�!GBz�Y*�"�'=ꎻ��%��?�G�F\�N��d"��h�(�j��^==��ےG�e[�\�,�� �kZ)�M1�Ȩ��4��M=��w<�s��A�6Q{b��ڣ�|�UI�}5ם�bs�9�����Faq"������ 3u5�ujF1(Gip���iG<���)��L�Y>V\�f�u���ebx�Aǽy��_^M��嵴�;�L�һ�Qq����ksJ�C�𦞓�]\���?�m��i�Q\)PI$�����C�ӃcO�J��������x$���?+8�ʾ¸�-9b���'b�<I&�t�v���9��8�t>�J�Eo��ifc�Fz-t� �+����U_����ףiΉe�+�c�ޝ�=LjUiZ&���uH��B�M���mm�gE+9�^�]��͔�3�KW-�_���Mq�i6�'�I�L��F�П_jג��V��:�r{"���W������i�#Qֶ$��l���K�n�*�QW|aj<1��ڣ-�ޡ)���bx��9�W��+�Ul�g���b�@���v?Z!M)8NV��Jr�R��Lkm;�7���?p�������V6ڜ:�ŝƒ���ɑ�a��@����!1E���Ks'u$��,�J��{���� �]�C[�H��?����U(B2��� J�G������/iѯ��:�D��$ؒ�摻���ާ�|M�^�mB�+�%����#�sd�'�Vu��'���2]j�O������p1�<j�[�i��Nw7�W��e���Z�]<��x�X�p;��zб�#��n澐����f!�p=+��!�IWi!�k���m�v�l%f*1��4�Nh��)F�>�����<y�l�x�]���TV��#���8��4]f��E"C�^k�Ү�Q�#�\��:Ȏ��C,Ӻ�''��f�K`��8�b��8���5��t�ʏy=��d��Y��5�3gb��{��j���8�Z��<1{�ތBQr8#�zN��4� ʄ�=�kh)nK�g:�]�:� �u�Wg��A���Kɜ@\C��h�vH�d�1�h�*�!��J�nfʅ�"�x�+��W�ڱ���j�@���:�ܲF eDQ�bz}i�� K��-�� 9��H؆w۷#�5�}�$���+?<J��&��/0�mׯ-�)9� :k�Z����B��UojD��a}}�H�V=+?�z\?�m�'���P�����,���ŤFV1�`1�Z�M�y��C��/�m4k�,vJ��"����a�k7W�&���n(~����uq)yS�?���kJ���D����D1���)+3��6x�v��xH����M/U�ZM'������E|����:u�@��[�y\�"��&Uc���=�^�%��F,���:<2�����t/���s�<��#¿t�x���X���d>r����A�hҔ۷CwQEjy�džo.4Ė������Mc\�Vk� �Q⾎�g�|[�o�%���$��!J�Ӛ��~#i��g�<M����kF�q��XX�������ϑUX�<x$csb��K{���M�����Z���]�&��ѧ��d�=��I�j�u�+0������xǩ�{药kw�<���9/ݠ�X�h~)�T�..�_!�~u�|I�V��=JK��ٹ���v���c�7�g ]���XV�0�=K��9j{���E �4<�:�zVZH���y�?B֚E��'k��/�[tss�5���86u��ǸxN���h��{[��b(��<��*����@V��x{֣�W����H��7{\V�5�^Y����TrMrc �J�j�g$��+A�����0>����QF5�����MTm&y�s]]��d��}��1��8�%R�cL�UXoA�1늒x��MŰO"�o�U��ְ��K��b�����ޢ�:��H����eI�����rt��]����D��sӎ��md�У���[|(�����g��\��c�f����Q�= z:������j�4;6]�t�7Fr���p^��I��=���tl�<�n�Lv�h��J���d��px�赸�����/<�� ��V���\�� t&�5%�=zu���g�ST�Ps�C��*A8�lU�M�:�8���FP[1U�B�䊩Q� �<��Lx��c8�쬂��N}�Vц/7�G��(mcq�oOJQ��S��q7�{�O������;�6��@Ğ1]ư#1��4��5���I8K���#8#�^�)��w�sT�ƚ<��D�..6��#sm�^������f%���a�ڻOO����sB�Fde��덱�5��� ��S�����A_K���am}Y�T�β:�CHт�4�\���5X�j�����xcq��1N��}�P[�u�Y��gs�����o8h�o�����>��y7W ~�P��'8�_����E`4���.�t�'`�K}k�Ԯ$��6��2R)I��{�Z����1 X��ޕ��\jj��S�ʵm�+�6ܺ�8����~U�y�0¬P�9��Ф����"Gf����Ny!���ra�SW,�e���$�R�r(�N�u-�_"f5l����Y���]�+�{� �����rѶ�ʰ�J�+�Q�B�Qx�D�r�����u֙���E%����!�&K�H��"D���Ҩ�zd7���ݎA"�+�^�>���Di:(^��5�z>�wm}x|�;d#�j��i�Te{�.�R� �V���m��ԕ=N;�T}յ���a���x�Q7`Vr����E\z��u� HU~p7�T?.����2I����+B�>�Y���#h'�����fВ �P!*3�p+8sI�[�Q����l�H�L�݂q�5�ki c���k|P���aԣS�\�:�Y~u���>F1�5�S�+�ЂX��G�zTj3Cr}���1ZwVP�%��Տ��p2����T�.�Z�2��S�u�9ف+���oܕ�m�Fܓ��Ou��U�s�����P�ܡc!�:hU%S��_�֗�)�Dvn\��U�������c�׆��-T���[�u��d�5{_��q�XYl8���X�5fe:n:��x�W�6����6�9�[¾"���.�%RH��+#V�����Ioz�����J��(�� CᗎŕڻYLx� �q�������۞ͫN��� ᵽf���$Sҷ<a#���0�%Pp�z�v�'�r�;��}+��Eғ]_ �8����Tw�1<pj��/���`s\���Fʩ�>�*[ˆ�>0+��i����q�He�� ⣻R~e��"�%X"fw\�M����n�Da��X$�J�G�o �� �pqt���F�q[ZE�Ѕ�iב�n�Q�#ס * ����U��[��nj���0�VA'8���VRc����R��7Ev^��v��Il\�Ά����{�����[��O\�-�������}��v~����N+I&k$�4� $���� »�o@+&��V�5�2���۵6��K��(�5��'�fi-�I5�H���T�������ԡ�%���BҴ�O����ku����p�q�D(M��D�%�G���Yh�:��.�&���2eT���o��:<f8�!�d:��G�Q^��Y.e0�v�'̯c{T{XmMķ�d�j�&�5���t� .��l�1�[�W6���mnzs]n����Ӽ�x�G9�e�f����U���� ��3�į"�-,�7��F<=�x,��H�@�I����|E�[}~M;Wg��-��Rߠ�4o+69T���-�k�Cb��.�g�XW�5<��ѣA�L�������^��N��K)��G����fkz�ٴ����R���F��8Q��hu��_�*q����_�)��|Ҷ�NȜʠ����W�-$[���?+%��ݛ�� ���)��E�]#F�������5#�滿xj�N��M�������Hs�v�j�z��._ xz1����3��MS�c���j�9�E���>����n��t�X���C����[���.�X�v�@.}�JG�E�@~�j�)��8�c��i)�n.O��m��d�,�G�u�h�['�N�Wg%�zy�/N��V�ǫ\Oe4ҍ���G\�=? �3��V��^�������R�2QI�3ПnkX9����ԉrA{��ϳ�W�?���B�16B���[��-����m/&�������g��T��+�u8,�I�Yj6)0g�&��rdx�!o�X�!^���1��}�.��$��V�2�s��~[~%��xz�^�X���V��`�=�*�����ñ$�����Y.���h,.��m(��W���>��x������5y��0-�9Rz�G~ܚ�_�_u��d�akfO��cc����*^v駆m�I�γ�����kq�x�پG�����{g־[�N��7�4,�;����Zw��'���d!#p��r,v�6<��5��0QK�[��\��SVC&��a�6Cd1-ޢ��u'P8>�,ք]��v!T秭D�d�2�0���r<�Q�S���6�PmJѰf.��wZ˵�_,7PN8��*"dX�����1�Ù�N��/"H0I^�Wm�]�p鵏#<�?�� ���z �-�9 h�_�.>N^-M^�jz���.]dTe��[:����Ȓ=0�Î[�5�X�&�24Q�g'=q[�V��)��/200�9��5���C�?�_�c��i�\�h�'�g�֎�um��w|���?�q����>:^�c�j��&�^RVH�8z��o�� �n�4�(q,h�u��]npJɜ�3oTz�ݤ�u(�d9��z�͕���7��O�u�Ҽ�Y�W���&�im�a�����A� `���}B��Y2w<Ğy#�7Y����|mf>�k�����H�#�s�\�������]ۄg�~U�� ���i��$�T3��56�5��dҤLN�=@�a\����RIX���v�5���K,��H-��x�Mf�ė�N�<ħ X�Aiq+e�坠"��z��k�-��u�3��($��҇q�X����o�g�#WSu>�X�����5Z3��+?����V���%��a�S�[K-�rF��#<���>|W�uhmu�#�鏸�$[nLX��y$�끚�J��̇8G�皍���Q�"������X�Kwq��*�6F�_B�|5��oO�������Ce{o�y��UT��w�����?x^�����T|�YUs�A\�jU(Ξ����T*F{2��r���Q�9b��,�ev'�Mci�C6��݉�W��J�QNsӷ~��n��wY���Fm�/�[<�ViX�\��Vg��M� �=֟_����;B���7'�#��-t�N���l�v�8h��2y�Y�Ҵ�e�I�+�@�o����h�åZmj�-��]��[��KY��|d�E�{c*K����5?k�c ��|��>������b�C�G ����#�n1�'����w_H%r���PB��f<��4�Fޚ�F���~gO��ג����XYi%�ǫ��+ʼG��Ӷ$/#�[s���V|U�G0Qnv"�A\���<��ß�ִ�M�ޑ�(Ɗ�QZ�r�;~j�K��0q����.6%�#�k�I7�ׯG���"�nI5���ݮ��$W��>�'�Y�\�&��O�� >��k���88`ן�a]���%t�g�hУڇ\c�V��٤� ��"����)" ��rz�uX݂�ۘcoLW�N��&�=&�F�w���`�>�=�%㽖�Ώ!J�{�jȽ�~��\ﴩ#����A��Mέ��%`�/#�\�i�" ��08ɨ�#��)�� �, �r85r�×zO�"}@��~u9:�O�'�7Щ*Υ��s�[��PKv�}s]::�����h )�3ް��gЮC����p>a���>ga��=#J�P��_��+ڳ5?47e<��=s���ū�/dP��*z����u�ώ�˫�=��庂6�Ek:pQM3��fz�1H+��X�e�ej���v��ҹ-_ėA�@��=x�䢵!&�; B�%��q�@k�Q�2���pڦ�w#嘁�{�\�� Č���\Ӭ��i����m&œК}���c����\qN�;�M^��n\�,^��R�Gw���&�1�z�q�e�x�g��5.�*�'h�P-���� r��[�ȷ;MA�m�����W�w_��b&��z��5=a,,�����_o�J����q��]V�8��W��s_I�e�֕C��bR�<'� �=r�������6�cI�]�jR,�(�P�R{ךx�ƾ!������^�E���8i���h�3�Or�!?6J��^�9���+��y�=_���[�}OZω�e��A�+��'�+�t�"�I�e��ڵqoo� ����mV4���33l��E��Q�?zN��Ԕ�KB���J� #��3PG�C$�)C��s�T�YdFO$ǹ����jd��N�{;y�s�����3��V՚�N�9#5F�����w�Z<}��U�%Ӯ�'3�э����+���.�ɯ${���w��W>��6�f��6�iV<]��� ���&���Y�%�����,I� \��ox��Ǣi�����j�;����&�� =܍(<�%T���X{[�wR�4���o��)����9f<c�{�W?c�gY������,���8>��_�;�/ �:|�m��ߗ�jΛᐑ�mmɺ�8r:�j�U���$�.p��5[�/J�%w����b���q�~[ԙ��ϥv��< ��բ%~֪~�8$�j%����%�b�䁂}FhTuW�]*����M�I4��rX��G�"k����6~i=?����xr+��!i��HԺG!ۿ���U���Ɛm�In2���u4:r�|�2��Z[YY��Ƃ{�0Cr@�XCӮo�!���B�*�*濣�s��/n��ٱ�0~P�u�5�h�/t����z|���,��u��' T����� >s!�#�O�{E��][��]P����w���id-����q&Hc�W�M����-��������wN1QVJ���]D��G��}��1�("5n��ʱ��V ����G(%�q�ߏz��X��:]��4���� k�A��_�R�m�ֱ����@�rF��ukWI;}��T��_j����FԘ�ʧ�ڽH<�ּ�4�mč�.�[�/w�[x�I�,��pKI���Khu_ r#.�$@2Q���rJ�O�m{��"A�J�'�;�x<�w��O�:�QӓP�Jf3ܹ���}�kv��9̣�=���o��<�Ȩ��z�V���]_�kIn�]���C�r���v�*r����<�e2Z������1�S��i�^�������C�C���̨���5��h�X�齞ɞ�L?��%~��_�����Ϧ�I#���&ݾ������k�&��G��g9<��1^�Z�Kc�ܕS������7�� ŷ�7P�d�W��w�V�*Ik+F��{ ����t����0�)V^&S�GC�zW �T��>,kL��KrReFL�/\��f�|ƚ�����.�#�����ѫ����I�:��*����0Ea��1ּ���C���+��[K5�3)V'�|�RJ���%�?����"ߍ����o�i������種7�l|�^6�$�s[Z=���,[�� 3��UВR�&��=?Oif�����X���%��fp�09��']���2��z�����u<8���h�g_���=�mv�?9%���g��CP����ҫ�Q�<��F8=+��ci�Kis�r6��\u&�:"����}�H��<��5�-�p:��M+�1�zg��Diڪ�\@d�O#���)S�R��ѹ�[�k��!0�a�t����ZhGR����zc�k��5�5m<Z�ba*g�s��v�ƺ�4���Wj���5�B-�s����V:o�~&�/�eէ6�8�?���_����L�V7�-�l�,}��x,k"�c9^j�����Ӛ�U�J%�V����kW���n&3�~Q�ZRx+Q�� ުJAx�@n��qJg�j6�d��^�}�|6�ð����j1ۅ�!�F��$q�jt�:m���o����g{y��c�L��Q��z���_<�:�\jp5��Be����:��:͇�N�e�]���;' ?����x��߈-��֯��"�{����\��í��))i��u������Aw�i5���3�0����Lq^{u3>�>�5��=�bO����Vy�I�|�i�����7�~���e~�CXμ��}�Ŷ��o�t���E�x���uz��z%�-=�u�{�zW�iZ��[�u_0y���ijض�Q�+�m�k�ԼC������y�5o-��UN ��)|.���6��&�� �Co����=��R���������{"{K+kf|�̧5��ڶg�,��1Y,J�@��X��v�Z�> ��j�֕sq4���q�++�:͂x��@�\i�4(�Kj�{�-����u;���B�HTH�����*��ե�֝bn�O1.⺄�s���?�Z��5���t��m���g��u���ynJ��lq�4)�r���N��|�B��'��@�]B�t��l7�>���h���ɦk�i�S�<7�{W��ך���vrx\�J� �C���_���N7.�ZB|��QԥA��dz}�ޕ��ͩ��A�����&�N���v����b$}߽|zs^3�ω��d�8�i%�e�s��k�5�v��C��ܮr���Mj���U�Q����<�!�9�+5;#83�˿�\�ư�vfq;�U��6Ms���$��S� F�`��+�i�hҊ�9�kM�=�=Vt��g����{v�����>�WR�]�c���V��t�̓c�7A]��8���c�{D��u佷����)^ ~�%����.do��HT��֬�>�B!�_[^\i�"t��c�꤂?J��h߳����oj�:�Ϛ�Pӷ��Dlcߊ��5g�43�����_����u}N���O�G'��,["F�� c8�k���kt�s����t�_@�w��MOFkm3��[�K|R"�}��º�o���--�M�:e�k4wQȧ�s^mJ�*+F:.�����O_3��M��a[rg��Z�s�H,mp�0��g!��ڽ{�E����o����eޙ���{�YG�\釦�lm'�(�_>�%�Cd�/Դ�c�-'wX��̆VRX8zq]�Si�|0�&���$�asn�F�8��}���f�?��G�S����n?2'�֣�|�-��%��Z��r3�8<c���١���K�������A�i�{0H���$��*�[��u_�7����ſ��3(�6���l�rq������t�4H��6v��eH��0x$�2k�д�u� ��t�na�q�$��9��ݚO_��4q�����i^����}N���r\�8]���C�u��嵮�ykki%�ɑ�Qf��eG$�&�{�v����m-�����B-�x8�:����}Tҵx���]���PA*� -��v�S~��]��,5 �+y����߆����#��G�����sc�#��]w�_\�-����Е��$m ;?ƹk�E��Xn�x77!���}*[��%tR�R0����+`�}*ƒ��<��& 9xE<�@O=�ԑj��6r�#�ȓ=��d�^)�S��3�瓊Z��b��������1��P[ܴE��Ǧ~���&���UYo�o��iQ�ξK<����k �1�ǞX��|�E+���'�m��(���3�E�TjJ���ƨJzr���O�^?�M��y2=��@o4�-��h��a��ů�x�U��V���(�q���1�H<��5���/�Y$,�� Rk��Җ6��VB̫���-���0�OG��k��ť�Ms����X ���U�u���"����M�m�s��>������E-�͆<y���]^O<�͑����q�#�/"����jz��b�\�#~�K�e+��\���qw{��g����eqQߨf{�B��+6}@���$g%������m���V����#���1wbrnjV|w^dϾFڭ��n�+=NzU۸���3j, ���ҷ�q��J�m�脞E�,c*���b����e�Y��EP��L�:2��y�c?A\�<�ZG,ǹ�G�{�E����=_~��ג�Ld���c���T#99?JXz���zVIY'�����r�;@�y<U�:�@�{@�e��Kg��k:�R���Դ=G���ա��UD�@z���:����\�X��en1_2�n�#��Y2Q$˞�<��گ�|)wਓM�U�6�L,~tlt�^��Y� ´\o��ak)GSw�Α� �R��`�e\cw=A�����g�����j���V�J� ֛,���T�0�����cY�[��d�+�a�N��6:��f��O���?O�I��V��)����=k�<#�����K�"��;�q�WͰh�]G<ʱ*�����N��Q&����*�9�]R�����I=�Y�,�������@O���ڹ�x�mm��Q~�6Er�zƌ��2>r9Ϧk*�Ķ���lM�#����ݣXӖ�Mo<Ҩ\��<����*ӵ�V-�^��x�g"����6��b�8�����D� c�t����#����#�R��}��[�*y�3�]:��gl��v�Ĵ�\d�y5#vsFI4�䍱rGqVc����<�u�D�N�x@��W. ��ԒOJ:ǞZxm���c5�g���\dWT���y�����^�ST�%�l��M28��*0;⼷�������t3�w`%d<������>9��~0��^]|���W?��{�/�+D ���j$�zw�rT�c�{ױ��(������U�>Ǯxu|;������S����V<�����G�u��^;��t �4�l�S��h��������m�)t�����v��:��+��e��s��8�NBM�8��U�995B�����r��/kS��~G]�g��>ѭ��)#����B�T�`�� � �fn��T��F�[������F8�b�(э��T���#?�ZUޥqv��0?�����������u��5��ޛ$�[�8�&*�F"�K�`�zٲ�4��Պ\Fφ��A��W�>v�O��S������BY!r~y��Ҫ�7��s�X�!�0�N�ît�d�߭�i!%��ĭp�zg��5�m�ǩx�]�&��*�:$q/9$�q��L�)JϠ�0^��F*�$ǧ�@��3�K��+���u{H�x�ç@w��z��o�ې�/�=�z3�ȴ��D���Ԃ����i�1��e%�}a����v�M$�6���Z�z���w3�<��3�|�<H�nᶵ�[˻�0�r�s�H{WU���s�LQ�,Sr=��%�{�O�����|Os�K��X� ��Ƨn�=@8�o(��������;��铉���{��$����Q�J�+KK+���9V��ż�)O��5�%IoĈ�a�A�9����뺲�:l��"�K�P|�����8��:t����9��z�^�,uSJ��ݵ�"!�w������4Kk8�e�X�B�X���{SfҴ�{�[Gh�L���7�{�O$�͍��#�ǖ9�����JR�zo���)%c���y~!�jq��4�kUY�l1a�ޜ�M�=SH��S���6ܖ�#��*�ٻ�Fr�c=D����D�yg�#P�LD|�[pڦܳ�M�x�����wmc�;\��e��'�qgt�#��� Z�$����m$�S�9�� :�=��?�mB ,��y-f�y]�x뷽Vm"��1���;Y�w(a��Þ@��*�M���֖9{o�� ����֮c�4��]i�fՒ>�g��^� 3�>���ƞ�#ۀ���䋌3`����A�5��4�cc���>W1ܯ��_��-u��=6���s�}i�,�=�}iFxx�u������Y������5��5Uִu7����ݑ��A�J��I�4͗����q��%<ϥ.��u ⵃ��.��,�F"'����I��{�*[�U����s�P��Һc��}��>���1�{�O� 05-3K���^�چ�zŚ4�b��j�С��f�yp-Vk�&�����O»-/K6)s���Ӯ �2s����?M�� Q�Y�|�+��ڲx�nI��g�E�2�M�_�yn��Ht��6�����<qܻ�G8�}A�A�Q������ңC5с���7o�q�+�<I���X�ӧ�+m*�����/�^�<E�=T�Z6��Ms1t�g�{�4����v��:!NW\�.eZ�:M"�ь��ϰ�I[&6�r�I�����~����Q��HF�5�1<�۳��G�4�/P���F�tk�*e�*��Ϝ��gh�ҍh7d�*5�G]���]��Yn�s$���>��C�g[T�!��ܵ�b�o���8�k��Q�x�.����Paܑ��]�+���UdicfQ#a�Oa�㞵�a��7�qUW�o#�~ۍK���i�6�)�yʓ�=Ȭ?�~����f��y�ooo������~��|�_�-[V�6�i����;��~���'�4���^6�vI#�\B[���@��hލ����~'U7%98���~]������=�g'���V��SJ�3�$|��J�-s��f�f�5�oAe�ח����Y��kxЎp:�ֹ��h�6�+���9�8YG�i[� ��ֱ�t��o��2���-Ұ�����g�.�[��"Fڪs�]�6��m�F������J��G�iRF��l�.b���U��5-D�Z",�q��W=�cB�a��f��-��Q�k��b�g�>�c�]$���f�{��O�j�,ӎ���>�:]�\˫A4i��1�q���� {���^Q�r�/�?_z�R�Y�������D� ��9�s��py��f��\�O{�X��I�b)�s�c�z����ZM�1|���4]F��Iekq�s�ȅ�I�<��~�-�o.!������9߹��+Sg��Ϋl�,�-�����6����'���y�_^ej�\�Mb�cO��)��=FGs�B�t�-˖J�3����~�ݦ�ү��[�4$�����pdp��pO�Wm�뺤o�Xjj�? �J�ĭ��ǏS��~��̶Z<�X%����p�>s��Ѥn����T�1O�eÙ�y�ֳ\9�$�I��#��lP�;XI2������$EHb}��u�{���w��~J�K�(/���}��q�o���Ko<�C)�q.y��G��I(r���)9m�o�M�0����TZ�%Ub"@8'hϾ3]���C��|�����w� K���>�U�xG���-��ܖ�B��Q�'�C�*V�����^[� ��$�� �!�f8�X�r�L���1�����'����OZ]��UfH4����I=Z�|G�ξ�o%$�39n}�#d�����|7��d��?}��N�I��M�u��J�Ӣ���H�[g%N�3Ȯv�C�7�T��I?Z쵿�^ }�PE�� �?�Z|ˡ�\�M_�4~�A���X4 W±�2�.#��'_^ v~;��5��K�i�&�����'�|�x��:e��}B�!��@��nk���������1�_�1�k��:ա��۶ֲ�m��eR���Թ{߯ɻ~�~!�&i|I}m,���x}y�u �I0�m�'��j�����VG�;d#�+��� ���{��$sԳ]���5]�i��' K�_�c���H�ƋhK�<���Sӵy���P�2<�;'���k����2|�x�OZ�C�c#��>EF+�wg5L�KJq����.or VB���j��:��+=�ȇ8Rk2��I�B*�c�տ��!��d����{&$��<^3�}?2��y�O0���EX����������cm��FS���e^j�7Ǵ��;r�#*ؚ{���4/n�c�#�#�Ȼ��v=�늄��$���>����6xX�ƥoui��P=�K�(�3�ўzc��V!��C��n�td����Uf��y$G��Pq]&��^*m[��[�Y�qQ1' ��kJ�VR���#%sա^Jڞ��uR�R�*�%L��ii���2��oO��{aO�qZr�!�a����D���9� 3º��^1���ќ�����O��k��r����ϵC�<UL���7�|��4;�#e��s��V�t� nm�pq� r]����uF~����G�����]=��j^ �Ծ�w��t�g�*9�U�;;�r�N���hѓq�p��~ Kj3��5�����#��x��Q����l��f��H�l������79�$�'}���?�����j2ɂ���7x�������1ҕ&�cϖ)�9��r�az�<���Jm/q�8+�i�r���-��Q�9Lo�t�=���0��H��Ԋ�<2%s��N}*����DX����a|���Sׁ��j�8�Ҭ��;�_�-$V*k�k/\���G�Y�s���~�X�m��y�_{�����mU9�p}RQ��Ռ�c��k��e� $�2q�ͅ.�'dS�A�k��#�1�[�On>���kQJ����?�z�.մG-Z�ܩ�;x���y�\fG�8���t�8X<�G�#|��z������I,��w��f˦���doʽZTi��)��b%�xĻy�k��g B�7����{wuw1��i%f<��44n�2���� T�Q����_�&E�y��I���^F;�Tu��.�̅x8Ҟ�i�H>��m=:�.�3�����2DbǥX�fn6u���!8�S�1��{`VrN�D)�����ܺtR�G�:�]�x���Q*%�1#���^}�� � �~����ϴ4�ڼ<m7y��>� F.)B�Go��g��*忋ү�k�6�{T�'v9�ʪ�n�8�9��֔��v���j�j{�����]Y�����qq|�냀+*h.%q�I$$�z�W=�7�b����U�K(Dh��H�8b�+?B��O�ε��ߗ*��5��Y���Y'��]�X��p�����/�m�viT��WM*�r�\S����C�M V�^: ��A@a��w.�w�"����e�/�}Mz����-�A n%�V-���z�t<��p�_,W3>ȶ�H;O5ji�8�;�R�Lj�XTcӊ͖��,W��_5*rZ��U�+i�*�Y�ӡ�T/���?9��Ҟ'� -�g�P\�9�ڳjIX��w����$������bą���M$00�\���w&��Z�9�qjB������y��%iV1dԕ����i��G�;��ͧ۸TA��:w��ƻ� ~x{kE�Q8�]�A�w�\����r�^#��C���0��^��~�Z����}��o��j6ְ��"��=�澊�\����a5z����s�<���4���{œ}�rK�I� tg�c����-�`�d��6����_���A{��k�����Z 7ʘ?�}k饐�ۙ��/L�=y�����Q���sf��C%5kX�BZ�@ ����\���?�o�FB,�nO#�����agE�:x�����y��Z��7����i�Om����������ir�����~'�l�g�jwW��YI&8�q���5�[i5L�p+r�e��Nru�{�i��[��}������s�xE��fԯ/,�v�K{{�c�o�O&��]Ֆ��$ӻ����������� U��#��ݏ��$���������t.�`\�Od,8,88�V��^�Q4�M��a�73I>b+It�]7J�4KK{(G8 �܀0*jѕD�d����c��w��ڳ��:l�U䨟�F@@?�<�u��ͤ�o-����K���z���k�;m�Ք�E@�����)���'�j���I�D�X�~g���F�n����.У,�*m#$7�{�pmCG�O�yow$�8bᑏ˂>��1]�����_.�q�n��(�i ��yl�H"��+�����wS�>��;��rs��ҹ�Z�m�+��_�D56���C���A%��n�k6�Kt��ȡ]pC���4�kW(�.0���Pq���*��������f o������6�� ��ddw5ˈ̩+E��血���k��y��c@��Bc�s�А�˔`9Vۀ�Ұ��/�b� F<�3V�m����,���>Y�Ii�88GY�e1 ��,s�|��f��LHI,�I<�l�74�H��}�[���(.�1�w5�=W�e5J:#&�2�(��V�O�FR;P�8�sZ�}��6�=M6;�]��3�i�.k�)�\�T�z`{�V�s4bO1�rU:�ba�U9�Է��7#<�5%}H��z"�q�|��Z��d�%���۽BW]�ܑ�U��ʇ��M>d���F�ei��m���Z[~M��M�H��s�������i�;Ԫ�ԧE�ή���Ho�ݎ��F=qapw䎢�G�Q�֑��g:n����?�fh�d#�9�ڗ��˴ϔ�������t�L� ;���L@>��'M�Q��V��zZ]��Ē�a�k/�j�~&��2����2X�:}k��V\c��k�:+�˅#�:�O4�`�xTJm�G�ߴ'�G�?�WZl���d���'R~��t��5)���9�.���by'������߆�w���^&��=�x%��A�_��HG�wB��qb�S�#��Y���Rn2���u��|Ic�$�ڻ��7����b�A�q6ז�I����=�+����v�Z�'g��?zW��4�c�?�W����w%� !e˪����w�k�~��;)���A���R��wS�+��OI�^�]��rrG��>"xWP��͚ݻ��3�ZὌ��WI��ԝEO������ �mf��1\iL�G��HpRG#�5�i�x/S[e�״٣��4C�@�n���f�;�e���ң��xf��#!ᔑ���*p�M�N߉ڕ4U"~�x}cE�?���;��ġeC�5[�^+�.����"��R~��`4��H�����x�C�W��+YT�����k�����a�|�|UqtX�?hU|����I��9a5o��6����\�Z�x s���߶�J�Ԫ�0M�8��5�|Y��֯�l�;�ţC-h�Fd�';�r��=��?�������Ǥ�m�ndzc���Oڛ�6��?��)C���0���I��ע��Yp��)}��Q����J�Q%���2�n�2P{Wa6���S��+�Z���k\��G�zW�v���mu��SE��9�;`�� ���i/���ߛ{i�J$d(�9�O)�(��?��e��{�Kz_���>,�@�,t�/�䱆?i�D 8�'߭G�oä�q&��3�L[�`�Y��_'����튼+��Fa��5_���� a6��^���������cb���K��Ab������䏬O�mF�MmFY`X����K����YvW�v�r�Mi`�O4*�ξE��o�֘�~�� A�G������j��ԧ�7sLX�^Bs���=Y�eo����R���[�>�����X�L�j1MqԈ���W)q�$��lดG�Bp�=��������y�REwu�G������8�YjB�!{(_�{����\��������gb���(�uW���a���u����C�3��v?�9�S]�\�E�E~g-|ui���� qv�y$wn�c��5�wpz�ers���FF1^��J��)��=����;�݃ޓh�y�y� �\G�i��{���,�##�2h�w`9<u��.ݗ������z���ov���m>�!�}���C�*�����f���3T�G��U�%lμӍ켃%��4u�=;�;t&�G��n�R{s@�?� =�����A�4`�h� :Uc؏Ƃ6�0I�����$k�=�K�Z�HS����!��$t�4;y�'�O^8��x1�yQ��Oz�=���X����ו��S^�o ����?h�QXά�#�u:~���|�8&�����< �w���X)@;��x����=E�%[x�l��<��X��9��ƣ�k��1�[�sY�S�%zu�E�eh�e��W�<��j�k ��G�˿�E%��\B�H���}�������E; w3f�۴�\���q�H�.GrOJe��5ߝ���k���s� :�Sr��$�F�DU�:s���*���*�� �=����۸f�O5����:��v���%KS/L�ί ��T��j-b8F@Q�:c�U��@�]0;)=���Y6�>����K�����,6O�z�;���yQ�5+ġ����\�ͅ`02���S��k�-����Z>����F]����� F�9�B��2O��M��\f�/�[Z��nm�o^ա�h�1!�}�ǭrw2J]'�!��Ezw���gA��8���p�f�̖�I�;h�D���7���{U���:sDW��Å+�W<[".������Ӛ�4k���-u,�(�鷃���R��I�ʵO��LH���@��u����l�����?Ͻ{������u#o��Y����8��c[�}+��z��dD��䮏��� �l�;�ISo��+T��f�I���>լ]沄��Q�yg��f-?V����ٝ�!B�kц*�~8�y��tg�������)2 �*��?<_ᴒe�k�W$2&N+�5-6��v��'���#�GJ������1� ��ں�<~T�����*� ����9����x�'�z�A�MliZЅ����>��/Rs�(��I���xTVg]έ7�=7I�5�Pn㡧��(�q �F3^``�ӂ���aۻ���?�����h̅\�ڨj~=����<��k�17�� K*�g� R�p����i��읽�^ ��~���Ƶ>xn�Ş"K/5���ĝ�s�k���Z�c�a�m�����f���R�_@8Νi-M$̤��sU�e�k-@��N1���a����:�fX�a"��r�dק|U�Eҥ[�0��ׇ��;��]��A�yT9&ۘ�%����G�j�z�U�I>j�ߞ��W0֙���Ve�u�8;1���_5<\���=2��s��j�֣d����95��z��ya7\���i:���=Oz�۩l��em�ծ�n�*u5�������B �cF*q���@�J����?�g�����7um9��_)n �gw�5�`�t����p������I�]�Ho�g�ǿhm9?h)$�G�� S�s���,v�-�=;⻟�3[�=�N��RB[�k���4v}gI�z\S�H�d�� 3?�5�R|�n^��LM�����x�K�r˟/M�����e���r�C�#� ����(�ͽ���}cn�A���07}[��\�6�pw��9`W�:�v_Q{.��8�?l�r{�,d��4%�S4e����ҩ��jw�Լ��[�t̮��T�u�"m<m+M���W.�9l��8�]Nz��F 6_�$F���+���l�U&�Y�g�#���MbiC��y����O�����]��f�e�,p�jF�$u{�K��'����[Z��^��-���y��-.凙�|�(�CÃ�����G�� �L9%B�?��*��u�D�e�X����<��jpJ��,��z��?ʵ�b���_���'e�~�I��C(��y!�y0\9��Ѓ��ejϤ�Ti�#�݈F�����4�rivom�Z�;:�Ïñ�-ռS{���$�Pnj���+�Q�����ў�V����������Ė�}��!��B[�o����k�Ե۫��`G�ۀ�xcJ����yӝ�x��WI�xma f�o�;׃V�j����4h-5g/��DMw1bG�����5���P{�[Gɶ>]��f�P�%�v+���T*Q��:���;i�dC��z��ӿ����$0���U m��v�EIe��Q�$t5���#>X�w&��>Q&Lx튤51��l��5v�G���ӹ��lUI�t�S'$T�+͖#h�jU�B7�����,�c�HQ�4��ݰ��:g�O3/�%�r�ŋrz{TgTE?>3���y��$�8��F�A�3}�{��v�R����`�e��/�EV��r� �p:��Z&ѕ\�WhRq�9��_��7�Z�����������)�oJ�6��7�5g�I�f���ĕ��B�U��n��ٖ�v��N���i^yPc1�����Ɖ��U��+��kwÞ"�Y����ēG���:t�l��!p�J��)E���IA��t��;\�}{�E�kPM�p�����ޯ�����3t��W�Y�S ��n�1|G\W%�� /#ǔ#�MѼB�*�+�z���k������#'�H�Z����<C���&��Ht�zzW5g��h���u�v��EqPA�יx����lyBY��sԧ*R�6:�R5�g�S�>�<Kb���.NOW��^��|[��q=����,����½�������+ 猳}kѡ��|�ã��� ������&��y���hTj6���χ����6�%���ɂxLn��\F���N�\\Z���F��U��>��?� Q�N�{�"X�8��ǵ|e�7�_~;�ֶ~/�-�RK�2@�0H;�v&���z� 5���tӝ ��"����>m��/pc�J�c��]���)�b�˟�#��60�Lڃ������ƴLq�k`�����+�6:��ر�%�a.���sމ��:R�j��vQ�᷍H��s8h����#V8ێ�����%�`~\�zf��wY�d�[�a*�>Vc�y5SW�Ò=�]f�m��d�+=A�:�M9A���*�_,���\���pj+���x��]�ſ��W�ߩ)��I�K�Ҥ��.�������X�/���ͭ��_���o��玹�H�i�g���sm��L�� d�2��8k�6އ�i1�[�Rq�~ԍu��b�7-�=�ّ*��ԝc!�EO��wA����N~|��L2ɟ�}�I���ciE�j�Us9-ܓQ���A��Z�vsՉ�5����(T��%���Ļ5ʎz�y&r}�Ds�G4���E�:�ʲ�$�<���zю3�^��W&ެ@A㹠�<�4�y�4�=�Jb��� �K��L�K�4�Z0zR6'9�NU'�I��@U'��j���"{Ҩ;��Ҵm�������8۹���c,E8�Ϊx*�բ��j |�U����d��Z�<�T�`n��.���}1�|^���������Fc�����?QU<Com�k�7�zw�"�B� 3Ҽ ���-ջk����(S�{G^�N��y晤[���1����F� �6�ps��I���$� ��:�[�Q�dڸ]�7OK�Z����2�!O=i�C-��a"�#5��s�jIB_���YO���6����Q�F4���������kco����,H���7Cc9��+������T��:�r:�Y�9X��4՞�^N��;V-���ian3]7��Vm�C�ݿ��ݥ�ܬ�(�N߅-. ir�D��"P�G=� ���Q���q�ߊI�$g��~�V{�+��ڂ�,Mw _�CܞEK5�3a�� ��bX�2y㚇�;(>�Q@ѿw"aQF윒*�Ì��:S"�$[��������,�Y�� ��Va���ߌܜS%��=믻ѭ 2�Xb9=�բk��I^W��Ƽ�V�I8�P��;|��z~T�jU�``��]��'a��J��p*�TTk7x+�8�Sh�MLUIbp=El������߹5v�*�o^*[�9��ye`[&�� �h�[�at[O�c8>��{����Y3�i�u�3�ޒz�I���$�\��1���U����{X��P {��#���a��!�����j��ж��.��SWNⶖ=�@��u�;[�P���q�~���x�@�-����l� ѓ�¾R�u[Y .K������_iڛ�i��IS�w��x���1�3]��u�����ѕ�#ּ;�O��x�9n,m���zK�o��R�i�)o-���^���-*��Sӣ���9b�C#)�A֣K�߾��U��G������?�A���<�V���+ʮ��`A��~��E𭆱�Iͪ8e#����h�?�sK��1�2��UU\<�j�ǿoS� �%{���џ/���N=i��|b���f��x\��*����^�5�ƪ��9�E��D��?-=#��ƮCc$�V;��k����`s�cSNVoKR[# ���������W��kᮡv2��]��>Ip�>U������:�eKe��S�r�ɞ;�%`���WҟMݿ�m핏�$ J玝j?� �]��c� ����ۤ��n�sn�G�+��#�5�x�ǒ���~#Iwl��%В8�^q�]�-ѕbU.2���z狭��pRT�s��V̻����,* �{���?G�<-�O�����Y���R`Q��Ns�̓�f���d����$\G��{�M���fa���?���J�T�����QK<K1C�a��Z-kg#���1�x���KS�V��H�~��]_�Z���m���T,E<=f�g��a�� �5��2��=�������F��5�x�Ă/��ݝ��d�+���ޥ�\隅�*����P�($㸖 NWg1w��ï��M�ҵi<�y�*P�Q�+��%xO�ׁ�O�gD�a��F��].�� k�%/mu��g��ҳ�y��N�=\����{��&^��� Zp�2���3� l�%���M�U���[緱��A�F^A؊�� �Դ�����̡G���|������Iyͻ�1�Y��uu��E4�Q���o�0�?�M�>�*C���Q�,O����d�l������`�ɊR��6����KIףԣo"Edc����W�x� ��=Ez����4i���9r}��ޝ:�8�Y�'M��壘]�2����5)c� �cہ�+9�PW{���^����v#nz��Ox�����R)?{���)�(�4��Ga�j������-�29�>���bs)M�@�h`#�2-B{�n�/���������veg\.쌊��yUv��X��`� GLW=3�摥|R���-6-v�\��[�nŃp���8-�~<�My#��� �b�<�)�ȡҁ^�����'`n1�Jѱ��1�ZP�}�5�(�H�x��g���o��S�EQ�iUݴz ���H&��@s�XZ��l\��5�W%�gUd%�Z�l`[�R��=*���M�zq�jYA巖X��ҧ{U�@-��B��Z�r�s�}=A=�R�� �9�{��m��u��o0f9�b��K*��3)��5������� ��P8�����FpI��zT��H���e;kA$��x�Z������m��1��h2�j6����:�u1.�0r�=�UD�������Z:��� �'<}k���Q/�)���YO�3ZjM�i��=��TR�㎛�M��C<ds�z�;�'�H�Ғ�ay"��� U�9���n$���f�n%7`��+"��l�I�i[R���{t�}y�n`2j���,y��<�u��r�&�rx�+6�6I�Y'��.��8�]ׄ5M�F�WmlӸ`9�@3[�=��̯��ӵ:\�wDUJQ�=&�@����1f��� �A�D 8=kR�Kf+Բ�ɻ�P�`�L�4e[9T�o�H��F�MJ�K�{��E��������Q���^My�����4�6�顔^\7ޑ�g�>��N���c��R ��-�����Y�%������Ѷ��UuM�QY{dL��s�Tq�ipYĢ(a� Tn�W��"��Pu-ֽwQ8�/��(�����V����,�:}��xe�+c���^$����œ�i7���&�Lm�=M}���-$�p����'��d�s�[�4�� ��I�v�c�5���:c6�����f�x?P{v�l�W~-��!}N:W�����&s�\�z�'��#gk�h��ť�ul����Ϲʫ�ax{ƗW�k&<�l���Lz���n������j~mˤ^Dp�I��ۃUZ�x�k��}��}G�Δ����=�ңr����V�>x2��2�ms�т>��ަ���K A�FL�Ȕ�L�� �ʾհ�9�+=A�l�T�%��[�/��]g��b�u{�5k:M��������k‧$��/�~X���v������Zo��Z��k}�!�#���ʤ���x����A�q_Eh���/�.�>�BMk��?Nx�ݬ�K�ܜ�� �*9V���ℎ3H�{g�����~�^����R3#m�P+'ǟ���gk,�e�ۆv��j����pv�����ύ���fk��#�fկ�:�ȧ�:Ԓ�������^�қ���__����5��43�ڽ��??�!b�)���\��9��m�p��5T�\=GdɖQQ+�s� ��9T���Y��X��8�+sG�uqq��p99�� [����:X�s���������;��m�>@?֮y���?����`t�\S�i�h��lm�3���?}:q�ۭmi>���yd�^�x(�B�<��������c9��f�_á�pT#��M?���eGS�s�{V��F��ne9�u�T�-�K���=�i�<�4�� �q�VNґ�N���$��BUT8 ��k`�tT�� 뤱��<�$�:��Z)�<WifIe H�ު8��5t���3�>��������������b�JF����M�o=��C¾�����*c@��hi��bd����49��y�f�ܗS��k�0��t�\Ɲ��,n�N���rԴt���;�A�\��d��a������^���m �Wݱ�MmV�["d���Xw�;5�xTn1ڻ˽$�#�nj��P�iMm`��w�*o��f�k�Hn�IJ`1�$t5�I�v�n�7�Z��q���EIi��e� ���MrEh�L�]��'`#$����x��^(��H<����-�h�8$��±5+`"���M��Pg��,,�����5yzK�Pq�W����� s\6��?�ِ�t�L]����ƒg/�s���N�ذRH=OƧH.���8�sO���s�"����-���@Q��|'���앗�_�Gv��.������d-a�Esn��N ��qY=G��*�����=�d�P2�������+�Xc�Ú��#�J1bX��WVЈ��y���|���Oҙ ��+LZ:����9���\�h�i��ֱzZV�,c���+���Ek2�*�xr+�a�m���Ցh��H sS(��;=�`�����I��e�Zj�,:��)�~���yo�~��z�ya�A�[���`沷rZkc�խZ)U�s�KXZ�f2)��Cլ�p���_[0,��i� �1��%8�PX�sWt�N�襉98�;IКU��'��]���t��ʒOC�U&� ��9'iC�"�:}���{7�������Kk��i���W��Z�D�+���^{ai7��0�*y�ڦ3�_4tbn-r�}�e�Xx�F���A"J��v�▕����q�ǵy���K��0��Ѻ�+���v CO� !�=r+�U�V�L�t�)��>8���qm�Ksc��+�mlKJT�J�c�o�{X�!������I�v�Y1��8��J��'�n��$��</����W�\�+�6��7��W��}ڥ�����1��M{�d��Ed�>N6���R��ͫ�������N�-��$����u:=���yJ@\o�C�fm�~06�ᚽ�<���%�`�$��ܟª�l��9][^�}$�U9g m���~,>$�hD�ѳ��d�õ{�=�٤�e6�p ��9韭xW�}.I�M�I8�y�? *�5r�$��s��͕���Gs ��(���x6�b�F���a�,�1\F�d_������C&$p� ���N��Ty��N�������{xm�4��Pp����z��,��4���I����zv�y_�<��D�R6�o�ڏ��8��oP��[4?bp �4��b�o�N�W���Z'S�N�י����}V��H�}�1�Rq]�Z��\�2�FM��!�e��̝��j��Ѿx�QP�Di�e��ץq;�Z�J1\�Ŀ<3�_ZK}�x����y�W���[:��+���q��R���q�����x+�^�c��*�������`k��~/���sgy}���~奡"C����+��)�6T��sw�my/ԥ⩧���5="ɬ���3����sM�O�-�v��j�&kl�m��O��&��?h��c�i|=�/ O����E�y�� >����u��3V[�&eul�q^�]��ӄ�7��1�P|����ϼ�����7֒pH?2�s~1Ь�����h��h�����Zӣ���|��@'��Z�<O�i7@�X�5�}�[S�R��ݚ�3�� ��v�h���k��[yZG�F���'����|3�7U *6��=�돸���� J��c�n�8������*� i�* �ؘ�U���=~�V�H����N��r�&� )��[�㹒��?Q�֗C����I ʃ�u漜^>u_,t=,>4�٩�M:k��<���,XW�x[GH�YeQ�8���!��]�� .;�i���\�_["K0�p�wX�q��G�v��;U9$v;L}:f�\��5��q������+&]RC9]�pzӟ��c�?:����yH��k)�hޝ4��X�ew�*����{���I��#v�s�5����1�Nj�P��M��Y���u����&��a�Wq�^�5k�q���Uy5k��W�wH�2F[�=�K�Ev��w���֪^3�2��}j=����%-��h��qT�g ���&���Jy�=��V||���S���h��q�ߗn~\s�֣p��ٮu�y}��J��v�7^H�J�����qF�RƹRG�k/]���@�*����~�?�z�����NO^}jjT�l��I9]��u�d���'��j��?�'��i��5�4�x�+K�As����z�m�+A�o$d�7qWቘw��8����V=�U�x�0r9��0�EЩ5��_�X�դ�(~}k��%#p���o��P@��4քB���f��Ym��`�&�x�;���p���Y�s��u��f�}��Ҥ�54X�̓�=Ej����/m��<�������q�V��J�n�n�[���&d�t1\f>Nsǽp��ܙsֺ��� � �?v�%zi���V'wq��\�_Eg(�~��nx�����9�:�Ԁ���=�j�R���ޖ����I��W���}�k��I�"?6��Җ��;�/,`��k���ڻ��Vl��+YՒ����]�S��K�67Ӯ6͌�N5�?��$���%�9WC֦�6�g�D��/��P�A���Nw+����5���E��M^-��ki.]��"�+��͍��Ei���/Z>�<m5��[2����w�� �@�ɬ�S��K���ytq���^x\|ĸ�8����i�;���k����X��(�Xo����$�g,*Oz�NKaƢh�u�K;I!��FE[�/�z��$r}OҺ O��*�c���������;L��;��c�5�Z��,� b7�mx�W�ivZ�v��wA�^�k2XH<��@���=�WU��oom��q�;��^�8ݜ�iNn��]B-� �mrOP�U][FКTami2���7���Y%@s�:V?�ψ0��[��א�c��c)�㇟2Z��7��=CO�k,��c*�H�y��<�X^Imq3��s�V����m5�.=?T`Ӫ�e�x��Ś���l��z�+�ƅz*pv�e�^�G j�Bb�����-���r�wų�W�(�a�A�נ��P��%����oO�y�A������d\���:�Q��:`�w��x��[��KˍăҸyth�M�^�9�a���5���I��ARx{H��RÓ������N:��q4�� 죥nY�b8U���^���h%�P@<�V՞�]@T^OJ��OC7Qw<��B*���T�q�j��9P�n{W��xm�����q�K'�اt�_oʭ������֖&>�2�<c���� A ����^�y�Y����7��(m\r��t��+�=)�4i��.9�[�Vr�9#��^��ixX�'ۊ"� ������*}�N��Y#�+�`��'�/J�I�n��(���BV��ҾC{j>�D�%sX�-�3q�F�*��ݹ~��؈Ǚ� X�nV���h�/�n���#L��gz�Oʲ�(�\rMy����� �� ��~�j`D `���Uqn2fU��ow:Z St��y���Y6U[p�3����#, �I�ں=6�d��N1�k�Vj��2wG�x�C�,�A1���+��P�Y�?�ʂG����7�v��²�F y��<k3Iqj�\��Z��uGU:���C�DH�J8m�9�k3�v��1�zt�+j/��]��3�x5�&�lR{+��R��7��<��[��tu�}+|��ىN�urh�Oi��}k�J��B#oݾ~_JN�:��kr������[T��&(Tx�+Я�e�ԁ�sڽ�X�ǷJ�VE��/t�R�/C�Rxv�%���rs����B�,����$n����=*�en�:�L�j��Vt�B'p<V�jQ�[�w�=�k;T� ���i+�E�9C�X�Oj� WF��=j���ی�⬶|�����S����Ml�\�:���T����ϵuZ��������pr�Pn�q}I��Q��?ʭ B0H�i-� 7z�*O^}�Jm���`��R��w=�]n�3[J���1X�FE?*тL/�܁�5-�Ώ�A�1��ҹ�$� ��� !�e<����#�݅m�'��Q]N�@�h�ãO��ѣi�� W?g3iv�;��Tr�>P��c��E��W:�*["X]�Ƚ �+_g;x���� �p�k��M����FH����!�;�ܺ��{$��P����<�i$�Z d�#�vk�uK�v��#�Ҵ|7�Kok��v��\oP�Z������[��u�=���Oug���s�b�/�"�FO<渿�/���S��-N�3qz��v�-&ެ�`OOz�41"1h�j����w���V�pv�_���Y|e���� ��O�����]e��e����;? �|uoq���;��ls��;��=B)cT�l��t�g��KS�JqaS����\�ƌ�X��J��{��9�Ո�q� ����z�uݥc�A!�A����nܹ8�:Wiᯊzd����`�k���rr�74�>�['J���Q*A�{�B�+�H%���W��>�n�����kee.���O|�������~�y���`�mȵ]OR��V�w~,Es:����M���>=Ċ�[۠�Z�#���xR�X5}*�,�C�θ�Za�8��{�`�G�.���G�:ҋ���m��#�/�۞9�hƁ��Z0NY��{?>�Ҽ��>'x�U��Q�U�!�����Q��ؖY6�I�z�E�钅Vpv������0�#{}���8N���_#^�[�錷sI,�rZG,[�5ql �X�T�}�m:�\0�OwYԴ�E[����9�+͝IJ|�G�S�F�2dӉM�P}:�!�Kw��-�q[t��Ej^E�z��_Ox1�\w�l��%��fx�'':���K�O_h��,.˂<ש���Q�dQ"Cg�}���˄��˅nƶ- �*����ֳ�e�z�璳9�x��*;���?��e�F�ֽkO�`��?8`��5�G��!�#�{���Vfҙ����'�|�*����.��%��=��f�����<�o��8 #_/�7�[/6�8��k�<1h�7�8�ҹ���|�μ�U��xr ��Q��� �#�b��`��>��Y8e5�t�c����d�6���##4�Pc�rO���Y��wlў9ݪ�O��)��Ve+�>��ϥs��v?)oAںWw ���X��"��9�XTWGM7����H��=�+ɂ0Grj��(;���T8�E�:sְ�:��kp�&T�֮Yje�V?6{�U���#�j������~�����H��4@�8�] h��"�4K�p7=y�K�/ϸ���G3����1���黀*����T�8���Z7V��?1'�Ԗ�̠���\ֻ:��G?3�,�``T�]H��+{V�͊�9��:;z�����^�䃜q�T̒�Hr@\�ؾ�]WhQ�y�j��|���qRԯ��]��� �u�W���=�Q:t'�ϥ>?0ߞ)�h �7A��X�vVzƊv�<��$��P�����d�ɩ�\�#֢��ԐxG�rww��! ��Icv�bL�%Z��TR�ѽ�J��e��K|��@+RVPӓ�?Τ{$ld���7!�(��1�8�֮YY���Z��Dd�}�hZ[L���:��OP�[!�E��������y���qU�$`�OX�[{v�^���П*9���C�=����y<ח_�-���w�=kk⎮ XɌry�^)?�7j�W8$�y�Nu��_�=�H��mf���Uu�#��h��n��r�՚K L�p8��%�z�]њ�lx�̻��2�Ko#+�ps]��&��h�h�\~��k0�� ��9�=~����z�GLJ��;E���yFk�3�� (<v1Y:G�-�"�`�i������Б��?s�t~5���Iߩ��������ǘ(S֪�KP�5/2i�=3Ҽ��K�V%�r�W4��!wez�Y�bNW�~�%������5������{՛+[;���Dw�$�_>A�˵@�Vn>V�Y�G�,u��m�Z�X��G?�_F{G���8X�<�W�W��:V���D��A�O_����!Yf��1X��2��w�9�ֹ���MaFQZ�> iV���D<��x5�ɥ^j'��a��ٮ�[�gԋ4�N��Ri_e�X�k�E�n�⎏�]��u�sDA�q��c�iok�g =�k�%�b��H-���Y���s<7���^zڝGN<��P�����Z[YfhnU��s�Ҽ�Y����DE܄��4��&|��<�g����!�q$�3Y˚OcH�ĭ���1We�~Gz�9n�B��raTt�:8HbH�ekj�"�Q�Ҷ�I�S9�HسX��F=kFh2��A��r���_;F8<U�:� ���닳1q;������趍�t��]7S�����o���GnA���3)E�[]:��䞤r)�Z*�E�~:U�G^��l �(8#��0L�M�����ʶ-4k{U\D�=N*kf� ��ZM���;W]:P��Ӝ�,m!��T�j�� .+�gVbբ�F��g��. .v�ⶨ��k\�Nw��tC�yQ W���I����m`~`��}���a=3���~9�7W21�8������=�4�g��*��!�/U&��3PR��y�����4{�6"˴�]��� �r���@��Gڴ���U����{q�BC�����MJ"��9�D���+ =��K�Xa��W�������v:�����|{KNՓu�&�3�W5i�7�������[V^#��@D�8�qR� nW,�½��NW�J���2(U�09t���9#'��y�Z�եV̉ۦzTJ:h4�]N�U�;��W9���_ �?J��L���Edޤ%0Y�9�z咹�[G-}j�`|�0+���ǖ>خ�VT�܃�i���ݨ��:�\�CD�y��r� ��A���������'Б��.g��Esz߇�f�� �ڛN+`M=�����N~��bYv)���<m��*z�v!H���+�E~�T��z泄JA~�h:�_��1���E�۷ �� 2���c��K$?�\1`�Fj7�6C@E-��p��OOjtk�A9#�>��٦�x T�q��F$��R<��װ�����8�H�39�����2'�8^ǂh�p�ѥ�Wv�\���{�lzt� ͉�_vX�"���M�ZL�=(�r��IտvA�5D�0��gP;��ҫ�2���uqVEH�b�=�H�(A��`�sD���Tc�"D��q�qN��(�� �wܼ�9��AsĄ|���N !`GJ�t��<�1�z�r�ǣ��cQ��;�e^X�D���p�q�I�}���U�Oa���*��8�Cr��{з�I{���[�8�<���%RO�:���Lh�W���aֶ.������8<�+kH�!�ڊg���ؼ?�j̫ǿ��1��;(���y��<G>�t`��7ݽ+�t�D�JL���^A�]{;�aڧ��d[�V��`��X��Q���tU� j~�x��^ ���kw�<���#�|{�J��i>��Eۨ�cQ��_Jh'W���dۨ]Ɇ�����q�j�E2h��D��y��CSK�.d�[�U�͟�[�����k�����G·�֚�J���/�a���Sh �FFq_���w�����Ó�5�G1R�`��_����^�%���Ո���&�V��K��g�UZ��G�6�n�5�x�Z�f��(��ˏʳd�Y\��;�Գu�D*p�с�GZ��AZH�*�����1�АGzv�"���u�ڌx�]�U��dksú���bo�X��^��<����9�k�N 3���¬R�}S�=[H����pH���k��7�,:g���3h�\�3�_�bb�����]�/�20�d`�k��?�9^ǃ��� pz����h�6v��[a>�����1�ҵ��C����2A9=��@�)'��W�����̵;H����9����A\Ο��98�+b�|� <�^drN�.��-�R[Փ�hˁۚ�!`�$�Q�@2:����Wjy��c���Q�Y��uڞ�CQǡ��I�T����>pq�zt�)!�*�@����J˞��ZX�dps�:Ӧ��q���+��L�b|��y��k�91��=9�b� JA8���3��t�*+�]�y�p8�V�vL��،�4���P}�G ǥm�g<��0u�����I��M.)��@�*���U'8қ��'�\zq֡Gޱ|���-2�O~j&�]��C��հu��R4=x��F>��}5\`��<QͥE�^�y��c5 ���$R��k���f`���Z�uy% ��=����� ����b �O�5�({�T�+jeCj�ˁ�z�N@ I�+V�O���s�Z�X�hv���4�D�v2�� ��m��=�U��l��|Ҙ��:���g�P�(n��J��q�t�M(`���j�s2���h�BՍ��"]��\G����B��$�+K����&���^A�Ă(�s �1��M{{�s� A�vq<H�Z�L�c5�Ծ٭gsޢ���w��x"�19�5��*g���NA ]�l��[���H�SG�� �d0�`��1xW*k r5�+��NW�}�(mg�3��������d��*����'����KR?2@�������d %�g�J�?���b#�bz��և�ы���j0O��YA���B��`��\��>������U& ~���-����9{m���ޢ�x Rw����C�u *���V<�ph��r���J��h�tp0�.3R�~�TڷV�p}�U�NR���մ������dt��yt}D�DlT�9�^�c����(=q�s�Vb�J��:{�TpZ��M�<FO j3�2��^8�~�����G5���Ìt����pcC�]�WS'�g��xJV�;psЎ��x&@��0���������pK�|S��c90x��e�Kc?�3���:��z�v��~ qԑ�+���9�����T���x#9=)g�;X[g��xUT�xV�:P~@�8kГG��Oz���X��EWԣ���pGNp�֤M1�c����O�H�����s �x�R��*�!%���AO�#�����W[.�<�� ��K�7h����j�1m�N���H�Mz'��@��� ���vߺz�\DU��{�F���*��C���݀�W��U�mb �`�M��[��������q�]Q��rK��d��ߚ�;�b��s�'��P�U9�_Z��]Ho.�����QE�9nv�N��������c_.97���j��u�G;n8c�u`�~%�6giW��z����<9�k7��D���NOZ��^����8�?�P���(>A<�W����pB$&RH3���؎edwR��c|H���bz����uƷ�I��q��ɬx����ÎxZ�.5�r���t0�j��mE�Ꮚ[����,��=G�]L~;���̹?Ú��MH����*K}v�%+ߩ�Ň���~�L�!�J���OR&��)1Q��q^c�ɗ呹��c�u�$�=j]:�z���=�þ5�$��eV�'�b�&�r�U�s۸�����Hl�9���[_��%���S�Q�'����푇_��Q�]�����pk�?�+�d�>�����R�Ų��9�Sv�kS҄�bA�f�1ZVѪō������W*��$g��vi�?+d�G=*�+�N �dL�*8�zb�5��F���V��$�<��w�ʇ�;Q)��F�n� K(ۃҲg`A$��V��������`Kx��'#�g��'dXv�'<�lr�`��j�-�(w�ǵD�`)9'�+5��I|�p;v�U�q�p�#ӑ��j;�1�8�����+�=M; ŏ�+���?^i��ʐp;���^sW,-Fx`8��+�خ�+m~�����p�t��kf-4:�z�9��0��u��q۹��Ӽd�9�Z|�0,x]���G%T�x�Ikހw��C�m�Q�sf��$�_��5l�g������α���NEV�v�'=@�L�[��)6a��m���#�lvAs��_o�l�8�������8�1ӭsʻz�h$b_"ƾ���Q������a[^"�DDr���Ep���Fe'5ч��t��W{u�v0pr0z�ov�y��j�no��9�>��]���q^��_.����s���x��:�����,�K�I���Er ��y���I��g\*�w��Lw ��u�e�ݨA���t�D��'ԓ^��/.刿�?�x��4�$n���s�<_�xus(�>�W��1X_�E{���U� �1��Z7��M�g�"��u�R�Ma_�I�w5��$��5�> ��f�T�B�g�?Ƹ�]YI���|�&$My!�Y[��k��r���x�{����d̈́K�q�#^K�^|&�<C�i�K;H�F���u��[�D������n��D�42X^.�9:�q^�:�p����;�ѩ������'×�-��2��"��BǑ_c�؟����"ɕ�8���ྦྷ�#�R9�w�������4�E*���y;�ў9�$�NH���^��J�=pdx�b ��@�k����Hc�{x�ߛ ��oEl����Y#�e������4].�K�6PY�N}Qo�+KDGL���*����aqXm���r���{�穛�]"mCJ3O���"��c$��k�H�و��=Fk�<;v&��C��:��zׂ� �I�<W�b[u\�n�����O_�_��F��J������穮R��|�9�=�oL�وܑ�Ʈ��p�W:x�WE9�4�7<玕B�o�x#�����FGz���^[2�7@���u���\���1�S��(�yr=��m=馎�N�kE0�- �1P,q����~�k��G$y���.�X���5��r)FGC[��#��ʽR��{UUZ;��58^���-����=s�m�� HR�1<b���o��xv�s��V�ÿ�l����<RE.����ӌ��O�;�I`�#��Rַ.2R���d��v0GZ�@p ��4����q��+���YFOn���)+X¤Ze�����*cE��0[�qRr�O^�Ӈ�\�#�j�g�P`�,�G<s��J�,��G4g���4�t�c��k�'��ZYY0zqڨ��I���4���*y���D�_����S��̓�Nz*� ����Vb�A���M��k�q�lv��=?:C"����w�ߥZ]�۸��t�N�pw�i�$��沵F8Ԝ�TJqF��z�\"���=k��&������C�Enzy�^e����zU{�=+��b�Z�;oQ�5�(��m�p �+�o�~6WG�)���ߊ�;�8e�)��5�~#�&��i��8��f_:���6;�Ԇc�{��2F�c�WI��!�n{��\]��%��Prz �<#�H�!|�~C�}2�,y�Jrrg��Q����KVیg�����������g�^�ȶF7��:�ֺ�5���:��(5>d:�MY�c���t���ƍ�������4@��G8�����+���lV����hx�P�q�Ć�jڰ�Ǘ[Jz���2^�ȥ��Gֱ5���܄�>�ƾ$�6��p@뗭=?Ǟ!`�ڃ��I�Ww�gQk�a!M�#ڼE��[��&1�ڹ[����ۃ�\ޝ�^��{�+�{V�=��v,{�jڝ4��Lݺ�:v�*0�ƺ2�6�W>���� \�=k�ӭ���$+��C�Roqm��9��j:m{U�Pl<`T�z[�6�b�@��ҕ�@�z������}���fL�c9�&����µ��$ �3�LVrI�2��q�N=EQ��X����Y�_�0�T�ePF1���k'fZ��m\�>�� ������U�#����U?�n���Dw2��7m �*�!�c�j�DS���."F眎>��t���jT��U-R�8���1�Ҵ���:���x������R����i��iO�p��M,2�-��pe�o�U�wob@��UA$��:}��Ϲ�7�)�0&��8=�'R�P�F��Ҹ��(�XH�L~5�{tT�Xu�*)#h��6u�e�qC��`���~X�9���mM�j2,dn��<�\�&�@y'�יV���;iY-��L�d`Lט����HIi�������j&fb��yεɐ�g���n �㦥NX��/uw�RFG<�V�bA?�Vu��f�����W��T�I��/�6:���F2O�Y��0Ny���G����%�6"�'8=sV��]yV�X1J9�Y���s����5�c���eE�{sZ6����8�r0υ<�j�WXO�q�ç��Y���W�f�b�Z�����#��>)�l�~���;*���+�T:��wV!��X�i�w�����[[��ƼR;�3��n�����\�Ú�FJ��[�z;��/����R��^;��y-��<x +�<`�ȵK��������kA�:;�@�1-�rH����<���u ymÎy�=��c�G����>���w*<���\l$t��.I=3���#��W���'#�SG>O�O>��.��B�=�Z��A^x��`tv��zq��[:{���'orB� �=k^��o>�N1Y��`uP:;u2��t��;k�28��i˨��w�qך��J�7`T�=O֠�E�pz�e>��n���5V�P� �Ts�5�КU,r8�CM�Av;�= c�j0��A#���s��R}��Oc�R: �U�>N�J����0H`�<��`\�[��vry#��]SVg�q�=*��'���Y������Ӹ�_�����k:�l�xj��.N>��X/.���+"s��x8�j����}3U���52�:q�z�G��cJ�LG�~ُ�9�˶'��jY�`��8� �#��ɴ^B�Cd�ׅnd��J��b�!�*V��<��s�Z�+Yţѧt�{�Y����V���o=A=�+�j�)��$|�s�]妿��>���`�6o8sjz���#�&��qʯ\U�X�r#�a����Ήj�;}:��n�Z>X��W�J7<�{�^���uǨ��\��'�Y��y�T�T9���\f�N�n��9k�x�/ڢ��H/Td��>�W9��L{���!L�ȭԷֺ�*�N�� �|���Փ�Q�O �k�#���ֻpvx�}������k�Ot�pO����3Wt�K��fڊ��W^H��-�m���)w���BY!Aq�� ��6�k�P���nrz\������y,�yb2@���ןkj���#b7gzצH�h�I�ZM�m踮kX��v"|�~�#��SR K�*������8��3���'���:���RDa !OcRx�E�H�$��A��0O��\4W�am��q���Q^^&�kCӣ%4{���+���1��uVW��w��>���&�Ę�:W{�k�a�1+�y�^|y��0�H�;y�rX6��֮�rv����h��8�[����K��S���]����)��LJ:��t=zg5QK!���㊖9H|0��[ngckH�ʙH�]~�v���WgpU�={��i��rFG�mF�+9k��GI��w�n�����p�9ӥ�([��s���TTF���R�n#��TK����&���Fp+(Y�Y���m��߽R����Rv�kz�T�x�Eu9�u��I8�F�R8+�:Ky�QǠb�Yy������� {��t�Tt��WVv��ȵm9��9�qV�{UH�2�9Q�[���z�y\�@�I,� 8ϧ�E�$L�d��' �\����Ȉ�1�*�NI�U�o,\z�Ue�U<�sY�Y�(��߉?��� �rCg�ְ�ԓp� U��c���j}�E*M�������T7Z�h��>��j^ �G���5��+D.<Ìt�z�x�ټ0������b$ ;��o*Fʯ�� p^%�w<ߚ���;X����p�=+�U�U�,������x��+;<�3�^�W�NU㷗,r�������8���Fϵy����.^W,OPk���g&�V ��t��-k��֡)y\�OAӯ5[N���m���cB�%���fk�|/��U :zb��؈P�,"ӭ.z���߇J�>oS�k��t�*l�j�a`�����k�@�6�s���kƩU�we9$��t��@�J�3[�B�����U("lw?ʦ-��`d����yJ�6�-�s�K�q&_��Ms��$6��>ƢI�ˇbA�A��itF2}Ε5��g�kWG�~�=}�����F ���C@�*�8n�5�Os�o���~,���Wy�M�� ��#l>F~{�+��$�`&N#*vi\��iȑ���_Zֵ�j��aq���hYNH���uFV9�mE6A� N�Џ֨Z�힟֮ō�թ14_����3Oij��q�8����M_=��b핐� Y�O�0<R�8�5��\�lg���e;�i6w;����Q�� ��C]I<�*�s8�ɬ[4.C1��d���į>��6Ȱ� g'���g��U�,� ��9=� �������d��>�^�n�\���h9�qYZ��i�9��V��U���R=+P��~r@��ɻ+�����F0}kT����Ҵ� �F���MB���6x鎂����3n�z08\��qX�Gs0�����\�H�H�^��,�$:�#5�-MS���B�0��y�cX�$��J��Q$������Y�S��z�,���D&y������A�+��� b��J��V���N8�+��t�� �z���7M�P�u��z��ۊm|zW���BVFp���� �d����}+����+���Svn&1-��)��}i*y)s�zZ3��䝉����@3�J��^)YS��-$��9�Z�` ����z���֤ ���)�z4�&k�ps�q��V����+&9���Gb{��ƹ�B�},E���q��W8�Y�h��s�ֹ��xl�����tݑ�����D�@[��� ��3����@@ǭ]�Q\���s�r�4wү ��r=i�+�=+.�b@9p*Cv��ǁ�\Δ�;��E�a��Qڐ3��g�Sk��=s�L7 .T�{qMSc�4�=H�Ӗm����Ymw�Q�9��{�i{b��lM$nAtC�*j�������\|����/N*Ԝ0���z��G#9J(�]E:Sd�������~��ǡ�R��2��������wW#r�cl�����s>[�펦�!t�㧥*����s����X�U�,���,�s뚭6��r� ���Gh��$֙)�#8�Oj��`�֓4�@����� H�J��f���۞O5��<�����ti�VsԩRJȩ4��Ȧmn�q�փM���u&�]0�{��X�N9ajOs W���z|*Ĝq[�Jb8�1ӥM�?�q��K�H̱��c�95�a �>^�}������(m�d�W�_���Pø�#�T�Q��Ց�dzzT2���1����s�Fȵ�ߴ<��] ��G�v�s\�E+���Q������{���?A�t���1P_[��� ��]&����;����}���P]9�|��V�j���fRU~Nk���[�� pO_Z�M��T�r8��jb���6�����qm��H��VYŻ�n�0+��meg9��>���j���Rh��3�k��|Lt�ȢW�'�]XN��s�O���Z�Y+e�}kH�����LW��;�!��;���^�m�$�0\`����U��U)r�#F��6{f���|?j�;c�R�\l��S���'I��@� ��j�Z�5������ɗ���t�x���Z\9� ��Gbk߯�q ]��N:�'�o���K$jU�B+���څnF|���\*�a���q�{�S��#/�Мֿ�<,�(Ҫm ��[�.�0E5�V��g�J�j+3ܼ?�H}��#Y��_��J�? kK.%�H�]���X�c,?:�e A�)�=��Z���~�TF@C�v/�����kOK�*`!��V�N�<��Ayxa�Mk�Wȭ� �@�^Se�E���:sҵ�<H7����5�q1����X������d_�DpI�7��*2�Ϗaޭ�B������c�]����;�.�[,��|����0���/~OJ�[��������Z��+���~�X^+G�`T�̅x?J�'�*1���J�>#�����t��l�Ia5��_L�O�X�S���l�˼�`s'�d�k�'̬:VS�oN����?��*�����g���c�� ��j�ψc^L��Z��#��a�P���~5�ʨ'w^íy���WL7B3Ҳ�M2q�欥�KK��~���k�܉G�qY�~ E ��O~}��5/�C�Ф�Z��|_��e��篭`�RzD��[�G�� ��3\��⑴����W��2Nd�5r�ߎ��6��<瞕+�U��T0v=K\�NqׯZ�M�ȡs��J�����7�ץp:sp�c�_z���=J��*��F7g����39h�$���:��Ew}!V�ߥa\ܼ�3Tc�?����4���q9����DYgwl瞼WA�K��6��G��=6�z�$ga?��{G��3�(ف�X�1���70�.y�߇<5�F�� �5��i�L\�6�ю���Yik�W<t=M%���8���!�'��R�DV�J���qV#��3��튰c ��GP���H,G��t0��sr��H<q�e���)# !�j�wu�;�7r�4�q�`��<���!��,��:�=k[O��/�V�`bPs�N�Z��=�nv=o#v[�,�܌\�x����ö���l�y<��Yzu����9'8�4i�3�x�"��F2}�G �l 1[�R:��@�r:\�*T��]V��jeX�+�2�b��i�4��A�]&�a!a#t�G�W�Ɩ#P�7�J��zWTݜ�v�#DA��� �}��T���q��u���B#�=V�@s�ۚ.gؤ���wu�<���-��,�89sޱ�����~}*+�D(a���;VD�&R[vH�}�H���`�vd�ǽ'�*H�<�X�^�ޝ,�.I�c��Ӊ���M�屓�V\3�L})Z��z��AcE��j�qr1�rOJ�5���5�yy�.V���r1�;�Ⱦ�9���������q�͚������5��lז�y)� ��y�X���g�����b�����YW�6I�9�IhRZ���OBx�Yw��I+��zI���ɻ������Z����Ek�͌�9��ҞdVQ�έYc|�ÜRZ^b^A�̮SB��<a��9� `�[� m�ӭt���ڣ�}�I{f��(���JPR]�/�t��%2��?�f���G��z������+���̏�#���2pi�x�m�i�B�g<VK1�8�Y9f9�J�MV������+��bUEg���p���Q����I��b�z�O)h����OPG���ڤ�g9/c��oac瀣��~����Ջkp[p���<� �yf��Z0G�G*��fA�~4�9��Wk�R��H*����7�.�Fq\�0÷f�uK*ĥxjr~~� �➷G;��x5.���v,V{Y���2���:�\]9����,EiţN+ҧ�8�:U���8lV~���Ą�ʦXx�jY����Ϸ���ޜ�̓�~���=?� ��� �m��ՎI%�@�z�沣���}��J�督��C��uG�6,<��y��7$�yw�O�1��sR-���pG��bW4�D�s�z�����2}�J�kd̠�#�u�֚y�Ҽt�z�B�3c�cʯ�Z�Cf�9^G_O��mA�@�*�:\�9�)���70a�,A*9� a0�t���MՇ_aW�t�t'���i� �Au9ht���8�&�Ǥc�z�ֺ�m#�9�`i� �'s\�ƾ�QG#�6d�8��O}0�.<du��,p^y��)�`��>��֙|�G�i�c�:ӓO�x\�zWQ%�+��y����e��3�J>�Ñv��Pj�:{2���0=�*۲�W�)�����v�H%F�:���LE��G�T�HU��T�ӧ�T�#�W��b� ��3�U�����ӥLqM�<���X�sҚ�䜪�{WU�i�*;�����!F��Z�U%r\O�۸�Ǵ�cd[0}s�[Ƅ��4�u澂XDσU����x�1��q�;�㾅�G��qڽ�3�ι�3n��%������s�?�? �{�."��q�N���0��c�y� *��qֿBu�C<,6�z��<K�ky��s��&�y���,�KI#�"k� �@����~e�e=u�ZZ���apY`U猎I�Z/��-�_,6:b���g�c�X�T���b� v��l�:ҵ|=��+�I�]$��0���z�&�9V�ݜA�e|Lu�o�X��=8�G��G�C�@�_ ����`qZ{9�fG��C���&W�9�N��>-��]ϖp8Z��R��""���J��xj$�IA@�+���飋I�|���7ܻ *GRjώ�P�%]�Pz�W�x�C��P;��:�o��8^8<u������_C6/�N7H@�'5�a���}�5���yR��략��js��F''�kH�Ѫ�4x�G�=��Ń��#�OJֲ�X8������œ�~s�>�Ҵ�|m�&fS���+:�%E��hK��ŧ� �d=1��W2���_7[x�0�q�z�5�o�#Ù3��\���G��>��� L��5j?��� ��t_���z�$~4L����}e�����F��$R1p2f��;T^e�>���O�.��I�ژ�2^A����ZKX=����r ��#=j�Ǎ@��A���Rx�s'8��T.�b��_�^y��]Y�)S��}���D�s��+:���U�:}��K��<���T��2�H�Һ#�U{���Os��d��\w5�� ��r:ׯ�x�x�ys��I�wz��>i[���[C&w��J�=[Q�n$I�u'�s�����F���y�֠�d��U���ýw��`�"x�q��u/�\)c�<����!bҞ8ұ��!~��T-q�I&�:XCdpV�V�-\\3���U9Hc��ґ�.r8�_zo��:�ta�y�>Љ�np+K�c�Z�@9Rz�h �$ؼ�<q^���^Z�����b�v[��0�9��-��|;����<��w���p?��Z�ET�U�����ʾm]��֤�d�a3�J���ݾ���6����5����l������j���9�����QKue��g��^;�c��c���O;9l�q�� <�n#�w�U�q=�#���ۭo�:s�W�z ��X�uު���]Ƈj"�]͌���QW2l��h�T�g�Eh}���`}�_δm�X���MH���c��5Ԣ�1rm����a'��C�.;UT%���]^��}�2)��k� ��rZ��,&�u2�5�� �`ڹꇆ��{{UT@����� 9 0?uG�uS��l�s���,��4$������|�� ��+�Y��v)��RL�L�z���T�;�ʩ�!-Y�������=z�73m+��_j����Nq�&�n�%rܓҰ���ǘ��ǯn*%a���Uۄ�~�JD%w���)j*������zӕ�@����w#`a�������K�O�sR�ZF��?�Fx����� Pi����zT�<��P�>TKst0~lAڳ�� ��`�ң������ӎ��2�A!۟����\P�B�2�����Vlӱ\��<��bXU~i�y��K�R�}+�rՊW7 ��{�I�w�'���:�������;�1i���R�j7&�}���b������C��6�P�ON�ʩ�0l�B�뎕��Z��\6I��9�U���v,���g�U��rX�L�IM����O�t�2,����1��%vB>PO8n+����('�p��8��WF�8����\����8�]���b�ON:� ^�p�������'��fH�Q����1���f����+��=:W���GY�t I�+:5eJi�))Ǖ�<�)Y0ÿzf8��U`mo\��+�$c���Ӛ�SG�bh:shrpI��<c��\r2G��S�b�x�h�4�^��U�ֻX�`��d �4�3 �=��<"��9�s^b��ˣF���;��� ��9��FУ(2��g�dxY2����ƫ��G9���I��%���xB��W����\���:m�1�R`�Pq^�F0x�MT�#6�3�ڦ�.�)^h������ϑ�Q��Qә�Yp����i���Rh�_[x�N���E9��k�|S��Yn�Kd�_K��j;*�瑊�p���_���X�{�⅙��z��q!��+1�$��r}�܆cJkC���p��0��/�w�?Zӂİ���m����q�Z6֘c�5�[}��Q��+��>�օ���d���lNF@#�zճӎ��9�םS��PKs�N���jװҋ�����+;3�q��z�C�Y�Q���;��>�%��PHĴ�cW*с�������x�N+[���=E9Tg��1��qJ�}KE�Ǵ��y��V</>����ޣ��� (�?{���-[��h� ����Q�0F8�ң�!0T䚞f�&B���O� ��I9��������y���U+���?ݐq�p�DJ �@���A ��(����銽l= � 42n�8���C �c�_S\����T�=s]�x{%ېp �V���{��"�|�^����d���Z���,��s\���*���4���e���g�H�dU�ʃW�ўS��z �"a��ǵw���.��4:�w~��q|�~l��I�n�k�mBX�ӯj������!���0$ը���k���"O��x�n�@�����(+?gR��f���F�.3�Z�`r~�3��kw涴Z1M�p��B1��H���z:�6d�9"�K�eݞ >�X`�c��I\�U��z\c ɭXm���5%�� �8�"x�9���f�HlKՅ9�w#^D��.��憠�"���ԭ@B��V9���M�?1^�tѿ��]n�f���8�k ����R�S�o��e����b�?Ƿ�cv����π���Gv�\�+��5KD�x\���@�&�7�[C���"կ��.�t�!�'�sҹ}V�y�:Wy��jZ|� blw W�iW8c���K *zj,L��0��s�3�����j[�9#$m5U�����ڏ+ZD�$�'Ing۽H�R��$#=z�>����sM�/��^Kf^K�ps!�8�N�Ӄ�� ���R�>^�j=�_Cx��w4��VV ��K�ۓ̬}r՞[��sҞ��88��R�DZ��T�b�\�rK�>��p���ߚ����S�2:�4�<\�����r�T���N}�2Ӧ)�4B�I;�iu��?y�y�ZC��F�Oz^�,�In^��8�U�|��判�|V��Q�W2���4��F����*��ۊ�T�7��d�'9�Y�C��P��55��T�S(�:(�9���g�� ޥFx��<#b#��(1�k�~�dB���9��p����T������)���ذs��L��b�0@�G����h��)�SZ�P@�ʚ��F>��q�|.�I⼓������>cC�������R<F������szw��,^l��&��OBQZ�TP��%p �9��F��ig�+��A�����������v��T�fRi��1m�����u6��r�8�Mbiv�[L2�d������/0<�f����M���[�c�����q6���ҳl�F�����:�0éS�}+�&�^��}0U������Y� ����K�� � �Z���'9����Cz�և:�(#;zV�� ��'�ựv<����� a��]0��0��:I�7�Ӷ�O�+��uP7 JuD#p$���&����sr��<�]��!8�j���$@zSL�A� nw�2p6d�qY�����ל�W�e�#��U.YBc������d�G�玣��s�ձq��=�d����㟭d�R��l�H�ҩ�&�����Fu#�*��1����dٲZ f;���� �t�S&�z�߇�\�[�Y��O�K�i����{���/���5���1�U ��f����f �t�eZ�.�NH����LB������� L���Z��pq�ͦ�F�ŏ��O�QԴ�X��q�]�z|P������m!�;+*�Rp�jV��mR�i%Oӷ��`ܱBK�랕��0#�'��k�Գ��F}:W,���d�vc95Y������q�d��4�%p �>� Ϙ�t&f� 㜎�����F�3�U`�m�-��*���e)�S�)-�����<���\�ZWօ����g�й���d���w�D��}=}+�6�.c?vG�ُ,��z��Ob�����R֭�s�X�C��q�"�8O9�Z��7�#����?�#Hx�י�)Wa�E} �?N�fpUx��֡�o0x&�l����̱Թ������zf�~����kֽ�.��&��]g��Hm�X�>����\�!���R 9��B��#��b*������ �-�c]�)�Gz�"��3_h����:�2�#�x�Q�'��m���k��5X7(j�����b�ϱ�"ܮ ,}*���-�y+���Yk{x����S���[�q�5��)E٣������ֹ=mw��8<qZ��bF##>Օ~D�`s��]T��Z�7�[�o�O���jX6�pO���1�09��������Q�c7̄Ӂ\��zzU�k,H� ӊ27�㧭Mm F���7T\��H� I&��[��ܓ��U!NH�[�RT7�A\Ҩ�a�� t������G���`��k'yS���ֵ��I���s\��Q1��y�M1����ۑRN�'������A!���Eg��N ^~P3���=���M��� a����J��)�*ҹI�a�2)��{�ꊹc��9�:��l��8��*Ļ���q�Z��qC��<��y�=j䏻��T��ApHm�8R*y�3�ղ�G-��j9m�'����42(n^ ����x{_��%��#��n�\l���c�*&�A�#=�ʔf�L�֧�_O�)?)#���������88��Mf� #Qُ5e/Vf� ���@��� *99<qL�\�=9�N�a88�)m^#*9lU^Ȥ��"�%��n�:�I.A�;x�@ ����R�ņ=+�g��H� c�#��u��\mb8�X˵�85n v��ߵRZܖΖ�ue�9#��I�-Xv���<��6��Z�ٛE���<{�b��2橹m�����I��J��V�<�8lx9�H�˴�)�8 ����'�*���Gjn(JMQ^.>r>�4q��k�k�!$u�U�M��^k�n��&u+t$b��O�Ix�s�}���� �[\��ӻ�%l0Bm�?�\Ǎt�.�]J�w������μ�Z���Cg0;��'��g͞<��ij����8q��_� @�`p���b�\�3^k�hK6�̱�w>��:mlz���9��((dh�;`J��~�b"un��������G�U��ۏ��듎hu1�R-T��h����Դ��4d�xlV#�����z���6�7֬>Τ��5���Ճ~�i9�ڻ)����Җ�����ɓ�������j_ �����\rx�6� ..!0=qҺVkje�5ў*��d|� u��s�k�!�QA���L��a$Q�?��j^m��pi}��e���=��L�|��k�ȡ�B;�\��|-$q1����s8Iيx'ot����H�Z�{k%��6�=�����^�����N h�c���F9�jx��SOu�j�sΛ�����O4�q�qHzqA���䜌s� �(��g��V!�s[�7���PMds�s�+��Kb^�M��3���U�t$����5k�����ۢ��q�t5���x�s��UE���t�Ia���־N[��f�5,A 3��V�zm����H�-�j����1���79�A~��[����J��vrNv����̌��}��Ko���:��u��%�sOӭ[�O�h���Һ#�\�錪�-O=���N��{֕��l)A��ֶ.4VYN��Ջ+%�G��N┴9=KI`8BlsQZ#G�F@���P�@�X{��-�n~UlV���B9̴�H�eA��54S���9sD�$�^�����ޚM ��n�w@�,Ż ߷�J�y��;�d�˃�q]��.�7���_BY�k >F3ڶ,u�#�8��覍y�??֡���H��sZ'aZ�Qw�/�dg�q�J��U27,��5�����NA�}}�B��#�jM��A���g>Ƨ��x��뎵ԟ��q�z����yl�SZ)�d�c��� �=��J6�z�=���㹪��/^1ߚNcP��ut�O#����w0*�6~��=�s����T�f ����Ϲ��r��$�y����u���,�πs۵2A���j/�V+Z���-���jp��E���\[eaG^�P�% N���.�B�8�U�B[z�����![<c��db��c��*:3�� �0�溻==#�#��G�=+8�dH �?9Դ�����=ri+7�J�+��AW�8�W[;������3�+�G�r�ŷ�O��j&���j Yp8��O��m�XGޮ�Z ��z�¹�؝���5�4o��3�ߥS2�H%s�4�v�o����C&p ?�X�km�J�rpO�S�݃��qS�\����i�`�A���7'c��p�F�<�W����c#�v���4Κ� 9��z�kd �s����4Ee�f&�Nx�@���kv�R�N�ɮ�S��ܠ)�W5�ؒ�A�z��aM�G�m4��n[�+��m�:jo�2�+��wJBc�t⼫�^��`�O@:�5�F��N�J��Vx@��?�L�k>C�^�<,��� t⡸��.~L�/j�y��c��h�D/+�qҘm~nrsһ���?'g�5�y�l8����iz����A�(�=GzUܭ��=�b��Ӱ����<㧥uª�!�p���������5��>>��'9��p��?>�5�\%�M�c+A���� �1]m�(��5�����t�k��r�A�ں�2�u`�<�����No�����Z��2�H��N)S$6���M�۾2����(�܀�Ϧ+�Pq��rY88��:��4�A�<�ʑ�ǎ�ؘ�!�J���/\��zqZ02����uϭP�ǘI?�j�R�I�Q&H�~}nsO���2���<��Iއ�ڑ#B���8��4�$1 ���h�dt��GJ��W�:�^>�Ҡd������W���� �2rH�����;�ҙ<����qQ�8#�����z\��L��;u���1�3�ڪ�ɸ�g#�;~�|�ێ��ҕ��3�N@{t2ġT��U�y%�F:�����S'g��3o!�ң�5'8��*f<����099��ژ�)�Ca����6��\�{t�&����'�=i�����0q��jԬ;�2���d��Zu�|�<b�����G{d_���۞�� �jÜ�RD��۞s�*��6�#� �L�enT;t�9�x5�͌qL1`c9��!X��뤒��?�}É�ʓ3��:�?�[�&_�Ҕ�+��Z9,7!������i@����y���;��J�`��)(قe�\�r? �rTd�⧄�s�I4!��|յ�_R���?7�G1;z�ǭI<ArO �9�w,0rx���@ʗ� ��U_� ]N1�*I��!�sR@��I�¹*4tAX����匳c�����l��W�Z��!���:՛�1�S����tj����W�r�q,Lq��Ey�[�þ�0qW� >2���\���]�|*A���Ʊ�Bk�^9CE�� �vV�I�:��j���^}O�V[�1�e�T�4&�&��Īru�UN��.�g����Sv���֯ B�`a&{c���%��ѓ�iȐ���qXqhd$G����]��ݝ���r}kJ��4�G��R�I��iw7���ʅ-�Y>��������NM���:��DF7ƹ�G�bī��,|4���u�3��M�Ȟ6 bs�F+ӯ�8�L�����4�h�Uϯ�/��b�����x5X0G^+μY�Dh_1��⾧��� !;zW�x�D�Ċc�?�j�C��:ib.|S�;Ík3���zc���]���:澤�����:F23�:�͞$�6��\�{9^'�.tN.�iTFY.y����K��!nk�<�!�g�בK��{R����ٔ�4������F;�0�����Lϔ�ןj�?��"���H�^anH0F �h�AjJF�;q��Z�YڒG����R=_èLXQ�@�]���f`6�1��<7o�:sȮ�D�AF�z�`�������vc����u�;Rz�8wIX�h�J��)�v���ޯN��'�(�S+���ϽtV��h뎝듲��� @�����æF �m"Z�z�`���O��d,J�t�OwU�b�ݖ�Y7�7E<�ո�gԯz��!~a�u� 7AבO0�����N��H�ASf=�*���N���[�S�rzzѸB��∣,O@W��=I�_N�C�<բ�܌�EH���\�s�멢��)�zq���$&�I">R;� �]Ò9�)N8��NG��i��S[C�S�jE��8< Ў,�:�~t<aN:�9�]�,�7)���Jg!r ����F1�U9Ѓ����M��5� �AUnn�7率ޫݱ�H��|�M�ӮWr2}�9Y��^|�\�Oo.�$��V� �I�$�ѷ�霜�>Ս����G~+J�ݺC�yGE��L��:V����9�T���x��Ƕy�_ؖu*�<��V� ����r*�R�+����ES���;��lb���J��a����ZҿF����{��e���$���Kr�0:c8�0]��F�2:g�X�:�� ��0EWiٟvH��ܯ�v�h��e�pG��Y�)B��$�U-�ʈ��nSֲ/�G�y��Rzh#3Yϒ��מ���m�����W_�K��8F����> <����Oֹ*��7�����r�����з$nj���N���( ��3�Mdѭ�(ă��ҞIٖ�;�^7]��t�Zt� �Vt�+��(L��sӟa^�eX1��Ҽ��o�a=���\��q��D�pwҺ�/tʳ��1�!�m�{}+&��p;�H=���� A��������S�P9�02�s۽r^'�VYr"����0pW���� f�2�<�+�祇����� �v�5B�A�NP��j��`���W���X�3�����wƥ�!�<<����A�T���d�+�/�d`���=OE��l�`�c9��qgDj�sµ� �X���cT�3�c��5��Y}���x���\���k��-��h��!����`T����C�@�vZ��ۜl9>�N�D� h�s��z��A�S���+�h���[�6�� ��Si�yU�p8�[z~���R~��W����q� ���n�;��]�鎕5��FQ�=q���:�[M�=�<W�R���E�`� ��^�Buh��w���$~�R���V% `q�j#;;�h�' @R8��i X��'����$��#��Ur�Q)`��Zs�TIq$9,�u0OC�:�W��g-�ǥHA\O���]�BC~Xf`UOn��S�U� �4�� ���Tr0�W��z�We�YŰ�g�9�����]�����c�`t�o�d(Fӻ� ��$��1���pM"��� �@��Q�pZ�C�,r8�2�F ���;��zVrBd�'��js���ބ,1���4�����s����͠���S$�w,A���ґ�#�`��Lt��}C�ϕK6F��Q�g�J���O�Hb!Nѐ?ZӟPM!VU�=���qٽ�y`�F@�9��GR�0��ݷ�?QN?x~4Q_�t?8$����o�� (�{1���?r�Z(���<}�q��J(���Z���c^�?O�E���C��'�}j���ڊ+���M'���VO��?J(��������U���(���i�$_��N��T~�QK�Os.��y���>�E��^��c{M��O������]M[��z�?֏�V�c����֠O�� (�Տ�C�?����^y�?��O�ʾ��v<o��x��?ʾN���!��(����O�3�����W�=�B�P~�RF]��Q�QE_bz���Q^���<���E���D�2��H����WU�����֊+ƥ� ��Ɖ���Qx��=h��J{S��x~��S'���4QJ�C�5_����H�t�G�!������jh:��QE_�%|"���_��V��=�V��:����QE5���t_}��ҥ�����QMn���.[}���#����=袷��"z��uQ��������R{��}��6��?E�B�f��:ч�=���4QP�#C����yU����US�Q/����]��Z�C�袢}}JE����Z��'���E�P](>��WS�/��(�����.E]G�I�>��'�_��QED���?�O�+���ֿ��:(�>ѯC2O�~��UQտ�VOo�.;������w�� (�E���ٻ�E���U��ǹ�x�EwQ� �_�*jOҨI���(����!�G�Y:���Ί+ϟ��v;��A���*d���(���u-��ލYw_�?ϡ����� ��W�>��x��x�QEr�s������?�Z�m��� �+�u44��?Ӄ��ErT��bh��������}(��'�� ?u���[�E���?�ҩ��U��E�?������W��d�[�h���B)�������UC��ċ�i.��������n4V|�i���V李 ?��?����o��ܢ����,G����Js�S���Ee-���o�)�}����E���6?��T����?�E��=��*��ESٍ�� |
| URL | http://zero.webappsecurity.com/resources/img/main_carousel_2.jpg |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | Apache-Coyote/1.1 |
| Request Header - size: 288 bytes. |
GET http://zero.webappsecurity.com/resources/img/main_carousel_2.jpg HTTP/1.1
Host: zero.webappsecurity.com User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0 Pragma: no-cache Cache-Control: no-cache Referer: http://zero.webappsecurity.com |
| Request Body - size: 0 bytes. |
|
| Response Header - size: 351 bytes. |
HTTP/1.1 200 OK
Date: Mon, 14 Mar 2022 07:13:43 GMT Server: Apache-Coyote/1.1 Access-Control-Allow-Origin: * Accept-Ranges: bytes ETag: W/"112646-1358497020000" Last-Modified: Fri, 18 Jan 2013 08:17:00 GMT Cache-Control: max-age=2678400 Expires: Thu, 14 Apr 2022 07:13:44 GMT Content-Type: image/jpeg;charset=UTF-8 Content-Length: 112646 |
| Response Body - size: 112,646 bytes. |
����JFIFHH���ExifMM*V^(1f2x�i��HHPaint.NET v3.5.102013:01:16 15:54:14������(HH��XICC_PROFILEHLinomntrRGB XYZ � 1acspMSFTIEC sRGB���-HP cprtP3desc�lwtpt�bkptrXYZgXYZ,bXYZ@dmndTpdmdd��vuedL�view�$lumi�meas$tech0rTRC<gTRC<bTRC<textCopyright (c) 1998 Hewlett-Packard CompanydescsRGB IEC61966-2.1sRGB IEC61966-2.1XYZ �Q�XYZ XYZ o�8��XYZ b����XYZ $����descIEC http://www.iec.chIEC http://www.iec.chdesc.IEC 61966-2.1 Default RGB colour space - sRGB.IEC 61966-2.1 Default RGB colour space - sRGBdesc,Reference Viewing Condition in IEC61966-2.1,Reference Viewing Condition in IEC61966-2.1view��_.���\�XYZ L VPW�meas�sig CRT curv
#(-27;@EJOTY^chmrw|������������������������� %+28>ELRY`gnu|����������������&/8AKT]gqz������������!-8COZfr~���������� -;HUcq~��������� +:IXgw��������'7HYj{�������+=Oat�������2FZn������� % : O d y � � � � � � ' = T j � � � � � �"9Qi������*C\u����� & @ Z t � � � � �.Id���� %A^z���� &Ca~����1Om����&Ed����#Cc����'Ij����4Vx���&Il����Ae����@e���� Ek���*Qw���;c���*R{���Gp���@j���>i��� A l � � �!!H!u!�!�!�"'"U"�"�"�# #8#f#�#�#�$$M$|$�$�% %8%h%�%�%�&'&W&�&�&�''I'z'�'�( (?(q(�(�))8)k)�)�**5*h*�*�++6+i+�+�,,9,n,�,�--A-v-�-�..L.�.�.�/$/Z/�/�/�050l0�0�11J1�1�1�2*2c2�2�3 3F33�3�4+4e4�4�55M5�5�5�676r6�6�7$7`7�7�88P8�8�99B99�9�:6:t:�:�;-;k;�;�<'<e<�<�="=a=�=�> >`>�>�?!?a?�?�@#@d@�@�A)AjA�A�B0BrB�B�C:C}C�DDGD�D�EEUE�E�F"FgF�F�G5G{G�HHKH�H�IIcI�I�J7J}J�KKSK�K�L*LrL�MMJM�M�N%NnN�OOIO�O�P'PqP�QQPQ�Q�R1R|R�SS_S�S�TBT�T�U(UuU�VV\V�V�WDW�W�X/X}X�YYiY�ZZVZ�Z�[E[�[�\5\�\�]']x]�^^l^�__a_�``W`�`�aOa�a�bIb�b�cCc�c�d@d�d�e=e�e�f=f�f�g=g�g�h?h�h�iCi�i�jHj�j�kOk�k�lWl�mm`m�nnkn�ooxo�p+p�p�q:q�q�rKr�ss]s�ttpt�u(u�u�v>v�v�wVw�xxnx�y*y�y�zFz�{{c{�|!|�|�}A}�~~b~�#��G��� �k�͂0����W�������G����r�ׇ;����i�Ή3�����d�ʋ0�����c�ʍ1�����f�Ώ6����n�֑?����z��M��� �����_�ɖ4��� �u���L���$�����h�՛B��������d�Ҟ@��������i�ءG���&����v��V�ǥ8��������n��R�ĩ7�������u��\�ЭD���-�������u��`�ֲK�³8���%�������y��h��Y�ѹJ�º;���.���!������ �����z���p���g���_���X���Q���K���F���Aǿ�=ȼ�:ɹ�8ʷ�6˶�5̵�5͵�6ζ�7ϸ�9к�<Ѿ�?���D���I���N���U���\���d���l���v��ۀ�܊�ݖ�ޢ�)߯�6��D���S���c���s���� ����2��F���[���p������(��@���X���r������4���P���m��������8���W���w����)���K���m����C ��C ����"�� ���}!1AQa"q2���#B��R��$3br� %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz��������������������������������������������������������������������������� ���w!1AQaq"2�B���� #3R�br� $4�%�&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz��������������������������������������������������������������������������?�.�f�Z�4��Q@���4�}h�����(��(P(����ih:Q�i?�JZ?:9����(�@v��P߭��K@9��S@jJ:�w���-'n����������4qG�����ʌҚ?J?J^}h����"� ��zP}9���P(�Rw��4�i�֗�w�(�����zP�t��4����*?�J?:�9�x���PG����Lњ?iz�@ ֔�=i)G4���ڊ 擊:�Q���z�g�)A���%�2hh4�ю(��Z)(�����u�w��w�Pi)�ܚZCGJS@ ���(i:R�A��i���h&�����>��ޔ� Z(�֎�rhM&h�Gj�Ҕ;���}h�i{PqA �JJZA�R�;b� �G��s�J8��zSހ��f�Gj3�Gn)i�^�i:h��x�&��Z(�)h;��Hz�G�h�������@'�KEZZY�*�X�;����1FW#�`V�G�iGkd�,]�3�b���Y�M�f�RqO���&q�@�Ն�ld�el���R-����z�i���x�x�V���Z(z�@��մU�?���֓��2��E�}?Z���R�@ GlR�@!�h�x� ��~|S��ʁ�U�c8 ���� ��� �g�Q`+�d��ir�� psQ:4g�O�����P(�S�-%-7�����E�-!4R�f�})E��Ԝ�R��FOJNԴ~~8��4Q���)�p9��h���v��?��x�PA���zӨ {R�QHiGҀ �? ? Nؠ��_Q@��G�'�(��4R�����}�M-%%-���f���3E(�����:��4���PsK�Rc��K�4u��@�i1�-�ڀ▒�O�G9��Ҍv�ރGjA@GQցG� � _jC@�1GzN�(�:����@�P�JN��i(���t��J;�ޗ4���A����4�Ҏ�){f�����Jh�i(�JI�(h�Pϥv�f����c�@j8��zs@ �(�Qޔ�P�_˺�\�#�[#���}E�[����Y�t �dS��R@A������ާu�Hl[|��;D��p��>�ތ�tg5���G���ʹ�w�߃ב�2&ѡ�w�!ך�?���k/��~�h�Y��V�#���h6 ���?9Ht6 �n �M�ς�N����4[�y��ѲO%��=;֮��#�>j�d����ñڃ��?:�$�ߖ����W�x�E���ba�^{����!v6�vCg����'{�R�- ��$ �xڭ#ˊ̽���,T�'9�����%�p�.��G�늡��RJq��Y��5�'�Z:U*�*A����A@��t����g�.9���~ �<I�Mw�����)�2J08L����ך�����7�a�XO�]�����@~��m���ln<9u����\3j&D��mWb�8���8�"��sg�����'KW���z*j6���ww�� zsZ��L�ݶ�ͫo)�$�t(P��N���y�:g_'�� }���o��Z�K�=�Mυ�JZ&��<���W�3�k�/X[���?-�k����Z��G�u��s�H�t��9��+q���˫R����<��ΨM�~�`���!nM>�iv �91�ލ�v� P�!F���{��[n�}����͔�����RmLo� :Qۥ�H���Rf���P:Q�((�b�):u�#4PT�ʏsrH#GuVr>�'��S4��dS@{G��g��Ѥ���5X� �k���=8�?�t7�Ǥ�k�OGt���jv��C]����=:��:F����mܯi\B���ѱ��#�W��Ң���n/4Fu@#G�d���G�z�:�QIhL5?=<K�c�φ�Z�ÿZ2u>He��s\�Ɖ���ݫ.rf��>�f�������Oo�Fe������ ���_!x��Z�7�I|�-���ZI��d��9yp��j��*$H�w;9�}GJ����s�*��Y�V��l��FTZ�pF}���0�P��O¡������RsP��sG&�Ζ� �?*Z(�����-%-�(�G�� �I��pSҚM�u�q�.>y��dSŔC�;}J|� "�ʴ%���g�����Gu��(�`S�������2�;w��ԩ��f�CKIE q�E&��@j=���Z? :�O8��ZO�����i����h�SG|Rs�ih�� J^�PzQ@�旷Z3�;w�G�A�- ��>�w��9��}i9J>� ^3Ҁ�4��P(i;��I���w��G�@�<���4P)G���ڀ=)(ϱ�� �=(=i>�dPx���ր�q� �@�� (�ހ�� -&;ө(�P1�"�1@IA�ހ�����PG�n����g��Ŝ�+%�l���Yd*x �Dנ��P��%��tmL �bIܼ�µ����^���A{x�L���d�X�f�O���o����4��鮺w�>'D�Qg�8\�o�2?O����&��ƛtdb>Ԟ)�ء����q��]k��[��е�CC��r�y=�Y�2��Gþ?�ԅ���Y���υ�{�GJ��I-��y$<�U?�����1agp��&�`�1�\��dJ�]n)#�ek� ���v}�f�fz$e�Kyd������#_--�=N[�⬬#���E�-$����۶���$�0"��n�-��^R�ʼn�Ozm+SsR�t�RP���4f�Ҁ=��Dԣ�ԯ�&h�;�)p��������+�7�o������z���imƯ���c������f�Au{|�c̫v�̌�VE�"���;����=#�_����3�6y�����Һ-x#8�L_�^��i�km'����Ɣ�c���6e�����C�Q����þ$�vJ� ��g����'j�\鳫��GԖ%�˪��e�� �=_#�T�ٌ���-�H�He}����6������,ҟ6K��U�>��{z��\�r<� �_�n�H�'�{�@�Nk"����K�tH�ʲh����O;� ,�s�_(��8���I !�s����I��I��&}i{Q�Ԅ'j? _ʓڀs��Η�E��>�R�ZN�R���ޕU݂"�v8P;��P����y���"��G���a 2�*��:`��W�΅i������������g} i�����mDK4�z��1F��>S�e�n��o�f�}&8��w�%wI%��;��+F�B��������CD���R������c?�O�Z��z���aL����17��zW��uM����o��i2Z��`� *�#��,o:\+��$K�0��p�p�)r<�X��|��G}zu�;�V$�3��K�Z����!w��X�X��θ��N?����2�H�(E��(�X��nr�8�*��}й�mƪ�{�1�����@�A����֖��@�g�攚%���p+ҭ>x�T�T�<���,�t��3���������$ifH��p��q_Z|�7�C�.�e�]��'������0�M����ޒN�3�j�>x�g�<e�K��<)�h�`��YI �p�6����>��bW�G��[M��H_xn ���n�d��[h��5�_|7� Mnf�Ҽ7s4��2�B�PI�J �)Yligk������Ԏ�l'F��W�����]�ˈt��A��l�ܚ���R?��vW�qC��-Na�w�,6�����^�$>x#�^֚$;V�v}�+b7�����jo��0����V`������AK@�@�ގii(�E���:�𥤠<�P:�Gz(�G�A���֎��c� J(Ԙ��(<�E�ƀG�QZN٢��G^�Cҗڂ3@){�ފJZZ(��E�G��K�K@ �E/zLPE�(�@QHx��I�4u��Z:R��AҔZO���z��撖�}�i;�Gj:�{R��h��u����@ZZm/"�ƻ����x�g�y`����>b��1�}95�q���g \h�;����jZЀ�7)�COʮ��L���(�+�˫|=dQ�m_O�&�]�>��������!m������t����I�?�~&��_,k�gbu]y9邱��u�Ɨcc��f�9pYP-&�pc\kY�ӵ���5��r��[��7�i�L�F{n9���<Cg>���Łn<�c��+��,����E��t��;��p;W�j��y�Q���vK`v��%���$�d�� �{T:�Dm�3M&�@���:�x1ϕ���SP�l������ϚĤc�.��B��j3O���#�֣?�&!ԟ�4�� ���N1@��[[���\���L/UVUP�nΌ��M}{�U����5-ǐ0u^�S�3�2G��Z�s�b��j��$�"Tā��w��T�j�_���ɢ�������"@WV����}��3����D��Ƚ��]�O��x�RF ����I�7�b+�O����Z�>S+1&ي��'����~#��M��M�ϋ�����֬L��7� ����|w6��,v��l.�q1�����S����,��n����f2��k�N�v���X(�1]�&���%�19�%���s���O��$��w��רv&�N��O���oƨ� �tʮvđ�N���˓�Ε���<��G�A��B�((��ր�4PtiM�����qI�|������[4�|i�YK����eh�YSvY������c�k[o��U��Զ�6v�h��VM�nGpz�T~$)l}��� ܇�i�-�(��ppy_�s��dz��������|�b{_*E�6(��\���>�8�o�L\d��s���W�v�J���>�̗^ ��G�����&+YL�ώ��6��F@�]֗��;�'�|��K]s�R;[ڠ�)0]�߯��:X�Z}�A��{$%��u5���~�+�? ��<7k�b������HR���X/|�fǦ�A���&���ܮO����Z��Le+��v��?�zȻ��� �H[�+����c���95W5$� �~���`��4~�~4�� 'zu'��9�h>���8��4sá[_�WP�nc�'�ý}e��U��:u�z^������$#�F g�����Q����[i�EPބ�3��ᧈo4먴�XY��Q��1�Ny��R+j{#��k��=1��7��0�0�l�ud��+�.1��5��|K���f�?iWWL�C]�G��Ry������Ť�(��֗�M.B t�����q�L[2Os^_��_�Y�Q��3�;uMc�wn>����Z�O#�.�4����O�HNҷ�b��gG��7;�o�,?�uZ�1$Җ�����僴D���k?g�����rē2{rj%q+X��>̊T][�m�<�γ.J��MZ���Udܿ�E�V{�NMK;��R�"E!ϭ-��sGz`ڊ?: ���R�@�<�@)��� 6�߭IJ2���MH- #��}��k�^��N�9����;�M��.V\^�dZp�s�G?�1�\���<,����)sN�>��i�ך %O �Ҧ����T�b��]�GP(��!�[6�,��b��\����r�Z�Փ��`i�s�N)� �AǭKqC��9�ޢ��N�sCR���X}ix�R���J3ޓ��)X�������G=�{�J�<R�b�O�Ҋ��4w��)?���4�s@� 8�>�dz�LP�z�=3GJ �Ps@x�����piq�Iב@G^��J@h����K�'O�������|R�n2� 9��W1[�t��[�PX+�����Y��R7c��L�}��Aѣ�����G�����7G��w��oi�`�-[������k�����J�� Դ��B��#��N���!��W�Z�I��O u��>V�0��?����[J)�A��<?�džd[����Ò/��C7�d0���.�r���pv;�\�}��P�<���$�n�&�,�!��>��>+����{R����?��C^�M�r��m��-�w���U[�i����F3(��5~�&,f�F�2����%�d�aq��I>T�-���?�b4r�+���� [�#H� '�l�S5"ZJC�Qۊ1�SX��s#�RDk���������q�]�$�$- ������ĸ�+��2iږ��}��=�̇��7����7��|!�,�>"�[;�x.|�xa����w�C?k�o���Ҁ����.�Z�O�M����D�?��5�ر^�γ����h35�Z�P��Z�b�Eok�x���)h�E$ҥ���H�22�t?)#��}�㩼Kg�ۈ��=:���u�c�0�?��7��4�da�������G&�-Xڥ�<f��;�BM���6���Yw��ˤ��2O��t��t�c��+�6�/'𬻈�T���C��9��Y��W��^�@��jGe����z��MX�l���T��(���ށ�!s����t���d8��tY���ӄNF�Ҵ���v @��2OO�]m�a��nG�ҝ����u����EE42�G�!=2+�����4���9@��:��/�Ȋ�$�E�qԽG4��$����L�j���Ҏ�~��S�j9~!��j�]��n���,k��e����c�z��i%ߌ�K|;q!��7��`2�ԎG#�]5y-��~ ���6~\?ĝ*�9�>�~bc�+�o�v�����{�#|14n0��9I2_����/�K�Y_[�7�'�f�`"�X���s�G�����<9��r��%�yP�?��A�dl3ZMj]=�_��I͕����I�Gנ`��u� �I�+�|�!.}~��_|6�}��:v�'h����o�xι �s�d�d���=>�����%�g_iSE���\d3?ʺ�*ż��[f�+���,���-�~f�g��;�W�٬JDW�Ċ �B~`��U��+��������9��v�H��)i1@n�b����F-��)�Db�����=������ai�X��d��ox�'o ך,^z�8�}�g\�����}>[y�C���y�n�9=T�y��_8�z�/��G��w�X̊3 �͍�?�_��j��L��b�|;,I:|>խ�#�/|-�}���o0������0 "���Ϳ��D�L^ �~Z��>���YH�W�|@,/���)��Oz�~2뷶L"d�HJ�Z֞Өn��Wh#ޯ�SK�S�|Q�ffm_K���� ��?1?�p���n��0:!��������V:s�Le ���/S��8G�C�"L�I2S]����ˎ�FN�U��؏����D���=���Ա�:?�*+7�R~�5*Z\7��#�I\D4U��.XH�Bj�Ү唜��y�?,M�t��U�g��ϻ���o.d�c#Њ.��4���ڒ�zb��t���y/oೋ���cRzN9���WI��+� ��\�\�7�i2@�I�*���'����A�v�����F�a,h�5��w��ݐ������4�E���Ҿ,j�r��&���p�}3���Z��%t��f�Ş&����R��x��I�;~�k�Gĺ�Z)k��Փa�/!�n�Y�O�[OM,�z�|@�����Ǻ�������ds�z��k������EŜ��6c���+�ύ~ �f�y/��L�&Xشc��K�^�}Q����Dp�@Q����ڊB{�q��{����8��?ʝ����1��1�W�S�*���0�e�rs4���0i��,��d�� �����l��>Dr�_/mgE#E:J��\����Gz��yf��F,s��~����}W���|�x�U�q���x].R����GV*~PW#={ק�_� k�³�-���O�� �^�z��u�V����dd�;�#a�9�I���J��%��R^�s�n� ��nq�֍ɕ�~ ~�>��O��#�pB���X�}�=#�#�'�{]>v�z��m�?A_X|a�:ls\?�5�8�0����������D"y����x8{F�䒢�'k�RQL���&$�n��!w��e_iw!K��p �!b?�k[�%Ԓ�jx�C*��ӭ`__<��ى��g���j�2[|I*�UVb=*y�}�W=��@�jv��v4����JҁҐ`��1@�ڒ��0�(��)Rs@4w&��!���'�x����ހ�SҊCӵ0 Q�R�QH84��ΐ�4������h�' �-�sGCE!�gڎ�P}(��?JQ�V�=SPѵH�.�Kk���D�=A���3J(N�{g�O�3⎕4vZc[\Ƞ�P�f�������������n��K9��������k����Cq��2��H�9��٥r�2#�8澯�K���@�I|9q�uW���z}�O�kx'%vE��^��}��I��i�vy'�* �?w=kμW��<��L0q�Քs��_n]x�X�M�<C=�ʧ���H�ă^�M:����<�X�-4Եb=Ǔ�j�l�����Z�$ƶ����{~u�qw?p�nHPv#��\���z��[p>�(�W�@7P/?���e%f[NP�-�+��S���<�]]��{B�hܨ�����\��FY��c?t���+b��iG�=�����n|d�{(�&�ɎicW�#5��{7�oqi'��/Q�������\`)<���}�ȫ��=����𦲮_C�R�8��n18}Q����J��<]��<;����=��a5����E�'�&}�¿�c����*��0n����_Y���RD��9�>-�~)���[^]�oĶ��ُS��:�Wq�>��\�����ً�⎃�ZKi�im@�g�+�&��PW�?��jRO��%�1�WQ�܃��S�Q��w��<#�ڇR��� ��JGZ�?�h�I�]U $�d �>��|+Be�R����>k���n��N*ɕ"�`N�h����?Ϋ!"�X�9�k;V��C��'m�˸�3X�F���l���w2\9��B����CἺ �Dv������6P�w��>���+�_����b�h�����Oi��b�bb����"x���W$pA�ֈ��[��|A�ƺ�O��K[� �VF{w�Źq�Jķe�1l�op��ps�&�M|)���7VM{�^x�A�@}�v�g�Tq�H�G�?�q��m���4��Hb�����\� sK�F�6�-��MV4$^HB��s߿"���,^����>���?tJEY�U�C�c1�M�p�����o�ZK�����g�:�vN)���a�V->*��d�ۜqY����œ�a1G�ߌ���^�F��c���pE��p�����V>�y&�e���y[%�]v������jn� ��}���g�4Է+��l�߭Gޛ$Zm�ΐ 9��ྥ�i�lA����10���*s�g�J�k�e]'L�|Oy6�cqqB5�KfİI�CG8�Ү �&[_�ּK{�o��i)\�Ϧ�y��,?J���"����xV�������9& :M�K��^�� �Sk����5�z��o-�i���H���i[�1�U��\��֝���#����2���Y]��7��m��a�W��7:{T�gR��#�ϯޯ��2�)��;�oar�]9P��Dc�^�:R�$vP$jO����:��n�!�s��H^S�%�<~�\u�Mg]�E9A�G���J��-�9�x �K��Jʾx�O��1-b�e\����<db��n�\�������18�斵�1��ir�m"��qG�1<�Ȧ�b2\�ϦkB�I�'æ�J�|���G�����A�SӅ���~i��#��pif�ة�ޝI5c⎑�c�r}�Zе8��|�O��=ə��V�.��kC�uѯ�y�G���jd��)��\�� � �}C�����,���{x`Ǥ@����\Υ���HP�q� ᣴ���>��T�`s�[��g��}��5nș��%����C �K��Rz����� Ym�u���]�T�����+�n�v�����cF-�M�F�T�����:խ"�H/���[q"���W9�E,s��ʬ0pz)4�!���Hу�ym���О�g�?���BS�x��̪A6z�=����N���W���� ����b��=@]D{��q�����i�j�0:WďnU��ؘ$s�Ԝ+��<��Y���j��U}�Lxo;B��Rx82���+{]�v��~&��K��w� �f�g��`۬h-�(=Z;pO��\���RɨĿݕQ��=�2�mBV ����}k)�h��[���,̷J�S�C��L���a\yq������|#C��5��r�]��0.�H�3���g�x[�Z��Phs��2j�pS��� QW@���[�#v�S��Gr1U��m�#�b�>��=7�_��i~�J��d�icS���Tz���~4�xC�$];�։l��A�*��'��N-��:rJ���7ko2K,���F��#ӭ>�ff���HP8\�ںms^��-t]*���@��(�9�j��C#��6�#8���Rj�DXYeo ���ZW�u8�k�צ3^\�n#{�Z���I9���5�|Ir �q���m ���)��@O4A�� C�z���/��hm'Ak���S����@���=?�w���"��E֫�Yĵ� {�xtc�G^�ך�|B{|�k�>Q7����6��i��TU=>_�<�+����Oy�Ig�7QE|�>���';�����~ ��E��6��闛��o/��207`��;�����h�jj^$��h����#�!W�#�\���"�������g��M�M��i�nߐl~�>(�t�G��N���~��z��h��Ć�� 33e��9a��'�Z��c��D�l�'��H����mL�R՚�G��k`��H���&�� 5�7�r�ˏ��F�!��S���@.{c85��갴&?-� ��l���3�ұe$s�.C��<Q�T���ne۞��b=��N���)4��4��� �9Sv:0#�Wڟ|:��$�M-v���Q�g,|'�/[�]�p>��[NLv��h����A>���+o�`�Z<��|�a�r�V�\��j;�w����m͕��/Ai���{����_0�D�4�G��Φ��L��<�r:��?S]}:�G�B�����|���V7m��q��H�����pi��4��Ɵ�4���|����fM�ڛG�%�DGb��8#���oN�^B��� 80>��d�D��IaS�?��b�OS�9Tx�;E��T9����^8����)��<��F��jU;s�͡�� :���9�:��o+H����2������h��4 )ڲs���L֖����uo ��v��+�O���~5j:\WG0-ԟ����3m.��*ґ�$�'Ў>���O��2�Q��Q�wV8��4���Tv��洚(]��t ��$��� p�A�(�-���+�:��*#[�� I�ʅ�u�c]0i��@�L�C#�A�GL�QҤ?OҎ�g�� ;��4���0 OjQ��'�@��gց��(�zQҐ�c@<H~����Z)(�ZJ9�8����z�JhLb��Gj^�Rb��R��NM���3� 2�p�0���'�|E;%Əgx_;��7R�uP��� ���Q�X�d�ծ����%���__|-:���q�:��m�?�H��g���E%��������>�c�K�2p��o�뷕W�S�:��d��5{�1殥�,l���'<w�d�l��m]Yit���&��;��c#1�W��e����$�U��6�~Y�<�[�)롷C�<[}w-��.�f�B �n3�W%������x�9�����Y�Os����+ϘH����a7�5٣[x�R�-�����?1JWؕkm��22���������:��V��%|��j��/�z#� ��� ���_Z�Ziq��۴ә�|��Z�be;ep����J@���}��Ž����w7�b]^�/6MSH���R��K��uO>{yI ���[^���ic��|Y�����U�7c�7J}�<��:�ֻ����{/�u;cD2�� ���s�qҽ.��wz��2��4�K9����F�9�(lwV���i�n��ׅ4��&y���Zs<|s�پl�o�jpVw Y�#�߀^*a�4�_U��h&��!hN!����K�CY�o��Hn�#���������� ����� ��&���5C"`�K���+�9��o�_�������W�������W&�ŞQ:y�s�sT✮� ڍ��?n&�o:��kp��;Ę9����� �.��\N�."^��v�W��q3l���'�-��3�@��W�x�B�w�Y�� ��j&E��vi��R�.���1��P֚7�[��E��ߏZ߇������39�������;�Or�1�1,x��̣��5��kT�k�D8O�F��s�b:�ڴ!����oL���l��pi��wZn�:˵��X�Щ�w��i�Y�KM��> x�,�Զ:��|���o�a��������<��Gm��|Π��>��^7��6��-���kk�Go��w��W��V�ĩ�]X���. �ڐj����?� ��3j6g�|WyF�+�ǵ��m0Ǹ���2���IJ���j�B��֫5�����H�B"����ȑs�;��na��X IH�by�E9�s\��"%,���*Ҝ�ʢ���F��>8m��Q�~�պ��<��6>����O��[g�;��0V�ۗ�����@7��s�''��t���!YVT�C��B�i�]�ʌ~�����O�v����1�B�9�����͇��L2�#��(� e�����rr��q*<dvpA�kw�|�E��[%�r1�c>�H����UGF'��g�-R�H�}KQ��G����c�,_|��a�SZ�C�&��4���G���q�q���n�<ֱYG�[�S30B��n�R��E�G{{�y��W�Q���9�̇=z�T�sZ{'|SѮ�5U�����2�井�z��<���'մ9���������n�1^��Y�V�y`�<:����HX0=�xƹx�Zt��X���յ��m�s��[�+�ڌ1�I�y#�X�v�H��k�ܽd�ɉ�Sda��K�]���s�ndq��s�2��F 9!���=*l������鍵�H������4���Z��B���UQ���P��|"�nɎ��mD`Uc��RI����w��Ƶw�=��:�O/�����?Q��ǰ5��1��l�P�g=9 W�|8���� �����Vy�u]P��Q�s\$c�kK�:�!K���<7)c<�r$��K���o?Z�WQ�n"+�[�l ���F�g���1^��@�Օ��]�|-�c��v�`e��R$s���5��]2�x�+ҿu�b�Dc�eُ��M%��&�w�gw�<΄�oe�rq��s,V�b�Aut���=j��Bt�Y��i0�mΨ_�$!��G1����C]�32�q$���\�#�A�{���٭�ŐZm��(���H��?�~k&����J��'��c;��Q�[;x�k����wvv�<J��\�������╻�s���D��A�f����(��7}��U��w\�;Fz6#�]}u�V??S�-/��s:��v퓀N~�i����դ�L�d��|�~�U9.�z�_�)o�O��7q�Am'����үX}�K9M���`-��T6��9�弹���"8�ۃ��nq_E|)���=�+�^Y� �����q�7q^!���w��]�2�����ӭ{���5e���j �.ؕ�m�=�88��� 9� �n��S��$ҼC�$b�9Cj����G;�=9�2���B����[��k�� ��Ns�] ��3��{�߄�Ì���&{)bO�5����r���OM���_WF�N�:�Q.k�j�{�5�$1�'�}�HБ�*u�L����#s�6�s���?!ֺ�{G�|�DK��I!z�����wY�m�^�گe���e{��mh��-ˆ� a���*˽�%���dJpώ��ֶ�c�i����-��I�1YZ��-�,)�n�+��ޥ��=��8�g���c%N�+�Pz������{c�����'�,uz'��ya�;��d�Ʃ/��8� �?{�=�v-�ܩ#p�2��������O�����i9��Q��'��۟��B[g�ִ70SV�a��HW#��^���#%�4Z����>~���.}Ƒ?�p�>"oX�����rl1jv&H�=��������w���#7�5-�kt�8'���?^��\U�.2������"����v���<?�;ڼ�X�4u���k���nZ��i��?СA�������¼���L�p�+�\�.?�?zRH�f�b-&Ԧ������� ]��pv��ק��kU�X9�ure����w#g{7=6����`J��KI����5�'"5������ƻ$�op�R��]�iu��-�Y�+�D,��9ǽ}���Z$�����}�"w�@Z�cJе����H�b>ceq��?���L���T���8��a�4�}���:֑��4�wgӿaK�y�D{�|��L=�寋6~&�f��02��c���ǵ{/�-]�1��S�ȑ�%h����}���'��Eԯ���|5�n�����Q�ܹM5���!�X7L$#=p���3Y�W̸�LI ��]�/�[2G�[D�x��OMԒ;���Xz�x�q�8���=�ѕ~Z[r�i% �Ȉ��i��#nߩ���z���>�Ԧ�>�*�� �1����R��p?���w���*�����@4r)FW!�sҾ����}U�I�M�*�1"i����``l�+���uΫ��>��;�4j�)8�W���3j%�ı0gK�kI��H�oƴ���Q�G��g�^���M�x7B���N�5?��#�z*g=��+�_�_D�KGnwmSit�= ������m�MZ���2�3�'v��C�u����� �\H��rr{瞴�;�T����:���,�$h�{� �t���cY v��PD\�ǔ�H9��#]g��,W�[+,9#��01\�i H|�v=U-K����0{��������0n�E��VS�<Vψm�n�[O[�^$�~=�Y&���=GJ��юs�3�4���`!�GJ^�ڀ�3ړ�/j �'8���J(��iN;�R�o�i?s}����ړ����ހ&h�����z)z�ځ�@ ����2��###�Ps�/ÿ�Z��F��j���As�x<{���t8�1jZO�5c���M=�^I%P~k�?g�3���ݺ�x��G3��J1�:�S�dw�_^x��r�]ݏ�u�ɂbԖ6��&/^��~H��幇aa�i�KMm����F������9�+�>,x�9 x�\�Z #���L��0<��^��S�^�t�<7 �\I=x�$a���=���\�zf����d�9���pGޥK��eis��u[����&#'w��Z�B�5[�GOռ4�72C�a)H���h���0H ��z���x,L���2��FO�KdW�|9�.eK����FH��[�es�����Ҕ_5�k�#����}O@��E���U��ٵ[2�o���`H��9"�X���&F����P����𖥧i�7�y����!�F����� Da��ָO�zF��X���~!�E�ҝ�9_�v���U7i�����%��>���f�F�I���m$dg�U�a��0E�۷��R~��?�����֤��1�@��zW�����H�=0�=�����t�}��r]��Ã&6��`d��g�ƽ�Rua��mR�*�P�όd��>��Ku."%�R��G��~�eK���Gl���j[li$[�N��>!�Z��}�HYn���kr�9���>��p�U�u *MK��r�#�^3��s9����+�Пl���P�i=H����>'��W�I�_E�K"#��p?*qk�m�����Z�K� ���4 6 ��r1�~�!��c{r�J7!N�����֛��ho�/�[Y"b��a�p�<P8S���k�o�^7Դ�����V�p:U�W8�1�# �ꢪZj���!n-�sM ��90璬��S�ZU�K\8������T�<?{,�����iI��YW'�;��\��ב\M ������@``#U,8҄��EUG�t�E�pce��t^���Q2���6s���=3����&�\�-$Ś<$J �q֒\,K-��Br�-�n��f�5�kcج5{:�|�KtR�`l���q�^E��p�ޙ��(��tK��{x�yh_��~0`Er�'�5�V�Z���7�%�����z�u;�d�����` ��rs���[nǮ�?�VY��d��<5χ����}����n`y�h� � (?��rv���o�Q�NJь�!n��7'��T�tE�z�K1y�S:�BĀg�x�uF�Ͽ���aA�����=:؏J���]�isp�$I01D�ߝzï[�������Yi��`��]�-�bs�~`��d�{�J�o���'��n��Bɸ��oNs��U�B� ��xm��;⽫^�k�SL���5k�@A������I�ƹ+٢���-'�%a�H ����UdK��hVV��˛'�*�[��Ӄ��sWe��VU�3kĕKU?9?���Ϲ����`�P��L`խ;�H��snC?���.}w�O�����Ym��i�)�9F�#�W�+ Bq����4���`�J���`�٣�4�EWP�I��[0�)>����;�mKƲY�<�|̆yd�o}��OQ��?��Ú�i�����g'��y�$_uߌ�}k�_��ŷ���~.�݂����6����/01����MF��U���F�i�/#���I�^���s��������Jׄ$����?�5+� ]=f����E-�ū=BWBZ=GBkwS���q�J�~di�����0a`1��߉~4�� m�(�] P.�c�u���2:~u�*��.��i�����S~�Kr�=���;�� 9vNG��]OI.�&��J�A$�����d������� ,�a����dx��V7�5 $��A����#�ћI�^�{Y"���ī���ڝ�xفP����}��/ xsĉk�x�Kҵ"#mu�Ѹ�ɸ\��!]Ρ�!|8���Ӵ/�Įb:f��<��,����ZIX��#�ͱ�+��1�2�"���`%;�p��֯r���=�$[��Uʱܷ�J��3�Y9={ �]OB����:�NG�l��M u�-xr��?�l�3�� �M��s]���Fd� �1D�cb�|ǹ?���F�jE:���cf�鞔�����P�[F~\�*{�M����:'���X�\�|�7�Kp�3����}�k�o����5��ȴ��� rڋ�p$��>�$��g�.��v��Z���Ё���?�օ2Z:���̒��,�R��8�f���l���mգ!��[��k1u9nn5 ؞������֬+��%�,�Ț�>�&�cH��)��r0nen�Bz~��-��x���H�TF�䞁Gzv�$��L���]���ٻM��~ �y/�����˧�����O(q�%s��R3K����]|-Ʊy� �a|ٱ�2O�5�� �/����sq�&�8�.�9r�)�k�<?���-������%�3�9�~\�pz���x���M��$���$�m�S8�f�9^�ܐ�<�_�g,�%�!K��������u���;M���[̙�ɽ=�?�]���Y$o�r|�1��1����ҹ�_�>V��K����38�:p��ѓщ�x�[�Km6(��������ȯY��hSY���6w�t��u=�?_-�������̳�� ��i1���kQ~!Yi�Ŭ-$�VP��Fqӓ��(�@�=��M������c,� ���v+�ː�ǡ�5�7�庻�!�-�]� ���d6=��������N�xŌ"v2��j���k����HY�!`�s��U�Y���^k�5�G�5�G�H�뛹����B���^����%�Iђ0H�'��x�����F?(\�~*���¶~'��#�����7�����2FH�#8#�ڧ��W�F]�?��m2� ؞�(}��5����5�[��a��_�Up�x$���_�7�&����V�� ����$�~F�:�^���~*�"�|6�D0�"S��PEbO�/YK��P�������+��x���4cA�m�9-��� gebk��)蚝��'���$����X�4Ջ��&�xt���9q�jX4{�KJR�prd�Z��-�|<ڡ�9��M��E��f�ܦUO-y)`=�I�T��E�� �S�@c��G���:~u�����ud2M4��Ð�y=�+cTm6<��L���YÀ÷?�j�5��oj ml�&+p~g>���MM�/�9j����[a���P��O�}�ߋ������'�e��Լ<a��GX�ߡ���K�>�t�ɴ::�B z��?��%��� :O�����t�?��-�hu�)�MB��I��6��p��+��{i2�=��v,��!��E��$�5�}��_ܻD� ������U�z/�����"���-���{��e#��#��6����x�rW~�n��baI2n$����W�?�����:S���_��"��K���'�����o�/����h��41��V� ?x#ˁY�sZ������Kq�+r�����54m��'�#�ץx���zl�SÓF�ă ȕB��d9��W wbѱ0�`�@`~�ꚱ��k»�v�8��1e��> h�V�$Q���2yp�/ʬF2���<ל_\I ������s��o��k�����+ȕǗ}KcM��4Y�����x��v�����ݎ?�Ԛ��]ˡ���ăך<Q��kʮ�K��$�UUI���ZӰ��{��Us�I32���O����Cg`#�����-�~F��2�y|��Ԯ�r(����.������1��������w.���B5�� �6�����J��5���o��D�T����־��]�ħO��]y�����6.�$N� Υ�b��=j��>�m�ԡ�i�Ztz&�' n��y��5)<6�� B |�-����9�_�����|Qiegysk�'���q���#�����_1t[��1'�������w��+uj$��dx��3���ѷ�q��*� ;3��^�u�m&R�b�e�l������j���.��}��a��,C�w�����1}ޔ֑���1Lɴ�k��|��ci�����_�`�sIuM���/X�RH3�*���(Sk�����=�m%�.��I����kp;��;���{��l���A�[�(���$֗�|Kܲ=���S s�m`��nQ6�9''�t�w.*�f-ߡ���M����BD8!���T��Vԏ#|ǎ��x��l�.��T6�wi��6�g�5�23pH�ݪ]�#�N��?ZN�)��%(��4��)h���g�(?C@/jOΔ~4���?V1���,�;zBs@(�(8����9�y��#PG��F9�=(�ȡ�h?Z����*xv�^إ͌��і� �89GJ�3�6������x���u 5��~RP~U�w���5�ı��}��k�4,@$��A㡯�>^�\[��ׅ�<�xy8���[�ֺ�Lչ��O�4�Ӛ��[�Tl�m�(.29貦���~�o�#�߹:�2<��JF3����>�ԬR��M� ���[���'�<w���oi(�i���#��9�Wh�Vz�v�s�>�^x�����d���;mOZ���#B�ʼnE�kT��̑�N��#��J��t�&�'�O�8���?��{{Wz�CI�t���Q��|x��t�G�9�҃�n��>��w'��=)�t�G�J�|�Ծ�i��A8��[↳�jVR�����0;uO�z�p�W��ıZ�d�.洑�u��&�z�֗�|U⫨�k�Y�S�7�p�:0����t��j���c�����h,�%? W��$m��`��;�u�Y��&e�-���<�Q��J�咽�@���q��;�5�r����ˆ�<�����ꆳf-b�;�fٝ�����>�U�3ħ�O�Xڥ�K;JD��r^���M�S��9o<����Y"�Yp�Ê�I�I'9�՛2����j�{O�;�b�O���Q��R��g��c�`��y�|>����Lm�q�k�f��̲��*��=~�k�?gk���V���&�n��!��'�$g v�3���<�O�*8��r� �d�״����]�F>ઔ��#���sſ�=Q�I����Lwr4~��8?�|��6�Jy�h�W'����p?�ʌ�����x"]9�-#��H~y�즵�p��Q|���)�D����rܕB}04��.�����Ip�y1�&Q��]m��Z�z\�3|�#�1����sO����it�d��g�XW�a���vw%���֤�2����{�n�N�2�z����r�n�+ �����5����Q��%-сy��r�Q-�H.��ڄ�X�( �z�5���#�e�g�;�ӊô�e?*o�b���v �R&���P#oTko���E�;xi&�Dz��ֽ������ӵMJxT���{`�}��r̸�a� W�(�m���:�����+ݾ^�ޗb/mf�kh�6��@7G�s�ׁ�z���F)t=����-�_l�o�K�2b��.����t�-�F�����'X��mg�}Kź�Y�. �������xk��L:jx�C��p<��yrǎ��u�}�7⾏zD�A�� LY��B�ev�Y�c��SE��W�|��wX�T�:i4�A��c���^y�꺃;���&G$+~dWs�m#cJR�OH�Ѿ� ���7�pZ���e��B9!�.G�1�ӒH��,��L�R��l�����P�r�"JaHJ�Ȏۙ��'?Ҭ�\�D���G1�Ǹ��ʨO����N�!��ݽ��)%�<�rO�]�f���M�ܮFNc#�����y7Os��5j��Td� =z�˲ӭ�����M���p�ة��VD�i��(�^�]��=k��]V��5m6� ��C{���[�W8H]2���U�]��c�[�˦H�v�!�]g����<[�;��`q��2J�Wx��s�/H�� �~��K�x��J�VY��+ɼ���9�T%�}��_�v~��Ԍ7V�o&��][�}��C�Z���O� ���U�|�^��@�I #�_���n�}oc O+D���\ƣ��p���k�x�}-_X�� �n1jz+�+�]ꠑ�Z�v��'s���#3m<C�ȿv=�X�:��k�������&�`/��E�'��s�}���7�eY��,�J���H�r���_2x��~����ڈまF8�ԏjJܻ�{��3|��Y/n��1Z�?< �wkF$0\��{q����)����$�!�W��HTc������(x�bV�e;��<�SZ%�0�`2������k Gj�����3�/���q'���$�f�Ñ�0+j̘���xɹ�Ҳ-!�C�8N:��h�j���$ �ΊG! ��M&2 FKf�����������N�o��JKO�x.m�42���Y-X>��ws��Tc�[?��n��~5�]i�=��ɔD�gr+���!��� �W�x��Z������ȸ���Ns��z�����?��ũjZLJ���4��[��^E!YA�*J���>���q[A?��=,��gܬ�1#��\?�S(�6�.�|@� ڹ[��%0͙����5����t��Df��9(�+9�z`^���$�1��ڄѸ C�Id���;ׁk���Vα���w����4Һ�S��0�?��DKm~��Ս`�ڂI�τ�Wvr=����mC��eW�b���'�<�sY7V6��yZ���lÞ:z;�(i���SHmc�f����� �Ga�;P�m�������1I�+��3Z6ڢ �h!#k4�b��u5��G[%y9%��7�a�N�kB��,��ft�ɪןny}F%8��.��M<Ʈ>q��7`V��Y������"��qE��ss��y-��М~���#�͆��z�Z���eK��A��9���%Ȏ����?�Pi��6��WV��"6r�qޚvbh���X��J������h�V�r{<�����IH%����� �̲�k 2��q�ݱ�xW����n��!���ge ��F��g9,�}��lz���e+���a��kL}>f��?u��)�ef|��/m{q�&�!RO7�Nx�z��V��^�O���~�bk��Z��j��j�!X�U�I���"�;�S�p\I�?�!#�ר��W����C�����nX�C��ƘC��t����-*��Z�Y�-#�G�h�s�?�kCsv'=)�!�_Q�ܣ=0qT�Cp��jѼr~K-:,�g�����@����i��Z�yL�$oC� ��I��Qn"���%��*�*_���9c�0S��|�����"b��\��J���qj�Y�{˙���|i-#��`W�t�/Z�6��Gqoum,��/h�7�B�j�j�\�1-�R�>l@�ۭ{�����G�[K Ķ�K��^rC'�{���ә�E$ϭ�_�����پ��j���� :Ki��� S#���)���Zҝ���� �s��,t���"�5;���M�(E!�9wl�ް�/�� ��i��k�+���-�I؇�{V_j�JK�C�_�L�\NG�.v)�>ͯ .z���W��y�iE��7e�6�$שx���Yjq�n<�T#�a���<ז�$,�08�u��\�NkI6�l��kH�9$h,t�YPaY{ 8�>^k�O4�e�9#��1�n����q�/쭟i�v�ϡ9���\������՝�� ���}�Ɛ������$88��d�Z���g�U2��rܓ�hX��3v�O����<7g���l<�*����}��mb��-64�#d+�u���V�I8��ɯY����Ś�wĶ�M&��hs�� ���s�i��4�]>�_.I�2�,�e���;��P��9d� -�w+3�*��Nk�=�w��@?��{��,O�sg?�+��VG������?ٿ�l0�枾/���&�H�� ��a<v��6�e8ͣ�Ƕ��<�&ew�٩m�ԕJ�9���ױx��/���t���w�l7��z�ǽq�އ�[�-����fK1M��ԃ�sZX�W������Ap0����^צG���H��%�F�\H�=X��z&�{M������^�u |�o���EU�v�}y3[��j��n�����E&�m�G�?� C�:���W�-o,Ts�kj��[�ȯ��\q�5�6�k����^��bI�K�FCו���W��w���d��{&B�=�]�&���F`�������� �|���b���A�7 �������寴�%�>~��1?��pP��R�����V�>����� =��*6Яg�������-�{���pm��"���#B���$�n����Oҹ[ۉe's�������m��P��ZɅ����U>���U�܁��}O45bO�H:t�#���@;ѓ����1A8�iy�?�ZN�Q�(�h�Iޖ�f�� (������i�R���zP���=�K@h⁚3@�"��c��~4��I�����3O�%f�>��;��I�s�[�%��FN~b���n��k�W�V+H�Ӽe�K�Zj�h���gl�~�t���y�lm͌څ���٬ġu�.��w�<M��X�=k������_ �N�C��i��5{3��.Ԟ�F��|� �������~�¼c�:���<~���Ǒs&��c^��:�a$V�~�_�{8e�p�썋�ڼ+\��]D@�c�1jD)��ZIhh� ���v>�a�'}��s)�߂� 6�K;���G��E²@�H��+˼[ap��XзV�Qr?�>��މ�^�5����DK�?{�z�R��a;#�����V�����U��.�u�u�T�k����?H�F�����3�L�g��z ����.ѡ��֕t@�����u8�\+��C�f�L�v��ɥ�Uv��j�'����I��.����Ǿ��f��5PS�����z����9H�M9wK�~Mzg�R�&��or�1e�}����S�k�Wd�vr��zRV2��6B�P&�mc�� ��f��� �@o����U��ɷ9Dn�!����t��Tr8;�9���2�C��z��)�!�r5H����M�D�=y����]��O��[�X�F���t��$��}���~�m.����|�.0�}oJ�-�c��!_�y�_#~�Ƒs��[ܕ�s���p��8##��~������ag�<l��)�i�<��<��x� �+��]H�&���J)7Í.&9t�L��)#'$���zW͟/�8.�=3�w�s�$�n��ˁ��U������R��\|��,�������#7��>V��U��sY�II��/e��i�E�]�_C�bMJ�qJ#X� ���W�G/��v�9ʃ#�g�*��h��@0C��h�J�3VD"�b�j�K+�7��O�i�?�t�:f����7 %����;����A�}+XѸ�ԗD�d#�?�MYh'܂�n�X��N+J#j>]�g�����m�wό{�V�Y��f����Nom���Z� �͌���g�;��a���-�bf���H�#r��'>��Er��)�A��-��V��V]?ǖ�gx�ۢg�����M4���o�߈MƆ��Ktch��Դ$�����z�?�| �i-q�\�dHs2=ͻ��M�@�\��I��x��m#_ҭI�o����f��r6��z_�>)�#�O�丟]��q��7�!�L�'����V�sH+���^;��kIm%�S�D���\&���Gf����8,|ٙ��+�~)k>�Ԥ�O���D����ё��� �mJ�LK�Hmt�S#z����tQ#.�L�g��1�-p �;���)�cr�s�q�y�[�=�-ι7�b���yQn��U�ͫ�\�M g&[������̽UUe � ��U�8�K{�wR�8�؉���R8c��T��[�:´!�-e�N]�~;*xE��߯E���P{dG��V�rkN�0����q"�3���!�E �f���d.���k����j6��k;��B.8S�ܜc5��Z���a yo6�����xn���9�����Skn`�w�$�)���x�F�U���v�s�0���?�����{曦��H�t=a! g��g��,�5�'��hs\Eso�j^�����ͻs�H����Ҿ��&��M/IYW����\��nl�e�Y"�s��k$�<s���trݙ�� B��ʭ��'?���� �~���*�&8@��'�><\�];�[����\�ȇq�q����+t�/$R]ʙ�++����T����8��މ��պ�+���̓��S6�ac2Z�*�ɹ��FG��\��G�̕��zf{�;�U��5�Z�،�8�#����p:��8�w{9.�0Y��g>K��8���为,���䓓U��V;T�zB4mА@�=d��[3��W��L���Tl� *\Ĝ�v�kX�[LD?ng���;d>��H62od�%8F'?zF�V��u�AQ��Mjk�YM��n�WN��u32aۿ��;4jY�Cm�<~di8!&�A:/q_f|.�:trx��:��;A�F������E��5�_����.|��z����i%�r(�b��s�r�Gz���,m�>��/�Xˎi⿀���*��oB`�c|_��i��^M̌��P2��"A�z����ugu��@�e;�@��c!� z����,�~0E<]��I�N+��?J�o� �I|�o�s���_�C�J1[��MhR����R=/�)�A,P�?�G5�q���#=��0F3��6b0l3f�u+Ek��"�]Ǔ� �횅��w�ēk�ܪ��q�:����ׯ�y�n��Cʙd-�ç�+���Yg/#e���kX��T0��*7ѷ3�k�� �N�� f6ʟph%�i�iA���QV���Yhf;{�0~N#p�������ʗo%}�A��P}��$(� �(�����;'ʬ���_z��;D���җKt[�][h�!�}�߾ ���� ���/PV<�]N"-�7���k�o/�4_$>$�W>أ 'ӵX��8��=�_|����-�,��4;�<n�ݢ�A�����Q���<9K��� �Z�EtdA�(�vH֔V��W�$�dW�4��ta��<�5�.���2��I�ͷ+��We�4�E$�e����-k�s�w�� /%��ܘl-�1��ҩh�"[�l�o.����ǜn��,q��E���Ӆ��p<��A��G~����c��������O=�K�KC:���<�+��܍��G9����Ĭq��<촆G<�Oz��U���)Y|�5��W��Z�u u ��k�O�>����k�y��ݣ�*�@lps���q�b!$�u�W�=b���C̊͝�fS��$n�8�x�V����6Pi1��$��;�����8�¿��1�ɥ^kV�,w��Fc�����\�< ���0"O1� G yfT�����R���O���o&m@��VXa�'`x$�U'?�-��k���|<�śE��*8�T���}+�������kh����/�+�p������B}���D�FՏRTU������g$�֛��%��YV���/?��&Ȟk{6&��|]ao9�O]�8����O,���� ��/W���{�<���[K�,�_�kzu����K�i������|c}j�-�\N�ߺ|�}p8��Q3�q�N=q�X�Z(ܲ����P������,�9��d�`{�Qf;��!`���r7F3^��Y�Ϫ�w�����(�����,��ס�Y�c���^��?���C�%Ɲ�����::y�vpd��@@>� r�>�$�E�ɞ3�&��ʂs����V����a.�b�K�)�!<�=�XI�����U��::���d��"L�#m�׀u�u,��U�Ė>R1^C�#��g�g%ijo���ߤ��ټw�I�����2D��^&�'Gf_�E2��X�N;���B�v�����]>�&M����'ӡ�mB��=��.�h͆M��T��Ҵ�Bi�8���I��5�V#V�c��Ӈ�\��-��"��U��}A���{i�����:���r@��fC����k��ڄ.����{v���#Tfұ�k���8�d�S�����:H']���C CTuY��q3��Q���=��u�yB��˃�ej]�V;U�7�Z-T���p�q�f�KW�4�+|��Wi�~F��L迾�.���A�n�r�Y��O��:q̲n��&����Q�c��x��F�H��t�'��1�W1unğ.)�z�˴�U�jz�Zi��q8`x ���ָ�X�wj�]�>�\m��u5Z��c0�##�Cӊ\{�c�����R��Z%�P1@O4 S�Rh{{�x����8ǽ��������?Z)�z�=��Ҋ>�c4uǵQ@y�GZ:�Iڀ�b�h(�)M-v��?�S�#IpVA���{e���_i��|���Z\k�-����wb��$��_ �5��M�D~tP� ��N%8��������g��6m��~)��UG�%��(�q����a$�fd�S�=_⇉4��d�W�o���%ދ�y���Ym�1�5�O��� �����A������WY���j��t�o�Fڐ�z,7{����^��K�P�6Rh�qq�_��#��O�o�jb�ͥf�嚗�4���D��Ws����t�P�N�����ۋkkd0M0+tޣ18�`�!u��l��, 'U����]�����W��m��3{ ���f. ==�g�Ʀ;�5��>�~"h���N}{Np!5(�GM� s� a|O�������M��W����]@���W�:�e��g�O�k;�v��[�5���/��6��M�X��x=�n��+�>e���y�V��V8/p'�;��V��,�xĒ�x5�~>�Idg�e a��m�=���dm�H�s Z�^�h�<�D1�hO@Oֱ�� )Ԟ�Nq�5�%�Xx��v,O�8�}I��n0zap? ���Z� ����7Zt[3��(B:��L'O��.���Շo�f���%����>-����_Z8��v�*O����B��Cl˽@l�+���zWן/uMxg�Uմ�d#e��. ���R�O^�?J����iu_����Yl4)��ƛ�7U�$������q���:U��y�V!7j^~��^k�mN[�WM�����?����V��ƾx��] ZW�� 9}��=�"�ovo;[c�SO�}�����|vw�����ko2�'C��������x��#�`ͧ�쏕N=���>�ip�g��ǡ ��uwt����e��/#>�q�떾\I�#�WZCEm#��5ۆ�y�7�n���[TUB�O~N=������!��>fߨȭ�1#u�m��wGҹ�!O9�|V��bk��ݴ����I�e�K�"���@��g�q��8�#ur���(!x9��� !|�<�oUT�*��A���wS�b��~cI�-���q�kp�{��Ox�F�6��k�p���#���=�5��ܾ'����'�uV�f����v�1�7�k��xz���X����Z�ͻ{�d�C�5�.��t�|��h�m;V;���:��SЪZ�=�_���0��xr���`q�W��zƖ�?�la#��o��������).#c6�W�x�}�ļIy��d�8��� )���(rv��ʝR�C��7X��C�U.��dAs+���z�Gζ$��-�!s ^q$�s� �]��%�erY�?�k;��k���nB�2�[.�_J�]��A� hk�d+�r��^՟20*H#ޘ���Tڌ6)��f^Nࠜ}s�*�w���Lqީ�6�q��k-J�K}�K}Yy���Gq�+����?��$���ǔ�i�����u���� �<� ,�����K>�����3���+�J���c+!�#��E_C�/��j:�N���4��ϧn�H���� �l�Ƈ$Ҩ2],B�$X܂q��k�_�o�Z���j�0Y�G��B�X0q���C�W����LJ�hu�Q�o���6mߋC'_���ɤ]$���:h���=��$j�T[_I����s�+�ub�i���62n[�}k�/��k�0mO��|9b��B����W��'6��0��KO��&)�Jwv�%}�<��a��V�6�?x|�S/%����}��|�����j?�-��X��]�qߥV�;��<֞��H�1/��Q���Q�:t9 N�`F"���Ƈ;~�J5b~������-����!��q��k(a���1��h~s#��,���H�����dZ�� ���o�k���wpUDا��^�n��#I*��&�����:�<�U��,��X$;~'�`:����d�%�`�ź��|-����5���:� �8�:�⾼� �����[��U�/9Fx���ƿ6e]kY���ȴ{������.�$���z�����n�� ���� �t!�r?S+X�w�[��^"�[��$�x��9�@�_3x��O�n�4�bp-�$��_W�hOM����5(\�{$� =��ھU�悳4r]x�q�#�"=%y�?��k4qz���,��Wgc�k�I�ю+��n��y��<�����}v�O���$�3�A≕Ng��A�ȟT���|E���y'��P� ;6sw���[�!h�T9�6ȇ=����%�"�p���n�.�Pd�7r�Z���딹�����3lElq��ҳg�(���J#4�jm4v�8S��zT�-����]�IW�#�G�|;�ޫ}}�xe�Gf�6�(��[�־���}ß����<z��v���H�5��5=F�5�Y���`�q����c�`��W�F�յ�a(����|�W'!B�^p M\�w����>!�5��m�΅��R�Q�s����0�O���O.��㏴\1=}Z��xb{WmCQ0jH��1�6���:�\ƫ��0j�i�B�1y��v��N(Sm�y�ze���D��]?j���$��������*�.t����RM�*R=A��2Z�;N�����3��H�❈8ټ'��#.����Ir?�����,&M.�s�� Ď۽~��E����)eg�=d�&���N�X�֣��7r4���w���Fޣӡ�};��Ҷ��)�$�v�Dex3��]�i��wS�=wL��\XL!���AW�A�'��%��y���C{{>�m����a�<������e�Qӭ����=)�������S��������[���U���q$ �c� G���>!k�k?xK_m� $��V�rH��Nk��u�/ 2;t��"�^`zi��]����c���K�h���X�O��|��x~�]A'!��^j���t����y��h,��Y� }��\���V���k�2����l�U��7���QQе����X�~ӭ�}��6c��x�}:��& �>���?"���p;�5>����]癎rO8"�W��{�}��:<��{t~���^ty\[����ߥE�b�ӚUm� 0>�>7qSZ��$���J$��e\,��7W]�*mP�M��J�Yn!�G*���G=k����zܨ9�C5����Ξ>'Ii�F�v�����~Y!u`U����1�]|�Kz�ei7O�#i ���� �<W�x���+�F[I?�-"���.�:n]���ָ���%��Y���(��ꖥ����ezu��^����:�5��x�S�]�P���w����sm3x$���O�j� ��3p��O�,&�:��hR+:�?�{�����h���#j����$9+}�g��8_�yF��iNŭ�J[�X� ��aZ�;nD�����>�ow��j��iօ�'�� ���L�j#V��1-��݂G��=\�n4����_ɵG?ٶ�9l�'��u[1%��!pZI5+�s����)�>�8�Q��xE�Q>2�.Ojv�sy��RL6��U�\E7�kk2y1u;v+�:��=MWѬ��ܶ3���:�.�S��rƬ�iZ{3��f�����0c�hZR���lO>ۍQ���FF/Iq�~�3ӷZ���+�!3qx�?%��Y�|A�4�[f��G*�m=5��R�4������溟�ntS��6?��Y���d�9�ڛx�epX�d'����Z�I���M��RHR���P@��G P�����)h���ޓ�/l�~������4������R�v�ފ(h��(��qG�E�GҌP�Y��Y�:�G�oQՔr@����>h��H����7`Zjmi(9�D��oĊ�����������c�Q_N|>��ũˤJ�s��r&x���������͞�e�/]X�=��[�BP%��wбQ�VX�ޯ4���[ݟ�ۛ���?���������U����5%����$ �}Ʃ�{%�?�y'��3S��� _��X��n�S�?4g�O]���csac��N�=���KGj�����^��k{�GԠԟM��%um��[i#m�jx���v5�W�z����m����Aӡnks��7Cm46ҭ�Ҫ��p���y`�#�z��{ӱ�>����]�̧�~ �jl��?|-��*<db��?���H4���|<�Ɲ VR����tc#����>5頼:�è/d^^�O�o<{����g���U|Q���Ikڦ�pA�7���<q�h���m�]�UiGs�|o��5 x���s��ar��gּ�R�*̱�����e��>7�g�/�&��,��%�S�*��z͘��$|�Tc�\Q)&�'��R�K�K7��l,��L�3}��Ċ���-�ԣ��R\�0��#3͓���M9�� ���#WIr6��W 7�=O�,H��s�R����T�f�RA׀F=�F��خ��*�1C,���E9b�¾��o�x��;w<g9�4�ĊPGP�I���_i:}�7��I�H9NT������^G�։�߱ _1y��� ���V�b~��^��h�Ƴ���5 $.}��[w�}��⡩�r���")Ķ�k��Oz����1{���xg�1D0�|��`T�N�^#�j���jS�����;��,�r/�1�51�zɦ�+�编�������Ǵ1�mҲ�%����?*����ܮ�4�6��q߾k!�ɅV )���.�vge�^�f���;���\Ψ"G��0�ސtϠ����]�ŀ^3��;W=m"Ά5'��c�P��gս9�$dU?�G�UyJ��:�ʒ�ځ���n �@�`5cD����VMw��y�gTL�`����T��'��V��#x���U�U���ʧ- a��G�4��}C�/C�P��-���b�xdI�R�9���}sc���mP�u{pc��[,�{�A��˟�7���sxo\ӥ��p�yD��A_�⾧�.|mg�#�xj�2f��\ �A��c�)�苤�Ϛ>4��7�K%ݺ2���b3q��ׄ�s�ֳ���N��pdgsϱ�}I��\�|�A�e^X��X�Hē�t������1;;B9�4��~���� ���lwZ�����n������P]h����Nv��O1��裁Z���|OzrIxQO�DX��{Y�n@�q2F�C�;}X�Mg�'���m!tU|��}�����e�*��� l�~��5O� �R!�N�B��M?|ki29�͍�?T��I)o�x���� ���كʡ��V0����r;n�1`wc�����waX�gb�dk([8�#�A��V��x7-'�P"jK���=�I�z�TL����ݴ����_5)������G�Z���Zd���h�d�y����m?P��u}nܴ{I��eN;����w��] ��Sx{ē���"���w����0�#Ҿ��A�k�=�E�^Z�v�7���b��r�:zӓ�QA��g|f��q`ӯ�'w�4W�rÏl�O־f�7����b�G�[��JF=��O־�����ڥ����#t��Hq�ۼ��P����}�1ҕ]� �<�x=?JK�-Md��_X�k�}�D�*�}��<���P�D��<�\��_>a�?���kF�B�D�n��u���="�<����2�H�!W�֕-#RK���g����r���˱�x�)���DUO-�k��JJ@<v>��ꖖ���Ks���$�l��ƹ@�\o�d�d��C�]�j�6���X���ޝ� ����W�j��+����t��Z�R�2�ťn����t�k��yW:�0�(H9��"��/16�����~u�i{ol�c��� ulO���sS�n�ms��8v����+�����d��t��j 2{褆�iI��)7m��+>��]Ǧ�F{VS�;��/L�^1ߐ+��{�K�o!��qo"����� �b����S��t�����Cl7~�3�T��<SoM�sn}!�K�.4wH�t+�SwUR��W��m!��&ңS�o���O^G�_Y����R�Ǚym�+-�!��d��W�|W���'���t��C;4M�az�De��I�s�}_M�y0�sGԓ-��>��Ph��Hy���M��C̗����x��ګG� �U�����G�� rW:��)���E����Ao�'�2O_«�#'r��I,��cUȖ���(�%~d 9s��>���4��[��F|�2�W뷏�k����S��[�p���q���,�i�~\m��ּ>�$ A#����CO:,H �b�r��M�G�H���յ�eL ����h��M�hӢ9�����(��]ɧjq\E"� ̭��������~,�ޫሯ��o��"� Z�x�g�GÑ��Ҿd��t��l��-e'�l���zt?�z���[��m����~���/gԮt�0x������J���8�O�����Ɵ�/�~��*�oe���������,|,�wu�M>��o�(\�/��� 0=��<��iYǦ-��w��2��XX�M��p#�Aۚ�+�b�H�j����!X���I+�� E(l��s�YJ��&���o�ֱ������\��i���H��G�yƷ��࿗�iv��L�m)P�W�_�mH�<%�+ˋ��xǒ�x�4-&[�#��+����Ms&���j����3�����|��|J�p� ���퓟�a\O��O����ˉ@d�Eb%����q[��H��YxX�$f�D۫1�Lb��,Loymfi���֥�\�=��{_x�Bͻ䳌���x��+�֧i�˙�V3$�J��^zb�[�.�?�zK���ڼc�8��f�'� �er� �~�/����5g��}��m��Mυ��_�>+æ�tMZ�؍�=��_!^�yN��wC(e �<�d���� ^H�8��ۯ�i+ �OF#��Я-ݖ��S��7��>Z˞�<�cXp:�Zw��N����W<�ڍ� ���ś��*Ͼ�|��Xj3�3�R̃�PҸ\�cb�D�i�;�۠�S����s�b���̒n���C�Af�l�[Zn�uw�F�M#J87���Edk�79I5Y��d��*�����!�9{��� :d�M�?ڧ�,{���nN 5 ��.B�|�Wm�R3o�cz�|��3 �3����p��]�R��i�^���];čy�yN�$��B?�S�S��g��n��i���- ���"-�#8<�#�5�>3��%���a�=��Kj��̚�:'�u�&;��\�ү6��B�{m�|}ѓL�����V�6�����1 ���S%yX�\�<����Z��䶩l2HD��^}pN+˵���*�eo�������j_C�)%d���� ��>���ס� Y5GU�>s-�cr�[Q!��փ^�$yU��m�'�r��=5��F�y�y%�LG_�p\���^j�6�L��u�d\m���%�>�8������-o�w5�~W9��SD�c��Q{��(�?xJ���t�״��c��l��h�W���J�[���9n ��-���M@;(�1!��5����U��s��=����^y����Ohl�<7`�H����ڹ�m&Ё��RP���'~kGѭ���!��'.N"ڡ=rY�������*�����%���<���1��y���\J���䞤�g��]'I�0}�\��jq�9*H�\m��)���ʠt���+(4v�Qց�R�@�h����<��b����(���Sҏ�'JB�u��s�t��{�/:n�u�"��|��빱��5����>;� �w�G��ܹ�IT�&���#ސR��������(�Q@���-&(=MQҊ8������PG�%� ����k$� �D��3&䍋7��+�/���!�\Xî�n�&����O�P�g�����l��hu �ӅIW��?>+�i7�9�߇��������eM��C x�"+h�����F��b�y�hbtA���M��Rb�^k�~*��sl���m�$�_H���p�5�6�6��I��N����-��Z�.�~S������ڮ�w# oI��Rq$�Xr~���IO����溔���$�.����@�*����!�m��9L��.>����9����!���s��u*y��c� ��d�ۢx�O��V����;��,�T^�D��g��\Yì�o��|�)Fh��f��z��}��SL�)�Oyf�L��wJ�@�'�Z��.�}��x��A7�Q�7Zd͞��X�{�����OX�������G�y���P�"��@��&��OYhx�/��W���f��r��o(=����y-�y�H�A��������K�+s���iM*�w��z��������]��ipٰ�S�wؕʧu�幍:�� #�YDs��Csl6o��O�}����a�ʭ��n��c�]�t��h�g���"n�C�c��f���j�CH�?��Ucp�\ւG;/��O��֪@H|�=������:1�1]'ýkW�n1ax#��>\˺&?C��\��6����k��ig �¡�%p�+0&7���Q�R>��g�x�V�"m�S+s̰'��@�ֶ�w��ƚ�9��{���ˬ�&�8�W~x#PӜ^XE�9�_��Ce���z��6:u5�x�Oca0_K�!>Ӧ=��{��MSJ�. ����7j�r�����0��rS���j���g�u�_/'yA���l�����,���4��Fy��)8�OQ�P�!�/C�R�a퓀*��%�hD�?@����J�[D��a��s��Y:���˹,C��e {��խ$��R6������V?+��Z���Z�0i"b�c؞���j;啨��OqR%v�m��{՛=GH���od�����=3��R����,.ۜ$����>���> j�zi��SE����$����Ѹ�y���-*�[�T�ɦ$� #u�٤f#8�0�|��/���:[��sZNO2!$M��B��<;�xoR�VG�t�$�G�m���Eq���$�ʢ��<�����_�+=�3�˹�*]�~w-x��]�y]\), ��a�E{�ƻ[�.��ȶ�T����h��9��<[��Xo��Ꮣ��}(卵*R�f&�s<ٹ��&b6�̰��8�g�[��xl�����$o^x�jܑ\��G���q��(�b�Dls5�(���~\I�[��Ӣ%���_Ukd���''o��6���J��F+s�6��"C�"(�'�?���V�A�_��u@������[K����w�φ�l�ٍ��GM����0��WӮ˩��'^y�*5���]c�wyU��rҡ�U�+�v�㈑�(=wM0>��kW�-�R-�`Q���)kq�'���������hL��>������<�>�N.�m�Hǧ��?����?�3c�[���K ���1U>�rW�5�~�c�b7~�4��l���wqmv��M��{Sr�����M[w�ʋ�4�J�+o�$�n�xG�ҭ��Ku<q�t�������~)־2i�-���9.�ȹ�m̈́1�^&�?:���8��O;U�y��/�{�j�����6��g�x��o)k����ړ�s�\D��+7����D��y�=����|KvJIz�r|˞}}ie�$ .��,��,m������Q��ͯ��ZW��0/����\ ��4�ۓ�kr�B�Q=ޣo6J���aX�Q,dR�X���Ļ�!1��V?CZ�p��E�leCo#�C'^���9�@���3��[\ +r�!l-�:��G��:��<`Gq4���"~}�:����H[�j�'ɉI�rj���4v���>:�?��q�C��v��������;� [��ȋ���V�3�����2F=��Y�M�ˌ ������t+φw���-�'����s<h�V_�M�<g�iݭEdݏ�~�X��F�=?'a���+ׅ;��+��h��zT�i���6o�Ē�$B;B���v����-4�f�e��Z�1�a��e|R�-�����5��È�<�c߆�=��+�|�g��%����H?���e�����V&-N�G���� ���kؾ![�\��$7z�ẇ��W=�����z�0����T��6�0�ו�cT�c�%��|K�Nm���t�g��_N�����v�N�;�h�3i��v���]Z#�C�) ��S�Ü�� �KA���3Mt�c\3q�� ~������֏�:Tz��%���R�yV+�Q�1�~4�'��5_�����a��@?��ٺ��� �#���~}?O��3^��'%�C��A�#���K} /��Omݢ-v��1�t�c��^g�_�J陴��<�"H���� =�OR�����/��cRM��P�{�����n�7f��C��=�zq�|���<G��~(o�0���ħ=z ��[�Z��̞����<H�mnt\v�R+ya �w�b�<��W<q��'I��Ŵ�0�(��4V�r�����T���_�}�x�ɲ�o,���\/�g���Ƨ��o��KՕ�>����GW��>�3I��7"?6��uR1�_f|*�:��Ơ��n��w�\���dg���ʿ�<O��U-�f"ْ�u%� ������{Q�x��ݕ��������ȃ�B���B�=g�σ��^+��iת I�E=F?Ԝ�Z��ź��D�m��o��)X�D����2:��m�߈?�q7�>��#܋l�q�W�x�Ok1,�_ ��q�p3X0zs��0�[��roE���k~�ݕ�Cy+���@w�>�^�[�� '�ׇ�I�A�ܘ����,�'�j�/��� g�$��F]�FG>�[Q�'�5� ��f�j�©$d�����r������%�����~��mF�;Hv����,Q���Q��z��>���GI��}�O�� �5���k`e����Ӓ�����|�o�S%���R`2 \�� �$ �ПT�?*��Y�8ɤBA�8�i ݧ��k29�F���K��AIۺ)�(��>�k���a�9��z� �M1dԭ��B�����B���c���Z�������(�PK`U�`�p� I���|+�0�0���|�]�չH5h��Yc��q�W�������G��t��c"m2�����b0)h��gk�ƥ%��y�qR,1�� ?��+�[�&hn�/m�~u����"�U�� �? �E�e(m�#`s���~��Z] �ib*w+����Vд=_T*�Z]���#�~0?�|=!k��8,Q�����ր��?��fv�]>�7����3�j$7�*7��\���|T�<K�Z<WV8ЗE �ɹ�'=wyk��5�7��R5�qj�-�$1�����C��sϮk��>%^�(�ּA`�@ ��<J�уB�n扴�wZ���潟B��?����~��sz��!p����r{�8�Sx�Y�����'^x{���x��5˵���V�utY�ȥ���l�]���is�e���r�K�XH�B�`�Ƽ����.dO���M�����u�k��Z�ª���X+���~U��� A>�ֺ|g$���u�NMBh�K�%,X����[H�/��m�m=}j�� �Kv�3��Y~��v&�`�2����P#��I֞3�i�n;.�)��E���;�@�q��Dr�j����4+-�[*�o��cW�m�3������#>�� ��n̿闺lg���O�E���d+4������2G=Ǜw�,����=0���a�Ey,�,�Z��A2��I��@�LTP@�&���(���@'Ҍ��*��4 ST��� Cf�yr�(��pO�������ϥlxC�����~͢i��m`$���E��9�}:�U���-!uMZ�H,I����`���F�HObq���� � b6����iZx��[�n;f6�lq�T=�EO��؟��_x�-J���=���!��>c��]���O�X�7�K���Ov��.O?J�J��O[��VӴ)go��?�z���J�9?�)|Q� +A�N���ǂ|��f�\�H}"�I9�P��yRA��u�j�WͶ��)�.T����N�b}V+(��%Ny�6�Lv��շ�_���ss�^i>,B�Uby��Trs�Ik�� �4=.=?N�Q"^I0+�������е�g��̍���c�%r�ZN�qҏ�Ҁ JS�84s@QE���RR�Tt���y�Ҁ:�PY]���.V���e�|��ݎ@#��_B�:��)hh���^xcS��Aw�M�y�;y��yk��bżem�q-�2Q,}Q���C�����w�������� ;�#Z:]���>Y?L����L�jD~0���"����$@/����?��?�yf��Z��_T��v!Y�[�c�^����ߊ-�7���D������!�s_=|K��n/��{�9��l�Z�ی�ᏽB��k'��v�w�<���a��lg�_��h�j�uۆ�Ծ߶ل�`>V̌���>���]Q��Ԝ6�;�},ˑ�ul�n��z���}��l��Y^�@!$�x\�8���R�������I���ot��OæV�m~٧I��v�����v��Z1��/�J�|�kx,�c����^U�A��t K|�q���B�����g�g�z��cڴ7~#��W�=o��$��~e9�vֵ-�T���_��!1����7�˴�/�xϮ v�u�u�A��uu��������v�\��FIX�0H��q��_?���%˫�B����)Ih ���x�����/9���أ����Xd�!h�D�y��]�Ԗ�՝+��H��y0e��Ny�����XC��q-������Y44�&��fc���OzXC��Ƥ��l$�3�?�«�>��:�y(W�5�|2����'�Y*\|��:N��z����Ų�Rk9��<~dM�R?���v)=x�'��Y��oÚ���u���l��V�����EԼ�xz@�*��Ԭ��F R%Q�Ҷ>��\� ����1�>�L�f��I��@�����u�ev����D �n. �^�煽�Q+�X֞�>G�恡���\�X�-b�瞄5��irڤ��C}8�z����o.N�wX�a[��b����&r-�$�F ��8��fA�N��8���.A�k/\����� ?Һ�k[P�Z�7H~��\���Hyb���v���'�jHJ��T�EFT�H�zT��! ��-'�F@�O֣�b(pA�*�`����J��'�T�V�0�߹@S���R{}J[�.o2�5F�����s�¾�𭯑�,PMms(;�g�s�r{u����xq$6��}�\[L>Smv"���Cو'N~����M?�:v��|@������[��F08̈�.��a���$�ɭ�d�����ϙi}�BxA����k�֎- ����?�:��㞝5�����.�����h�<q�@�ξT�ݏ�|����!-�,��c�9�����s�D�����yg��x��U��Pb��I�'+kW?^��ZI�Ǟ��v/�qR:��{����+�;T�>����,�9�aܻ$��c���}�d/ޭmnh�GkE=pI?�<�H���ï����&�,q�&c�n�>����pE ��t������Vw�ȭn������W��&��ƺ�LYY��iW�`�N�@�d��IhK0������H���+?]Qa<�m��";������-��=/FV�I��OӥA�����s�峵��#5�Z����5��_��0��e����K]@m����Tc��� ���76%�V� ����m�5t�I��뷊�;�Z!���KԸ* �2Fr~`?�}K�þ+���S��bF�/��6�ɔ��Ur�!�\�����w\���4�V�[��6��^��'�I�Z�tf�����+l��g�q_��|:�xe��.�[]��1��{21����f�n7<z�H��X�i��*#��MZ�>e�~An��*h�]�v�H�q��=��k��0ۯj���,�p3��k��u���.%�M��N2Ovw�k�V�u��蠃���a\u�pƝ���s��V~ϦCd1���d�i?��KS��9vr���c?A�]O�f����f����p��֮F�JK���H�61�w�t�%�rhY�FJl�b)��kSC�T}�����n��(x�<`��-@����i�:hkr�m��;�{T�Ԛ�!����t�٪]�\�$���#����^�#�g����oѬ��N���lo��y�9W^���+µ�kH��$oYh?�+�ٖ�A��U��rd�H�h�-���Y�!�84�� Z��O|6�t]CH�x��J�K�絝�$#�P9rEc|^�|?�X��MO�q�:��f��0��Z�Юm�o4K�Ț�����dz�Ey�ŝ:��;���3�f���� V�u�= Ji����D��2 Fo7ľ'Ev$���s��+����Ԯs}��רX��S���J�c��]~���d��R%by�-s��V��x5�Rď9� 9��)#+>�_i������I9��rF?һ�C������,����m���M�~�aʑ�㱮+��Oٴ��5�W��s�����e��[h��Q<���ui�6�C� ��B�{�J�� �3�υ��5�,c��V��0'�q��<��濴��"Ka�}L���.tb�3��l��~XYY����"�#��}���F2pB�ϯz��v��_�S�j�0��Tވ������/5�bۍ��<]��3O��%�P������3�8�z+Y����3��z�Q�Р��X<[���J���;�+�ucf�x�f��}�U���ұ���̈́vz��!�2����`��Mp�>Q-�k�,�;p1��tVWN�r����B���j� �����\cm���w�:��P�]58R��C_N��>��|?K�W�r�v� ��9���%̩$�� �f�g�F�"��E�Ѯ��[/�$�O�y����STN��/��x3M�"Դ�E�LTfM\��I� �@���ߍ~���:N�*��G�Yǰ��^k�<?�x����[�è���`��d�<Y���z�O�-����_�%s�,��ϼr��Φ6���� �Z����_`i���+�7�����v�mB����3���������4/Arl��I"R܃�F:��ڪ���}�� Zg���3��n*�2�WS[V}B�H[-C�S=��b;].�Ac�?!��,���v������������G��s�KZ��( ��v����-P�|?������k{v8��]������K��7R9��"����a�R�������!�/=ϭa�!�c@��ឍ6�{"�����'����־��[��K�E'��R��3(z6��y�L�Hާ�P�Gj�w�v��W�m��~�#��q��g�5��Z-�:i�#��u�v��Րc� V8Ϧ:��8����ς>�o���2�u�k�i =YU�s�(���g����d��'��Urz�� Ҍz1��,j|;h��#Z��Y����I$����yE�(��g��]���|W�d4:���B-(��5~��x��:���q�].�8�F����.;W)���Y�f�]ODVnO�b��A��]&��oP���,���o��-�A��X�>:�x�[[]�JSZ��*>�:~4�}Q:w!�I��M���ֳ|�:D�����b+μp��dMuu�*D0$�l���z����5�L��?bL��w��P�bEyޠ�b�ɹ�<���i2d�7�I���Ns�����^[�Q,��s�ְcM�p��Z�V�q#.�Y�s��J=c�עk1(�$�����_ `� ��/�/?N �� 'ڼ���v�c�պ7h�~D��Y�F��-�F� �?�(�ˋ�܆V���kw�v�V�1��c�Z�'��2�t� �����������3[�a$��f��2q�Q�dӌ�8&�/Gl%s�at����q�rq�M5��'����?%���e�A��X�ob���q���STr�{c_�GB3�����ys��}�M��E�k[�Z�I�:�?¤Mv`�=A�n��0=�;�O@2t���l�ң��� ����@��)!���f�K�K+]:�9���*`C��gڴuI����&��L� ˘r@l��L�7��f�|���}���~0�N��7<��+,@{`߀��{��j�|���~1u:N��jN�pR�������|9��ޯ��]/%��H����S�W�KM��}Q�𥜕PU|V��p��?���7���5����3�-����/��+��|�Y^�xtԹ�A�&�|Ƅz ����P)�����O��'s�%?�*O4ij���Un��㡻�]�*�$����:ƶ����W�����)�Gd!� ]c�Qj���͒7 Z_4Y���6��aY��wS��p�/�< :M7�1�����wi���Jz��a��Z� ��� �F{����͜dן��?�<K�[��%-���:�tmRT���u�T� �Mχ�x�>{�{q��?iQ�K�q`��ݗ���Yu9o���'����ԑ�p'Q̑/�1. �<Wu��KU���/����jr�^���X��{(S��=������I4��.& K��2qֳ ߍYT��NBG+�qϮ�BW`��|>�|�h����� �Q����hh��ڀ ?�Z=���QG4Q�;RP��W��9�F7c��}���F�-�մ9�m���͌�F0~��Μ�^��~YT��#�z������E��-��-�I�,퓏�°U�oKfg-�z��V�w�,���D����}����Ff��^g�&��:E܉&��;h�?�������_jcR��!��뱕�M�Ŕ�ܨ�,m��|Z�H�ܞ[�6ڡ�y��J�٣o�x����e�#��� R�ֿ��uݮ�k�Ļ�XnQ��c� �G��ֳ�o��z?�K���A��Em|:� �/��[{{uR��y� ј;m�x�;H[��_�����5���J�>f���dߩ��_ܓ��^ �V���� ��l�ϗy�-�m�4`��y��[M:��_[ٕGi�/�Q��fd�}W�U�m�s� l�<~$M�t�I?眮?,S�%�:I�����z��ȷƛv9��ţ���*e5��֫q��_'LR8��d��U��t���M&��T}��z�μC^����q%��s�|�6�l&��i4����J��#� �$��5���$Kl9'���~=�班_���B �V��5�ю{sU�7R�Ƨ;b]���J�G#2����>�F��2*]FP�a#�����Ϙ�؊C���|�J��s�^iZ�b����29��>��d����:"UI3Г�дWG��~%��ii���F.H�4,O����C�Oh���g��V2����������_5��g�4���P���G>������_���چ��۷R���R{ 7~&��C�<_�˸��5��������M��c����H(p;��^���=kJ��ِ��-��v�OM�"�Ҽ�_y��N�-��%�u����W@ՙ�w�)��H,W�����ֱo�m�2C��q�����o*�nȳ����� ���9��NK�1��eB�s��b��nIiy`O�JlG6�c�P�a6ʼnb�'�+�. \g����m�c�s������i<�;����֫�2�����c�<���Z`v�^o69b��>P�[a9�"9^k�/�:��F�l���շ8��V�&��BOOQ_#�uX!��J�,�7�%Ȍ�ǥ}W��/��D�:$� ��2Z6{aԄϾkEk�#��agw6�� d��K� mt,���;W�^/��9% �ˇ�Hy1�gۭ}7�D�:���_�h5���*=��|���;Y[����'9$��>�鯄s��n#R���a���8a�9g�Ywd���z��if�n�b�Ev˞IB?�9d����ϛ6��Y�b��#D�H����c�q�t7��ܱ��F����\���$�֤��ܪ��PM-��`��3�a����eӮ˶�����/N��+�4���Bu'�63��o�Bh ��Ǝ��$YF?�$ի ���o���c��`IUmkV���?������ă�ֲ��M�����4����o㌕\��"��t,n5?�A��B�Cm,�=� �= �W��e�5��C{�ۛpJ�d�����o��5��[�G 1H�������_l��>/��<;c�"_�*�O{�)9 =FzӋ�+�a�hxX���|����{�b�B��i�j2���A�b�pq�{f�Ѵ߉Z����G�ֲc�pK\XL�����*���7�>)�w;�����d��:\F��>S��RM#i+�� �4l&�QbNv� 1�{�=�C�d6�c�������a�Z����;�*��e9���0�ڹ��b�F�ҡ�b�m���.G$;�3�(o��H�<H�8,�)��ʣ�N�D.H����,c5�x�AU�f�<K��I�DQ����Ms�������3#�_�������E��m���J�PoC���1\�Hݑ�+��}�#[���$�VN~������SQ#7�w噡�άZ��m�l��4��.ه�d���o�l�AH䅢�mBs��@W?���&s�i-�-��9�>�H�w����P�-s�� ����{���n�l�W��Z��<UW�J��ٰ�q�@=�+�O�~�qp�ä�^-��#71�v�˓����ipoS��;�cž�����N 5_5��8��( `��Cּg���;T"(��w�6�&�v?�.���}3�������F���l(ޱ�pb\uǙ'�?�+� �=��=טK+]�ۻ�d�3;Q��6�������7��Ft��9�������l>'i'9�t�{It�����Z��F��N��Y�=6گ�����kS����S���`��\~���!I���&�u�\�1؈�B#D�,I� ���&�ei��2Oh7W��gGU����U@��I�08�+�π����[m2wK+���ծH`&B���{�1�_j�K�mis�����{9#3ٖ''a��r;�\,� [���>�ë�9-��E�l��բ ѱ�?�t�㞞.4ۙ��n��6�9��2ƽ�o xcU��c�~�����E�D���Sg�~=�7ᖜΚw��oLp�q�[�0?�:�}�R���j:�M]HM��G�T�"��ָ�*�d-5�p�9&i���@3]�t-��� iY�#�s����:\�]t�V�'~�6�͇�S�F��+]^�6V�滁���c� T\�9�m����R[���9I���K�֒�|3�Z89Q���r[?��/�4����I���U�v��Aԟz�.7{]��`ӓw��O��9ďt���{��:o�5���l�Ә�ق������¿�)��k�V�wQ��n�S�� O��/����\j.�g'���͝���<���y�k�߃�c�i{.�v��?o�h��rs�\ V4���9?��a�C,�/�۫M��kw�Z���$!��_5��Y�f �0�"����2z���C��í�5͆�fdb�M��=;�ooOJ���^�,�{x��C������4+[a�;�q����}1}O�����YL�n�Z�K��/����F������z�3@�U�Pz�A�Os�M��4]^C�]"S��V����M�}ݎ����Eo����;r{}�N�X��j���d����J~@Wj�~Uĸ;�{���?m>`�� ��@|���'��ּ��̗NČ��#���)+2{ 6�q⾶���m֝m�t��2���Uq،�G�}+�k& $A��y�R���ي��.W削��i�=Oҝ~�B����pE�d�w㪆;^+�ω�=���m�W�\���;���T�:���k�.��^{�B��f���ǝ_�+ɾ3x�>�^�����W~��[��!�qJ*��R�8�r�+�⛄8Sd���+X7Z-���_Z�� V%#�O�Yz߈�sk#%���H�Fߚ߰�#5��x��J�Wm�p<�ǯlӱ�2:h:E��x4���~�s9?�a��}�+��G$h��j��x���8��1b�C�<G��q�rbk^��n�5MBեV�%��\�����K9�����J���g+c+tT�MPԕ-���W4���Ex�VV<>9�[�TV��-UF0Bʇ���]D2jEH���� ��4����\�bO-t;�mwa���6��L�4�̻��p��b���D��yn�Z�)�q�&�@;��ؚ�����:�� ��ǚ�v�6�a=�Z@q��"N=w+��tǶ����2Ƚ�;�>�qLM�R��|���־���{�Q�A@k�b��{_1C ���I�jX�{�2ڊ�;��S��8k���*S ����Q�h�<<���k���x�R���,_�^o�+��H��~�ވ��y�ċ����͚�<���~%�����i 7I�jʄ/��-�{��~��q�uqi���'-s}eS�}��r}��t�-�qu5��iP�h�6�0#��Ҷ�>�fx��O�^Ӭa�o���d�XḍM�HOFڋ�zg'p���q��ÂFI8�Q�^�o�G5����z]��IKBK�z�p2q�M.���iO����%�M�,��0� ��q� kd�F�u�;J�o.t�*]v���h�e!(�n��FO�g� �5��/��ioyd"��%��$�Pyj��lş���<���]�`��k�~�2�?��ux�`��u��Gk�>�HV�,lT�p �t��]N�_�|?���i�䖗�1����_r�3~5�\����.��dn��?�y���Y�]kڞ��i�7�䴘G#x��mCP��#�89a]f��x��Ėַ��J����N+�� q�1ާ�@Fi�$iϥi������$��I��oҙ �ݶ�_��Nq �Y}6� ��x���!��m�Ƽx�ɞ+��-ٲ��%�'�q[z~��kֹ�/l5[h%Y��@'n;"�Mzكy67� �+B���F�B�q��Ƭ���ň# ��]џ��_֯O�"6�y^܁�I�"�O��v�w���B��������H�{kx29������8���wqHRj��������.��9��օ���,AC��"�}����.��>���4>?x����s��q!��zPJ? ZB1I�Ӊ��QEQ�A�@ K���G�@��=ֽ������}�gy��8��Jy���'�GҼ �^����쯴/O�_�`�y�$��*��#�U����7Љ�>��<Q�N�)��,צ*����$��c�Y ���;�q��B��F��#�r�i�у����`}Eki���W�Sþ�%��qu��R+�F:������~$k��қ��:ɀ�k;y�q�}���������_iv�\��M�/P%��)�s���Q�]j��B�I��0�V`� �F�ʾ����_�9si���@�?M�g�:����ɰ��{0#��{�����t�>��/�6�t#}b�FVo�éY�� O�.C~��\cw�����5�����}�V_�w�����_,2<�)�i�12ˡ���#����@Ǹ��rj��4�2ms��r�9���c���jG�z��] ��|��R�{_9G��3e����0{dH���>'յ�l���'��2{WП,-Vsh1�.<���:�zs����E�+1lE���\�&� =L�n�1�N�\�? ���-¾��㍋�����h��,�!Sԁ��Ar�^D|�f��|mA���j G7p�~�})a����}V��`h\��C�uN@�a}��W��"�fn�z*����o8,q�����H}�j)�G���쟳Ž�ͧ���xTnkl���=~�}k�O�>��[]�Z��&@k{�VO�B��5|�Bծ!0v�be����3�+v�x��>��~�.�ME��x[}WL����Þ�:f���-ͩc��my���-W�:�,��k1��*�zt5�G��5����!�B1����|p>���� x2�r���ld���%A��3i_i �b�3��q�c��ώ�+��4���:ƕsf�5�i�l0�ξC�Ӂ�ʱ漱1���lyءa���֨��-�F)��Ÿ前�~3D�ۭ̓� 1lac��G�ѓ������wR�h��ڡꄍ���X���n{���-���Y����������˹I���H�h�.D�NUɨ��T|����p��h]����+��s��O�"����汫�~.H����k�`c�n�f 0�:�k������Kx�ᅣ4k�^��ac�."(��[5��"k�[�>��Nq�ھ��+5�{0x��×rcx�:>�H$}7 �mh$�"���<}`�e���*P0�[jW(�$�Glךx�hV�"�z�e�8�F+��^�ŷ::�%����4�4��c�,�����xŔ�{�Z�ᶙ��Y���C����R�l�N�s����5�}r1���=�d4� V������_�����h,.|��!�O��/��M�=:�{�e��&����Rԍ���usz�uX�����O�k���a�WG�Gk&����Qe����I��\����ˀe�*F.�$q^#ȱ2�gi����� "]�6�L�o[[��b}�@G�q\'�!��[�i��E3��n��#����Y�<Kd?�4�4��C{9�`�W�bY�,3R���@�A�l���1��_�@������ӠO��RN�����qm �s��Rƌ�g����S! ��6⾢��Z����GY����@�����r㧽|��ؤ?�.D�{*׳��� �O١��iS�U�ba��Q����US�R�����K�: 9��HJ���A#qف���=���k�k[�,,����$W1̛�������v���I'�$�,�w��㞪���~Ժ6�gj�,���h��F��t�o~�B��>W�����MWV�lm!`�qד����-�?���JV����X���rB�U����]%� �'q����Z⤎00ܻ0=-m���4�u3rfEɼm� ��cّ빺�7y�,ŷy5���v��G�}��s-�ɞB}v�T~U�jR��3rs�v��RPz��/ �Q�$�y`��2 XӐ5҂���W O�h������գr�[l���Q�:Y9�Q|�mc�#�m����� Z$`0L��G�Z�U���}E�����M�S5|!go7��I-�eHز4��0p=FsҾ��)g{%�b���PaDO8��p����+�/#�x�Ֆ�X�ݴ<�vq����¸���r'Y�J��i��x=�eC~d��j�7z���K���R��<RK%�����s���_7|P�e����<S<�In�C`s��k�uu�I��U_��nm@g�P����u���u}<��(Ԧq���!��r�Y��G�j:�{��� =$#��52}W���O��ځ�������ՍK\ 6"�X�� ����q�ހ��ڭ��rb;A�A�e+�V���:��եj��[K9<�&k��z�Krp7c�1_�u-J��y��]2�S�)<�L�����~cx��Q����a�Dy6>�8��c�Vmo�m��O���X�@�Q��[';dM���:E+&�O[^���o>�Lii,�e�����|��s_:x�^��W��O%\Ckmp�;sׯ�z�ڧ�d�ѓ\�m/UPl�`�Or �q�^!�KU�`��{3l���A���\����/���RU3-d�|��{W�/ꓡy��6��]�p����|Qu�Ἥ?U�3��K����Z{���;�3){]>�<S�0�o�G+3r�A�j��ktW�b+L���x�y�̦��'/���ס���q���vэ��?"��Kc��}~����b�:z���ziY��s=+��U��3�ڛ���Ԗ� ~tq>8W��N+�`s����{��+�J���v��4" KL��K�Y�����D�/��ٓ�%������MU1>R�Z��g�8=����n<a����ƃ�h����i�k�s��BYz�"��k��!���o2�HW�MV�9:�`p: ���?<:���7zM˂V;�$$d�$]A���.�����>5x�N��z'���5���,.���_5��ő��;*�1� ���Q�d9�]G��- ����m F���7��9�}+���KMF�����@b�[�����{h9_���j�w2��^8bG�E䍷�M�~u�s��钷�ܱ?��c���K��y`?b���&�.���+���Z��&u �$3��Wlʹfx�]k�hB������s�$��V dF�#mQ�nߝF��pH�F���I(�&�G}���{�meoK�'I�U� v��[)�L��<�߀�����A4����,+�O����gԟ���WM��5v ֑}����Σ�*_��Y��A��K'�4Mӏ��ȯO�1��W������c8w��m:�[�Hڹ�Սr��o��+%���qsbFՋP��QB��(>�5�ln�ϟ�cW��#_�a��C �z�ο�p��1r:)�ҥ� ��.ek�B�B�6!���F1\����N�/N�^B>e�����Է�)�mOX���W�����c�z��E��w!�\^�aB��1��Me�^�Z>����$��h����zv�q�,�/�n�^�,�xڏ����SB�0�,�T�)b>��zT�V�"d)�����*wR��VloQ&Sݓ#���#��!� d��1�]F�=�n\[H�H�Ps�̾�`��k��,��T���F8�.>�U���c�5[)NzF5+��Z�E�f)�s4�+á�7�7^c?�K�c��+R�4��yұ8Qdn>����7්�F�>�C���7 �ģ���#8��Q�<����bp$�b�k���kr��V�z]�a�5zx?u>��+ؾ�5�燡�='J�ME�L����ς{�c��薚%���s,�s��U���Xn�9�{V��Պ�����5F��D����u6��.�ё�B���^�#��9W������e�x�?�&{� ;"�S������O��w��CϷ�/a��H�-��G}\7䎼�+d�=��C$�qq�e�_���?,��F` �9>�=~���> ���X5���9�� ����ZD^����� J��Zi7ЈXF���2�Y-�r��=�E�s� �R� �ޚ�ryhYs�G5�^�E���2?��������́b�#���~u�?�$�����/"D�6�2OW�@���L.t���������9�H\�����^��ũAe5�+�(l7^�����Ǡ����Y��<6y$�̹�+�X��(��s�ޒ���`�ei��utV��9�J��t�.<?q�_ߍ2����ܬ��!�$q�<�u��m%����l�Z5�гc���s�� [��OR�8O�}:K�Ȓ���X�ۆ�y��x��F�?�a�/�����\Ld�w1�!F࠱�Oj��4�k}J�N [M�A��F���]��s��4�+�Ƴ����H�3���L��j����ui��֧��A�Z���99!��O���+y����O���e�j����~�Bt�fg�S�q�7n�������i��Y�3y��ZFP��>S7 c'>�����mH�2<c�R�^�黠���o%�G��[I��G?����ʐg��RV}e-S�+t�nA�ޫ[vW�V�5��o$MʲH�� :T�Y1,y ���?�eM�/ O3�'��by"�1��u��y�@��������1Ei�b�� \�K�i�;R�j@%c�n�Z(�z\Pz����^���V�/R_�.� �Zj��{�02q�Bq�_Ҽ���Q�Z��œ(����^���Ic�9癔����Fl�LK����:�4�.H��D�}R�n�*;���=�_�j���Ů�s@I�|m��'�$���`.�n��[������f�/������ ���犳co���r�wL�8���0����s�z�ͺ]Bw$䖐�P���E��A��,͐2z��$�-7>��n�&��mo�I�ܺLJd��zy��������5֣��y1�/ZM�|z����8�Y%�u�g���4�#X_�F2?Ѥ��,�g��9�$^�nk�φ�ϊ�����TQ�� ��w8��;�Ns[T�S R|ǐ|[ӥ�;�u� �y�Wϱ*�y��f�N����l��U�ñŎr���&���������x�kZ"q꤀+�Aj&���܆��q�j��*[�i��� ��P?����!��[�)�=ry��+Q�%��[B ��̃��u�I�sz�?���1�v䏥CLH�5�);E���d���!�z����b]��;F?3ɪ'�K*J��`O��� ���8ȭ (�H��;y3�y ����-A�A�Cav�ۛ �(���F�$�A��W֟ot�=��[����-��Ќ�d���=x�멥k]�ZA̗v*/-�c�4D�~�}+�/�>#���$�Z�6�0�mr�?�F�S۽\�f���o����K�?�_]����������5�>*��\Is���r!�FG�ײ�Y�&�x\���^1�v����c1�1����އ$�����:��=~�$Ջ���5&�,z5�-����'5�wu,���z��a��<~U�6�}�x3"�Ě�s��h���� 0����0JW"�+��J��`hW�������7�?Z��F���0��z��V0�QH '�����k��o�R�E�� ��kx�h��.DV�� �g�;9��_X�5�t ���Ș���rTM�{|�3�_'� ������E,�G��7{1�g�<����ߊ��(�u}9T�$^X,�8�g�L}�R�Wgc��4�,S�>��~it]eb'�,W���ׁ|G�n~�.<��(����(�N�z��v� k�ŝ�����xp:��;/_j�Msƾ ����iyo��յ�8_�*��T�s���I�.�y��G�̿�$VjZI � ��[~m����u7���i"�c�@n?�ߥ`jR��������*d�.�<��Io�� zD�\*~��a\��̘㎘�=kQI\�Vc�n���),ۏ��q���`U�H<�+��D���*�l�&9�䉔�Xι�)R;�r��h�}=�f�\���}cQ�q�窱��UʗN���ԳsK�����?�$���B}�R�������s��l���Lh~��ܨ2����+��Q�8Y�I"�V+�e@�+��˱?λ��w����ܢ�KEt��A�=G#ֈ��w�|�n�h���i��ڳ�n�ģ�߅��y�O�~"����"���8U���\�B�����X� ��l��_A�X��R��ynFyܹ?ﺻ�{�."o��z�H����J���gE����K�]�f��2nf���9�8��'S�c��?=�?E���{�b&ҥc��h�W������<�n���T���표앙���[�'�k.�j�q.�ۛ&h��s�^0�0�q�l�I��b�!�B�1?�v�����[kO�q���S���&��,w�a>FQ����v��[8�'b3�� ݹkfϼ��5�n?�y�R،m@��qX�oR;���Z6�9�_J��\���A�d^[�Qj�,���9O��ˌI�]����h�]��6�;/�џ�1��o[ ]ϻ-a���s\�Цո�߈b��L�� g�+毋3��*\��x�%�R�`�{�+���v���&�{�����O�\�B�O�ּ��݆�e;�t{���Ykq]��AcU�m ٫�A��[��������?�}�Rop5���:�k���Χ��.�ϛ=F5e�����K��)�fi�۟�{VR���Nk[o�I ����&�Ϙ�O ~u�~����P�eb�Aa8�_���NEp�"�L�=��G/!��&�/ٜ��f�&�%��+��m��W� n�^Ԡ9`�,��Б�x����{K�D3���RA������M��o��lC�f�2#r|�~�W���|�C@Ԯ�f[_:m�Dm,�rz��Uϋ���|��ؚ��eP�h����<�z�E^�ї�s���:2[8MFnؿh�ك��]���J��WK��[h~�m�N˓ �����v1�{�`}n0��@�\�ޮ�R�����P�0�����5(�fU]_[����Fp-"1ƣ�,���/�_f�Fh�P8�sɽ����e�������/"��d�/��s�����\��ā�����iY �ffr͂MX�u�6�/4�m.c9I����Џ�U_���U���'�>���>7|Im6��bϕ �z�Y�p���5��ֳ�/\�{��a�g]��B}����f�a�=k�[�@�����7�Љ�d�$z�#��}�/U��i��GZg�,5w��^��!�qTҵ� 7>�ܛk�+DF-��BI�Я�\>��I��/� :~��G�$��^����� ��^��Y���4�t���b�^���G��ErH��|�i5�Nɔn�ċ���)�Gk��qX�Z>�m�G�[�pI��}�}v���K��RT;c�lcM���,?�W�Ѡ�>��6���1��[߿���ߙ1�]�bM����U���VƼb��3��<���nM4C.[m��J=�f�<.�� �V\����e��4���|Wm��G�|K��i�Z��ꄤ�{�`�0���#�}5����n����ʮ�Dz��`9���^k�<T�0i-$�N�x�d�Ɲ�O�=���\q�\/�O �%�>L�!����:C��p=�;�{�z�=WP�Lqw�x[]�G�G6�$z�U��5r��e����-u#���,[J�}�T:�u�yY����e��+H��.���3z.�������\n^��s�\��o3�Xw@�;rG��1$b�:.��$�����Mpc_�hι]h�:|�,4�u��I��rO�[z���{9ʏ�����7J�As=��E���?���CP�i.��f#�� ���X��$Ib9�dUK�i��-"���b�%.ŏ`S^����~���k6M��|�����H��T[������"������6F![�$ע�[�ֵ�Ƴ��Mgg��i�6Fp�}��| � N���䏚�R�I�����v�i2˩��`�������\�1ԁZF�ݕ������:.�k�E�!{�S�Q���۞pJ�t�+~�ЭƲ��!Qť̪#���|Q����Hѭ�14�M���+�d���=U�u+g� %\ya��h�m-W9���z�$�}M��K�.aT;���b�$rr�#��<�X&��H���[���ڐ���4��wx9>��9�H���^�Km�OL0��vw&�'ia�kME���v��zm.#*�V�%Q��9 '=zv��+�u캍����.����]2�2N:�D �<�u����l&�x,^�$pb�-M��H�[���g�sk=���s�߭��;�h&��2���s�Vt�u���5��xG<I}1F��9#��j��M�f�U6���y�1�a�ô���9Զr N���K�0��<3�Y����-�tQߵ7GM> >��=�L<�tK�*��$�23ڪ�t�w m}ym���͎ɡ��Ǒ��s�M!\��Xy�d�]�; ��Y�`�v2��#�^:Ӽ)��e�X���H%b��:��� �C.r��\�s�%��=.�]�'v��9��@9 };c�jW��"�[~Fd}2s �����=�Z ~�]���<A��h���C<`�����FrNp~���M��m��ĥ��x�G ��n8�Qү�6v�:�R��^E�UӖe\�H��q�'�K� -mD>��:���F��� �!A=�y��4Ҵ�i�.�J;�����+g�+��(c��1��B��.�g��H��bK(��f>c�hRP�l�U����K�'Y��ԤΔY����� �9皝t+h༁�#����ˇF�LRN��r��rrs@V������8K'��ڳ�$�ɹ=�i杧�3O�qq�j�t����������FT�$���W����ϫ���DEqnna���3&O9>ՁiVz��ޏ��z�ź����p�IE�G9��Ђ�L��*�8m���i{�Ǣ1\�F�~ƿڰ�@V�CJ�9�T;W���"�72�o�K� j@ i��P�!<*>�� ?��x�l�'��E�ƛ$M����5�@0��s�h)3�2,m�wt�����g��Xg��V:��Ū��4sB́$NOЊ��Me�zd��V?=X`��5�V?>1�*���0"X��"+j��d��r2|`����_���letyZCֽ���H��q���G���ڢ��ŏ�i�6^n���`d��W���.��H��E}7o�x���:��^�c�������uʑ�ϊLy�#�f#�S�ȁ��:J��?������� �z/�G�&�/� {�b�--��$��Ù!�C�&�Ĵ��>�o��>�r���h��֦��8~�o�Ŭx�Q��ܳ�#��"�MA�2>'�ޖ����G�+��7�|�j�]i�y���}r�mih�r}kß?g�G@�\�~kZΛ4FXo ��X�Q�T��wC�R�h��=�W�:��f�tq�X�)�U�[�q�24�F�|�l��1���m���> ���/�G����C Γ3�,�sڟ$��|#�1���Ad������� � O�� ��F���t�t�\�9���M���/}�]Oÿ �_�+\-�Z@�H���۹�:��h��~a�+0 rOa�[�ҵK��}2�`睳����o�[o�����}����n��b��U� �0zU?|d�����j0�.&�y-Ε4��<�G�QǕ,��(ρ|?��e߁��j�.6��g���r?+�~�?�Hxs��4u ~�;�>��ɯ�<!�;X�<m�O��=�ձ�i7��x�g�'�O|k��i�}֛>�� �����X��WHD��^GU�%�ĭ��Z�|F�5? x�M�K;�z��O��Y�|%��!�q��J�(���<g��k�߈����94��jV�2:���F��V� �=�y��?����������0��v@�����J�?PsE��n�<����8���\�J��E�NXV^��=|{��b�:��"8Wԡ�=��kپ6�O��m�i�� ��k��ip�u�V��xH��v$O\W�x���kM).�>'i.��&�i��@�C��K��W����<�2á[篙�����MiX~�% \����l�>?��\����⓹�> �J�~\Kc��?�b]|Z��u�G�x�����Ѐ��4��=r��!�C����g�Y��̊Ѷ��c�P�������^e�O__��^>�Y�dhn��Lzm.���U5��e�+_j�6��53"2u�ߏ�&�!]�V�_�U�χ����U����C]ƶt������J>=kV�JCJɫ[G���ۃ^!���_"Ks�W0�=>�͕����4�0q��z]����h���>�KC���o!�eKK8d�PH�͜����H��],Gm�hW���ɭʼ�#Cop��"!\f��N�U�������� �]t�����Q�e�ƽ]x��z}�>"ԓL����pZK �D��r��'��/��(�=ޚ|q� �Y�w�iv�m:ᣆw���M�7��FOl��ܙ溟��#�^.�nӷ���۾�V=���i�V�������?6?=�����x[ž�T�k�x�Wl�z~��&�+�QX6X�#h;�������N��?\���/�k���#����c���h���#yA�����z��+}n=.?x�T�n�Ik��O��v���R�y�ڽ��Ԭmb*���FT�GH���h��Z�> �zE宾�/���kY]�⑭��,����r q��u�Z�j���i�e���"�0��^�ٚ2)S��ɒks��!�O ���Gohv�[1wgsgq �W�� *#F8�c%����+S���5�x���Σ�i�.��Do��� �ar����{�_*\�sx�zo��=��-͍�]�Oo�_I(�� 2�9$_���C�����ϧ��5�w6^`�첌��t;�#�)N>���#�E��M�Y����N7�j���,�i��+��f�}6�tC�≁ �Ȫ?���f�m��Q���1��u0��rwF���B+ȆqQX�GS�m�.��[H�|z�.���î���O2���}��<]x�7.[W���w[io nzs�,<W��3��?ý;������n��Oeፕ���G9�R�� ��g�:���z;������da&�4�v�/�<U/�����c��r� ���Q����<T7�V���Aj������꽭�?�� �*���9ەf%`��noğ�Uxe�̸ϸ��V �3�n�3�#�Ϡ5�!��K��J� �˶Ԉ��9`+D�}�]g#H����E� O䤚��� ?w+8?8�0G���5�r4�8�s~���?x�����k�\���L����@�s]����[^�L�u������@@���ǥb�ܾ�r�L33�3��w�ZWF+��t�:�[�$�����&%X�+T㸮�� ���7V~���[��}B��Y��H�ں;�ه�Q�����2>˩���L)$�nw��E�u�� ��}�k���5d�"��Ϸ;��yk�|c�?�ך"Yj~8��a# �x��b���} ������8A��z��d$�O��c�~/ijV��^+�GS��+����Rm��{��iV��zb�%�.챎�%W��p��ՙ��t�:�(�M�dg���/S�����f�jGk�G����318/���]�U��<D\��A�8�?�\���*�l�Y�9� �Ҫp{�>�{T�+�9$�ހ)��,�AI��u�i=j����RI�i�t�!}���UN�)�`=����ĩe�j�/�ah��-Q�W � -�)���x�Ğ"���_��Vp�go<h20�m��O,C r��#"�m<CyTw����.�Czd~5��6-j�J��^!��{�=�5V Fq����W��n'vy/.�����N;����Vl�t�Sܾ�� h��O�#���5��fk�.o�c��hs�d�Fq�ֹk;���+(�c2L�C�3��d㷥w��h���"�-��`\$�N3�A��?����C�?�'�f�����F����.�.9���=�Z��^K� 鱶Ӊ�mZuB}|����c��Ѵv��u�g��:�)�_Y7��H�A�a�i��McU��d��{��!d��ln�>�����5S����>]ϛ��f�R��q������A����e$�j�HP��+��>��ۺ�6�bY�bՖP��0s���8�H����m'7�۽L�!&���XE�k�d�]���O3��B�F{�+��Us�b�U�b���.�;D�5�WI$W� �ҹ}c�vc&����4!�y�(�ܜ��g�D�v����i=����6�6붇j�=�$�?ޏ�����!��6�2j����q[�Ytېqд`?S_&���dX٤h��\S�3/�F�~����|y,ZH���R�2�������b�#���ik�2�3�$�����8�UU���kz#�3W�kwfQ�հS�ےz����~��9�:���Ηu$$�Jc�y���S�+e���V�#'�YMK���e��u$YaզS�Oz�i�s�������[,����<����I�+^�Mx�"�_��������;R��1iaZ���a�=z���Y�9����\��K�� �$����Z�!�X���O��_t���YNNr2I`M�����g�n��)�G��@�\��O�0�����zЙ�F Q���zSB{M�>�ݱ����>9��d`b� k�,��F;`1ǥv:��~9�hM+�����iڼr��9����?��?�b'�PĊ{�m�j�d�jݽp@�M�6���酭�� �q�y����}rl�4�.:����ZH��½bĨ`|� � ���5�[Y��z�o"d1�|��}���ac}o~����Ԁ���1���[H�.�}p&���{O0 �n�#8��֗+as�����h����L���BI�����[�F��*����c~�l��L=�I�W�>�ݕ�D�&�-�������>���Z��v�]�\4��� ����zn`8��<V����m���]��:��<!/�(���,RM'��� �.w��Ʊ�de�o1���O@>�L��G�Eg�[[��:(�~���G;�R)���]�F�=�9����mZxd�R��2�~�-�<�-�a�ư&��ַCz}�BK�I����r6�#�>�4>(��df�����ZK�5������?6j��k���g��c0.�eտ�q)a���@�n)�M���MO̚~��N�+�yfX��@�9=y8�ҡ�9�� [h�QM��V�d�,��� _����sH��N������{��OsX����g��7C��u�o/�o雔��yY�y�B������9ɠ��a4z]�k_ۖqJۊN��ٙ� Y�N~_A���gQS�鋪\[A�K�����{�p �������c=旦�se)_���v�*܌!#�g�}jοk�k�� ���)���X�bH�Eo���Nj+]�w:G�{@�Xc-s6��;p�2��;s�Gz��~�%��P[�Y[�r�z=�Si*r��v��^#��x���6+ֺ���b���H�q�A�=����3���K�̇�e^2H�LsLF[�c$�G�P��%C��m�p>pPF9�s��>��̹�]3Spq I8����囑�20 � ���{ŋL[�X��+Mm�F�V-� e�8��Q��A�d�[}'V�G[��VhT��s��g�AE�8��Kx��2Cք�4������\��U� Otu6�|�t�\G�,2�O�y�#���U+c.�C%����I��k��\D�7d��8����i2����-f���E�4r���"����y��ҝ�#���nm"K�9�,Z]>�+��$���wW�7�����դ��h�W2]��۫7PU���s�03Ӛ�����J�dW��Y~��C��>̀ ��Ywz��j�Z��yb��rj ��s�]����B��ƣh�����ϯL���U��8h��V���LcSk�NͼY�Y,���\OPO>�S�|+s��R�KX^4a��^�j'*����}*�� \Ok�j�Z�+/K��F0z���`�{P�2 Z+}I������Zi�Xܵ�0?1$0�@���g��V�m?T��8�v��UG�Q��uĄ�k4{z����i�%{k=n��ѤhF������"s��q�U� ��){;5 �� .���p�^:n�2(�vs[.� O}��� ��]�I8���?�x�^��w��_ϱ��dȚ��ݴ����{z�:^�z�r�l�F?�QE�T�M��G�ힹ���h��=�0k��fI�Hv�p$twitn7�4�]Y�[�lX�����1�+$����������z}�������Q��X'ʲ�Rrr9 �t)�����g�uH��0�t�Y��RFs��x��a�N����g�}=�g8ϧ=il4K�|A]_O�n/l��j1���S#�YD<�w�[�;�5��\A�X�w��|��� ��8##"���>6_|Rմ_�wz��Qi�� �f�|�1fS�q���9�i����(��-����W�<Q��{�9๖�I�dg���r3ҥm����<Ai�'\�e����e���#c�.�G��>`�v FG�tz����O���.��F�wq������^#����m</� �{R��xT[{�y$�pv����k����cQ���j��t�-����-B��X��t%����X�b[z�����[�hzw�n4 gdd��V�qS�Ls�x9��s�/I�6��ǁ�$�e�P�X̙]�B���r��Z���xWB�u��_�Wz���ľU1oa�>n~\�=*o���i�φ��]����������w��6�$4�P��Ԟ��}���Û���w�B����k5���jB"�D�gL���x��� ��m5��ciAs�ެ�:�I�)��rG�� [�_�5��w^��|�B�!�а�l����� 8���䎣��������q����Emk�k u�u�8�6��U�O��Cw�������~,�<'��xd��=���u���A�s�rq\Ν�m�_Ŷ��f�I�6�+3�Zk�H�.��&�eۜd�x��|"����SU��7�q����;w��!ʪ�;�;�S���~��_����]R�G��ݕ�B���!�V�1ކ�įf�3�X�W����L����2��4��oCʻ�e���3�S�_�_����*�R���<�3��m&�(+�'��kj_�dž�MB���,`���k�-���������69����׆|O�]#G��b�4E��ա�����Hb�O=I.I<��ܽ.r� ��m�{9�3��{O%��Ҟ����҄P@l����4�:6���h�T�����[�/N1%ã��a��X�տ'�[+�KmOU[�k;���K2b��v�Hw�8 ����%�a�A<Wz5̺U�V��� 3��rp8<��M�[jy��o��r�%����k���oX�~��/2�7j���3�Z=KU������o&�iv��[��$�D#�A�����'����ɫ�ی[����<�����kj��0�-�y7��[{�ְ~�8 ����^hyů�.�G�4�����.������X�R,~`]�N���=�#�I�O� �_i:ͧ���'�4��ڝB`&�O�"�Y�2&F;u�N������t{�.���8<�;;�`hm�s�S��$����MK���--�~;h����������(@��=�CSu�I=:�E���~\x�G�w��sk�-��wr<�o���'��\`�����M7O�G�x����o�=Q�����5���`�'gr���z����&�#���l �Q�|v!0�՛W�Ih�-bp7�&��>M���iw<����x�O�cP�U��|3�jZm�[Oa���^�\�������yN��U���Gm>xR�WY�-�Ӌp��u��c�+� Y| ��+u��br��Iu���Ѥ�=������ŗ��+�麭�݅����ܫ��ݵ\�9�=*\���������,�G�c��.�q�2�aiq� C�#]�~�&�ue"2��^!O/a+�93�rI�kgu-јG!K6�f ��*���>WK��Y6��2��ju�.���VT�I�?1���P��¶��8�[ڗ��8d��Z����$����t��6l��X�ѕ��X7+=��]��2,y���Q��v;A���inĎ��ii��ޫ�:s���O��c�]Uʧ ��A瓓��R��A��=Q0��y �>��H� ���9�=k�/|0����Cg��+�G���w(�e�1�����y>�ٞx4�k��(���+�-��עxr�'��3��V��øʼ�3��;*+���h����>'x'��-S�~3���5�.H`7N���#l�ȹ 8S� ��SP�����7��'�|m�x��O��n��O"�.c�FT#�\s�_8���Z������i"����v���PI:�%y#�J����q$����g�hn��ӡ�/�/��U�;��wT���$�lE�4�G0����� �L����)��zW�����xR�kw��-����e�A���dpM|���i\�v��Ͽ_�Cu*�b��6h�2pF �cҧ��G��a����������wo>���)p�>z��A�w|f�����}W���.�iqcy��;<֗vA����0`@;G� y�� �|��p��� ���(���!����"�&�ÕZǾ]��|wcmi}}��m���q �N&dD� ���W�~�&���<Z��?�^�)��[k�<�k'���9Q*�e\g��u��t��XIe���T1g�uC�?x'w�C�Z���X�������9�Il�)��!�d`���U�YX�3����5�v�6�ot�z���IB��ˇ��l7�y�0+�-��i��H������W��_�?�U|o<-�M��p��r��)'�=k�� �[M-�ĚN�yZ�����c�{0�l�6?�P�<�Q>��� i��Ҿ���<~��J�[I�4$���5�ٷ�� �K���\�[�|i>��zu����@U�-ّ����m�W��'��atd���Y��VǷ NrMj}�k��wv/����G>e��Z�p;�B��?���_���Z����h��+ėZU���b��2ӼC�]9�6:��*r���?,�k��7���:t�����B��4��8�Rlf��2�%9.�o�?��w�����!Ӑ&Y���jȧ�]�;W�k >��{?.L�V�g`���6���K����%p'���c9�a@�;���fS��zJ�ЈG4�"�m�5�oxCN��]o�V!cđ��x�kP��;g3B��C��ǚ�s{f�a{DU\ ��Fs�u�oė��Ku$�c>79x��Rq�5~���iP6Ԛܓ�&M6mj�[yh�I���ι`�X�G�ZMsp~_��ܜPQr�\�Y�A��+nB��2���_�^.��q��_j2=�3gpC�P���s_ ~]���+�o=ݙ;�p�Gi�cO R�v���+��ᧆn���?������K�~�E���#�5W��1��g�O_�����Wy��Ӂ��V�WI�~�>7��i�<=�����qߖ���|[�σ�{ 5_ ���ra�`��`|��W̿�=y�]}�_�7tu�w`�rÜnR0}�&�Pkm�lҿl�} �U�,r�q�;�ی��x���#�{Xu��!�)>n�i?Q���ҾM��y����ISZ6�`�𮧪XX\K��е�*f(c���'���֎k�%E�>���쑭Y���ø��1�mlO�2��ox��U�-'�ΰ��x5�b���+�/f�_�\�76'��_AT^I$��'oOj\�CH��i�'���K�<G`���[RI��KB?�s��,�I@�w*�.=��?�C�^��m�"ks�b1�Bz���E�e�W#9'����ӇUmJ�C.�Y\|��H�LV���)�R���.�#��6��.�Z[M9�Ci�wh��jxcºtZ���Ld;s ���A�� �W�x��-��t�6�m�����{�#�kV�K�GM��߇�&�h��X~j }���W��ߧ�}o8K��۶����p�@u>�8����|@�t�����Đ�I4q�:��>j���#�a���i"����h���O���i���j������O�(�k�O���z�G�4;i#����M#���ގ1>F�� b�����Ըh��hڋ���-�C~%A��G����?:01_mj~/����7_�����]���? ǻҿc L�k KL�77�/c�=:nT������\�s��'�;r+�~x�᮹<V�:��A��S�B��Lm�~���P��?쉮ɳJ��uc#�ʄ~�W#������[���Q���]���7Z �w.x3��%���~|x�b��ͮ��7'��H���ýdx�^֭���״_�.���4��i#�|�e�R_~�z�C~��6ɽ��^3����\Lj�cߌv � {A�}з�D���h�w�|ӵ�;���L���Z*�6��%\�*8�N���!N������@3ם� �5���㎙#,� ��U��e<S��|�J�u��t�����ځ�Ri���I�Wdz���#,����:,n�?���u��jWwL|�)�k�� ��X�ٹ[�;�fDв�Um˜�H�9=i4������s����;��O%��O ��H���8������me⻫t��|��r?1^@]:oZE�+G ø84�+�GS��~���qy�ho�(4E�0��[ɞ}�5��B�9�1qa:�0���T��-y�z��W�Y 7�i ����Y��#Rs� �4���o��D,����b?1YW:��@`�Z��=`��ڭ�����k����i�js����|�K[V? >)�,��<K(=ƛ*�� �A���ϗj�?�q&X�*ϔ���ҽ.����t/�55�x3<Q��N+cO��>2�(g����{\jp��1��s�z���~yf��=���,�3Ǹ��b�+�2A��WX�֛f��G����ixG�y��u����EռjYa�#��rW|�pq�*�ŰgW�j6�;i�ׄ cw��P[]�=Z?P��zΡ���S�H��(���=R(L�z [�v5���m4�%�¾����,�r�+�N� b1�k}�H��p��μ0��D>�����^Eԥ++m�&�F�q���� ��K1�o��S�9�X��,�#9��ڲu?�=��څ�]I!H�شP�yl|÷$S[x���O�j~�"l%�����I��C��K�'r�:���-sOt�U!��F����[�� O�{I�o5h��,P3����(9$�+��4�O�m�4m*�lBw���J�F���3�wS᥄���ίh�,�O �Ǖ�s��{Ղ�Usw���Q�A��a��ld}G\���mօ�Z�6���Q����VX��A|�秭r��B8./�,g���$�D�y-��1���u t�{�z^��������ZR�R�P�G3��\6�7`ۜ���߹�w`����W�:���s���!ݐr�'�Ҵo>ϩ[}���q*��6X�#��"��'�=y�z��#ԛL�4�+�T"�8p�?(��Cq���0N���� Z�=VȤ����L~�;T��1�בB��VPڮ��߮�$D-�h I��cdt���R����Q��C��d�Е�40���{�������E��&��`�J��3eq��rKzr:VF��h�E�����5˴q��d�2t�\��d�҅���#ե���Q�Z|��XO*O��3H�vIp1�5��ZǪ�O��|�A��R-ة��<ci����M�j�?�%��� P��j�d�OA�'��>����v��xn�̷�Z!',<zd���/WQ1C�_����w.~�p���ς��H���u ���=^�Z�{c���]��W���>��=+S�Mex�\�izF�,@+\�K9�F�#�z��W}uu�g���M ���<�";�b)���3�^�X.6��!-�j:^�g ��xL%L+2��e�s�8���m���T�nO���@�{6K�$��߁R�^k�{u[ nг��1��� �l�n�Q�X|-en$�u��*���Eʸ=�ª����u,��ٚ�����u��������=2�O@ �x��������- ؈�^m�������w�B-D�]i�v�.H�� ^#�K��<��b�k�1��_1I��NՄl���� ���1�Ҙ�)��F-#����H����r����9e<|�/��]���K�t����"/ *����c���N!���I�P���U����c������ium0>�>��{X�d���ͦ�y�����8GS���Lx��)%䍩>��\�!Kup%�U��"��Ǡ���D���"�X�C�Y�E�i��$�3��SIJ]�*t��_ٹ25����NF9 �î�5�W�Kj-�K$����Q�C��+�s��z�x�弙��;X/���#��L]����un��# q���������u�7!#�d�c�$��^�^x��K�ja��}V�J�.�b[bа=��w��qT�YS�R�\7�M�b;{�2�JX��$�GV `dP����֙��5��ilu5 Tɞ�������L���ޞ-;�S�c-ݵţ.����~S���ȭ)�s%��,�+���ʴ���\���� J謴뻫t[�%�0-�RҸ�L��^}�vFU��d���-�W��?t��$.2x��V��wwGκ�nRC�-����ɩ[U�4���t��{�/�K(�U���Fx�ޒ���<�柳����O�!�y��jY�����:�d�R~��2��e`Y|h��⫇��wH�v��v� � @>��]~���?���957��Z��a�t���l�\:���} ���z~�j.a�J dO��§!@��aP�ݜ�Kc��>?�0ڷ�.mī� ��/��s�*���?A,�M@(���Ӽ�[�߽$�ٚl�4YX�`n���V��Gs&s�������Q�^��ߏ�TF�7�F g��Y���X�ů����cM�.�,|+Z��G�y�Q_qN�!�Nv��?©�ڛ��\4O��J��@�ZV}��>C���Y�@�w�5�`^YZ_�}���^�������E���V���K�.C�ȲE�����k���%��w@�N��*G8�@aVb���í|�lfY$�����d���Rrkq��5����{%����h��� ��t�=�:���zw��O���P�Ʒa��0Kk:ɏ��ƿ(�=��~����{�N����f����Q�k��Ġ��^�w:~�� ���l,�T��K�)DZ ǟ��d�������?P@ ��NF9�zu��~�����w�`�o�|��F�I� 跖ǘ���ū���D�F�o�h���e:�9�}�=���ǚv������ c�"fP\�s�9��� �|�1Z:&��s��� �i=5)�x��>�n������Z��l��C�ݑ�����P�� �l���k������Z��q���Ҡ�d�o��:��#`��y��=��'�/Y"),Ѵ�3��� /��^�[�:�Y��/��WΊ��I��±�ګ�U��s���j�f��|I�^��u�gXuPͼ�œ�C�_�1�]7��_��i���T�n,n� �a�i8&Gr�n�}��|M����y4�R�9d��W1�nz�ف�G�O���}M����h۽�p��� a�����s�4�&���Z���H&�ѯc�͂�X �������H�J���~�5;�#�6�~���^\�GZ��*�G�Ӂ�7k�tO��0���;/\xC@ya�y!Ԗ��� ,��F/@ݎ���� _]k����"�ij/���1<&n���v�f�RQZ�덯j�c��Y�lU�(��TA�s�S���?xZx#U8"�}@�ƪ���kQ��̘�i2�R1� ��"��+��Gub��D���OO@8>���St�v�M��1���0�4�#���N=+W�Y�bq�1��t���]��U�ǧl ���42�/d�{p�ƕ�s&��ĚU� ���Y8����a�?vOQϧ��/��;�����Pk�d$7�$Ѱ��+s�Z��n<�kH��(�`����iI �2�`��p}k�մ������v�U�y+�'T�DԴ�;�F�?I�J���&E�Z�C�7����C�Ku��t����FA8�D�c>���|4MK���Qw}-�[�!�L�1=П|t��A/�`������4��O^�O^u?ц�i�}1����be�F�#o,}��j��]�G���ش�.��B�y�`�;>dn[�9$1W�-�� ��h�,I��_2I"���H+�q��6/ϭ�:{k{��i/-fd vA������ �Etzw��i4~5�m���s%��;B�GR�J�!� О�]�s[�c���%��8��r�K���q��r��Je�����a^���6���,���A�i��l�T��z�[צ�+� u�.5������Ӵn�B����$��JQlZa*FvH�r1��*���|��O@sɮ���� �Rnmb�2Iq�Z�u=>�HceA����j���X�a���PI!w��v�M�ȳ��B���5<vqC!v-�A����l$I!o-���a�Nkf�K�ԯ,-�mK۰ţ?*�� �rs� c�%���|L���n��+��e{p��v�ɛ������,�Y>���5��z��ٷ�^�go��CU���)>��of�@����G�-�/�- �N�g�Q��ɦL��s�����TjzO���g�K��4ϓL�-�59��@���^��?����u�U�t�n�j'@���2U��p�U���֧�i���2���D��x�fI��{��<[�/�ұDž"����K�?��_z��e�5�Q-��YUBg��=�ӮO&�o�g�[?��[ZA đ�]�@��d�D�$ښO��G��W?u������V2PI��]5߅�8��?�$�:j@��ͥ��GVeIK=G���.�J�jl�L�ݷ��U �5��^9�+�iF��"��4�CG�R5g?��6�r�,��Y�`v+��K����3[�;�-�����EH�����Fpv��VM��<Es;�����&d����gꚬ��� CQ��9�������5 �Vfx�H� ����gz�S}x>��o��-��A��E|�t�<��h��c���q�O����7�"� ��f����kq��~���&�L�����A�k�~ζv�\w�����,�����居^{���m�Ld�)�X'ߜ�V�q�䓟q_W�KD���D�+��m��Ѫ�9�gq\g��������=:X��Wg'����4���i�zt�(@��@�B�8s��ǰ��\��|�� i�7�����n$��D��@'�����l�YB�ך���Q[� �n]��+���ח�H��S֣��ԦҴ���ifb|���l��6��#o>¸�Zҗ���F ;/����~�xt�sU��n�IԌ��Cu7��j��^ߵμ���"s���� |�r =k��Z��_�3�2����WwP0��'Ns�T��jRiP̞a���c��`�<�FqӵzT�TkvqT��Gy�x���V=�ց��Y��J1B|]ۗP=�G�^��.�J��!���cF�5Ox��u-J��uQ$�����rY_�.U��_&Z�n��噎U\�C�w������x���y|=�^Y�����L��VH�(���J�{�y����$���=���;]_���αg��hl&�P�ʘ&?,��� �����~�<5�5�����WI��Llݲ����dW��'�]J�X xwZ]�V�c�N�O7H������!�K���:�J�i�kVv7J��d���z��F3��>���%%sD�R�Y#- �{I�w�0Ml��7 ۈ�z�zoƽ?��:�[�鋦�>W/�zn�l�� �J��t=FY��gY�!>��IGvB�z!��Ę� �N��sێ�J���p��Wj���?\���6X��9v�[�NI(U�s�_·�o��q#�ʶ�9k�������U��]�ƕF��o���i�����X��n`�˔�3�����ޗ���#T֯ẏFӴY���B1�>ygaB��G�a�+�p��lV� �" �7R2�c���t~����<�ڷ�"���w!�r�e���:ਗ਼�N�W;i��mY���@��$K�{�Y��R��2�� �`{s^O��_Ao��r�fV&��*`�##8���i7�I�-�?�i�[^����q���ц����@�� ����ݓ�6��o1�L�gÃ���qY�7mۓ�)���|���%ن��(�\�g�>�Z�:=�֤G| ���{�^�������ٴ��,�����r�x6����{Ɵ��$�P�=��p����d������쮦��>-��S�kT�$����ZK�q>� "�� 18c������-a�����Țs#p3����ɬ�i�V��Ei���md; �X��V�G�5px�B�|Wq�jr�iږ�� 婋8��-���]�d��s8��H�{���6���{#,�2^?�3�'�=�*�C�}�[Z��W(^�<��I%�{�+��5km5�+�����Y��fV�N����d����K�izh����3s"\]ܲ.IEW���{�������;o������v~8�.��M���,��f����\{��oi��E�,c�}� #������U�zωe��WMP[C!<+�q*�@�~��0��5�2�&e�.V��?Rs������>���_�<�����/0�%��"?\�*ʔ�#�s+���ܭ�<{�?� ��5�m��vX���^�gH��9/�����"yy�����C�C<Fo�_���Ձ�qPɤ|V*�G���+cn��A�ω$�t�e��\>"��}���>��U�.�W��0ip���l��G,���KE�nw��ӃT�X�ϫ��k]=�>����Pi1H�;eBU�o>A�A�hm��������/��Pn�+̾��P����/�-tmj��ʒ����J���`��:��ͷ���a������kK�,u�'˕0�$��,88���b��{�~x~[Cu�����PL��Ɍ�,W���SO��U���h�_�a��ԒH-o ��h��wD����N8��Ҽ/� Bj_�m^�U�{Y-����,bP���9\�"��#y�W��\��x�X�����_m��v_���~��)���w���=j�W�O�����/&�>�Bd�\��>%��L��D�z�>f������|�ܤ.q�$�N+�������_jau7��:���b���2�"���Z��R�D� Ҭ_1���t��>��nax���(��t���G�ks)���4����7��}rr8�5��������淀"�[�3����c�ˀG95���}� �j\�e�yA��qT�;�H�Z�v���pHT�г���j��\�Y�ge��l�� e�Y(��l� l���P+khA�&/�O�X�ذ}�Ğ!Kk��j�-n�IH������X|�NG�ⰵ�뉬��[Z���V�M�(�1�!������W`��Z��<�7�C2�G��e���e��8��F{��)��ng��]"��.�.��ʂGSۦz�$����qg�8�����~]�c�I�����k�QX�����u IY�5�|��dg�������И Ю��/,�mu+u���{����V��5[8DQ�:�����8m�&>Xa�<du�g�ż�� ��[[ڼ��"9��2�����A֣։���������2g�u(�,������N8�@���z���-ͽΟ�e#��[ݹ�5�#s��? =��[k=fYm%u���F29��c�x�N��j��젳��h�E��q:[��`[��0�pzzi���t�מ���Q�b,��?�dm* � ��Qq��o �xY`8�#�RD��)��A9����e���'Q�G�u���/��Я��s�O�?N��=���m}"j��]&X#�`��9#��K�z�+[��{�Wɺ�t��ʹ ,����}�\�8��\���Ju{y���ћ�'_����x��xcĞ�ֱ�?�n<7�����J���g�$��*0y�Z]�kډ���H�l�2_B�&I��������E(���DV~&�Al K+�,{IB��I ��=�5��o�9��4����He/-��>e�@�b}Z����_l����AȚ���X��2�q�s�1T<Iq-����v��Mi�{������|�~B����˪j���mWB�-�Cu�w�{�$���#h�R[#�`.u$�</q�Vz=��I'�+h�<�ǻ`0:�үE�ؠ�3kSK�YI�M�8v�K�Z�4+k���Ю_k��#\A>]����rOlս*_Y�.#��̓L�F��s*��DY �ʌ���[մ�]͞���-���Z}�sͅ��A8�*�2���c�k21�/1���E �����`���ฯ��.�um�d��4����]��Ō�9鞵���e��&�-�G7�ViL��\Qp��7.�|���OG�ܹX_F��w����'�{t��"n��H�k�Was��n�x \c�`��Zm#F��#���6��������X�����H�&��5=> ��,$��09V�I��ҁ5[��i�$� ��C�nR@��%X�����;V^�ss?�5��]Ӈ�Yc͏��ltO��Z7Z����b��R�dŧ�o" cS�̓�q�;t���FѢ���K���q<A�ٰr0s��i�I&��k��myISmcx��_P�y9�MCmy�Y�y0 W@���z�~�ps��6���K��-���;�:�p��o�H�\��Gu�:��Y��g��"�;K��|2��5��#;�I�8<{Q�;�ψ�!�[3ꖐij�/�jvR���L1 ��W^�H4�C�ZO�KnmRB�W=22I�=q���NӅ��x����y�`c���#ۥg�=���xv��S�<���R����h�f�3�-��wkZ�z���9-�,I�� �������-d���,�=2�g�[�f+�F����zT����~fn"?_���rj�Ճ�#�,�"(�[f9?('!���<��{�x,o��l���-"�R�2��*�PN3�p�o� �lEƯf�۲nK�0��=�c���?3�Κ�X������V���]��(3��� 5^k��;���w��[����(X������� )�2o�:��{y�麶�ko$�-�9�3�#����X�^��V�X�u&���m^�;�����ie.��,3��֖��_ "����Ѯ-�2Of�o�d� u�2;�Y��b������Y�;�ݠEYbC��b�g?�O�7�`�8������y1;lb �Wn_q9#���]�� �N���֮g�t�v�f��P�_�z��\����;��畉�8�{�;j[-�7L�埇u+�>V��,$��<���ؽ{����N�j������_*^Zi ��𗍥Զ�!#AO���|��y=��$��a�,X��hu��6s����?e�_i����y$w�l���o*葀C���#*8 �$�u�o��R�5��Q�:�'�F/}��OӮl,� $�۽�E'��Os�4��ګǺ�����]�0�:*�8�\��ׅq���դ�c@;�2O�\�Ƣ�ǹG�Jދq��,�ƪ�d�HC�X,� �x[]���-tå�ݱ�x�d�G'?)�9�TW��ǐ��ɿf�RĶq����ǣ�,�_��J�U�T"RA�9��O�Lm����-!Y�g�%��^�������cGӠ��y��X��� bߥy���h,䜐��R���8�犫��j�D��z���� �e�9}��GfM�C�o�߲O��닫�x��Zit��e2��w��M��������r�-�2�῍�u���[h��5LJ�� �����@��&���/Eh_������i,�eP���v׳�!���s���SŞ����}*�S���qʻ6�@c�'#�Z�FK����]�0�k�R���� 8�k����@�3ផ��a�7�5Wi�e�҅gb4��#L�I�����χ,����?D�J�2m� ��n�yS)����%�O5�~����(����oS�Z�[{Xt�{i��r��U��嚉o�A]y��6�����T��u�uX}��h���F�K�I曀G��<|�*���l�W2�+�7��f�����E+���qH'�x���� ���U���w����� �zr�y2�(R�[pF9�yW����{�52e��܉"�lG�����y$y��Vv����ek%���.`��ƕ����8��ϭG�o���j(.�Ј+��I�|�}��V���%��Y ��}�1�ާ[��c�o8�c+FW>�(�F>��|=��;q6��K��KG�M��srg�|0^z�Sߚ�t-/��Ua6��ߏ x��WJ��9����2<���u��?��1�B�]��w� ѢA����m��5x�%��d���y�-gh��;�`AF>� ��EG]��9o�߲�Ž!����MZ���q�N��P<��Яsɯ����"��E�Ol�y#*��#��^�����������x�M��(�o%��Z�Q����6��y3�]���\x�:k wJ6�H ��4d�L� ��~��/1�4|us�)�l��Q�w�F3P��u�HĖ�!a��lV���:����A��:E� �e��#��9+:���t�K=sO�����Q6s���)K�%$ݑቩx�+��v��D*�{���9Qޮ�S�Wm����x�be�Sl���^3��>'�:���m���8n|õ>e'�q�֮�,��`�Lgo�=�J-=PI[FzV�q)����ZF~I�R��E$;,k�wq��[��g�!d�Z ����A���p�L:��}��O@8�k���iJ���oa�)�xK�W�\��3oF$�\���;o��>��~ Ũ6�m�b�7q���9!�u�����~�ѿ�A��,<C����:�'�Y-�F R2@��?|���[e��R�,������ֶU�KY#,���7��d� ��B�}��n��{j���~~�6/s�kZ|����SlX��[�g�^I��~�9fn�����H����q8�s�x����z���Э����\�!W`�m��p�GZ�ud�홇��:���v:g���Q��R��W>����O�=����K�Վ���oR���=C<�n}���|����=q�4�a��2��|����2;��kS��ռ���3��s��OS��j��\�L���ܐ���g�eR�B�]DƤ���B����G�t�^�c�{�5a�ede!Xv��h�����VY7:��p�8�q��5�����(cRv�{gVNo��P�]�H�[[�$v��~�S^��o������kh�d�q��|�Kz8��U�]�A�j;Kf1y6~l����¯�]��?�k�j�w�4�u��~�[�����bw��T��\u��)�EjtS��j��<K����4�&��Z��}�h�s���=W�~�x��W�<��1�qk!'�$�A�+�x�S�Ӣ��/�d�fQ�-ӣ�q�!����p>xw�F�ws�|?�4�lSXұgs#z����H�����h����g���yV�Ҡf�(u{����ӾК�K-��Zb1#S.�}1�ֽ��^�?��~'xet�CM���NkFt"�QF6��F$������&�w�^��-��`��Mc���,�AI�7x#l�WN �����W��f�NК�,��-�%A2� o-���O<k��Ӡ�{]>�K�u8[��?�R7c>�Ump���Ŷ��5���c�{F�2w��*G �~��b�Mr���o��R@��A��s�����ZXɖH|��s�31��Җ+��@!�Nyf�+BM"�K��8Z8�y�:$s8�$30�*;k[�Oٖ��̐��w��������L�Qr-�X[j��O3^FB`8��y��&��7j�|0ͭ�@�n�T,��jv۱��[���W�[ <�R�фѶ�n�-�����V��.���D����#��ڳ|�)X�;Q������O��7�ώ��'���67�Uw���Ӹ��l����F�V��;g�Ť^��4�^&��7B+��:��_%�9�8'��@��ݜdy=�B��/�[=IZ�&�"��d�cУq�:W�,�;�M�~�|3��o ]�ZΫ��� �Aq8l�M.�L�?�'�<9i� ��F�{u�K5�����p7~���@���ŏxj t=ƺ�v1eZ�i7��0J����EV����k�O>x��� �^}�)�+))\�s�������+HӬg�K+�<�d��f����<q���W�Ij�,Ө�B�?�ܷ�;~���_���Z^�wiQ�^E��HEf�{�������x�kk�e��c �D���s�We.US���ֹ�V2T���M6�C{��Q���-��md'|z.��u_Y} RO�[��L��uh�1��,���z�A��09��Zv1@<�)�FB<���v8$r�ܵ�\=W햑�R/1�R�`s��ڴu��@�ƣ�r�w'��fl�r��",��n�$'��<דV����A�Vv!�O@��G3��V���麣�;���f�������<3�fn��]^(�Iw��E��:V�i���c���=��|�o��+��l��p;W�xo�4�Ҿ#i>����ĩr�N���λE� 9#��ݨ�ƛ\J�<�F�Ԭ���kZ��x+�aHF+��wt��k��e���w��Ͼ%�8Q����6���{I�_�xn�U��jzm��}��þ Q#�(T�k���:��5��� CI�6S�ZٝF�����y�{םV�2�s�Bܶ�D�Nj�x����Z�ir�o��xJɐ��Iw��N����7 �i�c��V~���,Y��H�2*�\�����r�<?i�x�-�K���KȢY np��J��>�����|;�My�xf+��'��_}�A+q$���f,1�q�1�+j)��{�3Mo�7�n-���F#���"O�F�;X��{�ב�k�j�WBm�]��m�Ge�P��JYԐ:��lW��]��nH��SKB�[r�T^W?"�,6�$g��|�Ok6Z~���^�l���ԯ��6V$La�r������iE���rjmk�>��V�^���~f�̳�us���J�&���=+����2O2���Ȍ(�`t��]�Ik+������tHQ���?�n�z��oj�]D��w:���Ͷ���}5����DH�p�)��ך�akjpN��O M{�[oiKnF�g�A"� �X� ���O���+A�M2��e�����B2~X��<�z+�Ѵ�5[����I>�s��U;����֓,�$S�ك��t:��w��4��fUS�wg�z�Gբ����Hج��fIt +�3ڽsS���Rmz�I{�[h�ɨ�Ϋ���A������_���W��6M�&��"���v�6lc(q�q�`v��_Q�g���?����6�� \�f�����/����]�0��l��$�q��'W��Ǵ����nk#[�o<'������x���l�[\k�x�,��� ���I.RU*�30;���8��ݤ��k�Jhm�9�,$-ݤ��=�&�eurga��²��Q#-�~}k:�F�bDFV���:Fԭ����sT�)��F,�G�?�}�0Y$c���7�ȹ���%���u��\0���VdFg2*?��!�F��l����WY��n���ڬ�����5�>�n.�0/%A���ۊ�Q�V��U�K�-\�lӳ��(,~��3�H�Y�,� ��om� �ᔌ{��:�}SP{!`ڕԖq�eHV�÷WN穭���3�>���Qpq#�@�?��#h��_F�&��,,�n|r�il�--�>^�le� l>}�jx��w�i�Ƶ�5�"(c;Go�w�ہ^�����y7�;��Q�C���&� �!*\��~k�t?xk@�F������A�QH�=x�P^ϡD~����d��z�ߢ:�Fõ�zn�sai����ehH��4Q�I�c��ZMk��!�����T|�7*�~��:�x�ڀ}2Gkf!H�g�߆֪�j6M��(�y#9�-�R�ﷰ�5`�>#� Gt"�oe�"���x_�A�#���8�ZȚyu 2KK�M7Q�LI�ܼR $tN a��Z'�t}~+�t;n"��o8 rs�~�Np85���M�-������R+h�F�����i����y�]2=�+&������n�éǯq�4[�m6�\��G��R ��n�2�r0�����c�Ҳ����e��x/�Jo��X���\2̹��3ߓ]F�����;v��m*w���A�e����ь�ҋl��E&� ���]���ÇqvB�@�~l�����,���%�I{�BKi~��tʁ���t�p��z n2���K�?�4�,��kk�X�����N)����}$�֗�\H�n'ԙ>f�pr#PX�=8���Hfo�uMI�Ye���g�E� I��������>�$dg)�v���^��]v�X�����R���&N �O@q��%��s�겾��C�F���}�r�%vg�:1ǽV�o ���Wz����9[d �}̼mt�p2s�Q�ͥ���O]�Ԣ���t�ѕR BN82 �ߑb-"�^��k8�t=fC�� �28����c$�k?W���N7���t�-OG�5�d�y�w>��t�x�ki~���/�v���d"g��:���J�kZ�G�-J� U<I ��=y��wb4xt�.�)��@�G��du@�����s�T�tmHE�io4;��k��ȭ$ .�Ɂ�p �@��-�u�i!V� v��C|�(�w�O^��b"��,,b���:^�,�*��c }� ®;d�ҭiWw��:}��F�mp�h�.%�+m8�z�g�����s}��O�X]2~�{��`�=I�W�!y�&��a�������>axR�L����A���*_[Xhw�a�ϯX��yd��H{�rNv�ӎǃL� J���s\�B w�����'��}{ի�N=Nk�B��dm 2U�@���v8�����.�R���'T��b8ЉCcf�#������l;�xN�k];TD�B��C���2��(��8�Xs^���m��>$����mw2*`�g=Fy�Q�׳�f CE�����6�K�؇��,���ҝa$��e�������,���,��{���'P+��wm>�k{�jZ&�;�{hg�]���ʪ�Y������ >Im��~�/Rh��*-�9%IR�x`�=6�@�ᶟ�~!�0 �\W� ��nm�I��V\�VvW�ke��W�#o��kR1�H���ǩՀ��'��`ږ�2jztҏ.��F����c컔�[��twi��#�Ѥ�����0���۷�)<"��mGM{��?j�u A\�<*�p�}kKTּ5�j��5՝�u!m^2�r�21�g=sHh.��?�۵�VV��.E�x9���}+7H���f�R�$�-�m�)���9��Q��J�uV���/�s#�G.-��w��8�4 R��9l�����Wo&+F��'i��*�J5 ���N�g�3�IK*��:{ߴ�Ț]���4���Mԟe��Qܠ`^�G����V>�G�'�=�Z���D�f�,i�3{z �s�(��c�݄����{��ۢec>�:(�i�>�3G}v������ȁ�$��O�c�|A�i�ҚU�� ��Ј1��-�����4�\��J�Vv��Z��G�8 =�ϥL��oG����D�,���$��:�#��k����$�5meD���J�0ڗ��|�z|Ű;�^���~��[(Eݥ���2�*4���"��o�'w^���s�M��Y��k�?� 'Ȯͻi`��cMqt]kR����U��l-��oq�y���s�8\ē]����!Z��-J(�ry�����Ó��^��ϥ�7�z��6�Q��;��YN�D�?y�I@�Nj��o� J��)��+`�\s-��ʐ���2H��@#`i�v6l������/o���ۀ��ĺu��۩o�l^A���G��C�x���Əm}tV��|@'�����$���j��;˗��8hl~-�s��x��O�In%`ǘ������|@��$�����-.���|��L��Ӄ�"���j}��|C����+�=��go��V����f�P����zzt?=s��a�=Y�}���a��K[}~)�y��I�����ǥoi��6�F�l@mFOC����dd����F9Mdž=H�_SE�O�/ė�f�X�ixk�T\�w�����˧�?ᆧ}j�=��2)����J�n;+�|�u�Mv8k�D�]�(c���矯�W} ��%b:.��+Ӽa���ѿÉm6��}i4�����z����5�������=��"�E���+��+>�쯦��῎�X.�%�1��2�8�+>���y$�'�BY�g,�ORX�I��c�kuas�����_��~�]fS�����{\[ �����\�q���c����d���:{��b�x�.��C{���@��8��A\�\�v�-,���`��k���ȭ��o�;����,���ڗV���� ���`ԩi�[��0��e�`_��Z�<�e��f�7j�8��J�`r9�A�5�/S���X��9�����Zm^_��}0�T���H�n��� v���%�h�{xs�ي�� I�`0D�{�ܫt*>���>����n��_��iwgq!D{C�8�IC�HR��ӎ��~��x{�� �u�wQ��II��^�#\�X�ݒ6�@,��1T���6v����H�O��Ʈؼ��-��'Ϙ��X��1�=+�o�h��9�#�X[��LT�e����r:�_�~��E害-�����G�R+��#�G*O��9�vC)�$pk�<Y����f? �K��f��[���4�u�m��V��y1�}k>�J�N'C���I.���d:B�uq��Q�[�z��C�i�Vd�2[��F�����V�+]���7>D�e'��G��'����E��A��ip ��49x��O-�A�pw9�*��bz.���kvѥ�����3�ar:+I�<g�k�O xz����� A�t�`Z�]2g�v�!\�̧�l��W���wz������M<e�+�ӭ���L��4���$�Fy���n��(ݓ\�5��_��Gi h�����&X �pCuJ ����]ں>�����G����ߊz����h����8ܷi�@���} y����[�v�*��ř�m���-�m��*�A�v{��^K�gZ�5x�$����4�]�%���4��ڧ�����|q-�çh�>����e�U-M�JD>P}�O�f��t�*S���|X�}��+O�]߈!��g��}�.���<�*�'�|�O��/%�kn�z*�;ᧂ|G�?ⅆ���l��PO:���ȉ} Ǯ+�o|!�I��D��{V�,\�څ�h�G_�s�P�Z�>dݑ�_� M&�-����q�)Qq�:� �q�r8 꿳m��c�V�q��wp�ݱ�>V���W���|[���'h��o�~����p>�������� ���e�-�p����Kt$dŁ\�u\Qq�ާϾ,� �{×��!�Kh�Ķї�1���/�|9���u� �}�c,��pz����������l�:T����\�'=��?3]5���Zr����?XI"�K�Cp���&��%�����s-�?���/5�N�Hך��e��4�nb}�#{>X�*s����_�< w� �4�7L�ա"-֗RC����1�m=y������^��^��"Vɚ}49�*�k��[���7��w� �M���H�膰�[�/S#RԮ��4��R�-OB�@-#HW�|0�>�>�on�Y�����HU�FT쌱� ��=k�M_��ɾݮ��[����<?�x�E�U�nWv�rjv:|�3]��."ڸ���L^b�&�得gF�ӽ���?��I�]]��;M�r֚�q��������/��ڀ�u{i�V�t���K`G־����U��vI��H-�3�]�K�VT���S�6�n�N{��M�o�S��[m[�|9:�Ɠ39�9�[�v�U�; ��j��8�8˽�~����t���M[�>!�.���>� �G�I��l1���1����G,e�����\}���ʛa1$Y3�pw�9�2q�=+ꏉ����8����4MR��I����l���x����czֲxn�W ��+$��n��8��m<�ӵU�i��իOތo��1��=$�q�W� ��w�%��I��X����V�8�Y@�5�h��m���TW0[X�r�^o�rd�!%�1,�'8k��o�<��ˢ�6�dU�9�����?) �]w���x4��.�?|�O�$�bIv����g�aW�rmT_z:)�뤓���{�-u�� 2����F15�H���Lq��Z�|yy6�����8�/��y#�y��5��X&�A��R���e�n3����3�����]o^�uҴ�cnF�?�|�ꣁ��\�z��*�H�Q�?� ��6���n%Ǜ����l�q�9�� �/X�[Ѵk��-tMkM�"Ӧ�Y��!P��6K����J�|o�n������ ^�c���f���|%u��s]�68���@9lw#��4����j����Q�NY��Yػ�-R��Tլg��UWA ʺ��`ÃǽGk-���c>RH��t 3g�v�^��MJ��]������-5F�\�a�@P�W����sѥ���h��$#ξҤx�HA�S�<��s�t-DZ���j������gŒ��Q^�t�.H��'��{՛>�e7zT7X�����9]�@ϥ{V��?�����Z;�V�0��N���'*=sN��[���f���iQ���,YG`��h���ing���]?�4��o=��Ьc�0�W��NJ3ml�q���5������}� "�#�tv�����n� 8�F3���O��������X[�;�Q# ��^2�]�i�O�O��WVE�8cB:�rG�Y<���m�_�k�-4_?���[����o�NO���{+_!Ϋ=�٭��˵�*�u���[�P�����V�$���&�ӯ?�q�|C�k[`|�O��7g��:���<�L+կ>XG�=���0�s�>iv_�+i�~��m@���د�|��*�)<�����]���NU};�6��ȖV��py `3�S~|�Njn4[<ni����$D���� �� x#^�e��d��<S�*��j��"#��{X��!��WZ����T��k�&T#NI����T��� �/����w�ߊ��S����ɹ�d3l#=c�A�z/��iml�~��[jM �f���ҩ������u�_|}Ѵ����tmcTX����AtTy�\NkO���7�|8�d�S_j3��Ӯw�%�?(�p��<o?<]J�����c���U/N��6�[���k=Y����.�s�,��}��P�"��y~����� �w�)����L˸���L�#$c�� ����Z���MY�m�|��1��s�pkv��:]�*�f�qc$�S�V�'L�)g8�2�E̿���C��)�hF�������˛�>{�����i��������sL�@�)M��T�M{��� ��]u{ >�8���KlI��==�]> �?VU{+�4Ր���$0$��n�\������̞M^;~:;�uu W�`�$\�,A��\q�U�.�wd��q��m��w�Ҹ� �c^ɬ~��R���}oC�*�m����3|3�{��Eɾ���U���1�MtS�pU����C e��}���_�f� Z�[�u2��[i8>��<�Դ{1��-���$�ȉ4l�H�� �3��p��}�9#H��.��J,�#���ٮ�������:$V�j��͟�/�r���뽤��2}k:��J*�uF�l=HO�n�I�����4{8���kQ�o���,6q�b�6G�u� ����N{X|'��RI�/& ���,A ������<'$�{,Z�"O5�4�X��S���Ev:G��tk[xl����r�=�er:�˷���O�y�Bڌ����a�M^m|��.|G�kͧx;Ph�'k\�G��3r8�+�<W��ź��m��?31ב��`�H�>�S�'��Ģ�it�*l�������֮]|]�(�W{�%m���qٰ�H!X�@�G85�G���e����7����7Mk�_X��-��r`<� �� ��^X4�,�S 휆{�#����_s[ߴ ���S~��~2�TH��:m�b��8L|�p}���O�oSs�yG��l���=+��ukR�[��Zߓ<<l�Fv�=;��e{����X�Ң�[�X�����`d��5�n�<�#��w���O�]֭��g h3�2C$��הR�]��>x��6W^�L�~��)����,r�!Y%U+���^����*�YM��i�,x��V��Ŭ�-��������;[��t��#=>|�k��m�#�4m>�?�,�SE3�7]�s����?�J���ힵ�3��|o��TZ�X����L�]��ќ�FI<+��M��]�:E�el]^it�`*�>�Z9�#�'�ڷ�{� Y�wĴ���� ���24��°c�D1�2�0v�w���_�q�Ǩ�{�hPOu$F9�.��@��W<���mz��mR�V���+jVS�"%�?�$��[�'5�"�ƒ]�����$;\YH �����*���R����/_k�5�~a9v �й�:7��m�Zix�d�Vx� d�2#~l`���:�Ɇ�Z�%�G�$��D_]Ϊ;�ϭu_>��f��w5��`�i�o$�(��n~��.�&xk��&�~�$�nn�Ҝʱ��3����{��OٳOӣ��|e{o�];����!\rC�e,F;`}kߥ�ż&���(eV8�AI�Rq�I�5WT��4�������p@1� �n\ �*��SP@�N�U� �<7� 7L��y'N��+q��h$��g<U�Ԣ�b� ��ԯލ%ߒ}����ǗU��t���(sc�,�Q(\�n0=�>���5D��;�� � �B��"�2������ԑ�I������;+���q)������ *��9?�*�Zm�Q�Q�_ýs�F��[��Z�;�1\ۿ���n@�N9<pz�g���ݧ����Zjpǝ�^�$�g������{��2h�Kvt>*��[�f�X��d��=��N��k&����<1���B�ns�ӓ����|s�NE��E�22,9U|6ߖF��s[����X4QAyo8d!�~G�Z��[�SQ������FM[M���7�{��t����5�=��\��d�7r�S�Y����a��+O\�dK��r�|�o�Y��o��c�aVX��2�:�����\3�G$�OQ��*.$���"4��c��U2Ecys�����Fz���MT�R;��ך��p��˔جvF�`��H�sWuɎ�l���uk�v��˸�Qʜ�<4����-uˋKegA�_�_5�~P�q���������̶��ڏ{�N��.!d�c�[p��H�g?�W�m4�7�m�Xx�[M@�pD��'�r0�8�͍wP�m!�]+R�-S��|�"c0���2O|U+]Z��FL�V�#,q�� �>\c<� ��h�DSl�����8A_����*Քz�ݿ�t��Y��{���`�������z�a��ii�;ۿ ��e����d��<`9��!MM#jog>�{�-��9�� \rTc�a�OLմ���P��sP�ܲ�<-4P�%��:�p*�E��UC=������ ���V�d#��O�+����?�a�.X�K]^�d��e;�0x�^�l���=>[kg����/<�#|�W���/�u�ͥ�I-���f����Ї�71N_��>�j6�{�����M6X�,�q�Н��1�qF�q��\����&��{I�\��x�#�==8��e����Ś"^[4d�9�U��(�)����5w�ȴ�Wv���1��� �'89�=�� ο��3���O�=�,S&�ʼ�NN0xaky�ӵ+{ݎ�se�D2�.q�� �Ѐ�����:��ڕ�o���N��<d��w�zp�4l+\�Ӯ..D�xg�#�Ui4�K�eq�r��q���=��h.`���u-�]��i����F�U<p���W"���P��6��Բ����i��e8r ���SX�c��������7�I�,��H#�`�|����L,�����㵻����Z��,pw4��9 1ר��{�P��4��gC�����2J���8���x��^�'�Vky�?Ӵ���$]��8<�ɫ�흗������ij2��fR��@8a�ߚY����koc���,y.m��?��B�c<���Q�����;�/[�6���q�# ���95F�/�D���Es�ݴ�'��bL� !w��=�9#�j/�&���um6=6�2�][�)���\����zPԂ�m��ӵ+��/�5���� B���#�'ۯ��X.��^x�HҚ�&�N�w W�6�!V4� n���&�c .�}�R?�@s�p8�zn�p����F��ޝ�/�-�# 9g�Z hk_��6��]J�^��9�D���'����U-CC�}�Z��&i���I���?�y7�:M��ڦ�f5و��/��G�l�m�U�8�1�/�h�sj:�ϖ�&鮮d�wcaO��K�e���."��u~H�|C�#W� �աk��ɊYŻ���q�Y�X��}v�\�����oas�Ɍ|���;��xUw4֢z�h�EƯ�q��5�JV;� �=@b3�X�,�5���h.R��k{O�"������=1�U�7�:]���Ckl�{�����H�#�{f�Ǩ[�6��dN7t�+�<����;4R�)��Q�k���ou�.�����?�s�K���̪����L���o�S��<���M3J�����ӭ湵ɷ�XC4D�|�1��rj�v�Yå�m���n#y1"��HV=�Nh]��� ծ59������eF��h��T`�xSb��8�+vh�iv���r�6�<�d; !9��m�QͧC.����㸑<��$�p��\��V������4E�ݸ�����G)�a�C�P�O��/��F���k7洶�X�� ��N@Ͻq���>���N���[u�e�{�A'�J����g������3[�J���n�!��R���JL�'#����4��-N��,3[��.!(��G#�����|�T�7����HQ�圳� X��~a�t#�ƹ�W�_�-VK�|�mE归���rP���*�����wzn���Y�":X�1���=ד�]����25��� ��fA�|�s��V.)����K�Muq���D� $�_W�����F�^>���O���em\ͬ�6M�s��HB�� �8�N��������%A~Y�dJ��c�s�>1����.���n��n��҅�W!I8���4�Kd6��}�� ���Owq5�E����[[���� �q�y���l_��A���'�!1��%��˫���!��aR�Ё�5�.��Tjך֛����A%ͬ�Wڗ�4�@�B�-��-��\��|p i� 4�pd�H� �>��+���8l~lg8*h�{�Mr��gP2�q$�U�p��i��W=��_���'�t���{�Zx�ɹ:s:Z�Q�������'�������_Ki�"�I���������VOpqiӮ-�%�`FT/�#��V��=�P@��iG�e_��~U�O�rk���&�Q�J�m-���mE�J��<qj"��}�;\dr3�WIz!�cy�x��B�>$�#;A�-����H�E�Cᔽo:� Tد�'<q�ہԓ��߈�7ks1�������H�'?{��2:���t���k8��#D�G�;�F��=��~0���9�Ɩ���s�����<'�&���qҾ���t�'���٤�O�u��.��fg�@Q�*2A��|9�;�i��h.�}N���F�Uf.[j�s�_gk�<�Z_�iW�Φ �(�T@9`ƍߩ8���� ���<o}�i�������]KI�ݓQY�I%� FCa�l(�Q�z�̟����l�����pV{yT���Gs�����6Ե-����U���4}9KG�d8��~��u�g��.��<g[��t�A�9��v����U_�ʌ��B�A���Y|>6����-���w*�ɕ#$<���C^��&��ZJ�Pf4��xۓ�$r{��N��.�����d�J}R^3�/gyF�O�'5��:&��h�Ҷ�}q�ź8���@��d䑂2�t�����9�8ܻN�8f\�O�H�y�<q��^��_�9��1ee����W�����%���np: r6�e����SФ���dP�k,nT��;�ڸ_�$~5���?F��{]>�Rկ""1o��4��#'��@o�}�h�&�ўпf�M���u��mmV�T�vzyR��+��Ŧ|9�_�G���iets��0 {���/`��鎽+���*��'o+�OmhE�u�죋��:��y����=��?�=_I��n�uɼC�h�d��#l��/���o%KlRrp�&��5cI-un��)9�����6����s�O�N���/�r� �z�!��GY�6���]ͽQZ���@#�1�vt�j3\o2y��$1@G�zWe����zM���~�����k�Yf:������*K ��y�ҹ]In�7Q��Zis��%����kF��C�H���W��mF�ImF;ۛX�B��m���5�������.���V� �orf�1m����9�9�T�m�|Qi�Ad�~�F8a�2,�@UD�I�sޓ��#L��&���!�ic��׆1���W,��8�:{ׯ|5�]*�m.�>�x�;�{;���sך��?��/.4[��1e���I��� �P�瓎�� i�5���5���hD�Vg��¡N8�:u��K}��E�y�K��$vv�x�Sr��B�\0���IbAd���*���xP�N��'��Qi h�@)8���F}Ef�K���m�LX��Lq��"�pK���`Q���|)=�1F�Dʻ/;~�<�+�E�I����-�;���7��/5� �K��+im�B��H9P���8*S�b���'��+m���O� �RKG�|,i+ ���A�#��aX�WԼ!y�K��,@��l��?�9�w��~ �|e�~#�Q��ʋmF˂ ��#�ǏUoz�ت9�=��g��p��)��>����)�)�&��k:E����m���;��ˑ���y��U�O|H����G�yeU�/�yB)�6���}��ȩ>j�.`�t�gG�j]a�V o{m>P�/.GO�ݹ�5ߍ~/��U|}��^�J��g5�Q�e�P``�}k�[����F��:`���Z��h-7����;������3��`��p��+�����f�M}� wN�PQ�������"�_=�.f��{��[����l`]W.UH\�������k�B��n%s#�r7�%��O,z�k�����νG$�6*�ׅ�iKW��H���?��{�����:"�H��c9=�\N����"�.�Oo�Āb+;Eg��I�OA^8�ߵ� ��������5�������U�8�9�B�G��F ���'=\�9k'���Mr�] c?�.nm���%hP>�C��_�5s��49�{�u8��fÈ7�$�0s^w���^��h�Mҳ� ���@����X�b��y������������Y"'�FV��H##q�N=�Z�,!Q*j��!GRPnn���t ᮉw?�$��I��Ԟ�e>�����k��}��o���ռa��L�{���y�*�����}CV��l|�]<��U�5��:1<��{�����)�ʸ��Vʓ�xɿ��ϖ�?�����|/�����[I�+ d�ɐ�c�<g��sX��kBԒmV�x�V�Jԛ�$�ɀN:{�;�E$�?�|:�����7x���4�5M5�'�.�DO�;��Pg9#*�k��B7�ϛ�����3��"�ݪ��kC���>4i�� ��)�&!����Ӑ��y��OŏGf����Է6k[˛9GЂ�ۺ�p���� ���9���q>���<�r�N���9Ջ?�z���N��Ϩ��$6v{��o�"� <��~�S�}�2������~�go=3N���]m��o���qo4���@��b�O�c^�s��<4�S��D�%����y-�`�}�e�u�=�όd�4�_���L�V��"� �Im��:�{կ����][Om�����mP���� �UxlEh�Q�j+�빝xQ�sm�_#���cS��#���ng�a�8BA��ҽ��^���>'���E���� �B��{��v�?���&���xfx�e!.4�^��P6H���9ݜw9��;��z���YxCI���O�,���7��퐶�p;��1�]X��J1�O/_#��=��z����[YF��f�F �Q�p7#A^]�-SR�?ٰ��gzH�T��!�;�N���B7ރ4�2+q%��w_��N+þ)�3�ܐ�tp�!� �Ÿ����N��5����7>�jZG���o�~�a��6�s{&�YAݍ�ˆ�=u���}úܶ�b�d��V����q�d�q'�p:d��,e���Xj^"�Ҭ�����)'�89i���}���c�k��ր��Z�U�K���E����*)���`����5�?R�Q��~ZÓF�����Ϫ�y����͠�����#i6��,9~H1���㏥p?~�1������e�� �� �?2.9,�}k�|�����`�|Q�����Y���%X�w(ifwQ0-��^#���c�[����Q[v�������P��6�q�U�/�����漇��;F;u�����Qͥ�i�go��L��h9��Kp��� ���GÚ����M���-�ҋ�@h.ZX���6�nO�yW͚���j,�8���ab� t'��XZ��/�#Ay�M8L�%����+�ޕ����BZ��?��q�Vm��:���V����C�ZG�o/l-���ߜ�*s�A������!x�M�Y�u��dQ�`�q�Ȭ�k\��:�^,�i�S"e�Wf-��rk�~|;���&�Y4MOSrm��x��V�sop.>�s�^��ӣA*�Rk}�y?Z�j��v^��j� �O����R�oo|�vy�HL�Oλχ�.�����jZ��ڄf�K6!$u=rq]&�����~ �K�����ޡ�:KI�s��r��<?5�x�C�ƥl͡�Oen�,:�M����8#��*��5J-F?$l�Κsi�_6u�m�)�%�-<Co�v��GSy�ܱi�*��1�sӥu�Ņ������m���&��3��6�]q�8ϧ�|��� IX��R�@��I�<���S��/� .K-j�O�^�F����>_�=�;�A,I�uc6Ȅ梖�N�������1��Ț�V�6Trʤ��I�*-wº$�L��w�!�����m-�B�̼�ע�W�~��<�z1|H�1��H��Ic��_�Z���RZX�[���n�.D8 >_�d�=�W%Ocy��loNU���:x�M{y���˂L��^7��:b��qq�M$xru���>|� �'�#�5��@�4��]��\�-��ݎ��"`3��c<PɵA�vG$�ߵz\U9.jN�9�Xj�������cO-���z:�J�ַA#On�rUJ�pI �Z��������E��^��G�F�(�`)ޫ��{w�2����'��Z�_���-��A�G[;UX��݉��i���V����>!�i����Lp[�9G$6�۟�rp*g_Qߙ��"�A[���x;O�<?�k������o�E���zn=k�~*�6Oy�̓3��9ٌ�q�r����}.�YImR��B���X�b0F�00y'���a���N�5+�g}���z��q��+�B�O��ww2�R�w<����.�S�#I�K�Ʋ�����5\�yWna^���+�X���ͯ�uv���/��ќ�6����5��D���O�źZ0<�����:c�i�Y�f��y6m{yy�%v�+z�N���W�O�����Օ� �3ugn�e��6M>�R�F��jԞ���k�#��o�['ڮ�>\+���=�H��lj����y1���b>Q���~��f�ZT�l��j7:i�N���P2O^�ؒF:�3�&��Й��s�>�U�\�t�H��^~����[�� ����bV34A�y ��9��:�]�~ӧL/<G��+�����7U��=�'�k>��[��k�.��X�v >��VTL�QW�In�NN��lt+�DǦ��dJ�o��L�-�(>�Y�z��\��2i��m�8-�DѲ��a���$��;�zU���W�LR� ��\�R�=����I�X���Z��H�ga��l��2��}:�� )�s>��xc^�g�s.��N�퓐���@��X�ѭ�X����^��Β�$��cn��a��:Zi$z���#�7�j�>�gs��H8�W���Ms�^��[kW �f}Rhݒ����ڹ��c ��ê�M&�]h�_%���cE,�*\|Ē9�s�����X<1�ij�$.�sdɴ�B�?($�����8=�k��\ͨh:�K�S$�e�r�Ɍ��-���G�VGӣ}cI�Q��ڎ�v��O�y�;��Кm ��g�1i�\���G��Q&��J�Ѱc�%���ӱ�5���[�&�na�R��ӟ�h<Ag�Gy��\k��6W���I'��H�:c����8�������K�nC��^A�I����ƙ�_�R�k�ymsuev~q4��=w��T���z4B���z���U�#ې=�O�P�������m���V��sku�h%��� :rzU�+� �Q�NK4��ڛ����M+�Us�<���0F��ײHt��*U&/��- 8��bsߟ�VM��~�.��xjX%�%��a+4$�r�Pl�k��o��э�a����B0�܉9g5T�&�/�4�� ��Q{�������+�l���/�4�B T:Ayi�ȇ?6#��Q�,�kO;�:6�kw��f��ތdu�Uq���J�^��:t�[��y��6L������ž՞/�ާ�jb2�8�G���X��^zB���,���E�M`�);����:�dqY��l[Q�t;�2wEO�黦�&<B1��z���vZ�����KK�:D,��Nz����Y>=�-*�oc�5K��q�i H؞11��1LV�A����Y5�7:^�!dMP�x`�\�LSAw�vڅ���Lp�����I�6\�J���H�\\i��r�z�'!���%ħdbAS�8��PxwP����Я����b+=NG��0��pNi�.� ԯ絖���mÂ֎�LȠ����'��v��",丛�1k{ۢ��f+l��?�ב��g[kx���=:}8�,������ �����;)�+? 0����RH�E&��� f�X�s�-L��K��g]o����[�)J1������Ԧ�K�C6��A�����v�k����븒08��C�Z�z=ܲ$�qaz7Gt�XF�Ł���NI�[�kI�ٮ�������7,�C�u99�H�I�G�Լ���2I�j���=������3�283�OJ�����(�:,�-��̷��O�0�>�(�9���y����B����"�)`FT���ڷtK�,�Q<�}� ,��M��`�c�c���m㴝��u����A(F0�� ����cZz<ׅe��Ŵ���#>㫞�x㠭;`[`��LeJ���'�����/���Mna����P1h@�RKl9��^1�Jڍ�b�<��meP;/j��h#!W#���-�W�]�qܥŬ��h��u�q�8����� �z�>���;�3T�a����#қe9�p;T*쩻`��s�*�ͬS�,�^)���N�S �<I���WV:~�i5��-�W=�L�t>՛�]x�N֍Ω��p6�,������yg��jҥ��}=��K5�H�ȣ�60��>r��u�}W�^�-j�r:�-�N��0�I?wnN㷧��R&�����u*��;��@R%a��Y�A�H����Dž����?UӶ� �b�����խue���-����yC�x�nX#���UC���Ʃyq��{֥�c��cs��-F�e��4�o�H���;��ʛ ��0xǚe����P��� �|Ns� �Ȯr���[�����{ ⸑-Y���` ��m�Q�sޫ�7�����������p/\��p;v����Mr�I�� �sEg�G��q�.Pz���P3�X6#U�{j"+S��θ��̪?�����$���V4mcNֵ�[\[��]�R�;3�m�s��Z���Ⱥ�Bmm����͞(叉lu[40N�F@�#��2q�2�����P�]��F����w ���w{-���e��O���t�Ox�m�x�55��zm�vwZ�3K��q*,�����v>��y6��3� <�(�2=1Q[�v+���=�|Ã��˕ �w�f�W·ͣ���� ,lq���m�5����Z|>)�R�K?��E�%��lg��U�$�B�����a�.K����|K�?��ǒ#k��1�ew�Q����Q���zKK�tՙ�'��?��ťi^0�5���H��m,�E0��+t�Y_?=�y5���~+���Ι��^�ቅ���r��t� �)�T����<� �O�F�;{���@�\3���6J�Cdyfu˟��,A�;V?��g_�� �M��&�����P�����I�\�ы)Ǫ7r)�KFDou��? �����W���x+��G ����\����� #pn��$g�]��uO�x:�������[R����M�R��q]a�� �ON���N��G,i�ۺ�]&����d�ɲ{}�Z*����FB�MB�~5j��{}� MaI�-/�E�W��+��l�߃���I�8�#������@�tz,��>�zN`�����X"��;W��O�y�[$�֩g�\1�Y>�$��G�>:v=8��t����W0����{O03ؤL����dV�~nG��� ��� �.Z�_��K�����+g��1т@��� 6V��&ϟ<9�[���;K};������-]6��N�T���� p+J��?í?���C��Bg`�]�}��ı[$�!��e�9��W]���;�8��$h�n-HO |$1��K�Ac����[��Y����[x��C�a�i��]�����k���`x)�����O�"���u��Β�����n�]=������v���,m��D��͙������I�)]�m�a���g�߇��4�nu��_ݟ2�V�ۏ�����|edR���V�ձ�s0��D��{�Z�Z�\��� �Z]����� ��)��Þ:Ծ0�P�R���n��n��@��e��u�q� ��RVg�~״�o����&��ꖺ���4�mVgӅ�ERE� �b%��!�~��0��?����]�I���2�R�&�M�7) K+�@b{קx7��߄4�mt%���>]֥5�w��C 8.�����us�߳w��kZ���b�SӢ�~�)"�ڶ�WD5��u�=�{�xcත���k�[ !��\Cf�>̪7� ?1Qך��g��?�o�/��Z��}�+�{H,��@F~ �,2�}3Z><��ŏ�>�������隄b;��1�(9d�rJ�Z��,�|:��M���ͦ�Y}��<8��۷b�\�h4�vz�~����W�G�4�W����#Y�O��ٮt����x�k0]�NP��]��Q���=i�3���rʶw�l�3"��W9U��y���>0�f�\z����*�N��ao�ہ,plم>y���߂�����ao��*Mm6�M��Bt��%H��ܥ$a���:�7 D%��^t�_�y�����d$1��J�e���<�-�>�Yk˼E�0��F�xoź=�k#��t{I�\�r��'�� ��Ú������^��R���m��k{�@����y<����Z��k�{�Zu�N�͍,eTQ�q��+�x|}h;���������%f|y���⎖��.�w~�����e`>b##�N*�?�"i�;E��fK�"]���(�(=w�zq�k��w�z_�K[S����{�Bv�8r��t�~`��\��K��W�*�U��C`��q��'Ҝkf_&T���L�4o��Z���y����H|�i.��w�.A�|��܌�/�/�7:DZv��\�������A�������^�W�<yk%�I���\�-InA*�y �+k�� ֩���Se���4�m��y����I|�^/�g�h��E���k�6XG.���#�;�^0�}��Ǻ�/��z�m�J��� �F�H�k�?g�^�c���9YZ6�E ����9������i��?���(�$�'�P|�&)�K���,9�SK 9k]���T��iN�6E����g&��I��UR�aH�@��$��'��I���kG�U�&��_�$���n�����C��ŏ��_���*)�H�|�#9D���2���g�.x����l���w<���mn�y(�9\�،��[���,�I��<D��?C4�~�xb�ׇ��~��1�~!�~��+���hN��u��u5O�x��'�����{f�>�k��F�����K��̮��n2�'n1����]/�ĝ#Q7z_��MbZM�-u��S��a[~�S%�SX���S�'I�����:��>#|3�e��r&��.-J�ۺ��Ӵd�zzf�q�������[����]Z�b���2��ޟm�I�����G%��m���U�{�,���VE�6H�i���B%�W�쮗d�Cp&d�wF͍˞���\��X�$��(���vK�ĥ�t���,�m�q�#��q]?��[%v��{dz}Err|W�m�A$ͧ�]b��"�c�>f����X|OT,f�g$��i#��-^��Rq�O=ԧi#�5�=�t�"�I�]2� ��,E�IQ�m����'�sZ�������Լ1q���U|����kx-����8y@�A�Ey>��d��-��2���xO�SKz��m�w������k S�N>�v��BP����C�7Z�'�4�/.{I����`��ڹ۫{���u :�+���x���.���\�}Flj� ��maI �A��c/�x~����]ZR�l}��#ד��qX���r�w���諀��I�z�[i��j[x�\K�"��`��=����Tw��qz.�h`Hd�R�<��<���ޮ6�ɢʶ�u��m1?��3���r�v��k:�K��5��}:ݤ-��9Y=r03�9滩�R����Lᜣ(�ľ(����AKIH�9 $a��fQ�1��ֺ�^���V<R����HY���������G�6Z|p;��i��sD��� V�H#��uC�vV�n�7J�+X<w d���<���)�h�v�" '���7��������wD�x� �����ֱ|K� �Y�D�-�!g���[�@lO9�y�*�/� լ>���ԂIe��Ƒ��C���dwҮXxoKoi�L��39���$4��!d�0������s�Z�ok'����j�i��T*0���xa��ƹ�n.�.��ต��K�0��p��I��f����H�|��Ʀ�b��V��8��+� ��:W�K���&�e��K����j �6� �d����t¤9|�g shd�jw1�jQ�e+��X�8RTBN�z����n��ĺ��s2K,�����d���J���i�j�LB��)�V�ܞkgCQEe>��v��Q�.��H��p��h�F���r��j»�Է��_Z�u-��nf�l�ٜ4r���w�W'��q�:�&�Im��E��j�e�fPH���>�kԼa�;�����"K���"�6� v��;� ���du���h�N�W&� ӌ[�k���K����<@�傀���e{gpG!�~U�C�Î �fEB�89�@���p>��I�fԲm9ޭ�}k�E�dq�]ܚYR,Z++�#b�h�s�#�{�T��s���||Ȭ���_]�d�t���0[�ڣ�NB���d-�iwPi���I�2�ٟ�U$n=��V��\�$�Zar����@~G�p����q�j;K����o�R&�6�W�G�8,��=1Z�$:n�%�ڬ�L/�o�K��� sXM���?���Y�����ϭ�x�ð�#\��P����Vh��&B+r��3x���[�OQ��N ��#bxP��'X�y�y>[m,�m����ʼ䏽��n5C4���Y$����lhz��==낦�W���c��"T��&�gԞ�i�[��uˈ��"$`�#��C~���_�7�uE�� |&��A�У�~�+��≴_���5]n�t�Y!��Nꠝ��� @�y;x���4�\��M?NѴ�Ñ�ܾՄ�:�0J����g�3�� �[�X�u�I-o��oV�g�Ț��L�]���1�~�t:�CǸ�[ľ�敡�Mq�]&->���������?�M�\��*�B�Isf�&�Q��*� �'!���d�\W��V����X_ص�4�"]�hp�09�c�E�Q�H\%V�V��c��>�k7�x������$���y�m���(0�`6�z����#Z��G�bI�g�]��)�������^�&��+����PH��un�<.���^+��.<P����Um�7պ�����JV����o���k�|�g�OP����V�s�|���DR��?� ��>�K}&�� X�-��Ũ��g�22���m-,m�:�����9�$�U/�G��5��p� ���</�_�ӂ\����9*b$ޚ#*�H����� ��1S�y�l�O�[=2Sm��22aJ�$�¯��+]���qW��O�{��?VǷ�����l-�:�υ�d`�����m��9�L����s9n��ys>�k}ous��9���� 7|z.=+��u�in��ԧ�4�-��Ha+yX��P�I9���7:��4�{��Gr��w�*1�FC3p1��׃I~�i�̲ͭx� ��pG�G�� 'q=:d��� x���I�j&MOvYn�*aE_�ܙwl���*��������t��-��]�6�e�c$�ۖ��,����1� �x�����V(�����A=��Fj-���RY.���S����P�$v?;~nJ�9�.���|e�겭���:�T=����������>�M�W&�`�65��bq��'=z�\��n�x��v�6W|��=�5���ir:I'oR9�_Ia�ٔ��氄��a!Uh�9C�3�� �`t�a��Ό�K�x/�aq�^#��Ԑ���p��=�>Ymf j��֮����IFȷ���Ԓ�ixs�z~�9��tK��4p�x�gQ�g��n�j���Ehk��F�q��V��{��F9� \�Gg�hw�[=f]#RTG�E���(,Q����8�Rx���i6�:է���� �LJp3�͌�{�U�n�Yc���/��4�%>b |�q������!6�>�W�o4������Ax#��'V%�V�wX�[�����H�\Ő@�8e��`*巇�"��P�o/<;H�y"�3�<��:�ӌU�oQ]:�[+�"�A�1�����ܰ�`�<�)�{k1�6{�(�EYSJ�2p�q�:���ҁ�/�m�[E�t��7�gӦ)n#9�F�ۀ?�/��Xi��iz�3�MG����B�IW�H�Fў�1[:����zH����I��#ay�������y�E{Τ��#�<D���a�X��zz�4_M�4�_�>[�fcwd�zr������nu}F//V�5��S�\��-�H)!T�p3ԓL��N��[$�φ�ە�Uy�ھ�zd����qZ��Z�R^X[���<�l�ʹcn�'�v㎴��|%a�ؙSP�4y�X�M*��J峵�g�A>�-����B-+T��e)���d�ڧL��f|p6�z�e�:k�ޝKU�/� ������� ��(� 8�R�iZ��+qs�i��d�{c.$�F��=:� �P�v?i:V������}J�5V�(%I��Ñ�p:�Һ��:6����^�l����/PT�1\7�-��ka}uis#{�<�|�j+ug�Fq[�֗��kq��O�_˺G����u�*��I�������oi&#g|���O~n&f�?���C�;�v�#A��:�á��g�1#����s�~e�������m�H"���Z��J�C�� �}@�呞i������;�"c��F�� 6�3��?O��5�����E�9�⌺�Q�5t,�B��A]���ͺ�YH�xgC����J|�����] ��o��C�E����<;m�jo�$�yw�p��#�=�pj��:��~5/n�٠��v�Z0�1Q�{�?QV���\�Mz������nGBW8'�V�uhK[���s���F��ߠ�~�XI�h���N�M&��[���>��Ҩ����(M:�+�/��d��b�)����=MT��Hb��<�O�,#p�q�9����ڣ�P�ծ��m쯴x��9M�Bɜ�5�s���I�;�Oou�i�ȵ��#����I+����q=�S�\U).��Kn�n���Mn��\��|��� ������z�P�tsi2��94�Z� ��eg���v�� ��ۙ����l�B�f��n� ��w ��0����|;s5��yն�q��'����r�{x�Y������|C�%�ٚ�ծ'FY�,�,�^���������5���\����J]�ݸ��ۮ��k�<:\Vv���@,��ui"�2H�s�r=��K��j��U���s�]�B������@P�W�u��5J��]=��ܲ[��mo������R3�~�=� ���\xf��H��(m�g��� 9U^9, �=��Ɠ�o<W�Aawm2�[a�Ĉ2���w�8���sj�]hd[mj�[�A��C'�����+Y.X�x��T�wg�GZ�4�=Ug���U:Η|��E,fGU(��N����zg���O4���֏*��6�=�,HeQA��<f��7��hW����7��:씁����:�\��&�P�H �<�_j失���[�CC����3������pI8� I.�=�os��Ay�CX�U����*�9QӜy� 7>��i&Ӯ�m�U�N��6���`d��U�,�#ҧ]��D$3�\K;����V<��$��RX�[�·��)&V������$1P�tnJ�Û�����y�rQ�?_P(ܛ����T�A�k1G�ZC���8�|�ylǻ�5xum7QEx�凜��q��T��q�b�[Դ��ó����V�';�*dc�a�=*�OJ�/n4I�[�*RWE>Z��px>�1j6�O���}ODռ�:���1����9O�*ƭ���{m�Mk%�z��؏$lV-�z��*�����{K������Ё�Ɗ�ؑ�`�sO���Z�b{�[K��y��ab��#�?Z^C:HD�� ��ğ*�0�v�a�:���.�4{y呾y6��qϽ`x{S�C�]-�E��^��O9�a�[=K` .4�2Y���Zs�:�;��h<(m0L�$���T�T����E=��Μ���QE&�?ZE�P�4QM���U7���-As���QSOb��?��_��u�?���\��ЅV�hq��t_�|%������5t���d���'�D�T-���������c��L3�����(��������W�����%h������~B����g������y���]-��}�ײQEy���uGg��3��5����+u����Q]��a�$�['���I��}G������c�������=�ϵS[0[���j'��5��p�h����G�_��%cU����Ы���T�Z(�h�(�_$��@�}O�5A袪;=ɴ����\d��M;U�����)���(����Ǿ~�{�_���U�����$�D��w�F�+���|�Sա������?���.�i���(��n�����������Ei� �#��i���B��t�h��$����O����T>�7�?����|q��<Y� �?����������s���W/�~�����!����Ŀ_�Q��:(��8������V-���V��q���*)�{�����ۯ���_����5������Vu���������?�J��u?�3\�O�&�����TQ\��]�����$y_���!/��:�����O�����)��o�D��(j?���C��x���~��7�4�Ere? ���Y�c���?TsG��:.����A���t0�ȿu���.�+*� ��e� �;��ֿͪ ���_��Z(��^F�s���]�ΰ�������Q\��*[�i���Z�W�{?��%t^�������E������=l�7�����\ ��u�_��%�t��EwῈ������?�$�W���X��~����$���8�(����n?��Y�Ȭ���h��;S�,��m�>���Vߎ��k���i���E7�P���C�"���{��וx7�J?���7��Eka���x��D;�����VW���@�����R�h��O�����ݿ�����+�����E[���_�w�E����Ut ��i�`��E��G/�|�����~-��ǭ�����QT9ã��=���K�k'�_������� (�B_�h�Lt���ה����m��kEK����?��?�����C����|C���(���ٞ��W�F���_�����u��w��FQE5�Dzݷ�����u��,V���eT��s���8o��A����_��x��I��qo�h��_ hO �.����Ƭ?����CE��k����� Q��D�_���S{!-�0���#���\���jתj��M����KE�TC������?��<I�%?� ��3E=�G���|I�?ּ@������i��-QؙK��������2J���=s�^�*�E�����sS����F�n�]�����`���T�B�ix�I������_����:��A4QM��������x����G�@�����d�������W����B������R��?�7��W1���>�_��E������,?��_�*k��*(������ |
| URL | http://zero.webappsecurity.com/resources/img/main_carousel_3.jpg |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | Apache-Coyote/1.1 |
| Request Header - size: 288 bytes. |
GET http://zero.webappsecurity.com/resources/img/main_carousel_3.jpg HTTP/1.1
Host: zero.webappsecurity.com User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0 Pragma: no-cache Cache-Control: no-cache Referer: http://zero.webappsecurity.com |
| Request Body - size: 0 bytes. |
|
| Response Header - size: 351 bytes. |
HTTP/1.1 200 OK
Date: Mon, 14 Mar 2022 07:13:43 GMT Server: Apache-Coyote/1.1 Access-Control-Allow-Origin: * Accept-Ranges: bytes ETag: W/"101493-1358497020000" Last-Modified: Fri, 18 Jan 2013 08:17:00 GMT Cache-Control: max-age=2678400 Expires: Thu, 14 Apr 2022 07:13:44 GMT Content-Type: image/jpeg;charset=UTF-8 Content-Length: 101493 |
| Response Body - size: 101,493 bytes. |
����JFIFHH���ExifMM*V^(1f2x�i��HHPaint.NET v3.5.102013:01:16 15:53:54������(HH��XICC_PROFILEHLinomntrRGB XYZ � 1acspMSFTIEC sRGB���-HP cprtP3desc�lwtpt�bkptrXYZgXYZ,bXYZ@dmndTpdmdd��vuedL�view�$lumi�meas$tech0rTRC<gTRC<bTRC<textCopyright (c) 1998 Hewlett-Packard CompanydescsRGB IEC61966-2.1sRGB IEC61966-2.1XYZ �Q�XYZ XYZ o�8��XYZ b����XYZ $����descIEC http://www.iec.chIEC http://www.iec.chdesc.IEC 61966-2.1 Default RGB colour space - sRGB.IEC 61966-2.1 Default RGB colour space - sRGBdesc,Reference Viewing Condition in IEC61966-2.1,Reference Viewing Condition in IEC61966-2.1view��_.���\�XYZ L VPW�meas�sig CRT curv
#(-27;@EJOTY^chmrw|������������������������� %+28>ELRY`gnu|����������������&/8AKT]gqz������������!-8COZfr~���������� -;HUcq~��������� +:IXgw��������'7HYj{�������+=Oat�������2FZn������� % : O d y � � � � � � ' = T j � � � � � �"9Qi������*C\u����� & @ Z t � � � � �.Id���� %A^z���� &Ca~����1Om����&Ed����#Cc����'Ij����4Vx���&Il����Ae����@e���� Ek���*Qw���;c���*R{���Gp���@j���>i��� A l � � �!!H!u!�!�!�"'"U"�"�"�# #8#f#�#�#�$$M$|$�$�% %8%h%�%�%�&'&W&�&�&�''I'z'�'�( (?(q(�(�))8)k)�)�**5*h*�*�++6+i+�+�,,9,n,�,�--A-v-�-�..L.�.�.�/$/Z/�/�/�050l0�0�11J1�1�1�2*2c2�2�3 3F33�3�4+4e4�4�55M5�5�5�676r6�6�7$7`7�7�88P8�8�99B99�9�:6:t:�:�;-;k;�;�<'<e<�<�="=a=�=�> >`>�>�?!?a?�?�@#@d@�@�A)AjA�A�B0BrB�B�C:C}C�DDGD�D�EEUE�E�F"FgF�F�G5G{G�HHKH�H�IIcI�I�J7J}J�KKSK�K�L*LrL�MMJM�M�N%NnN�OOIO�O�P'PqP�QQPQ�Q�R1R|R�SS_S�S�TBT�T�U(UuU�VV\V�V�WDW�W�X/X}X�YYiY�ZZVZ�Z�[E[�[�\5\�\�]']x]�^^l^�__a_�``W`�`�aOa�a�bIb�b�cCc�c�d@d�d�e=e�e�f=f�f�g=g�g�h?h�h�iCi�i�jHj�j�kOk�k�lWl�mm`m�nnkn�ooxo�p+p�p�q:q�q�rKr�ss]s�ttpt�u(u�u�v>v�v�wVw�xxnx�y*y�y�zFz�{{c{�|!|�|�}A}�~~b~�#��G��� �k�͂0����W�������G����r�ׇ;����i�Ή3�����d�ʋ0�����c�ʍ1�����f�Ώ6����n�֑?����z��M��� �����_�ɖ4��� �u���L���$�����h�՛B��������d�Ҟ@��������i�ءG���&����v��V�ǥ8��������n��R�ĩ7�������u��\�ЭD���-�������u��`�ֲK�³8���%�������y��h��Y�ѹJ�º;���.���!������ �����z���p���g���_���X���Q���K���F���Aǿ�=ȼ�:ɹ�8ʷ�6˶�5̵�5͵�6ζ�7ϸ�9к�<Ѿ�?���D���I���N���U���\���d���l���v��ۀ�܊�ݖ�ޢ�)߯�6��D���S���c���s���� ����2��F���[���p������(��@���X���r������4���P���m��������8���W���w����)���K���m����C ��C ����"�� ���}!1AQa"q2���#B��R��$3br� %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz��������������������������������������������������������������������������� ���w!1AQaq"2�B���� #3R�br� $4�%�&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz��������������������������������������������������������������������������?�'j�#�:�\g`�ӥ�A�jL�b8}��R�ʎ܌��'8�l�)H\t_Ɠ?9��p~�Ұ�㑁��T�8���;Ғ?:\p>�R�aGJBr�&�g��� ���?JV�:(��[$��N<���0�@1��Pʧ�'�G��Sֲ�N2E)4ʷ6���9���F�p���#���:W��9\*Ŧ��>%��=���r����!+�9����0$�V�fT������l�xi9Ah}�-LcG#�Z�w�Fy#�l��wt�U ��q�j�����s���T��=+*[f��l�WYsn���j��H\q�PV+��N��r�95z��>x�kVtT�k:�'=�*j�ݛ)J�O~��s�Ɣ�'Q�U `>fB��RC�A��G?.�vE�[�v�Zъ]�d����X����j�#n��vK-�4�Ğ�ic�ўi]�=k)��4D����"c�O�0��I� b��:T��`-�1��H{�X(���ӲH�qZ{owQr�8���sHI' ���~�T�������E�n�b���:�Y���RFrW�Oz�����t�������Z8��k̲��?� ǿz�9�<��c=k>Y@����h� umC0�ZG��5�����~�t��F3���x��Mhk�Ny�ϥ4�z��Ȥ'������I�����s���"���<��;��UqvLv�b�}܅�U��h''���@��Yά��Ф�H�s�E;��d���P��8���1�Q���7RI��2O��b{�T.n�^�u�s\�ѕ�=+xR�Q{��ŝN���z�9���-'֛�_�H��9k�<W�U���l�9 ���YeZӳBsQG|���`�[�������^�_��L��-v�=�g��H+���z5rEL�Z���J1�aU�� c/��k��TRs�z��߃e#������YJ��jX�d�A\8>���Ͼx�s^}o���ql����z�3��VR�Tw5SL�����z��L.>c��rP\�y'��5#�/p@�sX��'`�:C��q�<s�G��8�ۯJ���r1U%�@�A�x�2��1�g-��}i˫���p}�]S2t8J�5 Xa�o,�`�;a���V�NMM�a�c����?�OO�Ў��yrc��S�7Z�o��`��k����g��V��YW�g�5�<������.*d�RF���\%�� ?xӭh[j��#ך���ѝ���:�&� Ͻs������z�n�>�*����p6U���4o$�<��Q�v��8�Z���9��Z���;�1��i�>߅9�lὩw����l�& �L�� 7 �O�OL{�ɓ�'�P4`c4Ir20~���q�@$/ ���n�2��`��$�J�XFp3��+�_�SZ£��:���%�k�:=غf�d��N�-w �N*��Nv�קO*j�q���铅/� ���`� �wq��#�X�J��)�4U�L���jc%=�Q&��$��٭�Y���۽bD��{zS���f���V:�`���]��q��5��������׀���84"�f�s�5�����O�E�df�N^��L˻]ā������e�*H>����Un :��8IǨ�V�I��z�-�i�.Hf��&�R��#h%�T�r I�����fD�s��K�{ͭ3c?) ��t�fH�+Ly<�y���rd��qް���9r�8(N1��aʖ&&I8���j��b\�u��M�N�wf��K�|�!I���ں�#[F*rk��c����=?L��[�=�t�F�������Q��s�ڰ�n ����q��՞�ա �S�l58�V��°��zq^i��̬�ǏZ鴭X8\�;W�/S�����1ysZ��W�>���t�qY�bB>n���"�9���p�� JR�ԛ=���㓎ޔ��lc���5ߦ���s�#ґ��N���;�b�y�z,�������x��zt�h$3�J�v��.�W�Rg�P#�M��<J�}��`=*~@������s�k �@އ�v ��3����'�7#��4qz�{��� �K�m�8�9�{��r )�pO_�4n���c�C�CK����i8��� ��Oʐg'�ZA�u�9�8�~(�ohR0A=(�8�r��@!F9�v��9�A9� B��9�@��#��CKߡ┢��i�E4[��S�Y�ց�������S$PG��|n_ �j�]C�8�JÒ@�=k�9�����0Ɂް5];� sۊ��;��Rn�%�>��SVg-"��hԾv�kJ�ݕ��TB;u�_f�g��otd�Z����Vt��$#��+����g�ҳ�# �9�QQ��HďO.ű��*�V@!�U��:p3��ĊRx�(��{��+�`298?�*F�:�p�����k�M��^����y�����2q�Z��㼓h-�������>�w�II̾�����u��F ���� ���Z�Qqvq���OS�O@*��\g�9������#>�$��c�?:�H�1H���ӄ�ev \sŸ`~����<�8�Ml@�r8��D��$zt�J���ތ�o�$%����z�A#�9�-~�� �Z�/�6Eys�{W�B4�@���uepK�95������}k�͢�F@�jK+�<})��)�Eb��z�v�Mj$����\ ���8���{N�Ī9�kĭ��=�[� ��{�r���-nמ��<�1�Ao~�brA�jk.,@��r�>���ڒ�An;V�����7")6�s�k3P�R��5��j���s�Ճ}��� Ny����M��lm5�2�x�l�'���5�c� Ҵc1����М���T��N�����r����k�|\f�Re�lϥ{n��d� � y��4�qx�19����]Zpg-D�9M0�H؟\�+�ѯ.`�"m̀go�ғH�&��x��㝹5-�v$���]U�)��1���4�<�^s��yeY�)����!�j3Eu�:�hڣ���r�P���؈�z�Ygh2�Et�;d]ñ�Z���I��8��F�f%�mϡ� J.V�6m���c��z�Tr�͝�:����J����$w��s�H�m���u��8[��s���H�6})�ܶ�9�����I�c(�q��?�ni6a%�H�jB��M�2��fo^�k���O$����lt����嵋m�k��b��5�JQڦ̅�)�n�~�_�5��r�;�w6�Aaɮ�.�*�tv��2F;g�s���qR� p��sE�ɟ�r}�����Y]&F�����$���h��S��ӊ�X��&�D� ��W�_��dE\�>���2G zU�I��^j}�+/wP�Gs��A�-�l[�+���;ןX�g�� *�6>��έ��'�Z3���$?:��`�k�}�p��е}�<�J�Fg(�J�g~�p9 #��~����N��������� �����C:䜞E �i'���h<�:Q�N?B:�A��J�+�+.*?�/~? �=z{Ҫ�>a�åh�t#>�\���+Pr����t�QC�g��խخޠ~UJ��h�o�o$�����ac,��%���@�\��V�G����{X<5*�i�g98�4~+�L��OJ�ҵ�.ݮ=�kɭ��\e�=s]��mI���X:0���Ӝ�=;J��� �d�q�2G���j�^a�ݐJ����7GG gޣ��A��R�����Q� �9���E <_)�gި]��nO��Z'��s��M���������\�n!FOz立�s�ν�]�m:饈�6L�]Z��vebzqYm�sGq�5����H���#]�2�R@���8\M:��9��F���0c���Mt�V�T�����3�9PK/`{V���If=}y�y<*E�! �vg��:�p��3�9��6����+��/������u�f�>a����upӼ7:ӌ֧����H�0��O���u��+��V�> ��+Vx������SW%N���v+.�Ex���� ���e\2}���uu�6۵�V��s_���,DSN��bpS��F�#?����I��_��J0G־�RWG�Ճw�N��<s��!8ϭ!�}MQ#�,ӆFq�3��/q��@�Ȫ��`2G�Ҭs�<�k�h���X�� �|ghs�g҃ӡ��`��iPsӵ�n1H�?�������899���8�px=(o�i�猜z� �<���x��v�19"�}�NFZ��ր��n����t��A������`�x�8�G^zzP���@ z��~�t��4�'>�����Hb�b)1�28��'�z�ԭpP���*�ժ�A��WO#������\8�jŦ���pg1�i��b]۴/�x����� �.�d��b�6��wz���������9Y���]E�ӿ�l�99�5��Z��|�V�=�������&�ȍ�eI��[��Ȫ&$�Ͼf�i$;�W;G��\�&�k1���{r�5 ��!�{�Xṕ������� Ƚ�����O�^�؎P <W5�[�m�s���W-<$��i̛-6���1�OJ�U���s^_�8bs�=�����P��� ��˪r�KY��=N9�EX���vw��X�<���_j�P�FN=k������R�=)s�H��NLd�s�*[�C/AӥM�� �)��֘T���Ҝ'(��h���H���z���?(Q��z��wnZ�6��0O�z�0���;�>� ��C���sK��IIv�5�叝���ֹ�SDܘ �z��,\9l(ǹ�@�\4�H�ֽ�����q�������ľ��Fk�ԯ ���z�Lh�������j�7q�jܚ8pּ~+����ը���'�-\��j'}��z���d�q�X����g�?�rwz��北s�v�{��䔗%��]�\����3���%v�D��>����iyb{�TO���{�M37�?��X�SZ�3n�QÂ��Z6����==:���(�rGC��-Fv�5�V�&�4١q{�ۑۧZ�H��FB�sT#�@�I�_ �ޙ^�Մ�F���b�c�<"��+���KB�J�����!��VS����tR�RV{額�m&�1pg�Z���d1�<���� ��rB͞稯M>�[�I�Y��c�8XB��+��{NT�!CԮ�WE�t� }�V�i��2sn*{h���#�i��q��־f�2i���\���4(����@?Z���-�����]���Q��+X֠Y6o O���b�Rk��F(������r �G5�m�(��t�Өe+�{Mtb����8�38��B%k+0�}x_n�bPlq�R�&�}8���ȸ�9�˜�����$��c�8�6����'�f�8 u�k+u�@s\��--���ʌ���+�+��p��z�ժ�@�x��.���WV]���%�4svڢ��i�9=k^�R.�+������^6-��V���<sm��#�M}4��է�{;�=����j��aI�,��2�R3B9�u��NGcָ�Qte�w��gq=����c�M*���T�I��zG5%����r6jڼcV: ZΗw��w?�oZ�����'��<���I��x�ɯ��S�r���ߍ�ǜ�;qA�a�T�r29�|���'�$���WW�6-���<с����v�J�p�穮�MH�X$E'''�3�����,pip{t��78�@㜟���)��Sߌ~�)� �{ɟ��Ow#�)7�v5�g�,`�r��#�q�"���X��{W�L��,:Vn������u�K:N�c�{�{�Kiu�x���?"�6A�=k��4��X�x�z��KV��t�ac&�z����4��^T�3N��`q��X��H��=*+��<g��}�������5T3=kwM�A`u�0�Xh������u�g��ֳ���� RG��"��ޔ��2:��H�ۧ�n�N�&^�k͜^�V�=ƒH���~�������bƌ��u8Q�W;���`Pc��j�J�8���6��ӧ��(Ք�=O�7�%�G?Z�tǷ������vմ�Az�+���3*q_E��ޑ���_Tp}���w��M�#$�'nq�{�?��Khİ��o���Oŷ݁�?:�e���W0����&�����WS��"�X~u��C43)vo�q��o ��2�Y�>�5�٦B�Q�G��\��t!�����$+��^a�껀;��o��\��^�˪^NƕhB��G�i��p>`x�h'>��5��V�$%���]f��G"�_z�/!��UҌ��c�1�S��:�9�9�z�x�*��ڶӜ�W�n��X|]:�Y�?R�����c8=A��'���^=)s������W�`%\�������ګ_�L���q��;n�3H{g8�t�CpGN��5�4�iTg�h��4�����T��c�)OL�)#��(6:zq��q�Jq�i�A��~t��zs����@1K�3��rZ0��R���NRH�>��B�:�aF�4����J�px��0����#<P�s�Fp ;��B>^���*'�T�* �z�7C�p����rL�H��Yw��F�^jʤ�߭K�C7%�P3��k3Q�B��J½��n��Z�Լ@�۷��Z���Jmu6�7\��fS���;�v#<����x����4�?RY[!����M��K٭O���xn�� E$'y#<~�E0�FMJ���Ӯk��c!�]�:\Z+�����ܑ$$("�Ϊx�zURX�y��W��S�����`0�ץq>"�g����GzW�^�ː;�k�$�����t�9��.��[�aW$E�w'�����,��J��m�g�cW��}�'9�j���}�H�64��"�aq��ZMS~r;f��3�26��"�Z0V-���(خS���A9�lT��C��Z�K��8f�S�jG$y河�+��<�g҉Wtg:�PA:<]z�Oݹs����-��;x���L�q������y�H�n����X����3�5,6I$;��H�P=}j�W��`�]�jY�D�`x�L�F1�y���3�?(q�#9��N�2�W���is���uS�N��Etg�6�*XD˞0D�q��.8����P���q`��&��fFq��b��*�q�4}�\�e44��b�⻃�Pv��ynFӁ�>՝LN#�#& )㚲�tH>���Z+q 3�i�OH8�]z�z���C�ґ��cET�nv�����6�[��Yb��͍��a�u++܉M%��5�)�$�R�jꏈ�>���2_�M�Hpy��ƺ���F�H�g��N�(�'v�1�ǪJɝ�����Ӽ֙��=sN��.$]�:��k��N\~�}|�j�i�D�#6�H�zJ��̤y|�u���(F /�Skzt-lF��5,B�+�Nǚj��Y>9#��cXW�ί�v��&5���$����~Q�3^[▽Kf��}�q����v�x�mY��8��W�f���8���q��u� ��Oj�֡���)����~������@�8�ڎ��y��:���-����5���O دS��h��r �&���\F7�&�f��(m��q_�g����E�(�G�9���.8�����sǥM��>ڸ����L'̀�`VXj[�ͳ4o��kKأ�ֽ��E�f���[9�����+-u>���5Lj�j-Pԓ=%���pF+3U�����;���ˁ�}k���s�.}+Ŕ*a�f����"`ύ�� s^}����I��5�f������Ҹ�h ſv:���_Q�g��䩱�����hs�n�k���z�(9�Ϣ�{��cw$�����9�zU�S��DqV$�Wɦ<#g�ac�O_�FLgcֹT��>��(dp:WI��T>����!�`w���7�k�ǻ�\M�\����Z9-��8�P�?�8�6�9��˕������z� jp9$z�z�$d ڝf�-.O^q�N�N�'����q� zt��� w0ʐ?Zkd�~E<Gk�d�0��'SS��0�)��n��Sf�H��?�+��p1JpW9��+�8�5&+�(�w��X�Ύ�]Wˀr9�Q\*�d3�kHJ���QTu�ڸ=N���PrQ�:t�9�mլ<��h ���x�@�ؿ�2G��1��婪3�Z��QL�+3�El[�,H@��5��Oe6�`<�����Al7:����3�� Q1]�4��B�1�V|����+����@�Ցq�W ^�O�ֹ��*�"���z�$)"� wr����˼?�O��A?J�t�P2�<t�ί��)Y��gC���Tn>� c�"��\�$�8��Y��j��3�իg���JVP���b�MŁ��!Вh�Ju�:�g�Ll�\$��?½���HOJ�5�-r�����9��;Κ�<1�e��p@�=֭i�]ZbH��Oc]���ّ8�}��'I.3��~_�{��C����4t-sj*H�Z��\�Ͼs^FӲLL@�rW������K{�r�t'���dʺ|��8��F��,�G u�kf���`ѹ�k�<#�n�S���U�L0�9�_���aj^:X�R����6����������:����9��pEj�j�@��k�����Jޝ�7�B��w=2 �p0rje!��\���$�p�սevcp�+��9���i�'��Γ��w8$�}CpR�C������PO\W�Y�N�= &vc�u(��������������x��zӗ;� h�~(^��s�9-�t�})q��� �=�*7d�t��ڀw<gօ�*E���K�r)�ׯ�B�8����`s�j�4��l��Sߎ��&Q��E,�8B��(?0��^(�M�./���TnuR}+SԕA篽sZο�+I���y�iǩ^�]���X@�o�Y7��F��w�Q[�^`9뻥p~&��go�~�J��f��*4g'd�h�|L�ϙ��[ƐF 2��Ϟ!��q0+j���W���Y�c��[���U���H���_R[�}�/�6p+n��F�\'�>,�f[m�G�z��f��K+1�9�4?��\3�V��#���w��.>#ks�E��i9ϵz�O����^�ǽx(rT���A"I��5�f6����E�J�ZhhZ�sƤ09�tVw"H���|����i��;MF\I��CĶ��#$����k��!���9�ӹ� �h�d�����j��F?���u꺀rA⦐�eq� �6aF�yf�"\Z)O �gw�q�V�a�3��U��N�����0o�*T�=�Y�h���Ƞ�c�tW1�8�5�t����Z��%��rچ����X�W1�j��o�z�K�mqlJ� �ב��B��dfܘ|���b� ��݉U$� _�0[�l-�����R�����k�D:�ZNrK��[+�AB�c��vק�t�iF�q��z>�u,�����=k}v��Vɮ'�w��@#�t){���k�%��ݐ���c�9?�3���8�l�E�{�r�i�}��X��Y�+�� ̅b��'��aA�=�Gu!�3�z�T��f���nA8�W�����}��5(ϒ@�<�ڼ��Xd�e=HS���ۖь��� ��/�̗l�b2x�j�����Íޣ��Sr�$�z7����g�s_��J�M#�NL�۽j�2)F@2py�h�4e����ٮ�ĺ*^�ʩ�b���<#4ڇB@=��}�'E��&sNU��Ӧ�Ʋ�7�/���4�jK���1�f�iZ����l���H�Aqas �bG ǰ�:kR\�Ս��dt��}�<�N�dUKo ���Pͻ9#<T�U�v�L��zֽ��Ot��q�^]Yע���q����v��q�uZN���!q�����͍[Ϡ����0>��X�uZ��l��,���%p��i�l��j�B�pJ��]����>i4Ũۛ��R8��wX��=*��5m��zמkz��M�ry��+�/�U����o�MBp\�Gn�N��q]�F�w� ^�(\Nk�<;�:�p��^�<T������㚧��'͂_%��fA���l�9��W���A$g�#�W���yy��+��fr����8��a�w��� ��SW���9�f�Z��@+���ʅr1�q_3������W�s�����OLf���NFP<������(�eT�1[�0B�>j�iY.JZ i=�o;Z����5� ���wgBY@�����4x��%@f����l͜�@ ��j�2��&��WL�J�/��ov�S�9�^��?�p�g�k�|A���9��v����f���Dr�FX{}k�<� ��Ε��*����t�M.PG=�Q��9#'jw¹c�u=�b�R�� ����L�ղ��EMn' �X�ܣ��Wo�����T���ȯgF��3p? IX�A!�"�S���5&���FS�+�D����a��![6��g����a �Ñ�1Z�Lj����bj&�h�j� ��Ҭ �N �=j���Ƿ?��d��J�Bs�\����������՜����q\ƙv�A$�݂]�g<~5��1X�bq���Fűԏ\�Τ`֖��Up��i ��c㞾�.�Bx�uڤ�~�M��}+У]KC7w;�s�sLp6㌃�� ܞ�J~�#'��t:����@�݇�>��W��5���Ut���Lc�jGl���H��q�n)NphC����Uu :)c9��*��Q��G�<�kH�G�h�;��U�^xy�ѽ�8 w�[����8�>���F}MwS�Ԧ��ɞY}�1���8�k��z���C�?Qڽ�}2���������o�;N7DN�2ўC�j���0������!�u]́��+�ִ�$���*��aqo6���׳��E;��c�c�t-JM����d�v�����- d���J贽z)�A��k��ag 6�:SM�R��#�OV��v�:�ȻY�=sW�`Wp��\r�PS�=��k�d|p9���@�E2U�)+�T ����`{�h~j2�s��z<ц=�B��d��Q�t��J�����y`#��}�:}ki�$��n9 {���,���a��WS�J�N;��_G�͓����ws��3iΤƥs��u��@�Wrb�w��v�ۮӴ����y)�q�9��5�J1�G�@���=�D��B��I��s]-��ȣ���ҵ��0e9^�t��Þ'�R���k�1�$��uB�^��K;��������5�0�J����j�̠����j�Ua����p`3,V]S�z.�W�N�m$zn�~�Fs��� ��M��q�df�K}h4*w�Z�K+�U���ٟ=[+p���\N~���Ӏ���#�|��k����z�q�n�Z���9�8�'�u�a�w�s���Ȧocߵ#K��*\�M�(��I�I5��5��O�x�'��z�Ɠe�N��F�FO8���Q��Ug�W'?:��t��駅��k=��{UI�Pw�}��S<����D�������;i��ܼ�UA� ��5lCVm�܍�����x���|�/����x-���s�S�$��W�mj�Vu�H�L�[{j$���MSM �+��9�2n��wS��]#��ِ���8�yƱaq�$$���s^��i<�3�j��I���ۣLs]�~o�d\�G��� ��jf{�m���3�)�`{��q#�Oz��uc8�ҋC3�rq���t�0��#>��{w��H%'��ױ�%�i�O������k��u�i�&�OB��9n��ֺ��?��$sH��g�+\m�c�z����rI�*�(b):uct�_m8J�>��k��Z��H.Ar3���K���1�9�_�>����������� �����W��-�Gr����82t��W��_ ��OvZ3�hϨ枠��c�Z�7.��0ܽ1ھC �ʌ��#�:eN�����=1T儆 �$�*�6F~��m�=E{������ɾy_���[�)o�Q����o#o���~��Q�ę���N��f݁h`^�J ,0��^}�](�r����F=+ۤ���ث|�����f��D�I�z��xzPM[���oS��s\�9�����m�fh���~�c@�т1�*�ո�zB�q���r��)��N���?���h��5J�.���RDKgi���Я������*��p?�N�ʄ���*A�ۃKT��F�ZXXt���'�6?h�&����|�b���X�Ū�l�A'kL<� �il���.,��M��`�8��V�l�#�t��h�it�ĘBr��k���B��>��k���צ��s�4�,M�y���-�Q�]x��Ӽ�1�I��u2��J�X( ��/��1,3dg��'/f�=���v;֏M���z����?�^+�UW��}������/&52��W��kY������`2A��j0Ta^h��g�뗓��"�q������ܗѤ��Q��w���- ��b͒]Ku�֎��izX$;F0?N+��R��N(�����Y \� �>��n� 2�c���<��)��Px�qZ3�@�x��O�_�b2c���c��A�=a�D�p�����kp��}�8�ڼ�~#�JJy���:�Yz��t(��è�f���ا4�-����=�D�c�MyV��;�- ;��� �[Ԥ�Rds��1\��o�N�ϥ~��e��F�9kUg��'��YUߜ9�UUI$:����k���M����?A^��}z��H�F�#��_Z���.�k�} e���bF�f���6�<���3�mJ9"\���5Q�w����jќj{6t��,�<8t*���D-�g�+ϞK�y�|��3Z/p���$8�zWjʝF�!JIz�����ؓRh�0�[>`�5�<C{�6q���\����Kx��B{{��\'�R���"<�>�����U���y�����:�p����_¼���E��Bx�%�=�j�ֲ�o�\3��1]^�B��9\%Y[C���{�]���#;~u�h6֖� `��c���'U���s���<�£�5k����&p���W�b(V� tH��e�=��e�6ɀ�=j��$gۓ\�b��9�GZގ'\�q�_)����;��,�� �����rX)�Ìg;���6�{�ZbG/�r9F��-m���e`��Z�6��B�ڥ��2�b�ml�H��ּ�F/�IXm�����֯G��rjKXI�a��M ��"�y��m��$��+̗<s�V�0���[l�`���5T�J02��D���(����~*�PG9Ϯx�yg���G-n+��\c?�X��� �� L6x��"T~���d���`n3T�v>�m�yg���~�UBn,V��㩩���C��:���JF���ST�.%�p�I����r�=Ȫ��p�yǭ\����z]��d5a��@�zRH����=��$j=�{t�UsX���)�>=H��N;K;���Ts��]�nK�9�H0� �(��QQ�') �!�qX~ �l�zV�� �Q�ʤ��$�ʒ��r��>,���Rg�'�OP��Tl���J���OV�̥�A�zW�hSF\� ���Z�\&aNqT�F3��v�T ���Z<v�y�wd���7�er��\�'�G�y�� w��3�k�1�l�tc�P�H=y��D�3�$=y�&kY�9����rs��u^ԚX�ҼlV6扴d�Dr]2��s�=�f�j�b�j���R��.O^x5�2��e?C�J�@89�21�ӣ#�n�)!ܭ5�Ex_±�M(0,��tx�!��M�^TQiE�.yw��8��c�<�����uar�|�$�C�+��>9���\���8�� }3�W���S��e�2�5-O�q$%Y���AZȾ�g��(�r���x�óZH�VQ�XW��\eݱy�X��+�_W��*��j�:�IYnw?�[4�b�|q�z��mZ�sdu�:ׂ趍��wێ�u����4l��J��_;�e4�N���U �Q��l��I7�b��Uu�����8�NJ!������u�S�eW�G˃���O_ S��U�-O��;����\�?Z�%���zzUYo�G$ ���*Z���JLВ^5μ��ֱ�5^r?�R}Kg��J������맃���^*�dUY��N5�\�|��+�� ��}���q$#�;�eϩ�\j`��`��)�0x��a<�7�';��1�j� �O��j%��MA-ӑSW���J��jc�����T�����1֗�����:�rk�ɽM,W��<cFg#�U��B�~��#c=r+�RԤ��/��qǿ�~l��zԨp�u5���ƿ�T�`q\������n��v�Uo-ׁ�zW<��X��xω<=��¼�ľ� X������5�(2��'ڸ�hK e)�ڽ,�5�r�r��>|���6 ���עx��;w4)�W���|�W��}� Ѻg�8��'�J3��i�[�S��u�;�c�����j�y��S� �qK�8��W3'���]��Zϒ{�:�nl�h�C��y�g$��mXR9���'wg��h�^'�|��\E���_*N�O��_J�w��(��m��)��� �ֿ6�z��s�ŭW�7�Y�=ņ�'���W�q/��ӕ|��w�+��˒���g�FEބT#�8����^;ӵ�6;�k��]s���B��(e�&� �LF[[��#��u�M^"�jW�U{�PF�'�J׆���(z�^e�p������� � �vg2���f�6��֙n�eU�eNI�n������Ed][�10G�^S���ɤh��Z�λ��w4�>S�s�ެ����f0s�va��5nK���(�V;��zR!HAc�@�&��/���#$㯭g�z��DɁ��z��i��$f��]�m���`�Y�)<V����)��ÒA�+]��̹�$�V���t��ө�vl��1�G���Q[�ۀy�ޙ�K�4Y`pzg�kB�5�>��g*z�r��I���=����c[1�$�A�W��jv�Ԟ:�5��i�a*��C��t��>Te�Ы\�}[I3����:o�fK�\�p����z��8��%���䯯�\us�[�Si8$�__�ͩՏ�#)R��~���GA���_�-j�%������"��܂6���L��v�(�H�NN�<^�r+jp��Ԟ�Bђ��V=֟$��{���W����`)���5#i�� �g F1���ׯǓK+�J�Y���7�$�&3�z�V�[8ÉH�S�G���Ro �mD�|q�u x����h� bwdu��gVw�9��>郡��A;��$��V// ��v�ǎ3��/Cd�8�r�S� ���jZΫ�[fp3�5�<+w��F�$�b�Ά���A �&��SJ:��3�1��4w�T\)~2��rK}6�b�i�C�ּ�ⓧ%Ktw�o�9ltzo����7L�w��Kkr�F9���+cJ֡��#���a�!v�N��+�'��s>s�F=i7�ۜ6��:ֲ�&�2yoN���x��j�`���c��*�+B�3Z��^���bA���oE��q���c�*嘑�ʮ���6��5�:s���%ٜ���_�� U�����3��ji�3��u�>��J� ����54>��HWE|}�e�k�˳J�Vz�i�_t��ú����ı�������ҽ���7z^� +�����6�m$[���'�|� �~�ֳuM_O��d�UP�r�k��q���,��9����=O �g�%�֥%�(o�O&���z��Wh��������w�7���}����4��Qx��5��Cg]�Hu#���o��<eZVc�J���Y�[���"�#��T**vc֯[��#sԊҳ�v���dW�W�-�記�{DR�I�Mji�O$���ּvj���W,m�r��W�_)��ɒ-��c��SD� ���ui��|���+=��~Y��k΄��؉�P�)� ���3�9��5H9ws����M !]�GAMU�zzU��p�ҡ��A8�~�.I�3{��>������#��x�����<�{ԩ;�į�A�^��,[��ք鞣���s� ���V�wz�n�-���Zx����x����_�TB]�l��;ӕ6�h"��;�sm�@w��)8�{�&�r�c����Dب﵈ �LT�Sd�x�pj)�1��bm�G~9��U�5e�l=�>�Yd$��zR�(�����A�����U�܇s��'�zT��� ǧcP� ��� �8���]I�B$;���)�G���8�y���[�����6��M�9��'�ŗ�H�(�=3�ӊx=䓓�m4��̓�j��t՝[`��i�#��]��=8ǭTC�'� z�FY��+���6�ʜ�@q�ϭ}we��<Q�t�61�Fs��\o(ST�j�%E7̎[N��w��q���0[�o���\�����|�Gsx��kpIU��dd���EJ3���tÙ-���Y�P40�y�Sh�&�W��+�z����XX�`��ֹ��I����Z7Z�t�9狄]��t�R9C8 �5�V\�:W���w�u���1685����]�}���e��J�:)�SWF�g�9*r)���4F ����64' cp��*�VE�^{~v���naӡ��K�[�x�C��6���^k���y"�ֽ�U$è��[N��{�p�ڔe�.*[�;�C>�>��;�_��)�m[���N�ڽOž�YT+�Ha�W���E����`�OB~W��5�\U*�_��e �3m�o-/L���� 9� w��M5��pp3\"Z��+)a���W �H�hF=�����U'$�(���ެ6�1��ԙ�����ENrǯ�=b�����j�- ��z�į������I�D������+͝j�~�7QKb#���L9jG�{f�lf��h`�zG�#ڤ�<�>���!PI�~�"�#ڜ�v������ �9��*�J���}钐W�+F#>��Ef��@��s�<+>Q��'�i�R#��V��~�ZDГ��R��P�\TA��"�Q��i�9<v�M�H�yhp;q�V��������ny�=�����Ұ�.b��yf��,�����\��,%S8��4���NNzW/� xbW Ҟ_=v4�e��>��\ZJŇ��IT� �'�z�?xy][�Z��ok+���.�ሊ�S��lr�0~�� ��A�:�&W#�G���^���b�2���>���N>��>�i��{��Vd�*H���I$���fMjT���u�v��H�ɬ}B���=�ֽ���_mK? �{�x3RI�������= }�#�&��8�\��� vé���H�gj��P�����q�i��C�s^N<�r\�:?�+�TþW�OֽR���E ���{3y���k�٫����K֥[{�~c����_XxG�V���/�� b�+��Y5o���{�%����v�kI���N�_��R��Y�S�c[�ƛ�2,؎���c�ʥJ�ȭ�)EsCX2�Q?S�Ԭ�"!�L�]��U���s�[r;�=k/R� �A�;�i��Y��ި��Z2���:�+\!l��i�.�lUdF��%kc���y� �˅H�3��v*ج]x���N��ct"�.�h�^Q��E�K�R���3�0��^�m�Z�[y�c��V>��-?N��2(^�M},��eH)c+Z=�����N�֦.��}>�>}@����Ȯ���ak*�5)�i�6������nf�L�E��ML��7N*��6�j�y�'�i���U2��)����_��qP��Gp؍�p:�+�f���v:QN����'�b�/t���e��Q����S0$|�?��BZ���=�J�V�]�]5<�V��A�o���܊��t����ك �W��^���y�S+������ ����:ׯG4��}Edx��Y6�NO´��V2[��`dq�����W9�7���Y�h1y�X�0;/z�qJ[hO�L�/e�Kb�9�Bs�Z�|]����73!<�-�}oƽZ}��y��r�����=�gR�H�^�=�eI$sT����Ûhɚ�F���}��� xb�5D�C��<�+��7iW�u�:M�i��xW�iV�;�ԅ��;��v��p�+�!������-v��2�)�v��Rh�.�L!E���$��Gy^h���q���M�|C�9��.-��1U�?�r6�/��;��/R2rK)��8GMJU*%�4�މE������?-ʎ�m'@�� ҩdS������;�=�i#������^���"EhX��G�7�ʂr�f��q���$�{�����%�:��y����K�f�e8;pzW#��Z�fF�#Pr3����*�xע�9$�-f_�&p 2� �OS���m.�9Yn6�쫜V���\��Gl�;�5q0�[�F!�1��]��"�l-�Б�sUgҿz0��$֦�c(E'�炼 䯉��Y�:��3Y�/`<��y��h�k�-ё�g�,�HDM+:�����=�Pv =}*���ob��������x���k��m�~&�m7EK^[�+i!(�f���5f d�q�\8�ƽk���%�^@b��qO��B��AVs�9�:���w�כI�q��j�������ۦ%��x�Gb�rR�@'��˟֏���s�j=�D<�=*��|��B[���y;�z��Q�#�8?Qڤ�������iYϕ��:;U$ �B��i��9+���H#2��>�b�!C8��З@#��AS�|TWH�,3��B����/��L�c4���=�8PNx<S�)�ps��( ��s���3��#�j���ЌDž���<_6W?_J��I�jI�� �'�OjҜ�����:��J��Q�@�m�cJ�)N�k@��b ���B��H�h�2 <w�I��S�f2 :�嘳�q������� �2�G�I�!��(AQB�yS�g�sPI!B����H!�'�]�z丗q�,?���oC�j��$g9��1#�zWe�"�6���q���D#=�Zb��rq�s�D�KV���b˔ ��q֡\��z�IA8baRyJ�l���r��&G �I�?J�l�6����21��@y*Jt�3�~��#�0I8�(�5˵�''9\���^��e��j�卼�C����a1�p��Tg(��3�CFԾы�gO*y�� xgK��gk<H'ֽ�ƾ�XT�I�A�^emuu�j��Kn��Y�7�+�h��Ҵ4h�xhBWz�Əl��@ٷ.s���/0��F�2;f���� ��`#�@==���.���6��_Z��Щ* w��9.g�GMiU�d�u�[J ����:W���X�O�B�QI��hxG����=x���TUD_�\ܧ�$t�)�n{���Ƴ�j�@GE ���W �����Λ��4ܶ���F�Y� �@���pv�l����������+�&�I��"�_xr���`�u���r8�j�qt�F+J]9y���{ ʃ �u���� �����S�㸉����%�h�+ͭr��Ͻ{q�NQI����I���t�J�lE�y^M/nO�yΚD\��ZV��9��)�� ��V2�a�:?¢u�ޭH0{��U�<������`�sLb���֙,�!*y��N�F���k �Hv4g�D'$q�N�x��s����R֝e�7˜ܱ���gp���rra8��G0��VY*O"��Ť����3��s�Z��teR������{4�길s����x�vgrC�qڪ���8�_��W)���yrQ��c�>��3��J��4jP���F��IN<�P�G�i�N}=ix���=�4��)$��u�� �Fр8�{��@Y@ ?�X����H����8�;U�.�c�J�Y���Ȥ~5y�=���g�q�����l�u�0c�ּ��������Bx�Ұu�$H� y�;W,=�\�٪��g�~+����##���a�&;����g��ާ|Y8����L��G+�k�r�����2�B���IەZ�܌߮{V��g5��Y1����c$�ǥ}$$���9'>���j���q�)�O֔I�#�j�N��٫3Q�ާ����{d�����Ԍ�Y�� ���]�q-h�*�[����[iVH����YN=���?g���z5�O�'f�!c�'���x�֜��8�����z ��.�f�wG���C ka�x���i��ZtN���"���<���A��-l����/�_��j)I%ƘXn��c����O��?���n�.��Xr3ʟB=k�<��p��_�0�ߪ_�?�~�ZX��%�����2c�)$un���w��k[MN�<x9���wTҦ�r�IL�R�CG�IsE����sW�� h��5CH��J���� �U�p�XH@0:sTntԹ�������^Lq5p�o ѷ*j�n���cme+!#��QX'MIZ�F��gl�O�J���̅�aЎ����$�a�;X ��fu1�1�|��F���KA��فө5�y�=���aOr+����#<�Q �z�=��u��<�s�s����*t#V+Fs,R��^��w]���eF���s�V��l��''���Wa�x�Z�+j,����r�{ ��|1oyڅ�L�����W*� �vo���v����=���#��+�3+BB�'�� \h�r�h��@���k�U�HHَ;����0s��]�n�c@�kx��xUV�xc���V�\�hN�98*娎4 ��Ҹ-(���I4Q�8�����ǻ����S=�i s��=ˋ~�#���[����� ͍�px��Si��%��=��m��FT��s�V,�� f�R��ؖr�%�#�/].��)�E��l��Gp��+���e�<�J��% ��~c�ZΥV������˿�-32��zUV�-�f � vSG��������$����\�9�5���Rl89��W%�6�5wH�d$nPz��t��Cg`�GEI�O�[�Ԝl�s6�ɤ;Af�N8�Zi�b%��V����}9���Bs�+*rv�fLzXvɄ*����H�Bb�,�Dl�' �a����Xc���M��pԥ ����<p�Z�G���Ҧ�v��h�b�𡐮�c����>V��C&���}��S�L0�ɩhc�Gz7��p��js��P�+M #�E��}���0G�e�wjI`䍀��s\��oI�T�eo�� [gm�X�ϭ8�Rzc؊��4���<`���^��{(?{̗$��z�����Ғ4@�scֹ�s�_ض�MA����+��G����Q4�2!����溨����Px����[E�gU�z��� >ؙ�X��e5ok�|V[C!�^Q������|<�u5C�j3̧ƿ"7��z�'������Z�M�����B��dQF|�f�����c���/,�I�,8�fiӴ�h�V��:���I��R�� ^@��ul$� 1~�j謗B&��~u;\ �P?¡��<䢶\ K���{f��$���1����j��N�@�灊Զ���ԃQ]���e�OOJ�kj�bp� �jq_h�'�zU��*��c�@�Q<K ��L���>��A�bi�̅���4���B}GL��Dȯ'�psɥ'���z�AS��p9��?ҩ:���G�K^}�uS��{?-wO�cP��ё��U�%8�[�5�?PhsR�#�@��4�����q֧�Dю0Gh�kv=�.T���Q�xw�Ӄ��@�zw��BG=��Nq�9�JQz�UQ��?p ��?Ҡ�\��j�Z7��!�3�vЫ%����F˓�G�G7+�A4�0�G!��Z��B�ƽ8��d�i-�;`����8-�Ԧ2 ��8�;����J�O[H����ңe�/��>H�9�}i��W���i�,$>}0i�G'�1�?C����*Ϟ��08����.�= �²�b�F1���@�b�B�E��� �����09�Z��(�*z�ލyҒ���ՙ��\�W�c�#c8r8a]�/tōLL�O8�H���/����f��W�{����J������V�~[�r����~$ 2�Ŋ2m!Nz���!�/��!���J���M_��'��gf��mf�k��=����"�s����nS����P|���F�Gͥ�_-n���]�<���r9�^�m�[�`;�^I����V�DvEI����K�!w3���^.[�Vl�-��R��� ��*g%c ��ןi�#\,bSϩ�]���C{�@n�Z�BQE&_��7^}(x��F;3M�2n��>9�������Q���# ���zܽ�2��:}Mo�+�~Y�U�C(%T|�J��pad�beʀ:���^8i.$�@��x��j��,0��@I'�OҘ.<���F�� �Y��d�09=�P�)��Z��3n�z��X}�X�)q���k����FK���˞�umb-�!c���p*���!���{ܴ1���Bۊ�k��-��8!P���S[��HYpy������R��+�w�_C���Nm6>N�n�8<`��� �\P��}Ȭ��oݼ|��1t5��A$�0:��W���#-���'uv�C�ߕ Е��� ty��V�Ϊ���y�j�s����j��7�u{x<ƶ0�8vC��5�e�����$�k��%J ��g�[��� ݼ���dY_����^O?����n.w��Է��_R����Z�V�W��:��Tz<res�=j\�ǽai:�H2y���pW=�\Q��)��'�8$�I%�\qL�`Sѫh�L� �'9�ޥ��b ��L@H�~�4i�Z�:�4 �go�F���ZU��zƐ���8��Eӑ�I�W �����w��z��Q�Va���4�1N��xu�W%{t�z{��|��[$�F��¥���'c���Spf��p�k˵�&{)\m�ӎ+�ohQJ���x��ƾ��m��cӥ{y^y�/gXs�����f03�5�� pk��g��l'mѐ��K��V#�y�)�.�W<��ޕ�#�SM��G48�=1�V��2H��$j�V$c��g<���j�u��5JMl'��-�.H�kc��"ռ�-��r���ȿ�O�����OQX���&p���{/�EӨ��f3�h������w��x�� ��a��bH�������X���Y�#=~������������x�RX�������R����|k8�BBC|N����ߥ|6c�x��r��>�=�O�GE,}O�WݗF}w�i3X]����*��E��Ñ��m�C��Q�o2L�r�sY�6�d;��2y�Q�+��X�>�ь'i�?�12�=��P�xI��N���n�$ �X�S)dSt'����'���itc���@�y�]�����f�Q֚��7˓�nq���T��s|������"�K�4:�*¹8����-Fu_*�} P����3��څ���l�2�ؽ����Dž>!��#�Iac�����_X�n���\��Kd�ǯ�����e�o���Ť�Q"�I 9l�E}�_SK ��Sz;�v�ʧ-�<���ݽ��WJ��i�vxj��WͶ�����H�@�֪�6�;i����z܍uxm�9*��^�,l��h�!�=3^N?6���B\˪kF����]���|<���ң��$�W�'��ݗt��>��i܄U��1�q��j��"Ep#U�X���W��Y�u5Dp$KB�{��ķ���sY���B8�_j�k���"L�Om�2��Y��%�,��[�2s����ȹ,�V��l�<,˅��"���ě��:t��Ӱ�жoC�.T�s�S.��С�� UYeh�ס��-Yng�3����m4�[���eg�d䓃K{|��j+1=��U+I0%��z� J�'�]A2���hs��lV���]d,d��{U��-�N�#c���X� ���6����ܕ����R�`�^�����x�� '��,ac?9%{��rK1\aOC���l�JI�@����Q��Q�E��t���l�"�d�$�5�I���H��"�G���t��+��jd���ꧭU�$pŎ���jX�o-�� �9�4��!�sS����B5S7�@�S^�t�6<���3 �Z��i!WpAlk2�D��,hZX� 7<�]���Ju�P ��z�7p�Xt �V�������ϧJ�é�Z���t�Ae"\��=}��|'��]ޛYeOF|g7Nk��;�+��e���ۏ)T�ETR��x?�_�R�D���E+����2BŃz���W�uN�[4 �y�o�M/�����_��V�9S����yh�-��sC�3�.�����l��K�I"w���k��<=ii5�B��rۺY�&x/eU[�=�WC(ӌd�5��� ��FA#�Sȉ�"��y��cV��@f�o+8A�X�ص��$'�p��׃V�t����kԺH�9����H�l���k~)�t˜�^E�k��'�m�����L�-���o��1��/goA9�;�Ԥ�[��<W3u�KI��t�p@k��Ǟ9���������1Z��w� ���'>Zb���J8t卨��wr%M��ä�����{g�j]���q�;��c���Ö�� d!~�3d���[Y��q>��+�ӣ�h�2̸��p���#H�,q�Ҥ��W! �=A�r�43+�` ݿ �P��B� #�Hw��<V{بfdl�:��v���@�d1Q�6�2 D����%V�W#�����nBwթj�Q+"��pGze�0K�@��GsZs$��mw=�2� Oz``�B3�j_=B4X�G�&�� +IQ|��0�r[��P;U�yc��y"��X�ц�u�-�*�br8j�� �̤�1烎��fU��=�%�9�,a�W�XX7Dh9����(�.:� �kr��y���H����z�T �\������}QMɥt%�a���ޡc!L�~OJ�ei3m�i����Lq�=�]*����&��{�ќ���֠�)$�d1�S�ӀW�+ХZ2Vd5f0Jd����Xd�(=�4���أ'���SԈF%9���>��'��N����"�Ov4��.�8��n�q��%(ى&GU �9����8#�Rf��(lg��M 0Gj�s_�:.r����K�r�w��D��V�=�Ւ��g�瞕��ut#ʿho��Fk�X��n|� ����z�o��j�[Xܟ.T�H'�}1_N�ZJ]F�����5�_>#�ږ�����Ὀ���s*P��՝����9�ӓ�<~h�O ��6���6R�H��8�j?�7)V���>��E���q������5*´��n���H�#�ڽ�O��J3���i�*w����A�C��:��u@v�ܙ������?���7��3��Ҹ�v��]Z[;g(\p:s���I��+8���U��-���SJ�^%ZO�"��sj��zׂ�x��*)������4j`�o"�};M�����P{qڴ4�z�y�-09��k⤣Q�SZ��sE�kHj�[��1�D�C2 ��8����O9�L^��ڽӢ�g>��I�!�q[Z�.�q��W�[2K�I8�[ԃ汊:k;�p �;�ՠ��z�%�_*���GJش��;9隨Yn��v����EY�<�J���dA�:u&��9"��Z�S���<Q[��ٕq����/���R3�#�VY�$`��;�P��c��=�kԩ�ל=������SO���|��{Ka���~�z<_�{����(�_gNT��{ݥ������*E`(g�� ����r`����N�`��%)?}+ߡ�¤ꤖ���zZ�:��B�He1�H��Z�:��z4�{Z]X��n68��߇j�6�a�����C�; 9��b�� �,�g~�Zۇ+�%��;]hן�qѨ���'������)��D�U��vA9�u�:���5�ʓ�@�z��?<3���h���qm���`nn��y��:]�Z�V���$�h6�����05�R�f���x ֵ��i�鎕]��<&p9Vt�B;�X���_ ��+Gs��:tUe?��O��r{�5���tH ��8�Yz�]ɧ��2��������d�[�Ոr3�s�U���±t>8�+�ޠ�{Ӊ�Һ��DXcI�g�K�s��"���I#aA�=�,��,4�@늭5�<qQ� ��Up��'�L�\i�A/s�Y:Ɛ%��zr+I$d#8�jF�p��< �8�jRmU�o %�,�B㌊��>kVy"^�r+�Mv��V;zW����$��ߗfu0sP��M%Qj|�so$-�R�8 �s���N��v� ;k�5n-ܬ�Þ�b�@��)ׂ��զ�ƹÞ����:�*���0�5$3�<�_+0RM��7/�lv�m^�F�ҷU��1�_Zk���US���MJ*j����)�Y~�Q���s^��1I��\iQ�w�^�sh�`%ѝ����_�{s��<��#0 䖒�{z��j����$�<e�Ũiwq\E*�VF�3�#���z��|Nj�s�^l_2�9�ܞ��>�>�� ��7��/g_)z�~y�`�����Wu��7p��`����H�k���1����/���>&h� �X��A���@�3��=�w�\B"�l}�G#��_�P�K���gZ�Mt���fz�7���)j����i��t5��[�m��A$|����y�c�ȸé���Y��Gn�n�x���x��ԡ.]≋}NO��N�8��ݹ$�ǿ5j�kg���!!~V@���qt�OH���Y�\����iڎ��g7�P�� G*;�k[� 2�ܸ/����*��$v�����;S���+��3pP���+i�Q2FB��J˒Uڕ{m绸���ZcZ��t�ev�q�I��k�xO����ʼ�����:�����I��6��a�\�� B݀���6C��e:|������L�^��;�jz��{ci2��_�9?C�T`�4��E��oTH�w��U���M?D�*x�9��v�k݃)��m���Ğ�o����KT!���]��`8�Z� ��/��.��w��x�w�[����[�k�/����V�i����6�����p�����V����o��h�6��?u��߽z�н����%G$�_=��U�Ut�h��=� cQI^$֓��pf(r~@8?�"�!��S�b*��)-�C���?N��۬k+��9A��i�2I_B�Z��9v���_J��e*����*cF�2q��*�ݫE ��8<u�Q�5�����Uv�?U�X�ћv�A��T(e��8�G���;��4�����ΩM5il��V`_BU��M�0L���:U���a��2+8�=sWeӘZ�yc�H��#ZjK`�+�n���p��4�D�#�70"�Ոj�8db;��+��ڟ�e45U���r k<�Wv���_�W/\�61���:pj��,"�q�� �5�6������-gP�hbP����TqZ�-h�mtkZ[��h�l��;�Ѿ�� 4��9-���2���;�y�ߋ<?kq9��8�����+�x�O kͤ�e.�[�]��~�(��<1ޡo�eC0�Z�� �V�S�U�d2��WA����/�XZ��c4V���ku$�L�l<g��~m�%���gҸ����:㬷�]L[�Ff@CZz�ͧ�çi�|�j6��Ib>�����+}KZ�ݵ{��}�~u�ڶU焅��J_e����-y�W��/-b}^��)B�2��[kIs�9���= y���ij�^[��(�4en�l�O�I��\]�WO��D�a���=�� �8T��a���z_R���Q٣o�ʪJ�d���jƏrQLs($wR��k*�f�⥷��7�DPzW��ۤ�&��ƥ�7��&De'<��>%�TԼ%t|7*�z���h��譮QgU$�l��$Ur�яZ�2l�xi�R��J�E+�?.�ʬn����|C�/��4�IJ뺋��1�X��a��/O�^��_�~��I6��;��?��j��wK���H���sܙn'��N��Q��c��n����UFr���k�����vV�IZ�O�ȚtaM]��rO�z~���т8�^ X��G�?x��a�y���/�W-oi:�>��Ͽ^��.���=m�m_b7~=������S�5�c�h�����-D�FY�^��+������\��l�i�mD�$��ph~'�D���U��A#�<W�� �s}�x���V۱�Ȥ���֘��-��n�G:�"���B2�'����^��K9�MJ�Kq/�-����Z2η�a��RO>ճ�H��;2�عB1��x����o�i�n���T�H烏C^m,� �_�*JkxK}<�c�� �-n��-3�K��H㚷4~dr�˔q�z�t����WV�� G~+R�a�R͕!s�L�ׄ��:�Y�͟r���+yM�������MAB1��?�I��#�8a��95^K��Ao��1��K}ll�y����>��1&/8�^�o&�[1Glg��²�o�}Am�Trp���UүU'l.T�4�b*�'�*+��[��u8��k����afG_�IɮZ��2��A�D�ݗ�����a*VNi�n�/�m�s��b��3��VfhR����}}���qey����C.��`�o�8�_� �"9��/3�R)bp�hM)�__'�����B��B@q�QKi2G8�� %��K� }���k9���@FNq�@Ὠ�Q�o�FK�B�L� ��ױ�-\E�0���3i��1�����o ��D�u�k�[uCL��N\�����ԟh�N�Q�~~�Ka$ѥ�!I��a�5^X�N�����W �Z'�h."ap���^�hܫ�iT~�CU�����8�g�ǟ�֟E{'A���uG�d�%�I�#������F�2}�>�~�G�9V�9�j�#�s�=k����c=��˵�P ��Z(� ]��"��t��8���I���gg�J�NIj&6kL#I���i�Qٱ��6��qZXK$/�`Y�C-�߱�X�Wv�^e˗�x���8<�m�R������Ef ���l�t�ks�{ҩTIY�+���gv��&�n�X6|>���Y��v2ь����J��;u�ڡH��3� ��"����� 4�A�=ј��mbIl�aI����;7D���㚞���6 c'��;�M��܍�����MsJu\��ߨլs�-ѧ�_�L�6VE�:q\��"W���� 8ʨ���^���e��io�D���#+� q���=k��2��N)�QТ�,�Y�*;��R?�\�S�����Ck9AL�ՙ�E���T������Q��JòG�\�u9ǥs����9g-t����ҡ�����]�Z��28]J�U��H�x�� ���#��=k�����p���^-dg=x�N] �����*�QSt`�M%�������]���`U.d�f{)8������H��WCn0�G,.sE��~�㹭�� ՟�$�B�����V��x��M����>T)©��5��>[�S��y�^Ev��\f#�6��o�ʖ�'̖�����Ia����_��D�YȊS��p m]x-��n����.Gj������0[ɤ��ۇ���Ϩ#�W�uqiקd��w�}���B��.��b���E�FrMZ�s�k~�]gQ�͉lQ����5�������!Ӣ�Im�D�9*���Wq��V�N�x.A��e*~�ن��,�a1��To���:lcR������I�x_��:{�.�l�\�v���W�����֟�<�!q��f���w���]=ũy���6���O�ɚ��wW���I c�]�J�S�'�+�vv'.UT�ͷ�W��o����K������b��"�`���!�Yu�X$ #ȣ���v����GJ�b�,Sl�9>T�#���vI]�~������T��jo��[���)P�e�YVw� �H���n�՝4��i s�懛�9�����*�U��o���O��s*�b�2�Q��)��&��jn�ڣ�7f�g� ���V#�ld)���L��횱�M�q�0*���qڈ������<����� ;JukZ+X����S�z{ �Q�%���R��j�w�W���y����I!@ǽK���se���� ���� ����f��-�3ǭ}Oqf�G�Q��s"��s�@ ��*1X �Qw]�TԴ��lj�9u��0�"N8��'�"���>!�+����^)��Md�������e��,T--$s��������x�QR��N�b��H���T|�G�^�q�����/�FA9�M>r� �j��~_����=�VOsx���u�v$*�GL��.�%%w`q^�so�w/8�O�D�zW�CF�u|�+�r��C��rWE������$�?;�c_r~ʟ����8m�7����*HN"�>�OC���3_%&�l�T�i#+ �������$���������%��5�o�����Gu��9��-e�ayeO"S�Iʧ|�u��`�堊v�|J���x��/� �����M�"�a� �<��~�����;Ho�$���|I�|��9w�z�{VKˀ��rݸ���v~�z�G������Fu�՝�Bt泸l������y!��H���J�CD2=�h�7F@�B"�� �X�;q�O�R �L����(TB�U�wc��J6�[����� 霆�� 'DmSC����Z�?����xz��U�� G�r�4�r.&��v�ϥt�[��-"�Iן���dq����X�&�m�.��B5��Vh�k�GM���?J��x�~��?�E6s_���t�쥺7R��l���Vg8i���^A����G�m9>�%ׯ��M�܊#�����������{-��x���ca�1%�}wJj�`�?���[R6��_��E�� ~�$e�{W�`�T���H%t��j�oF��~G<��a._D|��|<���^�/�g�Y�ڀ�"�^��^����b���`��.� $P���b�x�b����������a��]��д�R҃����M�:�Z|9��BO�Eu˫�ic{�=X���냱�rFW#���b�ڼai 4䮔Z�/V�{���~f4�уr�o���P���i��W[[@a]���e�by����W���[�Y �ܳ� y5����'x3��-�hڍό�L�^�([H�����d�=9�;ms���]d�S�,�XiWH����̌�ؓ�ڸh�LJ�������=m��/3I��,U���>���Ή���Zkq�R�B*�%@��z_"Y/��^䑹�����*����^�m-o��X���KL�FN[��zχ�G���s����o��ps_+��P�Y�����\d�S{�\�; U�#F���z՛;��i�o0�"Sz��Q���f���)�\)�u@[���w릺xg��A�(,�|��ָm(��b�cma����veH���__ґ�G��;'��ܼ}��O�����hd�&��G�K�H�p��F�w^u�;�H@�-xH��]�f�� v�J�ZN ��;T��"�7&KQ�1D��t���o�L�J�]��YO��'���.ʤ�~i,�vqQ&企�Ihm&������8������sŞ*{"�����fD�@���� ��BӮJxa��(��&ID�cW���;��{X<Ƶ6�5x�f�����3p��]�.x�A����M���R�@��?�� �NsZ>��� ;�ڏ�&�A;fH����=��J�Q��~��Q��vzv��e& ���]��'Ҽ��ƾ2�ĺ�����V������o�S���W�a�⾖�g�b0|�%ӷٽ��-].��u�����ŢxP�h>�<�咅Gȸ�< �Þ7�<E�O� ol���G�q�8��1ֲ����F�vm�їhFE �ێ+�����xB]?C��U%s$���B�'9F@��y0p�^ӝ�S�;�g��n�F�3��e�����{)�i��O8��}j���E��1r,x"C�k�?fmg^֧��t?���e�B�4v�'�zٵ��o��Y!��x�;)�ڼl������SH�eq�6B�̆4S�n#-�=��V��Z^ImkTۜm�֛-�=��d��A�60�2q�jh��Sky2�p�nT�s݇q^=�����jCqe$rY�$�d��'�皒mj��\y����d���"(�$8b���+ۜU�9���e$[�m B�!%�N1��i�i6 �{��k�ib��b���3��ȱJ�\)�2q�P���iա��$XZ$��è4Zj���-��:a�����)�8I5x�����^K�Gez���Ź������kSͥ�E�A=����{�{�-�$}��ОĞ����j��^,ik8�R��-���bgJΒ����Wg��)Eu>_���w�ZO��u�hwr��!|ϳ=��z'�~x7@�ǫ}�Ry���I��Np+�=:�][v{[�B0VU ����_"�V��-��ݥ��u�>��0G�5��h�Q�eJik���-$�>��Nqm�����m.�3�Ζ\F�`>Z��#����x��~�f��w�������|�����/�O�u� Χ~�0��d�$�Ϛ��������|_���y%^m��O}���T��7����אJu����y���3\���MZ�i��%,~_�]�X��'�^�O���={�O;0#2�)R�ڽ��گ��j�Z�ڵ��ƙ7�nu�?��f� /ĺ6�f�C�,5(�|��8QȪ�gUp)��t��RN�����j;�|�]>��Z����`�6<���d�-���op�Y\?�k��F����M�of�C[���H�*SӚ�� �/Ҧ�s�[� �wh�\�pG_��+楆��j��g�����7{��K4��U]�kn�L��߇� �X��)�M�$���������.�'��6�ď$�<�,W�h�a���k����u��v���#�cǠ�|^�Z��kfm'����W������I�����V|p?3^1�4�=ֱ�]x����%��֗.U��^��W��@�lL�F ��s�"�q���S��hMD��ռ�^�=:Wv[�a��*���v����W�~��N�sSOn��.��қ{��H�IY��#�����S��K�& �4� �7jK�ۂA?�h�� �����ڶ�ckq���D$0zz���s�|�\^Y�"�K{k!�B�a��l(�)�yi��->f�����lL��H�eۿ�1��o��Ɵ4�Oğd����ɍcm�����Q���їLmJ�p�g<W�]k:������� ��iV("�r� ?(f��ڽF�������xn�@>����ܜ�;V��T�B�6|��8��I�j�+�J|�N���Qs,v�[*�1���W`����lL�*��W�jz���i7����˵�.�|�� �����4�Y��Y������ ��x%N�e�Nj�{7�6�U;Ǫ�.f��a�4r#���|qQ�mm2�����UkSHot�G�p��Z�ep�G�c�,�Yv��}�ϔ�Q[f^�E{��k$L�7F��Y�,�yf��A��V5���WgF �dϖv{)�11�q�� t䖣E�{h� ���$<`�~ƣ�l�-?u:�bx�'�X[�Ɯ�G+�'��J}��-��^���cNU}�[s�kU�z���ZPȒ�J�$q��S�� Ў#rzU�R��[�w�$����k ���&³��S�Ӻ�VM��lnX��ڠ���)��)/�#��y��w�ޥ�P���YT����t+��[!�ږ仂�-�A�wƪǨ�Ӵ(ꧮ 6�UJp��2z�. ��X�Q�7^��mx�w�!�d�u�h?{�P�,����R�ǯZd�y*#�0RF%�*�<��#�R�L�ֲJJ��-�-m��G�_���k{�m�"m9QLO��\Π1���{~:�"�]]���oL�k�ݻ��E�Tt8�9�zE�`����jh��3�2����zT� V����Ϳ�ʔ��+�s,d�T�QՇ_ǡ�-<��]���֭9!�d���0��c��� oen�Ky2'd�늇~� 4G�:}��t� �>�W?�4=�-�o�8<��j<M�5�$�B�~wn��/�l�c�Y�n)��y�ש��NMID�O��#������V���L *��ZR�S@N_�u�r����3g8 �F���� ���>��9��2*{���I6_����!�9$���r�p:Sm��0���]��J�����O#��9��R�s�d�1%H�e��i�-n��0���Q�W����G���j(~��ǭy��#��ϵV����H8���y���#k=u�s��F�M�0�$��j^%7�m�&���Pk:��+���\>�ه8��%��̊���Px�c�ZЊ�F[�����31n.�l�|���#���I-��|��@Mqèj����O^+���g��9X���jK���q������Ie,�"(�9�>��L�-�h�M���o��Bn��<�I���*L�ԃ�z���omtԆU��W�ޯ/�<el��kLݶ��Y��x�S��[�z�a,]+�5�o�}�t�g�nt_<P�r�2�W�O���=�Y1��aE��ٖK�y<�һ� �KaH�AXέU.iue(�m&^~qOI@`0F Md�#'��*�V$�y5�����YE��3����7<�������cW<�O�85� vFm�T��p0:{R�t8�|F���=)�>H����|J���h�p0�q�ML9��涁�{h#���9a�zS�9P;��K�ݪ�q q��[U*N��O �~��.8����V�=�h�L�Z0~��9�LW��#v88�_�6ߙG<��D�tW)��r��6��;IB���o�/�k4���OOz�MZ��r$B1���`��Oݎ�q�x'�?��5�X�#��5��y�%C���fӌ*�MϟD�6�j��[�ǥ7Ěd�7��A8�P;*�_e�⤏6�Y� x�qQe뚬.�B*6�8'#�����*�4D���W���~c�����{�mP��>l����/{R'Y��Gy���q�+���Hk�������<?#b{~b��'��zn��z��B�;k-cvl$�v#%��ҡ���%�֏��^:�gt�~��:�>&xN/�7W�P� �<���y���+C7V��F�� 4k VePO;���8�~c��~x�xb�`@��rL7�甑{�~�������'�~0�bݢO�m��.������r���W�� ��j��F�p��5;�����p���cf�/��#[;Ֆ���PD��E/�}�'��=1�U�|�Aq5�0�2F�� ��r�eyaI��[�C�"�^??zx���h��~q��Qo��q=���M��L�6��Q�����c^}8үR�{>����:�N�|]k�x�K������O�˲Kf9f;���z�^+��Lje�\�c�R4���X_I��!�H�G�������}l���ʢ8�-NX��m�g玕WĚ,w��ԣ���i��F�;+!te�2�p�px��<ђ����F��k��U�-Պ^;�t��R�ݬ���ab����rGPs������!�D���pt�1-��P�VmG 8sܓ����j��Es�O%���s��1��YD� ���#0EI# N�PX��WC�k�U���=>x�p�,�Dm�˗��? a����z*�q�:o�I��NV�Y_{%�ϡ��g�X��&�ݬPCM�-��,���볢�!�0���I�{������m6��I}'K����G�c�C���c����R���iw��%�ѣ��巌�pG�M:��Ѵ�a�;a��I��q�ٰ�9�O��\��a�����u�t�� �FL�\XM"�fm�Qsn���y���#�;ֆ�"���oD���kx�}�f8*:��:L�,�[Eu�d��`�SׂOA���Q����g�Kf-$r��bX*���<d`��A�hk}��k���K�id����pT�'�֙;����Y��D8��I�_;�@=0*ͥ�bHn/<�R67����%�~�����Y�Cky�t�0D���A��B��^�G8���F��i����jf��ƛ��������Q�3��*�-��kv�&S.nsrGB)�*�\v��αL����X�ͽF�q����or"�[2[J�������?y�����Җ/��&\�R(�����t�o�x`~��s�)u��kr#l � ����`�1Ҫ���Z�o�%��Ei%��˅U��A8q�)�wP�I�S��A�#r�p� e���T}]����ȟ��D6q)g݀��<��;Ս:�Iy�[��� �IQ�C�(�9=j���k�O/����� F�� *���מ�S-�m�W2�����:,.�FJ���Ni�<˞����t7�| � ������l���3�}k����X|s��(��֭m��Z}�o�FRU9ݻ�q�t��7v��r�b"�#�6��Ē��q��zԏ�O=��[����8���dnnp ��߭u�k���n-�[�K?=V�Wv�ؙEJͫاo�]^i���C����^c�1��n"�G�^�jz�xg��,��Su���@*�>�\ú���4������0m$���i�q<i=��y1�o2X6�# 1Ϡ�� g^�WR�n??Ԩ����i� 8ŦCX�G�(�Uu8 �Юq�U���]$y�]����#(���p3���G���*A;���"<JN@�wU�з�]_*�����%X��hKGn�0 �^r۰s�X:Rs�w�ƞ�[kF�ӀY�II�hdi ���29�1�l��=(���7x���!ܶܯ��'ګ\�[�u�:��#���wDN�01 �q���8#�����q�ʲL6���.�p�pG8�֛�˫`��3��zlQ�e��_:�1�8'���{�v��+t��|% �8]�w���:M���-�Y����!������ps�Ѣ�Ac=�i�14P���A�|���m�8��7Br�İë�� ���d�vg[3�J���t#��w�Q\O+�nv�-��U}r:ԖWhЖ���X#��G���rN��u�,�[�{Ȏ�l�$��4���Ԑ9Rr8 �3MRӳ��oߨ���:��;��ZXA��e��J��3���o�N�6K<�r���!s�*yOU��U����[Z[(�a��&&l2���`s��S���Gu��M���`��q�$`g�Oҭ~���5濯/������K۷��7:\�����|��[����1p&����[ΉF����#�d^��wkk<w���f,�g��,��6�v.��-��Ko%��ct����#���:�x���)G�f�*��t�S��ݤ�B�t�;/�gXZJ���H��g?�~Q����W�%���m�k�w����O-�k��(�h��N �px���&�kIɳ��aq��w�H��ps��W3�'�V��n�Iv�&��.��[�e�����xe8�A�����k ^����.��m]?�;tR��Д�̝�o��_��#�|9����nԴK�m��;L��*�g�W�|Y�cm���x�������������|���a��J�t������ ��N�ke�2�VJ`��d��R����F�2�Ox��o�Ť�ۙ6������f��s��Ұ�����ߕ�G�NQ�G�oN�R�B��۶��_�9�/�i����'�r��Ev-�J)�$�����j��~%�xxlծlt�iiuB0S��X�w�=�]�˧xW�vb������F��Σw�zs�^ ����ڥܷ�u��'W>lP<�OBX�@���&�¬��L����՞ݴv/���M?[��}Ǟ~��|k,�?��o��:�[�n6yQ��{�O9�U����!�ugo}-��Z��*0̀���U��Ï;Zx�\��W��B�I�^��c�8.�8��|z��ivp%��B;A��,�8�Z۬�q��0?t��_����-�7����n�~��*��Z��<��h�{��R�-��E3ɷ�wpE2w��UY��"��r�|���� x���+��M��W���d���\��rƥס��������X�\�d�^X��o,��0`�l|х%]wV w�J�,FK��G��4��ӳ�wB�9;&i�����>��=~q ��Asܩe��Gː1�{אx'�~9�/���V�n�ln;�������� �ҽ��m����)ay�Dn�H &��8=�Ve��[�������Z��� �0>���#�^0���<4��I���k;��t)RR���]O��o��Z����߈����[L��b��̊�N2y��o|v��nm�|M.�i�S�������NM}!�i�G�2��y�n�0�.T���^�b;�������MWI�U擩Ga#̲K��$G�#��ds�⽬�7O�hӋ��J�/�n���~XU��������q�����ۻmi��c�3ž���m���z����e�����1�'��<���}k���|%�o���ow�x?[ӭR+��j�%$�>W��o�28��K��>��i�<M}d�Z�QjW �<`�d{( f��bq���T�����R�is������&�b�R�k��Z�>���y�x�f��xUc$�|�}�^x�_,4qF�g%Y>��}�c����l����P�"H�A�u���9�'۵{恤�x{N��"�=Ljn�#ڣ���8|�����ּ<�+��mS���W�����tQ��o��~�xn���$��1��0;�z�e�������2r:f��)"�u��#�7�0�ב����ӊ��)nubn��i7���$8$��l�+���^߉��T�@�XMmWܥB�q֫۴��:������c���+�����ml-�;2��v'@9����u4KL� �r��r ��_l�g����Td�[��5��Ck�` �̸�9�K��LnZ�y# 8��8ڝc �) nR�� DQ`� �\c�4�'pIApC=�@c��L��Qq��^�֣oQ�Il�ٛ������,zU$�Ia��K���ȿ�=�j�Ȱ�D���4EZ+}��K~ufO�/-���QqÇyP�*8�ޮ���B �K���ʊ~f'�w��=�5�GL��;C.:g�Y�40ζ'S{K��"�G�������~��k觳̓8bQ���85�I��sjf�z��|�$S�1G�d��H@���R�c7����ȹ���5����[}�ݰ$ ����� {�u}XB�]_EH�vB"Q� ����Q�Vܝ�(�\[ɲ*�,���Ǟ�}�k�Ky��tr�(zs�XV�%ӯb��������>-�A;]�A�z�+��_�])!H5�.��U�4���%s�$nq��8J�~ϑ�������g)�*���(��σ�e��ˁ����ah涳���X����ג'�{+o��L�_\������H���'�8��#�q�,�����F������E���ܦأ���,���<��P��җ�ڊv�����9猂^��u����z���ϸ?�X�2P�gi+�<���^u��D�/t�[Q�֔-����Ϲ��#�ۀ����f�ť�[�/�Y��m�����zk 6�;�ܣg�&�<3�i:?���O�j�xl���d��?���Rp����G5�R��h��ޚ��M�Y.�}�?kR������c��:��kϩ�˪X̿��rOG-\���?��.�o���6���2��*O,9�}�jf���k�V�}m�[�m�ͻ���U��*�$�g��O{���G.��tr�soa��v�{�:���ӡ �Q�4��t�z5kmta��[��m��.�B��&��z��(FڛϧQUe���8�_ 'c�-����q�«��3�3�H���L����}+9����˓��{Th��d�zf�yry?�$R�3��P��`=�Jt�H�9'@�g�s���#m��4��cd���ڑ�'���*"�$��V����\m!�&A�V4���g?�h껕O�Xa���+������������'ں�w��ޭ�jn�'N+����?J��Fw#S�r�^5�˖kf9�(��t�YԾ$h��y�Av���=���5�O�_�o��]J�v�8X��U{}k�^ex��>�DZ�$� ��y�c��ni/%�ˇ�ѣ.d�<����1�=t���������=kya��V23�RH�8=ϵ|���O�N����4���1�5��2���U턠ڀ��m�gbI�8�%b.2��fI�ⴢc 99�J��+�=MC4��I2�{�[Ӈ*�Mܹ V�@PG���k�䷞8�Bv��6�i�d�xܸʺ�A`�1���G�����>D�!�E8�=UI����P�"�� Օ�@Oj�n�ЎH�629�L��3��WAC��J��16�w�q\�o���H ����� \Q�b�j����.�>����ܽG'ץJcB��j��qh?n�2&�&;�H�'"��j��x����A>��l`�����@��"#b�ս$�A�������:W-xB��I�>4�3�h���J�*@ȯ�5k9���J����v�ݣ.�I��������o���g9 ��^�O����)�=��*��ٟ-I&N;��7�<��?�t�;�f��_0h[�����L�� dpO|��*ӭ:n��*Fp���|;��B@��ǽD�'�zsO�?��l�!>�W6�����T��~b�5�T�g���e�#�*�U�/�3���9۽Y`r�s�1L��W�iz���w-�ݬ�H'����0�T�������<ⲍ��l�z0� ��^��>R�}��(���?���wė�����V���ԏ`ݣ��� =0x�x����f ��<�&�A�U�s� ǿ�~OZ�w/ *v�A__��_����Y[xC��_i��+=p��[/@������x�?"�n�_RX�^/Y���������8�T\����>���-��@�%Ă��L��m�RX��3�z�����g{�d�7$���(���#�>����uc팿j��c�`kI�8*ѷ �y����{岎�S���E� �l����־c�����K��}��v~L���vf5��W��� -��c��9�&Eú��` �=>R>j�u�.���~#��"[iܾ��]O�2��_�N�j�ga���r�vS���kBn!��(�y�|�!�3�� ��Wa�h7Eo���b^L���� ���8�ON�T1�������R�g/�^i��+��rv���O��вƍ�&Fg��w)x$ T7̶;᷎4V�>��C��,���� Sx���^M&��[�ѵ��sp>x��T��X�2��p8�⦍��z��ŭ̍�k�$��G;F��y��beG_�x����%z:����5_Ցqo�r5�uy��Vʟ6�l�Cp�t�8>�U}J� ����h�0�"`��7�p�á��x.mZ���=�3�+��.B�����9�9��[Z�p��-��2$�H���B��*B�u���F.�V�h�3Ng������ ���)&0AbO��&�����u_� q�k�ݙ�� U�R ��9�KKk�7LD�ٚ�h٥����7�`g��l?*�v�2��[�<2�42YF9���n@��,�i:�H��� ��^E�6�&�Y�����66F9���H�D����𰼴�c�d�z�H� L���Ir�w��7��(�I��7К�`��� Cܮ%؎R#��p@�I�)����,1Ȑ���3i����S4l�Oݐ�?('#<�R�qr�d0��� E�6��V�ȹ�PÓ�=�͚\���p�3I��r�$��� ��ҪCsq��,ֻ�)�g.eu�O@��w=)��� ��$�a%���l}�)̳ ��I9T Cp��CK��T��g����]��Ʊyys��;6����郙b:u��y"Z���}�T���v�F�����ӥQ�6wOm$�Vl��H����G>�����ǯ���#GWKk�G}���$h�$h�z�v����:�k2'wӢeڶm^\�8fe',d';H�� �^C\Xl��ڔ���C0�3q��뚞�#��Ӵ�c�f�5YЖ;���9����tH�AZ����G��;�vd��!R�`0��3d�ӎ��)`��7��3��=���>2I$�6�~i!��[Hoa����_3���c��*B�H�1��ޡ�]�jP�5���yȶ�H�A���/�0:�״�Y�)]�"�o>��1n�:�����ݧv:����}�@�y��kG�ٞhب��Fz����5b���,���ky��@�b����0>�s�c�#����d���ы*ݾmĖAa���#&��Ճ��։X�� <�8���!*��+��0q�ޫ�t����<���M"ۺ�l$���;�s��8njh ��[��RҖ�D�Dgh����� �~���������m1v�2(.�Ŋ��}� (�J����3;ò�u�yH�6'ʍ�o����$�\��[��,�g�m&�[i����Up�H�r89�H�⡸yM�Ԧsqi�1"�������v3�w�Յ���Զ��\2��E��� }�1�0��5�}�ר�u�$��>� �{<�$q[��x]�����x�y�0����G*�����:���HV�H,3�>��.�SL����.�v+2�-����xϳZ��;K�$)l�ln�$���v�;����c�@#���I�ş� Kk;�X��8�F��'��$b���xym���ky�L�[60�^H�����]����sL��K��X\���q�sK�i=�1Eax!�e�]�pR �2T}�ȫQ��x�ܿ�^ɦ_� �b�m�/�����T$�=���~�5�Q#��Z[_�� ĹV���X`�֫�Kb-��Ī����q�6p�ǦH�7��p�M�B���!dc�� ��G��a�H���j�m� -nI�a/.��l��u�IV���߂.�=�J�W76q�W+V�G�]��Nq��y��k�FX���hͻ�R��8��<2|��L��IF��:iE�V�3��g� v@��r����y�c�)�6{>����g1�L�[G�V���7�t�楧CH|�_�:�7r:y=G5��-;W�5��;���<C"���#{��'u�Wm���%���ڑ�Cp�(��~YTm#i���Z~���w�E8����Lh��ׅܸ�9�<UO��uf�շ'k���(F? I��<M�c��f�r�&���vk���ۑk��d��R�ppy���Əx�^�%��l�@�Mg����<��1��Ƀ�6��/����]I�O j6�>���[� J�۴� ��є��r� �xP�:��]�4�Ɗ��&�rp�H�Y���la� ��_g��S�ìE8�_T�����[g���U�>G+_�s��t[�Ff���J�p�6-��3c-�}zW�|9�3��b�Z��q/~@�� ���Q���eӓ¾ �����X�a�D���{�]#��9�y�= 7ž5�ӡK�j�N�ݴ�� �K}�����&i$����8���\�xY>�~Z~���R����������^��Xh?�&�T���Y�@�''8�!������~ Դw�m�� �{�����]��l�UK9lÃ�g�<]��ʶ���x�,�UC�4�!F!��-Ӿk��<E����r�m�;}����\g%�<�S��\x,�F��:����_f�̓�K�]/k��WU���_k}�|���4k�:�אַ�6�j�L�7��0�ۻ�ʎ1��H�ΰ�W1[��������,�2��'*���#=�yg�o�ڧ�m����,�1,V�G(/o�����<�Zi!:ɾ�Hm�p�p��V�T����nOPד���,T��z�_�ꢧȔ�,隍���Tw/y<ۑT�#YAl.P��o=�{�k�������o��t��Hw��-d�FNk����;���d�M;"���u,0�y�yj��Ţ�t�ZD�We!�R�Bs�$���8�Ň�����I�O��G�8��4���&H��euWX��Ui�}����e=2Ny� u� <M����ia�\��+��k��E ���M�YpPc���:�m�R�'��塚["�yї%KIIR���:8�>v�[d>�FmGǺ�6mn����g�3�v�� ��=~����(V�*��Z� �ok����Q�R1��.�ROw���ϥ�U�ӯ-��9��<NQS��R2�rs�5�C�^"־�y?ǽnk+�A6�¥Yq�6�d2Ҵ5o���/ �W�_�� ���tMg��+�>.���Z��~kƇ�9�Y��/�W���I�j��w�-�1�V�fַ����6����z����_���E�o�e���-�~1��ԦM@�y����%yc�a��G\q^��mF������-��6�����(<�[�����A�Q�g�k�5?�z���C�B�������R�V�����K���I����i��6�LX�M�>^����� �6�3z����z�s%��F�:���W,Z����Iu4ê�r��螯���KmF=7G�����:�7%�7�����T{at�Ko-�~\L�x���n둌�܃��Z]����._0�K�9��H�+m�$���Z�f�س�gC�M�l�����d�+ƍ%������}���b%�=��qoE0:�q�8l�pA#��j��b�`��K3��F�Tʜ�E��A�UAv^����m��bb�mͱ۷A���f�I�����YL^��̑B�e\ʫ��0��xmT��/�X"�d�A�?ѡ~��)��� j�jb����e^��2�<|�'q ��O<c�����E���J��2j1�dž%��~�b����Mgx��r���M2�K�P�[Z�w~}ܛY����j�z7ȇ8�]T2��-� ��;���r��ή��P�Qy�Cn]�d])`0[%�$`}�H�Ⱦ#�k���f���A��.�n�����\��NN>l`���$��Fu_ �����K�����-5�����Դ���3��9���P��-���^ ��H���L�6��il��L0�8c����] {x>u��RJ��m�vջ]]5S��>0W���z�Bx��z�K20��/yt�b���o5 �l��2#�䏙܅�#�º����O>���]�'I�}≃,$��e�@P�9�Ҽ���/�L��w�:�����s\�̺���Z�6��x�c�7`���U� �YxZ�R�<}�oi���W-���/��c�݊)@�F�����ҽu�S�Bֳ�xɧ��GͲ��ֶٜ�X�O�_����;мZ���<c�E�}CO�f���:As��x�C*�T 1�v��#� �7+iw+�y��$[�͆N�8P6 $�8����u�����Ȳ��O�麟�^56�˛y�*��b9�#pFpf�>��K{mK�:��^9�m_ZЛ�>�o=��`��+� RT�}L+� ~�.�\�_��Yn�ns�电�y���R�����o ���m΅z%�,��F�hCo�`G�_ ��q�g�~"��9x��N��x�YӚK���isK�[�Y�&&@]��tY�O߉�O[x��zm�o�LQ�Ei�a�]�m�;m�e��dQ�> \K�47��^��:w��:��L��\,*I\�/�s�N�c&��꺻�t��vz�;�/}�ݫ��^��w���+���x�t��L��9����Ls�����_� �z;/��͠xz���T�cӖu�"�{��1��$�Wg��ᅾ����xwC�/^d����S����T|�B��@|�g9�6҄���˭��ƺ��D6�)��F�W����fy��Q����Z[K4��ͧc|>�n�������6ZN��M+���%�u����i>�[}97�}Ӏ���`�{��U���N�����z&�E�2C/�u!m�7<�l�du�x�hR+X���;�$;�+�vd��sX^.��jI�S��ڥ�(S�bSda�u���g^SJ�vZ~V_�~gz����h��qi�Wn{ �H�8�J����$���K>�;���(�۰���*'RGR2j�FY�$��W�'.��s�YJ7J�h�j�8P1��&��u�qKq*Z�L�Fy��+����6F�� q����ZW;�h�`1�ֽ����jn���>g�q^]���s��,���s0�#<��ڷ�O�k�֭v,lH�rq�m{�VY��Br�[���'�����)4��p��=�@'��p^��e�_\��'��� ��vҒ���W�?vr�gc� y�0G^M`\�VV�� �89����7i�w9&��{��-o%�N��\�(�m #n��?U�{���<�+yd�H28�cּ^u�V�&��*8���=5�ل�a���95��:Iu�r�z����I�[G)�Ă}j��\� �y��Oq����S���%��_��?:��O0�J�eU��R�+��~�f��Ok�;���0�c��^�2;`w��Z��#FVB1��j�M��l�|g������v�y/��S��ϋ1''���:Ѣ������M�D��[�#ݒX��Y��8궾��$�v������ūY��+oFF�_�k?�n���ב����O��.� ��.�0�Ҹ/x�[�4���H�ǩ�:��XƔ�ڒ�D�WݡB�775O]�g�c��c�'�=뻰��!�ux/��6Z���b,�� �}M{�$�E�He�N:�S�\�;��N�Uǎ���#�.O�&�{k5�1�3�4�0T1������f���9���[F��O>�hD�DGc�jl�aN@�jeM�p���Q�ȩ�g�]ch��''���4��I���Z���w�m�OzU,���;�[�����&4`�4[K�*�d�r=�i�U�x��2�T2�r �4�Rm����=j���h� '�r+����Up�$����K���Ģ�j���X��\u��Rи��$�������=�)�J�������� `��v�k�4���fU�`Gz�&xZ�R�*-��z��2����+�WT\�*�Y#��H9�ȸ��SE�8<z��i������yiy`�%��6��ʺ�=���y�m%:n�L+���,0���K$[��MN֤��n�ݏ�m�ں���#ꊦN�})�Z���O�Z1������N0Fz��w���Lʆ���9�� �1�kFKpc$s��?��Wp�U����[Q��.[����oc��g��?Q�U�&�|%�<1,���ݙ-�y�~��T��ǚ���z��<i�_�j�-KM��z<2��r���#����fv,Ē}k��f��+�=�}�K��2��t���7+�?��ta��q_)�\g�vX�1+埓�=�Ϻ�&h�.Z��~���7�9y�B�A�.%g<�c��GcYW%�T����ң<nOl㟥E�s�W��,�au��9�0դ�K�7=U��цA�]�o�Fm�kv��0)����_�S��9P��:����~�����=�ՓZ����uM;M���G#�b�4�9ا's�5��~,]hv~#:��[x. ���.��Gps������rZG�E(���%���@�wN �ּ�R���j�1k~���G�Seqon���v<���=���o F�ە�ke��ӭ��O]�c�ͫ��>7�l��Ađ��06W�2�C���g��Z�o�i��Ռ�)ȍ<�>�&e�cnB�F@�b��V�/�߇o|qwl��U�^+i �*~��ֵ�d���n��a�[H��C!o0�}8#�'�>��ZJj6�k�/������H�oD[Xմ� �\[�[������#d��F���ɥ��4� ��r�+�$!$��1��I�>��S���Y���tqڴb2֮rl����rL�����bP�� S�����yҭ�_�rҹgY������-����Ř8���<���Zf�e ��I� l��1$R��D�F�����W�i���om�'%3����sY�͕���Akb|�6S��J����~C���H%e�pA��!��'�Z��`�j���Ԛdvj3 _(����OT+b�^��Q�0[ۮE�z0'�#��g�Đ_$�n�Z�����څVI=nJ�;����cw,���E{c��$0�Z��dWZ�v6��N�M��N�2C0�8��{�^��Q�{yH�hFp;t��jv���\��È��o�X�;y?Z��W��o��\v��S�z�%�#�L����0y�di�1�Cմ�2JN�"�D�d� �F����]:�^\�6^�o�x6�È،`�3��Y�6��]O%��B9C����8�Nj�UFv�n��D�Ԋ�+�Vȥû�O5�"��I1�;�#��q��64�ZŨ͘���Td�yy�;u���X.�7��)�(IS���ǶG�6���4ցdتv4��)��ާ�8�7��ԗȻ����y7̈��y�v�A�O#�z��o3���!��G�ʅ�x99�SA�O-��Q�yxԮ���\��N���G��ݾ�4��Vcy �x* ��(u}�_���;y� A�3n���))�8����ug?j���.)������NWh�#�m��;�0ݲ�`���U���hT��k=���RG4���L�> �#��'4��j�5f^��GrO�]����d�`ONr9��ӵ1mj���O�+�� ��rFI=95�q�5��[m�R:c �zU{�m �k!�l��A���Ts�q�T��`��Y��h�qon��`�m���� ͐}�>��{�(a�ⵌH�'�&U�#��/�^�����4�;}� $b��&��3d����N�C,��1��W j�+��X�F�Uk$�Zt�����BK���K`�!�dI#�6�" ;��*=�{Ye�_2�J���E���u^Nх u�*���G�xoI�X�"��̟2m��L�����㠦x3W�|[��kd�^[�*� ��]�o|c��Q���W�{y\���_��f�5 ��R5�h��X�ci�~t9=�^�MK�����MHF�G�s��,xi!|�,Nӑ�~x^;;{��qp�Z;X�QJ�.�uQ�?SYwo�QH��H�%اj��v����gw�_�mG�˛����\#D�.�$�P�a�V8�23�S[�5��ܭ�Bo-�a9]�01%X��T�z�����J�K��#\A�)��y�rH�ڑ$��V�攣�6�E3��9VPO=OZj�~���gb��m�|&�v r�(T���ۃ��ܩ��ڬh��Y�M��y֠g�R�sU��[In�K�v�DbK�Rbnd�<q�j�ڵiY�-%�DX��6( �YGS��ץ)WQ��z�^����MX�_����<Q�c�{z�b�|g�`�yծ��&�KE%�T0r8c�z���%H�m���V�s����y� jkw�=���ڙm�K(f'�]����jp���Y�P�(����e�{>�(FRNJ���|��?ğ��@�zv�{�ج �~��6~P��~�n+?���u��Hj�v�b�=j��3( ��p7v����zkj�;[UÕ�{�ZW'9 ���X����t�O�F�i��"1�\*�#��}2����*4�]�������� &���Z��_���`R(�N��>l��{ץi��-岷�ң�|�M6�`n�gh'sc�'&�ҭ'��㼷��T�ݴry)�B�%wq���+[=M~�omug� {�21��ҐG9#ڼlNg��Ϛ�K���zۧ�Ɯc���.�1�u}���d��J� #lecPW'����h�XP�%��h�Oea,.�#�<�t�s�s�b�P����H-�}ш����q#iG��OĞ�.��%�����瀡6Iq�6����Z�ד���.�+�8��]Bso ċ"�'���vA�cj F�o��� �~��Y��"�8I��6A�0l�/'�{� ^�Xm��n��Q��x$�z͝/�}.X#��R�K�~8V8�����G��Rko���X����-��-��MbVݰ>w$�x=��Uu.��.��ٶxm�1�L���~���с�d���J����m�+N0� ���Ny�㚜\�Ϩ<�l�Ӻ~���$Tle����� �֪8�F�����j��i�w,�̂�A\�98�*� +M�O���q���6����BpH�dc=kr����*\ov�Yg*n[ ���sS�e� .�+��a�E��y�c��yd�(<y�%��4�����ܕ���h� Dd�� VT� ;���7��?�����Q�^f�ۼQ�ݖ���A�#F�~\�z�\��������y�%�Jd�����r�a�,����^ 8��c#����Lľ�M�� ���'�]#Z�V���o�� �+sz[k�i�n��+�EW{+�-��Ea�/=�1Y�u� Z[���ݥ��~����~H#��Kc���^Y��Z4-e-Lj�����gM���f;�n��_��8s��,�%��c��'IѼ+a�Mo����V-F�%�r�^] ��`�<pFq^�$ĵ�WD�}�[�m�q�����u=g�>2�,#�o�6�Q���-L�1�[����i�Eq�5�A���k��v�h4����9u ��];�& _��+�����C¾!�.u���R�_�[�P�uy2 �dC�1�U�� ��_��5���6)�GU��6�9��I�&�����095�8L�E�)^��VM]wO�_�8g^��ӭ���l2���������^�����#ZѴ�Kh^�����H�ث){��I��S�&����:֝��H��걉?�fHD���V�ۆA��������S^6�,�ȵ��������2n@s�t�ȭ+o����\h:ޝ��i����jG��X앉��� ���Y[�Z� x�h�t��'���&��z�1Uu�u�]����������Դ���Kqqet<�����cGY�S�%�n�˻5�-�OY�v����I��qJҩ��Au����w��3�;m/L��>xj��Y��"ԥ� �\u���Z2��\(^8��/�5���~�I�m�՚�gY�i��V�8���6�¯ �T��+��#-�}{7e�M�}�*�y�GV��\��/x���:6��!�&+iͬ��{��v0�1zkR�A�ML�|��:����$���o8��0#H�!�1x-�����|��/-o�����r]��V��R�)@K����}+�4χ�k�������ѣ�i�].����Cm�U^��3�5Ǎ�5'�^�z]_�]�}�)T��J�ק��ïj�H�u��+�]��ť���� PY8�~�y��d���s�?���{��+����M�x��̿3�[(�@���yz�W�[��~��Ӵ�>+kiwo� j��"���=yE�Ծ\�ia�.#�7�����rZ��GV�������ߋ����0���_�c ��Vۡo\�Z�Vm#=��Բ��[DQ�AV�q[�R�^���nap�V����c���z��)a��[g�g����+I�F���{U��Sv�\�J@6�b#iun�>�}kȞ:u����|��N1�m//xXڻG�nU�9`ɍ��t����y.J�eK�1\�dupe��Ku�x v�����M�&��B��6%d�Ab7n*���c҇���L�jD�2����)�J釐ߴ�2�ukw38���\7�e�p�����:}Է����$~H��U �͐� �{�1R�$�mbqa���Ōr�.�N00T�'�5J�U:����#0�`�͎�sɯK ��9h��?���a��������M�<���k&�X��F2̫��H5���Z �\���v7����������_� }73�ne�j�VK�U�U7�� ?Y~ӑ����1�L ������� �E�X�u�|��x�H��-, ���7�/����O{�����5�N5hϚq���P��=Oö�ߏ��uE����g���������4��(�[�G���6��v�\�6�[?Ν��G�lV��cC� ��W���e��WU� Y��]�����M'R�\d���<Ike�\X�z��R7"/&2WۑU���[ �2��͏#v]�Ҿ���]�E�R�[C)/�Xt��Xo<5j��9Õ{W$��w�X�J0O[��ײ���+A�٦�G ���ݟ���c���A�V���몸�āK=�+�^�6�I�A����X�`��w^U�����8b�,�{q����9<D��R<�o���:���p����J�4Dc:�F���QԀÒ;W��(�?���Kk�h��Z)&6�v��z״j�J���tGj�g����w����ms����&�d0�ư����f` ۑ�����IJm|�7v簬���i �I8ܹ�\p�jۖ����9���F1/�g�by�F�E��.y��f���f-�ʝ�ҹ��U� ��J����Ҝ ӷQ��="�0�v�@:Ո�Ӈ�89"��;�k�}�v�f�V�W3�4|�5�NQVq3w�_�� $�+���m1�/��O-�bN[�@y~��"kY�C',H�+Cű�\�m�;-b���E���ܧ��s��_A�b�P�:�i)�GM���C�Ns��emO���'�e���2�&h��.Tッߚ�i�=�j�y��m?;,}���ú.���%�a�v�w��{ �E��Ud�=k�Y�Qֲ�߭�C����Њ�:?�$�%�m$0��Yع��z��&|7��֛��E|�m�ݬ�������U�T�ʇz����J�4�:��<�<f(�<��@ϵN#0�!G�UR�g��q����%�uo̹{?���Xծ���]6��d�p��z��g��K������<��[��]o��=��-m4q���*1���0�=��Wp��Hۗ��T������d�?����nfg�:�ɮ�eC*��&��g�P�Ӛ�ehت�rO|U+B )����.e"�u=}*X�@In{梷�g�Hn���o��M�٪WM�"̄4d�95\B����;T奉U�g��1��OLcN�`��������⣾O-_���� ��4�E$ ���iOD4�f�Yp�q�:��[3�$�ڢ��.W�?x l���m����51�KPݔ�1pb'��O��W!w`t���{�$�H��jY�9�'��X�)_�C�/;�Q���i���*�ہ�J�h�غ���뛍�9P��ֲ�"I��KVE�M��euVܽ@�|��wᕵ���Yõ��\���������y�;m,-�(�uZ�K�����>��4����~}x�J��n�x�+КȆLK���q�_Z�^�c�ӪۆnH`9���q�k�Qth`<;W���R䞓ꈩA�z��X�?p��dqH֬�0���O��P���J�[]̔]�+0�7�oZ��Z��dh�z�Vז�+2��N�5��y�����qJ�2����gB����bf\��-�MBR?r�r+�d���s�i� tT��z�&���缮7���?��ƞ�T&��7�r�'t�z2���k��{����O��K(��_�@olta�q��B.�����`����SRе�mGH�������<M�=�DZ����O���Nѭ�ik����t�v+����9�K:I����*W��;�-�_�'�gb��c��c�9��v���x�tI���v�vq�3����f�gP�C)��܌�:��X�f�娭il�n��~�N�T����|?��^�M�b��U�Jm�T�,6��q�߇>$}:�t��/]ԣ�Mך��7�۾���c��j��MNBƊw���Oμ�Z��~$��ҍ:l�+QP��8�yc(֤�֊J��ѷ�����waF6w6V�&V�Я"����^�V/$,?�I�ӃZQܵ��sZJ$�q�91��\����S�����c�,@e�?�Ml_Op4�mCF`�JC�hARF9���u��(N�-F��M�{w�5�-tt�ᬯ�f�q1�o��x���pc�%��.lw��9}qߵT��}Va�,���l�u��V-mXY�̅�;���e��������u�������!����O��?:�q`��S�,ɰ�nI���J��]�X%�C����T��X�)����9�c�Է6ې�d%��b[���[c��h�g���{I�)<ϕ���+:k�7�hQw�6���ۋ����@�-xr���uɪRkϧ��L�K��mV�O*he>\�0�Gؐi��m ���۪� +m @����צ(�[6�I,b>c��!�����#S�)��$��8��������-q���hvKR���S�_pH�Փ��,r\@�鴦ؿ��Z�q ����ᐎ*aqo#�+32�͵��>��Tי�h-a��e�slpE�i��)nf��=�R��n�o��8���I°�ga����i$�xbkf`�BXq�3��ӌ�6��5C.�V(�FB]v������4ԎK�%��w�ѝ���gGrM���^K�ޯXC:F���c�dn9�8�)6�p���q���2~c ���=I=kƗ���X�Ou>�{8�B����<��k{O���+k��Dæ0��z]WN��&���&��ddq��O ��E�R�F�{�+uKf��"n֬�)ZDl�m`D �"ݾ࣌�玂�'��`�&�G�]���J�Z�� ��G\{Wm�Zi$�K�&���,0��s&I��=)>��zV����4���-���'��־Ν\��8�+TS��Q\����W�s�ƻ\�z�� ��7㏉z�wZ���y\��wGi�z�5���?�����H�>ؒ�1>D.�ѻ��9��{�R�3j��_�a�Z%��,��YP7�:��f��Lt~�N<��/�O��)PT���e��_,Z�o�� wo8��'������6�����X�Vh�Col������"���jz$1��d�|�_C�?'�J�/�I{k$S�[�܌; q�u�ʼ�VW��N5�R��^L�2M��h��q$,�O&`�'��Y��C�X��#v!�}�Eo��=�2Y�Z ֥��n%'��}�V�?:W`�����}k�M�}���j��p�I��D[��̪GL�ޚ"h�ˮ˅ هP�(��T����sϩ�*ͅ�gI&hwa��9'�g��j�����Gyy%�PGp��F��3�<u�;<���?=6?��XN���~�^yYeFUR��I?AW.�njK?�Y0��>�_Z�7{�J�`�F�4���)��4v�p�G�/����V�6�6�-Q����4���גy�~�+��>_�~5Q#mH��s�3W*�Z��QV�f��J��1���v��@�MBѓ[���>+�y��^��z��vM�$�+�������7��p��s|��� �8'y�Ha��ׅ���@�d���sқ�]�=��[�31����RǑ�{�0��+�&{`�ʫ��V�RA}r��Q���&<|�ߥ5{Y=���i�4W�siq���A�X�o��Y�mnM,�O26���|gh$�{U�f�{��o)��s����>��s��k����5ݲ5�?kXµH����7���Vo��q�-���!�Ew�F9 ``�6[�g��ս�*�I.' �?�O*:g���<D���f�G�DE����0����23��v���K��鲥�l�Z�陁9A������O�T���W}����d��9��z�5�t��KI�Mͣ���qr��@;�21ܣ�c���R�4=&8��O��<�d���C � �������S�oXj�<G���<{�2얷L�~^Ʋ�h7��i�zl���i�������8N�Q��������&��I_��S'/gMk����/x�V�{y� �K=DԮ�a�l�[�FE�3$��|�Џz��1ce�wW�Q� ��a2[/䍊�?�9 !��[�w���6�����U�֗<�:m�W $2�0ʞ����+��ߍ��o���$1Gom�i. �]v�������c;�����>o{��Gf�G%i�%*��_�4��ί�~��0i�x����I�d�.�#ݗ{��o�a��Y�F��\X�{'����(M��]_f��a8I�✌w��9��G�γy%��j��,ż@z�v���Uz߂c��;[� xK���W7ږ�ų��2��<��Ҹ�V#�����[���r��Km���m��:�R���m��?�M�2ʹk�5�VPD��kڬ/l��~l��W?y��zغ�^��;捠X���ƃT`/�J�Z�g'�5�7��fׄ���B��q,<�8<�ףx�����������hD^N�n��V����5�.(�a��8�k��J�ӗ���`*�m�nϝt�x�T�u���h�����g���۴qd��qϸ��¿ ,��n.�|K�[��\��СS��#���=+���4k�O�-Į��s�I��~�8�[3H��1��c*���J��gbdҥ����k�����)-Z���x�V��^�twD���,N�3��'�q��]M���e����O�3�5Qo)<ne�\�O�Ij�����6A�O �����v���f�2�����W�S_���^�=|��A+M���^�-����!���}�C{mf�!�n-��|�x\�B����Sӽ%�%�#m��T�q�Q�7�-�O>k� sJ3K�Z��^E˻8��t�Edw�����2Ɍ��|~V���O��D�K5�#��.bG'�?0�J_j�b����12q��q�ۧ�k]�r4e,DPۃ;���0����.�9+c�P_��;V���O�K��)vA�_�I<�p=b�x�M�5Ye��'���d����y'�k����g�dY-��B�X�꘏��l/�]^��P��K��Qٖ���d�#������O�I�_��_{���s�����/�'9������ˌ� �Y\�%���01�Ph���>��\\G��"8�8��� {f�����"���S�+5��J�P�?]+� rx����p]:vx������<:��E�Zv��y���S�u�e#�&�ߌ�1�/�]�o����/q+����$�t�֎����)8�������L5R��7��,2�MN���D�2��>i�p�[������PG���� �M�w��~�4���pO���_������1'/��ȓ���_�e�HB�ZCb:�_�O��b}�6�季���t�S�]Y�g���ەE�q���}�:�����3^Z��)�r�����!�����e���n��r&c,�����k���'x?�:|�h���]$� ���(�XSr��g�o�ݯ�ueE;Fq�o���O�� ����|�g������r����� �����Q�i5�� �p�DH=W��ۥ}?�=xk���E�̓�c��C�l���m(U�y�������i�pJ�C���Wy�/�?x�}2�nH �PǕϵym���Y'�Ino�~�<�#�^�����\�7~���Vt��6�m_QѮ53*��+P���>��ϧ*W���^q��N���苼�*q\�%s�����m�\�c<D������Ҽ5��\�k`��8@3���������n��ӭ������}H�t�>+_�W��� �8�9�14rZS\�%SϿ�x���%�=#Q����f\�.�6=�'�:�:r�]��G�1�\L�_u}[l��*��� 둎j����ĺ�����o��/�q�rx��[.qq�k�l�p�R��H�mX��b`�I;�3\6��1�~��| �S}a��.�~o�<҅H�<2k���m+Ŀ��,7E������P�8�RU����ބ:���"�9�X�B5>s���W����[{x$��)vs�����.�m���T�Nz���s���^f�Q3��3��>q�=�a$��1_M�M���n7bP���㰯I���o}lv�-ᙆ+���7~#U#@�v9;S��^O�k����u{;�u{~F���J�\&����>V����y$�}��$���彝l|݅�Z��*҈��ȼZV�V�8�bRW%x5� r�-��fM�ȵ$��ޱ.�\�"�<5��F��tڍ��Ẉ���n{�Is՝��-�xٸ�W�m�d�Y� ;�@yZ#[������h��&Q���v�GM��>������-!fI��@�@=I�_|R���뚋[XB�D ���g���<Y�;vGK�B��S��d;q�+�_�^�\Zi�4�����f�Z٢�M(�-�4��K�3�F4�s�����5�B��x�w��N3�u����l4�ag�Ѩ�9�<��#�H�<��y���|�~�~��w� ��Y:y7p���ή2?��5�0*w�&�:}����+bmnX6���2�ŏ��ʗ���W8�M���x�f���$�gur)=�ֺ����X�4�'R%�!�p�X�{�����z�bo|Ae.�"T��������E;�C�5����aӯF_��zg�'���w>� �����q�@���?C��y�mBE[��y�b+K_�ʵ��f���2��Q� xf���^��,������<� �lc�=+Ξ/��?�PT��~/�)�i(ɴ��}��<�e�Pt��T��&1&�F{W'�Q�����<v�<1��}~��wd+�ڧ9��l��ӹ;J��D�{4,���Y�9��͆���qT�U�1�1�6l��"�wOM��2�e.x��>��qjM����(*Ŵ�ṋ(���֬5�mT����$�j3|�X{�y2H@1��+f�̮��ҝ��c%wa��ƨ�=�,Uc,?�K�'����� i�]����Q�VOp�`�y8^�Z�%���YQ�°s�T��ݪ�4p�W#r��\jIǖhVꉤ���8o��g�T�:�Ī�@�8���+���(����I&��� F#�;q�j���u��KV��}ʑ�8b:�W��H�(�^edG+� {q���.�AN@��ԓ�iq��|0_�O�s</�XJ�]K�G��<{��P�n$�$/%� ��49epq�־��7���J���#�hny�W��~�Y^>��Âyh�z��<�:�������Fj�(���.�I��`�TQ]K��#�V&�{C��tN0{�|�K+��)�������9�w-MpKg�X��{t�U�gc���)ӻ#��p v�t�3U��k_[���pG9��&6Z�C�)�$�����u�U��ް�G�G��HP���������qnR��=L7�f��"{c亶�d8*GBb+�O����MC��o�{�K��;NN~�$=���?^���\��y3D��q֕,/X�Z��O����s���"���n�t�5��p���j_~��{e� 3�J�g��9�ڳ���\����k������<0��[�7�KKk�_2[����J�:���[Ӓ��h�IP2�rNk��7ʱ�=���/ޥ�d�����hՅzjp8[���|� �֦�&16W+�pk\���X��`.2�����α%S���j&�ʹVX�h�zc�]����gNM�ku�Bw��7��9!�U����d�©i��G�]����Xw���Lgu�6��1ɬ�[HK��m�&Rv�g�z��T���KEa����o�A9����M42�}�"o��S���U��c ��L� ���l Q"ڤl�GQ����>mG��Kv�D�Xd�%pE3Ij_s������D� �� �Z���fP�@9ɨ��>�h�.>T���^���R�[JL�z��V�Kx���ǩ{>�J-%x���8#�*�������ܓ�eU#�֡��9n���������[���s�7���}���9%�� Q��hD�:����z �d�HPp������L(������UB:}�~'�Cqm�r�*�nF'�1JU�~R\��V8��^*k��5���P�NӚM2�'�Q��g���J"��H4B��c"o�6��}��[��[)vD�e��v��U͝���d��e�K9���:�g�l�M;ꅹ����pn�� m��q�U�{N��A�Z���J"& ���j�b����.�c�9���lɫ]���|�K�H����~�-&��j��>�u&Vz3���5k_�s]�HbQ�+H@GS^��'�G�[L�u�,�^�@�A����6I&���]�k}�DlTs�u�ᇃt� �AV�?1���ws�_Q��2�t�[��t��O��U��ƣ��9|�P�Ẹ�ٳ�Q��Nj�_�a<B��bRI���z�����Llr�������p�\>Cg9S��k˭��e�H�>�::���E܉,�ps��zU���bK��;q�{Ԗ��,&'wnq��xbi"h,����x�y6���~��G+��z�Z�Y��x�%�b7��8=��5^h���Nݪ8��jYmh�?�8��R�k���墄(�}��?�ڍ7P�f�)w:�Ic!?����M�+�ާ��T��i�� +\w����@hx��}�'��s�03�~��x�Z�.y�OO_ƴ�C,IW>b����g��w�X�`�3����ZR��c�� ����+x��1��N�Y��K��B�9dݒEs�������^2��^%Py�%�5�i"�5X�kw�y$$��|�/<�J�p�>&�e%%�.�V���{┒�Dџ�FB��8�ɮC��$�)��{�u.��?�����t;P�;�u�� ]�T��q���ۜן��!����6Mou@҉>g=y<���j������7�ȯ����92�-���� �c�����L�َ��PGF����qU| �6�S��R��S��5��bG<�'<��'Һ_�K����Ŭ B/8H� ��#���|��+��� f%���Q���x=��r���^K]����t���+U�^6�4}4R��j>� ��!쎪�9��('���#�����_i�&wf�H���j���t�9�]i��suusx�pPđ��Glt�8�]���B��m������rCn�E<��W=L JU]� ���W۾��5H�f��M/�F�m=���5)fi!ͻ��1HO=���Z���=O������팶ن[e�HG��ix������ta6�y}<�!}��4�*9l���[�v|P�tQF���{�9=�ם��!'Znr[[D���<b��k�'��!�|c㛫M2���ѢO)f�l��X�v}�¯����|� �;��֧�S� ����1 ������Ǘw�@�I=}��iѵ��2&����y�'�X�O�am�����KI˞z�3����L�h��+G�"�0s�P�5�[�oÖ�<r�y� ���H#��ٹ2\L�1*` �*�xd��|�l�^W�7���E[CJ�+94��B !�_���-� ��E �qޖ�`������#8�M��\<��Qc�k�Ϛ6z�D%�3�_2�B ?0q��������ʏ�/����s�i�s�l͟�\�M`k^(�H8�]����==�5�Q�N�=�k��¥xS�r�:+��!�2Y06�G_��ڍżV�-ܨ���hn�s\|z� �/#�� �����֮������>�r S�Y��W��%��[��߱�b��Қ�k�-�A�٪�" :~�����,����X�¯2ƽA�u��<��F�r/yNG�Һ�h!��˷�#Q�(�~���$b������z/��q�&���U�|,�nJɫ^Gm9Q�7�Wo�x�:YY�ڦ^�\��>�t��$�?��c�}�$�a5�O^�W������d��M����3֙������^�\�)y������9�)sϭ?��'�g_���@��5�8�\�9�=j%^�g�W6-^����S������k�rЄ���SY�]%������D>\�6�fD����h�u��=�-�R������&2;W�(a�Մ�C���jվj���Ri3�|{�b��Z�^�.��ifˆ�q��i�g�g�����fWd�o3�S��A]�C��&�rL�<���s�TX���O�Ʋd)a�����YJ��۵����)J�KH-T5�����!Il�#w�b�����[<��n��V��z��)Y^�_���۰����gg(&Ց7����;3 �h#�����8������$�䂙���I!g=��_����>�����I�t�kr�u*9�����4�87���Ķ��;�����wc��ͽ�eKfI��'��6�O2���X�oO�UmF�����h��$��ub;��+E�wm|���s�-Ny'����Ir�m�qW|#�_x�J�����RIUl~�j�n�K���d�`G�Si>1���d��ޗ�R0%����?��H�ӭy���|Ekq��آ*|譬 |��'x��e4��s�i�\�j�+�6՚�;Ն"�q�V �WO�~-����2��]���#ʸ s�9��+þ)�t�|Q�x5+{����.r��N:|�����ğ�6��V���o5Ӝ� �N2�_������mM��F�Zki���@�!:����ڵ�T�ۛ���3��]�{�RM7k�-N������,&�Dd�W�~�ϵn��go>�d-4j]���?�\��{z��Y���L�n���kx�l�G#���.�r/�{mJ�#�c��0��7�mx��ЯQ߱���8֢��jQM��������,�����a�.��STy��$̸ ��`�gH�{��/�܅Wi`�2�p�,�6w1��2y�,r����d�N�-uܚh�K9nJM%�!�����Sss��Ր:���$�ewo�s1��r4r�ǦOLs֧�|2��U�YI�%o�alg#�WTy����h�Ԓk�z�mIl�(+�>�����2��9^00[��c�C�|4���z�71Y/�-1\���kxZ�\s����e��zJ���iX�i�6%_2'�V��`x�Mk�Ԗ�RX#%�n�2��6���c ���C����n�zTw`�l�m�d�.#��|����(T�A*�W}}�e�<����u��k�E��Nݶ[2r��~�+�5 m<#��[�9� � �Dt=8�o���K�{�ь�L�f�0q���O���,�|Wy�V��E���b1��<�Nkѩ��S�ܪ[�i�����ȗ����O����_kw0hn�o%M+/)����^����F����5�m�Ocƻ��:|��pH鞵ͯ�u�m�/]XhVsO�-4�4�#��x� 무�OF:��łT���JI?1=X�'�槎���~�'MCD��w�m*�����8�x��=Σe�+������p��<���5�}h�%��R�J�(ٵ���|�����SRՓKh��e��n|�!��wu�����c�j)�[��������c��0~�0�,]�ί2}W~�E�˒���s|U�������=����L��kg��l���Z��nf�h�!="���[X�#x�WM�R2�M2*�� �.B�ԓ�Jm�����ֶ�ֺ�j��/yNv�#ljF=ֳ�Q��'%������+y]�C-��Zv�k�2y��Fy�}).L�7��)A�l�3��^?�?�2Al�+0�.��[�����py b������K�T��Qm,ca#��GZ�T�G���jێ�.�Gkv F��7��Umf�/�W�V�����(㺒>[ȐK�&����* l��;kg��KE܃��w;����?zশ�"/�f��a���&�b�T�,p�J��WL���?Zt�ϧjP.�9�)N�v��}�;[�[rב�b}�1��&�����ʽ��I��Ю��ܕb�#a���S����Z�0�� R��������4�s���NMD�y]Zۛs �y�a�U��}s��[�ik�_p�DA���"!t�$zU�=E�XH�@����5�4��$G�������\��ʅa�i�)"�B�s���Mg�Oo��_.�f�Q �_pq��d��i������Ll�3"�G�����ln-��3np�g�Ջ���V+�%@I'q�H��ۥ/eet��pl��#Y<18��q(!��U}^��]�{{�YnY�����}�J���QX �V1*̸�����^zTZ��I:܉e�o0I*���sҳ�#4ﶋ_�i����?�%�i�4�L�F7��|��I��g2���N�����g�6*�̪"w�ubAe=��U�?��~<�h�FYPP{�x=+�/���Z�Y����䪭=ώ�Ӽ�¤����Rz�I��(7A�˟�1�����z���W7��E����o<�s\�"��#|�`����J��5�Z p�h�>Wk34y0me=P���%�����W9 ֤p�v�� ���c��ޫ���� �UۼiӏZ�L��kTT6ius�V5*[�U}a��#�pm�6>�n����G,��8ʖ�Q��Uuky��K�������ְw��ь��֑���)�� �rk��gO� ~�I��]�q���10%�y����^#�]�G�f�x �ɏ�ޱU�B1�\ ����� *5�4%�|������D�~��/���?o�i7��V�d�'�א�P�Dƿ2�g���%�]�,�2Iq�����f;Xwd��>���_�w�~"�^KK�I��p�ua؊���W0�έ燗^�O����>� ����iv7��a*��E�����{�^3Z�V�e�z�*��h�g����S���A�ӱ��Z�����Q��>��_�y��&<��>�y�C9Q������G{���w���]R�r��{k�ʬ��n���|�rI�UE�P3�¦���c��h��!���#&�Ry���i�q���I��8��8�<��S!w��������S�l-!o����6�;IЫ��0� g������ �R��S��h<�����Ηl�d���M�X�����䤕���X3�ۣ|�r�����Im�j~�r�/ *r�\�X��T&�q���a���R�(�!��֎[�2��7F>BN?Z��F!H�����ǀ>�- V��A�>�6�:>F;���f��p����[�g�E�$,B�7�?:�|��i���lc�U�sqB�����P[��S~*�9�V�ͅ��qÝ�xS����UMR@f*���W�P%�x� ���m��[��H9'����b��d��zs��!��g�8-��+���"��E%����C�'-FP�V�u�g����+63�9lg��տ"+yy01߭Qկ!��� ���UN�vJ�xɺ�;GU늴��.�J�����b���[3+\6Nx�����7�g_���Gj��� w�z�|�[�Q�ɓKs��T14��#pvm��s��cK 1f^Fp�:��W���u��d�l�E8��@�>��Me�A{�+�j��}�.����*9��+�0�>�������3��vG[�?���$F��p!M�Ol�A��=㋯��&�j�E�f������A���ti����2F�ɴ���[��uo^յ�-�ݯ��60�����?1#ӜG B�H�O]o�^�nm�͡O�^ס���n��\8�ir_hn3��Ju߀.쬭u}Q��q&H�qԧ<s\��u KG]7�2�2���|���;֏��o�x氟h�%�R�:(�zW����T�y(����_��<jQ���3���Z��ھ����mq-K�Ϧ?�} nxWC���n�����V'�u8�A�֪ˣ��U����t ���*�>�����_.9:�I>��=����S��Z���1;2����%h�!�qZB"��,f���PqT|5�n�O��kk���l�j�^y8q���1[��y�2jѶ���@v�����|W^�c�IEt�>f�<�ß!�Pw�d�)�!>��k�xJ�m�0!�QC�N}�j%28��c��!���b�ABx�ҼJ��'�������J��Y��Uv��I� �XϘ0u�id��3�RK����ڸ��-��˲YYdl>R�C��7�5 �*��t�3�òy>�����p&7�!���X:�4Q"U#[7����ʑ��k^��nZ�$����J�.|Sqp�h��t5Z ;X��4��'ӑ^���5����s�5 �ٯ�kV�c��$�<I��F ����~�9�Z�7�-b`�?�?��º�>���qC��}�W����go���Wר�ODqo���a��NcC������kB�\���??8��e v�)(�$��5�]�e�k8����jW�U�r�=�����P5p5R�@O^jm�u������L��( � ��7~���V������R�O�Q�Gnԣ�c$�x9�*.��N ��L)�Ͻ<��})�~l��Q(<��?ۉux�/Kp8�y���:�ڳ��V[�c��`s�5ˋv�s��T�q���"���0�,>V�x(z�A��cU4�<�X���۳�F�`{��ʭ�\4i $���6�I:������08?2��e��,�%�hb� ���d��М���?(��6�+��H�����-?�锶q$�\�tp�B�ל�;�ޕ|���v��N�Vn6(��0A�����H2��Gm0H�_��̹ �b~P}G�D�m^�����$hbW�!��NIPv���̼�Q�+s������������H�a�UT�B��q����JU�-�{��I���Ia�U�-��f���*Ɓ�LDFFa�����2A�%�^[B��x��I���1)�ff]�� g�1�N�\�_���o�=���2�M<$",g ����}އ�*����C���'�\��f��P�9�^��k�v맸��k���l���m�pA8�H qU�I>�$ȳK*��w� �U[�`8q�2|��}?�������[_F-�sn��pP�����8��m��pH��F��,B�k;?*�:d����i7�Es4��qs(��|�&��)V����s���j��Wz}�zm��4�R��������k8�=.���j+]�xkZ�-tH��s]��ѳ��I���o�玾���t?l��۹�%rc���Zl��Uz�3�z�?�t\��h/�젚V�j�\(�BT�#|+��_��"zWE��.��3�+�-��y7ml�Gm��\��,���:��cy�ʹ��2��]]�^��{����C�����zE�>2�^��N����������Z�ǫ����w�|�˛�T�.F# ��A#%[���7���L��j���5��p�[8�@_,dGu�#�5�]|<�c��.���[υDVW�2K��g !˖�_�rF1^��X%&��O���ҘF�zɷ�v<���o�uH�I�i�F�����f��+��#8n��[Ǻ�ŏ�:��<W���E�o�[+1mO�R�����t����� .�m��wdO�� ��`����b����lQj֗p[j6����$��B��X��������63J8����*~�T�o�I?��ce˯K����^0��r��K?���DV͘�`0pz1��ā�6���kE�+(�A���{$�߶k"=B�Ȃ����JVE���f��z�$��1��m�jn�����y�<��y������z�Z�S�+���4��KW{���o##�b�9,eYH㑑��\r y�ƭ\uk�|o�Z��}��&���,��3T�'q�Ev��7��i�\:�Y#�I�Nxʓ�z ɞ�� �� e-�˧f)4D,�( ������8��x�$�������G�jzx��B�?�'����]X Y�J���EohG��q]�9<W��?�ω��2M[Ŷ>���&;-=���nU�!�lŔ��7�A�ȮgǞ ��V��7��ٮ���B��y)�k���!aI C ��j���Z�o�e�Z՛>,�\[�(h^��;�0��1��9)� �8�糿���{��C��I��ot9��..-C�y�GRA8T1���A�O�f+u��ZVx�J�:1�#��x�GZ�K�Z��O�Xľ!�Ӡ��? �r���&MF���)��%������)����xj�{�k�FkigYC�Q�h�� ��9��1�LF�v��ۭ�7��d��nZkXnl�t�A�'��I�n����䎜U�/���F�I�F�^L����pxe�>��]C �x�����h�%�6GM��9�5jݧ��;KK4h]VO�[��,[@$ʐ{d���:�r�]���טܕ���\�7�Ä]XʂT�W� �c�=��jM&���Y�;v[�Օ`��.el&ޠ�[�� ��5�"m��mv]m��9Vm���2�OJ�_�{��~&����BԮ��}�L��W���ytLn�*rq��t�-��#R��獮�V����߿a�5������Y����&��u}��(�F��Fn2��c���Z�e=g�~<���g�.�{��X��1s�z����k�|-���Ŝ�*���9hYVHل����!T�'��/�Xv��>�S�~���y3�9̷7d���A���s���[�V/�倣�W��g����;l�~�T��������������o�M�z��m�h>A��PN�r0@�O=3����^.6ojI���t�/ne�:��9j�|M�F=G�������i�x�ӏ�J�����'W��j�_X��K�R �!���$�r'���u��g�ҊI�ߕ��[ )AZ�g;�?�� 4K��K�F��bK�B_6P[�+�y�;�ڻ-F=B1-��&�XTDm�(bp0F��TV���=֗#<���C�0��`,1��p��t�,�Ih�o�m /��\��+aN�cn_Ƽ�T�U�;�/���)9s]�"\�WYK6����c-�����杝M��&(�KG��6���>Hnp9�D���"�W���ye-�6�J���jȒH좹{�[��L�*�Ѭv ��䪁�3��8�A������+|Ɲ�V��K{T�u#�&� ��c;�S���Ӽ� nme��2*ߔX���A������=����e�+8��ʰ�����*pxͻ[��Y]i�� ۫4�*2c`¹^Wa��pzt�w���OV;�=��ڲ9eKHȚ9M��:n�q����RF���wC�b��Hـ p�c8��Ux��V[d�O��x>ϴ�pK)S�l�W���s�;�gp��a�f�$�O�в�`3���29u�f��7�����l4��j_�\[�m팓��袵���@vm��'ל��i�|��I�|��� ����J��=�)f����Kqn�q����jHc�n��d�*�V:}�m���VH�S��̲`�p0Tc���8¤f����=��ho�MQ����IBF�(9��r�09�E �ޤw�=�9�u4m�#�<�٬ۍRk�k���E.d����,�Npvl�����xռI>��-<�"��ޠ9S�f��������{l�~�zU�zĽ�-�~ؖ�1k{#��a�b2~a��$���6�En-�XOk��Wy�g,�g}�3�j��ܷ�un����>ZG�w/%�lm���^A�zpj��k�X�&�%"#�D�7vI;�|���qC��tV����:mNkK�*�rDL{Q~u!K��p��������L��M?�p7#ػF0�!�q��Ea[-���R:?�� /d?�6,��`�Q�8�3������x��۰y��=�mC�2�a��FJ�zg:R��2V��"�<�uvx� K���eڥ�Q�;�7pv�+埉?u�j`�..#����]̀'������}�auP���H�����#2'����l �`c���\��Ŭhz}���Rdu��aŻ�.�X�OL䃃�Nk������=W��jW���Qy�̴c"mr�c�7Ӧ�5���L:y���:�y<vS^���|�Mq�� ��$�>[�UU�bg8st5�W:DI*<�utB�(� ��}ھ�����4t�9ꪑ�ܒK�s��s<(��e`1��<۶k+T���*B�A*`�Ȟ� Ncs/ �F����K��>��m��ED��1��I¨��X�a��G�y�5�B�b�rԜ���f��^�8�[��N�����1�"�r��+F�;��۷�j5�(D��a�@�s�M=�.��`P˸ތ��L����j�SW1r�!�[G"�Da��˝��w��~j��k�x#\MWA�4j���$��t�#�z{��!s6�V�Hc��߾:�O���Y���p3ۓ�$���S�B�Zn�U��OTc�˚4}���&�� '�\ !�me?O�^�r�\Z��W�W�ׅ�K�xWR[��I�|6�뻜����{���_��tE�yr ��Px/�%9�~����V+)���f���������u҄ݤ{TД���&� ���QV�7�W,3�k>����y�k��Y�k�G����(X���� �=wt�oR�1�e�&9 ���^�^������ �mjzݲb�kK�<����(���NA>�r}9c�xy$t�۽�Hk2����(+��bȳ� ���S�i b��늎�@� s�Ì~5$A�B��砨����G����֧����>��҂���j��u�DVF$��<⪝މn5�p;�q�z�0�q�Lb��Ԡw�����i9C��l�8��b�k4��^{�6�$y�<u5@����Z67{Ss84��L���[�R1�t�^th���������J�Y��n���.nb_�y��֓���S���7l�i�W+��iC)l����sm�� �L�*��oY��{�[�=3����b+K�n���XX��+���? ȹ�!VhњBǀ�b����]��|��Q.�8�fϡ�L�u %����0,�� ױK!���V%M=��R��Y q�29f��z�����'�D��܌j`��������� ?� ���j��Ua�l��I9�g(�эOz)/��MV�j"���6��6��e�=�q]_�t����{�(f���g.W�_n�kD��N����,Q��7��=꾨f��[�XͪȄ���t��կ�/N�Q���L!k'vP�lj��(%{ �}���p1ߚ��[�o�?Mux��g����Mj[�9��Q��>�,����26 �|��Q�'�����n�n~����Y�[��:r�4��ZuT��)�9�`kk{x�#%�A���j�t�ʹV��fh���(���Vp��/0g=?�t�D��<�|El�f�%v��^�xO�}���kxa,��.=��OZ�]�|.-�`���%�e�TQ���j�X����^f'5�c*Zsvc�KDcͦ�[�jcV��ћ�k���Oa�*{�H�%�����[۔�'��5�U�N�h��:���w� �M�l`�c��m�n/S�����6��`:�䃊�JS����Zb��:�k����t���j�'BYc�'$����Q�rPyjy%�J���EYk-��L.~�J�m>� �g,2FI'���F��@��?��sb��!���$g�v��8�l\(��ԣ����ݟ/��ȿv�~a4���)1�S�<��a�#0k�]���S�ʬ�FPqV�u&��%JO����f��C��]����U�.��c�Ӆ�0�VT3d�v�ZI9���_K��E/t��osV9OcX�S�#�8���!Fz㡫1�>��^�h����߭O�8>����㊳�����j�)3H�ՆQ�S�'�e�/�0����z��W4N�>G��R#c����ɒ:T�^��B)Cs�x8��U����H� u�Z�Hd���x��@�~���Jz�� Pǜ�9�!�p9�ᚉO"�<��ց�x�������n������8<���4�;�Rq���������kP�yuk3����1 �y�����ڸ<��O2�ۢ�b(@dw#j��G���-6�y~�-ʼ���J4��ލW�* ��~��ߵ��[y6�d���t`B[��L���m����c*�F���G��@���� q����*�*�����#q4�<J"I-+cp��ap9猲��ZIs\!�d!�6¨nz��~�yo5XB#�1�WS��2͔�)���h�I#�'�5np�����d>E�Gzc�p��w2��!��+q����� 1ȶ���pFNŷ�c�,���p�n茶d���u!u4 ��(��卿��@�]�϶OQ���f[�'��Q�0!C�GB�ԀOL`O��]ӽ�������:_��I.�Dv�,�o�*�˅�;�\00��<rF�!���ɵ�e�XM۰Hn'�sVOK{x�����>坃!�\���_��g'�n��4�|�T[�24�fP�1�3�Hd�'�S���P�܊��a`�ZY�d�;���pU9?6�q�Nk�~���H�r�庢�*��Rx.۳�����ſ�^��.ӿ�\�Si�ݷ��1�w@a��*�Tn�u�a-݉r.�*~`=�t�T���������0�S��N��,CSӭ���&�[k}��������*ņ����y��K��ܼ>k���u�%��a��* v��ym%�%�� b>t#�����q�<t���Mn�O����n_dhQ�������)f��1q�����ũ+Y��"ڬVf8��� ���q�E��e�!��@?tവ����D�X���8�̎�s�$F�3ul}�`d��q�=.+i�<3HP4� ��2��%A�k��X��j�[N@*^��H$T���vVL����)Տ-�N,MWJ��kK�&Kk����I�`���6X��@�G�em� �5K]-d�[w��67�L�I���0�������i�Y&K��-K#y�Y�E�F�ʂ�f8�''�V���g���z�v��Y;Imp��:a�����Yy݁��Δ�����,����]S^��ɛJ�W_���|s�k��g,m��� [��m�ؠ� �[ �eARG's�A�����-�=�N�ԱbX�1����S�$�����&��%�|!e�h��J���f�`,YK�Bw�y#���M��?Y��&�cl�&9������P �I�c�B+٫Bi��S�-��zjJ����g�_���7:ı�Go�7SYK2��o�.w��m��q���N�Wj�y��B�fE�$��8�����������5����1�;�ao�����p1ߥy���=z��+��ۨ�� g����02H�#9>���~ҋ�N2I=�m|����_��'v�k�}/aX.a�%���� ����9�s���;x��+���|a��|@�f� �f���&Q�W[ir!�vn;OZ��*��2\=����.�*�2|�˸�$����b�b�o<=ս�NQ~�(��eC30R[��Fp��sQ�R�������I)hy}����âo��-���ز���t��p�$�"AO�F��^�?��4�Z���Ҭi)�6�Q�R73"�*HS��'�u�+�����>��֩�w����;In�Ձ%���䏔pv�د%������қ�> ��ѕ$1�[E���Z���gv2�nW �n��oB�j���OH��+i��_������ ަ��Ǩ����."�nt���햯�*�F����1�#X ��&������G)2�m������#�<f�#�!��^�I���5핂^I��NXc�<�I���������^���Zo����V�?X�/� F�K��H�1*b�G�*v�F@8=�F�r�W����ߓۥ�L����,�>է�H]bkhq�*2 l�dne��M@%��[���ȱ0�dH��������2U����9:wB�M2��� Dw��q_%�(;wI�8�Ԋ�=��[���B�\�X��.H�u��u������I������$��fH�3c�A����mu�A+�ji�P-��c-�H��8b�zyC!C`q��N+z >��-�����`�$i���NM�FFXm��5Bܬ���_i�<�>��b�bp@$�3���X�k�_������4�.f�cHܐ�%��ٓq FrF�z��9��T��O�k;�~���w1�ke��s�+� �����-1�$�@g�\�����S��:�(�Z��ء�I�v����Y2q�d������ j�����1=�9�n��r��;�sdca������ӂ8�������5X�es H]e���/�>�����uu������>sn��x<e{㝫�ީGf�Io�F����+�+>�A�<rk7U'o��>�[In�����D��2Ko&�� 'i d���#����,�D�������W 9��`j).�nQ�6�{���rS�꼒ʀ���2H�9_Q����o2in�T�ͨL3|��G�8��b��Ke��q��i2�p҅�8I"ȱW?&�P�ĥs���1���l����xg�r��(&Da��q�B/C�}?~�*�����V;F*�0�!�0;[p�s��uV���2-��u��"��0�O�� vW��z�*�baZ��'t���zz���fO-������$�n.ʖA���u��Q�g���"[�,~t_�'����ӌ�l�cu����f�I�����p|���T�Z�5�Kkueiuqi!�1$J�%��Ӏy^��G��RW�����e�G%�S�r�Wm�m�2�팜,y�@�N�$�N%�g���o�I��*J����3�������oy�_Z�Inf��E��lp��W��^HSЍ�5v�+,�:���K;�LO�*�O*H �g�$Ҍ�����������]�[Z��ِEm�Pp��)b�w����M����Xo-Z�g��]�.�{���]-�Zm�6�<q���b\<Ь�LeN���s�u$�8�ՒF�eI���=Ēā�\�����s�R��w������R��`l�O��`�^Hd�dA�Y��#F��jƉ=����P3Eù�eWWwt!�t빲sVSQ-��ƞ`}�f �1��ː=�2�#�&�oi5��[#G#rU�vn�F7A껿 &.<�ֿ����e���[�KSA�����ےx,FF ��gj��u�E<\7���#+ �Pw�Pp��1��U�{�.�u�� [ݿ�%��b9另1�x${[���p��n�9�b�p�2I�q��(��yW����e�JVf[{Evk�%�+�u,_h�<3S�K��~��t�H.��{{���D�'*��O;N�3�Òz֦�Bq�=�\Ƴ9��l &�V��G�aֳm���Ö� �M�DXɜ6��`�:}i<C����b�{�� ���^;�.'��[6�\��hq岰��Ra� ��_�����N��k�h��C�l�d$�-�,�A�g���60}�I�D0ܲ��)��|s�rZ6����qM�&�,�Ku�i�T&y$�\�%P��*���(�����(O���є�ٟ����q��&�y[D�F�%I$�c���V]��Nҥ�i�#�`x���K�����n��ZC�F1r�VB�Tr�m*�������!{�]I���g��JN[nHH'�=+���-Y�>��rV�Y^�۳F���as�O8�;����R ���Y7`�ml�zdv��ri��$D���������i�l�V�_H�������85���dSx��\C�nT�'�Gѱ�AL����UT[��1� �g�����l�ڲ:��ۃ�F~����˸��6�g��(<�������jK���ᵋ{�.?�9$���$p)�E�C�i�2[][�x����Wc�X��̶{L�p�8�@q��Yqh�fIR�nr��i�#�j�&��i���<<�+����H��$��^�+lԣ$�a'���W��7V���pA�����Ӯ�O=����3�5\:c�O���fo�j� �W�g$w ��OC�5���:����an�+�_�}�N����Ϫ.�^"F7ޠ1��w5sF��Utuua뚒��(_�~o�̥{O��g|��Td�@% xϽfj��d@z�ٸ�!��s�W1]���9�RWn�G7�$����=�ռ���H�뚽�Y� �`�۽bH�Eq��擊��eې �1�?:��J�4R,J08�9��+��v8;�r9���y�N��iJJM8(t�A.�����#9�hP��U��G�q�R����}������;[|F����ף��|RID4: �#F �h=U+��X��@=W�q�!��f�����S\����#%�^�v��u5�$�4���#�����䀒���&�y��;=����z�¹K9d���|�zm�s�W�P���@U�L�1�~��<�4�!)\���,�2C�������0i�4Ѩ��1A�t�+c@�ʿi�mYF3��������Қ�v�~�����t��kDCWL��I{�{�kp����c�^��=^K^���6H'�TzO����9�7�1�W��+ �E�W*����3\-���B��e6�n�[�n��� �;;��!��B���0����E�m�F�"p1�WQ�h6��P2{�6�uB��bu$��zo��Ei�� ���]��|�ƙkq#�9��\��D���*�r�O݀�x�slV!�)���klP�<7mi"Q�9�[@R5�-��Ic�UKnp� ��Ք[MjR�,G��?Ju�G���U�.R4 7'�V]��Q���rMJ���U�3R+����< u��H����k������:*�rwW������cƷ>k�C���y&3nX�cV�:z�����p�"�g9�X��aY,�7��5�'�>/_]��=�¤�����/|_K-em5��X���ހ����~U�tx���MZ�x8� �IЃ�G��#�n%a����RF��}�7,Ğ �cwo{d�V���J��H�*F;ƭ#.xc=G5��ӣ�cf����|U�b�J\�Ȟ(�A��=I�J���}��*���I�^x��J�3���52M�x���'r�0 �݀����$z�2�c�4�'n3�Gs�V2�i�����pjx� r0>¨+�$�9�Ԫ�1�Ӿk=b�tFf�3��j ��9<��dr_��X�^}�GJ����ћ)0���9&�E!���!������1M�Q�5�a��p�?�� 8��Đ9T�H�u�w�j�+��HՉ���jx�'��z�I>oN��f)W=G�ҽ������g�V"�����TR�oj��p �Q�i����Ա���)=rN�q�W�N�e�U�=��x�z�����{Ա����]1�ƙaX����'�5 1���9�Wq����W-㫓����M]2�y��\w�@?�����e���j���u���N�Q��ۋYl�����M��?)���R�j֚A�Fh�}��o\�,,y,r���Y�����&Gf@7F�!2r`k;\ ��ċ8�d��8��_�J0��������Țe��]#�0�<��!a�wd�6�guf��)��$��Y-�l���˒�����o�$�/�^VlDn����2�z�֞R��̈�A�u.�l�_�(ϼ�y-&{cW2ʰ<H3��c���rzf��8~!�,%(�.Y��V!��;�\c�Z�b��Ķ奔��� \s����#Q������!H�lX�͚��z6�����VeK;מ�I �k¯�[�Ut<pArH�p8"��f����I#� �� '�nU�z`u��IZE��٬&�1�%I�P~��2D����L�2�`*K��$t��b��������=��n��+}?Mxm����lE*��X�[k�;�Vs�W0Z�#Gwko�32� i���c���?�cޮ]E�id���I�*�|����^��6hchm[e�`�p�R};c����������+Z�4���od�2̫���Fa�pI�H�K�$��[���-�ќg���L���;[�o8��H8F8��K�!6W�Go�'i�ל���7������ȷ}�Zj�\�j�WS̛^i�&�`�����#�\忂4��D���ؒ�8�,�'<z�;���b���M���$,��\�|}�;�j��?�%{�R�,����C���t����� n;3���-��jP��Uf��N��ʌ���P1�����&�f��O�)����)bx|�k�ݷmea�県�ֺ�d�~�ɖ�#i8�ϯ�]�uk��b�Č�{@*ܖ抔*I%��*S��Z����+5$�g����)��>xI���-ٷTu����&�?TҾ%x�V[���ܱ�x���؎�q����|W6���s�X[�Еx�h�����⋝C@�"��vb���Csӷ�{��HQ�U9=qI��O�B�/g����ݏ��~�~4�n��_���Y�����������p~n��{��|?ៃ��b�Mմ+[�9��n$�\�y��$�:O�a���_����|q~������*��#�v����Ū5݆��I���Q���w�jT��Z���u{rzY5/���Ir5o+�����y{�_�ڗ�|7��M���-��W�,�>�����Fqڼ����3� ������U��ȨA��xǥt>Ѵ?|��WZd����Ǿ�CV|���� �~Š�;#�.'����ҼJ��`��(�]9^�wiݧ�� ��n�z|��v���è[�I~��e����`EP� ��5��Saa�^@��ƣ`��ňe*U���5= ����d�~y^x��K�J��frZ2�?v��ӭq?�E�������w<{�Vv�n�}e�jZ^����x�%��m���%��T�NW����ҵ{[����?[��t���8���FӇ�`�s��q]���m/!k�v%9�$�'#�28�ҹ}{U�5��6�u%��4�m�.�9�䩏��#�\��崣����z|�_�]"����S���y��\jז�y3 .a�ϖ����|���jӝ���'��H��ndS���\r=���?��-�էק�d�k���-�0G8Br3��y���>0��f���ѵ�L0�N�D���sמGsֱU*�EE�����mޡ(-�D�!��e��]��a�~2�OΒ+y�D��f�iD�P�o�O�V%Ƴ>�'�ַ�8��|�C��^�I��±K�8c�>�.�#d��fO,���.��6��S�m�Ʊ��!Gu퓞? Ž�N����kK�R�#��5�ۑwTz`��J��j7���A!c7)�C�O�W��6SYk��^ڥ�J�.��sc���+��4��/����.\a)E�=?I]P{v���,�KM�(�9���T�v�&�f[��;��j`����@p:���5{] ?���ԴBd�k�2 ���Q֮��vq�}�S����,�-�7��vbpX�t[�?z۵�;����s(ԃ�����x���w���.�����K�tzr8���@�%���w �"���)�+�����5���M1��{��ՠo1nY�a�q�ٯ<�ǽO�!Ӵ�(�\f7�/�I���R ��Q��)�.�R_z���3Y�_MOm�Dzki�$������npO��W�|I�Jxkím��Y�i��~�&=H��������Oj�}�O���xʈ���z�Ҳ4����U�}J[y I���g���ya�q���AKUի5K��G��+�)O�����o�Cx��K�Q��|�+c�=�Mw�wm&��o���eX��=��G�k�>�;O�>�.��Rj:��/�w4�Ѕ�q����mk}��z��wgc+�3�XBx�K@=8'�g����*PM�]lڿv����⤣}K���9/�7�E��.�m����>���2F����1@�L�O �px�kI-�����)�����n�5�ƣ��-]�s���zt���5� ѧ$�������� ���%d2�YG��꧰�c��U���)�VH� � ��"��2t�eu$=���MM{4ot�\D�IX0�ߎ 7V���z����sl�������'���7O�SCs~�J~����6}���ޙ{^F�ܔ�V�]s��?I-��bSu `��3��~u���4�U�����j�<nA��-�H�y��}Ҡ�NjΧ:��4��W��J�9�r��jȎi�Kr�$@M��?�Zm䖐lC3��7�M�c���\��P�n���_�+��%�Q�c��d�rW.�:�0:qY��4:�Cnm�)6�Y�l�?\j������\ؽ���`P�w�G^��)�����u��WC�;��QUU�7ˢ������*;�6��2Om�_1[���{�8=z�Ҥ��Yl��2V3��@��$����F�s�C��β��T��FSԷ���*�j�|W/��[�lr1��ׅ������o!8��Kmyk�K�sEn�v�3�i���\W���j�}���S�����U���}k���i%�wrY|���sӜ�B�R;8է�k�܆x�����UI�J�[]������>7���^�nn.l즹������99����י�~���HWg��eFy�����o��j7|3�#�'���=>�?�����[�59��#f� e�1�c���5��?*�t�>�®IsC~njI'R"%Ԍ��������fKiKcj�z�֮�14SbX�JF ����������eIp������w<�EE� ��C�e�eVl�� �}�-n7��B3��0�ԓ�Z,k����������������Z%��ͽn�+��T��J�̼`��r�,��n������N�G<"��u�#����Rm��bB���F��Ƿ~�e�/��u�]m����� _^xS����sE*:�m9W�q&�]�2gq�{���_�/j>��OԦ�m06�Ųa��u�θ��)c��85j�WO3��c��U3�K�q*��{��q���f�Ŷ:�յ�H�( ���O,iqA��_�R��0=�e�������Õ��=�ݜsm8�z֍���v����둃���fU�� Q��s����E����O��ƌYY��`zW��� Fzt�o�::�.�pq��R4j/h4��O����h��`"�ߍr�!��9�" �3<נx��r0| *�$2�>��ׂ�)%+ H�R�f�G�+`'�H¤g�.|Enn��,G�_ӵA?�����@�'��銂�ᾮn�4�7ǧ�+����$���rܐwb19f<Υ�2J��4���/��oă�x+���G�����$� ���[c�;b� 'A�4c������o�A n�:�E����D���֭����W'=MvqX${F�>���#����_5_4��KCD`�� ���Gs�Զ��C�c��n%Q+�� ���A=�:�=Z���#��ܪ1���4`'{zT�h�$ ����+�Z�`d{�JVj�rG�H'ރ*G���zW9�x����.�q�$���i���{m�5�C,��]�������-cU��H�\ޥ� V�2�_Z��o�B�b<�3����şuK�[̺}���l �\��1�u�<���zE��Mx���d�E��Ns^S�_������b/f'$ׅ^�7��z�<�J��ɯ���;��q��<���"���N�Ğ>�5Y���L����r�쭆s����7=)�>O���_OK F��by�r����++��rO<��;�0�T�ezc�N�����5��fN ���/��U��αv̖��>��k�x�I�>�.���X/�a<2L~�z��6 q������GA�#�ӮLr��g����#��Nq�}���e�Ƶ�Q�������}��$����8���r{q�s\�?��%�[]m��@7#�=�wa�WwL��_��up�:���G� �MZKu��!�~$N��m���]I#���pb�<�\m�E��\�'�?z��2??��UW�pq�Ԫ����5��:#2�lv�21�5"I���j�d�X�}*Bǒp�eM�PЊQ����9�\��$sϵd$�n��X�L�'NkZU�tFf�Lx<sϵY�Q�U�k9J�ry5n@ �E{Xlbf���K��ҬG(u����$�OJ���g�{�1F�F�2��J���YI'o�5f)P;r=+���sE#R)09�*�R{�\R�A�V"�����^�Jf����=852>x����=j�r���{zשJ��w/���w�# �R'�j�7�H����&Z����ڹ�`6��{�����#�zW)��u�����MS�~�׃�!�7^Z?�ʫaK1+�}��4��?g�(�VL=�=���)RF?�W�M�,��p�;�c5�ci�ş{n�����ʎ���a��oҫ��Ag�#Ʊ�6�o=?�%�ф� B�GT2^�v[�nn���VJ��_�Ȼ�I=�7�\��ǭCy*ц������\S�F��;�q��A֒�ф�HU�>\s�f������4oa$ASi\`���Il�QF�ʃ/"+s�^�V��I�@����.Z����:i$�� ?v�s��������ݐۅd���,�@1���Ԓ$�%�-1 �'a� zƠ����%�����j[���xa�CƑaH#�ۥKi���5LM>2��-�����O�U�Hl��k��i�#��I ��柪$�g�(;;�О��q����*"��8�Pړ���{kq�e���7)T� ��,�mG��3�Ϸ�S[<�\�2 �Ө'�T��X�2G)f�`z���qu�"6��� �*G9������������O���}?1V.����=[�*!��<h~e�V��qObn�%��d�I*$�k`r��Ҵ|-ᵈ�����f*�B_1`J��������2$!�G�5�'��J0�A�+5f���l�Q|���F|>����%��$K0��3s!S�v���w�߳lv�Cw�.�����۔��~�z��6��=J=ua��lIa7^0@���o|S��A��Ak =��d���`+��b���B�Z�Qv�i�ה��勲�|ދ�5��{]>�(lckx�HX�8 ���� ��K`�H��n��q^\֟�K��]Co��� >� ���?�����\�>E����b���S�i�K��p�5~���z%_>D�p~�Z�����7��G�ˉb�e���r���fev��\n9�~y5�Ꮓ6�����I5�����qְ��b��q^n���;B�_<��X�sx�������L晩XZ<QEx�qH�����LJ�-M�.ke�yc|����g��h�dutN���[<<�*�����1��5x=4�<;��-%�!��Mr�q�s��XkMOĚ��p��i�7� �E³0���ϰ�<W�9��Yv;���5���i�����w7l\v�=��u��nn�>����_a�����;�8�@�;z�B�ks��x�1�Gןΰ�O��Hl-��r��RH犁u�Z?��,!��K���<�;cޣ�M�ˠ���c�KC"�� �1�ު>���H�rs��>nj��ͩ��vV ���=��p��r�ִ�������q}Ĥ�����2���Ί_��Q�>�+�i��$�Q�i������1?N+Ԭ�7��I+�����jD���n��9��۟Ό,V_�T0�ɸ���I����/K��ӝgR�4�ϒ��q(�S��([��I����_J�/��������\��g̱8������5��-���4�4�9M�S�eN6������^�\�+���+�Wrce'��c]P�[٤��/��y�_�Ҥ�.X���Wƾ�D�J��WW L��=�AY|a�[e��C��N�n�#�ޭ|B�<��s~f�[¿�#�[����\*匒'�N��%9�j�y������e�Z���<#�v��<c�X=ߛ�U�.���9��W־$xF]6����\Ŷ\FP�ߎ�Ͼ��xFؔ��=� O�zW�O��&Ye�jg*8�k��ͤ�<���kG�[��|�� ���2[�o�e�ۄ�]����@z��^����W�D~\�&�9$!���}k��W^"��[H%����HМ��ֽ����u/ ��ʑ)�9�O��a�)Gnw����k-N�M� �ޡqbG?*�`7'�ַ���{d��Ѱ��'����f��hc�g�d���~�Z��xr�+�$7H ��k��I;��%�lkV�\�����ݧ��x��K���ZI&R��B�������z?jMs����9�'_cT�����I���n �=�D�K�Q����jz&u�i�Y�0 ��1�����[�N��v�D���z3XsZk�1$dF�d�/��u��o�K�|n*J��W�-8�R��3��m�7H�9��� n���=�J/�ހ���^��b�zg�n��U�s�jė�io��c�~��1K����/��D�92�� ��������uS����'�oʪ�^#�K�X�F8��d���Zn�m%��52�O�Z�N6�D٭�p�R�Ļcs�^�3�S��o<v�\}�9�۴�1����5�ղ]����r?ýW���]��P���sӞG*�Z?��m�aqk=���)��s�}�:��xn�S�e��Yx!@FI�{�?�m��y�y#B�=�Z�m �^4�Yb�H����U����]���?�E"I%�2}��wĹ�=ǯ_����$Ѧ�o�Wl�G]ˌs_��L�-�8��Q�:��^Q�O����^LB��8篾k��N$��J�%�wFU���|v��3�I=*A��B}�����4I�B�U'��s.〬��S�_�R�ӭ8;�x�(J��d�S�+=�llۥJ�%�0�I���)��D�� �پ�n����1I^�I���2z��I���'"��w!�;R[���[�T�*�oS���M���G<�Z{7��Tz���'ĝ+�:DWVw*ᗑ�A�>���1`w�=���s��S���w�t�"c�ع����_ļ%�ͩ��\�{���3��c�7�?��?I#�+��9����@~���(i�%�"�9��<d��~��e�w9�6�,nM��9���=�EM]��w�� �N��Xry�WK-����+>��L|�c�ֽ<=|>27�������*9��\�G��]pTc�J�-''�z �+ ���cF�^�� K�����eq��jѶ�!G�сZ�(��Α�T�����N����*�H���b�۳�N���w/�.�H�9�F����V���m̓��0pH�_��8�� ���c]�Ť��z�꧃��v�X����5Kx�F}�T�,0e����x>0ivFM�>c琵�^2���^����T�M}>[���M�Ց�[B��-O��C�"��X��;��/��x��e�=s�|�x���V2O#��Շu}<�[��.�|J��<����5c�<W�kW���hǢ�k�ռKyw)w�ܞ�sXD�����>]�ëS�G�V�Z�ߕɧ��bK��$�'�/j:WjIld/J(�)8��N\�z �&����*1�9��m#�;piT�ұ6,`�����jnp M��ҥ�M-3P���Iᙣ�3�u8"���_ŏ1��u���*M� ��Ҽ��4~dm�O�5�cp1p䨏3���G��Kf�_�<����w�B�F��rj��FWp�N��<WΟ ~$�iGi���[��HܲC�^�j�Z�����Hu�5��e����]c���N�|�������~f�=NG=�y���v2{�{~�Z6\m99?�= ǦF9�Ę̲���P�qS+�s��}*��n��1�}�@�0ea�����o��gb�N01��SDHL�NI�T��=s���i���9�ұ� �2�R�x��X�r�ߥg�=}zԈ�Q���L\��s�36`�����U�f9'5��0xU��\�q�A�9�^��f�F�R�=��Hs�s�MeC(�8ϭY�^�8=+�0����jG&:�Y�^1�ҲⓏ��X��f���X�ԎC����֬�'���\r�ۑ��� s�N+ڡ�O������< ��ݺ�L2��=*���<w�Z�3U+�H���k���gV���`?�&��_>���<jO��x#�o���+T�3��S�o�F�'i���5��q&K ��u��2��BW���Y�M��:W��luuZ���}��+��#Uu`dF<���Ck��G9<栞�InT�y#�_z0�ϓ���]MF��ɚ8F��pW��LD��p�Ny��R\�\8ʧL���Җ�UVY<��J�~�5ewk �")�%%u=�A)��_�}�A秱55��I3��u�Z?)���Tu���N�a�����P��ׯj���^nTܘ�O�H�n�����/{F�cp�$ܖ��}�n�@9Xԃ���5�es#+��b�Iu*�^s��P�L�6\`�:�4�%=���.��������Ԟp7BS����j�Vq�)wv`=��Z���%H�8ɨ�)5� �H�k{�0e`à?Ҧ����E[$��S��d�,�{�^� ��������}����er��2��%��"����n�^����8�RM:���wL��kHI��-X,�[�R ?Q��MG��r�矔g8��|�a��84�D���b3�G���M�E�ɦ�"��� n��]����䟥V4�$non�5����!q~��78]�©W��Q�"|�ow�����U�c_�փ-����<�u�� >���ZO�<'�[��}v"��v��L��ֽ?ƿ<;�D �K!U����|��[��:�gXi�oh[�QQ�Ӂɮ���E�by��\ZV���:q��j��]nt�?h��B��m��]\��$�ߡ�ҟ�=x����Y�2��������8��R�5}~��[�����<�^����6z�Z2��D�DEpq��N�3R�ӗ�IY[��_������_#i�cݽH Z��{���&蘭�Y�ik]G;B7y�t��k�k�udpA9#<�V�\4�9�v*5cQsD��Aᘅ�ç;$m�0�� �+��4}~�yc�X-� a�e�z����۫aS�NH��;�1^]��T�ǭx�0���Z�B�����5�=6�t�p�����I��'�w6� $xm�;����@��e�F�Y�-�)�z�Gon$X�)Ek\3t����be�3�v1!���SX��#��tҪC{��n��x�����>�뽻��3�ԴYm��.7��?tצ|?�<3��k�>����ʳ(fC����i��z����6->M)�,b]���=;V92�`�: 5(�6�7k>�v��-)�Wm>��O�\�|��o��#F�IJ�#'�sҼ#�5��Yl�㼜$(s�O�+ڼY�'P�Z�P���I9"��߀�+d�$v�ѱ��js�N�IT��%�ɫ/���GU(҄�������<P�)�kkv�grX�\����>Mz�˪^���Ux��^���ڈ!�^�>�ˋ�K(�3r;X�\CvRQ_�_������^���ᾇ�`b���2H\�+���Dr� �G�ָ�x���YE�p���,��l-�[�&Ǯ��VJ7mA6�Ϳ�6����z��co8Pʌ��I�e���7C9ɯ�e�/��P�t�6w ���;G�}k�~i>-C�[�4Q��$���sҺ�k���_��-Ҵos�Xy0mRrG��j��RH7v���Z@�E�rw�55�ܩ�c=zS�.md�3��q5ʣ$�#'L�֘�A,;^2 kCP̌m�֘Ȣ���l` ӕF6�+����>��݂H�=i�z��Z1��:��Z�6����K�{N�5�n�,+��Ir�%s>�+u�)���P��{{ⰵ\��,2�����5�]�*��\w�iVY�L���aS N���*5$�?M�+q���'%�{b��i:��bv�����ze�1Gb���UFQ��wn��K+ܥU����T�\�����?�A���oe��_�T��;�z��)H���Z��-01�9�9�A�X�*���W=���aCKjͼ�s<�j8�4ה��23���1^��h�OI$AC��{t�:����ơ�N���xJ���ԍ�x��o����p�r� ��}� ���w�/t���a��0k��� +�D~XQ��k��?Ý3R��e��P������d��#�Q7T�*Ǖ�It��ct$��4зB�^��c�uż��i�J����^#��U�Gq����3�`��R�={&#^�K�䋷�>�S$U�>��f��.0w� #�r�{!�gٜ��tiL���P1֣.��֨���������Sd���!�m[Ú�_�7F��z�����?�q�ݿ�x���J��;��1���X����+��-'he��:b���p�����3���.�T~�hzŽݺ�r�h��˜�1_�$��o����_ $kǟ_�W��S㿇�XŪA��Wṯf� �� ǣG���P�� �v�c< κtQ�r+���.�p�K�Xc�Tw>6�e�^��W-Y�5�����s���ULn��=OY��&1�\o�|weD���Z��K �yT��9�w/�1��'R�JQ��=w_l�Nz���?�-U�.C78Pk�|[�k��}�L=�+����F}�I�_�e�B :��V#5�t���-��sp]-O����8�����e썞��K��e���U7[�ך�\O�ëB(�+c�U��\��g��X�<�ǖ4���Bzьb�G܊ ₸4b��<��;R�I�h�4��\P�8�A������ SUMM�x,�|��y�"BO9��Fo�*�(��Mc)��!�����Yh��8���@ʎi댁�FzV�ށ�,v�. 6+��m�S×;=Ŧrb���_�N�6�'��K��R�,01���1��q���R����8�#� �:6����G � ��Z��G<t�q_��iS-��,@.�8?�{����ӔH�dۃ��W��# ���9]~G���U4�a����r�H__aOV�P:t&��t��>�d�h�;d�G�UWR29�}*"�R*QwL���t��5f�2±'�¦�رQ��~�N7=�:�5">��5��&���O'#�L�?��R�`~��A�T��<�u�SDā�'���S�ΈT-��cwA��ju�`����J�#��ڤW���s�V../C�5 (fn9���r)x�q�X�˂O�1S�.�N9�]Tq2���36�qU���==��_\�����J�G#�Oƽ�.2��H�Iz�銳����㐑��Y�B[{C��)�����P�=k&)xO�Y�\+���T�h%8�5����c��~���/;�c��E�ЏwB:�s^���;�2�Tk�5��������^������u7n����^ p�%8����ֺ���m��"��;���ܗly�z{��t������`����Z?F�Z5R����Ixd�R���:r*[p&.�^�f���d<���}@7�����2�� ���)?U� q�]�������M*[��Q���V+���$p;S&S9 &��Ek�I��ie�� �T(�4��<�֮ (T0��"��]��x��j�ùZU�11d��8K2Ās�qWc@#P�T����}� ���u�q��.Il!{RҜ��9�*�r�b��3�u��$8���>��3.���֎2qHZ�3�PO�wu��18��ۣ�m ��}���y�.��9�j�ME��e�$����9�����*F=��V\�������>�EJ�QܘNe!NAG�I��1�ð�s�ʠ�dc✲���y���KK�;��:ԭ2y@�U�z�^:i�c�=kMR�V'��㛌�ϯjѹ����3�ySިۺ�~N9sRG!����zӧ.D��%r������!�z`W)5���j���5�$ci5?�< �Cn'�dVp�ڵ��ã�,w1� &@��� Up�4����c/���k�O�O�Qr��t5�|O�g k�Zuьo�����e$���4ѥ��}3PCql匊pS=� _��w�&��Z�4�2�*�����MKT�[Q�f,���_�y�}M{��N5熧5R�Zߵ֟=0�8*��Xߋ�u�`G�Y]���[��:}H����kC��A_fX{���?�l��tWcoo�#Px���%R�*j�]-�v�����9`�)|�?{ڝ!(���9�c˶ң�Xo�>x�� �������.|�/�1�*���/�CJ�3|�\Wn��g"�V�-��c�iA�Ms;��-&��RYħ�F0+u����9���Q�084����xQǯ�N/�6[���D`Oʠd��錙;Q��>O�4����5�4��C���� ���0�u��})�%�@V'm��Fǡ�� !�r2G�]�$:�R�xq�/�.y�+��Iaqs�59n�K�Ynp�����K�Z��On���*���W��x���%�h��:�H����k�bz��R�{\D�o66#��b�f�n��E�_=�#ۥ܂8 �¾�<�h����Թ���}ۣ��������7Ή5���]y(���ݲ@�5��7ঃf�I,��@?��|͟^k�n�,,��@|V]����b%�D#���䮫TӲ�~�����h�Z�KH�b*"�508�7ֶ�S�B��>2��a� ��+��5����\զō��@���gN���J]ޟ��'-ϧ<5��k��n�$X�����x�F���b.�?,�����~5�~��3��tqo�i��<28ܣ�]w��O�m��gk�kݧW!�a�#^K��ٯC�k �q�L�VۼFp�[C"��;�ɮO@�lS8�X��A=+�K�4`���s^*�o�uY�/4Y9�l��2�?Ғ��e�;R�<���]�����E`�����i%������zgz��O��B���֊م�ZY@��7q�P5��ޤ�_Z�x�4��n�{���M��pps\uirI������ c�Tk�\�����4,"??~�����a"��IE��R��H���Uq�ry�E�Nq�g\��}i��d�V�6�ݚ`�-�f�B�J�qf#tl�0@54�cr��Q�Z\��!���(�=��j 멗�iV���8�W�|Y�W�l�;_��/Z��l.��n��;�.K�����+�T������_�5���C�x+Q�o+�RS��(�>���XƋ�+�Χf�<ѷ��s�|��;�ƹ�H�G�$_s�q1V�U�϶�q�l$$���y4�D��z�{h� `���Zw6�$�f��N��l��d&��U�V<�R��s�DT��{TQi�S�}�֭�o�'�WT�{b��Wm��+�siA�*��Dۢ�ԏC��f����6��O�j�RIjf�A�%���5o����xx�Ő.�z��S����q��c�lqֱ�(�g�F���{�h���\�%�|w��]֫�M�6G$���0�*x��ѷl�mO���FU#U�+�S\JĖ,O|�fC�ke�cc�7�}=pN?*�U`s:rF[K��zc�nZ��wn}�U�t=?*�J=qh��3M&��0'�aC��j�<�F�F�0 P@ӟZ{�`�@ �NS��J�"8�݀�ccڜ�1lU��dU�"��n+9T��l���������ŵ�g���F�(�G|qXKR�ٍ�b:�S����N{֒[l�x���S�0Xaf9���g��R�E��h�x�oo��� �xU��~�� ��Q��;5��7r1�j�A���Z�Բ���dx%���]/�-����xC�f���{�Z0�8�Z�_B�w��Z�0����� &� ��F@�?Ʋ~�}��R�(�Y;�)Ꮓ�VH��l��Xt���^��TG �������T�� ��U�*�D ����f��Cq�;��8�+�V���H�����+-�q��)-�p���;g�&��P��(�ߚ���Л�SR���e��R�0GZ���n����q�����a+�>��;?����iR�V�楷c�3��f浧�h[$�8+��5&�rOq�z��5�;���I��9�ֹi�h%)2`7/�k �����c��-��*�V_>����A\rs�ҟݑ��#��9�zf����I��l�rFe����l�>'��@-���q�����9#s1���ֲqGDf[F��t#����b~��ؚ����(|�ǜ���XJL&^�PQ��[����d��X�sc��㓒G<�uT�Λ7���y�3�s�*�Sp9�����8�8犻m?t�z�\ovl�lE 8��֭C!���Ʋb���= �PJ �������hd�r={�G�f#PLc�P�f�C!�}y�J��3�����x���_� ��0=����u��K$V��[K|Ѹ� x��C�<��Y�?^k���2_4����.!;W�����C�e���VK}z_U�B��_��������9-uKC�;���S�+�mn�~V�8a_'��(�Ȗ�eS�p9�߁����@��KC�@?w�q2��Ӹ���r���,�*����w�~���a�*iQ����! �Gw��(`��tˈ�P�y4��}�H��z�NgO0�������ppv*���*h�E-��Ңep����� �[��I�~�:��� ?��r)�A�E>r6T����G�0 �{1�2~��KpP�9�M�O�����N�c-�:�u�����YHN��zX��~a��{����dT�t�L%;�˷9�`8��A$l܃��j�����䓎�� 2a�<T��T�\��U k��bE�r =�4�}�)�Ia��T�Dv��ʺ�r6(�p�O28��r9�u�p:Tq'�p?:��'f2drc�OS�j[k�%��\�LE*�r;�)%�rx��p��ܗ���ೞs$��{�O�@* ��Gjk��i��{�!�Ѧ���.6�rj)>\ay�B)RNI��nb�%��\��R�$.��+�<�R�YF6��T�9�)�`�J�q�I�x>��V��$��|�u�MQ�F��\� ��(���z-�U08�,y`3�i��^q�y�T�5���c�H3L�(c��PB���֦`���`��U9�Fⵙ�Y�d*L��b;ict���{Q*!<q�e�����14�s[Eq'�"�P7��W6����`����nI.A�ʩj� <��Z��ख�Z�=��^;ֵL�6Q�<�'5�E����13Z����#?L�_U|(���q�=�rt�d�J��GL���6�V���ь��{�I<���MFN�k�����c��#�ϊ�5��2��n����s�Wy��_J�`P�ě}��|Y�xoU��GP"����8�-�<y�j�y:m�����_j��N���Q��{�D�I�7Z�u�iT,��+˾$�E�&H�4� "�I� �_��^;�o�@�y#$g�5�x[�}����A�����~��*8x�~��+�4K�j�?ጾ!��0�6�Ej�����4�,���:c5GD��(�T;V�IhT`c�k�S��u%^�2�["ݱh��pz�OK�I�G|U5�U+����;pF{ �I؞��o9��ު����#��Tb���{b��YI"�@��YK�Jz�a�l��U*AQ�t����;�,sZ1iѠ�H�z���)Q�ҷ�r���7] V�|�}@\{ՅӢq��OO�Cu�C�ι�γ�<Ok��~�St� &�qi`�Ͽ4�\+(E :W;�4뉌i@�-��7�|Ay��5�V��~�^Joz�P�UI�Oo3EJM]���qu�s���ո|��u�?��_-�*u���O�Q�Bb��Nkٌ1K��"��l�V��Ѐ�E���6�o��H���W�0�n����y��n� N� =ӊ��c%/�2[�V��f�[MF(wʸ�x:�R���R\-y���G���霊�4��:uտ�s������z�k�*��Y�?��O4�v�H�x��ỻ)�e���Ҿ��u�-F=�*8�<�W�|E����yj =T]yFu��?a_�]��.�yj|�{������T�%H��H�H�]��+�D;�=+�OGS��5�4�|�6p���X��-�A��q���+b�I;�كϺ�xg�W� ��Ǜ*3��A��CI��g���~�A�^�գH�\P 9 �2|ܩ ��S��|��zz?.>��n�X��@��ǭ1��:�u�\�,��ۭD�K�'"�2�� 2���D���zwzH���Z��z�21��$ �4�j��Im��A?�H��~��{+������)�`�[��=)RG����{t�-�ԃK8�kb82q��Vb�lr�G�g,K]JX{������d������;|7��ZZ�8* ����F����:+�a��52iS)ڪI��w�?�oop�[1����_�e���VPFpZ�q9�* �$�����{m"��R6l�5���#]ԥ ��I^������X��T�ܯZ��x�������;���x�_�g�+,���(�o�Ʒp�Yԅ#��k���� ����y�<gھ��A����U��m����^\�3�_�����M{�<�Þ��5_��w������0�1]ٰ�q�t튭u�B��F+íB�Is�vm�9Hu���P������9�n_�HC�=��-4Y1���ָ�R��V�L���x�W�&�����cҴ��ОWٸ��%�^5�g�T��^���=#�8ܳ�Tq�s��p���J��2�U����1�_��}}�U%f��6h����s2(ry�j��s�6qҪb�%����:ջ; D�Eڧ���Y���L��ǧQ���$�Ι1P��C��ֲ�P�����v]CIӨ�s��q`�- �09Ʃ']��{�i<�ܩ��#1\����e��N��;���1���]�&wõ�9����3�`�s�T��PI�Np Uw܍��x��F��۸ǥw��9ٖć�����K|ߎ; ���������99�x"��N�O�l1�9���*I���֪$�& ��nޕ$m�=OaYJ7�B�rl��0b)y���G<����R����׃X��T��m1�9� ��+)@�$���V��0���zX|c���27 �����Y���]�y����i�LN9�U/M��q��N;��h���z8����O����������G�E6�z�+�8��E��S��xG�x��k��p�G���7���W�`?���_��?�C�f�+�<#�v�k�����E~Yß�1�}#dT����W��p���G!i��ƣ��߅Uu���1TG��E��>�K/�����QZC�b�-?�N���QY��������&�+J[�?��ޤo��O�E�B�O� 2.��R��} �4��}h���I�����T����Eb2���W�Ҋ+>���b?���)/>�������z�*��_�O���=���["�,]V����QEl�Jܒ��)��4QR���?�ҧo��E�1��Xjo�g��E�� o�_�0����w���'���QE}��Ȯ��x���ס��ş�.���:���E��o��_�ϥ�������*�-z���E͕�Or���J�����(��ko-�i>�:O�Ɗ*�Ģ��J�F��(���K7������Z(��$r��W�J�5����h�����֙�^��q?�����ȵ�n��QEx�A��:h�ϕ5��M���U�s����4Q_�a>�]o�������� n��c��h��a�:�2t_�/��i�����E݈�G.dz߁��>����~4Q_ W���z���������g/����E}e/ᣥnʷ�p�kS�~��+���p�1�����S���Q^�����B�A�����QYȸ�Mq��� Q_��4QS �����i��h��! |� )�h�� z������h���*�5yՏ��4QXϡ�"h:7Ҷ4/��_��tQ\uv;h|g���=����k�|)�#�t#E���_3�{ލ�~�������J(�0��-Ʒ��*���袷��.�m���G���h��?�*\���Ӡ�ޢ���H�?w�_�Ɗ+g�"��ֲ�~���Ep�����7}G�QED����� �����m��}7�E�S�p�?��UjO��_Ɗ+˯�Dx����9-s�CR��G����ٍW�R�O���~��o����,?��?�QEWQ-�GU��VOc�=I���O�� ���G�¦���H���xU��ק��h��u�C���ު����r��Ez�>��z�� |
| URL | http://zero.webappsecurity.com/resources/js/bootstrap.min.js |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | Apache-Coyote/1.1 |
| Request Header - size: 284 bytes. |
GET http://zero.webappsecurity.com/resources/js/bootstrap.min.js HTTP/1.1
Host: zero.webappsecurity.com User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0 Pragma: no-cache Cache-Control: no-cache Referer: http://zero.webappsecurity.com |
| Request Body - size: 0 bytes. |
|
| Response Header - size: 361 bytes. |
HTTP/1.1 200 OK
Date: Mon, 14 Mar 2022 07:13:42 GMT Server: Apache-Coyote/1.1 Access-Control-Allow-Origin: * Accept-Ranges: bytes ETag: W/"26898-1358437290000" Last-Modified: Thu, 17 Jan 2013 15:41:30 GMT Cache-Control: max-age=2678400 Expires: Thu, 14 Apr 2022 07:13:43 GMT Content-Type: application/javascript;charset=UTF-8 Content-Length: 26898 |
| Response Body - size: 26,898 bytes. |
/**
* Bootstrap.js by @fat & @mdo * plugins: bootstrap-transition.js, bootstrap-modal.js, bootstrap-dropdown.js, bootstrap-scrollspy.js, bootstrap-tab.js, bootstrap-tooltip.js, bootstrap-popover.js, bootstrap-affix.js, bootstrap-alert.js, bootstrap-button.js, bootstrap-collapse.js, bootstrap-carousel.js, bootstrap-typeahead.js * Copyright 2012 Twitter, Inc. * http://www.apache.org/licenses/LICENSE-2.0.txt */ !function(a){a(function(){a.support.transition=function(){var a=function(){var a=document.createElement("bootstrap"),b={WebkitTransition:"webkitTransitionEnd",MozTransition:"transitionend",OTransition:"oTransitionEnd otransitionend",transition:"transitionend"},c;for(c in b)if(a.style[c]!==undefined)return b[c]}();return a&&{end:a}}()})}(window.jQuery),!function(a){var b=function(b,c){this.options=c,this.$element=a(b).delegate('[data-dismiss="modal"]',"click.dismiss.modal",a.proxy(this.hide,this)),this.options.remote&&this.$element.find(".modal-body").load(this.options.remote)};b.prototype={constructor:b,toggle:function(){return this[this.isShown?"hide":"show"]()},show:function(){var b=this,c=a.Event("show");this.$element.trigger(c);if(this.isShown||c.isDefaultPrevented())return;this.isShown=!0,this.escape(),this.backdrop(function(){var c=a.support.transition&&b.$element.hasClass("fade");b.$element.parent().length||b.$element.appendTo(document.body),b.$element.show(),c&&b.$element[0].offsetWidth,b.$element.addClass("in").attr("aria-hidden",!1),b.enforceFocus(),c?b.$element.one(a.support.transition.end,function(){b.$element.focus().trigger("shown")}):b.$element.focus().trigger("shown")})},hide:function(b){b&&b.preventDefault();var c=this;b=a.Event("hide"),this.$element.trigger(b);if(!this.isShown||b.isDefaultPrevented())return;this.isShown=!1,this.escape(),a(document).off("focusin.modal"),this.$element.removeClass("in").attr("aria-hidden",!0),a.support.transition&&this.$element.hasClass("fade")?this.hideWithTransition():this.hideModal()},enforceFocus:function(){var b=this;a(document).on("focusin.modal",function(a){b.$element[0]!==a.target&&!b.$element.has(a.target).length&&b.$element.focus()})},escape:function(){var a=this;this.isShown&&this.options.keyboard?this.$element.on("keyup.dismiss.modal",function(b){b.which==27&&a.hide()}):this.isShown||this.$element.off("keyup.dismiss.modal")},hideWithTransition:function(){var b=this,c=setTimeout(function(){b.$element.off(a.support.transition.end),b.hideModal()},500);this.$element.one(a.support.transition.end,function(){clearTimeout(c),b.hideModal()})},hideModal:function(a){this.$element.hide().trigger("hidden"),this.backdrop()},removeBackdrop:function(){this.$backdrop.remove(),this.$backdrop=null},backdrop:function(b){var c=this,d=this.$element.hasClass("fade")?"fade":"";if(this.isShown&&this.options.backdrop){var e=a.support.transition&&d;this.$backdrop=a('<div class="modal-backdrop '+d+'" />').appendTo(document.body),this.$backdrop.click(this.options.backdrop=="static"?a.proxy(this.$element[0].focus,this.$element[0]):a.proxy(this.hide,this)),e&&this.$backdrop[0].offsetWidth,this.$backdrop.addClass("in"),e?this.$backdrop.one(a.support.transition.end,b):b()}else!this.isShown&&this.$backdrop?(this.$backdrop.removeClass("in"),a.support.transition&&this.$element.hasClass("fade")?this.$backdrop.one(a.support.transition.end,a.proxy(this.removeBackdrop,this)):this.removeBackdrop()):b&&b()}};var c=a.fn.modal;a.fn.modal=function(c){return this.each(function(){var d=a(this),e=d.data("modal"),f=a.extend({},a.fn.modal.defaults,d.data(),typeof c=="object"&&c);e||d.data("modal",e=new b(this,f)),typeof c=="string"?e[c]():f.show&&e.show()})},a.fn.modal.defaults={backdrop:!0,keyboard:!0,show:!0},a.fn.modal.Constructor=b,a.fn.modal.noConflict=function(){return a.fn.modal=c,this},a(document).on("click.modal.data-api",'[data-toggle="modal"]',function(b){var c=a(this),d=c.attr("href"),e=a(c.attr("data-target")||d&&d.replace(/.*(?=#[^\s]+$)/,"")),f=e.data("modal")?"toggle":a.extend({remote:!/#/.test(d)&&d},e.data(),c.data());b.preventDefault(),e.modal(f).one("hide",function(){c.focus()})})}(window.jQuery),!function(a){function d(){a(b).each(function(){e(a(this)).removeClass("open")})}function e(b){var c=b.attr("data-target"),d;return c||(c=b.attr("href"),c=c&&/#/.test(c)&&c.replace(/.*(?=#[^\s]*$)/,"")),d=a(c),d.length||(d=b.parent()),d}var b="[data-toggle=dropdown]",c=function(b){var c=a(b).on("click.dropdown.data-api",this.toggle);a("html").on("click.dropdown.data-api",function(){c.parent().removeClass("open")})};c.prototype={constructor:c,toggle:function(b){var c=a(this),f,g;if(c.is(".disabled, :disabled"))return;return f=e(c),g=f.hasClass("open"),d(),g||f.toggleClass("open"),c.focus(),!1},keydown:function(b){var c,d,f,g,h,i;if(!/(38|40|27)/.test(b.keyCode))return;c=a(this),b.preventDefault(),b.stopPropagation();if(c.is(".disabled, :disabled"))return;g=e(c),h=g.hasClass("open");if(!h||h&&b.keyCode==27)return c.click();d=a("[role=menu] li:not(.divider):visible a",g);if(!d.length)return;i=d.index(d.filter(":focus")),b.keyCode==38&&i>0&&i--,b.keyCode==40&&i<d.length-1&&i++,~i||(i=0),d.eq(i).focus()}};var f=a.fn.dropdown;a.fn.dropdown=function(b){return this.each(function(){var d=a(this),e=d.data("dropdown");e||d.data("dropdown",e=new c(this)),typeof b=="string"&&e[b].call(d)})},a.fn.dropdown.Constructor=c,a.fn.dropdown.noConflict=function(){return a.fn.dropdown=f,this},a(document).on("click.dropdown.data-api touchstart.dropdown.data-api",d).on("click.dropdown touchstart.dropdown.data-api",".dropdown form",function(a){a.stopPropagation()}).on("touchstart.dropdown.data-api",".dropdown-menu",function(a){a.stopPropagation()}).on("click.dropdown.data-api touchstart.dropdown.data-api",b,c.prototype.toggle).on("keydown.dropdown.data-api touchstart.dropdown.data-api",b+", [role=menu]",c.prototype.keydown)}(window.jQuery),!function(a){function b(b,c){var d=a.proxy(this.process,this),e=a(b).is("body")?a(window):a(b),f;this.options=a.extend({},a.fn.scrollspy.defaults,c),this.$scrollElement=e.on("scroll.scroll-spy.data-api",d),this.selector=(this.options.target||(f=a(b).attr("href"))&&f.replace(/.*(?=#[^\s]+$)/,"")||"")+" .nav li > a",this.$body=a("body"),this.refresh(),this.process()}b.prototype={constructor:b,refresh:function(){var b=this,c;this.offsets=a([]),this.targets=a([]),c=this.$body.find(this.selector).map(function(){var c=a(this),d=c.data("target")||c.attr("href"),e=/^#\w/.test(d)&&a(d);return e&&e.length&&[[e.position().top+b.$scrollElement.scrollTop(),d]]||null}).sort(function(a,b){return a[0]-b[0]}).each(function(){b.offsets.push(this[0]),b.targets.push(this[1])})},process:function(){var a=this.$scrollElement.scrollTop()+this.options.offset,b=this.$scrollElement[0].scrollHeight||this.$body[0].scrollHeight,c=b-this.$scrollElement.height(),d=this.offsets,e=this.targets,f=this.activeTarget,g;if(a>=c)return f!=(g=e.last()[0])&&this.activate(g);for(g=d.length;g--;)f!=e[g]&&a>=d[g]&&(!d[g+1]||a<=d[g+1])&&this.activate(e[g])},activate:function(b){var c,d;this.activeTarget=b,a(this.selector).parent(".active").removeClass("active"),d=this.selector+'[data-target="'+b+'"],'+this.selector+'[href="'+b+'"]',c=a(d).parent("li").addClass("active"),c.parent(".dropdown-menu").length&&(c=c.closest("li.dropdown").addClass("active")),c.trigger("activate")}};var c=a.fn.scrollspy;a.fn.scrollspy=function(c){return this.each(function(){var d=a(this),e=d.data("scrollspy"),f=typeof c=="object"&&c;e||d.data("scrollspy",e=new b(this,f)),typeof c=="string"&&e[c]()})},a.fn.scrollspy.Constructor=b,a.fn.scrollspy.defaults={offset:10},a.fn.scrollspy.noConflict=function(){return a.fn.scrollspy=c,this},a(window).on("load",function(){a('[data-spy="scroll"]').each(function(){var b=a(this);b.scrollspy(b.data())})})}(window.jQuery),!function(a){var b=function(b){this.element=a(b)};b.prototype={constructor:b,show:function(){var b=this.element,c=b.closest("ul:not(.dropdown-menu)"),d=b.attr("data-target"),e,f,g;d||(d=b.attr("href"),d=d&&d.replace(/.*(?=#[^\s]*$)/,""));if(b.parent("li").hasClass("active"))return;e=c.find(".active:last a")[0],g=a.Event("show",{relatedTarget:e}),b.trigger(g);if(g.isDefaultPrevented())return;f=a(d),this.activate(b.parent("li"),c),this.activate(f,f.parent(),function(){b.trigger({type:"shown",relatedTarget:e})})},activate:function(b,c,d){function g(){e.removeClass("active").find("> .dropdown-menu > .active").removeClass("active"),b.addClass("active"),f?(b[0].offsetWidth,b.addClass("in")):b.removeClass("fade"),b.parent(".dropdown-menu")&&b.closest("li.dropdown").addClass("active"),d&&d()}var e=c.find("> .active"),f=d&&a.support.transition&&e.hasClass("fade");f?e.one(a.support.transition.end,g):g(),e.removeClass("in")}};var c=a.fn.tab;a.fn.tab=function(c){return this.each(function(){var d=a(this),e=d.data("tab");e||d.data("tab",e=new b(this)),typeof c=="string"&&e[c]()})},a.fn.tab.Constructor=b,a.fn.tab.noConflict=function(){return a.fn.tab=c,this},a(document).on("click.tab.data-api",'[data-toggle="tab"], [data-toggle="pill"]',function(b){b.preventDefault(),a(this).tab("show")})}(window.jQuery),!function(a){var b=function(a,b){this.init("tooltip",a,b)};b.prototype={constructor:b,init:function(b,c,d){var e,f;this.type=b,this.$element=a(c),this.options=this.getOptions(d),this.enabled=!0,this.options.trigger=="click"?this.$element.on("click."+this.type,this.options.selector,a.proxy(this.toggle,this)):this.options.trigger!="manual"&&(e=this.options.trigger=="hover"?"mouseenter":"focus",f=this.options.trigger=="hover"?"mouseleave":"blur",this.$element.on(e+"."+this.type,this.options.selector,a.proxy(this.enter,this)),this.$element.on(f+"."+this.type,this.options.selector,a.proxy(this.leave,this))),this.options.selector?this._options=a.extend({},this.options,{trigger:"manual",selector:""}):this.fixTitle()},getOptions:function(b){return b=a.extend({},a.fn[this.type].defaults,b,this.$element.data()),b.delay&&typeof b.delay=="number"&&(b.delay={show:b.delay,hide:b.delay}),b},enter:function(b){var c=a(b.currentTarget)[this.type](this._options).data(this.type);if(!c.options.delay||!c.options.delay.show)return c.show();clearTimeout(this.timeout),c.hoverState="in",this.timeout=setTimeout(function(){c.hoverState=="in"&&c.show()},c.options.delay.show)},leave:function(b){var c=a(b.currentTarget)[this.type](this._options).data(this.type);this.timeout&&clearTimeout(this.timeout);if(!c.options.delay||!c.options.delay.hide)return c.hide();c.hoverState="out",this.timeout=setTimeout(function(){c.hoverState=="out"&&c.hide()},c.options.delay.hide)},show:function(){var a,b,c,d,e,f,g;if(this.hasContent()&&this.enabled){a=this.tip(),this.setContent(),this.options.animation&&a.addClass("fade"),f=typeof this.options.placement=="function"?this.options.placement.call(this,a[0],this.$element[0]):this.options.placement,b=/in/.test(f),a.detach().css({top:0,left:0,display:"block"}).insertAfter(this.$element),c=this.getPosition(b),d=a[0].offsetWidth,e=a[0].offsetHeight;switch(b?f.split(" ")[1]:f){case"bottom":g={top:c.top+c.height,left:c.left+c.width/2-d/2};break;case"top":g={top:c.top-e,left:c.left+c.width/2-d/2};break;case"left":g={top:c.top+c.height/2-e/2,left:c.left-d};break;case"right":g={top:c.top+c.height/2-e/2,left:c.left+c.width}}a.offset(g).addClass(f).addClass("in")}},setContent:function(){var a=this.tip(),b=this.getTitle();a.find(".tooltip-inner")[this.options.html?"html":"text"](b),a.removeClass("fade in top bottom left right")},hide:function(){function d(){var b=setTimeout(function(){c.off(a.support.transition.end).detach()},500);c.one(a.support.transition.end,function(){clearTimeout(b),c.detach()})}var b=this,c=this.tip();return c.removeClass("in"),a.support.transition&&this.$tip.hasClass("fade")?d():c.detach(),this},fixTitle:function(){var a=this.$element;(a.attr("title")||typeof a.attr("data-original-title")!="string")&&a.attr("data-original-title",a.attr("title")||"").removeAttr("title")},hasContent:function(){return this.getTitle()},getPosition:function(b){return a.extend({},b?{top:0,left:0}:this.$element.offset(),{width:this.$element[0].offsetWidth,height:this.$element[0].offsetHeight})},getTitle:function(){var a,b=this.$element,c=this.options;return a=b.attr("data-original-title")||(typeof c.title=="function"?c.title.call(b[0]):c.title),a},tip:function(){return this.$tip=this.$tip||a(this.options.template)},validate:function(){this.$element[0].parentNode||(this.hide(),this.$element=null,this.options=null)},enable:function(){this.enabled=!0},disable:function(){this.enabled=!1},toggleEnabled:function(){this.enabled=!this.enabled},toggle:function(b){var c=a(b.currentTarget)[this.type](this._options).data(this.type);c[c.tip().hasClass("in")?"hide":"show"]()},destroy:function(){this.hide().$element.off("."+this.type).removeData(this.type)}};var c=a.fn.tooltip;a.fn.tooltip=function(c){return this.each(function(){var d=a(this),e=d.data("tooltip"),f=typeof c=="object"&&c;e||d.data("tooltip",e=new b(this,f)),typeof c=="string"&&e[c]()})},a.fn.tooltip.Constructor=b,a.fn.tooltip.defaults={animation:!0,placement:"top",selector:!1,template:'<div class="tooltip"><div class="tooltip-arrow"></div><div class="tooltip-inner"></div></div>',trigger:"hover",title:"",delay:0,html:!1},a.fn.tooltip.noConflict=function(){return a.fn.tooltip=c,this}}(window.jQuery),!function(a){var b=function(a,b){this.init("popover",a,b)};b.prototype=a.extend({},a.fn.tooltip.Constructor.prototype,{constructor:b,setContent:function(){var a=this.tip(),b=this.getTitle(),c=this.getContent();a.find(".popover-title")[this.options.html?"html":"text"](b),a.find(".popover-content")[this.options.html?"html":"text"](c),a.removeClass("fade top bottom left right in")},hasContent:function(){return this.getTitle()||this.getContent()},getContent:function(){var a,b=this.$element,c=this.options;return a=b.attr("data-content")||(typeof c.content=="function"?c.content.call(b[0]):c.content),a},tip:function(){return this.$tip||(this.$tip=a(this.options.template)),this.$tip},destroy:function(){this.hide().$element.off("."+this.type).removeData(this.type)}});var c=a.fn.popover;a.fn.popover=function(c){return this.each(function(){var d=a(this),e=d.data("popover"),f=typeof c=="object"&&c;e||d.data("popover",e=new b(this,f)),typeof c=="string"&&e[c]()})},a.fn.popover.Constructor=b,a.fn.popover.defaults=a.extend({},a.fn.tooltip.defaults,{placement:"right",trigger:"click",content:"",template:'<div class="popover"><div class="arrow"></div><div class="popover-inner"><h3 class="popover-title"></h3><div class="popover-content"></div></div></div>'}),a.fn.popover.noConflict=function(){return a.fn.popover=c,this}}(window.jQuery),!function(a){var b=function(b,c){this.options=a.extend({},a.fn.affix.defaults,c),this.$window=a(window).on("scroll.affix.data-api",a.proxy(this.checkPosition,this)).on("click.affix.data-api",a.proxy(function(){setTimeout(a.proxy(this.checkPosition,this),1)},this)),this.$element=a(b),this.checkPosition()};b.prototype.checkPosition=function(){if(!this.$element.is(":visible"))return;var b=a(document).height(),c=this.$window.scrollTop(),d=this.$element.offset(),e=this.options.offset,f=e.bottom,g=e.top,h="affix affix-top affix-bottom",i;typeof e!="object"&&(f=g=e),typeof g=="function"&&(g=e.top()),typeof f=="function"&&(f=e.bottom()),i=this.unpin!=null&&c+this.unpin<=d.top?!1:f!=null&&d.top+this.$element.height()>=b-f?"bottom":g!=null&&c<=g?"top":!1;if(this.affixed===i)return;this.affixed=i,this.unpin=i=="bottom"?d.top-c:null,this.$element.removeClass(h).addClass("affix"+(i?"-"+i:""))};var c=a.fn.affix;a.fn.affix=function(c){return this.each(function(){var d=a(this),e=d.data("affix"),f=typeof c=="object"&&c;e||d.data("affix",e=new b(this,f)),typeof c=="string"&&e[c]()})},a.fn.affix.Constructor=b,a.fn.affix.defaults={offset:0},a.fn.affix.noConflict=function(){return a.fn.affix=c,this},a(window).on("load",function(){a('[data-spy="affix"]').each(function(){var b=a(this),c=b.data();c.offset=c.offset||{},c.offsetBottom&&(c.offset.bottom=c.offsetBottom),c.offsetTop&&(c.offset.top=c.offsetTop),b.affix(c)})})}(window.jQuery),!function(a){var b='[data-dismiss="alert"]',c=function(c){a(c).on("click",b,this.close)};c.prototype.close=function(b){function f(){e.trigger("closed").remove()}var c=a(this),d=c.attr("data-target"),e;d||(d=c.attr("href"),d=d&&d.replace(/.*(?=#[^\s]*$)/,"")),e=a(d),b&&b.preventDefault(),e.length||(e=c.hasClass("alert")?c:c.parent()),e.trigger(b=a.Event("close"));if(b.isDefaultPrevented())return;e.removeClass("in"),a.support.transition&&e.hasClass("fade")?e.on(a.support.transition.end,f):f()};var d=a.fn.alert;a.fn.alert=function(b){return this.each(function(){var d=a(this),e=d.data("alert");e||d.data("alert",e=new c(this)),typeof b=="string"&&e[b].call(d)})},a.fn.alert.Constructor=c,a.fn.alert.noConflict=function(){return a.fn.alert=d,this},a(document).on("click.alert.data-api",b,c.prototype.close)}(window.jQuery),!function(a){var b=function(b,c){this.$element=a(b),this.options=a.extend({},a.fn.button.defaults,c)};b.prototype.setState=function(a){var b="disabled",c=this.$element,d=c.data(),e=c.is("input")?"val":"html";a+="Text",d.resetText||c.data("resetText",c[e]()),c[e](d[a]||this.options[a]),setTimeout(function(){a=="loadingText"?c.addClass(b).attr(b,b):c.removeClass(b).removeAttr(b)},0)},b.prototype.toggle=function(){var a=this.$element.closest('[data-toggle="buttons-radio"]');a&&a.find(".active").removeClass("active"),this.$element.toggleClass("active")};var c=a.fn.button;a.fn.button=function(c){return this.each(function(){var d=a(this),e=d.data("button"),f=typeof c=="object"&&c;e||d.data("button",e=new b(this,f)),c=="toggle"?e.toggle():c&&e.setState(c)})},a.fn.button.defaults={loadingText:"loading..."},a.fn.button.Constructor=b,a.fn.button.noConflict=function(){return a.fn.button=c,this},a(document).on("click.button.data-api","[data-toggle^=button]",function(b){var c=a(b.target);c.hasClass("btn")||(c=c.closest(".btn")),c.button("toggle")})}(window.jQuery),!function(a){var b=function(b,c){this.$element=a(b),this.options=a.extend({},a.fn.collapse.defaults,c),this.options.parent&&(this.$parent=a(this.options.parent)),this.options.toggle&&this.toggle()};b.prototype={constructor:b,dimension:function(){var a=this.$element.hasClass("width");return a?"width":"height"},show:function(){var b,c,d,e;if(this.transitioning)return;b=this.dimension(),c=a.camelCase(["scroll",b].join("-")),d=this.$parent&&this.$parent.find("> .accordion-group > .in");if(d&&d.length){e=d.data("collapse");if(e&&e.transitioning)return;d.collapse("hide"),e||d.data("collapse",null)}this.$element[b](0),this.transition("addClass",a.Event("show"),"shown"),a.support.transition&&this.$element[b](this.$element[0][c])},hide:function(){var b;if(this.transitioning)return;b=this.dimension(),this.reset(this.$element[b]()),this.transition("removeClass",a.Event("hide"),"hidden"),this.$element[b](0)},reset:function(a){var b=this.dimension();return this.$element.removeClass("collapse")[b](a||"auto")[0].offsetWidth,this.$element[a!==null?"addClass":"removeClass"]("collapse"),this},transition:function(b,c,d){var e=this,f=function(){c.type=="show"&&e.reset(),e.transitioning=0,e.$element.trigger(d)};this.$element.trigger(c);if(c.isDefaultPrevented())return;this.transitioning=1,this.$element[b]("in"),a.support.transition&&this.$element.hasClass("collapse")?this.$element.one(a.support.transition.end,f):f()},toggle:function(){this[this.$element.hasClass("in")?"hide":"show"]()}};var c=a.fn.collapse;a.fn.collapse=function(c){return this.each(function(){var d=a(this),e=d.data("collapse"),f=typeof c=="object"&&c;e||d.data("collapse",e=new b(this,f)),typeof c=="string"&&e[c]()})},a.fn.collapse.defaults={toggle:!0},a.fn.collapse.Constructor=b,a.fn.collapse.noConflict=function(){return a.fn.collapse=c,this},a(document).on("click.collapse.data-api","[data-toggle=collapse]",function(b){var c=a(this),d,e=c.attr("data-target")||b.preventDefault()||(d=c.attr("href"))&&d.replace(/.*(?=#[^\s]+$)/,""),f=a(e).data("collapse")?"toggle":c.data();c[a(e).hasClass("in")?"addClass":"removeClass"]("collapsed"),a(e).collapse(f)})}(window.jQuery),!function(a){var b=function(b,c){this.$element=a(b),this.options=c,this.options.pause=="hover"&&this.$element.on("mouseenter",a.proxy(this.pause,this)).on("mouseleave",a.proxy(this.cycle,this))};b.prototype={cycle:function(b){return b||(this.paused=!1),this.options.interval&&!this.paused&&(this.interval=setInterval(a.proxy(this.next,this),this.options.interval)),this},to:function(b){var c=this.$element.find(".item.active"),d=c.parent().children(),e=d.index(c),f=this;if(b>d.length-1||b<0)return;return this.sliding?this.$element.one("slid",function(){f.to(b)}):e==b?this.pause().cycle():this.slide(b>e?"next":"prev",a(d[b]))},pause:function(b){return b||(this.paused=!0),this.$element.find(".next, .prev").length&&a.support.transition.end&&(this.$element.trigger(a.support.transition.end),this.cycle()),clearInterval(this.interval),this.interval=null,this},next:function(){if(this.sliding)return;return this.slide("next")},prev:function(){if(this.sliding)return;return this.slide("prev")},slide:function(b,c){var d=this.$element.find(".item.active"),e=c||d[b](),f=this.interval,g=b=="next"?"left":"right",h=b=="next"?"first":"last",i=this,j;this.sliding=!0,f&&this.pause(),e=e.length?e:this.$element.find(".item")[h](),j=a.Event("slide",{relatedTarget:e[0]});if(e.hasClass("active"))return;if(a.support.transition&&this.$element.hasClass("slide")){this.$element.trigger(j);if(j.isDefaultPrevented())return;e.addClass(b),e[0].offsetWidth,d.addClass(g),e.addClass(g),this.$element.one(a.support.transition.end,function(){e.removeClass([b,g].join(" ")).addClass("active"),d.removeClass(["active",g].join(" ")),i.sliding=!1,setTimeout(function(){i.$element.trigger("slid")},0)})}else{this.$element.trigger(j);if(j.isDefaultPrevented())return;d.removeClass("active"),e.addClass("active"),this.sliding=!1,this.$element.trigger("slid")}return f&&this.cycle(),this}};var c=a.fn.carousel;a.fn.carousel=function(c){return this.each(function(){var d=a(this),e=d.data("carousel"),f=a.extend({},a.fn.carousel.defaults,typeof c=="object"&&c),g=typeof c=="string"?c:f.slide;e||d.data("carousel",e=new b(this,f)),typeof c=="number"?e.to(c):g?e[g]():f.interval&&e.cycle()})},a.fn.carousel.defaults={interval:5e3,pause:"hover"},a.fn.carousel.Constructor=b,a.fn.carousel.noConflict=function(){return a.fn.carousel=c,this},a(document).on("click.carousel.data-api","[data-slide]",function(b){var c=a(this),d,e=a(c.attr("data-target")||(d=c.attr("href"))&&d.replace(/.*(?=#[^\s]+$)/,"")),f=a.extend({},e.data(),c.data());e.carousel(f),b.preventDefault()})}(window.jQuery),!function(a){var b=function(b,c){this.$element=a(b),this.options=a.extend({},a.fn.typeahead.defaults,c),this.matcher=this.options.matcher||this.matcher,this.sorter=this.options.sorter||this.sorter,this.highlighter=this.options.highlighter||this.highlighter,this.updater=this.options.updater||this.updater,this.source=this.options.source,this.$menu=a(this.options.menu),this.shown=!1,this.listen()};b.prototype={constructor:b,select:function(){var a=this.$menu.find(".active").attr("data-value");return this.$element.val(this.updater(a)).change(),this.hide()},updater:function(a){return a},show:function(){var b=a.extend({},this.$element.position(),{height:this.$element[0].offsetHeight});return this.$menu.insertAfter(this.$element).css({top:b.top+b.height,left:b.left}).show(),this.shown=!0,this},hide:function(){return this.$menu.hide(),this.shown=!1,this},lookup:function(b){var c;return this.query=this.$element.val(),!this.query||this.query.length<this.options.minLength?this.shown?this.hide():this:(c=a.isFunction(this.source)?this.source(this.query,a.proxy(this.process,this)):this.source,c?this.process(c):this)},process:function(b){var c=this;return b=a.grep(b,function(a){return c.matcher(a)}),b=this.sorter(b),b.length?this.render(b.slice(0,this.options.items)).show():this.shown?this.hide():this},matcher:function(a){return~a.toLowerCase().indexOf(this.query.toLowerCase())},sorter:function(a){var b=[],c=[],d=[],e;while(e=a.shift())e.toLowerCase().indexOf(this.query.toLowerCase())?~e.indexOf(this.query)?c.push(e):d.push(e):b.push(e);return b.concat(c,d)},highlighter:function(a){var b=this.query.replace(/[\-\[\]{}()*+?.,\\\^$|#\s]/g,"\\$&");return a.replace(new RegExp("("+b+")","ig"),function(a,b){return"<strong>"+b+"</strong>"})},render:function(b){var c=this;return b=a(b).map(function(b,d){return b=a(c.options.item).attr("data-value",d),b.find("a").html(c.highlighter(d)),b[0]}),b.first().addClass("active"),this.$menu.html(b),this},next:function(b){var c=this.$menu.find(".active").removeClass("active"),d=c.next();d.length||(d=a(this.$menu.find("li")[0])),d.addClass("active")},prev:function(a){var b=this.$menu.find(".active").removeClass("active"),c=b.prev();c.length||(c=this.$menu.find("li").last()),c.addClass("active")},listen:function(){this.$element.on("blur",a.proxy(this.blur,this)).on("keypress",a.proxy(this.keypress,this)).on("keyup",a.proxy(this.keyup,this)),this.eventSupported("keydown")&&this.$element.on("keydown",a.proxy(this.keydown,this)),this.$menu.on("click",a.proxy(this.click,this)).on("mouseenter","li",a.proxy(this.mouseenter,this))},eventSupported:function(a){var b=a in this.$element;return b||(this.$element.setAttribute(a,"return;"),b=typeof this.$element[a]=="function"),b},move:function(a){if(!this.shown)return;switch(a.keyCode){case 9:case 13:case 27:a.preventDefault();break;case 38:a.preventDefault(),this.prev();break;case 40:a.preventDefault(),this.next()}a.stopPropagation()},keydown:function(b){this.suppressKeyPressRepeat=~a.inArray(b.keyCode,[40,38,9,13,27]),this.move(b)},keypress:function(a){if(this.suppressKeyPressRepeat)return;this.move(a)},keyup:function(a){switch(a.keyCode){case 40:case 38:case 16:case 17:case 18:break;case 9:case 13:if(!this.shown)return;this.select();break;case 27:if(!this.shown)return;this.hide();break;default:this.lookup()}a.stopPropagation(),a.preventDefault()},blur:function(a){var b=this;setTimeout(function(){b.hide()},150)},click:function(a){a.stopPropagation(),a.preventDefault(),this.select()},mouseenter:function(b){this.$menu.find(".active").removeClass("active"),a(b.currentTarget).addClass("active")}};var c=a.fn.typeahead;a.fn.typeahead=function(c){return this.each(function(){var d=a(this),e=d.data("typeahead"),f=typeof c=="object"&&c;e||d.data("typeahead",e=new b(this,f)),typeof c=="string"&&e[c]()})},a.fn.typeahead.defaults={source:[],items:8,menu:'<ul class="typeahead dropdown-menu"></ul>',item:'<li><a href="#"></a></li>',minLength:1},a.fn.typeahead.Constructor=b,a.fn.typeahead.noConflict=function(){return a.fn.typeahead=c,this},a(document).on("focus.typeahead.data-api",'[data-provide="typeahead"]',function(b){var c=a(this);if(c.data("typeahead"))return;b.preventDefault(),c.typeahead(c.data())})}(window.jQuery) |
| URL | http://zero.webappsecurity.com/resources/js/jquery-1.8.2.min.js |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | Apache-Coyote/1.1 |
| Request Header - size: 287 bytes. |
GET http://zero.webappsecurity.com/resources/js/jquery-1.8.2.min.js HTTP/1.1
Host: zero.webappsecurity.com User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0 Pragma: no-cache Cache-Control: no-cache Referer: http://zero.webappsecurity.com |
| Request Body - size: 0 bytes. |
|
| Response Header - size: 361 bytes. |
HTTP/1.1 200 OK
Date: Mon, 14 Mar 2022 07:13:42 GMT Server: Apache-Coyote/1.1 Access-Control-Allow-Origin: * Accept-Ranges: bytes ETag: W/"93436-1358437290000" Last-Modified: Thu, 17 Jan 2013 15:41:30 GMT Cache-Control: max-age=2678400 Expires: Thu, 14 Apr 2022 07:13:43 GMT Content-Type: application/javascript;charset=UTF-8 Content-Length: 93436 |
| Response Body - size: 93,436 bytes. |
/*! jQuery v1.8.2 jquery.com | jquery.org/license */
(function(a,b){function G(a){var b=F[a]={};return p.each(a.split(s),function(a,c){b[c]=!0}),b}function J(a,c,d){if(d===b&&a.nodeType===1){var e="data-"+c.replace(I,"-$1").toLowerCase();d=a.getAttribute(e);if(typeof d=="string"){try{d=d==="true"?!0:d==="false"?!1:d==="null"?null:+d+""===d?+d:H.test(d)?p.parseJSON(d):d}catch(f){}p.data(a,c,d)}else d=b}return d}function K(a){var b;for(b in a){if(b==="data"&&p.isEmptyObject(a[b]))continue;if(b!=="toJSON")return!1}return!0}function ba(){return!1}function bb(){return!0}function bh(a){return!a||!a.parentNode||a.parentNode.nodeType===11}function bi(a,b){do a=a[b];while(a&&a.nodeType!==1);return a}function bj(a,b,c){b=b||0;if(p.isFunction(b))return p.grep(a,function(a,d){var e=!!b.call(a,d,a);return e===c});if(b.nodeType)return p.grep(a,function(a,d){return a===b===c});if(typeof b=="string"){var d=p.grep(a,function(a){return a.nodeType===1});if(be.test(b))return p.filter(b,d,!c);b=p.filter(b,d)}return p.grep(a,function(a,d){return p.inArray(a,b)>=0===c})}function bk(a){var b=bl.split("|"),c=a.createDocumentFragment();if(c.createElement)while(b.length)c.createElement(b.pop());return c}function bC(a,b){return a.getElementsByTagName(b)[0]||a.appendChild(a.ownerDocument.createElement(b))}function bD(a,b){if(b.nodeType!==1||!p.hasData(a))return;var c,d,e,f=p._data(a),g=p._data(b,f),h=f.events;if(h){delete g.handle,g.events={};for(c in h)for(d=0,e=h[c].length;d<e;d++)p.event.add(b,c,h[c][d])}g.data&&(g.data=p.extend({},g.data))}function bE(a,b){var c;if(b.nodeType!==1)return;b.clearAttributes&&b.clearAttributes(),b.mergeAttributes&&b.mergeAttributes(a),c=b.nodeName.toLowerCase(),c==="object"?(b.parentNode&&(b.outerHTML=a.outerHTML),p.support.html5Clone&&a.innerHTML&&!p.trim(b.innerHTML)&&(b.innerHTML=a.innerHTML)):c==="input"&&bv.test(a.type)?(b.defaultChecked=b.checked=a.checked,b.value!==a.value&&(b.value=a.value)):c==="option"?b.selected=a.defaultSelected:c==="input"||c==="textarea"?b.defaultValue=a.defaultValue:c==="script"&&b.text!==a.text&&(b.text=a.text),b.removeAttribute(p.expando)}function bF(a){return typeof a.getElementsByTagName!="undefined"?a.getElementsByTagName("*"):typeof a.querySelectorAll!="undefined"?a.querySelectorAll("*"):[]}function bG(a){bv.test(a.type)&&(a.defaultChecked=a.checked)}function bY(a,b){if(b in a)return b;var c=b.charAt(0).toUpperCase()+b.slice(1),d=b,e=bW.length;while(e--){b=bW[e]+c;if(b in a)return b}return d}function bZ(a,b){return a=b||a,p.css(a,"display")==="none"||!p.contains(a.ownerDocument,a)}function b$(a,b){var c,d,e=[],f=0,g=a.length;for(;f<g;f++){c=a[f];if(!c.style)continue;e[f]=p._data(c,"olddisplay"),b?(!e[f]&&c.style.display==="none"&&(c.style.display=""),c.style.display===""&&bZ(c)&&(e[f]=p._data(c,"olddisplay",cc(c.nodeName)))):(d=bH(c,"display"),!e[f]&&d!=="none"&&p._data(c,"olddisplay",d))}for(f=0;f<g;f++){c=a[f];if(!c.style)continue;if(!b||c.style.display==="none"||c.style.display==="")c.style.display=b?e[f]||"":"none"}return a}function b_(a,b,c){var d=bP.exec(b);return d?Math.max(0,d[1]-(c||0))+(d[2]||"px"):b}function ca(a,b,c,d){var e=c===(d?"border":"content")?4:b==="width"?1:0,f=0;for(;e<4;e+=2)c==="margin"&&(f+=p.css(a,c+bV[e],!0)),d?(c==="content"&&(f-=parseFloat(bH(a,"padding"+bV[e]))||0),c!=="margin"&&(f-=parseFloat(bH(a,"border"+bV[e]+"Width"))||0)):(f+=parseFloat(bH(a,"padding"+bV[e]))||0,c!=="padding"&&(f+=parseFloat(bH(a,"border"+bV[e]+"Width"))||0));return f}function cb(a,b,c){var d=b==="width"?a.offsetWidth:a.offsetHeight,e=!0,f=p.support.boxSizing&&p.css(a,"boxSizing")==="border-box";if(d<=0||d==null){d=bH(a,b);if(d<0||d==null)d=a.style[b];if(bQ.test(d))return d;e=f&&(p.support.boxSizingReliable||d===a.style[b]),d=parseFloat(d)||0}return d+ca(a,b,c||(f?"border":"content"),e)+"px"}function cc(a){if(bS[a])return bS[a];var b=p("<"+a+">").appendTo(e.body),c=b.css("display");b.remove();if(c==="none"||c===""){bI=e.body.appendChild(bI||p.extend(e.createElement("iframe"),{frameBorder:0,width:0,height:0}));if(!bJ||!bI.createElement)bJ=(bI.contentWindow||bI.contentDocument).document,bJ.write("<!doctype html><html><body>"),bJ.close();b=bJ.body.appendChild(bJ.createElement(a)),c=bH(b,"display"),e.body.removeChild(bI)}return bS[a]=c,c}function ci(a,b,c,d){var e;if(p.isArray(b))p.each(b,function(b,e){c||ce.test(a)?d(a,e):ci(a+"["+(typeof e=="object"?b:"")+"]",e,c,d)});else if(!c&&p.type(b)==="object")for(e in b)ci(a+"["+e+"]",b[e],c,d);else d(a,b)}function cz(a){return function(b,c){typeof b!="string"&&(c=b,b="*");var d,e,f,g=b.toLowerCase().split(s),h=0,i=g.length;if(p.isFunction(c))for(;h<i;h++)d=g[h],f=/^\+/.test(d),f&&(d=d.substr(1)||"*"),e=a[d]=a[d]||[],e[f?"unshift":"push"](c)}}function cA(a,c,d,e,f,g){f=f||c.dataTypes[0],g=g||{},g[f]=!0;var h,i=a[f],j=0,k=i?i.length:0,l=a===cv;for(;j<k&&(l||!h);j++)h=i[j](c,d,e),typeof h=="string"&&(!l||g[h]?h=b:(c.dataTypes.unshift(h),h=cA(a,c,d,e,h,g)));return(l||!h)&&!g["*"]&&(h=cA(a,c,d,e,"*",g)),h}function cB(a,c){var d,e,f=p.ajaxSettings.flatOptions||{};for(d in c)c[d]!==b&&((f[d]?a:e||(e={}))[d]=c[d]);e&&p.extend(!0,a,e)}function cC(a,c,d){var e,f,g,h,i=a.contents,j=a.dataTypes,k=a.responseFields;for(f in k)f in d&&(c[k[f]]=d[f]);while(j[0]==="*")j.shift(),e===b&&(e=a.mimeType||c.getResponseHeader("content-type"));if(e)for(f in i)if(i[f]&&i[f].test(e)){j.unshift(f);break}if(j[0]in d)g=j[0];else{for(f in d){if(!j[0]||a.converters[f+" "+j[0]]){g=f;break}h||(h=f)}g=g||h}if(g)return g!==j[0]&&j.unshift(g),d[g]}function cD(a,b){var c,d,e,f,g=a.dataTypes.slice(),h=g[0],i={},j=0;a.dataFilter&&(b=a.dataFilter(b,a.dataType));if(g[1])for(c in a.converters)i[c.toLowerCase()]=a.converters[c];for(;e=g[++j];)if(e!=="*"){if(h!=="*"&&h!==e){c=i[h+" "+e]||i["* "+e];if(!c)for(d in i){f=d.split(" ");if(f[1]===e){c=i[h+" "+f[0]]||i["* "+f[0]];if(c){c===!0?c=i[d]:i[d]!==!0&&(e=f[0],g.splice(j--,0,e));break}}}if(c!==!0)if(c&&a["throws"])b=c(b);else try{b=c(b)}catch(k){return{state:"parsererror",error:c?k:"No conversion from "+h+" to "+e}}}h=e}return{state:"success",data:b}}function cL(){try{return new a.XMLHttpRequest}catch(b){}}function cM(){try{return new a.ActiveXObject("Microsoft.XMLHTTP")}catch(b){}}function cU(){return setTimeout(function(){cN=b},0),cN=p.now()}function cV(a,b){p.each(b,function(b,c){var d=(cT[b]||[]).concat(cT["*"]),e=0,f=d.length;for(;e<f;e++)if(d[e].call(a,b,c))return})}function cW(a,b,c){var d,e=0,f=0,g=cS.length,h=p.Deferred().always(function(){delete i.elem}),i=function(){var b=cN||cU(),c=Math.max(0,j.startTime+j.duration-b),d=1-(c/j.duration||0),e=0,f=j.tweens.length;for(;e<f;e++)j.tweens[e].run(d);return h.notifyWith(a,[j,d,c]),d<1&&f?c:(h.resolveWith(a,[j]),!1)},j=h.promise({elem:a,props:p.extend({},b),opts:p.extend(!0,{specialEasing:{}},c),originalProperties:b,originalOptions:c,startTime:cN||cU(),duration:c.duration,tweens:[],createTween:function(b,c,d){var e=p.Tween(a,j.opts,b,c,j.opts.specialEasing[b]||j.opts.easing);return j.tweens.push(e),e},stop:function(b){var c=0,d=b?j.tweens.length:0;for(;c<d;c++)j.tweens[c].run(1);return b?h.resolveWith(a,[j,b]):h.rejectWith(a,[j,b]),this}}),k=j.props;cX(k,j.opts.specialEasing);for(;e<g;e++){d=cS[e].call(j,a,k,j.opts);if(d)return d}return cV(j,k),p.isFunction(j.opts.start)&&j.opts.start.call(a,j),p.fx.timer(p.extend(i,{anim:j,queue:j.opts.queue,elem:a})),j.progress(j.opts.progress).done(j.opts.done,j.opts.complete).fail(j.opts.fail).always(j.opts.always)}function cX(a,b){var c,d,e,f,g;for(c in a){d=p.camelCase(c),e=b[d],f=a[c],p.isArray(f)&&(e=f[1],f=a[c]=f[0]),c!==d&&(a[d]=f,delete a[c]),g=p.cssHooks[d];if(g&&"expand"in g){f=g.expand(f),delete a[d];for(c in f)c in a||(a[c]=f[c],b[c]=e)}else b[d]=e}}function cY(a,b,c){var d,e,f,g,h,i,j,k,l=this,m=a.style,n={},o=[],q=a.nodeType&&bZ(a);c.queue||(j=p._queueHooks(a,"fx"),j.unqueued==null&&(j.unqueued=0,k=j.empty.fire,j.empty.fire=function(){j.unqueued||k()}),j.unqueued++,l.always(function(){l.always(function(){j.unqueued--,p.queue(a,"fx").length||j.empty.fire()})})),a.nodeType===1&&("height"in b||"width"in b)&&(c.overflow=[m.overflow,m.overflowX,m.overflowY],p.css(a,"display")==="inline"&&p.css(a,"float")==="none"&&(!p.support.inlineBlockNeedsLayout||cc(a.nodeName)==="inline"?m.display="inline-block":m.zoom=1)),c.overflow&&(m.overflow="hidden",p.support.shrinkWrapBlocks||l.done(function(){m.overflow=c.overflow[0],m.overflowX=c.overflow[1],m.overflowY=c.overflow[2]}));for(d in b){f=b[d];if(cP.exec(f)){delete b[d];if(f===(q?"hide":"show"))continue;o.push(d)}}g=o.length;if(g){h=p._data(a,"fxshow")||p._data(a,"fxshow",{}),q?p(a).show():l.done(function(){p(a).hide()}),l.done(function(){var b;p.removeData(a,"fxshow",!0);for(b in n)p.style(a,b,n[b])});for(d=0;d<g;d++)e=o[d],i=l.createTween(e,q?h[e]:0),n[e]=h[e]||p.style(a,e),e in h||(h[e]=i.start,q&&(i.end=i.start,i.start=e==="width"||e==="height"?1:0))}}function cZ(a,b,c,d,e){return new cZ.prototype.init(a,b,c,d,e)}function c$(a,b){var c,d={height:a},e=0;b=b?1:0;for(;e<4;e+=2-b)c=bV[e],d["margin"+c]=d["padding"+c]=a;return b&&(d.opacity=d.width=a),d}function da(a){return p.isWindow(a)?a:a.nodeType===9?a.defaultView||a.parentWindow:!1}var c,d,e=a.document,f=a.location,g=a.navigator,h=a.jQuery,i=a.$,j=Array.prototype.push,k=Array.prototype.slice,l=Array.prototype.indexOf,m=Object.prototype.toString,n=Object.prototype.hasOwnProperty,o=String.prototype.trim,p=function(a,b){return new p.fn.init(a,b,c)},q=/[\-+]?(?:\d*\.|)\d+(?:[eE][\-+]?\d+|)/.source,r=/\S/,s=/\s+/,t=/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,u=/^(?:[^#<]*(<[\w\W]+>)[^>]*$|#([\w\-]*)$)/,v=/^<(\w+)\s*\/?>(?:<\/\1>|)$/,w=/^[\],:{}\s]*$/,x=/(?:^|:|,)(?:\s*\[)+/g,y=/\\(?:["\\\/bfnrt]|u[\da-fA-F]{4})/g,z=/"[^"\\\r\n]*"|true|false|null|-?(?:\d\d*\.|)\d+(?:[eE][\-+]?\d+|)/g,A=/^-ms-/,B=/-([\da-z])/gi,C=function(a,b){return(b+"").toUpperCase()},D=function(){e.addEventListener?(e.removeEventListener("DOMContentLoaded",D,!1),p.ready()):e.readyState==="complete"&&(e.detachEvent("onreadystatechange",D),p.ready())},E={};p.fn=p.prototype={constructor:p,init:function(a,c,d){var f,g,h,i;if(!a)return this;if(a.nodeType)return this.context=this[0]=a,this.length=1,this;if(typeof a=="string"){a.charAt(0)==="<"&&a.charAt(a.length-1)===">"&&a.length>=3?f=[null,a,null]:f=u.exec(a);if(f&&(f[1]||!c)){if(f[1])return c=c instanceof p?c[0]:c,i=c&&c.nodeType?c.ownerDocument||c:e,a=p.parseHTML(f[1],i,!0),v.test(f[1])&&p.isPlainObject(c)&&this.attr.call(a,c,!0),p.merge(this,a);g=e.getElementById(f[2]);if(g&&g.parentNode){if(g.id!==f[2])return d.find(a);this.length=1,this[0]=g}return this.context=e,this.selector=a,this}return!c||c.jquery?(c||d).find(a):this.constructor(c).find(a)}return p.isFunction(a)?d.ready(a):(a.selector!==b&&(this.selector=a.selector,this.context=a.context),p.makeArray(a,this))},selector:"",jquery:"1.8.2",length:0,size:function(){return this.length},toArray:function(){return k.call(this)},get:function(a){return a==null?this.toArray():a<0?this[this.length+a]:this[a]},pushStack:function(a,b,c){var d=p.merge(this.constructor(),a);return d.prevObject=this,d.context=this.context,b==="find"?d.selector=this.selector+(this.selector?" ":"")+c:b&&(d.selector=this.selector+"."+b+"("+c+")"),d},each:function(a,b){return p.each(this,a,b)},ready:function(a){return p.ready.promise().done(a),this},eq:function(a){return a=+a,a===-1?this.slice(a):this.slice(a,a+1)},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},slice:function(){return this.pushStack(k.apply(this,arguments),"slice",k.call(arguments).join(","))},map:function(a){return this.pushStack(p.map(this,function(b,c){return a.call(b,c,b)}))},end:function(){return this.prevObject||this.constructor(null)},push:j,sort:[].sort,splice:[].splice},p.fn.init.prototype=p.fn,p.extend=p.fn.extend=function(){var a,c,d,e,f,g,h=arguments[0]||{},i=1,j=arguments.length,k=!1;typeof h=="boolean"&&(k=h,h=arguments[1]||{},i=2),typeof h!="object"&&!p.isFunction(h)&&(h={}),j===i&&(h=this,--i);for(;i<j;i++)if((a=arguments[i])!=null)for(c in a){d=h[c],e=a[c];if(h===e)continue;k&&e&&(p.isPlainObject(e)||(f=p.isArray(e)))?(f?(f=!1,g=d&&p.isArray(d)?d:[]):g=d&&p.isPlainObject(d)?d:{},h[c]=p.extend(k,g,e)):e!==b&&(h[c]=e)}return h},p.extend({noConflict:function(b){return a.$===p&&(a.$=i),b&&a.jQuery===p&&(a.jQuery=h),p},isReady:!1,readyWait:1,holdReady:function(a){a?p.readyWait++:p.ready(!0)},ready:function(a){if(a===!0?--p.readyWait:p.isReady)return;if(!e.body)return setTimeout(p.ready,1);p.isReady=!0;if(a!==!0&&--p.readyWait>0)return;d.resolveWith(e,[p]),p.fn.trigger&&p(e).trigger("ready").off("ready")},isFunction:function(a){return p.type(a)==="function"},isArray:Array.isArray||function(a){return p.type(a)==="array"},isWindow:function(a){return a!=null&&a==a.window},isNumeric:function(a){return!isNaN(parseFloat(a))&&isFinite(a)},type:function(a){return a==null?String(a):E[m.call(a)]||"object"},isPlainObject:function(a){if(!a||p.type(a)!=="object"||a.nodeType||p.isWindow(a))return!1;try{if(a.constructor&&!n.call(a,"constructor")&&!n.call(a.constructor.prototype,"isPrototypeOf"))return!1}catch(c){return!1}var d;for(d in a);return d===b||n.call(a,d)},isEmptyObject:function(a){var b;for(b in a)return!1;return!0},error:function(a){throw new Error(a)},parseHTML:function(a,b,c){var d;return!a||typeof a!="string"?null:(typeof b=="boolean"&&(c=b,b=0),b=b||e,(d=v.exec(a))?[b.createElement(d[1])]:(d=p.buildFragment([a],b,c?null:[]),p.merge([],(d.cacheable?p.clone(d.fragment):d.fragment).childNodes)))},parseJSON:function(b){if(!b||typeof b!="string")return null;b=p.trim(b);if(a.JSON&&a.JSON.parse)return a.JSON.parse(b);if(w.test(b.replace(y,"@").replace(z,"]").replace(x,"")))return(new Function("return "+b))();p.error("Invalid JSON: "+b)},parseXML:function(c){var d,e;if(!c||typeof c!="string")return null;try{a.DOMParser?(e=new DOMParser,d=e.parseFromString(c,"text/xml")):(d=new ActiveXObject("Microsoft.XMLDOM"),d.async="false",d.loadXML(c))}catch(f){d=b}return(!d||!d.documentElement||d.getElementsByTagName("parsererror").length)&&p.error("Invalid XML: "+c),d},noop:function(){},globalEval:function(b){b&&r.test(b)&&(a.execScript||function(b){a.eval.call(a,b)})(b)},camelCase:function(a){return a.replace(A,"ms-").replace(B,C)},nodeName:function(a,b){return a.nodeName&&a.nodeName.toLowerCase()===b.toLowerCase()},each:function(a,c,d){var e,f=0,g=a.length,h=g===b||p.isFunction(a);if(d){if(h){for(e in a)if(c.apply(a[e],d)===!1)break}else for(;f<g;)if(c.apply(a[f++],d)===!1)break}else if(h){for(e in a)if(c.call(a[e],e,a[e])===!1)break}else for(;f<g;)if(c.call(a[f],f,a[f++])===!1)break;return a},trim:o&&!o.call(" ")?function(a){return a==null?"":o.call(a)}:function(a){return a==null?"":(a+"").replace(t,"")},makeArray:function(a,b){var c,d=b||[];return a!=null&&(c=p.type(a),a.length==null||c==="string"||c==="function"||c==="regexp"||p.isWindow(a)?j.call(d,a):p.merge(d,a)),d},inArray:function(a,b,c){var d;if(b){if(l)return l.call(b,a,c);d=b.length,c=c?c<0?Math.max(0,d+c):c:0;for(;c<d;c++)if(c in b&&b[c]===a)return c}return-1},merge:function(a,c){var d=c.length,e=a.length,f=0;if(typeof d=="number")for(;f<d;f++)a[e++]=c[f];else while(c[f]!==b)a[e++]=c[f++];return a.length=e,a},grep:function(a,b,c){var d,e=[],f=0,g=a.length;c=!!c;for(;f<g;f++)d=!!b(a[f],f),c!==d&&e.push(a[f]);return e},map:function(a,c,d){var e,f,g=[],h=0,i=a.length,j=a instanceof p||i!==b&&typeof i=="number"&&(i>0&&a[0]&&a[i-1]||i===0||p.isArray(a));if(j)for(;h<i;h++)e=c(a[h],h,d),e!=null&&(g[g.length]=e);else for(f in a)e=c(a[f],f,d),e!=null&&(g[g.length]=e);return g.concat.apply([],g)},guid:1,proxy:function(a,c){var d,e,f;return typeof c=="string"&&(d=a[c],c=a,a=d),p.isFunction(a)?(e=k.call(arguments,2),f=function(){return a.apply(c,e.concat(k.call(arguments)))},f.guid=a.guid=a.guid||p.guid++,f):b},access:function(a,c,d,e,f,g,h){var i,j=d==null,k=0,l=a.length;if(d&&typeof d=="object"){for(k in d)p.access(a,c,k,d[k],1,g,e);f=1}else if(e!==b){i=h===b&&p.isFunction(e),j&&(i?(i=c,c=function(a,b,c){return i.call(p(a),c)}):(c.call(a,e),c=null));if(c)for(;k<l;k++)c(a[k],d,i?e.call(a[k],k,c(a[k],d)):e,h);f=1}return f?a:j?c.call(a):l?c(a[0],d):g},now:function(){return(new Date).getTime()}}),p.ready.promise=function(b){if(!d){d=p.Deferred();if(e.readyState==="complete")setTimeout(p.ready,1);else if(e.addEventListener)e.addEventListener("DOMContentLoaded",D,!1),a.addEventListener("load",p.ready,!1);else{e.attachEvent("onreadystatechange",D),a.attachEvent("onload",p.ready);var c=!1;try{c=a.frameElement==null&&e.documentElement}catch(f){}c&&c.doScroll&&function g(){if(!p.isReady){try{c.doScroll("left")}catch(a){return setTimeout(g,50)}p.ready()}}()}}return d.promise(b)},p.each("Boolean Number String Function Array Date RegExp Object".split(" "),function(a,b){E["[object "+b+"]"]=b.toLowerCase()}),c=p(e);var F={};p.Callbacks=function(a){a=typeof a=="string"?F[a]||G(a):p.extend({},a);var c,d,e,f,g,h,i=[],j=!a.once&&[],k=function(b){c=a.memory&&b,d=!0,h=f||0,f=0,g=i.length,e=!0;for(;i&&h<g;h++)if(i[h].apply(b[0],b[1])===!1&&a.stopOnFalse){c=!1;break}e=!1,i&&(j?j.length&&k(j.shift()):c?i=[]:l.disable())},l={add:function(){if(i){var b=i.length;(function d(b){p.each(b,function(b,c){var e=p.type(c);e==="function"&&(!a.unique||!l.has(c))?i.push(c):c&&c.length&&e!=="string"&&d(c)})})(arguments),e?g=i.length:c&&(f=b,k(c))}return this},remove:function(){return i&&p.each(arguments,function(a,b){var c;while((c=p.inArray(b,i,c))>-1)i.splice(c,1),e&&(c<=g&&g--,c<=h&&h--)}),this},has:function(a){return p.inArray(a,i)>-1},empty:function(){return i=[],this},disable:function(){return i=j=c=b,this},disabled:function(){return!i},lock:function(){return j=b,c||l.disable(),this},locked:function(){return!j},fireWith:function(a,b){return b=b||[],b=[a,b.slice?b.slice():b],i&&(!d||j)&&(e?j.push(b):k(b)),this},fire:function(){return l.fireWith(this,arguments),this},fired:function(){return!!d}};return l},p.extend({Deferred:function(a){var b=[["resolve","done",p.Callbacks("once memory"),"resolved"],["reject","fail",p.Callbacks("once memory"),"rejected"],["notify","progress",p.Callbacks("memory")]],c="pending",d={state:function(){return c},always:function(){return e.done(arguments).fail(arguments),this},then:function(){var a=arguments;return p.Deferred(function(c){p.each(b,function(b,d){var f=d[0],g=a[b];e[d[1]](p.isFunction(g)?function(){var a=g.apply(this,arguments);a&&p.isFunction(a.promise)?a.promise().done(c.resolve).fail(c.reject).progress(c.notify):c[f+"With"](this===e?c:this,[a])}:c[f])}),a=null}).promise()},promise:function(a){return a!=null?p.extend(a,d):d}},e={};return d.pipe=d.then,p.each(b,function(a,f){var g=f[2],h=f[3];d[f[1]]=g.add,h&&g.add(function(){c=h},b[a^1][2].disable,b[2][2].lock),e[f[0]]=g.fire,e[f[0]+"With"]=g.fireWith}),d.promise(e),a&&a.call(e,e),e},when:function(a){var b=0,c=k.call(arguments),d=c.length,e=d!==1||a&&p.isFunction(a.promise)?d:0,f=e===1?a:p.Deferred(),g=function(a,b,c){return function(d){b[a]=this,c[a]=arguments.length>1?k.call(arguments):d,c===h?f.notifyWith(b,c):--e||f.resolveWith(b,c)}},h,i,j;if(d>1){h=new Array(d),i=new Array(d),j=new Array(d);for(;b<d;b++)c[b]&&p.isFunction(c[b].promise)?c[b].promise().done(g(b,j,c)).fail(f.reject).progress(g(b,i,h)):--e}return e||f.resolveWith(j,c),f.promise()}}),p.support=function(){var b,c,d,f,g,h,i,j,k,l,m,n=e.createElement("div");n.setAttribute("className","t"),n.innerHTML=" <link/><table></table><a href='/a'>a</a><input type='checkbox'/>",c=n.getElementsByTagName("*"),d=n.getElementsByTagName("a")[0],d.style.cssText="top:1px;float:left;opacity:.5";if(!c||!c.length)return{};f=e.createElement("select"),g=f.appendChild(e.createElement("option")),h=n.getElementsByTagName("input")[0],b={leadingWhitespace:n.firstChild.nodeType===3,tbody:!n.getElementsByTagName("tbody").length,htmlSerialize:!!n.getElementsByTagName("link").length,style:/top/.test(d.getAttribute("style")),hrefNormalized:d.getAttribute("href")==="/a",opacity:/^0.5/.test(d.style.opacity),cssFloat:!!d.style.cssFloat,checkOn:h.value==="on",optSelected:g.selected,getSetAttribute:n.className!=="t",enctype:!!e.createElement("form").enctype,html5Clone:e.createElement("nav").cloneNode(!0).outerHTML!=="<:nav></:nav>",boxModel:e.compatMode==="CSS1Compat",submitBubbles:!0,changeBubbles:!0,focusinBubbles:!1,deleteExpando:!0,noCloneEvent:!0,inlineBlockNeedsLayout:!1,shrinkWrapBlocks:!1,reliableMarginRight:!0,boxSizingReliable:!0,pixelPosition:!1},h.checked=!0,b.noCloneChecked=h.cloneNode(!0).checked,f.disabled=!0,b.optDisabled=!g.disabled;try{delete n.test}catch(o){b.deleteExpando=!1}!n.addEventListener&&n.attachEvent&&n.fireEvent&&(n.attachEvent("onclick",m=function(){b.noCloneEvent=!1}),n.cloneNode(!0).fireEvent("onclick"),n.detachEvent("onclick",m)),h=e.createElement("input"),h.value="t",h.setAttribute("type","radio"),b.radioValue=h.value==="t",h.setAttribute("checked","checked"),h.setAttribute("name","t"),n.appendChild(h),i=e.createDocumentFragment(),i.appendChild(n.lastChild),b.checkClone=i.cloneNode(!0).cloneNode(!0).lastChild.checked,b.appendChecked=h.checked,i.removeChild(h),i.appendChild(n);if(n.attachEvent)for(k in{submit:!0,change:!0,focusin:!0})j="on"+k,l=j in n,l||(n.setAttribute(j,"return;"),l=typeof n[j]=="function"),b[k+"Bubbles"]=l;return p(function(){var c,d,f,g,h="padding:0;margin:0;border:0;display:block;overflow:hidden;",i=e.getElementsByTagName("body")[0];if(!i)return;c=e.createElement("div"),c.style.cssText="visibility:hidden;border:0;width:0;height:0;position:static;top:0;margin-top:1px",i.insertBefore(c,i.firstChild),d=e.createElement("div"),c.appendChild(d),d.innerHTML="<table><tr><td></td><td>t</td></tr></table>",f=d.getElementsByTagName("td"),f[0].style.cssText="padding:0;margin:0;border:0;display:none",l=f[0].offsetHeight===0,f[0].style.display="",f[1].style.display="none",b.reliableHiddenOffsets=l&&f[0].offsetHeight===0,d.innerHTML="",d.style.cssText="box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;padding:1px;border:1px;display:block;width:4px;margin-top:1%;position:absolute;top:1%;",b.boxSizing=d.offsetWidth===4,b.doesNotIncludeMarginInBodyOffset=i.offsetTop!==1,a.getComputedStyle&&(b.pixelPosition=(a.getComputedStyle(d,null)||{}).top!=="1%",b.boxSizingReliable=(a.getComputedStyle(d,null)||{width:"4px"}).width==="4px",g=e.createElement("div"),g.style.cssText=d.style.cssText=h,g.style.marginRight=g.style.width="0",d.style.width="1px",d.appendChild(g),b.reliableMarginRight=!parseFloat((a.getComputedStyle(g,null)||{}).marginRight)),typeof d.style.zoom!="undefined"&&(d.innerHTML="",d.style.cssText=h+"width:1px;padding:1px;display:inline;zoom:1",b.inlineBlockNeedsLayout=d.offsetWidth===3,d.style.display="block",d.style.overflow="visible",d.innerHTML="<div></div>",d.firstChild.style.width="5px",b.shrinkWrapBlocks=d.offsetWidth!==3,c.style.zoom=1),i.removeChild(c),c=d=f=g=null}),i.removeChild(n),c=d=f=g=h=i=n=null,b}();var H=/(?:\{[\s\S]*\}|\[[\s\S]*\])$/,I=/([A-Z])/g;p.extend({cache:{},deletedIds:[],uuid:0,expando:"jQuery"+(p.fn.jquery+Math.random()).replace(/\D/g,""),noData:{embed:!0,object:"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000",applet:!0},hasData:function(a){return a=a.nodeType?p.cache[a[p.expando]]:a[p.expando],!!a&&!K(a)},data:function(a,c,d,e){if(!p.acceptData(a))return;var f,g,h=p.expando,i=typeof c=="string",j=a.nodeType,k=j?p.cache:a,l=j?a[h]:a[h]&&h;if((!l||!k[l]||!e&&!k[l].data)&&i&&d===b)return;l||(j?a[h]=l=p.deletedIds.pop()||p.guid++:l=h),k[l]||(k[l]={},j||(k[l].toJSON=p.noop));if(typeof c=="object"||typeof c=="function")e?k[l]=p.extend(k[l],c):k[l].data=p.extend(k[l].data,c);return f=k[l],e||(f.data||(f.data={}),f=f.data),d!==b&&(f[p.camelCase(c)]=d),i?(g=f[c],g==null&&(g=f[p.camelCase(c)])):g=f,g},removeData:function(a,b,c){if(!p.acceptData(a))return;var d,e,f,g=a.nodeType,h=g?p.cache:a,i=g?a[p.expando]:p.expando;if(!h[i])return;if(b){d=c?h[i]:h[i].data;if(d){p.isArray(b)||(b in d?b=[b]:(b=p.camelCase(b),b in d?b=[b]:b=b.split(" ")));for(e=0,f=b.length;e<f;e++)delete d[b[e]];if(!(c?K:p.isEmptyObject)(d))return}}if(!c){delete h[i].data;if(!K(h[i]))return}g?p.cleanData([a],!0):p.support.deleteExpando||h!=h.window?delete h[i]:h[i]=null},_data:function(a,b,c){return p.data(a,b,c,!0)},acceptData:function(a){var b=a.nodeName&&p.noData[a.nodeName.toLowerCase()];return!b||b!==!0&&a.getAttribute("classid")===b}}),p.fn.extend({data:function(a,c){var d,e,f,g,h,i=this[0],j=0,k=null;if(a===b){if(this.length){k=p.data(i);if(i.nodeType===1&&!p._data(i,"parsedAttrs")){f=i.attributes;for(h=f.length;j<h;j++)g=f[j].name,g.indexOf("data-")||(g=p.camelCase(g.substring(5)),J(i,g,k[g]));p._data(i,"parsedAttrs",!0)}}return k}return typeof a=="object"?this.each(function(){p.data(this,a)}):(d=a.split(".",2),d[1]=d[1]?"."+d[1]:"",e=d[1]+"!",p.access(this,function(c){if(c===b)return k=this.triggerHandler("getData"+e,[d[0]]),k===b&&i&&(k=p.data(i,a),k=J(i,a,k)),k===b&&d[1]?this.data(d[0]):k;d[1]=c,this.each(function(){var b=p(this);b.triggerHandler("setData"+e,d),p.data(this,a,c),b.triggerHandler("changeData"+e,d)})},null,c,arguments.length>1,null,!1))},removeData:function(a){return this.each(function(){p.removeData(this,a)})}}),p.extend({queue:function(a,b,c){var d;if(a)return b=(b||"fx")+"queue",d=p._data(a,b),c&&(!d||p.isArray(c)?d=p._data(a,b,p.makeArray(c)):d.push(c)),d||[]},dequeue:function(a,b){b=b||"fx";var c=p.queue(a,b),d=c.length,e=c.shift(),f=p._queueHooks(a,b),g=function(){p.dequeue(a,b)};e==="inprogress"&&(e=c.shift(),d--),e&&(b==="fx"&&c.unshift("inprogress"),delete f.stop,e.call(a,g,f)),!d&&f&&f.empty.fire()},_queueHooks:function(a,b){var c=b+"queueHooks";return p._data(a,c)||p._data(a,c,{empty:p.Callbacks("once memory").add(function(){p.removeData(a,b+"queue",!0),p.removeData(a,c,!0)})})}}),p.fn.extend({queue:function(a,c){var d=2;return typeof a!="string"&&(c=a,a="fx",d--),arguments.length<d?p.queue(this[0],a):c===b?this:this.each(function(){var b=p.queue(this,a,c);p._queueHooks(this,a),a==="fx"&&b[0]!=="inprogress"&&p.dequeue(this,a)})},dequeue:function(a){return this.each(function(){p.dequeue(this,a)})},delay:function(a,b){return a=p.fx?p.fx.speeds[a]||a:a,b=b||"fx",this.queue(b,function(b,c){var d=setTimeout(b,a);c.stop=function(){clearTimeout(d)}})},clearQueue:function(a){return this.queue(a||"fx",[])},promise:function(a,c){var d,e=1,f=p.Deferred(),g=this,h=this.length,i=function(){--e||f.resolveWith(g,[g])};typeof a!="string"&&(c=a,a=b),a=a||"fx";while(h--)d=p._data(g[h],a+"queueHooks"),d&&d.empty&&(e++,d.empty.add(i));return i(),f.promise(c)}});var L,M,N,O=/[\t\r\n]/g,P=/\r/g,Q=/^(?:button|input)$/i,R=/^(?:button|input|object|select|textarea)$/i,S=/^a(?:rea|)$/i,T=/^(?:autofocus|autoplay|async|checked|controls|defer|disabled|hidden|loop|multiple|open|readonly|required|scoped|selected)$/i,U=p.support.getSetAttribute;p.fn.extend({attr:function(a,b){return p.access(this,p.attr,a,b,arguments.length>1)},removeAttr:function(a){return this.each(function(){p.removeAttr(this,a)})},prop:function(a,b){return p.access(this,p.prop,a,b,arguments.length>1)},removeProp:function(a){return a=p.propFix[a]||a,this.each(function(){try{this[a]=b,delete this[a]}catch(c){}})},addClass:function(a){var b,c,d,e,f,g,h;if(p.isFunction(a))return this.each(function(b){p(this).addClass(a.call(this,b,this.className))});if(a&&typeof a=="string"){b=a.split(s);for(c=0,d=this.length;c<d;c++){e=this[c];if(e.nodeType===1)if(!e.className&&b.length===1)e.className=a;else{f=" "+e.className+" ";for(g=0,h=b.length;g<h;g++)f.indexOf(" "+b[g]+" ")<0&&(f+=b[g]+" ");e.className=p.trim(f)}}}return this},removeClass:function(a){var c,d,e,f,g,h,i;if(p.isFunction(a))return this.each(function(b){p(this).removeClass(a.call(this,b,this.className))});if(a&&typeof a=="string"||a===b){c=(a||"").split(s);for(h=0,i=this.length;h<i;h++){e=this[h];if(e.nodeType===1&&e.className){d=(" "+e.className+" ").replace(O," ");for(f=0,g=c.length;f<g;f++)while(d.indexOf(" "+c[f]+" ")>=0)d=d.replace(" "+c[f]+" "," ");e.className=a?p.trim(d):""}}}return this},toggleClass:function(a,b){var c=typeof a,d=typeof b=="boolean";return p.isFunction(a)?this.each(function(c){p(this).toggleClass(a.call(this,c,this.className,b),b)}):this.each(function(){if(c==="string"){var e,f=0,g=p(this),h=b,i=a.split(s);while(e=i[f++])h=d?h:!g.hasClass(e),g[h?"addClass":"removeClass"](e)}else if(c==="undefined"||c==="boolean")this.className&&p._data(this,"__className__",this.className),this.className=this.className||a===!1?"":p._data(this,"__className__")||""})},hasClass:function(a){var b=" "+a+" ",c=0,d=this.length;for(;c<d;c++)if(this[c].nodeType===1&&(" "+this[c].className+" ").replace(O," ").indexOf(b)>=0)return!0;return!1},val:function(a){var c,d,e,f=this[0];if(!arguments.length){if(f)return c=p.valHooks[f.type]||p.valHooks[f.nodeName.toLowerCase()],c&&"get"in c&&(d=c.get(f,"value"))!==b?d:(d=f.value,typeof d=="string"?d.replace(P,""):d==null?"":d);return}return e=p.isFunction(a),this.each(function(d){var f,g=p(this);if(this.nodeType!==1)return;e?f=a.call(this,d,g.val()):f=a,f==null?f="":typeof f=="number"?f+="":p.isArray(f)&&(f=p.map(f,function(a){return a==null?"":a+""})),c=p.valHooks[this.type]||p.valHooks[this.nodeName.toLowerCase()];if(!c||!("set"in c)||c.set(this,f,"value")===b)this.value=f})}}),p.extend({valHooks:{option:{get:function(a){var b=a.attributes.value;return!b||b.specified?a.value:a.text}},select:{get:function(a){var b,c,d,e,f=a.selectedIndex,g=[],h=a.options,i=a.type==="select-one";if(f<0)return null;c=i?f:0,d=i?f+1:h.length;for(;c<d;c++){e=h[c];if(e.selected&&(p.support.optDisabled?!e.disabled:e.getAttribute("disabled")===null)&&(!e.parentNode.disabled||!p.nodeName(e.parentNode,"optgroup"))){b=p(e).val();if(i)return b;g.push(b)}}return i&&!g.length&&h.length?p(h[f]).val():g},set:function(a,b){var c=p.makeArray(b);return p(a).find("option").each(function(){this.selected=p.inArray(p(this).val(),c)>=0}),c.length||(a.selectedIndex=-1),c}}},attrFn:{},attr:function(a,c,d,e){var f,g,h,i=a.nodeType;if(!a||i===3||i===8||i===2)return;if(e&&p.isFunction(p.fn[c]))return p(a)[c](d);if(typeof a.getAttribute=="undefined")return p.prop(a,c,d);h=i!==1||!p.isXMLDoc(a),h&&(c=c.toLowerCase(),g=p.attrHooks[c]||(T.test(c)?M:L));if(d!==b){if(d===null){p.removeAttr(a,c);return}return g&&"set"in g&&h&&(f=g.set(a,d,c))!==b?f:(a.setAttribute(c,d+""),d)}return g&&"get"in g&&h&&(f=g.get(a,c))!==null?f:(f=a.getAttribute(c),f===null?b:f)},removeAttr:function(a,b){var c,d,e,f,g=0;if(b&&a.nodeType===1){d=b.split(s);for(;g<d.length;g++)e=d[g],e&&(c=p.propFix[e]||e,f=T.test(e),f||p.attr(a,e,""),a.removeAttribute(U?e:c),f&&c in a&&(a[c]=!1))}},attrHooks:{type:{set:function(a,b){if(Q.test(a.nodeName)&&a.parentNode)p.error("type property can't be changed");else if(!p.support.radioValue&&b==="radio"&&p.nodeName(a,"input")){var c=a.value;return a.setAttribute("type",b),c&&(a.value=c),b}}},value:{get:function(a,b){return L&&p.nodeName(a,"button")?L.get(a,b):b in a?a.value:null},set:function(a,b,c){if(L&&p.nodeName(a,"button"))return L.set(a,b,c);a.value=b}}},propFix:{tabindex:"tabIndex",readonly:"readOnly","for":"htmlFor","class":"className",maxlength:"maxLength",cellspacing:"cellSpacing",cellpadding:"cellPadding",rowspan:"rowSpan",colspan:"colSpan",usemap:"useMap",frameborder:"frameBorder",contenteditable:"contentEditable"},prop:function(a,c,d){var e,f,g,h=a.nodeType;if(!a||h===3||h===8||h===2)return;return g=h!==1||!p.isXMLDoc(a),g&&(c=p.propFix[c]||c,f=p.propHooks[c]),d!==b?f&&"set"in f&&(e=f.set(a,d,c))!==b?e:a[c]=d:f&&"get"in f&&(e=f.get(a,c))!==null?e:a[c]},propHooks:{tabIndex:{get:function(a){var c=a.getAttributeNode("tabindex");return c&&c.specified?parseInt(c.value,10):R.test(a.nodeName)||S.test(a.nodeName)&&a.href?0:b}}}}),M={get:function(a,c){var d,e=p.prop(a,c);return e===!0||typeof e!="boolean"&&(d=a.getAttributeNode(c))&&d.nodeValue!==!1?c.toLowerCase():b},set:function(a,b,c){var d;return b===!1?p.removeAttr(a,c):(d=p.propFix[c]||c,d in a&&(a[d]=!0),a.setAttribute(c,c.toLowerCase())),c}},U||(N={name:!0,id:!0,coords:!0},L=p.valHooks.button={get:function(a,c){var d;return d=a.getAttributeNode(c),d&&(N[c]?d.value!=="":d.specified)?d.value:b},set:function(a,b,c){var d=a.getAttributeNode(c);return d||(d=e.createAttribute(c),a.setAttributeNode(d)),d.value=b+""}},p.each(["width","height"],function(a,b){p.attrHooks[b]=p.extend(p.attrHooks[b],{set:function(a,c){if(c==="")return a.setAttribute(b,"auto"),c}})}),p.attrHooks.contenteditable={get:L.get,set:function(a,b,c){b===""&&(b="false"),L.set(a,b,c)}}),p.support.hrefNormalized||p.each(["href","src","width","height"],function(a,c){p.attrHooks[c]=p.extend(p.attrHooks[c],{get:function(a){var d=a.getAttribute(c,2);return d===null?b:d}})}),p.support.style||(p.attrHooks.style={get:function(a){return a.style.cssText.toLowerCase()||b},set:function(a,b){return a.style.cssText=b+""}}),p.support.optSelected||(p.propHooks.selected=p.extend(p.propHooks.selected,{get:function(a){var b=a.parentNode;return b&&(b.selectedIndex,b.parentNode&&b.parentNode.selectedIndex),null}})),p.support.enctype||(p.propFix.enctype="encoding"),p.support.checkOn||p.each(["radio","checkbox"],function(){p.valHooks[this]={get:function(a){return a.getAttribute("value")===null?"on":a.value}}}),p.each(["radio","checkbox"],function(){p.valHooks[this]=p.extend(p.valHooks[this],{set:function(a,b){if(p.isArray(b))return a.checked=p.inArray(p(a).val(),b)>=0}})});var V=/^(?:textarea|input|select)$/i,W=/^([^\.]*|)(?:\.(.+)|)$/,X=/(?:^|\s)hover(\.\S+|)\b/,Y=/^key/,Z=/^(?:mouse|contextmenu)|click/,$=/^(?:focusinfocus|focusoutblur)$/,_=function(a){return p.event.special.hover?a:a.replace(X,"mouseenter$1 mouseleave$1")};p.event={add:function(a,c,d,e,f){var g,h,i,j,k,l,m,n,o,q,r;if(a.nodeType===3||a.nodeType===8||!c||!d||!(g=p._data(a)))return;d.handler&&(o=d,d=o.handler,f=o.selector),d.guid||(d.guid=p.guid++),i=g.events,i||(g.events=i={}),h=g.handle,h||(g.handle=h=function(a){return typeof p!="undefined"&&(!a||p.event.triggered!==a.type)?p.event.dispatch.apply(h.elem,arguments):b},h.elem=a),c=p.trim(_(c)).split(" ");for(j=0;j<c.length;j++){k=W.exec(c[j])||[],l=k[1],m=(k[2]||"").split(".").sort(),r=p.event.special[l]||{},l=(f?r.delegateType:r.bindType)||l,r=p.event.special[l]||{},n=p.extend({type:l,origType:k[1],data:e,handler:d,guid:d.guid,selector:f,needsContext:f&&p.expr.match.needsContext.test(f),namespace:m.join(".")},o),q=i[l];if(!q){q=i[l]=[],q.delegateCount=0;if(!r.setup||r.setup.call(a,e,m,h)===!1)a.addEventListener?a.addEventListener(l,h,!1):a.attachEvent&&a.attachEvent("on"+l,h)}r.add&&(r.add.call(a,n),n.handler.guid||(n.handler.guid=d.guid)),f?q.splice(q.delegateCount++,0,n):q.push(n),p.event.global[l]=!0}a=null},global:{},remove:function(a,b,c,d,e){var f,g,h,i,j,k,l,m,n,o,q,r=p.hasData(a)&&p._data(a);if(!r||!(m=r.events))return;b=p.trim(_(b||"")).split(" ");for(f=0;f<b.length;f++){g=W.exec(b[f])||[],h=i=g[1],j=g[2];if(!h){for(h in m)p.event.remove(a,h+b[f],c,d,!0);continue}n=p.event.special[h]||{},h=(d?n.delegateType:n.bindType)||h,o=m[h]||[],k=o.length,j=j?new RegExp("(^|\\.)"+j.split(".").sort().join("\\.(?:.*\\.|)")+"(\\.|$)"):null;for(l=0;l<o.length;l++)q=o[l],(e||i===q.origType)&&(!c||c.guid===q.guid)&&(!j||j.test(q.namespace))&&(!d||d===q.selector||d==="**"&&q.selector)&&(o.splice(l--,1),q.selector&&o.delegateCount--,n.remove&&n.remove.call(a,q));o.length===0&&k!==o.length&&((!n.teardown||n.teardown.call(a,j,r.handle)===!1)&&p.removeEvent(a,h,r.handle),delete m[h])}p.isEmptyObject(m)&&(delete r.handle,p.removeData(a,"events",!0))},customEvent:{getData:!0,setData:!0,changeData:!0},trigger:function(c,d,f,g){if(!f||f.nodeType!==3&&f.nodeType!==8){var h,i,j,k,l,m,n,o,q,r,s=c.type||c,t=[];if($.test(s+p.event.triggered))return;s.indexOf("!")>=0&&(s=s.slice(0,-1),i=!0),s.indexOf(".")>=0&&(t=s.split("."),s=t.shift(),t.sort());if((!f||p.event.customEvent[s])&&!p.event.global[s])return;c=typeof c=="object"?c[p.expando]?c:new p.Event(s,c):new p.Event(s),c.type=s,c.isTrigger=!0,c.exclusive=i,c.namespace=t.join("."),c.namespace_re=c.namespace?new RegExp("(^|\\.)"+t.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,m=s.indexOf(":")<0?"on"+s:"";if(!f){h=p.cache;for(j in h)h[j].events&&h[j].events[s]&&p.event.trigger(c,d,h[j].handle.elem,!0);return}c.result=b,c.target||(c.target=f),d=d!=null?p.makeArray(d):[],d.unshift(c),n=p.event.special[s]||{};if(n.trigger&&n.trigger.apply(f,d)===!1)return;q=[[f,n.bindType||s]];if(!g&&!n.noBubble&&!p.isWindow(f)){r=n.delegateType||s,k=$.test(r+s)?f:f.parentNode;for(l=f;k;k=k.parentNode)q.push([k,r]),l=k;l===(f.ownerDocument||e)&&q.push([l.defaultView||l.parentWindow||a,r])}for(j=0;j<q.length&&!c.isPropagationStopped();j++)k=q[j][0],c.type=q[j][1],o=(p._data(k,"events")||{})[c.type]&&p._data(k,"handle"),o&&o.apply(k,d),o=m&&k[m],o&&p.acceptData(k)&&o.apply&&o.apply(k,d)===!1&&c.preventDefault();return c.type=s,!g&&!c.isDefaultPrevented()&&(!n._default||n._default.apply(f.ownerDocument,d)===!1)&&(s!=="click"||!p.nodeName(f,"a"))&&p.acceptData(f)&&m&&f[s]&&(s!=="focus"&&s!=="blur"||c.target.offsetWidth!==0)&&!p.isWindow(f)&&(l=f[m],l&&(f[m]=null),p.event.triggered=s,f[s](),p.event.triggered=b,l&&(f[m]=l)),c.result}return},dispatch:function(c){c=p.event.fix(c||a.event);var d,e,f,g,h,i,j,l,m,n,o=(p._data(this,"events")||{})[c.type]||[],q=o.delegateCount,r=k.call(arguments),s=!c.exclusive&&!c.namespace,t=p.event.special[c.type]||{},u=[];r[0]=c,c.delegateTarget=this;if(t.preDispatch&&t.preDispatch.call(this,c)===!1)return;if(q&&(!c.button||c.type!=="click"))for(f=c.target;f!=this;f=f.parentNode||this)if(f.disabled!==!0||c.type!=="click"){h={},j=[];for(d=0;d<q;d++)l=o[d],m=l.selector,h[m]===b&&(h[m]=l.needsContext?p(m,this).index(f)>=0:p.find(m,this,null,[f]).length),h[m]&&j.push(l);j.length&&u.push({elem:f,matches:j})}o.length>q&&u.push({elem:this,matches:o.slice(q)});for(d=0;d<u.length&&!c.isPropagationStopped();d++){i=u[d],c.currentTarget=i.elem;for(e=0;e<i.matches.length&&!c.isImmediatePropagationStopped();e++){l=i.matches[e];if(s||!c.namespace&&!l.namespace||c.namespace_re&&c.namespace_re.test(l.namespace))c.data=l.data,c.handleObj=l,g=((p.event.special[l.origType]||{}).handle||l.handler).apply(i.elem,r),g!==b&&(c.result=g,g===!1&&(c.preventDefault(),c.stopPropagation()))}}return t.postDispatch&&t.postDispatch.call(this,c),c.result},props:"attrChange attrName relatedNode srcElement altKey bubbles cancelable ctrlKey currentTarget eventPhase metaKey relatedTarget shiftKey target timeStamp view which".split(" "),fixHooks:{},keyHooks:{props:"char charCode key keyCode".split(" "),filter:function(a,b){return a.which==null&&(a.which=b.charCode!=null?b.charCode:b.keyCode),a}},mouseHooks:{props:"button buttons clientX clientY fromElement offsetX offsetY pageX pageY screenX screenY toElement".split(" "),filter:function(a,c){var d,f,g,h=c.button,i=c.fromElement;return a.pageX==null&&c.clientX!=null&&(d=a.target.ownerDocument||e,f=d.documentElement,g=d.body,a.pageX=c.clientX+(f&&f.scrollLeft||g&&g.scrollLeft||0)-(f&&f.clientLeft||g&&g.clientLeft||0),a.pageY=c.clientY+(f&&f.scrollTop||g&&g.scrollTop||0)-(f&&f.clientTop||g&&g.clientTop||0)),!a.relatedTarget&&i&&(a.relatedTarget=i===a.target?c.toElement:i),!a.which&&h!==b&&(a.which=h&1?1:h&2?3:h&4?2:0),a}},fix:function(a){if(a[p.expando])return a;var b,c,d=a,f=p.event.fixHooks[a.type]||{},g=f.props?this.props.concat(f.props):this.props;a=p.Event(d);for(b=g.length;b;)c=g[--b],a[c]=d[c];return a.target||(a.target=d.srcElement||e),a.target.nodeType===3&&(a.target=a.target.parentNode),a.metaKey=!!a.metaKey,f.filter?f.filter(a,d):a},special:{load:{noBubble:!0},focus:{delegateType:"focusin"},blur:{delegateType:"focusout"},beforeunload:{setup:function(a,b,c){p.isWindow(this)&&(this.onbeforeunload=c)},teardown:function(a,b){this.onbeforeunload===b&&(this.onbeforeunload=null)}}},simulate:function(a,b,c,d){var e=p.extend(new p.Event,c,{type:a,isSimulated:!0,originalEvent:{}});d?p.event.trigger(e,null,b):p.event.dispatch.call(b,e),e.isDefaultPrevented()&&c.preventDefault()}},p.event.handle=p.event.dispatch,p.removeEvent=e.removeEventListener?function(a,b,c){a.removeEventListener&&a.removeEventListener(b,c,!1)}:function(a,b,c){var d="on"+b;a.detachEvent&&(typeof a[d]=="undefined"&&(a[d]=null),a.detachEvent(d,c))},p.Event=function(a,b){if(this instanceof p.Event)a&&a.type?(this.originalEvent=a,this.type=a.type,this.isDefaultPrevented=a.defaultPrevented||a.returnValue===!1||a.getPreventDefault&&a.getPreventDefault()?bb:ba):this.type=a,b&&p.extend(this,b),this.timeStamp=a&&a.timeStamp||p.now(),this[p.expando]=!0;else return new p.Event(a,b)},p.Event.prototype={preventDefault:function(){this.isDefaultPrevented=bb;var a=this.originalEvent;if(!a)return;a.preventDefault?a.preventDefault():a.returnValue=!1},stopPropagation:function(){this.isPropagationStopped=bb;var a=this.originalEvent;if(!a)return;a.stopPropagation&&a.stopPropagation(),a.cancelBubble=!0},stopImmediatePropagation:function(){this.isImmediatePropagationStopped=bb,this.stopPropagation()},isDefaultPrevented:ba,isPropagationStopped:ba,isImmediatePropagationStopped:ba},p.each({mouseenter:"mouseover",mouseleave:"mouseout"},function(a,b){p.event.special[a]={delegateType:b,bindType:b,handle:function(a){var c,d=this,e=a.relatedTarget,f=a.handleObj,g=f.selector;if(!e||e!==d&&!p.contains(d,e))a.type=f.origType,c=f.handler.apply(this,arguments),a.type=b;return c}}}),p.support.submitBubbles||(p.event.special.submit={setup:function(){if(p.nodeName(this,"form"))return!1;p.event.add(this,"click._submit keypress._submit",function(a){var c=a.target,d=p.nodeName(c,"input")||p.nodeName(c,"button")?c.form:b;d&&!p._data(d,"_submit_attached")&&(p.event.add(d,"submit._submit",function(a){a._submit_bubble=!0}),p._data(d,"_submit_attached",!0))})},postDispatch:function(a){a._submit_bubble&&(delete a._submit_bubble,this.parentNode&&!a.isTrigger&&p.event.simulate("submit",this.parentNode,a,!0))},teardown:function(){if(p.nodeName(this,"form"))return!1;p.event.remove(this,"._submit")}}),p.support.changeBubbles||(p.event.special.change={setup:function(){if(V.test(this.nodeName)){if(this.type==="checkbox"||this.type==="radio")p.event.add(this,"propertychange._change",function(a){a.originalEvent.propertyName==="checked"&&(this._just_changed=!0)}),p.event.add(this,"click._change",function(a){this._just_changed&&!a.isTrigger&&(this._just_changed=!1),p.event.simulate("change",this,a,!0)});return!1}p.event.add(this,"beforeactivate._change",function(a){var b=a.target;V.test(b.nodeName)&&!p._data(b,"_change_attached")&&(p.event.add(b,"change._change",function(a){this.parentNode&&!a.isSimulated&&!a.isTrigger&&p.event.simulate("change",this.parentNode,a,!0)}),p._data(b,"_change_attached",!0))})},handle:function(a){var b=a.target;if(this!==b||a.isSimulated||a.isTrigger||b.type!=="radio"&&b.type!=="checkbox")return a.handleObj.handler.apply(this,arguments)},teardown:function(){return p.event.remove(this,"._change"),!V.test(this.nodeName)}}),p.support.focusinBubbles||p.each({focus:"focusin",blur:"focusout"},function(a,b){var c=0,d=function(a){p.event.simulate(b,a.target,p.event.fix(a),!0)};p.event.special[b]={setup:function(){c++===0&&e.addEventListener(a,d,!0)},teardown:function(){--c===0&&e.removeEventListener(a,d,!0)}}}),p.fn.extend({on:function(a,c,d,e,f){var g,h;if(typeof a=="object"){typeof c!="string"&&(d=d||c,c=b);for(h in a)this.on(h,c,d,a[h],f);return this}d==null&&e==null?(e=c,d=c=b):e==null&&(typeof c=="string"?(e=d,d=b):(e=d,d=c,c=b));if(e===!1)e=ba;else if(!e)return this;return f===1&&(g=e,e=function(a){return p().off(a),g.apply(this,arguments)},e.guid=g.guid||(g.guid=p.guid++)),this.each(function(){p.event.add(this,a,e,d,c)})},one:function(a,b,c,d){return this.on(a,b,c,d,1)},off:function(a,c,d){var e,f;if(a&&a.preventDefault&&a.handleObj)return e=a.handleObj,p(a.delegateTarget).off(e.namespace?e.origType+"."+e.namespace:e.origType,e.selector,e.handler),this;if(typeof a=="object"){for(f in a)this.off(f,c,a[f]);return this}if(c===!1||typeof c=="function")d=c,c=b;return d===!1&&(d=ba),this.each(function(){p.event.remove(this,a,d,c)})},bind:function(a,b,c){return this.on(a,null,b,c)},unbind:function(a,b){return this.off(a,null,b)},live:function(a,b,c){return p(this.context).on(a,this.selector,b,c),this},die:function(a,b){return p(this.context).off(a,this.selector||"**",b),this},delegate:function(a,b,c,d){return this.on(b,a,c,d)},undelegate:function(a,b,c){return arguments.length===1?this.off(a,"**"):this.off(b,a||"**",c)},trigger:function(a,b){return this.each(function(){p.event.trigger(a,b,this)})},triggerHandler:function(a,b){if(this[0])return p.event.trigger(a,b,this[0],!0)},toggle:function(a){var b=arguments,c=a.guid||p.guid++,d=0,e=function(c){var e=(p._data(this,"lastToggle"+a.guid)||0)%d;return p._data(this,"lastToggle"+a.guid,e+1),c.preventDefault(),b[e].apply(this,arguments)||!1};e.guid=c;while(d<b.length)b[d++].guid=c;return this.click(e)},hover:function(a,b){return this.mouseenter(a).mouseleave(b||a)}}),p.each("blur focus focusin focusout load resize scroll unload click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup error contextmenu".split(" "),function(a,b){p.fn[b]=function(a,c){return c==null&&(c=a,a=null),arguments.length>0?this.on(b,null,a,c):this.trigger(b)},Y.test(b)&&(p.event.fixHooks[b]=p.event.keyHooks),Z.test(b)&&(p.event.fixHooks[b]=p.event.mouseHooks)}),function(a,b){function bc(a,b,c,d){c=c||[],b=b||r;var e,f,i,j,k=b.nodeType;if(!a||typeof a!="string")return c;if(k!==1&&k!==9)return[];i=g(b);if(!i&&!d)if(e=P.exec(a))if(j=e[1]){if(k===9){f=b.getElementById(j);if(!f||!f.parentNode)return c;if(f.id===j)return c.push(f),c}else if(b.ownerDocument&&(f=b.ownerDocument.getElementById(j))&&h(b,f)&&f.id===j)return c.push(f),c}else{if(e[2])return w.apply(c,x.call(b.getElementsByTagName(a),0)),c;if((j=e[3])&&_&&b.getElementsByClassName)return w.apply(c,x.call(b.getElementsByClassName(j),0)),c}return bp(a.replace(L,"$1"),b,c,d,i)}function bd(a){return function(b){var c=b.nodeName.toLowerCase();return c==="input"&&b.type===a}}function be(a){return function(b){var c=b.nodeName.toLowerCase();return(c==="input"||c==="button")&&b.type===a}}function bf(a){return z(function(b){return b=+b,z(function(c,d){var e,f=a([],c.length,b),g=f.length;while(g--)c[e=f[g]]&&(c[e]=!(d[e]=c[e]))})})}function bg(a,b,c){if(a===b)return c;var d=a.nextSibling;while(d){if(d===b)return-1;d=d.nextSibling}return 1}function bh(a,b){var c,d,f,g,h,i,j,k=C[o][a];if(k)return b?0:k.slice(0);h=a,i=[],j=e.preFilter;while(h){if(!c||(d=M.exec(h)))d&&(h=h.slice(d[0].length)),i.push(f=[]);c=!1;if(d=N.exec(h))f.push(c=new q(d.shift())),h=h.slice(c.length),c.type=d[0].replace(L," ");for(g in e.filter)(d=W[g].exec(h))&&(!j[g]||(d=j[g](d,r,!0)))&&(f.push(c=new q(d.shift())),h=h.slice(c.length),c.type=g,c.matches=d);if(!c)break}return b?h.length:h?bc.error(a):C(a,i).slice(0)}function bi(a,b,d){var e=b.dir,f=d&&b.dir==="parentNode",g=u++;return b.first?function(b,c,d){while(b=b[e])if(f||b.nodeType===1)return a(b,c,d)}:function(b,d,h){if(!h){var i,j=t+" "+g+" ",k=j+c;while(b=b[e])if(f||b.nodeType===1){if((i=b[o])===k)return b.sizset;if(typeof i=="string"&&i.indexOf(j)===0){if(b.sizset)return b}else{b[o]=k;if(a(b,d,h))return b.sizset=!0,b;b.sizset=!1}}}else while(b=b[e])if(f||b.nodeType===1)if(a(b,d,h))return b}}function bj(a){return a.length>1?function(b,c,d){var e=a.length;while(e--)if(!a[e](b,c,d))return!1;return!0}:a[0]}function bk(a,b,c,d,e){var f,g=[],h=0,i=a.length,j=b!=null;for(;h<i;h++)if(f=a[h])if(!c||c(f,d,e))g.push(f),j&&b.push(h);return g}function bl(a,b,c,d,e,f){return d&&!d[o]&&(d=bl(d)),e&&!e[o]&&(e=bl(e,f)),z(function(f,g,h,i){if(f&&e)return;var j,k,l,m=[],n=[],o=g.length,p=f||bo(b||"*",h.nodeType?[h]:h,[],f),q=a&&(f||!b)?bk(p,m,a,h,i):p,r=c?e||(f?a:o||d)?[]:g:q;c&&c(q,r,h,i);if(d){l=bk(r,n),d(l,[],h,i),j=l.length;while(j--)if(k=l[j])r[n[j]]=!(q[n[j]]=k)}if(f){j=a&&r.length;while(j--)if(k=r[j])f[m[j]]=!(g[m[j]]=k)}else r=bk(r===g?r.splice(o,r.length):r),e?e(null,g,r,i):w.apply(g,r)})}function bm(a){var b,c,d,f=a.length,g=e.relative[a[0].type],h=g||e.relative[" "],i=g?1:0,j=bi(function(a){return a===b},h,!0),k=bi(function(a){return y.call(b,a)>-1},h,!0),m=[function(a,c,d){return!g&&(d||c!==l)||((b=c).nodeType?j(a,c,d):k(a,c,d))}];for(;i<f;i++)if(c=e.relative[a[i].type])m=[bi(bj(m),c)];else{c=e.filter[a[i].type].apply(null,a[i].matches);if(c[o]){d=++i;for(;d<f;d++)if(e.relative[a[d].type])break;return bl(i>1&&bj(m),i>1&&a.slice(0,i-1).join("").replace(L,"$1"),c,i<d&&bm(a.slice(i,d)),d<f&&bm(a=a.slice(d)),d<f&&a.join(""))}m.push(c)}return bj(m)}function bn(a,b){var d=b.length>0,f=a.length>0,g=function(h,i,j,k,m){var n,o,p,q=[],s=0,u="0",x=h&&[],y=m!=null,z=l,A=h||f&&e.find.TAG("*",m&&i.parentNode||i),B=t+=z==null?1:Math.E;y&&(l=i!==r&&i,c=g.el);for(;(n=A[u])!=null;u++){if(f&&n){for(o=0;p=a[o];o++)if(p(n,i,j)){k.push(n);break}y&&(t=B,c=++g.el)}d&&((n=!p&&n)&&s--,h&&x.push(n))}s+=u;if(d&&u!==s){for(o=0;p=b[o];o++)p(x,q,i,j);if(h){if(s>0)while(u--)!x[u]&&!q[u]&&(q[u]=v.call(k));q=bk(q)}w.apply(k,q),y&&!h&&q.length>0&&s+b.length>1&&bc.uniqueSort(k)}return y&&(t=B,l=z),x};return g.el=0,d?z(g):g}function bo(a,b,c,d){var e=0,f=b.length;for(;e<f;e++)bc(a,b[e],c,d);return c}function bp(a,b,c,d,f){var g,h,j,k,l,m=bh(a),n=m.length;if(!d&&m.length===1){h=m[0]=m[0].slice(0);if(h.length>2&&(j=h[0]).type==="ID"&&b.nodeType===9&&!f&&e.relative[h[1].type]){b=e.find.ID(j.matches[0].replace(V,""),b,f)[0];if(!b)return c;a=a.slice(h.shift().length)}for(g=W.POS.test(a)?-1:h.length-1;g>=0;g--){j=h[g];if(e.relative[k=j.type])break;if(l=e.find[k])if(d=l(j.matches[0].replace(V,""),R.test(h[0].type)&&b.parentNode||b,f)){h.splice(g,1),a=d.length&&h.join("");if(!a)return w.apply(c,x.call(d,0)),c;break}}}return i(a,m)(d,b,f,c,R.test(a)),c}function bq(){}var c,d,e,f,g,h,i,j,k,l,m=!0,n="undefined",o=("sizcache"+Math.random()).replace(".",""),q=String,r=a.document,s=r.documentElement,t=0,u=0,v=[].pop,w=[].push,x=[].slice,y=[].indexOf||function(a){var b=0,c=this.length;for(;b<c;b++)if(this[b]===a)return b;return-1},z=function(a,b){return a[o]=b==null||b,a},A=function(){var a={},b=[];return z(function(c,d){return b.push(c)>e.cacheLength&&delete a[b.shift()],a[c]=d},a)},B=A(),C=A(),D=A(),E="[\\x20\\t\\r\\n\\f]",F="(?:\\\\.|[-\\w]|[^\\x00-\\xa0])+",G=F.replace("w","w#"),H="([*^$|!~]?=)",I="\\["+E+"*("+F+")"+E+"*(?:"+H+E+"*(?:(['\"])((?:\\\\.|[^\\\\])*?)\\3|("+G+")|)|)"+E+"*\\]",J=":("+F+")(?:\\((?:(['\"])((?:\\\\.|[^\\\\])*?)\\2|([^()[\\]]*|(?:(?:"+I+")|[^:]|\\\\.)*|.*))\\)|)",K=":(even|odd|eq|gt|lt|nth|first|last)(?:\\("+E+"*((?:-\\d)?\\d*)"+E+"*\\)|)(?=[^-]|$)",L=new RegExp("^"+E+"+|((?:^|[^\\\\])(?:\\\\.)*)"+E+"+$","g"),M=new RegExp("^"+E+"*,"+E+"*"),N=new RegExp("^"+E+"*([\\x20\\t\\r\\n\\f>+~])"+E+"*"),O=new RegExp(J),P=/^(?:#([\w\-]+)|(\w+)|\.([\w\-]+))$/,Q=/^:not/,R=/[\x20\t\r\n\f]*[+~]/,S=/:not\($/,T=/h\d/i,U=/input|select|textarea|button/i,V=/\\(?!\\)/g,W={ID:new RegExp("^#("+F+")"),CLASS:new RegExp("^\\.("+F+")"),NAME:new RegExp("^\\[name=['\"]?("+F+")['\"]?\\]"),TAG:new RegExp("^("+F.replace("w","w*")+")"),ATTR:new RegExp("^"+I),PSEUDO:new RegExp("^"+J),POS:new RegExp(K,"i"),CHILD:new RegExp("^:(only|nth|first|last)-child(?:\\("+E+"*(even|odd|(([+-]|)(\\d*)n|)"+E+"*(?:([+-]|)"+E+"*(\\d+)|))"+E+"*\\)|)","i"),needsContext:new RegExp("^"+E+"*[>+~]|"+K,"i")},X=function(a){var b=r.createElement("div");try{return a(b)}catch(c){return!1}finally{b=null}},Y=X(function(a){return a.appendChild(r.createComment("")),!a.getElementsByTagName("*").length}),Z=X(function(a){return a.innerHTML="<a href='#'></a>",a.firstChild&&typeof a.firstChild.getAttribute!==n&&a.firstChild.getAttribute("href")==="#"}),$=X(function(a){a.innerHTML="<select></select>";var b=typeof a.lastChild.getAttribute("multiple");return b!=="boolean"&&b!=="string"}),_=X(function(a){return a.innerHTML="<div class='hidden e'></div><div class='hidden'></div>",!a.getElementsByClassName||!a.getElementsByClassName("e").length?!1:(a.lastChild.className="e",a.getElementsByClassName("e").length===2)}),ba=X(function(a){a.id=o+0,a.innerHTML="<a name='"+o+"'></a><div name='"+o+"'></div>",s.insertBefore(a,s.firstChild);var b=r.getElementsByName&&r.getElementsByName(o).length===2+r.getElementsByName(o+0).length;return d=!r.getElementById(o),s.removeChild(a),b});try{x.call(s.childNodes,0)[0].nodeType}catch(bb){x=function(a){var b,c=[];for(;b=this[a];a++)c.push(b);return c}}bc.matches=function(a,b){return bc(a,null,null,b)},bc.matchesSelector=function(a,b){return bc(b,null,null,[a]).length>0},f=bc.getText=function(a){var b,c="",d=0,e=a.nodeType;if(e){if(e===1||e===9||e===11){if(typeof a.textContent=="string")return a.textContent;for(a=a.firstChild;a;a=a.nextSibling)c+=f(a)}else if(e===3||e===4)return a.nodeValue}else for(;b=a[d];d++)c+=f(b);return c},g=bc.isXML=function(a){var b=a&&(a.ownerDocument||a).documentElement;return b?b.nodeName!=="HTML":!1},h=bc.contains=s.contains?function(a,b){var c=a.nodeType===9?a.documentElement:a,d=b&&b.parentNode;return a===d||!!(d&&d.nodeType===1&&c.contains&&c.contains(d))}:s.compareDocumentPosition?function(a,b){return b&&!!(a.compareDocumentPosition(b)&16)}:function(a,b){while(b=b.parentNode)if(b===a)return!0;return!1},bc.attr=function(a,b){var c,d=g(a);return d||(b=b.toLowerCase()),(c=e.attrHandle[b])?c(a):d||$?a.getAttribute(b):(c=a.getAttributeNode(b),c?typeof a[b]=="boolean"?a[b]?b:null:c.specified?c.value:null:null)},e=bc.selectors={cacheLength:50,createPseudo:z,match:W,attrHandle:Z?{}:{href:function(a){return a.getAttribute("href",2)},type:function(a){return a.getAttribute("type")}},find:{ID:d?function(a,b,c){if(typeof b.getElementById!==n&&!c){var d=b.getElementById(a);return d&&d.parentNode?[d]:[]}}:function(a,c,d){if(typeof c.getElementById!==n&&!d){var e=c.getElementById(a);return e?e.id===a||typeof e.getAttributeNode!==n&&e.getAttributeNode("id").value===a?[e]:b:[]}},TAG:Y?function(a,b){if(typeof b.getElementsByTagName!==n)return b.getElementsByTagName(a)}:function(a,b){var c=b.getElementsByTagName(a);if(a==="*"){var d,e=[],f=0;for(;d=c[f];f++)d.nodeType===1&&e.push(d);return e}return c},NAME:ba&&function(a,b){if(typeof b.getElementsByName!==n)return b.getElementsByName(name)},CLASS:_&&function(a,b,c){if(typeof b.getElementsByClassName!==n&&!c)return b.getElementsByClassName(a)}},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(a){return a[1]=a[1].replace(V,""),a[3]=(a[4]||a[5]||"").replace(V,""),a[2]==="~="&&(a[3]=" "+a[3]+" "),a.slice(0,4)},CHILD:function(a){return a[1]=a[1].toLowerCase(),a[1]==="nth"?(a[2]||bc.error(a[0]),a[3]=+(a[3]?a[4]+(a[5]||1):2*(a[2]==="even"||a[2]==="odd")),a[4]=+(a[6]+a[7]||a[2]==="odd")):a[2]&&bc.error(a[0]),a},PSEUDO:function(a){var b,c;if(W.CHILD.test(a[0]))return null;if(a[3])a[2]=a[3];else if(b=a[4])O.test(b)&&(c=bh(b,!0))&&(c=b.indexOf(")",b.length-c)-b.length)&&(b=b.slice(0,c),a[0]=a[0].slice(0,c)),a[2]=b;return a.slice(0,3)}},filter:{ID:d?function(a){return a=a.replace(V,""),function(b){return b.getAttribute("id")===a}}:function(a){return a=a.replace(V,""),function(b){var c=typeof b.getAttributeNode!==n&&b.getAttributeNode("id");return c&&c.value===a}},TAG:function(a){return a==="*"?function(){return!0}:(a=a.replace(V,"").toLowerCase(),function(b){return b.nodeName&&b.nodeName.toLowerCase()===a})},CLASS:function(a){var b=B[o][a];return b||(b=B(a,new RegExp("(^|"+E+")"+a+"("+E+"|$)"))),function(a){return b.test(a.className||typeof a.getAttribute!==n&&a.getAttribute("class")||"")}},ATTR:function(a,b,c){return function(d,e){var f=bc.attr(d,a);return f==null?b==="!=":b?(f+="",b==="="?f===c:b==="!="?f!==c:b==="^="?c&&f.indexOf(c)===0:b==="*="?c&&f.indexOf(c)>-1:b==="$="?c&&f.substr(f.length-c.length)===c:b==="~="?(" "+f+" ").indexOf(c)>-1:b==="|="?f===c||f.substr(0,c.length+1)===c+"-":!1):!0}},CHILD:function(a,b,c,d){return a==="nth"?function(a){var b,e,f=a.parentNode;if(c===1&&d===0)return!0;if(f){e=0;for(b=f.firstChild;b;b=b.nextSibling)if(b.nodeType===1){e++;if(a===b)break}}return e-=d,e===c||e%c===0&&e/c>=0}:function(b){var c=b;switch(a){case"only":case"first":while(c=c.previousSibling)if(c.nodeType===1)return!1;if(a==="first")return!0;c=b;case"last":while(c=c.nextSibling)if(c.nodeType===1)return!1;return!0}}},PSEUDO:function(a,b){var c,d=e.pseudos[a]||e.setFilters[a.toLowerCase()]||bc.error("unsupported pseudo: "+a);return d[o]?d(b):d.length>1?(c=[a,a,"",b],e.setFilters.hasOwnProperty(a.toLowerCase())?z(function(a,c){var e,f=d(a,b),g=f.length;while(g--)e=y.call(a,f[g]),a[e]=!(c[e]=f[g])}):function(a){return d(a,0,c)}):d}},pseudos:{not:z(function(a){var b=[],c=[],d=i(a.replace(L,"$1"));return d[o]?z(function(a,b,c,e){var f,g=d(a,null,e,[]),h=a.length;while(h--)if(f=g[h])a[h]=!(b[h]=f)}):function(a,e,f){return b[0]=a,d(b,null,f,c),!c.pop()}}),has:z(function(a){return function(b){return bc(a,b).length>0}}),contains:z(function(a){return function(b){return(b.textContent||b.innerText||f(b)).indexOf(a)>-1}}),enabled:function(a){return a.disabled===!1},disabled:function(a){return a.disabled===!0},checked:function(a){var b=a.nodeName.toLowerCase();return b==="input"&&!!a.checked||b==="option"&&!!a.selected},selected:function(a){return a.parentNode&&a.parentNode.selectedIndex,a.selected===!0},parent:function(a){return!e.pseudos.empty(a)},empty:function(a){var b;a=a.firstChild;while(a){if(a.nodeName>"@"||(b=a.nodeType)===3||b===4)return!1;a=a.nextSibling}return!0},header:function(a){return T.test(a.nodeName)},text:function(a){var b,c;return a.nodeName.toLowerCase()==="input"&&(b=a.type)==="text"&&((c=a.getAttribute("type"))==null||c.toLowerCase()===b)},radio:bd("radio"),checkbox:bd("checkbox"),file:bd("file"),password:bd("password"),image:bd("image"),submit:be("submit"),reset:be("reset"),button:function(a){var b=a.nodeName.toLowerCase();return b==="input"&&a.type==="button"||b==="button"},input:function(a){return U.test(a.nodeName)},focus:function(a){var b=a.ownerDocument;return a===b.activeElement&&(!b.hasFocus||b.hasFocus())&&(!!a.type||!!a.href)},active:function(a){return a===a.ownerDocument.activeElement},first:bf(function(a,b,c){return[0]}),last:bf(function(a,b,c){return[b-1]}),eq:bf(function(a,b,c){return[c<0?c+b:c]}),even:bf(function(a,b,c){for(var d=0;d<b;d+=2)a.push(d);return a}),odd:bf(function(a,b,c){for(var d=1;d<b;d+=2)a.push(d);return a}),lt:bf(function(a,b,c){for(var d=c<0?c+b:c;--d>=0;)a.push(d);return a}),gt:bf(function(a,b,c){for(var d=c<0?c+b:c;++d<b;)a.push(d);return a})}},j=s.compareDocumentPosition?function(a,b){return a===b?(k=!0,0):(!a.compareDocumentPosition||!b.compareDocumentPosition?a.compareDocumentPosition:a.compareDocumentPosition(b)&4)?-1:1}:function(a,b){if(a===b)return k=!0,0;if(a.sourceIndex&&b.sourceIndex)return a.sourceIndex-b.sourceIndex;var c,d,e=[],f=[],g=a.parentNode,h=b.parentNode,i=g;if(g===h)return bg(a,b);if(!g)return-1;if(!h)return 1;while(i)e.unshift(i),i=i.parentNode;i=h;while(i)f.unshift(i),i=i.parentNode;c=e.length,d=f.length;for(var j=0;j<c&&j<d;j++)if(e[j]!==f[j])return bg(e[j],f[j]);return j===c?bg(a,f[j],-1):bg(e[j],b,1)},[0,0].sort(j),m=!k,bc.uniqueSort=function(a){var b,c=1;k=m,a.sort(j);if(k)for(;b=a[c];c++)b===a[c-1]&&a.splice(c--,1);return a},bc.error=function(a){throw new Error("Syntax error, unrecognized expression: "+a)},i=bc.compile=function(a,b){var c,d=[],e=[],f=D[o][a];if(!f){b||(b=bh(a)),c=b.length;while(c--)f=bm(b[c]),f[o]?d.push(f):e.push(f);f=D(a,bn(e,d))}return f},r.querySelectorAll&&function(){var a,b=bp,c=/'|\\/g,d=/\=[\x20\t\r\n\f]*([^'"\]]*)[\x20\t\r\n\f]*\]/g,e=[":focus"],f=[":active",":focus"],h=s.matchesSelector||s.mozMatchesSelector||s.webkitMatchesSelector||s.oMatchesSelector||s.msMatchesSelector;X(function(a){a.innerHTML="<select><option selected=''></option></select>",a.querySelectorAll("[selected]").length||e.push("\\["+E+"*(?:checked|disabled|ismap|multiple|readonly|selected|value)"),a.querySelectorAll(":checked").length||e.push(":checked")}),X(function(a){a.innerHTML="<p test=''></p>",a.querySelectorAll("[test^='']").length&&e.push("[*^$]="+E+"*(?:\"\"|'')"),a.innerHTML="<input type='hidden'/>",a.querySelectorAll(":enabled").length||e.push(":enabled",":disabled")}),e=new RegExp(e.join("|")),bp=function(a,d,f,g,h){if(!g&&!h&&(!e||!e.test(a))){var i,j,k=!0,l=o,m=d,n=d.nodeType===9&&a;if(d.nodeType===1&&d.nodeName.toLowerCase()!=="object"){i=bh(a),(k=d.getAttribute("id"))?l=k.replace(c,"\\$&"):d.setAttribute("id",l),l="[id='"+l+"'] ",j=i.length;while(j--)i[j]=l+i[j].join("");m=R.test(a)&&d.parentNode||d,n=i.join(",")}if(n)try{return w.apply(f,x.call(m.querySelectorAll(n),0)),f}catch(p){}finally{k||d.removeAttribute("id")}}return b(a,d,f,g,h)},h&&(X(function(b){a=h.call(b,"div");try{h.call(b,"[test!='']:sizzle"),f.push("!=",J)}catch(c){}}),f=new RegExp(f.join("|")),bc.matchesSelector=function(b,c){c=c.replace(d,"='$1']");if(!g(b)&&!f.test(c)&&(!e||!e.test(c)))try{var i=h.call(b,c);if(i||a||b.document&&b.document.nodeType!==11)return i}catch(j){}return bc(c,null,null,[b]).length>0})}(),e.pseudos.nth=e.pseudos.eq,e.filters=bq.prototype=e.pseudos,e.setFilters=new bq,bc.attr=p.attr,p.find=bc,p.expr=bc.selectors,p.expr[":"]=p.expr.pseudos,p.unique=bc.uniqueSort,p.text=bc.getText,p.isXMLDoc=bc.isXML,p.contains=bc.contains}(a);var bc=/Until$/,bd=/^(?:parents|prev(?:Until|All))/,be=/^.[^:#\[\.,]*$/,bf=p.expr.match.needsContext,bg={children:!0,contents:!0,next:!0,prev:!0};p.fn.extend({find:function(a){var b,c,d,e,f,g,h=this;if(typeof a!="string")return p(a).filter(function(){for(b=0,c=h.length;b<c;b++)if(p.contains(h[b],this))return!0});g=this.pushStack("","find",a);for(b=0,c=this.length;b<c;b++){d=g.length,p.find(a,this[b],g);if(b>0)for(e=d;e<g.length;e++)for(f=0;f<d;f++)if(g[f]===g[e]){g.splice(e--,1);break}}return g},has:function(a){var b,c=p(a,this),d=c.length;return this.filter(function(){for(b=0;b<d;b++)if(p.contains(this,c[b]))return!0})},not:function(a){return this.pushStack(bj(this,a,!1),"not",a)},filter:function(a){return this.pushStack(bj(this,a,!0),"filter",a)},is:function(a){return!!a&&(typeof a=="string"?bf.test(a)?p(a,this.context).index(this[0])>=0:p.filter(a,this).length>0:this.filter(a).length>0)},closest:function(a,b){var c,d=0,e=this.length,f=[],g=bf.test(a)||typeof a!="string"?p(a,b||this.context):0;for(;d<e;d++){c=this[d];while(c&&c.ownerDocument&&c!==b&&c.nodeType!==11){if(g?g.index(c)>-1:p.find.matchesSelector(c,a)){f.push(c);break}c=c.parentNode}}return f=f.length>1?p.unique(f):f,this.pushStack(f,"closest",a)},index:function(a){return a?typeof a=="string"?p.inArray(this[0],p(a)):p.inArray(a.jquery?a[0]:a,this):this[0]&&this[0].parentNode?this.prevAll().length:-1},add:function(a,b){var c=typeof a=="string"?p(a,b):p.makeArray(a&&a.nodeType?[a]:a),d=p.merge(this.get(),c);return this.pushStack(bh(c[0])||bh(d[0])?d:p.unique(d))},addBack:function(a){return this.add(a==null?this.prevObject:this.prevObject.filter(a))}}),p.fn.andSelf=p.fn.addBack,p.each({parent:function(a){var b=a.parentNode;return b&&b.nodeType!==11?b:null},parents:function(a){return p.dir(a,"parentNode")},parentsUntil:function(a,b,c){return p.dir(a,"parentNode",c)},next:function(a){return bi(a,"nextSibling")},prev:function(a){return bi(a,"previousSibling")},nextAll:function(a){return p.dir(a,"nextSibling")},prevAll:function(a){return p.dir(a,"previousSibling")},nextUntil:function(a,b,c){return p.dir(a,"nextSibling",c)},prevUntil:function(a,b,c){return p.dir(a,"previousSibling",c)},siblings:function(a){return p.sibling((a.parentNode||{}).firstChild,a)},children:function(a){return p.sibling(a.firstChild)},contents:function(a){return p.nodeName(a,"iframe")?a.contentDocument||a.contentWindow.document:p.merge([],a.childNodes)}},function(a,b){p.fn[a]=function(c,d){var e=p.map(this,b,c);return bc.test(a)||(d=c),d&&typeof d=="string"&&(e=p.filter(d,e)),e=this.length>1&&!bg[a]?p.unique(e):e,this.length>1&&bd.test(a)&&(e=e.reverse()),this.pushStack(e,a,k.call(arguments).join(","))}}),p.extend({filter:function(a,b,c){return c&&(a=":not("+a+")"),b.length===1?p.find.matchesSelector(b[0],a)?[b[0]]:[]:p.find.matches(a,b)},dir:function(a,c,d){var e=[],f=a[c];while(f&&f.nodeType!==9&&(d===b||f.nodeType!==1||!p(f).is(d)))f.nodeType===1&&e.push(f),f=f[c];return e},sibling:function(a,b){var c=[];for(;a;a=a.nextSibling)a.nodeType===1&&a!==b&&c.push(a);return c}});var bl="abbr|article|aside|audio|bdi|canvas|data|datalist|details|figcaption|figure|footer|header|hgroup|mark|meter|nav|output|progress|section|summary|time|video",bm=/ jQuery\d+="(?:null|\d+)"/g,bn=/^\s+/,bo=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/gi,bp=/<([\w:]+)/,bq=/<tbody/i,br=/<|&#?\w+;/,bs=/<(?:script|style|link)/i,bt=/<(?:script|object|embed|option|style)/i,bu=new RegExp("<(?:"+bl+")[\\s/>]","i"),bv=/^(?:checkbox|radio)$/,bw=/checked\s*(?:[^=]|=\s*.checked.)/i,bx=/\/(java|ecma)script/i,by=/^\s*<!(?:\[CDATA\[|\-\-)|[\]\-]{2}>\s*$/g,bz={option:[1,"<select multiple='multiple'>","</select>"],legend:[1,"<fieldset>","</fieldset>"],thead:[1,"<table>","</table>"],tr:[2,"<table><tbody>","</tbody></table>"],td:[3,"<table><tbody><tr>","</tr></tbody></table>"],col:[2,"<table><tbody></tbody><colgroup>","</colgroup></table>"],area:[1,"<map>","</map>"],_default:[0,"",""]},bA=bk(e),bB=bA.appendChild(e.createElement("div"));bz.optgroup=bz.option,bz.tbody=bz.tfoot=bz.colgroup=bz.caption=bz.thead,bz.th=bz.td,p.support.htmlSerialize||(bz._default=[1,"X<div>","</div>"]),p.fn.extend({text:function(a){return p.access(this,function(a){return a===b?p.text(this):this.empty().append((this[0]&&this[0].ownerDocument||e).createTextNode(a))},null,a,arguments.length)},wrapAll:function(a){if(p.isFunction(a))return this.each(function(b){p(this).wrapAll(a.call(this,b))});if(this[0]){var b=p(a,this[0].ownerDocument).eq(0).clone(!0);this[0].parentNode&&b.insertBefore(this[0]),b.map(function(){var a=this;while(a.firstChild&&a.firstChild.nodeType===1)a=a.firstChild;return a}).append(this)}return this},wrapInner:function(a){return p.isFunction(a)?this.each(function(b){p(this).wrapInner(a.call(this,b))}):this.each(function(){var b=p(this),c=b.contents();c.length?c.wrapAll(a):b.append(a)})},wrap:function(a){var b=p.isFunction(a);return this.each(function(c){p(this).wrapAll(b?a.call(this,c):a)})},unwrap:function(){return this.parent().each(function(){p.nodeName(this,"body")||p(this).replaceWith(this.childNodes)}).end()},append:function(){return this.domManip(arguments,!0,function(a){(this.nodeType===1||this.nodeType===11)&&this.appendChild(a)})},prepend:function(){return this.domManip(arguments,!0,function(a){(this.nodeType===1||this.nodeType===11)&&this.insertBefore(a,this.firstChild)})},before:function(){if(!bh(this[0]))return this.domManip(arguments,!1,function(a){this.parentNode.insertBefore(a,this)});if(arguments.length){var a=p.clean(arguments);return this.pushStack(p.merge(a,this),"before",this.selector)}},after:function(){if(!bh(this[0]))return this.domManip(arguments,!1,function(a){this.parentNode.insertBefore(a,this.nextSibling)});if(arguments.length){var a=p.clean(arguments);return this.pushStack(p.merge(this,a),"after",this.selector)}},remove:function(a,b){var c,d=0;for(;(c=this[d])!=null;d++)if(!a||p.filter(a,[c]).length)!b&&c.nodeType===1&&(p.cleanData(c.getElementsByTagName("*")),p.cleanData([c])),c.parentNode&&c.parentNode.removeChild(c);return this},empty:function(){var a,b=0;for(;(a=this[b])!=null;b++){a.nodeType===1&&p.cleanData(a.getElementsByTagName("*"));while(a.firstChild)a.removeChild(a.firstChild)}return this},clone:function(a,b){return a=a==null?!1:a,b=b==null?a:b,this.map(function(){return p.clone(this,a,b)})},html:function(a){return p.access(this,function(a){var c=this[0]||{},d=0,e=this.length;if(a===b)return c.nodeType===1?c.innerHTML.replace(bm,""):b;if(typeof a=="string"&&!bs.test(a)&&(p.support.htmlSerialize||!bu.test(a))&&(p.support.leadingWhitespace||!bn.test(a))&&!bz[(bp.exec(a)||["",""])[1].toLowerCase()]){a=a.replace(bo,"<$1></$2>");try{for(;d<e;d++)c=this[d]||{},c.nodeType===1&&(p.cleanData(c.getElementsByTagName("*")),c.innerHTML=a);c=0}catch(f){}}c&&this.empty().append(a)},null,a,arguments.length)},replaceWith:function(a){return bh(this[0])?this.length?this.pushStack(p(p.isFunction(a)?a():a),"replaceWith",a):this:p.isFunction(a)?this.each(function(b){var c=p(this),d=c.html();c.replaceWith(a.call(this,b,d))}):(typeof a!="string"&&(a=p(a).detach()),this.each(function(){var b=this.nextSibling,c=this.parentNode;p(this).remove(),b?p(b).before(a):p(c).append(a)}))},detach:function(a){return this.remove(a,!0)},domManip:function(a,c,d){a=[].concat.apply([],a);var e,f,g,h,i=0,j=a[0],k=[],l=this.length;if(!p.support.checkClone&&l>1&&typeof j=="string"&&bw.test(j))return this.each(function(){p(this).domManip(a,c,d)});if(p.isFunction(j))return this.each(function(e){var f=p(this);a[0]=j.call(this,e,c?f.html():b),f.domManip(a,c,d)});if(this[0]){e=p.buildFragment(a,this,k),g=e.fragment,f=g.firstChild,g.childNodes.length===1&&(g=f);if(f){c=c&&p.nodeName(f,"tr");for(h=e.cacheable||l-1;i<l;i++)d.call(c&&p.nodeName(this[i],"table")?bC(this[i],"tbody"):this[i],i===h?g:p.clone(g,!0,!0))}g=f=null,k.length&&p.each(k,function(a,b){b.src?p.ajax?p.ajax({url:b.src,type:"GET",dataType:"script",async:!1,global:!1,"throws":!0}):p.error("no ajax"):p.globalEval((b.text||b.textContent||b.innerHTML||"").replace(by,"")),b.parentNode&&b.parentNode.removeChild(b)})}return this}}),p.buildFragment=function(a,c,d){var f,g,h,i=a[0];return c=c||e,c=!c.nodeType&&c[0]||c,c=c.ownerDocument||c,a.length===1&&typeof i=="string"&&i.length<512&&c===e&&i.charAt(0)==="<"&&!bt.test(i)&&(p.support.checkClone||!bw.test(i))&&(p.support.html5Clone||!bu.test(i))&&(g=!0,f=p.fragments[i],h=f!==b),f||(f=c.createDocumentFragment(),p.clean(a,c,f,d),g&&(p.fragments[i]=h&&f)),{fragment:f,cacheable:g}},p.fragments={},p.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(a,b){p.fn[a]=function(c){var d,e=0,f=[],g=p(c),h=g.length,i=this.length===1&&this[0].parentNode;if((i==null||i&&i.nodeType===11&&i.childNodes.length===1)&&h===1)return g[b](this[0]),this;for(;e<h;e++)d=(e>0?this.clone(!0):this).get(),p(g[e])[b](d),f=f.concat(d);return this.pushStack(f,a,g.selector)}}),p.extend({clone:function(a,b,c){var d,e,f,g;p.support.html5Clone||p.isXMLDoc(a)||!bu.test("<"+a.nodeName+">")?g=a.cloneNode(!0):(bB.innerHTML=a.outerHTML,bB.removeChild(g=bB.firstChild));if((!p.support.noCloneEvent||!p.support.noCloneChecked)&&(a.nodeType===1||a.nodeType===11)&&!p.isXMLDoc(a)){bE(a,g),d=bF(a),e=bF(g);for(f=0;d[f];++f)e[f]&&bE(d[f],e[f])}if(b){bD(a,g);if(c){d=bF(a),e=bF(g);for(f=0;d[f];++f)bD(d[f],e[f])}}return d=e=null,g},clean:function(a,b,c,d){var f,g,h,i,j,k,l,m,n,o,q,r,s=b===e&&bA,t=[];if(!b||typeof b.createDocumentFragment=="undefined")b=e;for(f=0;(h=a[f])!=null;f++){typeof h=="number"&&(h+="");if(!h)continue;if(typeof h=="string")if(!br.test(h))h=b.createTextNode(h);else{s=s||bk(b),l=b.createElement("div"),s.appendChild(l),h=h.replace(bo,"<$1></$2>"),i=(bp.exec(h)||["",""])[1].toLowerCase(),j=bz[i]||bz._default,k=j[0],l.innerHTML=j[1]+h+j[2];while(k--)l=l.lastChild;if(!p.support.tbody){m=bq.test(h),n=i==="table"&&!m?l.firstChild&&l.firstChild.childNodes:j[1]==="<table>"&&!m?l.childNodes:[];for(g=n.length-1;g>=0;--g)p.nodeName(n[g],"tbody")&&!n[g].childNodes.length&&n[g].parentNode.removeChild(n[g])}!p.support.leadingWhitespace&&bn.test(h)&&l.insertBefore(b.createTextNode(bn.exec(h)[0]),l.firstChild),h=l.childNodes,l.parentNode.removeChild(l)}h.nodeType?t.push(h):p.merge(t,h)}l&&(h=l=s=null);if(!p.support.appendChecked)for(f=0;(h=t[f])!=null;f++)p.nodeName(h,"input")?bG(h):typeof h.getElementsByTagName!="undefined"&&p.grep(h.getElementsByTagName("input"),bG);if(c){q=function(a){if(!a.type||bx.test(a.type))return d?d.push(a.parentNode?a.parentNode.removeChild(a):a):c.appendChild(a)};for(f=0;(h=t[f])!=null;f++)if(!p.nodeName(h,"script")||!q(h))c.appendChild(h),typeof h.getElementsByTagName!="undefined"&&(r=p.grep(p.merge([],h.getElementsByTagName("script")),q),t.splice.apply(t,[f+1,0].concat(r)),f+=r.length)}return t},cleanData:function(a,b){var c,d,e,f,g=0,h=p.expando,i=p.cache,j=p.support.deleteExpando,k=p.event.special;for(;(e=a[g])!=null;g++)if(b||p.acceptData(e)){d=e[h],c=d&&i[d];if(c){if(c.events)for(f in c.events)k[f]?p.event.remove(e,f):p.removeEvent(e,f,c.handle);i[d]&&(delete i[d],j?delete e[h]:e.removeAttribute?e.removeAttribute(h):e[h]=null,p.deletedIds.push(d))}}}}),function(){var a,b;p.uaMatch=function(a){a=a.toLowerCase();var b=/(chrome)[ \/]([\w.]+)/.exec(a)||/(webkit)[ \/]([\w.]+)/.exec(a)||/(opera)(?:.*version|)[ \/]([\w.]+)/.exec(a)||/(msie) ([\w.]+)/.exec(a)||a.indexOf("compatible")<0&&/(mozilla)(?:.*? rv:([\w.]+)|)/.exec(a)||[];return{browser:b[1]||"",version:b[2]||"0"}},a=p.uaMatch(g.userAgent),b={},a.browser&&(b[a.browser]=!0,b.version=a.version),b.chrome?b.webkit=!0:b.webkit&&(b.safari=!0),p.browser=b,p.sub=function(){function a(b,c){return new a.fn.init(b,c)}p.extend(!0,a,this),a.superclass=this,a.fn=a.prototype=this(),a.fn.constructor=a,a.sub=this.sub,a.fn.init=function c(c,d){return d&&d instanceof p&&!(d instanceof a)&&(d=a(d)),p.fn.init.call(this,c,d,b)},a.fn.init.prototype=a.fn;var b=a(e);return a}}();var bH,bI,bJ,bK=/alpha\([^)]*\)/i,bL=/opacity=([^)]*)/,bM=/^(top|right|bottom|left)$/,bN=/^(none|table(?!-c[ea]).+)/,bO=/^margin/,bP=new RegExp("^("+q+")(.*)$","i"),bQ=new RegExp("^("+q+")(?!px)[a-z%]+$","i"),bR=new RegExp("^([-+])=("+q+")","i"),bS={},bT={position:"absolute",visibility:"hidden",display:"block"},bU={letterSpacing:0,fontWeight:400},bV=["Top","Right","Bottom","Left"],bW=["Webkit","O","Moz","ms"],bX=p.fn.toggle;p.fn.extend({css:function(a,c){return p.access(this,function(a,c,d){return d!==b?p.style(a,c,d):p.css(a,c)},a,c,arguments.length>1)},show:function(){return b$(this,!0)},hide:function(){return b$(this)},toggle:function(a,b){var c=typeof a=="boolean";return p.isFunction(a)&&p.isFunction(b)?bX.apply(this,arguments):this.each(function(){(c?a:bZ(this))?p(this).show():p(this).hide()})}}),p.extend({cssHooks:{opacity:{get:function(a,b){if(b){var c=bH(a,"opacity");return c===""?"1":c}}}},cssNumber:{fillOpacity:!0,fontWeight:!0,lineHeight:!0,opacity:!0,orphans:!0,widows:!0,zIndex:!0,zoom:!0},cssProps:{"float":p.support.cssFloat?"cssFloat":"styleFloat"},style:function(a,c,d,e){if(!a||a.nodeType===3||a.nodeType===8||!a.style)return;var f,g,h,i=p.camelCase(c),j=a.style;c=p.cssProps[i]||(p.cssProps[i]=bY(j,i)),h=p.cssHooks[c]||p.cssHooks[i];if(d===b)return h&&"get"in h&&(f=h.get(a,!1,e))!==b?f:j[c];g=typeof d,g==="string"&&(f=bR.exec(d))&&(d=(f[1]+1)*f[2]+parseFloat(p.css(a,c)),g="number");if(d==null||g==="number"&&isNaN(d))return;g==="number"&&!p.cssNumber[i]&&(d+="px");if(!h||!("set"in h)||(d=h.set(a,d,e))!==b)try{j[c]=d}catch(k){}},css:function(a,c,d,e){var f,g,h,i=p.camelCase(c);return c=p.cssProps[i]||(p.cssProps[i]=bY(a.style,i)),h=p.cssHooks[c]||p.cssHooks[i],h&&"get"in h&&(f=h.get(a,!0,e)),f===b&&(f=bH(a,c)),f==="normal"&&c in bU&&(f=bU[c]),d||e!==b?(g=parseFloat(f),d||p.isNumeric(g)?g||0:f):f},swap:function(a,b,c){var d,e,f={};for(e in b)f[e]=a.style[e],a.style[e]=b[e];d=c.call(a);for(e in b)a.style[e]=f[e];return d}}),a.getComputedStyle?bH=function(b,c){var d,e,f,g,h=a.getComputedStyle(b,null),i=b.style;return h&&(d=h[c],d===""&&!p.contains(b.ownerDocument,b)&&(d=p.style(b,c)),bQ.test(d)&&bO.test(c)&&(e=i.width,f=i.minWidth,g=i.maxWidth,i.minWidth=i.maxWidth=i.width=d,d=h.width,i.width=e,i.minWidth=f,i.maxWidth=g)),d}:e.documentElement.currentStyle&&(bH=function(a,b){var c,d,e=a.currentStyle&&a.currentStyle[b],f=a.style;return e==null&&f&&f[b]&&(e=f[b]),bQ.test(e)&&!bM.test(b)&&(c=f.left,d=a.runtimeStyle&&a.runtimeStyle.left,d&&(a.runtimeStyle.left=a.currentStyle.left),f.left=b==="fontSize"?"1em":e,e=f.pixelLeft+"px",f.left=c,d&&(a.runtimeStyle.left=d)),e===""?"auto":e}),p.each(["height","width"],function(a,b){p.cssHooks[b]={get:function(a,c,d){if(c)return a.offsetWidth===0&&bN.test(bH(a,"display"))?p.swap(a,bT,function(){return cb(a,b,d)}):cb(a,b,d)},set:function(a,c,d){return b_(a,c,d?ca(a,b,d,p.support.boxSizing&&p.css(a,"boxSizing")==="border-box"):0)}}}),p.support.opacity||(p.cssHooks.opacity={get:function(a,b){return bL.test((b&&a.currentStyle?a.currentStyle.filter:a.style.filter)||"")?.01*parseFloat(RegExp.$1)+"":b?"1":""},set:function(a,b){var c=a.style,d=a.currentStyle,e=p.isNumeric(b)?"alpha(opacity="+b*100+")":"",f=d&&d.filter||c.filter||"";c.zoom=1;if(b>=1&&p.trim(f.replace(bK,""))===""&&c.removeAttribute){c.removeAttribute("filter");if(d&&!d.filter)return}c.filter=bK.test(f)?f.replace(bK,e):f+" "+e}}),p(function(){p.support.reliableMarginRight||(p.cssHooks.marginRight={get:function(a,b){return p.swap(a,{display:"inline-block"},function(){if(b)return bH(a,"marginRight")})}}),!p.support.pixelPosition&&p.fn.position&&p.each(["top","left"],function(a,b){p.cssHooks[b]={get:function(a,c){if(c){var d=bH(a,b);return bQ.test(d)?p(a).position()[b]+"px":d}}}})}),p.expr&&p.expr.filters&&(p.expr.filters.hidden=function(a){return a.offsetWidth===0&&a.offsetHeight===0||!p.support.reliableHiddenOffsets&&(a.style&&a.style.display||bH(a,"display"))==="none"},p.expr.filters.visible=function(a){return!p.expr.filters.hidden(a)}),p.each({margin:"",padding:"",border:"Width"},function(a,b){p.cssHooks[a+b]={expand:function(c){var d,e=typeof c=="string"?c.split(" "):[c],f={};for(d=0;d<4;d++)f[a+bV[d]+b]=e[d]||e[d-2]||e[0];return f}},bO.test(a)||(p.cssHooks[a+b].set=b_)});var cd=/%20/g,ce=/\[\]$/,cf=/\r?\n/g,cg=/^(?:color|date|datetime|datetime-local|email|hidden|month|number|password|range|search|tel|text|time|url|week)$/i,ch=/^(?:select|textarea)/i;p.fn.extend({serialize:function(){return p.param(this.serializeArray())},serializeArray:function(){return this.map(function(){return this.elements?p.makeArray(this.elements):this}).filter(function(){return this.name&&!this.disabled&&(this.checked||ch.test(this.nodeName)||cg.test(this.type))}).map(function(a,b){var c=p(this).val();return c==null?null:p.isArray(c)?p.map(c,function(a,c){return{name:b.name,value:a.replace(cf,"\r\n")}}):{name:b.name,value:c.replace(cf,"\r\n")}}).get()}}),p.param=function(a,c){var d,e=[],f=function(a,b){b=p.isFunction(b)?b():b==null?"":b,e[e.length]=encodeURIComponent(a)+"="+encodeURIComponent(b)};c===b&&(c=p.ajaxSettings&&p.ajaxSettings.traditional);if(p.isArray(a)||a.jquery&&!p.isPlainObject(a))p.each(a,function(){f(this.name,this.value)});else for(d in a)ci(d,a[d],c,f);return e.join("&").replace(cd,"+")};var cj,ck,cl=/#.*$/,cm=/^(.*?):[ \t]*([^\r\n]*)\r?$/mg,cn=/^(?:about|app|app\-storage|.+\-extension|file|res|widget):$/,co=/^(?:GET|HEAD)$/,cp=/^\/\//,cq=/\?/,cr=/<script\b[^<]*(?:(?!<\/script>)<[^<]*)*<\/script>/gi,cs=/([?&])_=[^&]*/,ct=/^([\w\+\.\-]+:)(?:\/\/([^\/?#:]*)(?::(\d+)|)|)/,cu=p.fn.load,cv={},cw={},cx=["*/"]+["*"];try{ck=f.href}catch(cy){ck=e.createElement("a"),ck.href="",ck=ck.href}cj=ct.exec(ck.toLowerCase())||[],p.fn.load=function(a,c,d){if(typeof a!="string"&&cu)return cu.apply(this,arguments);if(!this.length)return this;var e,f,g,h=this,i=a.indexOf(" ");return i>=0&&(e=a.slice(i,a.length),a=a.slice(0,i)),p.isFunction(c)?(d=c,c=b):c&&typeof c=="object"&&(f="POST"),p.ajax({url:a,type:f,dataType:"html",data:c,complete:function(a,b){d&&h.each(d,g||[a.responseText,b,a])}}).done(function(a){g=arguments,h.html(e?p("<div>").append(a.replace(cr,"")).find(e):a)}),this},p.each("ajaxStart ajaxStop ajaxComplete ajaxError ajaxSuccess ajaxSend".split(" "),function(a,b){p.fn[b]=function(a){return this.on(b,a)}}),p.each(["get","post"],function(a,c){p[c]=function(a,d,e,f){return p.isFunction(d)&&(f=f||e,e=d,d=b),p.ajax({type:c,url:a,data:d,success:e,dataType:f})}}),p.extend({getScript:function(a,c){return p.get(a,b,c,"script")},getJSON:function(a,b,c){return p.get(a,b,c,"json")},ajaxSetup:function(a,b){return b?cB(a,p.ajaxSettings):(b=a,a=p.ajaxSettings),cB(a,b),a},ajaxSettings:{url:ck,isLocal:cn.test(cj[1]),global:!0,type:"GET",contentType:"application/x-www-form-urlencoded; charset=UTF-8",processData:!0,async:!0,accepts:{xml:"application/xml, text/xml",html:"text/html",text:"text/plain",json:"application/json, text/javascript","*":cx},contents:{xml:/xml/,html:/html/,json:/json/},responseFields:{xml:"responseXML",text:"responseText"},converters:{"* text":a.String,"text html":!0,"text json":p.parseJSON,"text xml":p.parseXML},flatOptions:{context:!0,url:!0}},ajaxPrefilter:cz(cv),ajaxTransport:cz(cw),ajax:function(a,c){function y(a,c,f,i){var k,s,t,u,w,y=c;if(v===2)return;v=2,h&&clearTimeout(h),g=b,e=i||"",x.readyState=a>0?4:0,f&&(u=cC(l,x,f));if(a>=200&&a<300||a===304)l.ifModified&&(w=x.getResponseHeader("Last-Modified"),w&&(p.lastModified[d]=w),w=x.getResponseHeader("Etag"),w&&(p.etag[d]=w)),a===304?(y="notmodified",k=!0):(k=cD(l,u),y=k.state,s=k.data,t=k.error,k=!t);else{t=y;if(!y||a)y="error",a<0&&(a=0)}x.status=a,x.statusText=(c||y)+"",k?o.resolveWith(m,[s,y,x]):o.rejectWith(m,[x,y,t]),x.statusCode(r),r=b,j&&n.trigger("ajax"+(k?"Success":"Error"),[x,l,k?s:t]),q.fireWith(m,[x,y]),j&&(n.trigger("ajaxComplete",[x,l]),--p.active||p.event.trigger("ajaxStop"))}typeof a=="object"&&(c=a,a=b),c=c||{};var d,e,f,g,h,i,j,k,l=p.ajaxSetup({},c),m=l.context||l,n=m!==l&&(m.nodeType||m instanceof p)?p(m):p.event,o=p.Deferred(),q=p.Callbacks("once memory"),r=l.statusCode||{},t={},u={},v=0,w="canceled",x={readyState:0,setRequestHeader:function(a,b){if(!v){var c=a.toLowerCase();a=u[c]=u[c]||a,t[a]=b}return this},getAllResponseHeaders:function(){return v===2?e:null},getResponseHeader:function(a){var c;if(v===2){if(!f){f={};while(c=cm.exec(e))f[c[1].toLowerCase()]=c[2]}c=f[a.toLowerCase()]}return c===b?null:c},overrideMimeType:function(a){return v||(l.mimeType=a),this},abort:function(a){return a=a||w,g&&g.abort(a),y(0,a),this}};o.promise(x),x.success=x.done,x.error=x.fail,x.complete=q.add,x.statusCode=function(a){if(a){var b;if(v<2)for(b in a)r[b]=[r[b],a[b]];else b=a[x.status],x.always(b)}return this},l.url=((a||l.url)+"").replace(cl,"").replace(cp,cj[1]+"//"),l.dataTypes=p.trim(l.dataType||"*").toLowerCase().split(s),l.crossDomain==null&&(i=ct.exec(l.url.toLowerCase())||!1,l.crossDomain=i&&i.join(":")+(i[3]?"":i[1]==="http:"?80:443)!==cj.join(":")+(cj[3]?"":cj[1]==="http:"?80:443)),l.data&&l.processData&&typeof l.data!="string"&&(l.data=p.param(l.data,l.traditional)),cA(cv,l,c,x);if(v===2)return x;j=l.global,l.type=l.type.toUpperCase(),l.hasContent=!co.test(l.type),j&&p.active++===0&&p.event.trigger("ajaxStart");if(!l.hasContent){l.data&&(l.url+=(cq.test(l.url)?"&":"?")+l.data,delete l.data),d=l.url;if(l.cache===!1){var z=p.now(),A=l.url.replace(cs,"$1_="+z);l.url=A+(A===l.url?(cq.test(l.url)?"&":"?")+"_="+z:"")}}(l.data&&l.hasContent&&l.contentType!==!1||c.contentType)&&x.setRequestHeader("Content-Type",l.contentType),l.ifModified&&(d=d||l.url,p.lastModified[d]&&x.setRequestHeader("If-Modified-Since",p.lastModified[d]),p.etag[d]&&x.setRequestHeader("If-None-Match",p.etag[d])),x.setRequestHeader("Accept",l.dataTypes[0]&&l.accepts[l.dataTypes[0]]?l.accepts[l.dataTypes[0]]+(l.dataTypes[0]!=="*"?", "+cx+"; q=0.01":""):l.accepts["*"]);for(k in l.headers)x.setRequestHeader(k,l.headers[k]);if(!l.beforeSend||l.beforeSend.call(m,x,l)!==!1&&v!==2){w="abort";for(k in{success:1,error:1,complete:1})x[k](l[k]);g=cA(cw,l,c,x);if(!g)y(-1,"No Transport");else{x.readyState=1,j&&n.trigger("ajaxSend",[x,l]),l.async&&l.timeout>0&&(h=setTimeout(function(){x.abort("timeout")},l.timeout));try{v=1,g.send(t,y)}catch(B){if(v<2)y(-1,B);else throw B}}return x}return x.abort()},active:0,lastModified:{},etag:{}});var cE=[],cF=/\?/,cG=/(=)\?(?=&|$)|\?\?/,cH=p.now();p.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var a=cE.pop()||p.expando+"_"+cH++;return this[a]=!0,a}}),p.ajaxPrefilter("json jsonp",function(c,d,e){var f,g,h,i=c.data,j=c.url,k=c.jsonp!==!1,l=k&&cG.test(j),m=k&&!l&&typeof i=="string"&&!(c.contentType||"").indexOf("application/x-www-form-urlencoded")&&cG.test(i);if(c.dataTypes[0]==="jsonp"||l||m)return f=c.jsonpCallback=p.isFunction(c.jsonpCallback)?c.jsonpCallback():c.jsonpCallback,g=a[f],l?c.url=j.replace(cG,"$1"+f):m?c.data=i.replace(cG,"$1"+f):k&&(c.url+=(cF.test(j)?"&":"?")+c.jsonp+"="+f),c.converters["script json"]=function(){return h||p.error(f+" was not called"),h[0]},c.dataTypes[0]="json",a[f]=function(){h=arguments},e.always(function(){a[f]=g,c[f]&&(c.jsonpCallback=d.jsonpCallback,cE.push(f)),h&&p.isFunction(g)&&g(h[0]),h=g=b}),"script"}),p.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/javascript|ecmascript/},converters:{"text script":function(a){return p.globalEval(a),a}}}),p.ajaxPrefilter("script",function(a){a.cache===b&&(a.cache=!1),a.crossDomain&&(a.type="GET",a.global=!1)}),p.ajaxTransport("script",function(a){if(a.crossDomain){var c,d=e.head||e.getElementsByTagName("head")[0]||e.documentElement;return{send:function(f,g){c=e.createElement("script"),c.async="async",a.scriptCharset&&(c.charset=a.scriptCharset),c.src=a.url,c.onload=c.onreadystatechange=function(a,e){if(e||!c.readyState||/loaded|complete/.test(c.readyState))c.onload=c.onreadystatechange=null,d&&c.parentNode&&d.removeChild(c),c=b,e||g(200,"success")},d.insertBefore(c,d.firstChild)},abort:function(){c&&c.onload(0,1)}}}});var cI,cJ=a.ActiveXObject?function(){for(var a in cI)cI[a](0,1)}:!1,cK=0;p.ajaxSettings.xhr=a.ActiveXObject?function(){return!this.isLocal&&cL()||cM()}:cL,function(a){p.extend(p.support,{ajax:!!a,cors:!!a&&"withCredentials"in a})}(p.ajaxSettings.xhr()),p.support.ajax&&p.ajaxTransport(function(c){if(!c.crossDomain||p.support.cors){var d;return{send:function(e,f){var g,h,i=c.xhr();c.username?i.open(c.type,c.url,c.async,c.username,c.password):i.open(c.type,c.url,c.async);if(c.xhrFields)for(h in c.xhrFields)i[h]=c.xhrFields[h];c.mimeType&&i.overrideMimeType&&i.overrideMimeType(c.mimeType),!c.crossDomain&&!e["X-Requested-With"]&&(e["X-Requested-With"]="XMLHttpRequest");try{for(h in e)i.setRequestHeader(h,e[h])}catch(j){}i.send(c.hasContent&&c.data||null),d=function(a,e){var h,j,k,l,m;try{if(d&&(e||i.readyState===4)){d=b,g&&(i.onreadystatechange=p.noop,cJ&&delete cI[g]);if(e)i.readyState!==4&&i.abort();else{h=i.status,k=i.getAllResponseHeaders(),l={},m=i.responseXML,m&&m.documentElement&&(l.xml=m);try{l.text=i.responseText}catch(a){}try{j=i.statusText}catch(n){j=""}!h&&c.isLocal&&!c.crossDomain?h=l.text?200:404:h===1223&&(h=204)}}}catch(o){e||f(-1,o)}l&&f(h,j,l,k)},c.async?i.readyState===4?setTimeout(d,0):(g=++cK,cJ&&(cI||(cI={},p(a).unload(cJ)),cI[g]=d),i.onreadystatechange=d):d()},abort:function(){d&&d(0,1)}}}});var cN,cO,cP=/^(?:toggle|show|hide)$/,cQ=new RegExp("^(?:([-+])=|)("+q+")([a-z%]*)$","i"),cR=/queueHooks$/,cS=[cY],cT={"*":[function(a,b){var c,d,e=this.createTween(a,b),f=cQ.exec(b),g=e.cur(),h=+g||0,i=1,j=20;if(f){c=+f[2],d=f[3]||(p.cssNumber[a]?"":"px");if(d!=="px"&&h){h=p.css(e.elem,a,!0)||c||1;do i=i||".5",h=h/i,p.style(e.elem,a,h+d);while(i!==(i=e.cur()/g)&&i!==1&&--j)}e.unit=d,e.start=h,e.end=f[1]?h+(f[1]+1)*c:c}return e}]};p.Animation=p.extend(cW,{tweener:function(a,b){p.isFunction(a)?(b=a,a=["*"]):a=a.split(" ");var c,d=0,e=a.length;for(;d<e;d++)c=a[d],cT[c]=cT[c]||[],cT[c].unshift(b)},prefilter:function(a,b){b?cS.unshift(a):cS.push(a)}}),p.Tween=cZ,cZ.prototype={constructor:cZ,init:function(a,b,c,d,e,f){this.elem=a,this.prop=c,this.easing=e||"swing",this.options=b,this.start=this.now=this.cur(),this.end=d,this.unit=f||(p.cssNumber[c]?"":"px")},cur:function(){var a=cZ.propHooks[this.prop];return a&&a.get?a.get(this):cZ.propHooks._default.get(this)},run:function(a){var b,c=cZ.propHooks[this.prop];return this.options.duration?this.pos=b=p.easing[this.easing](a,this.options.duration*a,0,1,this.options.duration):this.pos=b=a,this.now=(this.end-this.start)*b+this.start,this.options.step&&this.options.step.call(this.elem,this.now,this),c&&c.set?c.set(this):cZ.propHooks._default.set(this),this}},cZ.prototype.init.prototype=cZ.prototype,cZ.propHooks={_default:{get:function(a){var b;return a.elem[a.prop]==null||!!a.elem.style&&a.elem.style[a.prop]!=null?(b=p.css(a.elem,a.prop,!1,""),!b||b==="auto"?0:b):a.elem[a.prop]},set:function(a){p.fx.step[a.prop]?p.fx.step[a.prop](a):a.elem.style&&(a.elem.style[p.cssProps[a.prop]]!=null||p.cssHooks[a.prop])?p.style(a.elem,a.prop,a.now+a.unit):a.elem[a.prop]=a.now}}},cZ.propHooks.scrollTop=cZ.propHooks.scrollLeft={set:function(a){a.elem.nodeType&&a.elem.parentNode&&(a.elem[a.prop]=a.now)}},p.each(["toggle","show","hide"],function(a,b){var c=p.fn[b];p.fn[b]=function(d,e,f){return d==null||typeof d=="boolean"||!a&&p.isFunction(d)&&p.isFunction(e)?c.apply(this,arguments):this.animate(c$(b,!0),d,e,f)}}),p.fn.extend({fadeTo:function(a,b,c,d){return this.filter(bZ).css("opacity",0).show().end().animate({opacity:b},a,c,d)},animate:function(a,b,c,d){var e=p.isEmptyObject(a),f=p.speed(b,c,d),g=function(){var b=cW(this,p.extend({},a),f);e&&b.stop(!0)};return e||f.queue===!1?this.each(g):this.queue(f.queue,g)},stop:function(a,c,d){var e=function(a){var b=a.stop;delete a.stop,b(d)};return typeof a!="string"&&(d=c,c=a,a=b),c&&a!==!1&&this.queue(a||"fx",[]),this.each(function(){var b=!0,c=a!=null&&a+"queueHooks",f=p.timers,g=p._data(this);if(c)g[c]&&g[c].stop&&e(g[c]);else for(c in g)g[c]&&g[c].stop&&cR.test(c)&&e(g[c]);for(c=f.length;c--;)f[c].elem===this&&(a==null||f[c].queue===a)&&(f[c].anim.stop(d),b=!1,f.splice(c,1));(b||!d)&&p.dequeue(this,a)})}}),p.each({slideDown:c$("show"),slideUp:c$("hide"),slideToggle:c$("toggle"),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"},fadeToggle:{opacity:"toggle"}},function(a,b){p.fn[a]=function(a,c,d){return this.animate(b,a,c,d)}}),p.speed=function(a,b,c){var d=a&&typeof a=="object"?p.extend({},a):{complete:c||!c&&b||p.isFunction(a)&&a,duration:a,easing:c&&b||b&&!p.isFunction(b)&&b};d.duration=p.fx.off?0:typeof d.duration=="number"?d.duration:d.duration in p.fx.speeds?p.fx.speeds[d.duration]:p.fx.speeds._default;if(d.queue==null||d.queue===!0)d.queue="fx";return d.old=d.complete,d.complete=function(){p.isFunction(d.old)&&d.old.call(this),d.queue&&p.dequeue(this,d.queue)},d},p.easing={linear:function(a){return a},swing:function(a){return.5-Math.cos(a*Math.PI)/2}},p.timers=[],p.fx=cZ.prototype.init,p.fx.tick=function(){var a,b=p.timers,c=0;for(;c<b.length;c++)a=b[c],!a()&&b[c]===a&&b.splice(c--,1);b.length||p.fx.stop()},p.fx.timer=function(a){a()&&p.timers.push(a)&&!cO&&(cO=setInterval(p.fx.tick,p.fx.interval))},p.fx.interval=13,p.fx.stop=function(){clearInterval(cO),cO=null},p.fx.speeds={slow:600,fast:200,_default:400},p.fx.step={},p.expr&&p.expr.filters&&(p.expr.filters.animated=function(a){return p.grep(p.timers,function(b){return a===b.elem}).length});var c_=/^(?:body|html)$/i;p.fn.offset=function(a){if(arguments.length)return a===b?this:this.each(function(b){p.offset.setOffset(this,a,b)});var c,d,e,f,g,h,i,j={top:0,left:0},k=this[0],l=k&&k.ownerDocument;if(!l)return;return(d=l.body)===k?p.offset.bodyOffset(k):(c=l.documentElement,p.contains(c,k)?(typeof k.getBoundingClientRect!="undefined"&&(j=k.getBoundingClientRect()),e=da(l),f=c.clientTop||d.clientTop||0,g=c.clientLeft||d.clientLeft||0,h=e.pageYOffset||c.scrollTop,i=e.pageXOffset||c.scrollLeft,{top:j.top+h-f,left:j.left+i-g}):j)},p.offset={bodyOffset:function(a){var b=a.offsetTop,c=a.offsetLeft;return p.support.doesNotIncludeMarginInBodyOffset&&(b+=parseFloat(p.css(a,"marginTop"))||0,c+=parseFloat(p.css(a,"marginLeft"))||0),{top:b,left:c}},setOffset:function(a,b,c){var d=p.css(a,"position");d==="static"&&(a.style.position="relative");var e=p(a),f=e.offset(),g=p.css(a,"top"),h=p.css(a,"left"),i=(d==="absolute"||d==="fixed")&&p.inArray("auto",[g,h])>-1,j={},k={},l,m;i?(k=e.position(),l=k.top,m=k.left):(l=parseFloat(g)||0,m=parseFloat(h)||0),p.isFunction(b)&&(b=b.call(a,c,f)),b.top!=null&&(j.top=b.top-f.top+l),b.left!=null&&(j.left=b.left-f.left+m),"using"in b?b.using.call(a,j):e.css(j)}},p.fn.extend({position:function(){if(!this[0])return;var a=this[0],b=this.offsetParent(),c=this.offset(),d=c_.test(b[0].nodeName)?{top:0,left:0}:b.offset();return c.top-=parseFloat(p.css(a,"marginTop"))||0,c.left-=parseFloat(p.css(a,"marginLeft"))||0,d.top+=parseFloat(p.css(b[0],"borderTopWidth"))||0,d.left+=parseFloat(p.css(b[0],"borderLeftWidth"))||0,{top:c.top-d.top,left:c.left-d.left}},offsetParent:function(){return this.map(function(){var a=this.offsetParent||e.body;while(a&&!c_.test(a.nodeName)&&p.css(a,"position")==="static")a=a.offsetParent;return a||e.body})}}),p.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(a,c){var d=/Y/.test(c);p.fn[a]=function(e){return p.access(this,function(a,e,f){var g=da(a);if(f===b)return g?c in g?g[c]:g.document.documentElement[e]:a[e];g?g.scrollTo(d?p(g).scrollLeft():f,d?f:p(g).scrollTop()):a[e]=f},a,e,arguments.length,null)}}),p.each({Height:"height",Width:"width"},function(a,c){p.each({padding:"inner"+a,content:c,"":"outer"+a},function(d,e){p.fn[e]=function(e,f){var g=arguments.length&&(d||typeof e!="boolean"),h=d||(e===!0||f===!0?"margin":"border");return p.access(this,function(c,d,e){var f;return p.isWindow(c)?c.document.documentElement["client"+a]:c.nodeType===9?(f=c.documentElement,Math.max(c.body["scroll"+a],f["scroll"+a],c.body["offset"+a],f["offset"+a],f["client"+a])):e===b?p.css(c,d,e,h):p.style(c,d,e,h)},c,g?e:b,g,null)}})}),a.jQuery=a.$=p,typeof define=="function"&&define.amd&&define.amd.jQuery&&define("jquery",[],function(){return p})})(window); |
| URL | http://zero.webappsecurity.com/resources/js/placeholders.min.js |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | Apache-Coyote/1.1 |
| Request Header - size: 287 bytes. |
GET http://zero.webappsecurity.com/resources/js/placeholders.min.js HTTP/1.1
Host: zero.webappsecurity.com User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0 Pragma: no-cache Cache-Control: no-cache Referer: http://zero.webappsecurity.com |
| Request Body - size: 0 bytes. |
|
| Response Header - size: 359 bytes. |
HTTP/1.1 200 OK
Date: Mon, 14 Mar 2022 07:13:42 GMT Server: Apache-Coyote/1.1 Access-Control-Allow-Origin: * Accept-Ranges: bytes ETag: W/"5615-1360116138000" Last-Modified: Wed, 06 Feb 2013 02:02:18 GMT Cache-Control: max-age=2678400 Expires: Thu, 14 Apr 2022 07:13:43 GMT Content-Type: application/javascript;charset=UTF-8 Content-Length: 5615 |
| Response Body - size: 5,615 bytes. |
var Placeholders=function(){var validTypes=["text","search","url","tel","email","password","number","textarea"],settings={live:false,hideOnFocus:false,className:"placeholderspolyfill",textColor:"#999",styleImportant:true},badKeys=[37,38,39,40],interval,valueKeyDown,classNameRegExp=new RegExp("\\b"+settings.className+"\\b");function cursorToStart(elem){var range;if(elem.createTextRange){range=elem.createTextRange();range.move("character",0);range.select()}else if(elem.selectionStart){elem.focus();
elem.setSelectionRange(0,0)}}function focusHandler(){var type;if(this.value===this.getAttribute("placeholder"))if(!settings.hideOnFocus)cursorToStart(this);else{this.className=this.className.replace(classNameRegExp,"");this.value="";type=this.getAttribute("data-placeholdertype");if(type)this.type=type}}function blurHandler(){var type;if(this.value===""){this.className=this.className+" "+settings.className;this.value=this.getAttribute("placeholder");type=this.getAttribute("data-placeholdertype");if(type)this.type= "text"}}function submitHandler(){var inputs=this.getElementsByTagName("input"),textareas=this.getElementsByTagName("textarea"),numInputs=inputs.length,num=numInputs+textareas.length,element,placeholder,i;for(i=0;i<num;i+=1){element=i<numInputs?inputs[i]:textareas[i-numInputs];placeholder=element.getAttribute("placeholder");if(element.value===placeholder)element.value=""}}function keydownHandler(event){valueKeyDown=this.value;return!(valueKeyDown===this.getAttribute("placeholder")&&badKeys.indexOf(event.keyCode)> -1)}function keyupHandler(){var type;if(this.value!==valueKeyDown){this.className=this.className.replace(classNameRegExp,"");this.value=this.value.replace(this.getAttribute("placeholder"),"");type=this.getAttribute("data-placeholdertype");if(type)this.type=type}if(this.value===""){blurHandler.call(this);cursorToStart(this)}}function addEventListener(element,event,fn){if(element.addEventListener)return element.addEventListener(event,fn.bind(element),false);if(element.attachEvent)return element.attachEvent("on"+ event,fn.bind(element))}function addEventListeners(element){if(!settings.hideOnFocus){addEventListener(element,"keydown",keydownHandler);addEventListener(element,"keyup",keyupHandler)}addEventListener(element,"focus",focusHandler);addEventListener(element,"blur",blurHandler)}function updatePlaceholders(){var inputs=document.getElementsByTagName("input"),textareas=document.getElementsByTagName("textarea"),numInputs=inputs.length,num=numInputs+textareas.length,i,form,element,oldPlaceholder,newPlaceholder; for(i=0;i<num;i+=1){element=i<numInputs?inputs[i]:textareas[i-numInputs];newPlaceholder=element.getAttribute("placeholder");if(validTypes.indexOf(element.type)>-1)if(newPlaceholder){oldPlaceholder=element.getAttribute("data-currentplaceholder");if(newPlaceholder!==oldPlaceholder){if(element.value===oldPlaceholder||element.value===newPlaceholder||!element.value){element.value=newPlaceholder;element.className=element.className+" "+settings.className}if(!oldPlaceholder){if(element.form){form=element.form; if(!form.getAttribute("data-placeholdersubmit")){addEventListener(form,"submit",submitHandler);form.setAttribute("data-placeholdersubmit","true")}}addEventListeners(element)}element.setAttribute("data-currentplaceholder",newPlaceholder)}}}}function createPlaceholders(){var inputs=document.getElementsByTagName("input"),textareas=document.getElementsByTagName("textarea"),numInputs=inputs.length,num=numInputs+textareas.length,i,element,form,placeholder;for(i=0;i<num;i+=1){element=i<numInputs?inputs[i]: textareas[i-numInputs];placeholder=element.getAttribute("placeholder");if(validTypes.indexOf(element.type)>-1)if(placeholder){if(element.type==="password")try{element.type="text";element.setAttribute("data-placeholdertype","password")}catch(e){}element.setAttribute("data-currentplaceholder",placeholder);if(element.value===""||element.value===placeholder){element.className=element.className+" "+settings.className;element.value=placeholder}if(element.form){form=element.form;if(!form.getAttribute("data-placeholdersubmit")){addEventListener(form, "submit",submitHandler);form.setAttribute("data-placeholdersubmit","true")}}addEventListeners(element)}}}function init(opts){var test=document.createElement("input"),opt,styleElem,styleRules,i,j;if(typeof test.placeholder==="undefined"){for(opt in opts)if(opts.hasOwnProperty(opt))settings[opt]=opts[opt];styleElem=document.createElement("style");styleElem.type="text/css";var importantValue=settings.styleImportant?"!important":"";styleRules=document.createTextNode("."+settings.className+" { color:"+ settings.textColor+importantValue+"; }");if(styleElem.styleSheet)styleElem.styleSheet.cssText=styleRules.nodeValue;else styleElem.appendChild(styleRules);document.getElementsByTagName("head")[0].appendChild(styleElem);if(!Array.prototype.indexOf)Array.prototype.indexOf=function(obj,start){for(i=start||0,j=this.length;i<j;i+=1)if(this[i]===obj)return i;return-1};if(!Function.prototype.bind)Function.prototype.bind=function(oThis){if(typeof this!=="function")throw new TypeError("Function.prototype.bind - what is trying to be bound is not callable"); var aArgs=Array.prototype.slice.call(arguments,1),fToBind=this,FNop=function(){},fBound=function(){return fToBind.apply(this instanceof FNop?this:oThis,aArgs.concat(Array.prototype.slice.call(arguments)))};FNop.prototype=this.prototype;fBound.prototype=new FNop;return fBound};createPlaceholders();if(settings.live)interval=setInterval(updatePlaceholders,100);return true}return false}return{init:init,refresh:updatePlaceholders}}(); |
| URL | http://zero.webappsecurity.com/robots.txt |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | Apache-Coyote/1.1 |
| Request Header - size: 224 bytes. |
GET http://zero.webappsecurity.com/robots.txt HTTP/1.1
Host: zero.webappsecurity.com User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0 Pragma: no-cache Cache-Control: no-cache |
| Request Body - size: 0 bytes. |
|
| Response Header - size: 204 bytes. |
HTTP/1.1 404 Not Found
Date: Mon, 14 Mar 2022 07:13:40 GMT Server: Apache-Coyote/1.1 Access-Control-Allow-Origin: * Content-Type: text/html;charset=utf-8 Content-Language: en Content-Length: 971 |
| Response Body - size: 971 bytes. |
<html><head><title>Apache Tomcat/7.0.70 - Error report</title><style><!--H1 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:22px;} H2 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:16px;} H3 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:14px;} BODY {font-family:Tahoma,Arial,sans-serif;color:black;background-color:white;} B {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;} P {font-family:Tahoma,Arial,sans-serif;background:white;color:black;font-size:12px;}A {color : black;}A.name {color : black;}HR {color : #525D76;}--></style> </head><body><h1>HTTP Status 404 - /robots.txt</h1><HR size="1" noshade="noshade"><p><b>type</b> Status report</p><p><b>message</b> <u>/robots.txt</u></p><p><b>description</b> <u>The requested resource is not available.</u></p><HR size="1" noshade="noshade"><h3>Apache Tomcat/7.0.70</h3></body></html>
|
| URL | http://zero.webappsecurity.com/search.html?searchTerm=ZAP |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | Apache-Coyote/1.1 |
| Request Header - size: 281 bytes. |
GET http://zero.webappsecurity.com/search.html?searchTerm=ZAP HTTP/1.1
Host: zero.webappsecurity.com User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0 Pragma: no-cache Cache-Control: no-cache Referer: http://zero.webappsecurity.com |
| Request Body - size: 0 bytes. |
|
| Response Header - size: 242 bytes. |
HTTP/1.1 200 OK
Date: Mon, 14 Mar 2022 07:13:43 GMT Server: Apache-Coyote/1.1 Access-Control-Allow-Origin: * Cache-Control: no-cache, max-age=0, must-revalidate, no-store Content-Type: text/html;charset=UTF-8 Content-Language: en-US |
| Response Body - size: 7,723 bytes. |
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Zero - Search Tips</title> <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"> <meta http-equiv="X-UA-Compatible" content="IE=Edge"> <link type="text/css" rel="stylesheet" href="/resources/css/bootstrap.min.css"/> <link type="text/css" rel="stylesheet" href="/resources/css/font-awesome.css"/> <link type="text/css" rel="stylesheet" href="/resources/css/main.css"/> <script src="/resources/js/jquery-1.8.2.min.js"></script> <script src="/resources/js/bootstrap.min.js"></script> <script src="/resources/js/placeholders.min.js"></script> <script type="text/javascript"> Placeholders.init({ live: true, // Apply to future and modified elements too hideOnFocus: true // Hide the placeholder when the element receives focus }); </script> <script type="text/javascript"> $(document).ajaxError(function errorHandler(event, xhr, ajaxOptions, thrownError) { if (xhr.status == 403) { window.location.reload(); } }); </script> </head> <body> <div class="wrapper"> <div class="navbar navbar-fixed-top"> <div class="navbar-inner"> <div class="container"> <a href="/index.html" class="brand">Zero Bank</a> <div> <ul class="nav float-right"> <li> <form action="/search.html" class="navbar-search pull-right" style="padding-right: 20px"> <input type="text" id="searchTerm" name="searchTerm" class="search-query" placeholder="Search"/> </form> </li> <li> <button id="signin_button" type="button" class="signin btn btn-info"> <i class="icon-signin"></i>Signin </button> </li> </ul> </div> </div> </div> </div> <script type="text/javascript"> $(function() { var path = "/"; $("#signin_button").click(function(event) { event.preventDefault(); window.location.href = path + "login" + ".html"; }); }); </script> <div class="container"> <div class="top_offset"> <div class="row"> <div class="span12"> <div id="nav" class="clearfix"> <ul id="pages-nav"> <li id="homeMenu"><div><strong>Home</strong></div></li> <li id="onlineBankingMenu"><div><strong>Online Banking</strong></div></li> <li id="feedback"><div><strong>Feedback</strong></div></li> </ul> </div> </div> <script type="text/javascript"> $(function () { var path = "/"; var featureIdToName = { "index": "homeMenu", "online-banking": "onlineBankingMenu", "feedback": "feedback" }; if (document.location.href.match(".*" + path + "$") != null) { $("#homeMenu").addClass("active"); } else { $.each(featureIdToName, function(featureId, featureName) { if (document.location.href.indexOf(featureId + ".html") >= 0) { $("#" + featureName).addClass("active"); } }); } $.each(featureIdToName, function(featureId, featureName) { $("#nav").on("click", "li[id='" + featureName + "']", function(event) { event.preventDefault(); window.location.href = path + featureId + ".html"; }); }); }); </script> </div> <hr class="row-divider"/> <h2>Search Results:</h2> No results were found for the query: ZAP </div> </div> <div class="clearfix push"></div> </div> <div class="extra"> <div class="extra-inner"> <div class="container"> <div class="row"> <div class="span4"> <ul> <li><span id="download_webinspect_link">Download WebInspect</span></li> </ul> </div> <div class="span4"> <ul> <li><span id="terms_of_use_link">Terms of Use</span></li> </ul> </div> <div class="span4"> <ul> <li><span id="contact_hp_link">Contact Micro Focus</span></li> <li><span id="privacy_statement_link">Privacy Statement</span></li> </ul> </div> </div> <div class="row"> <div class="disclaimer span12"> The Free Online Bank Web site is published by Micro Focus Fortify for the sole purpose of demonstrating the functionality and effectiveness of Micro Focus Fortify’s WebInspect products in detecting and reporting Web application vulnerabilities. This site is not a real banking site and any similarities to third party products and/or Web sites are purely coincidental. This site is provided "as is" without warranty of any kind, either express or implied. Micro Focus Fortify does not assume any risk in relation to your use of this Web site. Use of this Web site indicates that you have read and agree to Micro Focus Fortify’s Terms of Use found at <a href="https://www.microfocus.com/about/legal/#privacy" target="_blank">https://www.microfocus.com/about/legal/#privacy</a> and Micro Focus Fortify’s Online Privacy Statement found at <a href="https://www.microfocus.com/about/legal/#privacy" target="_blank">https://www.microfocus.com/about/legal/#privacy</a>. <br/><br/> Copyright © 2012-2018, Micro Focus Development Company. All rights reserved. </div> </div> </div> </div> </div> <script type="text/javascript"> $(function () { var path = "/"; var attachClickHandler = function(selector, handler) { $(".extra").on('click', selector, handler); } var footerLinks = { "download_webinspect_link": { absolute: true, page: "https://software.microfocus.com/en-us/products/webinspect-dynamic-analysis-dast/overview" }, "contact_hp_link" : { absolute: true, page: "https://support.fortify.com" }, "privacy_statement_link": { absolute: true, page: "https://www.microfocus.com/about/legal/#privacy" }, "terms_of_use_link": { absolute: true, page: "https://www.microfocus.com/about/legal/" } }; $.each(footerLinks, function(linkId, link) { attachClickHandler('span[id="' + linkId + '"]', function(event) { event.preventDefault(); if (link.absolute) { window.location.href = link.page; } else { window.location.href = path + link.page + ".html"; } }); }); }); </script> </body> </html> |
| URL | http://zero.webappsecurity.com/sitemap.xml |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | Apache-Coyote/1.1 |
| Request Header - size: 225 bytes. |
GET http://zero.webappsecurity.com/sitemap.xml HTTP/1.1
Host: zero.webappsecurity.com User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0 Pragma: no-cache Cache-Control: no-cache |
| Request Body - size: 0 bytes. |
|
| Response Header - size: 204 bytes. |
HTTP/1.1 404 Not Found
Date: Mon, 14 Mar 2022 07:13:40 GMT Server: Apache-Coyote/1.1 Access-Control-Allow-Origin: * Content-Type: text/html;charset=utf-8 Content-Language: en Content-Length: 973 |
| Response Body - size: 973 bytes. |
<html><head><title>Apache Tomcat/7.0.70 - Error report</title><style><!--H1 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:22px;} H2 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:16px;} H3 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:14px;} BODY {font-family:Tahoma,Arial,sans-serif;color:black;background-color:white;} B {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;} P {font-family:Tahoma,Arial,sans-serif;background:white;color:black;font-size:12px;}A {color : black;}A.name {color : black;}HR {color : #525D76;}--></style> </head><body><h1>HTTP Status 404 - /sitemap.xml</h1><HR size="1" noshade="noshade"><p><b>type</b> Status report</p><p><b>message</b> <u>/sitemap.xml</u></p><p><b>description</b> <u>The requested resource is not available.</u></p><HR size="1" noshade="noshade"><h3>Apache Tomcat/7.0.70</h3></body></html>
|
| Instances | 15 |
| Solution |
Ensure that your web server, application server, load balancer, etc. is configured to suppress the "Server" header or provide generic details.
|
| Reference |
http://httpd.apache.org/docs/current/mod/core.html#servertokens
http://msdn.microsoft.com/en-us/library/ff648552.aspx#ht_urlscan_007 http://blogs.msdn.com/b/varunm/archive/2013/04/23/remove-unwanted-http-response-headers.aspx http://www.troyhunt.com/2012/02/shhh-dont-let-your-response-headers.html |
| Tags |
OWASP_2021_A05
OWASP_2017_A06 WSTG-v42-INFO-02 |
| CWE Id | 200 |
| WASC Id | 13 |
| Plugin Id | 10036 |
|
Low |
X-Content-Type-Options Header Missing |
|---|---|
| Description |
The Anti-MIME-Sniffing header X-Content-Type-Options was not set to 'nosniff'. This allows older versions of Internet Explorer and Chrome to perform MIME-sniffing on the response body, potentially causing the response body to be interpreted and displayed as a content type other than the declared content type. Current (early 2014) and legacy versions of Firefox will use the declared content type (if one is set), rather than performing MIME-sniffing.
|
| URL | http://zero.webappsecurity.com |
| Method | GET |
| Parameter | X-Content-Type-Options |
| Attack | |
| Evidence | |
| Request Header - size: 213 bytes. |
GET http://zero.webappsecurity.com HTTP/1.1
Host: zero.webappsecurity.com User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0 Pragma: no-cache Cache-Control: no-cache |
| Request Body - size: 0 bytes. |
|
| Response Header - size: 242 bytes. |
HTTP/1.1 200 OK
Date: Mon, 14 Mar 2022 07:13:40 GMT Server: Apache-Coyote/1.1 Access-Control-Allow-Origin: * Cache-Control: no-cache, max-age=0, must-revalidate, no-store Content-Type: text/html;charset=UTF-8 Content-Language: en-US |
| Response Body - size: 12,471 bytes. |
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Zero - Personal Banking - Loans - Credit Cards</title> <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"> <meta http-equiv="X-UA-Compatible" content="IE=Edge"> <link type="text/css" rel="stylesheet" href="/resources/css/bootstrap.min.css"/> <link type="text/css" rel="stylesheet" href="/resources/css/font-awesome.css"/> <link type="text/css" rel="stylesheet" href="/resources/css/main.css"/> <script src="/resources/js/jquery-1.8.2.min.js"></script> <script src="/resources/js/bootstrap.min.js"></script> <script src="/resources/js/placeholders.min.js"></script> <script type="text/javascript"> Placeholders.init({ live: true, // Apply to future and modified elements too hideOnFocus: true // Hide the placeholder when the element receives focus }); </script> <script type="text/javascript"> $(document).ajaxError(function errorHandler(event, xhr, ajaxOptions, thrownError) { if (xhr.status == 403) { window.location.reload(); } }); </script> </head> <body> <div class="wrapper"> <div class="navbar navbar-fixed-top"> <div class="navbar-inner"> <div class="container"> <a href="/index.html" class="brand">Zero Bank</a> <div> <ul class="nav float-right"> <li> <form action="/search.html" class="navbar-search pull-right" style="padding-right: 20px"> <input type="text" id="searchTerm" name="searchTerm" class="search-query" placeholder="Search"/> </form> </li> <li> <button id="signin_button" type="button" class="signin btn btn-info"> <i class="icon-signin"></i>Signin </button> </li> </ul> </div> </div> </div> </div> <script type="text/javascript"> $(function() { var path = "/"; $("#signin_button").click(function(event) { event.preventDefault(); window.location.href = path + "login" + ".html"; }); }); </script> <div class="container"> <div class="top_offset"> <div class="row"> <div class="span12"> <div id="nav" class="clearfix"> <ul id="pages-nav"> <li id="homeMenu"><div><strong>Home</strong></div></li> <li id="onlineBankingMenu"><div><strong>Online Banking</strong></div></li> <li id="feedback"><div><strong>Feedback</strong></div></li> </ul> </div> </div> <script type="text/javascript"> $(function () { var path = "/"; var featureIdToName = { "index": "homeMenu", "online-banking": "onlineBankingMenu", "feedback": "feedback" }; if (document.location.href.match(".*" + path + "$") != null) { $("#homeMenu").addClass("active"); } else { $.each(featureIdToName, function(featureId, featureName) { if (document.location.href.indexOf(featureId + ".html") >= 0) { $("#" + featureName).addClass("active"); } }); } $.each(featureIdToName, function(featureId, featureName) { $("#nav").on("click", "li[id='" + featureName + "']", function(event) { event.preventDefault(); window.location.href = path + featureId + ".html"; }); }); }); </script> </div> <div class="row"> <div class="span12"> <div id="carousel" class="carousel slide"> <div class="carousel-inner"> <div class="active item"> <img src="/resources/img/main_carousel_1.jpg" width="940" height="401" alt=""/> <div class="custom carousel-caption"> <h4>Online Banking</h4> <p>Welcome to Zero Online Banking. Zero provides a greener and more convenient way to manage your money. Zero enables you to check your account balances, pay your bills, transfer money, and keep detailed records of your transactions, wherever there is an internet connection.</p> </div> </div> <div class="item"> <img src="/resources/img/main_carousel_2.jpg" width="940" height="401" alt=""/> <div class="custom carousel-caption"> <h4>Online Banking</h4> <p>Welcome to Zero Online Banking. Zero provides a greener and more convenient way to manage your money. Zero enables you to check your account balances, pay your bills, transfer money, and keep detailed records of your transactions, wherever there is an internet connection.</p> </div> </div> <div class="item"> <img src="/resources/img/main_carousel_3.jpg" width="940" height="401" alt=""/> <div class="custom carousel-caption"> <h4>Online Banking</h4> <p>Welcome to Zero Online Banking. Zero provides a greener and more convenient way to manage your money. Zero enables you to check your account balances, pay your bills, transfer money, and keep detailed records of your transactions, wherever there is an internet connection.</p> </div> </div> </div> <a class="carousel-control custom left" href="#carousel" data-slide="prev">‹</a> <a class="carousel-control custom right" href="#carousel" data-slide="next">›</a> </div> </div> </div> <hr class="row-divider"/> <div id="online_banking_features" class="row divider"> <div class="span3"> <h4><i class="icon icon-bookmark"></i> Online Banking</h4> <p>Click the button below to view online banking features.</p> <a id="online-banking" class="btn btn-small btn-info">More Services</a> </div> <div class="span3"> <div> <h4><span class="headers" id="account_activity_link"><i class="icon icon-user"></i>Checking Account Activity</span></h4> <p>Use Zero to view the most up-to-date listings of your deposits, withdrawals, interest payments, and a number of other useful transactions. </p> </div> </div> <div class="span3"> <div> <h4><span class="headers" id="transfer_funds_link"><i class="icon icon-random"></i>Transfer Funds</span></h4> <p>Use Zero to safely and securely transfer funds between accounts. There is no hold placed on online money transfers, so your funds are available when you need them. </p> </div> </div> <div class="span3"> <div> <h4><span class="headers" id="money_map_link"><i class="icon icon-list-alt"></i>My Money Map</span></h4> <p>Use Zero to set up and monitor your personalized money map. A money map is an easy-to-use online tool that helps you manage your finances efficiently. With Money Map, you can create a budget, sort your finances into spending and savings categories, check the interest your accounts are earning, and gain new understanding of your patterns with the help of Zero’s clear charts and graphs. </p> </div> </div> </div> <script type="text/javascript"> $(function() { $("#carousel").carousel({ interval: false }); $("div").on("click", "a[id='online-banking']", function(event){ event.preventDefault(); window.location.href = "/" + "online-banking" + ".html"; }); var path = "/bank/"; var featureIdToName = { "account_activity_link": "account-activity", "transfer_funds_link": "transfer-funds", "money_map_link": "money-map" } $.each(featureIdToName, function(featureId, featureName) { $("#online_banking_features").on("click", "span[id='" + featureId + "']", function(event) { event.preventDefault(); window.location.href = path + featureName +".html"; }); }); }); </script> </div> </div> <div class="clearfix push"></div> </div> <div class="extra"> <div class="extra-inner"> <div class="container"> <div class="row"> <div class="span4"> <ul> <li><span id="download_webinspect_link">Download WebInspect</span></li> </ul> </div> <div class="span4"> <ul> <li><span id="terms_of_use_link">Terms of Use</span></li> </ul> </div> <div class="span4"> <ul> <li><span id="contact_hp_link">Contact Micro Focus</span></li> <li><span id="privacy_statement_link">Privacy Statement</span></li> </ul> </div> </div> <div class="row"> <div class="disclaimer span12"> The Free Online Bank Web site is published by Micro Focus Fortify for the sole purpose of demonstrating the functionality and effectiveness of Micro Focus Fortify’s WebInspect products in detecting and reporting Web application vulnerabilities. This site is not a real banking site and any similarities to third party products and/or Web sites are purely coincidental. This site is provided "as is" without warranty of any kind, either express or implied. Micro Focus Fortify does not assume any risk in relation to your use of this Web site. Use of this Web site indicates that you have read and agree to Micro Focus Fortify’s Terms of Use found at <a href="https://www.microfocus.com/about/legal/#privacy" target="_blank">https://www.microfocus.com/about/legal/#privacy</a> and Micro Focus Fortify’s Online Privacy Statement found at <a href="https://www.microfocus.com/about/legal/#privacy" target="_blank">https://www.microfocus.com/about/legal/#privacy</a>. <br/><br/> Copyright © 2012-2018, Micro Focus Development Company. All rights reserved. </div> </div> </div> </div> </div> <script type="text/javascript"> $(function () { var path = "/"; var attachClickHandler = function(selector, handler) { $(".extra").on('click', selector, handler); } var footerLinks = { "download_webinspect_link": { absolute: true, page: "https://software.microfocus.com/en-us/products/webinspect-dynamic-analysis-dast/overview" }, "contact_hp_link" : { absolute: true, page: "https://support.fortify.com" }, "privacy_statement_link": { absolute: true, page: "https://www.microfocus.com/about/legal/#privacy" }, "terms_of_use_link": { absolute: true, page: "https://www.microfocus.com/about/legal/" } }; $.each(footerLinks, function(linkId, link) { attachClickHandler('span[id="' + linkId + '"]', function(event) { event.preventDefault(); if (link.absolute) { window.location.href = link.page; } else { window.location.href = path + link.page + ".html"; } }); }); }); </script> </body> </html> |
| URL | http://zero.webappsecurity.com/ |
| Method | GET |
| Parameter | X-Content-Type-Options |
| Attack | |
| Evidence | |
| Request Header - size: 214 bytes. |
GET http://zero.webappsecurity.com/ HTTP/1.1
Host: zero.webappsecurity.com User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0 Pragma: no-cache Cache-Control: no-cache |
| Request Body - size: 0 bytes. |
|
| Response Header - size: 242 bytes. |
HTTP/1.1 200 OK
Date: Mon, 14 Mar 2022 07:13:39 GMT Server: Apache-Coyote/1.1 Access-Control-Allow-Origin: * Cache-Control: no-cache, max-age=0, must-revalidate, no-store Content-Type: text/html;charset=UTF-8 Content-Language: en-US |
| Response Body - size: 12,471 bytes. |
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Zero - Personal Banking - Loans - Credit Cards</title> <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"> <meta http-equiv="X-UA-Compatible" content="IE=Edge"> <link type="text/css" rel="stylesheet" href="/resources/css/bootstrap.min.css"/> <link type="text/css" rel="stylesheet" href="/resources/css/font-awesome.css"/> <link type="text/css" rel="stylesheet" href="/resources/css/main.css"/> <script src="/resources/js/jquery-1.8.2.min.js"></script> <script src="/resources/js/bootstrap.min.js"></script> <script src="/resources/js/placeholders.min.js"></script> <script type="text/javascript"> Placeholders.init({ live: true, // Apply to future and modified elements too hideOnFocus: true // Hide the placeholder when the element receives focus }); </script> <script type="text/javascript"> $(document).ajaxError(function errorHandler(event, xhr, ajaxOptions, thrownError) { if (xhr.status == 403) { window.location.reload(); } }); </script> </head> <body> <div class="wrapper"> <div class="navbar navbar-fixed-top"> <div class="navbar-inner"> <div class="container"> <a href="/index.html" class="brand">Zero Bank</a> <div> <ul class="nav float-right"> <li> <form action="/search.html" class="navbar-search pull-right" style="padding-right: 20px"> <input type="text" id="searchTerm" name="searchTerm" class="search-query" placeholder="Search"/> </form> </li> <li> <button id="signin_button" type="button" class="signin btn btn-info"> <i class="icon-signin"></i>Signin </button> </li> </ul> </div> </div> </div> </div> <script type="text/javascript"> $(function() { var path = "/"; $("#signin_button").click(function(event) { event.preventDefault(); window.location.href = path + "login" + ".html"; }); }); </script> <div class="container"> <div class="top_offset"> <div class="row"> <div class="span12"> <div id="nav" class="clearfix"> <ul id="pages-nav"> <li id="homeMenu"><div><strong>Home</strong></div></li> <li id="onlineBankingMenu"><div><strong>Online Banking</strong></div></li> <li id="feedback"><div><strong>Feedback</strong></div></li> </ul> </div> </div> <script type="text/javascript"> $(function () { var path = "/"; var featureIdToName = { "index": "homeMenu", "online-banking": "onlineBankingMenu", "feedback": "feedback" }; if (document.location.href.match(".*" + path + "$") != null) { $("#homeMenu").addClass("active"); } else { $.each(featureIdToName, function(featureId, featureName) { if (document.location.href.indexOf(featureId + ".html") >= 0) { $("#" + featureName).addClass("active"); } }); } $.each(featureIdToName, function(featureId, featureName) { $("#nav").on("click", "li[id='" + featureName + "']", function(event) { event.preventDefault(); window.location.href = path + featureId + ".html"; }); }); }); </script> </div> <div class="row"> <div class="span12"> <div id="carousel" class="carousel slide"> <div class="carousel-inner"> <div class="active item"> <img src="/resources/img/main_carousel_1.jpg" width="940" height="401" alt=""/> <div class="custom carousel-caption"> <h4>Online Banking</h4> <p>Welcome to Zero Online Banking. Zero provides a greener and more convenient way to manage your money. Zero enables you to check your account balances, pay your bills, transfer money, and keep detailed records of your transactions, wherever there is an internet connection.</p> </div> </div> <div class="item"> <img src="/resources/img/main_carousel_2.jpg" width="940" height="401" alt=""/> <div class="custom carousel-caption"> <h4>Online Banking</h4> <p>Welcome to Zero Online Banking. Zero provides a greener and more convenient way to manage your money. Zero enables you to check your account balances, pay your bills, transfer money, and keep detailed records of your transactions, wherever there is an internet connection.</p> </div> </div> <div class="item"> <img src="/resources/img/main_carousel_3.jpg" width="940" height="401" alt=""/> <div class="custom carousel-caption"> <h4>Online Banking</h4> <p>Welcome to Zero Online Banking. Zero provides a greener and more convenient way to manage your money. Zero enables you to check your account balances, pay your bills, transfer money, and keep detailed records of your transactions, wherever there is an internet connection.</p> </div> </div> </div> <a class="carousel-control custom left" href="#carousel" data-slide="prev">‹</a> <a class="carousel-control custom right" href="#carousel" data-slide="next">›</a> </div> </div> </div> <hr class="row-divider"/> <div id="online_banking_features" class="row divider"> <div class="span3"> <h4><i class="icon icon-bookmark"></i> Online Banking</h4> <p>Click the button below to view online banking features.</p> <a id="online-banking" class="btn btn-small btn-info">More Services</a> </div> <div class="span3"> <div> <h4><span class="headers" id="account_activity_link"><i class="icon icon-user"></i>Checking Account Activity</span></h4> <p>Use Zero to view the most up-to-date listings of your deposits, withdrawals, interest payments, and a number of other useful transactions. </p> </div> </div> <div class="span3"> <div> <h4><span class="headers" id="transfer_funds_link"><i class="icon icon-random"></i>Transfer Funds</span></h4> <p>Use Zero to safely and securely transfer funds between accounts. There is no hold placed on online money transfers, so your funds are available when you need them. </p> </div> </div> <div class="span3"> <div> <h4><span class="headers" id="money_map_link"><i class="icon icon-list-alt"></i>My Money Map</span></h4> <p>Use Zero to set up and monitor your personalized money map. A money map is an easy-to-use online tool that helps you manage your finances efficiently. With Money Map, you can create a budget, sort your finances into spending and savings categories, check the interest your accounts are earning, and gain new understanding of your patterns with the help of Zero’s clear charts and graphs. </p> </div> </div> </div> <script type="text/javascript"> $(function() { $("#carousel").carousel({ interval: false }); $("div").on("click", "a[id='online-banking']", function(event){ event.preventDefault(); window.location.href = "/" + "online-banking" + ".html"; }); var path = "/bank/"; var featureIdToName = { "account_activity_link": "account-activity", "transfer_funds_link": "transfer-funds", "money_map_link": "money-map" } $.each(featureIdToName, function(featureId, featureName) { $("#online_banking_features").on("click", "span[id='" + featureId + "']", function(event) { event.preventDefault(); window.location.href = path + featureName +".html"; }); }); }); </script> </div> </div> <div class="clearfix push"></div> </div> <div class="extra"> <div class="extra-inner"> <div class="container"> <div class="row"> <div class="span4"> <ul> <li><span id="download_webinspect_link">Download WebInspect</span></li> </ul> </div> <div class="span4"> <ul> <li><span id="terms_of_use_link">Terms of Use</span></li> </ul> </div> <div class="span4"> <ul> <li><span id="contact_hp_link">Contact Micro Focus</span></li> <li><span id="privacy_statement_link">Privacy Statement</span></li> </ul> </div> </div> <div class="row"> <div class="disclaimer span12"> The Free Online Bank Web site is published by Micro Focus Fortify for the sole purpose of demonstrating the functionality and effectiveness of Micro Focus Fortify’s WebInspect products in detecting and reporting Web application vulnerabilities. This site is not a real banking site and any similarities to third party products and/or Web sites are purely coincidental. This site is provided "as is" without warranty of any kind, either express or implied. Micro Focus Fortify does not assume any risk in relation to your use of this Web site. Use of this Web site indicates that you have read and agree to Micro Focus Fortify’s Terms of Use found at <a href="https://www.microfocus.com/about/legal/#privacy" target="_blank">https://www.microfocus.com/about/legal/#privacy</a> and Micro Focus Fortify’s Online Privacy Statement found at <a href="https://www.microfocus.com/about/legal/#privacy" target="_blank">https://www.microfocus.com/about/legal/#privacy</a>. <br/><br/> Copyright © 2012-2018, Micro Focus Development Company. All rights reserved. </div> </div> </div> </div> </div> <script type="text/javascript"> $(function () { var path = "/"; var attachClickHandler = function(selector, handler) { $(".extra").on('click', selector, handler); } var footerLinks = { "download_webinspect_link": { absolute: true, page: "https://software.microfocus.com/en-us/products/webinspect-dynamic-analysis-dast/overview" }, "contact_hp_link" : { absolute: true, page: "https://support.fortify.com" }, "privacy_statement_link": { absolute: true, page: "https://www.microfocus.com/about/legal/#privacy" }, "terms_of_use_link": { absolute: true, page: "https://www.microfocus.com/about/legal/" } }; $.each(footerLinks, function(linkId, link) { attachClickHandler('span[id="' + linkId + '"]', function(event) { event.preventDefault(); if (link.absolute) { window.location.href = link.page; } else { window.location.href = path + link.page + ".html"; } }); }); }); </script> </body> </html> |
| URL | http://zero.webappsecurity.com/index.html |
| Method | GET |
| Parameter | X-Content-Type-Options |
| Attack | |
| Evidence | |
| Request Header - size: 265 bytes. |
GET http://zero.webappsecurity.com/index.html HTTP/1.1
Host: zero.webappsecurity.com User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0 Pragma: no-cache Cache-Control: no-cache Referer: http://zero.webappsecurity.com |
| Request Body - size: 0 bytes. |
|
| Response Header - size: 242 bytes. |
HTTP/1.1 200 OK
Date: Mon, 14 Mar 2022 07:13:41 GMT Server: Apache-Coyote/1.1 Access-Control-Allow-Origin: * Cache-Control: no-cache, max-age=0, must-revalidate, no-store Content-Type: text/html;charset=UTF-8 Content-Language: en-US |
| Response Body - size: 12,471 bytes. |
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Zero - Personal Banking - Loans - Credit Cards</title> <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"> <meta http-equiv="X-UA-Compatible" content="IE=Edge"> <link type="text/css" rel="stylesheet" href="/resources/css/bootstrap.min.css"/> <link type="text/css" rel="stylesheet" href="/resources/css/font-awesome.css"/> <link type="text/css" rel="stylesheet" href="/resources/css/main.css"/> <script src="/resources/js/jquery-1.8.2.min.js"></script> <script src="/resources/js/bootstrap.min.js"></script> <script src="/resources/js/placeholders.min.js"></script> <script type="text/javascript"> Placeholders.init({ live: true, // Apply to future and modified elements too hideOnFocus: true // Hide the placeholder when the element receives focus }); </script> <script type="text/javascript"> $(document).ajaxError(function errorHandler(event, xhr, ajaxOptions, thrownError) { if (xhr.status == 403) { window.location.reload(); } }); </script> </head> <body> <div class="wrapper"> <div class="navbar navbar-fixed-top"> <div class="navbar-inner"> <div class="container"> <a href="/index.html" class="brand">Zero Bank</a> <div> <ul class="nav float-right"> <li> <form action="/search.html" class="navbar-search pull-right" style="padding-right: 20px"> <input type="text" id="searchTerm" name="searchTerm" class="search-query" placeholder="Search"/> </form> </li> <li> <button id="signin_button" type="button" class="signin btn btn-info"> <i class="icon-signin"></i>Signin </button> </li> </ul> </div> </div> </div> </div> <script type="text/javascript"> $(function() { var path = "/"; $("#signin_button").click(function(event) { event.preventDefault(); window.location.href = path + "login" + ".html"; }); }); </script> <div class="container"> <div class="top_offset"> <div class="row"> <div class="span12"> <div id="nav" class="clearfix"> <ul id="pages-nav"> <li id="homeMenu"><div><strong>Home</strong></div></li> <li id="onlineBankingMenu"><div><strong>Online Banking</strong></div></li> <li id="feedback"><div><strong>Feedback</strong></div></li> </ul> </div> </div> <script type="text/javascript"> $(function () { var path = "/"; var featureIdToName = { "index": "homeMenu", "online-banking": "onlineBankingMenu", "feedback": "feedback" }; if (document.location.href.match(".*" + path + "$") != null) { $("#homeMenu").addClass("active"); } else { $.each(featureIdToName, function(featureId, featureName) { if (document.location.href.indexOf(featureId + ".html") >= 0) { $("#" + featureName).addClass("active"); } }); } $.each(featureIdToName, function(featureId, featureName) { $("#nav").on("click", "li[id='" + featureName + "']", function(event) { event.preventDefault(); window.location.href = path + featureId + ".html"; }); }); }); </script> </div> <div class="row"> <div class="span12"> <div id="carousel" class="carousel slide"> <div class="carousel-inner"> <div class="active item"> <img src="/resources/img/main_carousel_1.jpg" width="940" height="401" alt=""/> <div class="custom carousel-caption"> <h4>Online Banking</h4> <p>Welcome to Zero Online Banking. Zero provides a greener and more convenient way to manage your money. Zero enables you to check your account balances, pay your bills, transfer money, and keep detailed records of your transactions, wherever there is an internet connection.</p> </div> </div> <div class="item"> <img src="/resources/img/main_carousel_2.jpg" width="940" height="401" alt=""/> <div class="custom carousel-caption"> <h4>Online Banking</h4> <p>Welcome to Zero Online Banking. Zero provides a greener and more convenient way to manage your money. Zero enables you to check your account balances, pay your bills, transfer money, and keep detailed records of your transactions, wherever there is an internet connection.</p> </div> </div> <div class="item"> <img src="/resources/img/main_carousel_3.jpg" width="940" height="401" alt=""/> <div class="custom carousel-caption"> <h4>Online Banking</h4> <p>Welcome to Zero Online Banking. Zero provides a greener and more convenient way to manage your money. Zero enables you to check your account balances, pay your bills, transfer money, and keep detailed records of your transactions, wherever there is an internet connection.</p> </div> </div> </div> <a class="carousel-control custom left" href="#carousel" data-slide="prev">‹</a> <a class="carousel-control custom right" href="#carousel" data-slide="next">›</a> </div> </div> </div> <hr class="row-divider"/> <div id="online_banking_features" class="row divider"> <div class="span3"> <h4><i class="icon icon-bookmark"></i> Online Banking</h4> <p>Click the button below to view online banking features.</p> <a id="online-banking" class="btn btn-small btn-info">More Services</a> </div> <div class="span3"> <div> <h4><span class="headers" id="account_activity_link"><i class="icon icon-user"></i>Checking Account Activity</span></h4> <p>Use Zero to view the most up-to-date listings of your deposits, withdrawals, interest payments, and a number of other useful transactions. </p> </div> </div> <div class="span3"> <div> <h4><span class="headers" id="transfer_funds_link"><i class="icon icon-random"></i>Transfer Funds</span></h4> <p>Use Zero to safely and securely transfer funds between accounts. There is no hold placed on online money transfers, so your funds are available when you need them. </p> </div> </div> <div class="span3"> <div> <h4><span class="headers" id="money_map_link"><i class="icon icon-list-alt"></i>My Money Map</span></h4> <p>Use Zero to set up and monitor your personalized money map. A money map is an easy-to-use online tool that helps you manage your finances efficiently. With Money Map, you can create a budget, sort your finances into spending and savings categories, check the interest your accounts are earning, and gain new understanding of your patterns with the help of Zero’s clear charts and graphs. </p> </div> </div> </div> <script type="text/javascript"> $(function() { $("#carousel").carousel({ interval: false }); $("div").on("click", "a[id='online-banking']", function(event){ event.preventDefault(); window.location.href = "/" + "online-banking" + ".html"; }); var path = "/bank/"; var featureIdToName = { "account_activity_link": "account-activity", "transfer_funds_link": "transfer-funds", "money_map_link": "money-map" } $.each(featureIdToName, function(featureId, featureName) { $("#online_banking_features").on("click", "span[id='" + featureId + "']", function(event) { event.preventDefault(); window.location.href = path + featureName +".html"; }); }); }); </script> </div> </div> <div class="clearfix push"></div> </div> <div class="extra"> <div class="extra-inner"> <div class="container"> <div class="row"> <div class="span4"> <ul> <li><span id="download_webinspect_link">Download WebInspect</span></li> </ul> </div> <div class="span4"> <ul> <li><span id="terms_of_use_link">Terms of Use</span></li> </ul> </div> <div class="span4"> <ul> <li><span id="contact_hp_link">Contact Micro Focus</span></li> <li><span id="privacy_statement_link">Privacy Statement</span></li> </ul> </div> </div> <div class="row"> <div class="disclaimer span12"> The Free Online Bank Web site is published by Micro Focus Fortify for the sole purpose of demonstrating the functionality and effectiveness of Micro Focus Fortify’s WebInspect products in detecting and reporting Web application vulnerabilities. This site is not a real banking site and any similarities to third party products and/or Web sites are purely coincidental. This site is provided "as is" without warranty of any kind, either express or implied. Micro Focus Fortify does not assume any risk in relation to your use of this Web site. Use of this Web site indicates that you have read and agree to Micro Focus Fortify’s Terms of Use found at <a href="https://www.microfocus.com/about/legal/#privacy" target="_blank">https://www.microfocus.com/about/legal/#privacy</a> and Micro Focus Fortify’s Online Privacy Statement found at <a href="https://www.microfocus.com/about/legal/#privacy" target="_blank">https://www.microfocus.com/about/legal/#privacy</a>. <br/><br/> Copyright © 2012-2018, Micro Focus Development Company. All rights reserved. </div> </div> </div> </div> </div> <script type="text/javascript"> $(function () { var path = "/"; var attachClickHandler = function(selector, handler) { $(".extra").on('click', selector, handler); } var footerLinks = { "download_webinspect_link": { absolute: true, page: "https://software.microfocus.com/en-us/products/webinspect-dynamic-analysis-dast/overview" }, "contact_hp_link" : { absolute: true, page: "https://support.fortify.com" }, "privacy_statement_link": { absolute: true, page: "https://www.microfocus.com/about/legal/#privacy" }, "terms_of_use_link": { absolute: true, page: "https://www.microfocus.com/about/legal/" } }; $.each(footerLinks, function(linkId, link) { attachClickHandler('span[id="' + linkId + '"]', function(event) { event.preventDefault(); if (link.absolute) { window.location.href = link.page; } else { window.location.href = path + link.page + ".html"; } }); }); }); </script> </body> </html> |
| URL | http://zero.webappsecurity.com/resources/css/bootstrap.min.css |
| Method | GET |
| Parameter | X-Content-Type-Options |
| Attack | |
| Evidence | |
| Request Header - size: 286 bytes. |
GET http://zero.webappsecurity.com/resources/css/bootstrap.min.css HTTP/1.1
Host: zero.webappsecurity.com User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0 Pragma: no-cache Cache-Control: no-cache Referer: http://zero.webappsecurity.com |
| Request Body - size: 0 bytes. |
|
| Response Header - size: 349 bytes. |
HTTP/1.1 200 OK
Date: Mon, 14 Mar 2022 07:13:41 GMT Server: Apache-Coyote/1.1 Access-Control-Allow-Origin: * Accept-Ranges: bytes ETag: W/"115795-1358437290000" Last-Modified: Thu, 17 Jan 2013 15:41:30 GMT Cache-Control: max-age=2678400 Expires: Thu, 14 Apr 2022 07:13:42 GMT Content-Type: text/css;charset=UTF-8 Content-Length: 115795 |
| Response Body - size: 115,795 bytes. |
/*!
* Bootstrap v2.2.2 * * Copyright 2012 Twitter, Inc * Licensed under the Apache License v2.0 * http://www.apache.org/licenses/LICENSE-2.0 * * Designed and built with all the love in the world @twitter by @mdo and @fat. */ .clearfix{*zoom:1;}.clearfix:before,.clearfix:after{display:table;content:"";line-height:0;} .clearfix:after{clear:both;} .hide-text{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0;} .input-block-level{display:block;width:100%;min-height:30px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;} article,aside,details,figcaption,figure,footer,header,hgroup,nav,section{display:block;} audio,canvas,video{display:inline-block;*display:inline;*zoom:1;} audio:not([controls]){display:none;} html{font-size:100%;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%;} a:focus{outline:thin dotted #333;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px;} a:hover,a:active{outline:0;} sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline;} sup{top:-0.5em;} sub{bottom:-0.25em;} img{max-width:100%;width:auto\9;height:auto;vertical-align:middle;border:0;-ms-interpolation-mode:bicubic;} #map_canvas img,.google-maps img{max-width:none;} button,input,select,textarea{margin:0;font-size:100%;vertical-align:middle;} button,input{*overflow:visible;line-height:normal;} button::-moz-focus-inner,input::-moz-focus-inner{padding:0;border:0;} button,html input[type="button"],input[type="reset"],input[type="submit"]{-webkit-appearance:button;cursor:pointer;} label,select,button,input[type="button"],input[type="reset"],input[type="submit"],input[type="radio"],input[type="checkbox"]{cursor:pointer;} input[type="search"]{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;-webkit-appearance:textfield;} input[type="search"]::-webkit-search-decoration,input[type="search"]::-webkit-search-cancel-button{-webkit-appearance:none;} textarea{overflow:auto;vertical-align:top;} @media print{*{text-shadow:none !important;color:#000 !important;background:transparent !important;box-shadow:none !important;} a,a:visited{text-decoration:underline;} a[href]:after{content:" (" attr(href) ")";} abbr[title]:after{content:" (" attr(title) ")";} .ir a:after,a[href^="javascript:"]:after,a[href^="#"]:after{content:"";} pre,blockquote{border:1px solid #999;page-break-inside:avoid;} thead{display:table-header-group;} tr,img{page-break-inside:avoid;} img{max-width:100% !important;} @page {margin:0.5cm;}p,h2,h3{orphans:3;widows:3;} h2,h3{page-break-after:avoid;}}body{margin:0;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;line-height:20px;color:#333333;background-color:#ffffff;} a{color:#0088cc;text-decoration:none;} a:hover{color:#005580;text-decoration:underline;} .img-rounded{-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;} .img-polaroid{padding:4px;background-color:#fff;border:1px solid #ccc;border:1px solid rgba(0, 0, 0, 0.2);-webkit-box-shadow:0 1px 3px rgba(0, 0, 0, 0.1);-moz-box-shadow:0 1px 3px rgba(0, 0, 0, 0.1);box-shadow:0 1px 3px rgba(0, 0, 0, 0.1);} .img-circle{-webkit-border-radius:500px;-moz-border-radius:500px;border-radius:500px;} .row{margin-left:-20px;*zoom:1;}.row:before,.row:after{display:table;content:"";line-height:0;} .row:after{clear:both;} [class*="span"]{float:left;min-height:1px;margin-left:20px;} .container,.navbar-static-top .container,.navbar-fixed-top .container,.navbar-fixed-bottom .container{width:940px;} .span12{width:940px;} .span11{width:860px;} .span10{width:780px;} .span9{width:700px;} .span8{width:620px;} .span7{width:540px;} .span6{width:460px;} .span5{width:380px;} .span4{width:300px;} .span3{width:220px;} .span2{width:140px;} .span1{width:60px;} .offset12{margin-left:980px;} .offset11{margin-left:900px;} .offset10{margin-left:820px;} .offset9{margin-left:740px;} .offset8{margin-left:660px;} .offset7{margin-left:580px;} .offset6{margin-left:500px;} .offset5{margin-left:420px;} .offset4{margin-left:340px;} .offset3{margin-left:260px;} .offset2{margin-left:180px;} .offset1{margin-left:100px;} .row-fluid{width:100%;*zoom:1;}.row-fluid:before,.row-fluid:after{display:table;content:"";line-height:0;} .row-fluid:after{clear:both;} .row-fluid [class*="span"]{display:block;width:100%;min-height:30px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;float:left;margin-left:2.127659574468085%;*margin-left:2.074468085106383%;} .row-fluid [class*="span"]:first-child{margin-left:0;} .row-fluid .controls-row [class*="span"]+[class*="span"]{margin-left:2.127659574468085%;} .row-fluid .span12{width:100%;*width:99.94680851063829%;} .row-fluid .span11{width:91.48936170212765%;*width:91.43617021276594%;} .row-fluid .span10{width:82.97872340425532%;*width:82.92553191489361%;} .row-fluid .span9{width:74.46808510638297%;*width:74.41489361702126%;} .row-fluid .span8{width:65.95744680851064%;*width:65.90425531914893%;} .row-fluid .span7{width:57.44680851063829%;*width:57.39361702127659%;} .row-fluid .span6{width:48.93617021276595%;*width:48.88297872340425%;} .row-fluid .span5{width:40.42553191489362%;*width:40.37234042553192%;} .row-fluid .span4{width:31.914893617021278%;*width:31.861702127659576%;} .row-fluid .span3{width:23.404255319148934%;*width:23.351063829787233%;} .row-fluid .span2{width:14.893617021276595%;*width:14.840425531914894%;} .row-fluid .span1{width:6.382978723404255%;*width:6.329787234042553%;} .row-fluid .offset12{margin-left:104.25531914893617%;*margin-left:104.14893617021275%;} .row-fluid .offset12:first-child{margin-left:102.12765957446808%;*margin-left:102.02127659574467%;} .row-fluid .offset11{margin-left:95.74468085106382%;*margin-left:95.6382978723404%;} .row-fluid .offset11:first-child{margin-left:93.61702127659574%;*margin-left:93.51063829787232%;} .row-fluid .offset10{margin-left:87.23404255319149%;*margin-left:87.12765957446807%;} .row-fluid .offset10:first-child{margin-left:85.1063829787234%;*margin-left:84.99999999999999%;} .row-fluid .offset9{margin-left:78.72340425531914%;*margin-left:78.61702127659572%;} .row-fluid .offset9:first-child{margin-left:76.59574468085106%;*margin-left:76.48936170212764%;} .row-fluid .offset8{margin-left:70.2127659574468%;*margin-left:70.10638297872339%;} .row-fluid .offset8:first-child{margin-left:68.08510638297872%;*margin-left:67.9787234042553%;} .row-fluid .offset7{margin-left:61.70212765957446%;*margin-left:61.59574468085106%;} .row-fluid .offset7:first-child{margin-left:59.574468085106375%;*margin-left:59.46808510638297%;} .row-fluid .offset6{margin-left:53.191489361702125%;*margin-left:53.085106382978715%;} .row-fluid .offset6:first-child{margin-left:51.063829787234035%;*margin-left:50.95744680851063%;} .row-fluid .offset5{margin-left:44.68085106382979%;*margin-left:44.57446808510638%;} .row-fluid .offset5:first-child{margin-left:42.5531914893617%;*margin-left:42.4468085106383%;} .row-fluid .offset4{margin-left:36.170212765957444%;*margin-left:36.06382978723405%;} .row-fluid .offset4:first-child{margin-left:34.04255319148936%;*margin-left:33.93617021276596%;} .row-fluid .offset3{margin-left:27.659574468085104%;*margin-left:27.5531914893617%;} .row-fluid .offset3:first-child{margin-left:25.53191489361702%;*margin-left:25.425531914893618%;} .row-fluid .offset2{margin-left:19.148936170212764%;*margin-left:19.04255319148936%;} .row-fluid .offset2:first-child{margin-left:17.02127659574468%;*margin-left:16.914893617021278%;} .row-fluid .offset1{margin-left:10.638297872340425%;*margin-left:10.53191489361702%;} .row-fluid .offset1:first-child{margin-left:8.51063829787234%;*margin-left:8.404255319148938%;} [class*="span"].hide,.row-fluid [class*="span"].hide{display:none;} [class*="span"].pull-right,.row-fluid [class*="span"].pull-right{float:right;} .container{margin-right:auto;margin-left:auto;*zoom:1;}.container:before,.container:after{display:table;content:"";line-height:0;} .container:after{clear:both;} .container-fluid{padding-right:20px;padding-left:20px;*zoom:1;}.container-fluid:before,.container-fluid:after{display:table;content:"";line-height:0;} .container-fluid:after{clear:both;} p{margin:0 0 10px;} .lead{margin-bottom:20px;font-size:21px;font-weight:200;line-height:30px;} small{font-size:85%;} strong{font-weight:bold;} em{font-style:italic;} cite{font-style:normal;} .muted{color:#999999;} a.muted:hover{color:#808080;} .text-warning{color:#c09853;} a.text-warning:hover{color:#a47e3c;} .text-error{color:#b94a48;} a.text-error:hover{color:#953b39;} .text-info{color:#3a87ad;} a.text-info:hover{color:#2d6987;} .text-success{color:#468847;} a.text-success:hover{color:#356635;} h1,h2,h3,h4,h5,h6{margin:10px 0;font-family:inherit;font-weight:bold;line-height:20px;color:inherit;text-rendering:optimizelegibility;}h1 small,h2 small,h3 small,h4 small,h5 small,h6 small{font-weight:normal;line-height:1;color:#999999;} h1,h2,h3{line-height:40px;} h1{font-size:38.5px;} h2{font-size:31.5px;} h3{font-size:24.5px;} h4{font-size:17.5px;} h5{font-size:14px;} h6{font-size:11.9px;} h1 small{font-size:24.5px;} h2 small{font-size:17.5px;} h3 small{font-size:14px;} h4 small{font-size:14px;} .page-header{padding-bottom:9px;margin:20px 0 30px;border-bottom:1px solid #eeeeee;} ul,ol{padding:0;margin:0 0 10px 25px;} ul ul,ul ol,ol ol,ol ul{margin-bottom:0;} li{line-height:20px;} ul.unstyled,ol.unstyled{margin-left:0;list-style:none;} ul.inline,ol.inline{margin-left:0;list-style:none;}ul.inline >li,ol.inline >li{display:inline-block;padding-left:5px;padding-right:5px;} dl{margin-bottom:20px;} dt,dd{line-height:20px;} dt{font-weight:bold;} dd{margin-left:10px;} .dl-horizontal{*zoom:1;}.dl-horizontal:before,.dl-horizontal:after{display:table;content:"";line-height:0;} .dl-horizontal:after{clear:both;} .dl-horizontal dt{float:left;width:160px;clear:left;text-align:right;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;} .dl-horizontal dd{margin-left:180px;} hr{margin:20px 0;border:0;border-top:1px solid #eeeeee;border-bottom:1px solid #ffffff;} abbr[title],abbr[data-original-title]{cursor:help;border-bottom:1px dotted #999999;} abbr.initialism{font-size:90%;text-transform:uppercase;} blockquote{padding:0 0 0 15px;margin:0 0 20px;border-left:5px solid #eeeeee;}blockquote p{margin-bottom:0;font-size:16px;font-weight:300;line-height:25px;} blockquote small{display:block;line-height:20px;color:#999999;}blockquote small:before{content:'\2014 \00A0';} blockquote.pull-right{float:right;padding-right:15px;padding-left:0;border-right:5px solid #eeeeee;border-left:0;}blockquote.pull-right p,blockquote.pull-right small{text-align:right;} blockquote.pull-right small:before{content:'';} blockquote.pull-right small:after{content:'\00A0 \2014';} q:before,q:after,blockquote:before,blockquote:after{content:"";} address{display:block;margin-bottom:20px;font-style:normal;line-height:20px;} code,pre{padding:0 3px 2px;font-family:Monaco,Menlo,Consolas,"Courier New",monospace;font-size:12px;color:#333333;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;} code{padding:2px 4px;color:#d14;background-color:#f7f7f9;border:1px solid #e1e1e8;white-space:nowrap;} pre{display:block;padding:9.5px;margin:0 0 10px;font-size:13px;line-height:20px;word-break:break-all;word-wrap:break-word;white-space:pre;white-space:pre-wrap;background-color:#f5f5f5;border:1px solid #ccc;border:1px solid rgba(0, 0, 0, 0.15);-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;}pre.prettyprint{margin-bottom:20px;} pre code{padding:0;color:inherit;white-space:pre;white-space:pre-wrap;background-color:transparent;border:0;} .pre-scrollable{max-height:340px;overflow-y:scroll;} .label,.badge{display:inline-block;padding:2px 4px;font-size:11.844px;font-weight:bold;line-height:14px;color:#ffffff;vertical-align:baseline;white-space:nowrap;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);background-color:#999999;} .label{-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;} .badge{padding-left:9px;padding-right:9px;-webkit-border-radius:9px;-moz-border-radius:9px;border-radius:9px;} .label:empty,.badge:empty{display:none;} a.label:hover,a.badge:hover{color:#ffffff;text-decoration:none;cursor:pointer;} .label-important,.badge-important{background-color:#b94a48;} .label-important[href],.badge-important[href]{background-color:#953b39;} .label-warning,.badge-warning{background-color:#f89406;} .label-warning[href],.badge-warning[href]{background-color:#c67605;} .label-success,.badge-success{background-color:#468847;} .label-success[href],.badge-success[href]{background-color:#356635;} .label-info,.badge-info{background-color:#3a87ad;} .label-info[href],.badge-info[href]{background-color:#2d6987;} .label-inverse,.badge-inverse{background-color:#333333;} .label-inverse[href],.badge-inverse[href]{background-color:#1a1a1a;} .btn .label,.btn .badge{position:relative;top:-1px;} .btn-mini .label,.btn-mini .badge{top:0;} table{max-width:100%;background-color:transparent;border-collapse:collapse;border-spacing:0;} .table{width:100%;margin-bottom:20px;}.table th,.table td{padding:8px;line-height:20px;text-align:left;vertical-align:top;border-top:1px solid #dddddd;} .table th{font-weight:bold;} .table thead th{vertical-align:bottom;} .table caption+thead tr:first-child th,.table caption+thead tr:first-child td,.table colgroup+thead tr:first-child th,.table colgroup+thead tr:first-child td,.table thead:first-child tr:first-child th,.table thead:first-child tr:first-child td{border-top:0;} .table tbody+tbody{border-top:2px solid #dddddd;} .table .table{background-color:#ffffff;} .table-condensed th,.table-condensed td{padding:4px 5px;} .table-bordered{border:1px solid #dddddd;border-collapse:separate;*border-collapse:collapse;border-left:0;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;}.table-bordered th,.table-bordered td{border-left:1px solid #dddddd;} .table-bordered caption+thead tr:first-child th,.table-bordered caption+tbody tr:first-child th,.table-bordered caption+tbody tr:first-child td,.table-bordered colgroup+thead tr:first-child th,.table-bordered colgroup+tbody tr:first-child th,.table-bordered colgroup+tbody tr:first-child td,.table-bordered thead:first-child tr:first-child th,.table-bordered tbody:first-child tr:first-child th,.table-bordered tbody:first-child tr:first-child td{border-top:0;} .table-bordered thead:first-child tr:first-child>th:first-child,.table-bordered tbody:first-child tr:first-child>td:first-child{-webkit-border-top-left-radius:4px;-moz-border-radius-topleft:4px;border-top-left-radius:4px;} .table-bordered thead:first-child tr:first-child>th:last-child,.table-bordered tbody:first-child tr:first-child>td:last-child{-webkit-border-top-right-radius:4px;-moz-border-radius-topright:4px;border-top-right-radius:4px;} .table-bordered thead:last-child tr:last-child>th:first-child,.table-bordered tbody:last-child tr:last-child>td:first-child,.table-bordered tfoot:last-child tr:last-child>td:first-child{-webkit-border-bottom-left-radius:4px;-moz-border-radius-bottomleft:4px;border-bottom-left-radius:4px;} .table-bordered thead:last-child tr:last-child>th:last-child,.table-bordered tbody:last-child tr:last-child>td:last-child,.table-bordered tfoot:last-child tr:last-child>td:last-child{-webkit-border-bottom-right-radius:4px;-moz-border-radius-bottomright:4px;border-bottom-right-radius:4px;} .table-bordered tfoot+tbody:last-child tr:last-child td:first-child{-webkit-border-bottom-left-radius:0;-moz-border-radius-bottomleft:0;border-bottom-left-radius:0;} .table-bordered tfoot+tbody:last-child tr:last-child td:last-child{-webkit-border-bottom-right-radius:0;-moz-border-radius-bottomright:0;border-bottom-right-radius:0;} .table-bordered caption+thead tr:first-child th:first-child,.table-bordered caption+tbody tr:first-child td:first-child,.table-bordered colgroup+thead tr:first-child th:first-child,.table-bordered colgroup+tbody tr:first-child td:first-child{-webkit-border-top-left-radius:4px;-moz-border-radius-topleft:4px;border-top-left-radius:4px;} .table-bordered caption+thead tr:first-child th:last-child,.table-bordered caption+tbody tr:first-child td:last-child,.table-bordered colgroup+thead tr:first-child th:last-child,.table-bordered colgroup+tbody tr:first-child td:last-child{-webkit-border-top-right-radius:4px;-moz-border-radius-topright:4px;border-top-right-radius:4px;} .table-striped tbody>tr:nth-child(odd)>td,.table-striped tbody>tr:nth-child(odd)>th{background-color:#f9f9f9;} .table-hover tbody tr:hover td,.table-hover tbody tr:hover th{background-color:#f5f5f5;} table td[class*="span"],table th[class*="span"],.row-fluid table td[class*="span"],.row-fluid table th[class*="span"]{display:table-cell;float:none;margin-left:0;} .table td.span1,.table th.span1{float:none;width:44px;margin-left:0;} .table td.span2,.table th.span2{float:none;width:124px;margin-left:0;} .table td.span3,.table th.span3{float:none;width:204px;margin-left:0;} .table td.span4,.table th.span4{float:none;width:284px;margin-left:0;} .table td.span5,.table th.span5{float:none;width:364px;margin-left:0;} .table td.span6,.table th.span6{float:none;width:444px;margin-left:0;} .table td.span7,.table th.span7{float:none;width:524px;margin-left:0;} .table td.span8,.table th.span8{float:none;width:604px;margin-left:0;} .table td.span9,.table th.span9{float:none;width:684px;margin-left:0;} .table td.span10,.table th.span10{float:none;width:764px;margin-left:0;} .table td.span11,.table th.span11{float:none;width:844px;margin-left:0;} .table td.span12,.table th.span12{float:none;width:924px;margin-left:0;} .table tbody tr.success td{background-color:#dff0d8;} .table tbody tr.error td{background-color:#f2dede;} .table tbody tr.warning td{background-color:#fcf8e3;} .table tbody tr.info td{background-color:#d9edf7;} .table-hover tbody tr.success:hover td{background-color:#d0e9c6;} .table-hover tbody tr.error:hover td{background-color:#ebcccc;} .table-hover tbody tr.warning:hover td{background-color:#faf2cc;} .table-hover tbody tr.info:hover td{background-color:#c4e3f3;} form{margin:0 0 20px;} fieldset{padding:0;margin:0;border:0;} legend{display:block;width:100%;padding:0;margin-bottom:20px;font-size:21px;line-height:40px;color:#333333;border:0;border-bottom:1px solid #e5e5e5;}legend small{font-size:15px;color:#999999;} label,input,button,select,textarea{font-size:14px;font-weight:normal;line-height:20px;} input,button,select,textarea{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;} label{display:block;margin-bottom:5px;} select,textarea,input[type="text"],input[type="password"],input[type="datetime"],input[type="datetime-local"],input[type="date"],input[type="month"],input[type="time"],input[type="week"],input[type="number"],input[type="email"],input[type="url"],input[type="search"],input[type="tel"],input[type="color"],.uneditable-input{display:inline-block;height:20px;padding:4px 6px;margin-bottom:10px;font-size:14px;line-height:20px;color:#555555;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;vertical-align:middle;} input,textarea,.uneditable-input{width:206px;} textarea{height:auto;} textarea,input[type="text"],input[type="password"],input[type="datetime"],input[type="datetime-local"],input[type="date"],input[type="month"],input[type="time"],input[type="week"],input[type="number"],input[type="email"],input[type="url"],input[type="search"],input[type="tel"],input[type="color"],.uneditable-input{background-color:#ffffff;border:1px solid #cccccc;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);-moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);-webkit-transition:border linear .2s, box-shadow linear .2s;-moz-transition:border linear .2s, box-shadow linear .2s;-o-transition:border linear .2s, box-shadow linear .2s;transition:border linear .2s, box-shadow linear .2s;}textarea:focus,input[type="text"]:focus,input[type="password"]:focus,input[type="datetime"]:focus,input[type="datetime-local"]:focus,input[type="date"]:focus,input[type="month"]:focus,input[type="time"]:focus,input[type="week"]:focus,input[type="number"]:focus,input[type="email"]:focus,input[type="url"]:focus,input[type="search"]:focus,input[type="tel"]:focus,input[type="color"]:focus,.uneditable-input:focus{border-color:rgba(82, 168, 236, 0.8);outline:0;outline:thin dotted \9;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(82,168,236,.6);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(82,168,236,.6);box-shadow:inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(82,168,236,.6);} input[type="radio"],input[type="checkbox"]{margin:4px 0 0;*margin-top:0;margin-top:1px \9;line-height:normal;} input[type="file"],input[type="image"],input[type="submit"],input[type="reset"],input[type="button"],input[type="radio"],input[type="checkbox"]{width:auto;} select,input[type="file"]{height:30px;*margin-top:4px;line-height:30px;} select{width:220px;border:1px solid #cccccc;background-color:#ffffff;} select[multiple],select[size]{height:auto;} select:focus,input[type="file"]:focus,input[type="radio"]:focus,input[type="checkbox"]:focus{outline:thin dotted #333;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px;} .uneditable-input,.uneditable-textarea{color:#999999;background-color:#fcfcfc;border-color:#cccccc;-webkit-box-shadow:inset 0 1px 2px rgba(0, 0, 0, 0.025);-moz-box-shadow:inset 0 1px 2px rgba(0, 0, 0, 0.025);box-shadow:inset 0 1px 2px rgba(0, 0, 0, 0.025);cursor:not-allowed;} .uneditable-input{overflow:hidden;white-space:nowrap;} .uneditable-textarea{width:auto;height:auto;} input:-moz-placeholder,textarea:-moz-placeholder{color:#999999;} input:-ms-input-placeholder,textarea:-ms-input-placeholder{color:#999999;} input::-webkit-input-placeholder,textarea::-webkit-input-placeholder{color:#999999;} .radio,.checkbox{min-height:20px;padding-left:20px;} .radio input[type="radio"],.checkbox input[type="checkbox"]{float:left;margin-left:-20px;} .controls>.radio:first-child,.controls>.checkbox:first-child{padding-top:5px;} .radio.inline,.checkbox.inline{display:inline-block;padding-top:5px;margin-bottom:0;vertical-align:middle;} .radio.inline+.radio.inline,.checkbox.inline+.checkbox.inline{margin-left:10px;} .input-mini{width:60px;} .input-small{width:90px;} .input-medium{width:150px;} .input-large{width:210px;} .input-xlarge{width:270px;} .input-xxlarge{width:530px;} input[class*="span"],select[class*="span"],textarea[class*="span"],.uneditable-input[class*="span"],.row-fluid input[class*="span"],.row-fluid select[class*="span"],.row-fluid textarea[class*="span"],.row-fluid .uneditable-input[class*="span"]{float:none;margin-left:0;} .input-append input[class*="span"],.input-append .uneditable-input[class*="span"],.input-prepend input[class*="span"],.input-prepend .uneditable-input[class*="span"],.row-fluid input[class*="span"],.row-fluid select[class*="span"],.row-fluid textarea[class*="span"],.row-fluid .uneditable-input[class*="span"],.row-fluid .input-prepend [class*="span"],.row-fluid .input-append [class*="span"]{display:inline-block;} input,textarea,.uneditable-input{margin-left:0;} .controls-row [class*="span"]+[class*="span"]{margin-left:20px;} input.span12, textarea.span12, .uneditable-input.span12{width:926px;} input.span11, textarea.span11, .uneditable-input.span11{width:846px;} input.span10, textarea.span10, .uneditable-input.span10{width:766px;} input.span9, textarea.span9, .uneditable-input.span9{width:686px;} input.span8, textarea.span8, .uneditable-input.span8{width:606px;} input.span7, textarea.span7, .uneditable-input.span7{width:526px;} input.span6, textarea.span6, .uneditable-input.span6{width:446px;} input.span5, textarea.span5, .uneditable-input.span5{width:366px;} input.span4, textarea.span4, .uneditable-input.span4{width:286px;} input.span3, textarea.span3, .uneditable-input.span3{width:206px;} input.span2, textarea.span2, .uneditable-input.span2{width:126px;} input.span1, textarea.span1, .uneditable-input.span1{width:46px;} .controls-row{*zoom:1;}.controls-row:before,.controls-row:after{display:table;content:"";line-height:0;} .controls-row:after{clear:both;} .controls-row [class*="span"],.row-fluid .controls-row [class*="span"]{float:left;} .controls-row .checkbox[class*="span"],.controls-row .radio[class*="span"]{padding-top:5px;} input[disabled],select[disabled],textarea[disabled],input[readonly],select[readonly],textarea[readonly]{cursor:not-allowed;background-color:#eeeeee;} input[type="radio"][disabled],input[type="checkbox"][disabled],input[type="radio"][readonly],input[type="checkbox"][readonly]{background-color:transparent;} .control-group.warning .control-label,.control-group.warning .help-block,.control-group.warning .help-inline{color:#c09853;} .control-group.warning .checkbox,.control-group.warning .radio,.control-group.warning input,.control-group.warning select,.control-group.warning textarea{color:#c09853;} .control-group.warning input,.control-group.warning select,.control-group.warning textarea{border-color:#c09853;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);-moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);}.control-group.warning input:focus,.control-group.warning select:focus,.control-group.warning textarea:focus{border-color:#a47e3c;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 6px #dbc59e;-moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 6px #dbc59e;box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 6px #dbc59e;} .control-group.warning .input-prepend .add-on,.control-group.warning .input-append .add-on{color:#c09853;background-color:#fcf8e3;border-color:#c09853;} .control-group.error .control-label,.control-group.error .help-block,.control-group.error .help-inline{color:#b94a48;} .control-group.error .checkbox,.control-group.error .radio,.control-group.error input,.control-group.error select,.control-group.error textarea{color:#b94a48;} .control-group.error input,.control-group.error select,.control-group.error textarea{border-color:#b94a48;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);-moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);}.control-group.error input:focus,.control-group.error select:focus,.control-group.error textarea:focus{border-color:#953b39;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 6px #d59392;-moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 6px #d59392;box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 6px #d59392;} .control-group.error .input-prepend .add-on,.control-group.error .input-append .add-on{color:#b94a48;background-color:#f2dede;border-color:#b94a48;} .control-group.success .control-label,.control-group.success .help-block,.control-group.success .help-inline{color:#468847;} .control-group.success .checkbox,.control-group.success .radio,.control-group.success input,.control-group.success select,.control-group.success textarea{color:#468847;} .control-group.success input,.control-group.success select,.control-group.success textarea{border-color:#468847;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);-moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);}.control-group.success input:focus,.control-group.success select:focus,.control-group.success textarea:focus{border-color:#356635;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 6px #7aba7b;-moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 6px #7aba7b;box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 6px #7aba7b;} .control-group.success .input-prepend .add-on,.control-group.success .input-append .add-on{color:#468847;background-color:#dff0d8;border-color:#468847;} .control-group.info .control-label,.control-group.info .help-block,.control-group.info .help-inline{color:#3a87ad;} .control-group.info .checkbox,.control-group.info .radio,.control-group.info input,.control-group.info select,.control-group.info textarea{color:#3a87ad;} .control-group.info input,.control-group.info select,.control-group.info textarea{border-color:#3a87ad;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);-moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);}.control-group.info input:focus,.control-group.info select:focus,.control-group.info textarea:focus{border-color:#2d6987;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 6px #7ab5d3;-moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 6px #7ab5d3;box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 6px #7ab5d3;} .control-group.info .input-prepend .add-on,.control-group.info .input-append .add-on{color:#3a87ad;background-color:#d9edf7;border-color:#3a87ad;} input:focus:invalid,textarea:focus:invalid,select:focus:invalid{color:#b94a48;border-color:#ee5f5b;}input:focus:invalid:focus,textarea:focus:invalid:focus,select:focus:invalid:focus{border-color:#e9322d;-webkit-box-shadow:0 0 6px #f8b9b7;-moz-box-shadow:0 0 6px #f8b9b7;box-shadow:0 0 6px #f8b9b7;} .form-actions{padding:19px 20px 20px;margin-top:20px;margin-bottom:20px;background-color:#f5f5f5;border-top:1px solid #e5e5e5;*zoom:1;}.form-actions:before,.form-actions:after{display:table;content:"";line-height:0;} .form-actions:after{clear:both;} .help-block,.help-inline{color:#595959;} .help-block{display:block;margin-bottom:10px;} .help-inline{display:inline-block;*display:inline;*zoom:1;vertical-align:middle;padding-left:5px;} .input-append,.input-prepend{margin-bottom:5px;font-size:0;white-space:nowrap;}.input-append input,.input-prepend input,.input-append select,.input-prepend select,.input-append .uneditable-input,.input-prepend .uneditable-input,.input-append .dropdown-menu,.input-prepend .dropdown-menu{font-size:14px;} .input-append input,.input-prepend input,.input-append select,.input-prepend select,.input-append .uneditable-input,.input-prepend .uneditable-input{position:relative;margin-bottom:0;*margin-left:0;vertical-align:top;-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0;}.input-append input:focus,.input-prepend input:focus,.input-append select:focus,.input-prepend select:focus,.input-append .uneditable-input:focus,.input-prepend .uneditable-input:focus{z-index:2;} .input-append .add-on,.input-prepend .add-on{display:inline-block;width:auto;height:20px;min-width:16px;padding:4px 5px;font-size:14px;font-weight:normal;line-height:20px;text-align:center;text-shadow:0 1px 0 #ffffff;background-color:#eeeeee;border:1px solid #ccc;} .input-append .add-on,.input-prepend .add-on,.input-append .btn,.input-prepend .btn,.input-append .btn-group>.dropdown-toggle,.input-prepend .btn-group>.dropdown-toggle{vertical-align:top;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;} .input-append .active,.input-prepend .active{background-color:#a9dba9;border-color:#46a546;} .input-prepend .add-on,.input-prepend .btn{margin-right:-1px;} .input-prepend .add-on:first-child,.input-prepend .btn:first-child{-webkit-border-radius:4px 0 0 4px;-moz-border-radius:4px 0 0 4px;border-radius:4px 0 0 4px;} .input-append input,.input-append select,.input-append .uneditable-input{-webkit-border-radius:4px 0 0 4px;-moz-border-radius:4px 0 0 4px;border-radius:4px 0 0 4px;}.input-append input+.btn-group .btn:last-child,.input-append select+.btn-group .btn:last-child,.input-append .uneditable-input+.btn-group .btn:last-child{-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0;} .input-append .add-on,.input-append .btn,.input-append .btn-group{margin-left:-1px;} .input-append .add-on:last-child,.input-append .btn:last-child,.input-append .btn-group:last-child>.dropdown-toggle{-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0;} .input-prepend.input-append input,.input-prepend.input-append select,.input-prepend.input-append .uneditable-input{-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;}.input-prepend.input-append input+.btn-group .btn,.input-prepend.input-append select+.btn-group .btn,.input-prepend.input-append .uneditable-input+.btn-group .btn{-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0;} .input-prepend.input-append .add-on:first-child,.input-prepend.input-append .btn:first-child{margin-right:-1px;-webkit-border-radius:4px 0 0 4px;-moz-border-radius:4px 0 0 4px;border-radius:4px 0 0 4px;} .input-prepend.input-append .add-on:last-child,.input-prepend.input-append .btn:last-child{margin-left:-1px;-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0;} .input-prepend.input-append .btn-group:first-child{margin-left:0;} input.search-query{padding-right:14px;padding-right:4px \9;padding-left:14px;padding-left:4px \9;margin-bottom:0;-webkit-border-radius:15px;-moz-border-radius:15px;border-radius:15px;} .form-search .input-append .search-query,.form-search .input-prepend .search-query{-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;} .form-search .input-append .search-query{-webkit-border-radius:14px 0 0 14px;-moz-border-radius:14px 0 0 14px;border-radius:14px 0 0 14px;} .form-search .input-append .btn{-webkit-border-radius:0 14px 14px 0;-moz-border-radius:0 14px 14px 0;border-radius:0 14px 14px 0;} .form-search .input-prepend .search-query{-webkit-border-radius:0 14px 14px 0;-moz-border-radius:0 14px 14px 0;border-radius:0 14px 14px 0;} .form-search .input-prepend .btn{-webkit-border-radius:14px 0 0 14px;-moz-border-radius:14px 0 0 14px;border-radius:14px 0 0 14px;} .form-search input,.form-inline input,.form-horizontal input,.form-search textarea,.form-inline textarea,.form-horizontal textarea,.form-search select,.form-inline select,.form-horizontal select,.form-search .help-inline,.form-inline .help-inline,.form-horizontal .help-inline,.form-search .uneditable-input,.form-inline .uneditable-input,.form-horizontal .uneditable-input,.form-search .input-prepend,.form-inline .input-prepend,.form-horizontal .input-prepend,.form-search .input-append,.form-inline .input-append,.form-horizontal .input-append{display:inline-block;*display:inline;*zoom:1;margin-bottom:0;vertical-align:middle;} .form-search .hide,.form-inline .hide,.form-horizontal .hide{display:none;} .form-search label,.form-inline label,.form-search .btn-group,.form-inline .btn-group{display:inline-block;} .form-search .input-append,.form-inline .input-append,.form-search .input-prepend,.form-inline .input-prepend{margin-bottom:0;} .form-search .radio,.form-search .checkbox,.form-inline .radio,.form-inline .checkbox{padding-left:0;margin-bottom:0;vertical-align:middle;} .form-search .radio input[type="radio"],.form-search .checkbox input[type="checkbox"],.form-inline .radio input[type="radio"],.form-inline .checkbox input[type="checkbox"]{float:left;margin-right:3px;margin-left:0;} .control-group{margin-bottom:10px;} legend+.control-group{margin-top:20px;-webkit-margin-top-collapse:separate;} .form-horizontal .control-group{margin-bottom:20px;*zoom:1;}.form-horizontal .control-group:before,.form-horizontal .control-group:after{display:table;content:"";line-height:0;} .form-horizontal .control-group:after{clear:both;} .form-horizontal .control-label{float:left;width:160px;padding-top:5px;text-align:right;} .form-horizontal .controls{*display:inline-block;*padding-left:20px;margin-left:180px;*margin-left:0;}.form-horizontal .controls:first-child{*padding-left:180px;} .form-horizontal .help-block{margin-bottom:0;} .form-horizontal input+.help-block,.form-horizontal select+.help-block,.form-horizontal textarea+.help-block,.form-horizontal .uneditable-input+.help-block,.form-horizontal .input-prepend+.help-block,.form-horizontal .input-append+.help-block{margin-top:10px;} .form-horizontal .form-actions{padding-left:180px;} .btn{display:inline-block;*display:inline;*zoom:1;padding:4px 12px;margin-bottom:0;font-size:14px;line-height:20px;text-align:center;vertical-align:middle;cursor:pointer;color:#333333;text-shadow:0 1px 1px rgba(255, 255, 255, 0.75);background-color:#f5f5f5;background-image:-moz-linear-gradient(top, #ffffff, #e6e6e6);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#e6e6e6));background-image:-webkit-linear-gradient(top, #ffffff, #e6e6e6);background-image:-o-linear-gradient(top, #ffffff, #e6e6e6);background-image:linear-gradient(to bottom, #ffffff, #e6e6e6);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe6e6e6', GradientType=0);border-color:#e6e6e6 #e6e6e6 #bfbfbf;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);*background-color:#e6e6e6;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);border:1px solid #bbbbbb;*border:0;border-bottom-color:#a2a2a2;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;*margin-left:.3em;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);-moz-box-shadow:inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);box-shadow:inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);}.btn:hover,.btn:active,.btn.active,.btn.disabled,.btn[disabled]{color:#333333;background-color:#e6e6e6;*background-color:#d9d9d9;} .btn:active,.btn.active{background-color:#cccccc \9;} .btn:first-child{*margin-left:0;} .btn:hover{color:#333333;text-decoration:none;background-position:0 -15px;-webkit-transition:background-position 0.1s linear;-moz-transition:background-position 0.1s linear;-o-transition:background-position 0.1s linear;transition:background-position 0.1s linear;} .btn:focus{outline:thin dotted #333;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px;} .btn.active,.btn:active{background-image:none;outline:0;-webkit-box-shadow:inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);-moz-box-shadow:inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);box-shadow:inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);} .btn.disabled,.btn[disabled]{cursor:default;background-image:none;opacity:0.65;filter:alpha(opacity=65);-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;} .btn-large{padding:11px 19px;font-size:17.5px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;} .btn-large [class^="icon-"],.btn-large [class*=" icon-"]{margin-top:4px;} .btn-small{padding:2px 10px;font-size:11.9px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;} .btn-small [class^="icon-"],.btn-small [class*=" icon-"]{margin-top:0;} .btn-mini [class^="icon-"],.btn-mini [class*=" icon-"]{margin-top:-1px;} .btn-mini{padding:0 6px;font-size:10.5px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;} .btn-block{display:block;width:100%;padding-left:0;padding-right:0;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;} .btn-block+.btn-block{margin-top:5px;} input[type="submit"].btn-block,input[type="reset"].btn-block,input[type="button"].btn-block{width:100%;} .btn-primary.active,.btn-warning.active,.btn-danger.active,.btn-success.active,.btn-info.active,.btn-inverse.active{color:rgba(255, 255, 255, 0.75);} .btn{border-color:#c5c5c5;border-color:rgba(0, 0, 0, 0.15) rgba(0, 0, 0, 0.15) rgba(0, 0, 0, 0.25);} .btn-primary{color:#ffffff;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);background-color:#006dcc;background-image:-moz-linear-gradient(top, #0088cc, #0044cc);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0044cc));background-image:-webkit-linear-gradient(top, #0088cc, #0044cc);background-image:-o-linear-gradient(top, #0088cc, #0044cc);background-image:linear-gradient(to bottom, #0088cc, #0044cc);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff0044cc', GradientType=0);border-color:#0044cc #0044cc #002a80;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);*background-color:#0044cc;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);}.btn-primary:hover,.btn-primary:active,.btn-primary.active,.btn-primary.disabled,.btn-primary[disabled]{color:#ffffff;background-color:#0044cc;*background-color:#003bb3;} .btn-primary:active,.btn-primary.active{background-color:#003399 \9;} .btn-warning{color:#ffffff;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);background-color:#faa732;background-image:-moz-linear-gradient(top, #fbb450, #f89406);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#fbb450), to(#f89406));background-image:-webkit-linear-gradient(top, #fbb450, #f89406);background-image:-o-linear-gradient(top, #fbb450, #f89406);background-image:linear-gradient(to bottom, #fbb450, #f89406);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffbb450', endColorstr='#fff89406', GradientType=0);border-color:#f89406 #f89406 #ad6704;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);*background-color:#f89406;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);}.btn-warning:hover,.btn-warning:active,.btn-warning.active,.btn-warning.disabled,.btn-warning[disabled]{color:#ffffff;background-color:#f89406;*background-color:#df8505;} .btn-warning:active,.btn-warning.active{background-color:#c67605 \9;} .btn-danger{color:#ffffff;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);background-color:#da4f49;background-image:-moz-linear-gradient(top, #ee5f5b, #bd362f);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#ee5f5b), to(#bd362f));background-image:-webkit-linear-gradient(top, #ee5f5b, #bd362f);background-image:-o-linear-gradient(top, #ee5f5b, #bd362f);background-image:linear-gradient(to bottom, #ee5f5b, #bd362f);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffee5f5b', endColorstr='#ffbd362f', GradientType=0);border-color:#bd362f #bd362f #802420;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);*background-color:#bd362f;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);}.btn-danger:hover,.btn-danger:active,.btn-danger.active,.btn-danger.disabled,.btn-danger[disabled]{color:#ffffff;background-color:#bd362f;*background-color:#a9302a;} .btn-danger:active,.btn-danger.active{background-color:#942a25 \9;} .btn-success{color:#ffffff;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);background-color:#5bb75b;background-image:-moz-linear-gradient(top, #62c462, #51a351);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#62c462), to(#51a351));background-image:-webkit-linear-gradient(top, #62c462, #51a351);background-image:-o-linear-gradient(top, #62c462, #51a351);background-image:linear-gradient(to bottom, #62c462, #51a351);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff62c462', endColorstr='#ff51a351', GradientType=0);border-color:#51a351 #51a351 #387038;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);*background-color:#51a351;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);}.btn-success:hover,.btn-success:active,.btn-success.active,.btn-success.disabled,.btn-success[disabled]{color:#ffffff;background-color:#51a351;*background-color:#499249;} .btn-success:active,.btn-success.active{background-color:#408140 \9;} .btn-info{color:#ffffff;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);background-color:#49afcd;background-image:-moz-linear-gradient(top, #5bc0de, #2f96b4);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#5bc0de), to(#2f96b4));background-image:-webkit-linear-gradient(top, #5bc0de, #2f96b4);background-image:-o-linear-gradient(top, #5bc0de, #2f96b4);background-image:linear-gradient(to bottom, #5bc0de, #2f96b4);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff2f96b4', GradientType=0);border-color:#2f96b4 #2f96b4 #1f6377;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);*background-color:#2f96b4;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);}.btn-info:hover,.btn-info:active,.btn-info.active,.btn-info.disabled,.btn-info[disabled]{color:#ffffff;background-color:#2f96b4;*background-color:#2a85a0;} .btn-info:active,.btn-info.active{background-color:#24748c \9;} .btn-inverse{color:#ffffff;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);background-color:#363636;background-image:-moz-linear-gradient(top, #444444, #222222);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#444444), to(#222222));background-image:-webkit-linear-gradient(top, #444444, #222222);background-image:-o-linear-gradient(top, #444444, #222222);background-image:linear-gradient(to bottom, #444444, #222222);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff444444', endColorstr='#ff222222', GradientType=0);border-color:#222222 #222222 #000000;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);*background-color:#222222;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);}.btn-inverse:hover,.btn-inverse:active,.btn-inverse.active,.btn-inverse.disabled,.btn-inverse[disabled]{color:#ffffff;background-color:#222222;*background-color:#151515;} .btn-inverse:active,.btn-inverse.active{background-color:#080808 \9;} button.btn,input[type="submit"].btn{*padding-top:3px;*padding-bottom:3px;}button.btn::-moz-focus-inner,input[type="submit"].btn::-moz-focus-inner{padding:0;border:0;} button.btn.btn-large,input[type="submit"].btn.btn-large{*padding-top:7px;*padding-bottom:7px;} button.btn.btn-small,input[type="submit"].btn.btn-small{*padding-top:3px;*padding-bottom:3px;} button.btn.btn-mini,input[type="submit"].btn.btn-mini{*padding-top:1px;*padding-bottom:1px;} .btn-link,.btn-link:active,.btn-link[disabled]{background-color:transparent;background-image:none;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;} .btn-link{border-color:transparent;cursor:pointer;color:#0088cc;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;} .btn-link:hover{color:#005580;text-decoration:underline;background-color:transparent;} .btn-link[disabled]:hover{color:#333333;text-decoration:none;} .btn-group{position:relative;display:inline-block;*display:inline;*zoom:1;font-size:0;vertical-align:middle;white-space:nowrap;*margin-left:.3em;}.btn-group:first-child{*margin-left:0;} .btn-group+.btn-group{margin-left:5px;} .btn-toolbar{font-size:0;margin-top:10px;margin-bottom:10px;}.btn-toolbar>.btn+.btn,.btn-toolbar>.btn-group+.btn,.btn-toolbar>.btn+.btn-group{margin-left:5px;} .btn-group>.btn{position:relative;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;} .btn-group>.btn+.btn{margin-left:-1px;} .btn-group>.btn,.btn-group>.dropdown-menu,.btn-group>.popover{font-size:14px;} .btn-group>.btn-mini{font-size:10.5px;} .btn-group>.btn-small{font-size:11.9px;} .btn-group>.btn-large{font-size:17.5px;} .btn-group>.btn:first-child{margin-left:0;-webkit-border-top-left-radius:4px;-moz-border-radius-topleft:4px;border-top-left-radius:4px;-webkit-border-bottom-left-radius:4px;-moz-border-radius-bottomleft:4px;border-bottom-left-radius:4px;} .btn-group>.btn:last-child,.btn-group>.dropdown-toggle{-webkit-border-top-right-radius:4px;-moz-border-radius-topright:4px;border-top-right-radius:4px;-webkit-border-bottom-right-radius:4px;-moz-border-radius-bottomright:4px;border-bottom-right-radius:4px;} .btn-group>.btn.large:first-child{margin-left:0;-webkit-border-top-left-radius:6px;-moz-border-radius-topleft:6px;border-top-left-radius:6px;-webkit-border-bottom-left-radius:6px;-moz-border-radius-bottomleft:6px;border-bottom-left-radius:6px;} .btn-group>.btn.large:last-child,.btn-group>.large.dropdown-toggle{-webkit-border-top-right-radius:6px;-moz-border-radius-topright:6px;border-top-right-radius:6px;-webkit-border-bottom-right-radius:6px;-moz-border-radius-bottomright:6px;border-bottom-right-radius:6px;} .btn-group>.btn:hover,.btn-group>.btn:focus,.btn-group>.btn:active,.btn-group>.btn.active{z-index:2;} .btn-group .dropdown-toggle:active,.btn-group.open .dropdown-toggle{outline:0;} .btn-group>.btn+.dropdown-toggle{padding-left:8px;padding-right:8px;-webkit-box-shadow:inset 1px 0 0 rgba(255,255,255,.125), inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);-moz-box-shadow:inset 1px 0 0 rgba(255,255,255,.125), inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);box-shadow:inset 1px 0 0 rgba(255,255,255,.125), inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);*padding-top:5px;*padding-bottom:5px;} .btn-group>.btn-mini+.dropdown-toggle{padding-left:5px;padding-right:5px;*padding-top:2px;*padding-bottom:2px;} .btn-group>.btn-small+.dropdown-toggle{*padding-top:5px;*padding-bottom:4px;} .btn-group>.btn-large+.dropdown-toggle{padding-left:12px;padding-right:12px;*padding-top:7px;*padding-bottom:7px;} .btn-group.open .dropdown-toggle{background-image:none;-webkit-box-shadow:inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);-moz-box-shadow:inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);box-shadow:inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);} .btn-group.open .btn.dropdown-toggle{background-color:#e6e6e6;} .btn-group.open .btn-primary.dropdown-toggle{background-color:#0044cc;} .btn-group.open .btn-warning.dropdown-toggle{background-color:#f89406;} .btn-group.open .btn-danger.dropdown-toggle{background-color:#bd362f;} .btn-group.open .btn-success.dropdown-toggle{background-color:#51a351;} .btn-group.open .btn-info.dropdown-toggle{background-color:#2f96b4;} .btn-group.open .btn-inverse.dropdown-toggle{background-color:#222222;} .btn .caret{margin-top:8px;margin-left:0;} .btn-mini .caret,.btn-small .caret,.btn-large .caret{margin-top:6px;} .btn-large .caret{border-left-width:5px;border-right-width:5px;border-top-width:5px;} .dropup .btn-large .caret{border-bottom-width:5px;} .btn-primary .caret,.btn-warning .caret,.btn-danger .caret,.btn-info .caret,.btn-success .caret,.btn-inverse .caret{border-top-color:#ffffff;border-bottom-color:#ffffff;} .btn-group-vertical{display:inline-block;*display:inline;*zoom:1;} .btn-group-vertical>.btn{display:block;float:none;max-width:100%;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;} .btn-group-vertical>.btn+.btn{margin-left:0;margin-top:-1px;} .btn-group-vertical>.btn:first-child{-webkit-border-radius:4px 4px 0 0;-moz-border-radius:4px 4px 0 0;border-radius:4px 4px 0 0;} .btn-group-vertical>.btn:last-child{-webkit-border-radius:0 0 4px 4px;-moz-border-radius:0 0 4px 4px;border-radius:0 0 4px 4px;} .btn-group-vertical>.btn-large:first-child{-webkit-border-radius:6px 6px 0 0;-moz-border-radius:6px 6px 0 0;border-radius:6px 6px 0 0;} .btn-group-vertical>.btn-large:last-child{-webkit-border-radius:0 0 6px 6px;-moz-border-radius:0 0 6px 6px;border-radius:0 0 6px 6px;} .nav{margin-left:0;margin-bottom:20px;list-style:none;} .nav>li>a{display:block;} .nav>li>a:hover{text-decoration:none;background-color:#eeeeee;} .nav>li>a>img{max-width:none;} .nav>.pull-right{float:right;} .nav-header{display:block;padding:3px 15px;font-size:11px;font-weight:bold;line-height:20px;color:#999999;text-shadow:0 1px 0 rgba(255, 255, 255, 0.5);text-transform:uppercase;} .nav li+.nav-header{margin-top:9px;} .nav-list{padding-left:15px;padding-right:15px;margin-bottom:0;} .nav-list>li>a,.nav-list .nav-header{margin-left:-15px;margin-right:-15px;text-shadow:0 1px 0 rgba(255, 255, 255, 0.5);} .nav-list>li>a{padding:3px 15px;} .nav-list>.active>a,.nav-list>.active>a:hover{color:#ffffff;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.2);background-color:#0088cc;} .nav-list [class^="icon-"],.nav-list [class*=" icon-"]{margin-right:2px;} .nav-list .divider{*width:100%;height:1px;margin:9px 1px;*margin:-5px 0 5px;overflow:hidden;background-color:#e5e5e5;border-bottom:1px solid #ffffff;} .nav-tabs,.nav-pills{*zoom:1;}.nav-tabs:before,.nav-pills:before,.nav-tabs:after,.nav-pills:after{display:table;content:"";line-height:0;} .nav-tabs:after,.nav-pills:after{clear:both;} .nav-tabs>li,.nav-pills>li{float:left;} .nav-tabs>li>a,.nav-pills>li>a{padding-right:12px;padding-left:12px;margin-right:2px;line-height:14px;} .nav-tabs{border-bottom:1px solid #ddd;} .nav-tabs>li{margin-bottom:-1px;} .nav-tabs>li>a{padding-top:8px;padding-bottom:8px;line-height:20px;border:1px solid transparent;-webkit-border-radius:4px 4px 0 0;-moz-border-radius:4px 4px 0 0;border-radius:4px 4px 0 0;}.nav-tabs>li>a:hover{border-color:#eeeeee #eeeeee #dddddd;} .nav-tabs>.active>a,.nav-tabs>.active>a:hover{color:#555555;background-color:#ffffff;border:1px solid #ddd;border-bottom-color:transparent;cursor:default;} .nav-pills>li>a{padding-top:8px;padding-bottom:8px;margin-top:2px;margin-bottom:2px;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;} .nav-pills>.active>a,.nav-pills>.active>a:hover{color:#ffffff;background-color:#0088cc;} .nav-stacked>li{float:none;} .nav-stacked>li>a{margin-right:0;} .nav-tabs.nav-stacked{border-bottom:0;} .nav-tabs.nav-stacked>li>a{border:1px solid #ddd;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;} .nav-tabs.nav-stacked>li:first-child>a{-webkit-border-top-right-radius:4px;-moz-border-radius-topright:4px;border-top-right-radius:4px;-webkit-border-top-left-radius:4px;-moz-border-radius-topleft:4px;border-top-left-radius:4px;} .nav-tabs.nav-stacked>li:last-child>a{-webkit-border-bottom-right-radius:4px;-moz-border-radius-bottomright:4px;border-bottom-right-radius:4px;-webkit-border-bottom-left-radius:4px;-moz-border-radius-bottomleft:4px;border-bottom-left-radius:4px;} .nav-tabs.nav-stacked>li>a:hover{border-color:#ddd;z-index:2;} .nav-pills.nav-stacked>li>a{margin-bottom:3px;} .nav-pills.nav-stacked>li:last-child>a{margin-bottom:1px;} .nav-tabs .dropdown-menu{-webkit-border-radius:0 0 6px 6px;-moz-border-radius:0 0 6px 6px;border-radius:0 0 6px 6px;} .nav-pills .dropdown-menu{-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;} .nav .dropdown-toggle .caret{border-top-color:#0088cc;border-bottom-color:#0088cc;margin-top:6px;} .nav .dropdown-toggle:hover .caret{border-top-color:#005580;border-bottom-color:#005580;} .nav-tabs .dropdown-toggle .caret{margin-top:8px;} .nav .active .dropdown-toggle .caret{border-top-color:#fff;border-bottom-color:#fff;} .nav-tabs .active .dropdown-toggle .caret{border-top-color:#555555;border-bottom-color:#555555;} .nav>.dropdown.active>a:hover{cursor:pointer;} .nav-tabs .open .dropdown-toggle,.nav-pills .open .dropdown-toggle,.nav>li.dropdown.open.active>a:hover{color:#ffffff;background-color:#999999;border-color:#999999;} .nav li.dropdown.open .caret,.nav li.dropdown.open.active .caret,.nav li.dropdown.open a:hover .caret{border-top-color:#ffffff;border-bottom-color:#ffffff;opacity:1;filter:alpha(opacity=100);} .tabs-stacked .open>a:hover{border-color:#999999;} .tabbable{*zoom:1;}.tabbable:before,.tabbable:after{display:table;content:"";line-height:0;} .tabbable:after{clear:both;} .tab-content{overflow:auto;} .tabs-below>.nav-tabs,.tabs-right>.nav-tabs,.tabs-left>.nav-tabs{border-bottom:0;} .tab-content>.tab-pane,.pill-content>.pill-pane{display:none;} .tab-content>.active,.pill-content>.active{display:block;} .tabs-below>.nav-tabs{border-top:1px solid #ddd;} .tabs-below>.nav-tabs>li{margin-top:-1px;margin-bottom:0;} .tabs-below>.nav-tabs>li>a{-webkit-border-radius:0 0 4px 4px;-moz-border-radius:0 0 4px 4px;border-radius:0 0 4px 4px;}.tabs-below>.nav-tabs>li>a:hover{border-bottom-color:transparent;border-top-color:#ddd;} .tabs-below>.nav-tabs>.active>a,.tabs-below>.nav-tabs>.active>a:hover{border-color:transparent #ddd #ddd #ddd;} .tabs-left>.nav-tabs>li,.tabs-right>.nav-tabs>li{float:none;} .tabs-left>.nav-tabs>li>a,.tabs-right>.nav-tabs>li>a{min-width:74px;margin-right:0;margin-bottom:3px;} .tabs-left>.nav-tabs{float:left;margin-right:19px;border-right:1px solid #ddd;} .tabs-left>.nav-tabs>li>a{margin-right:-1px;-webkit-border-radius:4px 0 0 4px;-moz-border-radius:4px 0 0 4px;border-radius:4px 0 0 4px;} .tabs-left>.nav-tabs>li>a:hover{border-color:#eeeeee #dddddd #eeeeee #eeeeee;} .tabs-left>.nav-tabs .active>a,.tabs-left>.nav-tabs .active>a:hover{border-color:#ddd transparent #ddd #ddd;*border-right-color:#ffffff;} .tabs-right>.nav-tabs{float:right;margin-left:19px;border-left:1px solid #ddd;} .tabs-right>.nav-tabs>li>a{margin-left:-1px;-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0;} .tabs-right>.nav-tabs>li>a:hover{border-color:#eeeeee #eeeeee #eeeeee #dddddd;} .tabs-right>.nav-tabs .active>a,.tabs-right>.nav-tabs .active>a:hover{border-color:#ddd #ddd #ddd transparent;*border-left-color:#ffffff;} .nav>.disabled>a{color:#999999;} .nav>.disabled>a:hover{text-decoration:none;background-color:transparent;cursor:default;} .navbar{overflow:visible;margin-bottom:20px;*position:relative;*z-index:2;} .navbar-inner{min-height:50px;padding-left:20px;padding-right:20px;background-color:#fafafa;background-image:-moz-linear-gradient(top, #ffffff, #f2f2f2);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#f2f2f2));background-image:-webkit-linear-gradient(top, #ffffff, #f2f2f2);background-image:-o-linear-gradient(top, #ffffff, #f2f2f2);background-image:linear-gradient(to bottom, #ffffff, #f2f2f2);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#fff2f2f2', GradientType=0);border:1px solid #d4d4d4;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:0 1px 4px rgba(0, 0, 0, 0.065);-moz-box-shadow:0 1px 4px rgba(0, 0, 0, 0.065);box-shadow:0 1px 4px rgba(0, 0, 0, 0.065);*zoom:1;}.navbar-inner:before,.navbar-inner:after{display:table;content:"";line-height:0;} .navbar-inner:after{clear:both;} .navbar .container{width:auto;} .nav-collapse.collapse{height:auto;overflow:visible;} .navbar .brand{float:left;display:block;padding:15px 20px 15px;margin-left:-20px;font-size:20px;font-weight:200;color:#777777;text-shadow:0 1px 0 #ffffff;}.navbar .brand:hover{text-decoration:none;} .navbar-text{margin-bottom:0;line-height:50px;color:#777777;} .navbar-link{color:#777777;}.navbar-link:hover{color:#333333;} .navbar .divider-vertical{height:50px;margin:0 9px;border-left:1px solid #f2f2f2;border-right:1px solid #ffffff;} .navbar .btn,.navbar .btn-group{margin-top:10px;} .navbar .btn-group .btn,.navbar .input-prepend .btn,.navbar .input-append .btn{margin-top:0;} .navbar-form{margin-bottom:0;*zoom:1;}.navbar-form:before,.navbar-form:after{display:table;content:"";line-height:0;} .navbar-form:after{clear:both;} .navbar-form input,.navbar-form select,.navbar-form .radio,.navbar-form .checkbox{margin-top:10px;} .navbar-form input,.navbar-form select,.navbar-form .btn{display:inline-block;margin-bottom:0;} .navbar-form input[type="image"],.navbar-form input[type="checkbox"],.navbar-form input[type="radio"]{margin-top:3px;} .navbar-form .input-append,.navbar-form .input-prepend{margin-top:5px;white-space:nowrap;}.navbar-form .input-append input,.navbar-form .input-prepend input{margin-top:0;} .navbar-search{position:relative;float:left;margin-top:10px;margin-bottom:0;}.navbar-search .search-query{margin-bottom:0;padding:4px 14px;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:13px;font-weight:normal;line-height:1;-webkit-border-radius:15px;-moz-border-radius:15px;border-radius:15px;} .navbar-static-top{position:static;margin-bottom:0;}.navbar-static-top .navbar-inner{-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;} .navbar-fixed-top,.navbar-fixed-bottom{position:fixed;right:0;left:0;z-index:1030;margin-bottom:0;} .navbar-fixed-top .navbar-inner,.navbar-static-top .navbar-inner{border-width:0 0 1px;} .navbar-fixed-bottom .navbar-inner{border-width:1px 0 0;} .navbar-fixed-top .navbar-inner,.navbar-fixed-bottom .navbar-inner{padding-left:0;padding-right:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;} .navbar-static-top .container,.navbar-fixed-top .container,.navbar-fixed-bottom .container{width:940px;} .navbar-fixed-top{top:0;} .navbar-fixed-top .navbar-inner,.navbar-static-top .navbar-inner{-webkit-box-shadow:0 1px 10px rgba(0,0,0,.1);-moz-box-shadow:0 1px 10px rgba(0,0,0,.1);box-shadow:0 1px 10px rgba(0,0,0,.1);} .navbar-fixed-bottom{bottom:0;}.navbar-fixed-bottom .navbar-inner{-webkit-box-shadow:0 -1px 10px rgba(0,0,0,.1);-moz-box-shadow:0 -1px 10px rgba(0,0,0,.1);box-shadow:0 -1px 10px rgba(0,0,0,.1);} .navbar .nav{position:relative;left:0;display:block;float:left;margin:0 10px 0 0;} .navbar .nav.pull-right{float:right;margin-right:0;} .navbar .nav>li{float:left;} .navbar .nav>li>a{float:none;padding:15px 15px 15px;color:#777777;text-decoration:none;text-shadow:0 1px 0 #ffffff;} .navbar .nav .dropdown-toggle .caret{margin-top:8px;} .navbar .nav>li>a:focus,.navbar .nav>li>a:hover{background-color:transparent;color:#333333;text-decoration:none;} .navbar .nav>.active>a,.navbar .nav>.active>a:hover,.navbar .nav>.active>a:focus{color:#555555;text-decoration:none;background-color:#e5e5e5;-webkit-box-shadow:inset 0 3px 8px rgba(0, 0, 0, 0.125);-moz-box-shadow:inset 0 3px 8px rgba(0, 0, 0, 0.125);box-shadow:inset 0 3px 8px rgba(0, 0, 0, 0.125);} .navbar .btn-navbar{display:none;float:right;padding:7px 10px;margin-left:5px;margin-right:5px;color:#ffffff;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);background-color:#ededed;background-image:-moz-linear-gradient(top, #f2f2f2, #e5e5e5);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#f2f2f2), to(#e5e5e5));background-image:-webkit-linear-gradient(top, #f2f2f2, #e5e5e5);background-image:-o-linear-gradient(top, #f2f2f2, #e5e5e5);background-image:linear-gradient(to bottom, #f2f2f2, #e5e5e5);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2f2f2', endColorstr='#ffe5e5e5', GradientType=0);border-color:#e5e5e5 #e5e5e5 #bfbfbf;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);*background-color:#e5e5e5;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.075);-moz-box-shadow:inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.075);box-shadow:inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.075);}.navbar .btn-navbar:hover,.navbar .btn-navbar:active,.navbar .btn-navbar.active,.navbar .btn-navbar.disabled,.navbar .btn-navbar[disabled]{color:#ffffff;background-color:#e5e5e5;*background-color:#d9d9d9;} .navbar .btn-navbar:active,.navbar .btn-navbar.active{background-color:#cccccc \9;} .navbar .btn-navbar .icon-bar{display:block;width:18px;height:2px;background-color:#f5f5f5;-webkit-border-radius:1px;-moz-border-radius:1px;border-radius:1px;-webkit-box-shadow:0 1px 0 rgba(0, 0, 0, 0.25);-moz-box-shadow:0 1px 0 rgba(0, 0, 0, 0.25);box-shadow:0 1px 0 rgba(0, 0, 0, 0.25);} .btn-navbar .icon-bar+.icon-bar{margin-top:3px;} .navbar .nav>li>.dropdown-menu:before{content:'';display:inline-block;border-left:7px solid transparent;border-right:7px solid transparent;border-bottom:7px solid #ccc;border-bottom-color:rgba(0, 0, 0, 0.2);position:absolute;top:-7px;left:9px;} .navbar .nav>li>.dropdown-menu:after{content:'';display:inline-block;border-left:6px solid transparent;border-right:6px solid transparent;border-bottom:6px solid #ffffff;position:absolute;top:-6px;left:10px;} .navbar-fixed-bottom .nav>li>.dropdown-menu:before{border-top:7px solid #ccc;border-top-color:rgba(0, 0, 0, 0.2);border-bottom:0;bottom:-7px;top:auto;} .navbar-fixed-bottom .nav>li>.dropdown-menu:after{border-top:6px solid #ffffff;border-bottom:0;bottom:-6px;top:auto;} .navbar .nav li.dropdown>a:hover .caret{border-top-color:#555555;border-bottom-color:#555555;} .navbar .nav li.dropdown.open>.dropdown-toggle,.navbar .nav li.dropdown.active>.dropdown-toggle,.navbar .nav li.dropdown.open.active>.dropdown-toggle{background-color:#e5e5e5;color:#555555;} .navbar .nav li.dropdown>.dropdown-toggle .caret{border-top-color:#777777;border-bottom-color:#777777;} .navbar .nav li.dropdown.open>.dropdown-toggle .caret,.navbar .nav li.dropdown.active>.dropdown-toggle .caret,.navbar .nav li.dropdown.open.active>.dropdown-toggle .caret{border-top-color:#555555;border-bottom-color:#555555;} .navbar .pull-right>li>.dropdown-menu,.navbar .nav>li>.dropdown-menu.pull-right{left:auto;right:0;}.navbar .pull-right>li>.dropdown-menu:before,.navbar .nav>li>.dropdown-menu.pull-right:before{left:auto;right:12px;} .navbar .pull-right>li>.dropdown-menu:after,.navbar .nav>li>.dropdown-menu.pull-right:after{left:auto;right:13px;} .navbar .pull-right>li>.dropdown-menu .dropdown-menu,.navbar .nav>li>.dropdown-menu.pull-right .dropdown-menu{left:auto;right:100%;margin-left:0;margin-right:-1px;-webkit-border-radius:6px 0 6px 6px;-moz-border-radius:6px 0 6px 6px;border-radius:6px 0 6px 6px;} .navbar-inverse .navbar-inner{background-color:#1b1b1b;background-image:-moz-linear-gradient(top, #222222, #111111);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#222222), to(#111111));background-image:-webkit-linear-gradient(top, #222222, #111111);background-image:-o-linear-gradient(top, #222222, #111111);background-image:linear-gradient(to bottom, #222222, #111111);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff222222', endColorstr='#ff111111', GradientType=0);border-color:#252525;} .navbar-inverse .brand,.navbar-inverse .nav>li>a{color:#999999;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);}.navbar-inverse .brand:hover,.navbar-inverse .nav>li>a:hover{color:#ffffff;} .navbar-inverse .brand{color:#999999;} .navbar-inverse .navbar-text{color:#999999;} .navbar-inverse .nav>li>a:focus,.navbar-inverse .nav>li>a:hover{background-color:transparent;color:#ffffff;} .navbar-inverse .nav .active>a,.navbar-inverse .nav .active>a:hover,.navbar-inverse .nav .active>a:focus{color:#ffffff;background-color:#111111;} .navbar-inverse .navbar-link{color:#999999;}.navbar-inverse .navbar-link:hover{color:#ffffff;} .navbar-inverse .divider-vertical{border-left-color:#111111;border-right-color:#222222;} .navbar-inverse .nav li.dropdown.open>.dropdown-toggle,.navbar-inverse .nav li.dropdown.active>.dropdown-toggle,.navbar-inverse .nav li.dropdown.open.active>.dropdown-toggle{background-color:#111111;color:#ffffff;} .navbar-inverse .nav li.dropdown>a:hover .caret{border-top-color:#ffffff;border-bottom-color:#ffffff;} .navbar-inverse .nav li.dropdown>.dropdown-toggle .caret{border-top-color:#999999;border-bottom-color:#999999;} .navbar-inverse .nav li.dropdown.open>.dropdown-toggle .caret,.navbar-inverse .nav li.dropdown.active>.dropdown-toggle .caret,.navbar-inverse .nav li.dropdown.open.active>.dropdown-toggle .caret{border-top-color:#ffffff;border-bottom-color:#ffffff;} .navbar-inverse .navbar-search .search-query{color:#ffffff;background-color:#515151;border-color:#111111;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.1), 0 1px 0 rgba(255,255,255,.15);-moz-box-shadow:inset 0 1px 2px rgba(0,0,0,.1), 0 1px 0 rgba(255,255,255,.15);box-shadow:inset 0 1px 2px rgba(0,0,0,.1), 0 1px 0 rgba(255,255,255,.15);-webkit-transition:none;-moz-transition:none;-o-transition:none;transition:none;}.navbar-inverse .navbar-search .search-query:-moz-placeholder{color:#cccccc;} .navbar-inverse .navbar-search .search-query:-ms-input-placeholder{color:#cccccc;} .navbar-inverse .navbar-search .search-query::-webkit-input-placeholder{color:#cccccc;} .navbar-inverse .navbar-search .search-query:focus,.navbar-inverse .navbar-search .search-query.focused{padding:5px 15px;color:#333333;text-shadow:0 1px 0 #ffffff;background-color:#ffffff;border:0;-webkit-box-shadow:0 0 3px rgba(0, 0, 0, 0.15);-moz-box-shadow:0 0 3px rgba(0, 0, 0, 0.15);box-shadow:0 0 3px rgba(0, 0, 0, 0.15);outline:0;} .navbar-inverse .btn-navbar{color:#ffffff;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);background-color:#0e0e0e;background-image:-moz-linear-gradient(top, #151515, #040404);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#151515), to(#040404));background-image:-webkit-linear-gradient(top, #151515, #040404);background-image:-o-linear-gradient(top, #151515, #040404);background-image:linear-gradient(to bottom, #151515, #040404);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff151515', endColorstr='#ff040404', GradientType=0);border-color:#040404 #040404 #000000;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);*background-color:#040404;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);}.navbar-inverse .btn-navbar:hover,.navbar-inverse .btn-navbar:active,.navbar-inverse .btn-navbar.active,.navbar-inverse .btn-navbar.disabled,.navbar-inverse .btn-navbar[disabled]{color:#ffffff;background-color:#040404;*background-color:#000000;} .navbar-inverse .btn-navbar:active,.navbar-inverse .btn-navbar.active{background-color:#000000 \9;} .breadcrumb{padding:8px 15px;margin:0 0 20px;list-style:none;background-color:#f5f5f5;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;}.breadcrumb>li{display:inline-block;*display:inline;*zoom:1;text-shadow:0 1px 0 #ffffff;}.breadcrumb>li>.divider{padding:0 5px;color:#ccc;} .breadcrumb>.active{color:#999999;} .pagination{margin:20px 0;} .pagination ul{display:inline-block;*display:inline;*zoom:1;margin-left:0;margin-bottom:0;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:0 1px 2px rgba(0, 0, 0, 0.05);-moz-box-shadow:0 1px 2px rgba(0, 0, 0, 0.05);box-shadow:0 1px 2px rgba(0, 0, 0, 0.05);} .pagination ul>li{display:inline;} .pagination ul>li>a,.pagination ul>li>span{float:left;padding:4px 12px;line-height:20px;text-decoration:none;background-color:#ffffff;border:1px solid #dddddd;border-left-width:0;} .pagination ul>li>a:hover,.pagination ul>.active>a,.pagination ul>.active>span{background-color:#f5f5f5;} .pagination ul>.active>a,.pagination ul>.active>span{color:#999999;cursor:default;} .pagination ul>.disabled>span,.pagination ul>.disabled>a,.pagination ul>.disabled>a:hover{color:#999999;background-color:transparent;cursor:default;} .pagination ul>li:first-child>a,.pagination ul>li:first-child>span{border-left-width:1px;-webkit-border-top-left-radius:4px;-moz-border-radius-topleft:4px;border-top-left-radius:4px;-webkit-border-bottom-left-radius:4px;-moz-border-radius-bottomleft:4px;border-bottom-left-radius:4px;} .pagination ul>li:last-child>a,.pagination ul>li:last-child>span{-webkit-border-top-right-radius:4px;-moz-border-radius-topright:4px;border-top-right-radius:4px;-webkit-border-bottom-right-radius:4px;-moz-border-radius-bottomright:4px;border-bottom-right-radius:4px;} .pagination-centered{text-align:center;} .pagination-right{text-align:right;} .pagination-large ul>li>a,.pagination-large ul>li>span{padding:11px 19px;font-size:17.5px;} .pagination-large ul>li:first-child>a,.pagination-large ul>li:first-child>span{-webkit-border-top-left-radius:6px;-moz-border-radius-topleft:6px;border-top-left-radius:6px;-webkit-border-bottom-left-radius:6px;-moz-border-radius-bottomleft:6px;border-bottom-left-radius:6px;} .pagination-large ul>li:last-child>a,.pagination-large ul>li:last-child>span{-webkit-border-top-right-radius:6px;-moz-border-radius-topright:6px;border-top-right-radius:6px;-webkit-border-bottom-right-radius:6px;-moz-border-radius-bottomright:6px;border-bottom-right-radius:6px;} .pagination-mini ul>li:first-child>a,.pagination-small ul>li:first-child>a,.pagination-mini ul>li:first-child>span,.pagination-small ul>li:first-child>span{-webkit-border-top-left-radius:3px;-moz-border-radius-topleft:3px;border-top-left-radius:3px;-webkit-border-bottom-left-radius:3px;-moz-border-radius-bottomleft:3px;border-bottom-left-radius:3px;} .pagination-mini ul>li:last-child>a,.pagination-small ul>li:last-child>a,.pagination-mini ul>li:last-child>span,.pagination-small ul>li:last-child>span{-webkit-border-top-right-radius:3px;-moz-border-radius-topright:3px;border-top-right-radius:3px;-webkit-border-bottom-right-radius:3px;-moz-border-radius-bottomright:3px;border-bottom-right-radius:3px;} .pagination-small ul>li>a,.pagination-small ul>li>span{padding:2px 10px;font-size:11.9px;} .pagination-mini ul>li>a,.pagination-mini ul>li>span{padding:0 6px;font-size:10.5px;} .pager{margin:20px 0;list-style:none;text-align:center;*zoom:1;}.pager:before,.pager:after{display:table;content:"";line-height:0;} .pager:after{clear:both;} .pager li{display:inline;} .pager li>a,.pager li>span{display:inline-block;padding:5px 14px;background-color:#fff;border:1px solid #ddd;-webkit-border-radius:15px;-moz-border-radius:15px;border-radius:15px;} .pager li>a:hover{text-decoration:none;background-color:#f5f5f5;} .pager .next>a,.pager .next>span{float:right;} .pager .previous>a,.pager .previous>span{float:left;} .pager .disabled>a,.pager .disabled>a:hover,.pager .disabled>span{color:#999999;background-color:#fff;cursor:default;} .thumbnails{margin-left:-20px;list-style:none;*zoom:1;}.thumbnails:before,.thumbnails:after{display:table;content:"";line-height:0;} .thumbnails:after{clear:both;} .row-fluid .thumbnails{margin-left:0;} .thumbnails>li{float:left;margin-bottom:20px;margin-left:20px;} .thumbnail{display:block;padding:4px;line-height:20px;border:1px solid #ddd;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:0 1px 3px rgba(0, 0, 0, 0.055);-moz-box-shadow:0 1px 3px rgba(0, 0, 0, 0.055);box-shadow:0 1px 3px rgba(0, 0, 0, 0.055);-webkit-transition:all 0.2s ease-in-out;-moz-transition:all 0.2s ease-in-out;-o-transition:all 0.2s ease-in-out;transition:all 0.2s ease-in-out;} a.thumbnail:hover{border-color:#0088cc;-webkit-box-shadow:0 1px 4px rgba(0, 105, 214, 0.25);-moz-box-shadow:0 1px 4px rgba(0, 105, 214, 0.25);box-shadow:0 1px 4px rgba(0, 105, 214, 0.25);} .thumbnail>img{display:block;max-width:100%;margin-left:auto;margin-right:auto;} .thumbnail .caption{padding:9px;color:#555555;} .alert{padding:8px 35px 8px 14px;margin-bottom:20px;text-shadow:0 1px 0 rgba(255, 255, 255, 0.5);background-color:#fcf8e3;border:1px solid #fbeed5;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;} .alert,.alert h4{color:#c09853;} .alert h4{margin:0;} .alert .close{position:relative;top:-2px;right:-21px;line-height:20px;} .alert-success{background-color:#dff0d8;border-color:#d6e9c6;color:#468847;} .alert-success h4{color:#468847;} .alert-danger,.alert-error{background-color:#f2dede;border-color:#eed3d7;color:#b94a48;} .alert-danger h4,.alert-error h4{color:#b94a48;} .alert-info{background-color:#d9edf7;border-color:#bce8f1;color:#3a87ad;} .alert-info h4{color:#3a87ad;} .alert-block{padding-top:14px;padding-bottom:14px;} .alert-block>p,.alert-block>ul{margin-bottom:0;} .alert-block p+p{margin-top:5px;} @-webkit-keyframes progress-bar-stripes{from{background-position:40px 0;} to{background-position:0 0;}}@-moz-keyframes progress-bar-stripes{from{background-position:40px 0;} to{background-position:0 0;}}@-ms-keyframes progress-bar-stripes{from{background-position:40px 0;} to{background-position:0 0;}}@-o-keyframes progress-bar-stripes{from{background-position:0 0;} to{background-position:40px 0;}}@keyframes progress-bar-stripes{from{background-position:40px 0;} to{background-position:0 0;}}.progress{overflow:hidden;height:20px;margin-bottom:20px;background-color:#f7f7f7;background-image:-moz-linear-gradient(top, #f5f5f5, #f9f9f9);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#f5f5f5), to(#f9f9f9));background-image:-webkit-linear-gradient(top, #f5f5f5, #f9f9f9);background-image:-o-linear-gradient(top, #f5f5f5, #f9f9f9);background-image:linear-gradient(to bottom, #f5f5f5, #f9f9f9);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#fff9f9f9', GradientType=0);-webkit-box-shadow:inset 0 1px 2px rgba(0, 0, 0, 0.1);-moz-box-shadow:inset 0 1px 2px rgba(0, 0, 0, 0.1);box-shadow:inset 0 1px 2px rgba(0, 0, 0, 0.1);-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;} .progress .bar{width:0%;height:100%;color:#ffffff;float:left;font-size:12px;text-align:center;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);background-color:#0e90d2;background-image:-moz-linear-gradient(top, #149bdf, #0480be);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#149bdf), to(#0480be));background-image:-webkit-linear-gradient(top, #149bdf, #0480be);background-image:-o-linear-gradient(top, #149bdf, #0480be);background-image:linear-gradient(to bottom, #149bdf, #0480be);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff149bdf', endColorstr='#ff0480be', GradientType=0);-webkit-box-shadow:inset 0 -1px 0 rgba(0, 0, 0, 0.15);-moz-box-shadow:inset 0 -1px 0 rgba(0, 0, 0, 0.15);box-shadow:inset 0 -1px 0 rgba(0, 0, 0, 0.15);-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;-webkit-transition:width 0.6s ease;-moz-transition:width 0.6s ease;-o-transition:width 0.6s ease;transition:width 0.6s ease;} .progress .bar+.bar{-webkit-box-shadow:inset 1px 0 0 rgba(0,0,0,.15), inset 0 -1px 0 rgba(0,0,0,.15);-moz-box-shadow:inset 1px 0 0 rgba(0,0,0,.15), inset 0 -1px 0 rgba(0,0,0,.15);box-shadow:inset 1px 0 0 rgba(0,0,0,.15), inset 0 -1px 0 rgba(0,0,0,.15);} .progress-striped .bar{background-color:#149bdf;background-image:-webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));background-image:-webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);-webkit-background-size:40px 40px;-moz-background-size:40px 40px;-o-background-size:40px 40px;background-size:40px 40px;} .progress.active .bar{-webkit-animation:progress-bar-stripes 2s linear infinite;-moz-animation:progress-bar-stripes 2s linear infinite;-ms-animation:progress-bar-stripes 2s linear infinite;-o-animation:progress-bar-stripes 2s linear infinite;animation:progress-bar-stripes 2s linear infinite;} .progress-danger .bar,.progress .bar-danger{background-color:#dd514c;background-image:-moz-linear-gradient(top, #ee5f5b, #c43c35);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#ee5f5b), to(#c43c35));background-image:-webkit-linear-gradient(top, #ee5f5b, #c43c35);background-image:-o-linear-gradient(top, #ee5f5b, #c43c35);background-image:linear-gradient(to bottom, #ee5f5b, #c43c35);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffee5f5b', endColorstr='#ffc43c35', GradientType=0);} .progress-danger.progress-striped .bar,.progress-striped .bar-danger{background-color:#ee5f5b;background-image:-webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));background-image:-webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);} .progress-success .bar,.progress .bar-success{background-color:#5eb95e;background-image:-moz-linear-gradient(top, #62c462, #57a957);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#62c462), to(#57a957));background-image:-webkit-linear-gradient(top, #62c462, #57a957);background-image:-o-linear-gradient(top, #62c462, #57a957);background-image:linear-gradient(to bottom, #62c462, #57a957);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff62c462', endColorstr='#ff57a957', GradientType=0);} .progress-success.progress-striped .bar,.progress-striped .bar-success{background-color:#62c462;background-image:-webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));background-image:-webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);} .progress-info .bar,.progress .bar-info{background-color:#4bb1cf;background-image:-moz-linear-gradient(top, #5bc0de, #339bb9);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#5bc0de), to(#339bb9));background-image:-webkit-linear-gradient(top, #5bc0de, #339bb9);background-image:-o-linear-gradient(top, #5bc0de, #339bb9);background-image:linear-gradient(to bottom, #5bc0de, #339bb9);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff339bb9', GradientType=0);} .progress-info.progress-striped .bar,.progress-striped .bar-info{background-color:#5bc0de;background-image:-webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));background-image:-webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);} .progress-warning .bar,.progress .bar-warning{background-color:#faa732;background-image:-moz-linear-gradient(top, #fbb450, #f89406);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#fbb450), to(#f89406));background-image:-webkit-linear-gradient(top, #fbb450, #f89406);background-image:-o-linear-gradient(top, #fbb450, #f89406);background-image:linear-gradient(to bottom, #fbb450, #f89406);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffbb450', endColorstr='#fff89406', GradientType=0);} .progress-warning.progress-striped .bar,.progress-striped .bar-warning{background-color:#fbb450;background-image:-webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));background-image:-webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);} .hero-unit{padding:60px;margin-bottom:30px;font-size:18px;font-weight:200;line-height:30px;color:inherit;background-color:#eeeeee;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;}.hero-unit h1{margin-bottom:0;font-size:60px;line-height:1;color:inherit;letter-spacing:-1px;} .hero-unit li{line-height:30px;} .media,.media-body{overflow:hidden;*overflow:visible;zoom:1;} .media,.media .media{margin-top:15px;} .media:first-child{margin-top:0;} .media-object{display:block;} .media-heading{margin:0 0 5px;} .media .pull-left{margin-right:10px;} .media .pull-right{margin-left:10px;} .media-list{margin-left:0;list-style:none;} .tooltip{position:absolute;z-index:1030;display:block;visibility:visible;padding:5px;font-size:11px;opacity:0;filter:alpha(opacity=0);}.tooltip.in{opacity:0.8;filter:alpha(opacity=80);} .tooltip.top{margin-top:-3px;} .tooltip.right{margin-left:3px;} .tooltip.bottom{margin-top:3px;} .tooltip.left{margin-left:-3px;} .tooltip-inner{max-width:200px;padding:3px 8px;color:#ffffff;text-align:center;text-decoration:none;background-color:#000000;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;} .tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid;} .tooltip.top .tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-width:5px 5px 0;border-top-color:#000000;} .tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#000000;} .tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-width:5px 0 5px 5px;border-left-color:#000000;} .tooltip.bottom .tooltip-arrow{top:0;left:50%;margin-left:-5px;border-width:0 5px 5px;border-bottom-color:#000000;} .popover{position:absolute;top:0;left:0;z-index:1010;display:none;width:236px;padding:1px;text-align:left;background-color:#ffffff;-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0, 0, 0, 0.2);-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0, 0, 0, 0.2);-moz-box-shadow:0 5px 10px rgba(0, 0, 0, 0.2);box-shadow:0 5px 10px rgba(0, 0, 0, 0.2);white-space:normal;}.popover.top{margin-top:-10px;} .popover.right{margin-left:10px;} .popover.bottom{margin-top:10px;} .popover.left{margin-left:-10px;} .popover-title{margin:0;padding:8px 14px;font-size:14px;font-weight:normal;line-height:18px;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;-webkit-border-radius:5px 5px 0 0;-moz-border-radius:5px 5px 0 0;border-radius:5px 5px 0 0;} .popover-content{padding:9px 14px;} .popover .arrow,.popover .arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid;} .popover .arrow{border-width:11px;} .popover .arrow:after{border-width:10px;content:"";} .popover.top .arrow{left:50%;margin-left:-11px;border-bottom-width:0;border-top-color:#999;border-top-color:rgba(0, 0, 0, 0.25);bottom:-11px;}.popover.top .arrow:after{bottom:1px;margin-left:-10px;border-bottom-width:0;border-top-color:#ffffff;} .popover.right .arrow{top:50%;left:-11px;margin-top:-11px;border-left-width:0;border-right-color:#999;border-right-color:rgba(0, 0, 0, 0.25);}.popover.right .arrow:after{left:1px;bottom:-10px;border-left-width:0;border-right-color:#ffffff;} .popover.bottom .arrow{left:50%;margin-left:-11px;border-top-width:0;border-bottom-color:#999;border-bottom-color:rgba(0, 0, 0, 0.25);top:-11px;}.popover.bottom .arrow:after{top:1px;margin-left:-10px;border-top-width:0;border-bottom-color:#ffffff;} .popover.left .arrow{top:50%;right:-11px;margin-top:-11px;border-right-width:0;border-left-color:#999;border-left-color:rgba(0, 0, 0, 0.25);}.popover.left .arrow:after{right:1px;border-right-width:0;border-left-color:#ffffff;bottom:-10px;} .modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040;background-color:#000000;}.modal-backdrop.fade{opacity:0;} .modal-backdrop,.modal-backdrop.fade.in{opacity:0.8;filter:alpha(opacity=80);} .modal{position:fixed;top:10%;left:50%;z-index:1050;width:560px;margin-left:-280px;background-color:#ffffff;border:1px solid #999;border:1px solid rgba(0, 0, 0, 0.3);*border:1px solid #999;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;-webkit-box-shadow:0 3px 7px rgba(0, 0, 0, 0.3);-moz-box-shadow:0 3px 7px rgba(0, 0, 0, 0.3);box-shadow:0 3px 7px rgba(0, 0, 0, 0.3);-webkit-background-clip:padding-box;-moz-background-clip:padding-box;background-clip:padding-box;outline:none;}.modal.fade{-webkit-transition:opacity .3s linear, top .3s ease-out;-moz-transition:opacity .3s linear, top .3s ease-out;-o-transition:opacity .3s linear, top .3s ease-out;transition:opacity .3s linear, top .3s ease-out;top:-25%;} .modal.fade.in{top:10%;} .modal-header{padding:9px 15px;border-bottom:1px solid #eee;}.modal-header .close{margin-top:2px;} .modal-header h3{margin:0;line-height:30px;} .modal-body{position:relative;overflow-y:auto;max-height:400px;padding:15px;} .modal-form{margin-bottom:0;} .modal-footer{padding:14px 15px 15px;margin-bottom:0;text-align:right;background-color:#f5f5f5;border-top:1px solid #ddd;-webkit-border-radius:0 0 6px 6px;-moz-border-radius:0 0 6px 6px;border-radius:0 0 6px 6px;-webkit-box-shadow:inset 0 1px 0 #ffffff;-moz-box-shadow:inset 0 1px 0 #ffffff;box-shadow:inset 0 1px 0 #ffffff;*zoom:1;}.modal-footer:before,.modal-footer:after{display:table;content:"";line-height:0;} .modal-footer:after{clear:both;} .modal-footer .btn+.btn{margin-left:5px;margin-bottom:0;} .modal-footer .btn-group .btn+.btn{margin-left:-1px;} .modal-footer .btn-block+.btn-block{margin-left:0;} .dropup,.dropdown{position:relative;} .dropdown-toggle{*margin-bottom:-3px;} .dropdown-toggle:active,.open .dropdown-toggle{outline:0;} .caret{display:inline-block;width:0;height:0;vertical-align:top;border-top:4px solid #000000;border-right:4px solid transparent;border-left:4px solid transparent;content:"";} .dropdown .caret{margin-top:8px;margin-left:2px;} .dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:160px;padding:5px 0;margin:2px 0 0;list-style:none;background-color:#ffffff;border:1px solid #ccc;border:1px solid rgba(0, 0, 0, 0.2);*border-right-width:2px;*border-bottom-width:2px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0, 0, 0, 0.2);-moz-box-shadow:0 5px 10px rgba(0, 0, 0, 0.2);box-shadow:0 5px 10px rgba(0, 0, 0, 0.2);-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box;}.dropdown-menu.pull-right{right:0;left:auto;} .dropdown-menu .divider{*width:100%;height:1px;margin:9px 1px;*margin:-5px 0 5px;overflow:hidden;background-color:#e5e5e5;border-bottom:1px solid #ffffff;} .dropdown-menu li>a{display:block;padding:3px 20px;clear:both;font-weight:normal;line-height:20px;color:#333333;white-space:nowrap;} .dropdown-menu li>a:hover,.dropdown-menu li>a:focus,.dropdown-submenu:hover>a{text-decoration:none;color:#ffffff;background-color:#0081c2;background-image:-moz-linear-gradient(top, #0088cc, #0077b3);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0077b3));background-image:-webkit-linear-gradient(top, #0088cc, #0077b3);background-image:-o-linear-gradient(top, #0088cc, #0077b3);background-image:linear-gradient(to bottom, #0088cc, #0077b3);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff0077b3', GradientType=0);} .dropdown-menu .active>a,.dropdown-menu .active>a:hover{color:#ffffff;text-decoration:none;outline:0;background-color:#0081c2;background-image:-moz-linear-gradient(top, #0088cc, #0077b3);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0077b3));background-image:-webkit-linear-gradient(top, #0088cc, #0077b3);background-image:-o-linear-gradient(top, #0088cc, #0077b3);background-image:linear-gradient(to bottom, #0088cc, #0077b3);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff0077b3', GradientType=0);} .dropdown-menu .disabled>a,.dropdown-menu .disabled>a:hover{color:#999999;} .dropdown-menu .disabled>a:hover{text-decoration:none;background-color:transparent;background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);cursor:default;} .open{*z-index:1000;}.open >.dropdown-menu{display:block;} .pull-right>.dropdown-menu{right:0;left:auto;} .dropup .caret,.navbar-fixed-bottom .dropdown .caret{border-top:0;border-bottom:4px solid #000000;content:"";} .dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:1px;} .dropdown-submenu{position:relative;} .dropdown-submenu>.dropdown-menu{top:0;left:100%;margin-top:-6px;margin-left:-1px;-webkit-border-radius:0 6px 6px 6px;-moz-border-radius:0 6px 6px 6px;border-radius:0 6px 6px 6px;} .dropdown-submenu:hover>.dropdown-menu{display:block;} .dropup .dropdown-submenu>.dropdown-menu{top:auto;bottom:0;margin-top:0;margin-bottom:-2px;-webkit-border-radius:5px 5px 5px 0;-moz-border-radius:5px 5px 5px 0;border-radius:5px 5px 5px 0;} .dropdown-submenu>a:after{display:block;content:" ";float:right;width:0;height:0;border-color:transparent;border-style:solid;border-width:5px 0 5px 5px;border-left-color:#cccccc;margin-top:5px;margin-right:-10px;} .dropdown-submenu:hover>a:after{border-left-color:#ffffff;} .dropdown-submenu.pull-left{float:none;}.dropdown-submenu.pull-left>.dropdown-menu{left:-100%;margin-left:10px;-webkit-border-radius:6px 0 6px 6px;-moz-border-radius:6px 0 6px 6px;border-radius:6px 0 6px 6px;} .dropdown .dropdown-menu .nav-header{padding-left:20px;padding-right:20px;} .typeahead{z-index:1051;margin-top:2px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;} .accordion{margin-bottom:20px;} .accordion-group{margin-bottom:2px;border:1px solid #e5e5e5;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;} .accordion-heading{border-bottom:0;} .accordion-heading .accordion-toggle{display:block;padding:8px 15px;} .accordion-toggle{cursor:pointer;} .accordion-inner{padding:9px 15px;border-top:1px solid #e5e5e5;} .carousel{position:relative;margin-bottom:20px;line-height:1;} .carousel-inner{overflow:hidden;width:100%;position:relative;} .carousel-inner>.item{display:none;position:relative;-webkit-transition:0.6s ease-in-out left;-moz-transition:0.6s ease-in-out left;-o-transition:0.6s ease-in-out left;transition:0.6s ease-in-out left;} .carousel-inner>.item>img{display:block;line-height:1;} .carousel-inner>.active,.carousel-inner>.next,.carousel-inner>.prev{display:block;} .carousel-inner>.active{left:0;} .carousel-inner>.next,.carousel-inner>.prev{position:absolute;top:0;width:100%;} .carousel-inner>.next{left:100%;} .carousel-inner>.prev{left:-100%;} .carousel-inner>.next.left,.carousel-inner>.prev.right{left:0;} .carousel-inner>.active.left{left:-100%;} .carousel-inner>.active.right{left:100%;} .carousel-control{position:absolute;top:40%;left:15px;width:40px;height:40px;margin-top:-20px;font-size:60px;font-weight:100;line-height:30px;color:#ffffff;text-align:center;background:#222222;border:3px solid #ffffff;-webkit-border-radius:23px;-moz-border-radius:23px;border-radius:23px;opacity:0.5;filter:alpha(opacity=50);}.carousel-control.right{left:auto;right:15px;} .carousel-control:hover{color:#ffffff;text-decoration:none;opacity:0.9;filter:alpha(opacity=90);} .carousel-caption{position:absolute;left:0;right:0;bottom:0;padding:15px;background:#333333;background:rgba(0, 0, 0, 0.75);} .carousel-caption h4,.carousel-caption p{color:#ffffff;line-height:20px;} .carousel-caption h4{margin:0 0 5px;} .carousel-caption p{margin-bottom:0;} .well{min-height:20px;padding:19px;margin-bottom:20px;background-color:#f5f5f5;border:1px solid #e3e3e3;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.05);-moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.05);box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.05);}.well blockquote{border-color:#ddd;border-color:rgba(0, 0, 0, 0.15);} .well-large{padding:24px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;} .well-small{padding:9px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;} .close{float:right;font-size:20px;font-weight:bold;line-height:20px;color:#000000;text-shadow:0 1px 0 #ffffff;opacity:0.2;filter:alpha(opacity=20);}.close:hover{color:#000000;text-decoration:none;cursor:pointer;opacity:0.4;filter:alpha(opacity=40);} button.close{padding:0;cursor:pointer;background:transparent;border:0;-webkit-appearance:none;} .pull-right{float:right;} .pull-left{float:left;} .hide{display:none;} .show{display:block;} .invisible{visibility:hidden;} .affix{position:fixed;} .fade{opacity:0;-webkit-transition:opacity 0.15s linear;-moz-transition:opacity 0.15s linear;-o-transition:opacity 0.15s linear;transition:opacity 0.15s linear;}.fade.in{opacity:1;} .collapse{position:relative;height:0;overflow:hidden;-webkit-transition:height 0.35s ease;-moz-transition:height 0.35s ease;-o-transition:height 0.35s ease;transition:height 0.35s ease;}.collapse.in{height:auto;} .hidden{display:none;visibility:hidden;} .visible-phone{display:none !important;} .visible-tablet{display:none !important;} .hidden-desktop{display:none !important;} .visible-desktop{display:inherit !important;} @media (min-width:768px) and (max-width:979px){.hidden-desktop{display:inherit !important;} .visible-desktop{display:none !important ;} .visible-tablet{display:inherit !important;} .hidden-tablet{display:none !important;}}@media (max-width:767px){.hidden-desktop{display:inherit !important;} .visible-desktop{display:none !important;} .visible-phone{display:inherit !important;} .hidden-phone{display:none !important;}}@media (max-width:767px){body{padding-left:20px;padding-right:20px;} .navbar-fixed-top,.navbar-fixed-bottom,.navbar-static-top{margin-left:-20px;margin-right:-20px;} .container-fluid{padding:0;} .dl-horizontal dt{float:none;clear:none;width:auto;text-align:left;} .dl-horizontal dd{margin-left:0;} .container{width:auto;} .row-fluid{width:100%;} .row,.thumbnails{margin-left:0;} .thumbnails>li{float:none;margin-left:0;} [class*="span"],.uneditable-input[class*="span"],.row-fluid [class*="span"]{float:none;display:block;width:100%;margin-left:0;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;} .span12,.row-fluid .span12{width:100%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;} .row-fluid [class*="offset"]:first-child{margin-left:0;} .input-large,.input-xlarge,.input-xxlarge,input[class*="span"],select[class*="span"],textarea[class*="span"],.uneditable-input{display:block;width:100%;min-height:30px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;} .input-prepend input,.input-append input,.input-prepend input[class*="span"],.input-append input[class*="span"]{display:inline-block;width:auto;} .controls-row [class*="span"]+[class*="span"]{margin-left:0;} .modal{position:fixed;top:20px;left:20px;right:20px;width:auto;margin:0;}.modal.fade{top:-100px;} .modal.fade.in{top:20px;}}@media (max-width:480px){.nav-collapse{-webkit-transform:translate3d(0, 0, 0);} .page-header h1 small{display:block;line-height:20px;} input[type="checkbox"],input[type="radio"]{border:1px solid #ccc;} .form-horizontal .control-label{float:none;width:auto;padding-top:0;text-align:left;} .form-horizontal .controls{margin-left:0;} .form-horizontal .control-list{padding-top:0;} .form-horizontal .form-actions{padding-left:10px;padding-right:10px;} .media .pull-left,.media .pull-right{float:none;display:block;margin-bottom:10px;} .media-object{margin-right:0;margin-left:0;} .modal{top:10px;left:10px;right:10px;} .modal-header .close{padding:10px;margin:-10px;} .carousel-caption{position:static;}}@media (min-width:768px) and (max-width:979px){.row{margin-left:-20px;*zoom:1;}.row:before,.row:after{display:table;content:"";line-height:0;} .row:after{clear:both;} [class*="span"]{float:left;min-height:1px;margin-left:20px;} .container,.navbar-static-top .container,.navbar-fixed-top .container,.navbar-fixed-bottom .container{width:724px;} .span12{width:724px;} .span11{width:662px;} .span10{width:600px;} .span9{width:538px;} .span8{width:476px;} .span7{width:414px;} .span6{width:352px;} .span5{width:290px;} .span4{width:228px;} .span3{width:166px;} .span2{width:104px;} .span1{width:42px;} .offset12{margin-left:764px;} .offset11{margin-left:702px;} .offset10{margin-left:640px;} .offset9{margin-left:578px;} .offset8{margin-left:516px;} .offset7{margin-left:454px;} .offset6{margin-left:392px;} .offset5{margin-left:330px;} .offset4{margin-left:268px;} .offset3{margin-left:206px;} .offset2{margin-left:144px;} .offset1{margin-left:82px;} .row-fluid{width:100%;*zoom:1;}.row-fluid:before,.row-fluid:after{display:table;content:"";line-height:0;} .row-fluid:after{clear:both;} .row-fluid [class*="span"]{display:block;width:100%;min-height:30px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;float:left;margin-left:2.7624309392265194%;*margin-left:2.709239449864817%;} .row-fluid [class*="span"]:first-child{margin-left:0;} .row-fluid .controls-row [class*="span"]+[class*="span"]{margin-left:2.7624309392265194%;} .row-fluid .span12{width:100%;*width:99.94680851063829%;} .row-fluid .span11{width:91.43646408839778%;*width:91.38327259903608%;} .row-fluid .span10{width:82.87292817679558%;*width:82.81973668743387%;} .row-fluid .span9{width:74.30939226519337%;*width:74.25620077583166%;} .row-fluid .span8{width:65.74585635359117%;*width:65.69266486422946%;} .row-fluid .span7{width:57.18232044198895%;*width:57.12912895262725%;} .row-fluid .span6{width:48.61878453038674%;*width:48.56559304102504%;} .row-fluid .span5{width:40.05524861878453%;*width:40.00205712942283%;} .row-fluid .span4{width:31.491712707182323%;*width:31.43852121782062%;} .row-fluid .span3{width:22.92817679558011%;*width:22.87498530621841%;} .row-fluid .span2{width:14.3646408839779%;*width:14.311449394616199%;} .row-fluid .span1{width:5.801104972375691%;*width:5.747913483013988%;} .row-fluid .offset12{margin-left:105.52486187845304%;*margin-left:105.41847889972962%;} .row-fluid .offset12:first-child{margin-left:102.76243093922652%;*margin-left:102.6560479605031%;} .row-fluid .offset11{margin-left:96.96132596685082%;*margin-left:96.8549429881274%;} .row-fluid .offset11:first-child{margin-left:94.1988950276243%;*margin-left:94.09251204890089%;} .row-fluid .offset10{margin-left:88.39779005524862%;*margin-left:88.2914070765252%;} .row-fluid .offset10:first-child{margin-left:85.6353591160221%;*margin-left:85.52897613729868%;} .row-fluid .offset9{margin-left:79.8342541436464%;*margin-left:79.72787116492299%;} .row-fluid .offset9:first-child{margin-left:77.07182320441989%;*margin-left:76.96544022569647%;} .row-fluid .offset8{margin-left:71.2707182320442%;*margin-left:71.16433525332079%;} .row-fluid .offset8:first-child{margin-left:68.50828729281768%;*margin-left:68.40190431409427%;} .row-fluid .offset7{margin-left:62.70718232044199%;*margin-left:62.600799341718584%;} .row-fluid .offset7:first-child{margin-left:59.94475138121547%;*margin-left:59.838368402492065%;} .row-fluid .offset6{margin-left:54.14364640883978%;*margin-left:54.037263430116376%;} .row-fluid .offset6:first-child{margin-left:51.38121546961326%;*margin-left:51.27483249088986%;} .row-fluid .offset5{margin-left:45.58011049723757%;*margin-left:45.47372751851417%;} .row-fluid .offset5:first-child{margin-left:42.81767955801105%;*margin-left:42.71129657928765%;} .row-fluid .offset4{margin-left:37.01657458563536%;*margin-left:36.91019160691196%;} .row-fluid .offset4:first-child{margin-left:34.25414364640884%;*margin-left:34.14776066768544%;} .row-fluid .offset3{margin-left:28.45303867403315%;*margin-left:28.346655695309746%;} .row-fluid .offset3:first-child{margin-left:25.69060773480663%;*margin-left:25.584224756083227%;} .row-fluid .offset2{margin-left:19.88950276243094%;*margin-left:19.783119783707537%;} .row-fluid .offset2:first-child{margin-left:17.12707182320442%;*margin-left:17.02068884448102%;} .row-fluid .offset1{margin-left:11.32596685082873%;*margin-left:11.219583872105325%;} .row-fluid .offset1:first-child{margin-left:8.56353591160221%;*margin-left:8.457152932878806%;} input,textarea,.uneditable-input{margin-left:0;} .controls-row [class*="span"]+[class*="span"]{margin-left:20px;} input.span12, textarea.span12, .uneditable-input.span12{width:710px;} input.span11, textarea.span11, .uneditable-input.span11{width:648px;} input.span10, textarea.span10, .uneditable-input.span10{width:586px;} input.span9, textarea.span9, .uneditable-input.span9{width:524px;} input.span8, textarea.span8, .uneditable-input.span8{width:462px;} input.span7, textarea.span7, .uneditable-input.span7{width:400px;} input.span6, textarea.span6, .uneditable-input.span6{width:338px;} input.span5, textarea.span5, .uneditable-input.span5{width:276px;} input.span4, textarea.span4, .uneditable-input.span4{width:214px;} input.span3, textarea.span3, .uneditable-input.span3{width:152px;} input.span2, textarea.span2, .uneditable-input.span2{width:90px;} input.span1, textarea.span1, .uneditable-input.span1{width:28px;}}@media (min-width:1200px){.row{margin-left:-30px;*zoom:1;}.row:before,.row:after{display:table;content:"";line-height:0;} .row:after{clear:both;} [class*="span"]{float:left;min-height:1px;margin-left:30px;} .container,.navbar-static-top .container,.navbar-fixed-top .container,.navbar-fixed-bottom .container{width:1170px;} .span12{width:1170px;} .span11{width:1070px;} .span10{width:970px;} .span9{width:870px;} .span8{width:770px;} .span7{width:670px;} .span6{width:570px;} .span5{width:470px;} .span4{width:370px;} .span3{width:270px;} .span2{width:170px;} .span1{width:70px;} .offset12{margin-left:1230px;} .offset11{margin-left:1130px;} .offset10{margin-left:1030px;} .offset9{margin-left:930px;} .offset8{margin-left:830px;} .offset7{margin-left:730px;} .offset6{margin-left:630px;} .offset5{margin-left:530px;} .offset4{margin-left:430px;} .offset3{margin-left:330px;} .offset2{margin-left:230px;} .offset1{margin-left:130px;} .row-fluid{width:100%;*zoom:1;}.row-fluid:before,.row-fluid:after{display:table;content:"";line-height:0;} .row-fluid:after{clear:both;} .row-fluid [class*="span"]{display:block;width:100%;min-height:30px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;float:left;margin-left:2.564102564102564%;*margin-left:2.5109110747408616%;} .row-fluid [class*="span"]:first-child{margin-left:0;} .row-fluid .controls-row [class*="span"]+[class*="span"]{margin-left:2.564102564102564%;} .row-fluid .span12{width:100%;*width:99.94680851063829%;} .row-fluid .span11{width:91.45299145299145%;*width:91.39979996362975%;} .row-fluid .span10{width:82.90598290598291%;*width:82.8527914166212%;} .row-fluid .span9{width:74.35897435897436%;*width:74.30578286961266%;} .row-fluid .span8{width:65.81196581196582%;*width:65.75877432260411%;} .row-fluid .span7{width:57.26495726495726%;*width:57.21176577559556%;} .row-fluid .span6{width:48.717948717948715%;*width:48.664757228587014%;} .row-fluid .span5{width:40.17094017094017%;*width:40.11774868157847%;} .row-fluid .span4{width:31.623931623931625%;*width:31.570740134569924%;} .row-fluid .span3{width:23.076923076923077%;*width:23.023731587561375%;} .row-fluid .span2{width:14.52991452991453%;*width:14.476723040552828%;} .row-fluid .span1{width:5.982905982905983%;*width:5.929714493544281%;} .row-fluid .offset12{margin-left:105.12820512820512%;*margin-left:105.02182214948171%;} .row-fluid .offset12:first-child{margin-left:102.56410256410257%;*margin-left:102.45771958537915%;} .row-fluid .offset11{margin-left:96.58119658119658%;*margin-left:96.47481360247316%;} .row-fluid .offset11:first-child{margin-left:94.01709401709402%;*margin-left:93.91071103837061%;} .row-fluid .offset10{margin-left:88.03418803418803%;*margin-left:87.92780505546462%;} .row-fluid .offset10:first-child{margin-left:85.47008547008548%;*margin-left:85.36370249136206%;} .row-fluid .offset9{margin-left:79.48717948717949%;*margin-left:79.38079650845607%;} .row-fluid .offset9:first-child{margin-left:76.92307692307693%;*margin-left:76.81669394435352%;} .row-fluid .offset8{margin-left:70.94017094017094%;*margin-left:70.83378796144753%;} .row-fluid .offset8:first-child{margin-left:68.37606837606839%;*margin-left:68.26968539734497%;} .row-fluid .offset7{margin-left:62.393162393162385%;*margin-left:62.28677941443899%;} .row-fluid .offset7:first-child{margin-left:59.82905982905982%;*margin-left:59.72267685033642%;} .row-fluid .offset6{margin-left:53.84615384615384%;*margin-left:53.739770867430444%;} .row-fluid .offset6:first-child{margin-left:51.28205128205128%;*margin-left:51.175668303327875%;} .row-fluid .offset5{margin-left:45.299145299145295%;*margin-left:45.1927623204219%;} .row-fluid .offset5:first-child{margin-left:42.73504273504273%;*margin-left:42.62865975631933%;} .row-fluid .offset4{margin-left:36.75213675213675%;*margin-left:36.645753773413354%;} .row-fluid .offset4:first-child{margin-left:34.18803418803419%;*margin-left:34.081651209310785%;} .row-fluid .offset3{margin-left:28.205128205128204%;*margin-left:28.0987452264048%;} .row-fluid .offset3:first-child{margin-left:25.641025641025642%;*margin-left:25.53464266230224%;} .row-fluid .offset2{margin-left:19.65811965811966%;*margin-left:19.551736679396257%;} .row-fluid .offset2:first-child{margin-left:17.094017094017094%;*margin-left:16.98763411529369%;} .row-fluid .offset1{margin-left:11.11111111111111%;*margin-left:11.004728132387708%;} .row-fluid .offset1:first-child{margin-left:8.547008547008547%;*margin-left:8.440625568285142%;} input,textarea,.uneditable-input{margin-left:0;} .controls-row [class*="span"]+[class*="span"]{margin-left:30px;} input.span12, textarea.span12, .uneditable-input.span12{width:1156px;} input.span11, textarea.span11, .uneditable-input.span11{width:1056px;} input.span10, textarea.span10, .uneditable-input.span10{width:956px;} input.span9, textarea.span9, .uneditable-input.span9{width:856px;} input.span8, textarea.span8, .uneditable-input.span8{width:756px;} input.span7, textarea.span7, .uneditable-input.span7{width:656px;} input.span6, textarea.span6, .uneditable-input.span6{width:556px;} input.span5, textarea.span5, .uneditable-input.span5{width:456px;} input.span4, textarea.span4, .uneditable-input.span4{width:356px;} input.span3, textarea.span3, .uneditable-input.span3{width:256px;} input.span2, textarea.span2, .uneditable-input.span2{width:156px;} input.span1, textarea.span1, .uneditable-input.span1{width:56px;} .thumbnails{margin-left:-30px;} .thumbnails>li{margin-left:30px;} .row-fluid .thumbnails{margin-left:0;}}@media (max-width:979px){body{padding-top:0;} .navbar-fixed-top,.navbar-fixed-bottom{position:static;} .navbar-fixed-top{margin-bottom:20px;} .navbar-fixed-bottom{margin-top:20px;} .navbar-fixed-top .navbar-inner,.navbar-fixed-bottom .navbar-inner{padding:5px;} .navbar .container{width:auto;padding:0;} .navbar .brand{padding-left:10px;padding-right:10px;margin:0 0 0 -5px;} .nav-collapse{clear:both;} .nav-collapse .nav{float:none;margin:0 0 10px;} .nav-collapse .nav>li{float:none;} .nav-collapse .nav>li>a{margin-bottom:2px;} .nav-collapse .nav>.divider-vertical{display:none;} .nav-collapse .nav .nav-header{color:#777777;text-shadow:none;} .nav-collapse .nav>li>a,.nav-collapse .dropdown-menu a{padding:9px 15px;font-weight:bold;color:#777777;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;} .nav-collapse .btn{padding:4px 10px 4px;font-weight:normal;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;} .nav-collapse .dropdown-menu li+li a{margin-bottom:2px;} .nav-collapse .nav>li>a:hover,.nav-collapse .dropdown-menu a:hover{background-color:#f2f2f2;} .navbar-inverse .nav-collapse .nav>li>a,.navbar-inverse .nav-collapse .dropdown-menu a{color:#999999;} .navbar-inverse .nav-collapse .nav>li>a:hover,.navbar-inverse .nav-collapse .dropdown-menu a:hover{background-color:#111111;} .nav-collapse.in .btn-group{margin-top:5px;padding:0;} .nav-collapse .dropdown-menu{position:static;top:auto;left:auto;float:none;display:none;max-width:none;margin:0 15px;padding:0;background-color:transparent;border:none;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;} .nav-collapse .open>.dropdown-menu{display:block;} .nav-collapse .dropdown-menu:before,.nav-collapse .dropdown-menu:after{display:none;} .nav-collapse .dropdown-menu .divider{display:none;} .nav-collapse .nav>li>.dropdown-menu:before,.nav-collapse .nav>li>.dropdown-menu:after{display:none;} .nav-collapse .navbar-form,.nav-collapse .navbar-search{float:none;padding:10px 15px;margin:10px 0;border-top:1px solid #f2f2f2;border-bottom:1px solid #f2f2f2;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.1);-moz-box-shadow:inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.1);box-shadow:inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.1);} .navbar-inverse .nav-collapse .navbar-form,.navbar-inverse .nav-collapse .navbar-search{border-top-color:#111111;border-bottom-color:#111111;} .navbar .nav-collapse .nav.pull-right{float:none;margin-left:0;} .nav-collapse,.nav-collapse.collapse{overflow:hidden;height:0;} .navbar .btn-navbar{display:block;} .navbar-static .navbar-inner{padding-left:10px;padding-right:10px;}}@media (min-width:980px){.nav-collapse.collapse{height:auto !important;overflow:visible !important;}} |
| URL | http://zero.webappsecurity.com/resources/css/font-awesome.css |
| Method | GET |
| Parameter | X-Content-Type-Options |
| Attack | |
| Evidence | |
| Request Header - size: 285 bytes. |
GET http://zero.webappsecurity.com/resources/css/font-awesome.css HTTP/1.1
Host: zero.webappsecurity.com User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0 Pragma: no-cache Cache-Control: no-cache Referer: http://zero.webappsecurity.com |
| Request Body - size: 0 bytes. |
|
| Response Header - size: 347 bytes. |
HTTP/1.1 200 OK
Date: Mon, 14 Mar 2022 07:13:41 GMT Server: Apache-Coyote/1.1 Access-Control-Allow-Origin: * Accept-Ranges: bytes ETag: W/"21752-1360580252000" Last-Modified: Mon, 11 Feb 2013 10:57:32 GMT Cache-Control: max-age=2678400 Expires: Thu, 14 Apr 2022 07:13:42 GMT Content-Type: text/css;charset=UTF-8 Content-Length: 21752 |
| Response Body - size: 21,752 bytes. |
/*!
* Font Awesome 3.0.2 * the iconic font designed for use with Twitter Bootstrap * ------------------------------------------------------- * The full suite of pictographic icons, examples, and documentation * can be found at: http://fortawesome.github.com/Font-Awesome/ * * License * ------------------------------------------------------- * - The Font Awesome font is licensed under the SIL Open Font License - http://scripts.sil.org/OFL * - Font Awesome CSS, LESS, and SASS files are licensed under the MIT License - * http://opensource.org/licenses/mit-license.html * - The Font Awesome pictograms are licensed under the CC BY 3.0 License - http://creativecommons.org/licenses/by/3.0/ * - Attribution is no longer required in Font Awesome 3.0, but much appreciated: * "Font Awesome by Dave Gandy - http://fortawesome.github.com/Font-Awesome" * Contact * ------------------------------------------------------- * Email: dave@davegandy.com * Twitter: http://twitter.com/fortaweso_me * Work: Lead Product Designer @ http://kyruus.com */ @font-face { font-family: 'FontAwesome'; src: url('../font/fontawesome-webfont.eot?v=3.0.1'); src: url('../font/fontawesome-webfont.eot?#iefix&v=3.0.1') format('embedded-opentype'), url('../font/fontawesome-webfont.woff?v=3.0.1') format('woff'), url('../font/fontawesome-webfont.ttf?v=3.0.1') format('truetype'); font-weight: normal; font-style: normal; } /* Font Awesome styles ------------------------------------------------------- */ [class^="icon-"], [class*=" icon-"] { font-family: FontAwesome; font-weight: normal; font-style: normal; text-decoration: inherit; -webkit-font-smoothing: antialiased; /* sprites.less reset */ display: inline; width: auto; height: auto; line-height: normal; vertical-align: baseline; background-image: none; background-position: 0% 0%; background-repeat: repeat; margin-top: 0; } /* more sprites.less reset */ .icon-white, .nav-pills > .active > a > [class^="icon-"], .nav-pills > .active > a > [class*=" icon-"], .nav-list > .active > a > [class^="icon-"], .nav-list > .active > a > [class*=" icon-"], .navbar-inverse .nav > .active > a > [class^="icon-"], .navbar-inverse .nav > .active > a > [class*=" icon-"], .dropdown-menu > li > a:hover > [class^="icon-"], .dropdown-menu > li > a:hover > [class*=" icon-"], .dropdown-menu > .active > a > [class^="icon-"], .dropdown-menu > .active > a > [class*=" icon-"], .dropdown-submenu:hover > a > [class^="icon-"], .dropdown-submenu:hover > a > [class*=" icon-"] { background-image: none; } [class^="icon-"]:before, [class*=" icon-"]:before { text-decoration: inherit; display: inline-block; speak: none; } /* makes sure icons active on rollover in links */ a [class^="icon-"], a [class*=" icon-"] { display: inline-block; } /* makes the font 33% larger relative to the icon container */ .icon-large:before { vertical-align: -10%; font-size: 1.3333333333333333em; } .btn [class^="icon-"], .nav [class^="icon-"], .btn [class*=" icon-"], .nav [class*=" icon-"] { display: inline; /* keeps button heights with and without icons the same */ } .btn [class^="icon-"].icon-large, .nav [class^="icon-"].icon-large, .btn [class*=" icon-"].icon-large, .nav [class*=" icon-"].icon-large { line-height: .9em; } .btn [class^="icon-"].icon-spin, .nav [class^="icon-"].icon-spin, .btn [class*=" icon-"].icon-spin, .nav [class*=" icon-"].icon-spin { display: inline-block; } .nav-tabs [class^="icon-"], .nav-pills [class^="icon-"], .nav-tabs [class*=" icon-"], .nav-pills [class*=" icon-"] { /* keeps button heights with and without icons the same */ } .nav-tabs [class^="icon-"], .nav-pills [class^="icon-"], .nav-tabs [class*=" icon-"], .nav-pills [class*=" icon-"], .nav-tabs [class^="icon-"].icon-large, .nav-pills [class^="icon-"].icon-large, .nav-tabs [class*=" icon-"].icon-large, .nav-pills [class*=" icon-"].icon-large { line-height: .9em; } li [class^="icon-"], .nav li [class^="icon-"], li [class*=" icon-"], .nav li [class*=" icon-"] { display: inline-block; width: 1.25em; text-align: center; } li [class^="icon-"].icon-large, .nav li [class^="icon-"].icon-large, li [class*=" icon-"].icon-large, .nav li [class*=" icon-"].icon-large { /* increased font size for icon-large */ width: 1.5625em; } ul.icons { list-style-type: none; text-indent: -0.75em; } ul.icons li [class^="icon-"], ul.icons li [class*=" icon-"] { width: .75em; } .icon-muted { color: #eeeeee; } .icon-border { border: solid 1px #eeeeee; padding: .2em .25em .15em; -webkit-border-radius: 3px; -moz-border-radius: 3px; border-radius: 3px; } .icon-2x { font-size: 2em; } .icon-2x.icon-border { border-width: 2px; -webkit-border-radius: 4px; -moz-border-radius: 4px; border-radius: 4px; } .icon-3x { font-size: 3em; } .icon-3x.icon-border { border-width: 3px; -webkit-border-radius: 5px; -moz-border-radius: 5px; border-radius: 5px; } .icon-4x { font-size: 4em; } .icon-4x.icon-border { border-width: 4px; -webkit-border-radius: 6px; -moz-border-radius: 6px; border-radius: 6px; } .pull-right { float: right; } .pull-left { float: left; } [class^="icon-"].pull-left, [class*=" icon-"].pull-left { margin-right: .3em; } [class^="icon-"].pull-right, [class*=" icon-"].pull-right { margin-left: .3em; } .btn [class^="icon-"].pull-left.icon-2x, .btn [class*=" icon-"].pull-left.icon-2x, .btn [class^="icon-"].pull-right.icon-2x, .btn [class*=" icon-"].pull-right.icon-2x { margin-top: .18em; } .btn [class^="icon-"].icon-spin.icon-large, .btn [class*=" icon-"].icon-spin.icon-large { line-height: .8em; } .btn.btn-small [class^="icon-"].pull-left.icon-2x, .btn.btn-small [class*=" icon-"].pull-left.icon-2x, .btn.btn-small [class^="icon-"].pull-right.icon-2x, .btn.btn-small [class*=" icon-"].pull-right.icon-2x { margin-top: .25em; } .btn.btn-large [class^="icon-"], .btn.btn-large [class*=" icon-"] { margin-top: 0; } .btn.btn-large [class^="icon-"].pull-left.icon-2x, .btn.btn-large [class*=" icon-"].pull-left.icon-2x, .btn.btn-large [class^="icon-"].pull-right.icon-2x, .btn.btn-large [class*=" icon-"].pull-right.icon-2x { margin-top: .05em; } .btn.btn-large [class^="icon-"].pull-left.icon-2x, .btn.btn-large [class*=" icon-"].pull-left.icon-2x { margin-right: .2em; } .btn.btn-large [class^="icon-"].pull-right.icon-2x, .btn.btn-large [class*=" icon-"].pull-right.icon-2x { margin-left: .2em; } .icon-spin { display: inline-block; -moz-animation: spin 2s infinite linear; -o-animation: spin 2s infinite linear; -webkit-animation: spin 2s infinite linear; animation: spin 2s infinite linear; } @-moz-keyframes spin { 0% { -moz-transform: rotate(0deg); } 100% { -moz-transform: rotate(359deg); } } @-webkit-keyframes spin { 0% { -webkit-transform: rotate(0deg); } 100% { -webkit-transform: rotate(359deg); } } @-o-keyframes spin { 0% { -o-transform: rotate(0deg); } 100% { -o-transform: rotate(359deg); } } @-ms-keyframes spin { 0% { -ms-transform: rotate(0deg); } 100% { -ms-transform: rotate(359deg); } } @keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(359deg); } } @-moz-document url-prefix() { .icon-spin { height: .9em; } .btn .icon-spin { height: auto; } .icon-spin.icon-large { height: 1.25em; } .btn .icon-spin.icon-large { height: .75em; } } /* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen readers do not read off random characters that represent icons */ .icon-glass:before { content: "\f000"; } .icon-music:before { content: "\f001"; } .icon-search:before { content: "\f002"; } .icon-envelope:before { content: "\f003"; } .icon-heart:before { content: "\f004"; } .icon-star:before { content: "\f005"; } .icon-star-empty:before { content: "\f006"; } .icon-user:before { content: "\f007"; } .icon-film:before { content: "\f008"; } .icon-th-large:before { content: "\f009"; } .icon-th:before { content: "\f00a"; } .icon-th-list:before { content: "\f00b"; } .icon-ok:before { content: "\f00c"; } .icon-remove:before { content: "\f00d"; } .icon-zoom-in:before { content: "\f00e"; } .icon-zoom-out:before { content: "\f010"; } .icon-off:before { content: "\f011"; } .icon-signal:before { content: "\f012"; } .icon-cog:before { content: "\f013"; } .icon-trash:before { content: "\f014"; } .icon-home:before { content: "\f015"; } .icon-file:before { content: "\f016"; } .icon-time:before { content: "\f017"; } .icon-road:before { content: "\f018"; } .icon-download-alt:before { content: "\f019"; } .icon-download:before { content: "\f01a"; } .icon-upload:before { content: "\f01b"; } .icon-inbox:before { content: "\f01c"; } .icon-play-circle:before { content: "\f01d"; } .icon-repeat:before { content: "\f01e"; } /* \f020 doesn't work in Safari. all shifted one down */ .icon-refresh:before { content: "\f021"; } .icon-list-alt:before { content: "\f022"; } .icon-lock:before { content: "\f023"; } .icon-flag:before { content: "\f024"; } .icon-headphones:before { content: "\f025"; } .icon-volume-off:before { content: "\f026"; } .icon-volume-down:before { content: "\f027"; } .icon-volume-up:before { content: "\f028"; } .icon-qrcode:before { content: "\f029"; } .icon-barcode:before { content: "\f02a"; } .icon-tag:before { content: "\f02b"; } .icon-tags:before { content: "\f02c"; } .icon-book:before { content: "\f02d"; } .icon-bookmark:before { content: "\f02e"; } .icon-print:before { content: "\f02f"; } .icon-camera:before { content: "\f030"; } .icon-font:before { content: "\f031"; } .icon-bold:before { content: "\f032"; } .icon-italic:before { content: "\f033"; } .icon-text-height:before { content: "\f034"; } .icon-text-width:before { content: "\f035"; } .icon-align-left:before { content: "\f036"; } .icon-align-center:before { content: "\f037"; } .icon-align-right:before { content: "\f038"; } .icon-align-justify:before { content: "\f039"; } .icon-list:before { content: "\f03a"; } .icon-indent-left:before { content: "\f03b"; } .icon-indent-right:before { content: "\f03c"; } .icon-facetime-video:before { content: "\f03d"; } .icon-picture:before { content: "\f03e"; } .icon-pencil:before { content: "\f040"; } .icon-map-marker:before { content: "\f041"; } .icon-adjust:before { content: "\f042"; } .icon-tint:before { content: "\f043"; } .icon-edit:before { content: "\f044"; } .icon-share:before { content: "\f045"; } .icon-check:before { content: "\f046"; } .icon-move:before { content: "\f047"; } .icon-step-backward:before { content: "\f048"; } .icon-fast-backward:before { content: "\f049"; } .icon-backward:before { content: "\f04a"; } .icon-play:before { content: "\f04b"; } .icon-pause:before { content: "\f04c"; } .icon-stop:before { content: "\f04d"; } .icon-forward:before { content: "\f04e"; } .icon-fast-forward:before { content: "\f050"; } .icon-step-forward:before { content: "\f051"; } .icon-eject:before { content: "\f052"; } .icon-chevron-left:before { content: "\f053"; } .icon-chevron-right:before { content: "\f054"; } .icon-plus-sign:before { content: "\f055"; } .icon-minus-sign:before { content: "\f056"; } .icon-remove-sign:before { content: "\f057"; } .icon-ok-sign:before { content: "\f058"; } .icon-question-sign:before { content: "\f059"; } .icon-info-sign:before { content: "\f05a"; } .icon-screenshot:before { content: "\f05b"; } .icon-remove-circle:before { content: "\f05c"; } .icon-ok-circle:before { content: "\f05d"; } .icon-ban-circle:before { content: "\f05e"; } .icon-arrow-left:before { content: "\f060"; } .icon-arrow-right:before { content: "\f061"; } .icon-arrow-up:before { content: "\f062"; } .icon-arrow-down:before { content: "\f063"; } .icon-share-alt:before { content: "\f064"; } .icon-resize-full:before { content: "\f065"; } .icon-resize-small:before { content: "\f066"; } .icon-plus:before { content: "\f067"; } .icon-minus:before { content: "\f068"; } .icon-asterisk:before { content: "\f069"; } .icon-exclamation-sign:before { content: "\f06a"; } .icon-gift:before { content: "\f06b"; } .icon-leaf:before { content: "\f06c"; } .icon-fire:before { content: "\f06d"; } .icon-eye-open:before { content: "\f06e"; } .icon-eye-close:before { content: "\f070"; } .icon-warning-sign:before { content: "\f071"; } .icon-plane:before { content: "\f072"; } .icon-calendar:before { content: "\f073"; } .icon-random:before { content: "\f074"; } .icon-comment:before { content: "\f075"; } .icon-magnet:before { content: "\f076"; } .icon-chevron-up:before { content: "\f077"; } .icon-chevron-down:before { content: "\f078"; } .icon-retweet:before { content: "\f079"; } .icon-shopping-cart:before { content: "\f07a"; } .icon-folder-close:before { content: "\f07b"; } .icon-folder-open:before { content: "\f07c"; } .icon-resize-vertical:before { content: "\f07d"; } .icon-resize-horizontal:before { content: "\f07e"; } .icon-bar-chart:before { content: "\f080"; } .icon-twitter-sign:before { content: "\f081"; } .icon-facebook-sign:before { content: "\f082"; } .icon-camera-retro:before { content: "\f083"; } .icon-key:before { content: "\f084"; } .icon-cogs:before { content: "\f085"; } .icon-comments:before { content: "\f086"; } .icon-thumbs-up:before { content: "\f087"; } .icon-thumbs-down:before { content: "\f088"; } .icon-star-half:before { content: "\f089"; } .icon-heart-empty:before { content: "\f08a"; } .icon-signout:before { content: "\f08b"; } .icon-linkedin-sign:before { content: "\f08c"; } .icon-pushpin:before { content: "\f08d"; } .icon-external-link:before { content: "\f08e"; } .icon-signin:before { content: "\f090"; } .icon-trophy:before { content: "\f091"; } .icon-github-sign:before { content: "\f092"; } .icon-upload-alt:before { content: "\f093"; } .icon-lemon:before { content: "\f094"; } .icon-phone:before { content: "\f095"; } .icon-check-empty:before { content: "\f096"; } .icon-bookmark-empty:before { content: "\f097"; } .icon-phone-sign:before { content: "\f098"; } .icon-twitter:before { content: "\f099"; } .icon-facebook:before { content: "\f09a"; } .icon-github:before { content: "\f09b"; } .icon-unlock:before { content: "\f09c"; } .icon-credit-card:before { content: "\f09d"; } .icon-rss:before { content: "\f09e"; } .icon-hdd:before { content: "\f0a0"; } .icon-bullhorn:before { content: "\f0a1"; } .icon-bell:before { content: "\f0a2"; } .icon-certificate:before { content: "\f0a3"; } .icon-hand-right:before { content: "\f0a4"; } .icon-hand-left:before { content: "\f0a5"; } .icon-hand-up:before { content: "\f0a6"; } .icon-hand-down:before { content: "\f0a7"; } .icon-circle-arrow-left:before { content: "\f0a8"; } .icon-circle-arrow-right:before { content: "\f0a9"; } .icon-circle-arrow-up:before { content: "\f0aa"; } .icon-circle-arrow-down:before { content: "\f0ab"; } .icon-globe:before { content: "\f0ac"; } .icon-wrench:before { content: "\f0ad"; } .icon-tasks:before { content: "\f0ae"; } .icon-filter:before { content: "\f0b0"; } .icon-briefcase:before { content: "\f0b1"; } .icon-fullscreen:before { content: "\f0b2"; } .icon-group:before { content: "\f0c0"; } .icon-link:before { content: "\f0c1"; } .icon-cloud:before { content: "\f0c2"; } .icon-beaker:before { content: "\f0c3"; } .icon-cut:before { content: "\f0c4"; } .icon-copy:before { content: "\f0c5"; } .icon-paper-clip:before { content: "\f0c6"; } .icon-save:before { content: "\f0c7"; } .icon-sign-blank:before { content: "\f0c8"; } .icon-reorder:before { content: "\f0c9"; } .icon-list-ul:before { content: "\f0ca"; } .icon-list-ol:before { content: "\f0cb"; } .icon-strikethrough:before { content: "\f0cc"; } .icon-underline:before { content: "\f0cd"; } .icon-table:before { content: "\f0ce"; } .icon-magic:before { content: "\f0d0"; } .icon-truck:before { content: "\f0d1"; } .icon-pinterest:before { content: "\f0d2"; } .icon-pinterest-sign:before { content: "\f0d3"; } .icon-google-plus-sign:before { content: "\f0d4"; } .icon-google-plus:before { content: "\f0d5"; } .icon-money:before { content: "\f0d6"; } .icon-caret-down:before { content: "\f0d7"; } .icon-caret-up:before { content: "\f0d8"; } .icon-caret-left:before { content: "\f0d9"; } .icon-caret-right:before { content: "\f0da"; } .icon-columns:before { content: "\f0db"; } .icon-sort:before { content: "\f0dc"; } .icon-sort-down:before { content: "\f0dd"; } .icon-sort-up:before { content: "\f0de"; } .icon-envelope-alt:before { content: "\f0e0"; } .icon-linkedin:before { content: "\f0e1"; } .icon-undo:before { content: "\f0e2"; } .icon-legal:before { content: "\f0e3"; } .icon-dashboard:before { content: "\f0e4"; } .icon-comment-alt:before { content: "\f0e5"; } .icon-comments-alt:before { content: "\f0e6"; } .icon-bolt:before { content: "\f0e7"; } .icon-sitemap:before { content: "\f0e8"; } .icon-umbrella:before { content: "\f0e9"; } .icon-paste:before { content: "\f0ea"; } .icon-lightbulb:before { content: "\f0eb"; } .icon-exchange:before { content: "\f0ec"; } .icon-cloud-download:before { content: "\f0ed"; } .icon-cloud-upload:before { content: "\f0ee"; } .icon-user-md:before { content: "\f0f0"; } .icon-stethoscope:before { content: "\f0f1"; } .icon-suitcase:before { content: "\f0f2"; } .icon-bell-alt:before { content: "\f0f3"; } .icon-coffee:before { content: "\f0f4"; } .icon-food:before { content: "\f0f5"; } .icon-file-alt:before { content: "\f0f6"; } .icon-building:before { content: "\f0f7"; } .icon-hospital:before { content: "\f0f8"; } .icon-ambulance:before { content: "\f0f9"; } .icon-medkit:before { content: "\f0fa"; } .icon-fighter-jet:before { content: "\f0fb"; } .icon-beer:before { content: "\f0fc"; } .icon-h-sign:before { content: "\f0fd"; } .icon-plus-sign-alt:before { content: "\f0fe"; } .icon-double-angle-left:before { content: "\f100"; } .icon-double-angle-right:before { content: "\f101"; } .icon-double-angle-up:before { content: "\f102"; } .icon-double-angle-down:before { content: "\f103"; } .icon-angle-left:before { content: "\f104"; } .icon-angle-right:before { content: "\f105"; } .icon-angle-up:before { content: "\f106"; } .icon-angle-down:before { content: "\f107"; } .icon-desktop:before { content: "\f108"; } .icon-laptop:before { content: "\f109"; } .icon-tablet:before { content: "\f10a"; } .icon-mobile-phone:before { content: "\f10b"; } .icon-circle-blank:before { content: "\f10c"; } .icon-quote-left:before { content: "\f10d"; } .icon-quote-right:before { content: "\f10e"; } .icon-spinner:before { content: "\f110"; } .icon-circle:before { content: "\f111"; } .icon-reply:before { content: "\f112"; } .icon-github-alt:before { content: "\f113"; } .icon-folder-close-alt:before { content: "\f114"; } .icon-folder-open-alt:before { content: "\f115"; } |
| URL | http://zero.webappsecurity.com/resources/css/main.css |
| Method | GET |
| Parameter | X-Content-Type-Options |
| Attack | |
| Evidence | |
| Request Header - size: 277 bytes. |
GET http://zero.webappsecurity.com/resources/css/main.css HTTP/1.1
Host: zero.webappsecurity.com User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0 Pragma: no-cache Cache-Control: no-cache Referer: http://zero.webappsecurity.com |
| Request Body - size: 0 bytes. |
|
| Response Header - size: 347 bytes. |
HTTP/1.1 200 OK
Date: Mon, 14 Mar 2022 07:13:42 GMT Server: Apache-Coyote/1.1 Access-Control-Allow-Origin: * Accept-Ranges: bytes ETag: W/"15037-1360116138000" Last-Modified: Wed, 06 Feb 2013 02:02:18 GMT Cache-Control: max-age=2678400 Expires: Thu, 14 Apr 2022 07:13:42 GMT Content-Type: text/css;charset=UTF-8 Content-Length: 15037 |
| Response Body - size: 15,037 bytes. |
.btn-info {
background-color: #0098D8 } /**************************************** Menu top ***************************************/ .top-menu divider-vertical { height: 57px; } .top-menu .navbar-search { margin-top: 14px; } .top-menu .label { margin-top: 14px; } .top-menu .nav > li > a { padding: 18px 10px; } .dropdown a.btn { color: #ffffff; } .dropdown .modal-footer { padding: 7px 15px; } .dropdown-menu .modal-body a { padding: 3px 0px; float: left; clear: none; } .dropdown-menu a.link-modal { padding: 3px 23px 3px 0; float: left; color: #4572a7; } .dropdown-menu a.link-modal:hover { color: #4572a7; text-decoration: none; } .navbar .bar-root { margin-top: 10px; } .navbar .bar-root .dropdown-menu a { color: #999; } .navbar .bar-root .dropdown-menu a:hover { background: #222; } .navbar .bar-root .dropdown-menu img { border: 1px solid #888; margin-right: 4px; } .navbar .bar-root .label { position: relative; top: -9px; } /*#####################################################################*/ body, html { height: 100%; } .wrapper { min-height: 100%; height: auto !important; margin: 0 auto -121px; } .push { height: 147px; } /*#####################################################################*/ div.item img { width: 940px; height: 401px; } /*#####################################################################*/ .content { padding: 40px 60px 40px 60px; min-height: 100%; } /*#####################################################################*/ .row.divider:last-child { margin-bottom: 40px; border: none; } .row-divider { border: none; margin: 10px 0 21px; border-bottom: 1px dotted #0098D8; } .content-divider { margin-bottom : 10px; margin-top : 10px; border: none; border-bottom: 1px solid #0098D8; -webkit-box-shadow: inset 0 16px 8px -20px rgba(0, 0, 0, 0.4); -moz-box-shadow: inset 0 15px 8px -20px rgba(0, 0, 0, 0.4); -webkit-mask-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0), black 20%, black 80%, rgba(0, 0, 0, 0) 100%); -moz-mask-image: -moz-linear-gradient(left, rgba(0, 0, 0, 0), black 20%, black 80%, rgba(0, 0, 0, 0) 100%); } /*#####################################################################*/ #nav { margin-bottom: .5em; } #nav > #pages-nav { padding: 0; margin: 0; border-top: 1px solid #A1A1A1; } #nav > #pages-nav > li { position: relative; top: -1px; float: left; padding: 0 40px 0 0; margin: 0; list-style: none; border-top: 1px solid #A1A1A1; } #nav > #pages-nav > li:last-child { padding-right: 0; } #nav > #pages-nav > li > a { position: relative; top: -1px; display: block; padding: 15px 5px 5px; color: #888; text-transform: uppercase; border-top: 1px solid transparent; cursor: pointer; } #nav > #pages-nav > li > a:hover, #nav > #pages-nav > li.dropdown.open > a { color: #0098D8; text-decoration: none; border-top-color: #0098D8; border-top-width: 1px; } #nav > #pages-nav > li.active a { padding-top: 12px; top: -2px; color: #0098D8; border-top-color: #0098D8; border-top-width: 4px; } #nav > #pages-nav > li > a > .caret { position: relative; top: -2px; margin-left: .5em; } #nav .dropdown-menu a:hover { background-color: #0098D8; } #nav .dropdown-menu > li > a { padding: 6px 12px; } #nav .dropdown-menu i { margin-right: .5em; font-size: 14px; } #nav .dropdown-menu::before { content: ''; display: inline-block; border-left: 7px solid transparent; border-right: 7px solid transparent; border-bottom: 7px solid #CCC; border-bottom-color: rgba(0, 0, 0, 0.2); position: absolute; top: -7px; left: 9px; } #nav .dropdown-menu::after { content: ''; display: inline-block; border-left: 6px solid transparent; border-right: 6px solid transparent; border-bottom: 6px solid white; position: absolute; top: -6px; left: 10px; } /*#####################################################################*/ #welcome { padding-left: 90px; text-align: center; } /*#####################################################################*/ i.icon, .slash, i.icon-middle { margin-right: 5px; color: #0098D8; font-size: 18px; line-height: 18px; } i.icon-middle { font-size: 20px; margin-right: 10px; line-height: 30px; } /**************************************** Footer ***************************************/ .footer { margin-top: 0; line-height: 12px; border-top: 1px solid #292929; } .footer-inner { padding: 15px 0; font-size: 12px; background: #111; color: #999; } .footer a { color: #999; } .footer a:hover { color: #FFF; text-decoration: none; } .extra { border-top: 1px solid #E5E5E5; background-color: whiteSmoke; } .extra-inner { padding: 20px 0; font-size: 11px; } .extra span { color: #666; cursor: pointer; } .extra h4 { margin-bottom: 1em; font-weight: 400; } .extra ul { padding: 0; margin: 0; } .extra li { margin-bottom: .6em; list-style: none; } /***********************************************************/ .hero-home { background: url('../img/online_banking_hero.jpg') no-repeat; color: #0082D8; position: relative; } .hero-home p { color: #0082D8; } .large-btn:hover, .large-btn:active, .large-btn.active { background-color: #5BB900; } .large-btn { font-size: 24px; padding: 12px 32px; font-weight: bold; margin-top: 15px; background: #65C31F; color: white; border-color: #57AF17; font-weight: bold; } .text-shadow { text-shadow: 1px 2px 5px black; } .btn.text-shadow { text-shadow: 2px 1px 1px black; } .feature-description { border-radius: 15px; padding: 15px; position: relative; background: #383838; } .margin15 { margin-bottom: 15px } .margin7top { margin-top: 7px } .margin20top { margin-top: 20px } a.actions { padding: 4px 9px!important; border: 2px solid #A1A1A1; border-radius: 4px; font-size: 11px; line-height: 1; margin-left: 20px; text-transform: uppercase; margin-top: 10px } .accordion-heading { background-color: whiteSmoke; } .footer.fixed { position: fixed; bottom: 0; right: 0; left: 0; } .carousel-caption.custom { top: 0; width: 200px; background-color: rgba(0, 0, 0, 0.8) } .item > img { margin-left: 230px; } .carousel-control.custom.left,.carousel-control.custom.right { font-family: 'Helvetica Neue', Helvetica,Arial, sans-serif; background: white; border: none; color: #2F96B4; top: 50%; } .carousel-control.custom.left { left: -50px; } .carousel-control.custom.right { right: -50px; } .button-large { font-size: 20px; padding: 20px 50px 20px 50px; } .carousel-btn,.hero-btn { position: absolute; border-radius: 15px } .carousel-btn { bottom: 80px; left: 27px; } .hero-btn { right: 130px; top:35%; } .signin-controls input { padding: 8px 15px 8px 50px; background-color: #FDFDFD; width: 255px; display: block; margin: 0; box-shadow: inset 0 0 2px rgba(47, 150, 252, 0.8) } input.login { background: url(../img/user_login.png) no-repeat; } input.password { background: url(../img/password_login.png) no-repeat; } .account_summary th { color: #AFAFAF; } .account_summary tbody tr:last-of-type{ background-color: rgba(3, 152, 252, 0.1); } .account_summary .activities { text-decoration: underline; } span.headers, span.link { cursor: pointer; color: #333; } span.link { color: #08C; text-decoration: underline; } #account_summary .accordion-toggle { text-decoration: none; } .top_offset { padding-top: 70px; padding-bottom: 20px; } div.pictured { position: relative; } div.pictured i { position: absolute; top: 1px; left: 1px; font-size: 18px; background-color: #E5F2FE; padding-left: 13px; padding-right: 13px; box-shadow: inset 0 0 2px rgba(47, 150, 252, 0.8); border-top-left-radius: 2px; border-bottom-left-radius: 2px; padding-bottom: 7px; padding-top: 7px; color: #2F96FC; width: 16px; height: 22px; } div.pictured textarea { box-shadow: inset 0 0 2px rgba(47, 150, 252, 0.8); } hr.wide { margin-bottom: 30px; margin-top: 30px; } /* Sidenav for Docs -------------------------------------------------- */ .bs-docs-sidenav { width: 228px; margin: 30px 0 0; padding: 0; background-color: #fff; -webkit-border-radius: 6px; -moz-border-radius: 6px; border-radius: 6px; -webkit-box-shadow: 0 1px 4px rgba(0,0,0,.065); -moz-box-shadow: 0 1px 4px rgba(0,0,0,.065); box-shadow: 0 1px 4px rgba(0,0,0,.065); } .bs-docs-sidenav > li > a { display: block; *width: 190px; margin: 0 0 -1px; padding: 8px 14px; border: 1px solid #e5e5e5; } .bs-docs-sidenav > li:first-child > a { -webkit-border-radius: 6px 6px 0 0; -moz-border-radius: 6px 6px 0 0; border-radius: 6px 6px 0 0; } .bs-docs-sidenav > li:last-child > a { -webkit-border-radius: 0 0 6px 6px; -moz-border-radius: 0 0 6px 6px; border-radius: 0 0 6px 6px; } .bs-docs-sidenav > .active > a { position: relative; z-index: 2; padding: 9px 15px; border: 0; text-shadow: 0 1px 0 rgba(0,0,0,.15); -webkit-box-shadow: inset 1px 0 0 rgba(0,0,0,.1), inset -1px 0 0 rgba(0,0,0,.1); -moz-box-shadow: inset 1px 0 0 rgba(0,0,0,.1), inset -1px 0 0 rgba(0,0,0,.1); box-shadow: inset 1px 0 0 rgba(0,0,0,.1), inset -1px 0 0 rgba(0,0,0,.1); } /* Chevrons */ .bs-docs-sidenav .icon-chevron-right { float: right; margin-top: 2px; margin-right: -6px; opacity: .25; } .bs-docs-sidenav > li > a:hover { background-color: #f5f5f5; } .bs-docs-sidenav.affix { top: 90px; } .bs-docs-sidenav.affix-bottom { position: absolute; top: auto; bottom: 270px; } /* Responsive -------------------------------------------------- */ /* Desktop large ------------------------- */ @media (min-width: 1200px) { .bs-docs-container { max-width: 970px; } .bs-docs-sidenav { width: 258px; } } hr.gray-dotted { border-bottom: 1px dotted #D9D9D9; } .blog { padding-right: 30px; } .blog > div { padding-left: 10px; } .blog p.date { text-align: right; padding-right: 10px; } button.signin { margin-right: 5px; border-radius: 20px } button.signin > i { padding-right: 10px; } .accordion-inner form { margin-bottom: 0px; } .board { background: white; padding: 3px; box-shadow: rgba(0, 0, 0, 0.3) 0 1px 3px; margin-bottom: 25px; -webkit-border-top-right-radius: 4px; -webkit-border-bottom-right-radius: 4px; -webkit-border-bottom-left-radius: 4px; -webkit-border-top-left-radius: 4px; moz-border-radius-topright: 4px; -moz-border-radius-bottomright: 4px; -moz-border-radius-bottomleft: 4px; -moz-border-radius-topleft: 4px; border-radius: 4px 4px 4px 4px; -moz-background-clip: padding; -webkit-background-clip: padding-box; background-clip: padding-box; } .board-content { display: block; height: 100%; -webkit-border-top-right-radius: 3px; -webkit-border-bottom-right-radius: 3px; -webkit-border-bottom-left-radius: 3px; -webkit-border-top-left-radius: 3px; moz-border-radius-topright: 3px; -moz-border-radius-bottomright: 3px; -moz-border-radius-bottomleft: 3px; -moz-border-radius-topleft: 3px; border-radius: 3px 3px 3px 3px; -moz-background-clip: padding; -webkit-background-clip: padding-box; background-clip: padding-box; background: #F3F3F3; background: #F3F3F3; background: -webkit-gradient(linear, left top, left bottom, from(#FBFBFB), to(#F3F3F3)); background: -moz-linear-gradient(top, #FBFBFB, #F3F3F3); } h2.board-header { font-weight: normal; letter-spacing: -1px; padding: 5px 10px; margin: 0; text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.2); font-size: 24px; line-height: 36px; } .board .table { margin-bottom: 0; border-collapse: collapse; border-spacing: 0; } .board .table th, .board .table td { font-size: 12px; padding: 5px 20px; font-weight: bold; border-bottom: 1px solid #DEDEDE; } .board .table thead th { vertical-align: bottom; } .board .table td { border-bottom: 1px solid #DEDEDE; border-top: 1px solid white; padding: 5px 20px; text-shadow: 0px 1px 1px white; } .board-content .control-group { margin: 0px; padding-top: 10px; padding-bottom: 10px; } .board-content hr { margin: 0; } article form { margin-bottom: 0 } #nav > #pages-nav > li.active div { padding-top: 12px; top: -2px; color: #0098D8; border-top-color: #0098D8; border-top-width: 4px; text-decoration: none; } #nav > #pages-nav > li > div { position: relative; top: -1px; display: block; padding: 15px 5px 5px; color: #888; text-transform: uppercase; border-top: 1px solid transparent; cursor: pointer; text-decoration: none; } .number { margin-top: 6px; width: 40px; height: 40px; font-size: 28px; font-weight: 600; text-align: center; line-height: 40px; color: white; background: #08C; border: 3px solid white; box-shadow: 1px 1px 3px rgba(0, 0, 0, .4); border-radius: 40px; text-shadow: 1px 1px 2px rgba(0, 0, 0, .4); } ol.questions > li { padding-bottom: 12px; font-size: 15px } div.disclaimer { border: 1px dashed #0098D8; margin-top: 10px; padding: 10px; } @media (max-width:979px) { button.signin { margin-left: 15px; border-radius: 20px!important; } } @media (max-width: 260px) { .nav.float-right { float: left!important; } } @media (min-width: 261px) { .nav.float-right { float: right!important; } } |
| URL | http://zero.webappsecurity.com/resources/img/main_carousel_1.jpg |
| Method | GET |
| Parameter | X-Content-Type-Options |
| Attack | |
| Evidence | |
| Request Header - size: 288 bytes. |
GET http://zero.webappsecurity.com/resources/img/main_carousel_1.jpg HTTP/1.1
Host: zero.webappsecurity.com User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0 Pragma: no-cache Cache-Control: no-cache Referer: http://zero.webappsecurity.com |
| Request Body - size: 0 bytes. |
|
| Response Header - size: 349 bytes. |
HTTP/1.1 200 OK
Date: Mon, 14 Mar 2022 07:13:43 GMT Server: Apache-Coyote/1.1 Access-Control-Allow-Origin: * Accept-Ranges: bytes ETag: W/"78506-1358497020000" Last-Modified: Fri, 18 Jan 2013 08:17:00 GMT Cache-Control: max-age=2678400 Expires: Thu, 14 Apr 2022 07:13:43 GMT Content-Type: image/jpeg;charset=UTF-8 Content-Length: 78506 |
| Response Body - size: 78,506 bytes. |
����JFIFHH���ExifMM*V^(1f2x�i��HHPaint.NET v3.5.102013:01:16 15:54:06������(HH��XICC_PROFILEHLinomntrRGB XYZ � 1acspMSFTIEC sRGB���-HP cprtP3desc�lwtpt�bkptrXYZgXYZ,bXYZ@dmndTpdmdd��vuedL�view�$lumi�meas$tech0rTRC<gTRC<bTRC<textCopyright (c) 1998 Hewlett-Packard CompanydescsRGB IEC61966-2.1sRGB IEC61966-2.1XYZ �Q�XYZ XYZ o�8��XYZ b����XYZ $����descIEC http://www.iec.chIEC http://www.iec.chdesc.IEC 61966-2.1 Default RGB colour space - sRGB.IEC 61966-2.1 Default RGB colour space - sRGBdesc,Reference Viewing Condition in IEC61966-2.1,Reference Viewing Condition in IEC61966-2.1view��_.���\�XYZ L VPW�meas�sig CRT curv
#(-27;@EJOTY^chmrw|������������������������� %+28>ELRY`gnu|����������������&/8AKT]gqz������������!-8COZfr~���������� -;HUcq~��������� +:IXgw��������'7HYj{�������+=Oat�������2FZn������� % : O d y � � � � � � ' = T j � � � � � �"9Qi������*C\u����� & @ Z t � � � � �.Id���� %A^z���� &Ca~����1Om����&Ed����#Cc����'Ij����4Vx���&Il����Ae����@e���� Ek���*Qw���;c���*R{���Gp���@j���>i��� A l � � �!!H!u!�!�!�"'"U"�"�"�# #8#f#�#�#�$$M$|$�$�% %8%h%�%�%�&'&W&�&�&�''I'z'�'�( (?(q(�(�))8)k)�)�**5*h*�*�++6+i+�+�,,9,n,�,�--A-v-�-�..L.�.�.�/$/Z/�/�/�050l0�0�11J1�1�1�2*2c2�2�3 3F33�3�4+4e4�4�55M5�5�5�676r6�6�7$7`7�7�88P8�8�99B99�9�:6:t:�:�;-;k;�;�<'<e<�<�="=a=�=�> >`>�>�?!?a?�?�@#@d@�@�A)AjA�A�B0BrB�B�C:C}C�DDGD�D�EEUE�E�F"FgF�F�G5G{G�HHKH�H�IIcI�I�J7J}J�KKSK�K�L*LrL�MMJM�M�N%NnN�OOIO�O�P'PqP�QQPQ�Q�R1R|R�SS_S�S�TBT�T�U(UuU�VV\V�V�WDW�W�X/X}X�YYiY�ZZVZ�Z�[E[�[�\5\�\�]']x]�^^l^�__a_�``W`�`�aOa�a�bIb�b�cCc�c�d@d�d�e=e�e�f=f�f�g=g�g�h?h�h�iCi�i�jHj�j�kOk�k�lWl�mm`m�nnkn�ooxo�p+p�p�q:q�q�rKr�ss]s�ttpt�u(u�u�v>v�v�wVw�xxnx�y*y�y�zFz�{{c{�|!|�|�}A}�~~b~�#��G��� �k�͂0����W�������G����r�ׇ;����i�Ή3�����d�ʋ0�����c�ʍ1�����f�Ώ6����n�֑?����z��M��� �����_�ɖ4��� �u���L���$�����h�՛B��������d�Ҟ@��������i�ءG���&����v��V�ǥ8��������n��R�ĩ7�������u��\�ЭD���-�������u��`�ֲK�³8���%�������y��h��Y�ѹJ�º;���.���!������ �����z���p���g���_���X���Q���K���F���Aǿ�=ȼ�:ɹ�8ʷ�6˶�5̵�5͵�6ζ�7ϸ�9к�<Ѿ�?���D���I���N���U���\���d���l���v��ۀ�܊�ݖ�ޢ�)߯�6��D���S���c���s���� ����2��F���[���p������(��@���X���r������4���P���m��������8���W���w����)���K���m����C ��C ����"�� ���}!1AQa"q2���#B��R��$3br� %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz��������������������������������������������������������������������������� ���w!1AQaq"2�B���� #3R�br� $4�%�&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz��������������������������������������������������������������������������?�@! ���Zi,��Lch�N�p{�PNp[�<�+�>�B?�1?��N+��F@�����c��Ɯ �\CHcW$�<�p �����$�>a�zR�X9=x‸|���3ҜC)����<GjS�ۜ��qh!J�>`I>�����SK������q��ߚv��G��R(��>��?���B�Ӱ l$��4�@y�($�=x�.�r� �Ѡ b08 ޔ�6�������8\6y4#a ��s�5�8PKB)�m���@#;O$��i� �2#�-І�z��z�R��ќ����҅S�H��Q��F���Jh �����Ü�f��#'<�zU0�7$�;s�p�8��Ф�@�ا ����@ � |�\R��8��rT} I'q>�����4HF:�Ҳ��=s�֑�(���N�0i�p"�lz|ݿ�T�p;����F1��-ר)Î1�~��b<�?o��:Hb/#��I��oNh�l�=�i�㞹�: �RF�}Xz�t��:�S��zt�d�+��q֩�FN0;�)AVǠ�"@��iO ��=�c����H�?x�<�Ib� m��2N#���ov������ .{f��{�������A���$�P�&s���sA�Q�GR3(�N�9���8��ʒ��R�H�s�R�u���.�`g�#�Q`BH��M�ހ���w��z�S�p�P�=F�3בJ9���ў0{�E<�x��S����h>�<P�'��� �!z�)�9� �q֫��Q�ǽZn��֫���*����r:~��21�O8�*u��Қ�K?T�)�A9�L���G_ZIRNFOAH:���X}OZV�tn}1H��I��Zv�' ��[��+��4��O,� �t�$.y �J����������S���`.v知7,=z�W@p� ��X0<�t>b@휊]�����$d�\u�Rw��NO�曼c9ڇ��C$��=��z�݆H�nS��Mg,�,z�z�B��q���ub�c�x�}� ��ɎA��u�1���*��8�<u�~���.6�℅�f� �8�^j9�Xӊ�tS-�:����J������ԅ�\� ��݅�G�j����$��lVE��g��Z�r�q�֚�P���j���_���~�R�v�ޕF]P������X���ӕX���9>��_S��} =듸�P��CҠ:��y���J�W�G\u���{S�PR>�=돋Q�-�j�j8��Ga�%; �����%��\rh7Y\���ڹ�}��|��OK��v�9�ީO�-� �pv�O�$W�N�u�(��ޔ�y� 0'?��K��p�:X5�<���r��O�k���Vp3�v�Zг�P�C����m����r:�'�ֶ,��~��\���������J�FI$��Zɐ���V�9�$c�}��b�9<�ƴ ��n;�ֶM2.^PX��c�O#��l�������=����{�N��&8�՛uFp��N2Ek�I�w���H�r0:Ri3E#N���SK��=j��I��\ҩ�܀A㿭dՍ�Lv7b�ߜ3Bp��/cM�w ��=�!�`�V'g!{b�1�r2Ojq ���1O��*�ri8 ��s�qϷjk� �q�s�L�99S�4rs�8�ϥ-�������CҐ}nj�?����b�<u�魍ŏ������s��1�Qڐa������t���!v�Ӝt�H�t�~����1�;�H�3�G�1�{�����>� �#��Mn8�'-�!���d�ڍ��#*;��C��/�Fs�=(Pq�3�^���9��n��lҡIJi��$�4�����77N��� qܓޓ\�y�⇰��n�x��9�r� !@FGB)A88$��B�8�c� r�R��G$})O�=8�� ��g�Jw|�r8� ���4��+DZ�O�@wd��&�3�4�K>�=idž?/^�ҋ��B��ւG�?��+����)�u���$sM�p�H��I�r2��gh�ԛ�Ie�J6�����3#y��Ҝ����~=i��˞Grx���b ��)ÚnpNq�aG�!䀁�9�����}=)s��nH���n�V �88����rz��RrF1��@��}OaN�8��,{�9�8)��ǭ/ dsD&J���My�����B�.@bZT���j��/���֣ld�'�z�h�y�#8�:��@�h�'��+��ߍLQG^�y��9��1I�a�n�\�4���:ZU��@�✤�I����$ �=8�oL6I⃟^��)q끞M?QvF:���c���RP��Ӟ���OnƤ!A'�/]�#ʢ���'=�7t�2?<�*\�U���w����A���Wg�n�F~^�4�v0H#����r���r��J[�A����U|��RJkL�Ϲ�u��\��#�+�c����R2����<����j}����[9#v4��q��#�Us�pzdҬ�$u���� �a����$c'#��Y�pc�EX�� 21O�.串�i�N��?�z�_r���`Ա7<~4�QXp�e���9��Ո�N���Ӝ����S��e:1'(G�Ud����[�1�_�S��G�J���i!?)�#�{Pzᶞ:Ջ�0��9\pz�'���;U\v����q�9=�iT���#4�s�i�����}�K ���Z{�9�x�8,H횧��46x��:f��s�ǿz\��};�Ԁj��?�)8�o����I�qHa��"�����ps�c� ����g�I�� v8RyFO���)41�R��:h�$(\v��cr�j!t����sYsY�Cn@c��M]�;A����k��r����mPGL}*ԯ����%wm�1���g�O�Sk�����ڡ��R?��櫙6G�6��OJ�5K�Vtbx� ���x$�+����fÓ���\�diʺ���v�0x�`�:��F���j-j�pb��\��z��{��)&�:f����O�N�CY7:�%�y�לV%��6T9�3ҳn��q�>�!ݝ���<��2i �w��\�H�ZL��7�SqV���^�`c*=^��fq��N{�5��O e�v��Zذr�9���՜���3�#=;T���p��7OB~� µ,!ڤ����r���n�������*\���#��1Z��>���#�W��\A�?J��r�7͓���ZW�s��{w�t$�$��#��<q�ߠ��@��i��y�;Mt:f�0� �3���#MU�s�5�eⅆA��}8��6�"Qv=�O��1�Z��� ���:��9���7#>j�ӼihG�F� [�����=cD��Fя¸k/��0�u��VFO���ҴU������5� I���z�+�:�g�s��➗��`=*��z���'�=q֠��C)�lUv��P=*A8` b =0hn�,���s����<� �X�g��M �s��R�4�x��G�qN�9�G�!h7N}��J��?�R��1���P�#�a6O��8�R���v����@��� �X�'��H�#�J@ f`A�)�v�m9��ñ!H<�SX��S�ZB�.z��HGF=� 2�t�)�y<dz�'�����G�1�s�����<p8���A �#�8�n�/# 暤6�ӚZH��IR>���1�z{R���:�[C���7qp��<m4tA �C��0=i�rs��F���})T.:Κ~`}OO�8c'�*S�2�r:z�/���\�FpO~�~P8��Zjf8� �L9�<����ѻ�)�X�[�=F� �h' �H ��N$m��"�����X`��<��z88�on��r�H��4�*��g��8�Q��,y����O=}iۈ �A�����r���ZO��n��.тI�>��A`O���J\�`�4['�%���9�H98#�>�(��rI��9�x���N���ߡ�I�1���F =3�;�1�7 A���lT������y���R���(N;�����A��=1֗��O�52��?�<��t���Ln2�й���Ɵ�@������s�C*�$w��=3��sۮE6.��^���c��sMl!�e�����zVv��w����đ�@�w#�1��Q��(2q��������UFH=��O'ˀ@Ǡ�Ck��s������3ޠi��z~���8�$�*�D�(np~n��/��ǎ~��p'��D�(�du�u Q,�pq���4����G`j��nݸ����#78�Y:�娲y���ǧ�?ˀ:s�Z ��n�P�J�s1l���uIiW���L�>�?JF��2����m�\�@ �Ԃ+RM�Ѐ;�m�7�"�B�!}F+f*�4�EӶx5͜�9�$tǥm!&��8� |���L��s��8��f�O��n*�п�Tc#ҳuj�Z�i����I��� 9�^!��q9�i�e�W�}*f��\�dq�ږ;�V*��T<�g�H�sMVSb��H'�z֕��L���$�+g�Z6.p��\k܇L��^�1�5r�'�j³�rW�Z6gp�O��l�" $�~3������j��R7x�3�����'�5���RT5$�A3�f�\�6��4�0���N8�M�EْA9��T��8�����ppED�Crx�r�@���C8S��5.G(��� ��J������R���{��3�2ke+�Z>H���E�c�zps���&A8�q�~������P��u�?x��vy����r <�jZ��u ;���yu�F}�X�e�{�W=����F:b���RWu|�gc�qUS@9n=z�\���a�[�ֱ.u�V�ϡ��GU�A�X�;=O$|�ȭ�WvFH�Ҽ��Y��I_z贽P˸j�U��Gp���r뚂k���l�1'�b�8$dq��n��d>[��<v�C5{X�#�!�-q^#բ�~|Vf��0$>���rڞ��6<�`�=kI�CH���u s��:sڹ��%���g��w�N�$<�z������ta�9�Z&�#�O. ����&��c�G�z��]���*#3�9z�H�#��.vY�O�:0GJ�\���˭6�D��Tg��Y��!�)����9��p�9[R:�23��J��6H�=�Ixfe,���~ubѲ����T��;�o�cH�� ּD+`�\���@F�W�I�E�ʲ�І����Ε�U����y�CqӯJ�K�@�\�����s�L�[`l�y��/���=O��g��*r�<՛.��"PN};�U95�a����"�[�ӹo(na�������n���As�[��Y�$zVu��m���y9�R���}����'i�=ET�P��n]H� �^�=�������W����?���Y3PrA5�xs�I) r#�:f�=<��;����]�Ɇ��A��M�D:q�z����įᗞ�z�Wb�9��J�=,�Y�����2V��$l��.��\�tBVv;K]O��ןzճ�V!��au�b3��3��5��ީ�H�#�\g��*�a�����MY�q�'���K[�@���z�Q�nq���T�-#Y~���+~�9'��E�&3��J~�T�������`�m�چ�ۏ9�n0�~��q�с��N�'?@)�~l��� 1�0bs��Z^CCH����R�w-�'4r1Ȥ~sӧ^���Wzp9��H��Oa�J��8�!<g�꾔i�����i��8��� ��\�i?7aޒ�08��) z�oj:� ����ZN�`bN3�AH�끞��=�\ӆ��7~i0Þzf�5P�jq8B�4�[��lQmCr�y �>�ԣ"NXr8��bI�ܑ��Zr�pq�դ@2�pO�0)�9�c�10T�;�{w��+��~�/ �I#�_�@q�Fi�>Ps���R��N��@1C3�p��7)���ѷ�I�q���?��� �FrA��(t�B�b��ɥQ����� đ�qߧz\���S_s73�Әd��;`�^~�i�F3��J��1���ƀ�c�f�+�����8\��(e��qO�<�F^��c8�}:Q���OZQ�)_���0 �)��� �r3J��iF��)�z�8��r�s�L.�-����9ɤ$��s�>�6�bL�c�R���#���S0��#�=1B.�s�ƞ��BE���qۊq㩦�`.��Mvڤg��`$`��k�#��ب���=�#ˀ�'�z�Jð�|�=}Gj�wn���R�c���;㩧���� ��A�Us�����������U� �u���;w6y'�`+ U��N��{T.�v�Ǟj���N8� KH�'��v�%P��V���B2�d��[:b�6��"��m��eTt����@*3یQ�D�c"=&20���J��(T2����o�`�zV��@ v�2uˮ���⤏Oh�r����j)-�$�hpA����;� Ւ���ҵ�>��\S��r�s�ڧ�9��]i�[G务�!S��8��[sj���To�B�`篭e(#X�9 �G$�q֡6�I%>��tm�QԚ��%�yȬyQ��rKq��W9�U|�e �pO_A[s@P�O�:~5D�W� fᦃL�d�U���>��o�Q���O�Q�3�=}j�� �Oֲ��ZW6�ۨYD�pA���>��g��H ^;��VX�U��~F���C�98�ZF�V��6�ծѓ����'�[x��Es�\ʄ-�inu ��A�bj���N�������>+��zs����j�>c9S랕f;� �9Q�}*c�w�n����� �)��+�Ny��;�5��~fa�8�5?��w���j�Z�R�[i��H9���@�*pN�`)���I��T2p��X0/�iS��3֫���@�V{��z�Jw�5mi��$t�.����EYR�H�S�!�q��x�A�]Q��p �ָ�N� �{�W�1�á'��|JH����V]M��;ķ�+n�k�7�$�|��@�5����\��_3r��H�ef��w: >�#]��y��RI�\+9 ���L.03�1��+ �B�GN=)-:����eʜp{�u�����02:ֳ�i��c�2*��Y��\�g'��i���\�X_ݩ�G�:)����L��qҺ�:�;����H��.x���Rw�ᴋfE,~W2:~u�m �0����i�4XhrA�#�1���a�'��7t �S�Ԓ<�[V��U�f;���s[��~�V���[��@Rب��!=:V���rrIɩk����9t%����#b2�z��*��x�W��s��G+��ߊ�ul�Q*�ȩq9k�!FR8�MP��p������B�i#��x�W���8愣'b�Ι�u��ꎥr�w3v��k���@~�q'�Bh�S��z�5j�k}M;��/�\�ֳo��Ơ�As�9��I[���GJ�F�e;���pi�[M+�0X�ƺ=;C�t��O����QC�Y8��{T��7A��H�U9��Ҽ:c s���Y��v3��oF5���1eF8<�^Rv!���xp0�=+V���J�.v�Oм5�5���M.�~�c�济���ϡ�x9cP����=m�`S��W��(��Q�{W#�F�:�ڳ�O�R�.c��*U%��ҭi��I0���\,[���VZ�F�K�`��;i������r8�miWa��O=~��:^�$�j� ��C� P���Ш�fl��z ��b��ԓWbq��G<��t۰ʿ0q�k[�G�I�:v������&�$��敉��8��T��BaX.9�^�'�9�$���C�=y�y�,���Y��c#�ooƢk�;RuP�j����8���RN1�:���z�I��k�c�O�In5�e#>��cJ0N++�rF;�Tm�bBK�����,k�A8��Lc�uzVO������=��^��a���Yl�f�57ez�w��Y��lu�5N�xlS�S��mw�=�D����0`���(��#=�$r�/l�:Ո��>S���j���G\����kr~W =*�٣`Fz�8��8�����1s"�<s���� ũ���8<��zRJ�8''"��!N7Oh�Xs��>_�K&2�ךNI۟��V�ăړn�#�q�˓�Z[�� ����$�jdm���<S�$��ҝ�+�8�t�c��M �$�sK��<�ҁs�qڜ3�ױ���3� �7sC%�#��:�ql��=x���nj�8�X��P�1�� �~���?�5����: y�I�zP����9b~��c�i����8�)$�}����qc��8��#0�y����c�=sN�e?.=�Z����T@[��=(R ^��;rǥ@A�o�J��3�?R0����e` ���Q�!��`ݏ�@�d���9#�#���8'�)Tg���S-!���Tѫ�'�ӭ�?�'�CV�2w��Nk L,D0.^��I;r?K�x�� j{x�������J%arI#Js�1P;�:V��=3�r)Y&㎆�1��gp8�F�RL�� j�^C��ӽDВ���R���<G]�#?Z���n�q��M��`��+f�E��A>��cds�ݗ6$s�jUq�O�Uن�֫^Α�}+}-����y�j32n���Eަc��|��:�x;�Y�j���Wi �;Z���1�����#�TRꀜ�${Vni��3j��3Ԩ�U9dV ǩ�w��2;����w5�����b�o$t�j�� ��t"��^s��Pel z��\I�'#�8�i$e�뎽*�D��A�5���M2�N;��$���ћ��C�:u�qx�[�㚃W�t,eM��z�'��c~�#Ҹ''{#��;k+ĕb� ���וZx��;�1|���4mad(��n��i95�\�R� ��j��"2����E�DT�q�梑ö�I�V����2� ]�b��X�9��(�ӵ�\�c֭��(,����@�#��pz�U��r�Ϻ�g!�x�j�m�+���M������'ץXI���8��;i�lքNpT��ס��s�״�##'���_��!}��[b���d�h;��Z���i���9���U�L��t�z��`d�nj+�\)'8�v�*��;�:�����H�p#���=�����#�1X����I!����8�}����4�W<s��9���+!-�B��Z��G����m�;��S�ML��4��j�oR��E��,�`��5WP��`C�ˎ}A�Co jE��s�To�?��'Npy5<����6�D�Ha�w��+�c��'��xoXi �=�Ӵ��e�ԏn�|���4tX$� ��rq]&�h2��{~�am2��;� t1�" ���h�]L�Z `��B��VN��O�[i{ֆ�8�H`3��¹�nu.�*��bH�!��c���M�4�Y� �,k��gQ)S&H�ɬͬ��i�1��l�;I���#��S�Ce}5�c����m�s��(^8'֝����u�g.~`?�X�]a-ٺv�svw�GȕH�hԵy]v�\���݁[\���'�ps��#Z���`�9����G|��NՏ�@ +eO͚��ݜM�O�?�=�5!,����� t�5���9p���R�X���r:��h�?2^��:u�c�x��趸���Q+�;�VjU"�����ksM���Sv��²Z�(�{�:�Ӑ���Fzҍ6��]���B����]n�kH���{�ô�>\`�'���5x� �C�We8#�l� M��l��Q�J<'?�UV�S��H�Oz�}w ��|��+f݈�P ��<���Z�Ƅ�;��\F#%��ץyg���t�m峀=+����I#����eǙ���珮�IrDg OZ���5�]�������������a�֢�)�k��BQH�/���<��ӟ�Ú�u�95�Z6�s�<M�c����ZNc����5�VJ.撚h�}#S��ٵԷ�<�\e�Sā��g5� � +�9��c����:���F�=)�|���zW?-�T&#���TV����ܑ��K�]Վ��{���f� �3+��ұooYb,��w�5�����G��d�,,tk��&��)��e�X�u�Yy�j�؝�"��hgX���>c����1�P��T�Ĭ<�}��Q]��'-�����z\i<گά�����=���~c�q��� }LF>�`���T���?�3��?i+ ����l?7�S��˂7s��߽y����A�;�4 q��`/�jY���m�0e��g�.�_J�{?��*�9�kgLח$����4C�=_O�^��l��h�=��|9�+>D�ד]U��DX�S[�Ů�mXy�d�a��@ ���H����z�qϮA랢��1U�Q�)��Q�<``�R@m鎸�9�;�>��LCI �7\�B��I�����.I��8�1�x$��v�\����3��pzr8�����l��L�t�;89'�2=)���pۥ�{���� a��3�R��`�{�K�Gz�r�H�(@8`)�s�4�ـ�(\�6�JP2{n����|�tR�\�c��h?|��#+��9��� ���.3����h�.��9��2h�}zd}�SOp21N�[�^ԤrGO�S2O>��` YN;�J8�q�:��֜���D̓���d�*�͓�u#�K9��y<�k������fˊ#�?��5n�c��Vr6��=�oi�� �<g5�)ݚX�m21��8�(��;y8�S;AL��=�n�z�rz�t@aL�r9�p,9����x�Ud��?�jn4�4c��{�#�[����f늣`��9���c���AU9��Ҝ�23���Tў�����X�9�(�(��sZ8{Ws�x��0�)�s�^���J�2zc=�e\Z�\�����3T�,G{"�2��u���)��u��BI�cY�Gr3g�No�j���Mp�Y�s�Wf�E� ǵ4r�q��Y�HQ�r:Vm�5H�`!���4*}}qW�{��:w譲6���S˨�e��3`w"�X�N�r=kz+M�ALm=���'�>N��T��C�c��̖��9�֕m���Wۯ��6�'h���*���1m��>�r�ωH��8�M���'�����H9=�9Lj���99���<���%L��$W��$��oq^��@�H��θ[f*O�H��2��~�e)YXᡷ.0 '��[�Pc'4��/�i�+K]��)<�����,d$�Ԏ l��H==}Nk"*��;��KN_߀���Qz؉msb��#�S��J� �W�tD����We1�* ��I���S��UC�0@��r�\�Nx9>��x���@�CQ;� zڰ�lˋ�z w2��>�֤.J�3�?�bY��>�����eFx��f�KF9628�m8��x��q��1�<��~�~�Qcw �bR��2�ή�Q�l��Y�#dq�+���'���?�ڴc�P2��8�� ��խs?e�����r�LqS�l��ߊǵ���sܠNx�^��I�1��-随m�.:�I�XBye��u�"�p@Q����[��Ϟ��k9<chee�H���4���l��o�Y$��qҲ�4�$����Z�?��yH�Y���om�?�����H��Ze�4��A(�x'=��8�Y7�:���$r8�Ao�Ms�x$��/���}��:)$�Q�{U�*�A16��S[��L��.�x���e2�Dr3��s����#�6���}�*?�9�qz��&�c�L-����9�s)�whe� �z`~5J��%F��$in�Ȼx=2+J���k#�kk�Z�mt*�~Rɨ����g9=k��EQhsU�鲫[ȼ���*$�~G �s��=��0ǑT�0��&�Q��l��;p�q���b�9�8��� y��%S�������v�F%�J���"���>���:�<Vuź���8�*Fh�� e_Y[�N%/���b�9�-K�Ǘל�)5 �_�9�9���HT��0A�:�h�B��@�p)�X.�7K�J2��`�H�]����H�w��Y��KL�0 iA1++�zJ��Z�Fh��b�<S�5QT �X�uML�6C�G_zͺ���O��Zr�z '��g����U}s��X��M� �&��_/���9��WWFbl�c������=f��JF�s�Է!����l��>���$Ɍ�:⢻�V�z&�w�y�Zʺ�������8��=j�#��#�q�ָh~!i���kkJ���V7 d�j��E���t_�(�(Q�;t���N�D�+�1�P�|]�^H�+ȉ>��>���0<��}�����vg6���T��vc�&�)e]����]�� �!q��9<�F�n\?*r����*��s>�sev�������v6��+ԯP� S�zs��?Y�31t�Ã^n'���oJ��g*�?�X�Ӝ��K�c��֔�$@ ���g�H�0T��+ϕ9Eꎕ$�-_(̬H#�1X�`�S���sQ�jo8' ��ԙ��X�J��w�W���� ���5[�Ls�7V*^�ϒG9�K5ˑ�bG\��}j�-��.K�*\�)�n���syw1 �z�6�!|��H�֛�� �{M�oa�mM���H$p9�*�v��\6s�u��m?RVa�/�ٱ�C��'=)I4=�O<d7��_d�e�=*�2۴d���j9%�I�x��P�[���xgڠ���m3LUB@ �i�H�+�kZ�X�nNq��JSvW)���\�r�PqZ ��0��]�ET�D��<�{SnfE����"�4�d'��kp $��0p:R��@'��J�U��8�ђv����}a�aS��ӷj~v�E^O�M�x���o$u���@�R ��>���s��@�W�Jhm�g<t���A��3M��ȥ��ǿzQ�rr<qK�XR�H��ZO�I ӾE�ŏRA�c�dz�S�ʐ7�&��3�{Ҩ�˔�qN#-��0)� �v����A�I��4&9��<{SI$���9�M_c���Mb������Zi�`�g?JOa�wd���<ԉ�C�:�*$Uc�Ҥ���*��L@��'�>��r}ǿ_�����Bz��r8'�v��)�:��c���# �©�EI��@^k:�b[���к�8��f���\d���ןC�бa'�_�;z�E�1�=z��4�L����X#UB8�k�l�#b�GJ��P���bb�z}*��w��n�լ��������Ҫ��x+>�匸��I�0$>�ֹeQ7cU �H�U��5�铒����Y��ܧ<���A��(���[S���Jz\뭟 ����) {v��+�H����5BCg�+���Q5�J���X�̨J�}*��7'$t�P�d�^ry�ۻ���R��I�� �W�Z��� �Iu�� eN��Qv4�KC��XdgwLV��H��z�l&Q���=i��]g!}��j.��}I .>qש�@+� k��r0�r:Uv����O~��F͢N3��5n(A�o qX�W�0H'=�Z����T]̤�b]C��I����(X�N8��sX���yd������g^�(���zλբ(Ap1�U}R'ÞA�=���z�-J�lu�$ڭИ�Sׯ8�[�̇���*�q�����V�fm�<ם6��Έ�f[Z(��'�T�[�J�s�k2$+��Y�,�w=��PՑ�ԥ�hn�=��I����Ay,aO# s�⪵ϗ��s��PN�%���]:t�n.�c��k���,0�6��^ǭt��(�_j��F���k����� ��9j;>$�n���aF #�Vr��f����;'�G���0���s�X�2��֬[9�A$:��d�_-٣��ۤ�.H���r�6Ռ��wQ@#<@�Es�6�$��g�i��g@�(�rWv�8��RI�^��-��W;��^��ҙ� .U��¯��C����8�:�kɥ��'#j��ڥڨv�$u���\����(H�X��ާ�M��ȍ��/�fa��L�[r�we�8�*Ar���u���ڲ�|�%Ȓ@Kuԥ���:��dr)�=j���"H�9��2�Yd_����NO�j������`b��q8\�֭��#��'��}�R�zWmu�l�z��0̀��;S�{ J�5�[\'��)s"q������}�M��A�J˰��#����uJlVOBm3^���4ș7J���mP� �B8q�^yr�%�� I�-/I�8����a��ɣ)�n���Z"�i�")*2�^k��Ios��=����<+!�O�!�{ה�F�6ws:�*���ⶋt�E�dYU���E:���1��t�q�@�Ι0��p���)��g$��{p��x����x�3�������v��`��Ҙ֎e�y�Wmt�q�)$~�IY�N�5渇�J����������d����m�(��Fx���B�pX��CVav֥�3���ԛ G�x��D˳,A����7�p�3�+99�/֯«Nԗ� �z�N4�����~ ��䈘���V嶹p�6g�#�v�)�F��l'$+\��<��uR�$��8���������R��t���$�'9��?�)@7sҮ����-�nrA��[�]��sr[��1����ƛI�^�zV�����@��� �G��6;)����*E����x��(@�zV���yev��9zͼ�d��X�zR{��<�P���!$t��A��P_�rFk�m<,�1��� $g����#�J�4��v��R}u��4 уF ~�k�<8����̠����G��X��FT��T�nZ����J�^K[��Z;t�գ�8����_Ƴo~!�Z���n�x� ���������r;0�_�j��$hNpGC�V��8��j�%����.�1��[�^U��$^%��`�BI� ^��^�Ą%I8�O��J���?ҦmO[�(r�BY�Vn�dXe�Rs�+�𦷭�b�x�]�&��W��2��J�2�(�b��_V�q!Vlc��s ���]��b&��22+��ų�s��Ƽ괜� �s cĘ�4�"F '��Z���}�N��d{��?±�5HøO'�1���}�>���]A0��Zroʶ�`��!��|�zr5�m~�R�׃֫���s�LԂ�Ɲ����sV=T���q�j_��y��ְ�)��qޘ�B�L�n�ܤ·�Q�1��`���W��oPT���u88�����~��S��hβ��Q�����=p8y�|��"�v���q�d a�t'�J"��JTz+7J-頛���`}��鞴�rWvx�Ԃ0���گZB�=O<W�J��ͱJ4� ���S%��p>��ͭ�d���ո�@�>�V/��0��p!�Rǥ�m�1��ޕ����z��ݙ����&��f 觜�z�R'o<�3�l���(ܤd�A�f� �2���Sƒ��\n�\V�W��T��wqϭ)b�����C��<c�)�G��~keB�-��P� O���SX��]���6Ӏ0���ȋ��s��t��`u��i|�v��bX�g0�m�c��z��'E%�3J�#E'F'�J�q6A\�q�]j>c��S;�=���E�ޣ�5�O�@�ڣ��u� m�<V��E���T��w�i�C9#?�=̈́� �E:��yN ���鋸s"� �i&6���8��}���I��i1�Ol�N��%U�9i�w^�67R7���1�є!W�q��Q�cr��W%L�Z��'g�ݼ��X_\�+r���:v�qҷ"�Ce�t�R���9=��J9{�!�U���/��:�U�����drF��s���=���aT�.Z�$r��e�oJ��r(���zV��st1��;qҜ��yy(CcV-l�c�f$/��w�^�7X�m;�q�����c$z��2���j����6g%��1Q#b�7/�8G�\�s�?J��|-e}EO��?oM��G#H[��q�"*�qS-�Y ݐ} iZZn@3���s��)ԍ�%� t��m��ʩ�v���>���j������WM83���E�A,�ױ�zcz��#��M����s].���_n�c���E\�����_T@�����]���)����Vr$r=k��Rz�e����]�ʏJ���� KzV�!�f"�݊ӟC������Xr�{���}���-�|Մ�H����Y�n��PNTu�?J��E 㜏�j����TW��Gr0z�����O����Θ��{�ekwQ���s�k9�i��6ѡ�=�%�聀#=�����l�Ǧϵd���k�=+ϖ��M�^�mį�5�.��@y�qQ�$�/�p ���>�1pź��k���"n���O<Tr���pO����9�!���c5���/�����j���9�b�������,ڀx��8���Q�-�H�r��x?N���eݫI �G�f�!ę#�Z�u\)��PΈQ� �Vr�����.v�#�X�w"0F} ^hA�z��֎�%��N��Sz"'Q#�L�q����W-�V8���]妌�D7|�q��m12m�;+�a�`��<�S�#Xy608�s�+�Q��+�|F��ۊ���u(���7OZ�ٴ�Z���k`�8$�Ҵқf�]F���� @��*��&g+�9���q:�5��,�=J���*���+���i<�r��>��/F,C�,{��a�K։��3)Q�N+B{��s]?�a��Es>+Ԡ����=��L�"�V����YNN@�)��<�d'>ݫ����j�<18�Xr���D��=p���'$��)\�VH��������8j�kkv�,&أ��Gֻ��M�]-�Ĭ ������0�Z�K�e��P+��I-l�9�%���i�l�$�ѱ�9��R���H~˽�8=������qn4���S�CZ�� l�ی�e줤��MjS�hnl4=F�� yĕ��^_��;{)�n���:�J�[� -�NE ��d�a_*�מ-���cM}�n7�HG*�]*��V�5�p��R�7>9���f%�� �h�%h��p+��gm6J���2O8�����En ��8>���ӊW�� ��tb���>a@��V,4ԍ���GN9�n�T�ہ��V@���$Z��71�d-e��~uN�L���x?�L����w���ސjV�f7/�zMDf��n-��G((�`+�|-�ir�`I�8���'��&�T6�s��U��U~`�m��ZӫЙE���x� �+6��9�A�;���K��x=G�P�5�Q<�4��FZ���.����s�vC�Z�׆�Ց]T+`A]�z$"�r�ch$��ו���S�,�\]^��]R<C8[�Q��t�(l�����'�"�?yi�:���.���C��$�\�s�#�ҕ������|�Z��ּ=e��ӵgE�F����v��{�.[7��ܑK�#��T���Fd�t k�מ�ol�H99��Ceuu<��l6I�W<+��KZ�x`p�8,F҅�BrKvq�f]rܞEe���31 zװ�?5k[r�@��95�>#��ү���?(�{�uiN�Ju#-��Hm�B�h汼M{juX��_��i,sO����m�HW{�p�Ԛ����¯�Y�{$z/��m�;Lm�=1IQ��ib����ϵ` z�|=��3�U��+�ԣ����"WS�� ��W����:xgD��u� �������13���Qѹ��V>:�d�Pj�I2Hq\��yy}pg���u��M�=�{��{���x���ֲu�s�Ӯp:�/���|'���y0��k����ZHT�eQ�z��%�4�w#9��#9��W�l`pz���:�6�fq� -�̥x��w�x׳:��R�դ%T�S,4Y\d� q���S�h7��%s����[)����$(��{�O�Y �r�::�����Vu/��J��] ���� �R�O�m�P�2s��e*���y���J��n1Q��c;�������v��z��Y�Wr�N����)wf&��4`�sڨZ�I�[�L֦���A���f�.�.�,q�錢���Bk?�%88��z�A@2,2j�ݐ�#?(�Ȭ���Iv�� �IlTWs�O0+��w*Ŭ�c����zù�+.��{��,/@m���}�O�c>C��~��<���R���s0j�*����i�����Ұx��eL�&�A*��G��>_߽q���-�!���y�-�e8�Vr�0P�;�.���u�S��k����B��D�"��*��֧�{���U��R1��&�G8 �W�i�"��, >�֜:ޢ�p��~�����t��]�hN��⡒�p8�?��/��3��1ҳS����84}c���=<�^wx棷�C'\�S^w� �\�<��+�K�p# ���g4�Zrv�8(�zť�f��V���'>��x6=KPU�x�Hޠ��lm�?��:⽜>�Ev�*��aa���~Էq��c��Iw�E�E�k(��΅͌Far�⽪8A{ۜs�I����Y��< ���`o��Vmm�uM:[�X�H�j��]���έ4�s�v*q�C�.�n�I@/Ӑ1V���m�a�nDڞ�gk���`�= G�x��R8b����h�ݙ�;�Zs�j����>�Su -a����,~oQ\֣�k�*�[�'OLV>���va��v��'�p��d���V��X�g��5�id&�k(�"��R�^�m0iئG`b�K�fI2��@������S���Ӗ�!�0:��ޝ5�`dz� s^�Ʃutw]8sֵ���#�ViO\� �^�{6{���T2o�o��)҆�Y�,���^1�>�ki+�u<rV��/�A$M��N~ojn����3�����}��V��l���6t\�f�}_���V�� I�o�x�SeO0����5���X���=2}1�,��9�W�]�M��v�I�=Ѽtg�I.��C��v'�m�.w�a� ��J2�E��6�E�0�c!O5J+�m��:���]}�����dV��Q�e�zU�����d��4(U�d�E�7�A>��00�}kϮt�Fȉ�o����x,�(�R����5��ui*�H�T�2�_je��7����v5�6ӆ�#�U���ى�2K���g�,��v��k����c��Ză*r@���j��=zQ�M�;b�6�ˎ��v�"�g�=*K�1��s�Qj���L���O�.P��M�1�s\�x����W��Z�q�WwP3ɮ?Z�3�8��rԚH�cF]Tc>��_j��5#(����eڇy>g��3���?LY�̼���2��t\�pF3�Ҥ:m�S�&�+]"T������0�� 2�#���$��s�9t��[j��+R�ES��>����#�ҵ��Å���1["���2�Ubg$����{��0W�ch�Q� ��Ҷ$X�3c'��o�e�q�D���SB��QG�N+��ڸ#�H�,LM;�#�<RTbޣsf�qX|�@��W�<7�ڈ|�W]r�6R�`w�H7Ĺ&���ֱ<���~x�b�ÞÊ��f:}�[�!GBz�Y*�"�'=ꎻ��%��?�G�F\�N��d"��h�(�j��^==��ےG�e[�\�,�� �kZ)�M1�Ȩ��4��M=��w<�s��A�6Q{b��ڣ�|�UI�}5ם�bs�9�����Faq"������ 3u5�ujF1(Gip���iG<���)��L�Y>V\�f�u���ebx�Aǽy��_^M��嵴�;�L�һ�Qq����ksJ�C�𦞓�]\���?�m��i�Q\)PI$�����C�ӃcO�J��������x$���?+8�ʾ¸�-9b���'b�<I&�t�v���9��8�t>�J�Eo��ifc�Fz-t� �+����U_����ףiΉe�+�c�ޝ�=LjUiZ&���uH��B�M���mm�gE+9�^�]��͔�3�KW-�_���Mq�i6�'�I�L��F�П_jג��V��:�r{"���W������i�#Qֶ$��l���K�n�*�QW|aj<1��ڣ-�ޡ)���bx��9�W��+�Ul�g���b�@���v?Z!M)8NV��Jr�R��Lkm;�7���?p�������V6ڜ:�ŝƒ���ɑ�a��@����!1E���Ks'u$��,�J��{���� �]�C[�H��?����U(B2��� J�G������/iѯ��:�D��$ؒ�摻���ާ�|M�^�mB�+�%����#�sd�'�Vu��'���2]j�O������p1�<j�[�i��Nw7�W��e���Z�]<��x�X�p;��zб�#��n澐����f!�p=+��!�IWi!�k���m�v�l%f*1��4�Nh��)F�>�����<y�l�x�]���TV��#���8��4]f��E"C�^k�Ү�Q�#�\��:Ȏ��C,Ӻ�''��f�K`��8�b��8���5��t�ʏy=��d��Y��5�3gb��{��j���8�Z��<1{�ތBQr8#�zN��4� ʄ�=�kh)nK�g:�]�:� �u�Wg��A���Kɜ@\C��h�vH�d�1�h�*�!��J�nfʅ�"�x�+��W�ڱ���j�@���:�ܲF eDQ�bz}i�� K��-�� 9��H؆w۷#�5�}�$���+?<J��&��/0�mׯ-�)9� :k�Z����B��UojD��a}}�H�V=+?�z\?�m�'���P�����,���ŤFV1�`1�Z�M�y��C��/�m4k�,vJ��"����a�k7W�&���n(~����uq)yS�?���kJ���D����D1���)+3��6x�v��xH����M/U�ZM'������E|����:u�@��[�y\�"��&Uc���=�^�%��F,���:<2�����t/���s�<��#¿t�x���X���d>r����A�hҔ۷CwQEjy�džo.4Ė������Mc\�Vk� �Q⾎�g�|[�o�%���$��!J�Ӛ��~#i��g�<M����kF�q��XX�������ϑUX�<x$csb��K{���M�����Z���]�&��ѧ��d�=��I�j�u�+0������xǩ�{药kw�<���9/ݠ�X�h~)�T�..�_!�~u�|I�V��=JK��ٹ���v���c�7�g ]���XV�0�=K��9j{���E �4<�:�zVZH���y�?B֚E��'k��/�[tss�5���86u��ǸxN���h��{[��b(��<��*����@V��x{֣�W����H��7{\V�5�^Y����TrMrc �J�j�g$��+A�����0>����QF5�����MTm&y�s]]��d��}��1��8�%R�cL�UXoA�1늒x��MŰO"�o�U��ְ��K��b�����ޢ�:��H����eI�����rt��]����D��sӎ��md�У���[|(�����g��\��c�f����Q�= z:������j�4;6]�t�7Fr���p^��I��=���tl�<�n�Lv�h��J���d��px�赸�����/<�� ��V���\�� t&�5%�=zu���g�ST�Ps�C��*A8�lU�M�:�8���FP[1U�B�䊩Q� �<��Lx��c8�쬂��N}�Vц/7�G��(mcq�oOJQ��S��q7�{�O������;�6��@Ğ1]ư#1��4��5���I8K���#8#�^�)��w�sT�ƚ<��D�..6��#sm�^������f%���a�ڻOO����sB�Fde��덱�5��� ��S�����A_K���am}Y�T�β:�CHт�4�\���5X�j�����xcq��1N��}�P[�u�Y��gs�����o8h�o�����>��y7W ~�P��'8�_����E`4���.�t�'`�K}k�Ԯ$��6��2R)I��{�Z����1 X��ޕ��\jj��S�ʵm�+�6ܺ�8����~U�y�0¬P�9��Ф����"Gf����Ny!���ra�SW,�e���$�R�r(�N�u-�_"f5l����Y���]�+�{� �����rѶ�ʰ�J�+�Q�B�Qx�D�r�����u֙���E%����!�&K�H��"D���Ҩ�zd7���ݎA"�+�^�>���Di:(^��5�z>�wm}x|�;d#�j��i�Te{�.�R� �V���m��ԕ=N;�T}յ���a���x�Q7`Vr����E\z��u� HU~p7�T?.����2I����+B�>�Y���#h'�����fВ �P!*3�p+8sI�[�Q����l�H�L�݂q�5�ki c���k|P���aԣS�\�:�Y~u���>F1�5�S�+�ЂX��G�zTj3Cr}���1ZwVP�%��Տ��p2����T�.�Z�2��S�u�9ف+���oܕ�m�Fܓ��Ou��U�s�����P�ܡc!�:hU%S��_�֗�)�Dvn\��U�������c�׆��-T���[�u��d�5{_��q�XYl8���X�5fe:n:��x�W�6����6�9�[¾"���.�%RH��+#V�����Ioz�����J��(�� CᗎŕڻYLx� �q�������۞ͫN��� ᵽf���$Sҷ<a#���0�%Pp�z�v�'�r�;��}+��Eғ]_ �8����Tw�1<pj��/���`s\���Fʩ�>�*[ˆ�>0+��i����q�He�� ⣻R~e��"�%X"fw\�M����n�Da��X$�J�G�o �� �pqt���F�q[ZE�Ѕ�iב�n�Q�#ס * ����U��[��nj���0�VA'8���VRc����R��7Ev^��v��Il\�Ά����{�����[��O\�-�������}��v~����N+I&k$�4� $���� »�o@+&��V�5�2���۵6��K��(�5��'�fi-�I5�H���T�������ԡ�%���BҴ�O����ku����p�q�D(M��D�%�G���Yh�:��.�&���2eT���o��:<f8�!�d:��G�Q^��Y.e0�v�'̯c{T{XmMķ�d�j�&�5���t� .��l�1�[�W6���mnzs]n����Ӽ�x�G9�e�f����U���� ��3�į"�-,�7��F<=�x,��H�@�I����|E�[}~M;Wg��-��Rߠ�4o+69T���-�k�Cb��.�g�XW�5<��ѣA�L�������^��N��K)��G����fkz�ٴ����R���F��8Q��hu��_�*q����_�)��|Ҷ�NȜʠ����W�-$[���?+%��ݛ�� ���)��E�]#F�������5#�滿xj�N��M�������Hs�v�j�z��._ xz1����3��MS�c���j�9�E���>����n��t�X���C����[���.�X�v�@.}�JG�E�@~�j�)��8�c��i)�n.O��m��d�,�G�u�h�['�N�Wg%�zy�/N��V�ǫ\Oe4ҍ���G\�=? �3��V��^�������R�2QI�3ПnkX9����ԉrA{��ϳ�W�?���B�16B���[��-����m/&�������g��T��+�u8,�I�Yj6)0g�&��rdx�!o�X�!^���1��}�.��$��V�2�s��~[~%��xz�^�X���V��`�=�*�����ñ$�����Y.���h,.��m(��W���>��x������5y��0-�9Rz�G~ܚ�_�_u��d�akfO��cc����*^v駆m�I�γ�����kq�x�پG�����{g־[�N��7�4,�;����Zw��'���d!#p��r,v�6<��5��0QK�[��\��SVC&��a�6Cd1-ޢ��u'P8>�,ք]��v!T秭D�d�2�0���r<�Q�S���6�PmJѰf.��wZ˵�_,7PN8��*"dX�����1�Ù�N��/"H0I^�Wm�]�p鵏#<�?�� ���z �-�9 h�_�.>N^-M^�jz���.]dTe��[:����Ȓ=0�Î[�5�X�&�24Q�g'=q[�V��)��/200�9��5���C�?�_�c��i�\�h�'�g�֎�um��w|���?�q����>:^�c�j��&�^RVH�8z��o�� �n�4�(q,h�u��]npJɜ�3oTz�ݤ�u(�d9��z�͕���7��O�u�Ҽ�Y�W���&�im�a�����A� `���}B��Y2w<Ğy#�7Y����|mf>�k�����H�#�s�\�������]ۄg�~U�� ���i��$�T3��56�5��dҤLN�=@�a\����RIX���v�5���K,��H-��x�Mf�ė�N�<ħ X�Aiq+e�坠"��z��k�-��u�3��($��҇q�X����o�g�#WSu>�X�����5Z3��+?����V���%��a�S�[K-�rF��#<���>|W�uhmu�#�鏸�$[nLX��y$�끚�J��̇8G�皍���Q�"������X�Kwq��*�6F�_B�|5��oO�������Ce{o�y��UT��w�����?x^�����T|�YUs�A\�jU(Ξ����T*F{2��r���Q�9b��,�ev'�Mci�C6��݉�W��J�QNsӷ~��n��wY���Fm�/�[<�ViX�\��Vg��M� �=֟_����;B���7'�#��-t�N���l�v�8h��2y�Y�Ҵ�e�I�+�@�o����h�åZmj�-��]��[��KY��|d�E�{c*K����5?k�c ��|��>������b�C�G ����#�n1�'����w_H%r���PB��f<��4�Fޚ�F���~gO��ג����XYi%�ǫ��+ʼG��Ӷ$/#�[s���V|U�G0Qnv"�A\���<��ß�ִ�M�ޑ�(Ɗ�QZ�r�;~j�K��0q����.6%�#�k�I7�ׯG���"�nI5���ݮ��$W��>�'�Y�\�&��O�� >��k���88`ן�a]���%t�g�hУڇ\c�V��٤� ��"����)" ��rz�uX݂�ۘcoLW�N��&�=&�F�w���`�>�=�%㽖�Ώ!J�{�jȽ�~��\ﴩ#����A��Mέ��%`�/#�\�i�" ��08ɨ�#��)�� �, �r85r�×zO�"}@��~u9:�O�'�7Щ*Υ��s�[��PKv�}s]::�����h )�3ް��gЮC����p>a���>ga��=#J�P��_��+ڳ5?47e<��=s���ū�/dP��*z����u�ώ�˫�=��庂6�Ek:pQM3��fz�1H+��X�e�ej���v��ҹ-_ėA�@��=x�䢵!&�; B�%��q�@k�Q�2���pڦ�w#嘁�{�\�� Č���\Ӭ��i����m&œК}���c����\qN�;�M^��n\�,^��R�Gw���&�1�z�q�e�x�g��5.�*�'h�P-���� r��[�ȷ;MA�m�����W�w_��b&��z��5=a,,�����_o�J����q��]V�8��W��s_I�e�֕C��bR�<'� �=r�������6�cI�]�jR,�(�P�R{ךx�ƾ!������^�E���8i���h�3�Or�!?6J��^�9���+��y�=_���[�}OZω�e��A�+��'�+�t�"�I�e��ڵqoo� ����mV4���33l��E��Q�?zN��Ԕ�KB���J� #��3PG�C$�)C��s�T�YdFO$ǹ����jd��N�{;y�s�����3��V՚�N�9#5F�����w�Z<}��U�%Ӯ�'3�э����+���.�ɯ${���w��W>��6�f��6�iV<]��� ���&���Y�%�����,I� \��ox��Ǣi�����j�;����&�� =܍(<�%T���X{[�wR�4���o��)����9f<c�{�W?c�gY������,���8>��_�;�/ �:|�m��ߗ�jΛᐑ�mmɺ�8r:�j�U���$�.p��5[�/J�%w����b���q�~[ԙ��ϥv��< ��բ%~֪~�8$�j%����%�b�䁂}FhTuW�]*����M�I4��rX��G�"k����6~i=?����xr+��!i��HԺG!ۿ���U���Ɛm�In2���u4:r�|�2��Z[YY��Ƃ{�0Cr@�XCӮo�!���B�*�*濣�s��/n��ٱ�0~P�u�5�h�/t����z|���,��u��' T����� >s!�#�O�{E��][��]P����w���id-����q&Hc�W�M����-��������wN1QVJ���]D��G��}��1�("5n��ʱ��V ����G(%�q�ߏz��X��:]��4���� k�A��_�R�m�ֱ����@�rF��ukWI;}��T��_j����FԘ�ʧ�ڽH<�ּ�4�mč�.�[�/w�[x�I�,��pKI���Khu_ r#.�$@2Q���rJ�O�m{��"A�J�'�;�x<�w��O�:�QӓP�Jf3ܹ���}�kv��9̣�=���o��<�Ȩ��z�V���]_�kIn�]���C�r���v�*r����<�e2Z������1�S��i�^�������C�C���̨���5��h�X�齞ɞ�L?��%~��_�����Ϧ�I#���&ݾ������k�&��G��g9<��1^�Z�Kc�ܕS������7�� ŷ�7P�d�W��w�V�*Ik+F��{ ����t����0�)V^&S�GC�zW �T��>,kL��KrReFL�/\��f�|ƚ�����.�#�����ѫ����I�:��*����0Ea��1ּ���C���+��[K5�3)V'�|�RJ���%�?����"ߍ����o�i������種7�l|�^6�$�s[Z=���,[�� 3��UВR�&��=?Oif�����X���%��fp�09��']���2��z�����u<8���h�g_���=�mv�?9%���g��CP����ҫ�Q�<��F8=+��ci�Kis�r6��\u&�:"����}�H��<��5�-�p:��M+�1�zg��Diڪ�\@d�O#���)S�R��ѹ�[�k��!0�a�t����ZhGR����zc�k��5�5m<Z�ba*g�s��v�ƺ�4���Wj���5�B-�s����V:o�~&�/�eէ6�8�?���_����L�V7�-�l�,}��x,k"�c9^j�����Ӛ�U�J%�V����kW���n&3�~Q�ZRx+Q�� ުJAx�@n��qJg�j6�d��^�}�|6�ð����j1ۅ�!�F��$q�jt�:m���o����g{y��c�L��Q��z���_<�:�\jp5��Be����:��:͇�N�e�]���;' ?����x��߈-��֯��"�{����\��í��))i��u������Aw�i5���3�0����Lq^{u3>�>�5��=�bO����Vy�I�|�i�����7�~���e~�CXμ��}�Ŷ��o�t���E�x���uz��z%�-=�u�{�zW�iZ��[�u_0y���ijض�Q�+�m�k�ԼC������y�5o-��UN ��)|.���6��&�� �Co����=��R���������{"{K+kf|�̧5��ڶg�,��1Y,J�@��X��v�Z�> ��j�֕sq4���q�++�:͂x��@�\i�4(�Kj�{�-����u;���B�HTH�����*��ե�֝bn�O1.⺄�s���?�Z��5���t��m���g��u���ynJ��lq�4)�r���N��|�B��'��@�]B�t��l7�>���h���ɦk�i�S�<7�{W��ך���vrx\�J� �C���_���N7.�ZB|��QԥA��dz}�ޕ��ͩ��A�����&�N���v����b$}߽|zs^3�ω��d�8�i%�e�s��k�5�v��C��ܮr���Mj���U�Q����<�!�9�+5;#83�˿�\�ư�vfq;�U��6Ms���$��S� F�`��+�i�hҊ�9�kM�=�=Vt��g����{v�����>�WR�]�c���V��t�̓c�7A]��8���c�{D��u佷����)^ ~�%����.do��HT��֬�>�B!�_[^\i�"t��c�꤂?J��h߳����oj�:�Ϛ�Pӷ��Dlcߊ��5g�43�����_����u}N���O�G'��,["F�� c8�k���kt�s����t�_@�w��MOFkm3��[�K|R"�}��º�o���--�M�:e�k4wQȧ�s^mJ�*+F:.�����O_3��M��a[rg��Z�s�H,mp�0��g!��ڽ{�E����o����eޙ���{�YG�\釦�lm'�(�_>�%�Cd�/Դ�c�-'wX��̆VRX8zq]�Si�|0�&���$�asn�F�8��}���f�?��G�S����n?2'�֣�|�-��%��Z��r3�8<c���١���K�������A�i�{0H���$��*�[��u_�7����ſ��3(�6���l�rq������t�4H��6v��eH��0x$�2k�д�u� ��t�na�q�$��9��ݚO_��4q�����i^����}N���r\�8]���C�u��嵮�ykki%�ɑ�Qf��eG$�&�{�v����m-�����B-�x8�:����}Tҵx���]���PA*� -��v�S~��]��,5 �+y����߆����#��G�����sc�#��]w�_\�-����Е��$m ;?ƹk�E��Xn�x77!���}*[��%tR�R0����+`�}*ƒ��<��& 9xE<�@O=�ԑj��6r�#�ȓ=��d�^)�S��3�瓊Z��b��������1��P[ܴE��Ǧ~���&���UYo�o��iQ�ξK<����k �1�ǞX��|�E+���'�m��(���3�E�TjJ���ƨJzr���O�^?�M��y2=��@o4�-��h��a��ů�x�U��V���(�q���1�H<��5���/�Y$,�� Rk��Җ6��VB̫���-���0�OG��k��ť�Ms����X ���U�u���"����M�m�s��>������E-�͆<y���]^O<�͑����q�#�/"����jz��b�\�#~�K�e+��\���qw{��g����eqQߨf{�B��+6}@���$g%������m���V����#���1wbrnjV|w^dϾFڭ��n�+=NzU۸���3j, ���ҷ�q��J�m�脞E�,c*���b����e�Y��EP��L�:2��y�c?A\�<�ZG,ǹ�G�{�E����=_~��ג�Ld���c���T#99?JXz���zVIY'�����r�;@�y<U�:�@�{@�e��Kg��k:�R���Դ=G���ա��UD�@z���:����\�X��en1_2�n�#��Y2Q$˞�<��گ�|)wਓM�U�6�L,~tlt�^��Y� ´\o��ak)GSw�Α� �R��`�e\cw=A�����g�����j���V�J� ֛,���T�0�����cY�[��d�+�a�N��6:��f��O���?O�I��V��)����=k�<#�����K�"��;�q�WͰh�]G<ʱ*�����N��Q&����*�9�]R�����I=�Y�,�������@O���ڹ�x�mm��Q~�6Er�zƌ��2>r9Ϧk*�Ķ���lM�#����ݣXӖ�Mo<Ҩ\��<����*ӵ�V-�^��x�g"����6��b�8�����D� c�t����#����#�R��}��[�*y�3�]:��gl��v�Ĵ�\d�y5#vsFI4�䍱rGqVc����<�u�D�N�x@��W. ��ԒOJ:ǞZxm���c5�g���\dWT���y�����^�ST�%�l��M28��*0;⼷�������t3�w`%d<������>9��~0��^]|���W?��{�/�+D ���j$�zw�rT�c�{ױ��(������U�>Ǯxu|;������S����V<�����G�u��^;��t �4�l�S��h��������m�)t�����v��:��+��e��s��8�NBM�8��U�995B�����r��/kS��~G]�g��>ѭ��)#����B�T�`�� � �fn��T��F�[������F8�b�(э��T���#?�ZUޥqv��0?�����������u��5��ޛ$�[�8�&*�F"�K�`�zٲ�4��Պ\Fφ��A��W�>v�O��S������BY!r~y��Ҫ�7��s�X�!�0�N�ît�d�߭�i!%��ĭp�zg��5�m�ǩx�]�&��*�:$q/9$�q��L�)JϠ�0^��F*�$ǧ�@��3�K��+���u{H�x�ç@w��z��o�ې�/�=�z3�ȴ��D���Ԃ����i�1��e%�}a����v�M$�6���Z�z���w3�<��3�|�<H�nᶵ�[˻�0�r�s�H{WU���s�LQ�,Sr=��%�{�O�����|Os�K��X� ��Ƨn�=@8�o(��������;��铉���{��$����Q�J�+KK+���9V��ż�)O��5�%IoĈ�a�A�9����뺲�:l��"�K�P|�����8��:t����9��z�^�,uSJ��ݵ�"!�w������4Kk8�e�X�B�X���{SfҴ�{�[Gh�L���7�{�O$�͍��#�ǖ9�����JR�zo���)%c���y~!�jq��4�kUY�l1a�ޜ�M�=SH��S���6ܖ�#��*�ٻ�Fr�c=D����D�yg�#P�LD|�[pڦܳ�M�x�����wmc�;\��e��'�qgt�#��� Z�$����m$�S�9�� :�=��?�mB ,��y-f�y]�x뷽Vm"��1���;Y�w(a��Þ@��*�M���֖9{o�� ����֮c�4��]i�fՒ>�g��^� 3�>���ƞ�#ۀ���䋌3`����A�5��4�cc���>W1ܯ��_��-u��=6���s�}i�,�=�}iFxx�u������Y������5��5Uִu7����ݑ��A�J��I�4͗����q��%<ϥ.��u ⵃ��.��,�F"'����I��{�*[�U����s�P��Һc��}��>���1�{�O� 05-3K���^�چ�zŚ4�b��j�С��f�yp-Vk�&�����O»-/K6)s���Ӯ �2s����?M�� Q�Y�|�+��ڲx�nI��g�E�2�M�_�yn��Ht��6�����<qܻ�G8�}A�A�Q������ңC5с���7o�q�+�<I���X�ӧ�+m*�����/�^�<E�=T�Z6��Ms1t�g�{�4����v��:!NW\�.eZ�:M"�ь��ϰ�I[&6�r�I�����~����Q��HF�5�1<�۳��G�4�/P���F�tk�*e�*��Ϝ��gh�ҍh7d�*5�G]���]��Yn�s$���>��C�g[T�!��ܵ�b�o���8�k��Q�x�.����Paܑ��]�+���UdicfQ#a�Oa�㞵�a��7�qUW�o#�~ۍK���i�6�)�yʓ�=Ȭ?�~����f��y�ooo������~��|�_�-[V�6�i����;��~���'�4���^6�vI#�\B[���@��hލ����~'U7%98���~]������=�g'���V��SJ�3�$|��J�-s��f�f�5�oAe�ח����Y��kxЎp:�ֹ��h�6�+���9�8YG�i[� ��ֱ�t��o��2���-Ұ�����g�.�[��"Fڪs�]�6��m�F������J��G�iRF��l�.b���U��5-D�Z",�q��W=�cB�a��f��-��Q�k��b�g�>�c�]$���f�{��O�j�,ӎ���>�:]�\˫A4i��1�q���� {���^Q�r�/�?_z�R�Y�������D� ��9�s��py��f��\�O{�X��I�b)�s�c�z����ZM�1|���4]F��Iekq�s�ȅ�I�<��~�-�o.!������9߹��+Sg��Ϋl�,�-�����6����'���y�_^ej�\�Mb�cO��)��=FGs�B�t�-˖J�3����~�ݦ�ү��[�4$�����pdp��pO�Wm�뺤o�Xjj�? �J�ĭ��ǏS��~��̶Z<�X%����p�>s��Ѥn����T�1O�eÙ�y�ֳ\9�$�I��#��lP�;XI2������$EHb}��u�{���w��~J�K�(/���}��q�o���Ko<�C)�q.y��G��I(r���)9m�o�M�0����TZ�%Ub"@8'hϾ3]���C��|�����w� K���>�U�xG���-��ܖ�B��Q�'�C�*V�����^[� ��$�� �!�f8�X�r�L���1�����'����OZ]��UfH4����I=Z�|G�ξ�o%$�39n}�#d�����|7��d��?}��N�I��M�u��J�Ӣ���H�[g%N�3Ȯv�C�7�T��I?Z쵿�^ }�PE�� �?�Z|ˡ�\�M_�4~�A���X4 W±�2�.#��'_^ v~;��5��K�i�&�����'�|�x��:e��}B�!��@��nk���������1�_�1�k��:ա��۶ֲ�m��eR���Թ{߯ɻ~�~!�&i|I}m,���x}y�u �I0�m�'��j�����VG�;d#�+��� ���{��$sԳ]���5]�i��' K�_�c���H�ƋhK�<���Sӵy���P�2<�;'���k����2|�x�OZ�C�c#��>EF+�wg5L�KJq����.or VB���j��:��+=�ȇ8Rk2��I�B*�c�տ��!��d����{&$��<^3�}?2��y�O0���EX����������cm��FS���e^j�7Ǵ��;r�#*ؚ{���4/n�c�#�#�Ȼ��v=�늄��$���>����6xX�ƥoui��P=�K�(�3�ўzc��V!��C��n�td����Uf��y$G��Pq]&��^*m[��[�Y�qQ1' ��kJ�VR���#%sա^Jڞ��uR�R�*�%L��ii���2��oO��{aO�qZr�!�a����D���9� 3º��^1���ќ�����O��k��r����ϵC�<UL���7�|��4;�#e��s��V�t� nm�pq� r]����uF~����G�����]=��j^ �Ծ�w��t�g�*9�U�;;�r�N���hѓq�p��~ Kj3��5�����#��x��Q����l��f��H�l������79�$�'}���?�����j2ɂ���7x�������1ҕ&�cϖ)�9��r�az�<���Jm/q�8+�i�r���-��Q�9Lo�t�=���0��H��Ԋ�<2%s��N}*����DX����a|���Sׁ��j�8�Ҭ��;�_�-$V*k�k/\���G�Y�s���~�X�m��y�_{�����mU9�p}RQ��Ռ�c��k��e� $�2q�ͅ.�'dS�A�k��#�1�[�On>���kQJ����?�z�.մG-Z�ܩ�;x���y�\fG�8���t�8X<�G�#|��z������I,��w��f˦���doʽZTi��)��b%�xĻy�k��g B�7����{wuw1��i%f<��44n�2���� T�Q����_�&E�y��I���^F;�Tu��.�̅x8Ҟ�i�H>��m=:�.�3�����2DbǥX�fn6u���!8�S�1��{`VrN�D)�����ܺtR�G�:�]�x���Q*%�1#���^}�� � �~����ϴ4�ڼ<m7y��>� F.)B�Go��g��*忋ү�k�6�{T�'v9�ʪ�n�8�9��֔��v���j�j{�����]Y�����qq|�냀+*h.%q�I$$�z�W=�7�b����U�K(Dh��H�8b�+?B��O�ε��ߗ*��5��Y���Y'��]�X��p�����/�m�viT��WM*�r�\S����C�M V�^: ��A@a��w.�w�"����e�/�}Mz����-�A n%�V-���z�t<��p�_,W3>ȶ�H;O5ji�8�;�R�Lj�XTcӊ͖��,W��_5*rZ��U�+i�*�Y�ӡ�T/���?9��Ҟ'� -�g�P\�9�ڳjIX��w����$������bą���M$00�\���w&��Z�9�qjB������y��%iV1dԕ����i��G�;��ͧ۸TA��:w��ƻ� ~x{kE�Q8�]�A�w�\����r�^#��C���0��^��~�Z����}��o��j6ְ��"��=�澊�\����a5z����s�<���4���{œ}�rK�I� tg�c����-�`�d��6����_���A{��k�����Z 7ʘ?�}k饐�ۙ��/L�=y�����Q���sf��C%5kX�BZ�@ ����\���?�o�FB,�nO#�����agE�:x�����y��Z��7����i�Om����������ir�����~'�l�g�jwW��YI&8�q���5�[i5L�p+r�e��Nru�{�i��[��}������s�xE��fԯ/,�v�K{{�c�o�O&��]Ֆ��$ӻ����������� U��#��ݏ��$���������t.�`\�Od,8,88�V��^�Q4�M��a�73I>b+It�]7J�4KK{(G8 �܀0*jѕD�d����c��w��ڳ��:l�U䨟�F@@?�<�u��ͤ�o-����K���z���k�;m�Ք�E@�����)���'�j���I�D�X�~g���F�n����.У,�*m#$7�{�pmCG�O�yow$�8bᑏ˂>��1]�����_.�q�n��(�i ��yl�H"��+�����wS�>��;��rs��ҹ�Z�m�+��_�D56���C���A%��n�k6�Kt��ȡ]pC���4�kW(�.0���Pq���*��������f o������6�� ��ddw5ˈ̩+E��血���k��y��c@��Bc�s�А�˔`9Vۀ�Ұ��/�b� F<�3V�m����,���>Y�Ii�88GY�e1 ��,s�|��f��LHI,�I<�l�74�H��}�[���(.�1�w5�=W�e5J:#&�2�(��V�O�FR;P�8�sZ�}��6�=M6;�]��3�i�.k�)�\�T�z`{�V�s4bO1�rU:�ba�U9�Է��7#<�5%}H��z"�q�|��Z��d�%���۽BW]�ܑ�U��ʇ��M>d���F�ei��m���Z[~M��M�H��s�������i�;Ԫ�ԧE�ή���Ho�ݎ��F=qapw䎢�G�Q�֑��g:n����?�fh�d#�9�ڗ��˴ϔ�������t�L� ;���L@>��'M�Q��V��zZ]��Ē�a�k/�j�~&��2����2X�:}k��V\c��k�:+�˅#�:�O4�`�xTJm�G�ߴ'�G�?�WZl���d���'R~��t��5)���9�.���by'������߆�w���^&��=�x%��A�_��HG�wB��qb�S�#��Y���Rn2���u��|Ic�$�ڻ��7����b�A�q6ז�I����=�+����v�Z�'g��?zW��4�c�?�W����w%� !e˪����w�k�~��;)���A���R��wS�+��OI�^�]��rrG��>"xWP��͚ݻ��3�ZὌ��WI��ԝEO������ �mf��1\iL�G��HpRG#�5�i�x/S[e�״٣��4C�@�n���f�;�e���ң��xf��#!ᔑ���*p�M�N߉ڕ4U"~�x}cE�?���;��ġeC�5[�^+�.����"��R~��`4��H�����x�C�W��+YT�����k�����a�|�|UqtX�?hU|����I��9a5o��6����\�Z�x s���߶�J�Ԫ�0M�8��5�|Y��֯�l�;�ţC-h�Fd�';�r��=��?�������Ǥ�m�ndzc���Oڛ�6��?��)C���0���I��ע��Yp��)}��Q����J�Q%���2�n�2P{Wa6���S��+�Z���k\��G�zW�v���mu��SE��9�;`�� ���i/���ߛ{i�J$d(�9�O)�(��?��e��{�Kz_���>,�@�,t�/�䱆?i�D 8�'߭G�oä�q&��3�L[�`�Y��_'����튼+��Fa��5_���� a6��^���������cb���K��Ab������䏬O�mF�MmFY`X����K����YvW�v�r�Mi`�O4*�ξE��o�֘�~�� A�G������j��ԧ�7sLX�^Bs���=Y�eo����R���[�>�����X�L�j1MqԈ���W)q�$��lดG�Bp�=��������y�REwu�G������8�YjB�!{(_�{����\��������gb���(�uW���a���u����C�3��v?�9�S]�\�E�E~g-|ui���� qv�y$wn�c��5�wpz�ers���FF1^��J��)��=����;�݃ޓh�y�y� �\G�i��{���,�##�2h�w`9<u��.ݗ������z���ov���m>�!�}���C�*�����f���3T�G��U�%lμӍ켃%��4u�=;�;t&�G��n�R{s@�?� =�����A�4`�h� :Uc؏Ƃ6�0I�����$k�=�K�Z�HS����!��$t�4;y�'�O^8��x1�yQ��Oz�=���X����ו��S^�o ����?h�QXά�#�u:~���|�8&�����< �w���X)@;��x����=E�%[x�l��<��X��9��ƣ�k��1�[�sY�S�%zu�E�eh�e��W�<��j�k ��G�˿�E%��\B�H���}�������E; w3f�۴�\���q�H�.GrOJe��5ߝ���k���s� :�Sr��$�F�DU�:s���*���*�� �=����۸f�O5����:��v���%KS/L�ί ��T��j-b8F@Q�:c�U��@�]0;)=���Y6�>����K�����,6O�z�;���yQ�5+ġ����\�ͅ`02���S��k�-����Z>����F]����� F�9�B��2O��M��\f�/�[Z��nm�o^ա�h�1!�}�ǭrw2J]'�!��Ezw���gA��8���p�f�̖�I�;h�D���7���{U���:sDW��Å+�W<[".������Ӛ�4k���-u,�(�鷃���R��I�ʵO��LH���@��u����l�����?Ͻ{������u#o��Y����8��c[�}+��z��dD��䮏��� �l�;�ISo��+T��f�I���>լ]沄��Q�yg��f-?V����ٝ�!B�kц*�~8�y��tg�������)2 �*��?<_ᴒe�k�W$2&N+�5-6��v��'���#�GJ������1� ��ں�<~T�����*� ����9����x�'�z�A�MliZЅ����>��/Rs�(��I���xTVg]έ7�=7I�5�Pn㡧��(�q �F3^``�ӂ���aۻ���?�����h̅\�ڨj~=����<��k�17�� K*�g� R�p����i��읽�^ ��~���Ƶ>xn�Ş"K/5���ĝ�s�k���Z�c�a�m�����f���R�_@8Νi-M$̤��sU�e�k-@��N1���a����:�fX�a"��r�dק|U�Eҥ[�0��ׇ��;��]��A�yT9&ۘ�%����G�j�z�U�I>j�ߞ��W0֙���Ve�u�8;1���_5<\���=2��s��j�֣d����95��z��ya7\���i:���=Oz�۩l��em�ծ�n�*u5�������B �cF*q���@�J����?�g�����7um9��_)n �gw�5�`�t����p������I�]�Ho�g�ǿhm9?h)$�G�� S�s���,v�-�=;⻟�3[�=�N��RB[�k���4v}gI�z\S�H�d�� 3?�5�R|�n^��LM�����x�K�r˟/M�����e���r�C�#� ����(�ͽ���}cn�A���07}[��\�6�pw��9`W�:�v_Q{.��8�?l�r{�,d��4%�S4e����ҩ��jw�Լ��[�t̮��T�u�"m<m+M���W.�9l��8�]Nz��F 6_�$F���+���l�U&�Y�g�#���MbiC��y����O�����]��f�e�,p�jF�$u{�K��'����[Z��^��-���y��-.凙�|�(�CÃ�����G�� �L9%B�?��*��u�D�e�X����<��jpJ��,��z��?ʵ�b���_���'e�~�I��C(��y!�y0\9��Ѓ��ejϤ�Ti�#�݈F�����4�rivom�Z�;:�Ïñ�-ռS{���$�Pnj���+�Q�����ў�V����������Ė�}��!��B[�o����k�Ե۫��`G�ۀ�xcJ����yӝ�x��WI�xma f�o�;׃V�j����4h-5g/��DMw1bG�����5���P{�[Gɶ>]��f�P�%�v+���T*Q��:���;i�dC��z��ӿ����$0���U m��v�EIe��Q�$t5���#>X�w&��>Q&Lx튤51��l��5v�G���ӹ��lUI�t�S'$T�+͖#h�jU�B7�����,�c�HQ�4��ݰ��:g�O3/�%�r�ŋrz{TgTE?>3���y��$�8��F�A�3}�{��v�R����`�e��/�EV��r� �p:��Z&ѕ\�WhRq�9��_��7�Z�����������)�oJ�6��7�5g�I�f���ĕ��B�U��n��ٖ�v��N���i^yPc1�����Ɖ��U��+��kwÞ"�Y����ēG���:t�l��!p�J��)E���IA��t��;\�}{�E�kPM�p�����ޯ�����3t��W�Y�S ��n�1|G\W%�� /#ǔ#�MѼB�*�+�z���k������#'�H�Z����<C���&��Ht�zzW5g��h���u�v��EqPA�יx����lyBY��sԧ*R�6:�R5�g�S�>�<Kb���.NOW��^��|[��q=����,����½�������+ 猳}kѡ��|�ã��� ������&��y���hTj6���χ����6�%���ɂxLn��\F���N�\\Z���F��U��>��?� Q�N�{�"X�8��ǵ|e�7�_~;�ֶ~/�-�RK�2@�0H;�v&���z� 5���tӝ ��"����>m��/pc�J�c��]���)�b�˟�#��60�Lڃ������ƴLq�k`�����+�6:��ر�%�a.���sމ��:R�j��vQ�᷍H��s8h����#V8ێ�����%�`~\�zf��wY�d�[�a*�>Vc�y5SW�Ò=�]f�m��d�+=A�:�M9A���*�_,���\���pj+���x��]�ſ��W�ߩ)��I�K�Ҥ��.�������X�/���ͭ��_���o��玹�H�i�g���sm��L�� d�2��8k�6އ�i1�[�Rq�~ԍu��b�7-�=�ّ*��ԝc!�EO��wA����N~|��L2ɟ�}�I���ciE�j�Us9-ܓQ���A��Z�vsՉ�5����(T��%���Ļ5ʎz�y&r}�Ds�G4���E�:�ʲ�$�<���zю3�^��W&ެ@A㹠�<�4�y�4�=�Jb��� �K��L�K�4�Z0zR6'9�NU'�I��@U'��j���"{Ҩ;��Ҵm�������8۹���c,E8�Ϊx*�բ��j |�U����d��Z�<�T�`n��.���}1�|^���������Fc�����?QU<Com�k�7�zw�"�B� 3Ҽ ���-ջk����(S�{G^�N��y晤[���1����F� �6�ps��I���$� ��:�[�Q�dڸ]�7OK�Z����2�!O=i�C-��a"�#5��s�jIB_���YO���6����Q�F4���������kco����,H���7Cc9��+������T��:�r:�Y�9X��4՞�^N��;V-���ian3]7��Vm�C�ݿ��ݥ�ܬ�(�N߅-. ir�D��"P�G=� ���Q���q�ߊI�$g��~�V{�+��ڂ�,Mw _�CܞEK5�3a�� ��bX�2y㚇�;(>�Q@ѿw"aQF윒*�Ì��:S"�$[��������,�Y�� ��Va���ߌܜS%��=믻ѭ 2�Xb9=�բk��I^W��Ƽ�V�I8�P��;|��z~T�jU�``��]��'a��J��p*�TTk7x+�8�Sh�MLUIbp=El������߹5v�*�o^*[�9��ye`[&�� �h�[�at[O�c8>��{����Y3�i�u�3�ޒz�I���$�\��1���U����{X��P {��#���a��!�����j��ж��.��SWNⶖ=�@��u�;[�P���q�~���x�@�-����l� ѓ�¾R�u[Y .K������_iڛ�i��IS�w��x���1�3]��u�����ѕ�#ּ;�O��x�9n,m���zK�o��R�i�)o-���^���-*��Sӣ���9b�C#)�A֣K�߾��U��G������?�A���<�V���+ʮ��`A��~��E𭆱�Iͪ8e#����h�?�sK��1�2��UU\<�j�ǿoS� �%{���џ/���N=i��|b���f��x\��*����^�5�ƪ��9�E��D��?-=#��ƮCc$�V;��k����`s�cSNVoKR[# ���������W��kᮡv2��]��>Ip�>U������:�eKe��S�r�ɞ;�%`���WҟMݿ�m핏�$ J玝j?� �]��c� ����ۤ��n�sn�G�+��#�5�x�ǒ���~#Iwl��%В8�^q�]�-ѕbU.2���z狭��pRT�s��V̻����,* �{���?G�<-�O�����Y���R`Q��Ns�̓�f���d����$\G��{�M���fa���?���J�T�����QK<K1C�a��Z-kg#���1�x���KS�V��H�~��]_�Z���m���T,E<=f�g��a�� �5��2��=�������F��5�x�Ă/��ݝ��d�+���ޥ�\隅�*����P�($㸖 NWg1w��ï��M�ҵi<�y�*P�Q�+��%xO�ׁ�O�gD�a��F��].�� k�%/mu��g��ҳ�y��N�=\����{��&^��� Zp�2���3� l�%���M�U���[緱��A�F^A؊�� �Դ�����̡G���|������Iyͻ�1�Y��uu��E4�Q���o�0�?�M�>�*C���Q�,O����d�l������`�ɊR��6����KIףԣo"Edc����W�x� ��=Ez����4i���9r}��ޝ:�8�Y�'M��壘]�2����5)c� �cہ�+9�PW{���^����v#nz��Ox�����R)?{���)�(�4��Ga�j������-�29�>���bs)M�@�h`#�2-B{�n�/���������veg\.쌊��yUv��X��`� GLW=3�摥|R���-6-v�\��[�nŃp���8-�~<�My#��� �b�<�)�ȡҁ^�����'`n1�Jѱ��1�ZP�}�5�(�H�x��g���o��S�EQ�iUݴz ���H&��@s�XZ��l\��5�W%�gUd%�Z�l`[�R��=*���M�zq�jYA巖X��ҧ{U�@-��B��Z�r�s�}=A=�R�� �9�{��m��u��o0f9�b��K*��3)��5������� ��P8�����FpI��zT��H���e;kA$��x�Z������m��1��h2�j6����:�u1.�0r�=�UD�������Z:��� �'<}k���Q/�)���YO�3ZjM�i��=��TR�㎛�M��C<ds�z�;�'�H�Ғ�ay"��� U�9���n$���f�n%7`��+"��l�I�i[R���{t�}y�n`2j���,y��<�u��r�&�rx�+6�6I�Y'��.��8�]ׄ5M�F�WmlӸ`9�@3[�=��̯��ӵ:\�wDUJQ�=&�@����1f��� �A�D 8=kR�Kf+Բ�ɻ�P�`�L�4e[9T�o�H��F�MJ�K�{��E��������Q���^My�����4�6�顔^\7ޑ�g�>��N���c��R ��-�����Y�%������Ѷ��UuM�QY{dL��s�Tq�ipYĢ(a� Tn�W��"��Pu-ֽwQ8�/��(�����V����,�:}��xe�+c���^$����œ�i7���&�Lm�=M}���-$�p����'��d�s�[�4�� ��I�v�c�5���:c6�����f�x?P{v�l�W~-��!}N:W�����&s�\�z�'��#gk�h��ť�ul����Ϲʫ�ax{ƗW�k&<�l���Lz���n������j~mˤ^Dp�I��ۃUZ�x�k��}��}G�Δ����=�ңr����V�>x2��2�ms�т>��ަ���K A�FL�Ȕ�L�� �ʾհ�9�+=A�l�T�%��[�/��]g��b�u{�5k:M��������k‧$��/�~X���v������Zo��Z��k}�!�#���ʤ���x����A�q_Eh���/�.�>�BMk��?Nx�ݬ�K�ܜ�� �*9V���ℎ3H�{g�����~�^����R3#m�P+'ǟ���gk,�e�ۆv��j����pv�����ύ���fk��#�fկ�:�ȧ�:Ԓ�������^�қ���__����5��43�ڽ��??�!b�)���\��9��m�p��5T�\=GdɖQQ+�s� ��9T���Y��X��8�+sG�uqq��p99�� [����:X�s���������;��m�>@?֮y���?����`t�\S�i�h��lm�3���?}:q�ۭmi>���yd�^�x(�B�<��������c9��f�_á�pT#��M?���eGS�s�{V��F��ne9�u�T�-�K���=�i�<�4�� �q�VNґ�N���$��BUT8 ��k`�tT�� 뤱��<�$�:��Z)�<WifIe H�ު8��5t���3�>��������������b�JF����M�o=��C¾�����*c@��hi��bd����49��y�f�ܗS��k�0��t�\Ɲ��,n�N���rԴt���;�A�\��d��a������^���m �Wݱ�MmV�["d���Xw�;5�xTn1ڻ˽$�#�nj��P�iMm`��w�*o��f�k�Hn�IJ`1�$t5�I�v�n�7�Z��q���EIi��e� ���MrEh�L�]��'`#$����x��^(��H<����-�h�8$��±5+`"���M��Pg��,,�����5yzK�Pq�W����� s\6��?�ِ�t�L]����ƒg/�s���N�ذRH=OƧH.���8�sO���s�"����-���@Q��|'���앗�_�Gv��.������d-a�Esn��N ��qY=G��*�����=�d�P2�������+�Xc�Ú��#�J1bX��WVЈ��y���|���Oҙ ��+LZ:����9���\�h�i��ֱzZV�,c���+���Ek2�*�xr+�a�m���Ցh��H sS(��;=�`�����I��e�Zj�,:��)�~���yo�~��z�ya�A�[���`沷rZkc�խZ)U�s�KXZ�f2)��Cլ�p���_[0,��i� �1��%8�PX�sWt�N�襉98�;IКU��'��]���t��ʒOC�U&� ��9'iC�"�:}���{7�������Kk��i���W��Z�D�+���^{ai7��0�*y�ڦ3�_4tbn-r�}�e�Xx�F���A"J��v�▕����q�ǵy���K��0��Ѻ�+���v CO� !�=r+�U�V�L�t�)��>8���qm�Ksc��+�mlKJT�J�c�o�{X�!������I�v�Y1��8��J��'�n��$��</����W�\�+�6��7��W��}ڥ�����1��M{�d��Ed�>N6���R��ͫ�������N�-��$����u:=���yJ@\o�C�fm�~06�ᚽ�<���%�`�$��ܟª�l��9][^�}$�U9g m���~,>$�hD�ѳ��d�õ{�=�٤�e6�p ��9韭xW�}.I�M�I8�y�? *�5r�$��s��͕���Gs ��(���x6�b�F���a�,�1\F�d_������C&$p� ���N��Ty��N�������{xm�4��Pp����z��,��4���I����zv�y_�<��D�R6�o�ڏ��8��oP��[4?bp �4��b�o�N�W���Z'S�N�י����}V��H�}�1�Rq]�Z��\�2�FM��!�e��̝��j��Ѿx�QP�Di�e��ץq;�Z�J1\�Ŀ<3�_ZK}�x����y�W���[:��+���q��R���q�����x+�^�c��*�������`k��~/���sgy}���~奡"C����+��)�6T��sw�my/ԥ⩧���5="ɬ���3����sM�O�-�v��j�&kl�m��O��&��?h��c�i|=�/ O����E�y�� >����u��3V[�&eul�q^�]��ӄ�7��1�P|����ϼ�����7֒pH?2�s~1Ь�����h��h�����Zӣ���|��@'��Z�<O�i7@�X�5�}�[S�R��ݚ�3�� ��v�h���k��[yZG�F���'����|3�7U *6��=�돸���� J��c�n�8������*� i�* �ؘ�U���=~�V�H����N��r�&� )��[�㹒��?Q�֗C����I ʃ�u漜^>u_,t=,>4�٩�M:k��<���,XW�x[GH�YeQ�8���!��]�� .;�i���\�_["K0�p�wX�q��G�v��;U9$v;L}:f�\��5��q������+&]RC9]�pzӟ��c�?:����yH��k)�hޝ4��X�ew�*����{���I��#v�s�5����1�Nj�P��M��Y���u����&��a�Wq�^�5k�q���Uy5k��W�wH�2F[�=�K�Ev��w���֪^3�2��}j=����%-��h��qT�g ���&���Jy�=��V||���S���h��q�ߗn~\s�֣p��ٮu�y}��J��v�7^H�J�����qF�RƹRG�k/]���@�*����~�?�z�����NO^}jjT�l��I9]��u�d���'��j��?�'��i��5�4�x�+K�As����z�m�+A�o$d�7qWቘw��8����V=�U�x�0r9��0�EЩ5��_�X�դ�(~}k��%#p���o��P@��4քB���f��Ym��`�&�x�;���p���Y�s��u��f�}��Ҥ�54X�̓�=Ej����/m��<�������q�V��J�n�n�[���&d�t1\f>Nsǽp��ܙsֺ��� � �?v�%zi���V'wq��\�_Eg(�~��nx�����9�:�Ԁ���=�j�R���ޖ����I��W���}�k��I�"?6��Җ��;�/,`��k���ڻ��Vl��+YՒ����]�S��K�67Ӯ6͌�N5�?��$���%�9WC֦�6�g�D��/��P�A���Nw+����5���E��M^-��ki.]��"�+��͍��Ei���/Z>�<m5��[2����w�� �@�ɬ�S��K���ytq���^x\|ĸ�8����i�;���k����X��(�Xo����$�g,*Oz�NKaƢh�u�K;I!��FE[�/�z��$r}OҺ O��*�c���������;L��;��c�5�Z��,� b7�mx�W�ivZ�v��wA�^�k2XH<��@���=�WU��oom��q�;��^�8ݜ�iNn��]B-� �mrOP�U][FКTami2���7���Y%@s�:V?�ψ0��[��א�c��c)�㇟2Z��7��=CO�k,��c*�H�y��<�X^Imq3��s�V����m5�.=?T`Ӫ�e�x��Ś���l��z�+�ƅz*pv�e�^�G j�Bb�����-���r�wų�W�(�a�A�נ��P��%����oO�y�A������d\���:�Q��:`�w��x��[��KˍăҸyth�M�^�9�a���5���I��ARx{H��RÓ������N:��q4�� 죥nY�b8U���^���h%�P@<�V՞�]@T^OJ��OC7Qw<��B*���T�q�j��9P�n{W��xm�����q�K'�اt�_oʭ������֖&>�2�<c���� A ����^�y�Y����7��(m\r��t��+�=)�4i��.9�[�Vr�9#��^��ixX�'ۊ"� ������*}�N��Y#�+�`��'�/J�I�n��(���BV��ҾC{j>�D�%sX�-�3q�F�*��ݹ~��؈Ǚ� X�nV���h�/�n���#L��gz�Oʲ�(�\rMy����� �� ��~�j`D `���Uqn2fU��ow:Z St��y���Y6U[p�3����#, �I�ں=6�d��N1�k�Vj��2wG�x�C�,�A1���+��P�Y�?�ʂG����7�v��²�F y��<k3Iqj�\��Z��uGU:���C�DH�J8m�9�k3�v��1�zt�+j/��]��3�x5�&�lR{+��R��7��<��[��tu�}+|��ىN�urh�Oi��}k�J��B#oݾ~_JN�:��kr������[T��&(Tx�+Я�e�ԁ�sڽ�X�ǷJ�VE��/t�R�/C�Rxv�%���rs����B�,����$n����=*�en�:�L�j��Vt�B'p<V�jQ�[�w�=�k;T� ���i+�E�9C�X�Oj� WF��=j���ی�⬶|�����S����Ml�\�:���T����ϵuZ��������pr�Pn�q}I��Q��?ʭ B0H�i-� 7z�*O^}�Jm���`��R��w=�]n�3[J���1X�FE?*тL/�܁�5-�Ώ�A�1��ҹ�$� ��� !�e<����#�݅m�'��Q]N�@�h�ãO��ѣi�� W?g3iv�;��Tr�>P��c��E��W:�*["X]�Ƚ �+_g;x���� �p�k��M����FH����!�;�ܺ��{$��P����<�i$�Z d�#�vk�uK�v��#�Ҵ|7�Kok��v��\oP�Z������[��u�=���Oug���s�b�/�"�FO<渿�/���S��-N�3qz��v�-&ެ�`OOz�41"1h�j����w���V�pv�_���Y|e���� ��O�����]e��e����;? �|uoq���;��ls��;��=B)cT�l��t�g��KS�JqaS����\�ƌ�X��J��{��9�Ո�q� ����z�uݥc�A!�A����nܹ8�:Wiᯊzd����`�k���rr�74�>�['J���Q*A�{�B�+�H%���W��>�n�����kee.���O|�������~�y���`�mȵ]OR��V�w~,Es:����M���>=Ċ�[۠�Z�#���xR�X5}*�,�C�θ�Za�8��{�`�G�.���G�:ҋ���m��#�/�۞9�hƁ��Z0NY��{?>�Ҽ��>'x�U��Q�U�!�����Q��ؖY6�I�z�E�钅Vpv������0�#{}���8N���_#^�[�錷sI,�rZG,[�5ql �X�T�}�m:�\0�OwYԴ�E[����9�+͝IJ|�G�S�F�2dӉM�P}:�!�Kw��-�q[t��Ej^E�z��_Ox1�\w�l��%��fx�'':���K�O_h��,.˂<ש���Q�dQ"Cg�}���˄��˅nƶ- �*����ֳ�e�z�璳9�x��*;���?��e�F�ֽkO�`��?8`��5�G��!�#�{���Vfҙ����'�|�*����.��%��=��f�����<�o��8 #_/�7�[/6�8��k�<1h�7�8�ҹ���|�μ�U��xr ��Q��� �#�b��`��>��Y8e5�t�c����d�6���##4�Pc�rO���Y��wlў9ݪ�O��)��Ve+�>��ϥs��v?)oAںWw ���X��"��9�XTWGM7����H��=�+ɂ0Grj��(;���T8�E�:sְ�:��kp�&T�֮Yje�V?6{�U���#�j������~�����H��4@�8�] h��"�4K�p7=y�K�/ϸ���G3����1���黀*����T�8���Z7V��?1'�Ԗ�̠���\ֻ:��G?3�,�``T�]H��+{V�͊�9��:;z�����^�䃜q�T̒�Hr@\�ؾ�]WhQ�y�j��|���qRԯ��]��� �u�W���=�Q:t'�ϥ>?0ߞ)�h �7A��X�vVzƊv�<��$��P�����d�ɩ�\�#֢��ԐxG�rww��! ��Icv�bL�%Z��TR�ѽ�J��e��K|��@+RVPӓ�?Τ{$ld���7!�(��1�8�֮YY���Z��Dd�}�hZ[L���:��OP�[!�E��������y���qU�$`�OX�[{v�^���П*9���C�=����y<ח_�-���w�=kk⎮ XɌry�^)?�7j�W8$�y�Nu��_�=�H��mf���Uu�#��h��n��r�՚K L�p8��%�z�]њ�lx�̻��2�Ko#+�ps]��&��h�h�\~��k0�� ��9�=~����z�GLJ��;E���yFk�3�� (<v1Y:G�-�"�`�i������Б��?s�t~5���Iߩ��������ǘ(S֪�KP�5/2i�=3Ҽ��K�V%�r�W4��!wez�Y�bNW�~�%������5������{՛+[;���Dw�$�_>A�˵@�Vn>V�Y�G�,u��m�Z�X��G?�_F{G���8X�<�W�W��:V���D��A�O_����!Yf��1X��2��w�9�ֹ���MaFQZ�> iV���D<��x5�ɥ^j'��a��ٮ�[�gԋ4�N��Ri_e�X�k�E�n�⎏�]��u�sDA�q��c�iok�g =�k�%�b��H-���Y���s<7���^zڝGN<��P�����Z[YfhnU��s�Ҽ�Y����DE܄��4��&|��<�g����!�q$�3Y˚OcH�ĭ���1We�~Gz�9n�B��raTt�:8HbH�ekj�"�Q�Ҷ�I�S9�HسX��F=kFh2��A��r���_;F8<U�:� ���닳1q;������趍�t��]7S�����o���GnA���3)E�[]:��䞤r)�Z*�E�~:U�G^��l �(8#��0L�M�����ʶ-4k{U\D�=N*kf� ��ZM���;W]:P��Ӝ�,m!��T�j�� .+�gVbբ�F��g��. .v�ⶨ��k\�Nw��tC�yQ W���I����m`~`��}���a=3���~9�7W21�8������=�4�g��*��!�/U&��3PR��y�����4{�6"˴�]��� �r���@��Gڴ���U����{q�BC�����MJ"��9�D���+ =��K�Xa��W�������v:�����|{KNՓu�&�3�W5i�7�������[V^#��@D�8�qR� nW,�½��NW�J���2(U�09t���9#'��y�Z�եV̉ۦzTJ:h4�]N�U�;��W9���_ �?J��L���Edޤ%0Y�9�z咹�[G-}j�`|�0+���ǖ>خ�VT�܃�i���ݨ��:�\�CD�y��r� ��A���������'Б��.g��Esz߇�f�� �ڛN+`M=�����N~��bYv)���<m��*z�v!H���+�E~�T��z泄JA~�h:�_��1���E�۷ �� 2���c��K$?�\1`�Fj7�6C@E-��p��OOjtk�A9#�>��٦�x T�q��F$��R<��װ�����8�H�39�����2'�8^ǂh�p�ѥ�Wv�\���{�lzt� ͉�_vX�"���M�ZL�=(�r��IտvA�5D�0��gP;��ҫ�2���uqVEH�b�=�H�(A��`�sD���Tc�"D��q�qN��(�� �wܼ�9��AsĄ|���N !`GJ�t��<�1�z�r�ǣ��cQ��;�e^X�D���p�q�I�}���U�Oa���*��8�Cr��{з�I{���[�8�<���%RO�:���Lh�W���aֶ.������8<�+kH�!�ڊg���ؼ?�j̫ǿ��1��;(���y��<G>�t`��7ݽ+�t�D�JL���^A�]{;�aڧ��d[�V��`��X��Q���tU� j~�x��^ ���kw�<���#�|{�J��i>��Eۨ�cQ��_Jh'W���dۨ]Ɇ�����q�j�E2h��D��y��CSK�.d�[�U�͟�[�����k�����G·�֚�J���/�a���Sh �FFq_���w�����Ó�5�G1R�`��_����^�%���Ո���&�V��K��g�UZ��G�6�n�5�x�Z�f��(��ˏʳd�Y\��;�Գu�D*p�с�GZ��AZH�*�����1�АGzv�"���u�ڌx�]�U��dksú���bo�X��^��<����9�k�N 3���¬R�}S�=[H����pH���k��7�,:g���3h�\�3�_�bb�����]�/�20�d`�k��?�9^ǃ��� pz����h�6v��[a>�����1�ҵ��C����2A9=��@�)'��W�����̵;H����9����A\Ο��98�+b�|� <�^drN�.��-�R[Փ�hˁۚ�!`�$�Q�@2:����Wjy��c���Q�Y��uڞ�CQǡ��I�T����>pq�zt�)!�*�@����J˞��ZX�dps�:Ӧ��q���+��L�b|��y��k�91��=9�b� JA8���3��t�*+�]�y�p8�V�vL��،�4���P}�G ǥm�g<��0u�����I��M.)��@�*���U'8қ��'�\zq֡Gޱ|���-2�O~j&�]��C��հu��R4=x��F>��}5\`��<QͥE�^�y��c5 ���$R��k���f`���Z�uy% ��=����� ����b �O�5�({�T�+jeCj�ˁ�z�N@ I�+V�O���s�Z�X�hv���4�D�v2�� ��m��=�U��l��|Ҙ��:���g�P�(n��J��q�t�M(`���j�s2���h�BՍ��"]��\G����B��$�+K����&���^A�Ă(�s �1��M{{�s� A�vq<H�Z�L�c5�Ծ٭gsޢ���w��x"�19�5��*g���NA ]�l��[���H�SG�� �d0�`��1xW*k r5�+��NW�}�(mg�3��������d��*����'����KR?2@�������d %�g�J�?���b#�bz��և�ы���j0O��YA���B��`��\��>������U& ~���-����9{m���ޢ�x Rw����C�u *���V<�ph��r���J��h�tp0�.3R�~�TڷV�p}�U�NR���մ������dt��yt}D�DlT�9�^�c����(=q�s�Vb�J��:{�TpZ��M�<FO j3�2��^8�~�����G5���Ìt����pcC�]�WS'�g��xJV�;psЎ��x&@��0���������pK�|S��c90x��e�Kc?�3���:��z�v��~ qԑ�+���9�����T���x#9=)g�;X[g��xUT�xV�:P~@�8kГG��Oz���X��EWԣ���pGNp�֤M1�c����O�H�����s �x�R��*�!%���AO�#�����W[.�<�� ��K�7h����j�1m�N���H�Mz'��@��� ���vߺz�\DU��{�F���*��C���݀�W��U�mb �`�M��[��������q�]Q��rK��d��ߚ�;�b��s�'��P�U9�_Z��]Ho.�����QE�9nv�N��������c_.97���j��u�G;n8c�u`�~%�6giW��z����<9�k7��D���NOZ��^����8�?�P���(>A<�W����pB$&RH3���؎edwR��c|H���bz����uƷ�I��q��ɬx����ÎxZ�.5�r���t0�j��mE�Ꮚ[����,��=G�]L~;���̹?Ú��MH����*K}v�%+ߩ�Ň���~�L�!�J���OR&��)1Q��q^c�ɗ呹��c�u�$�=j]:�z���=�þ5�$��eV�'�b�&�r�U�s۸�����Hl�9���[_��%���S�Q�'����푇_��Q�]�����pk�?�+�d�>�����R�Ų��9�Sv�kS҄�bA�f�1ZVѪō������W*��$g��vi�?+d�G=*�+�N �dL�*8�zb�5��F���V��$�<��w�ʇ�;Q)��F�n� K(ۃҲg`A$��V��������`Kx��'#�g��'dXv�'<�lr�`��j�-�(w�ǵD�`)9'�+5��I|�p;v�U�q�p�#ӑ��j;�1�8�����+�=M; ŏ�+���?^i��ʐp;���^sW,-Fx`8��+�خ�+m~�����p�t��kf-4:�z�9��0��u��q۹��Ӽd�9�Z|�0,x]���G%T�x�Ikހw��C�m�Q�sf��$�_��5l�g������α���NEV�v�'=@�L�[��)6a��m���#�lvAs��_o�l�8�������8�1ӭsʻz�h$b_"ƾ���Q������a[^"�DDr���Ep���Fe'5ч��t��W{u�v0pr0z�ov�y��j�no��9�>��]���q^��_.����s���x��:�����,�K�I���Er ��y���I��g\*�w��Lw ��u�e�ݨA���t�D��'ԓ^��/.刿�?�x��4�$n���s�<_�xus(�>�W��1X_�E{���U� �1��Z7��M�g�"��u�R�Ma_�I�w5��$��5�> ��f�T�B�g�?Ƹ�]YI���|�&$My!�Y[��k��r���x�{����d̈́K�q�#^K�^|&�<C�i�K;H�F���u��[�D������n��D�42X^.�9:�q^�:�p����;�ѩ������'×�-��2��"��BǑ_c�؟����"ɕ�8���ྦྷ�#�R9�w�������4�E*���y;�ў9�$�NH���^��J�=pdx�b ��@�k����Hc�{x�ߛ ��oEl����Y#�e������4].�K�6PY�N}Qo�+KDGL���*����aqXm���r���{�穛�]"mCJ3O���"��c$��k�H�و��=Fk�<;v&��C��:��zׂ� �I�<W�b[u\�n�����O_�_��F��J������穮R��|�9�=�oL�وܑ�Ʈ��p�W:x�WE9�4�7<玕B�o�x#�����FGz���^[2�7@���u���\���1�S��(�yr=��m=馎�N�kE0�- �1P,q����~�k��G$y���.�X���5��r)FGC[��#��ʽR��{UUZ;��58^���-����=s�m�� HR�1<b���o��xv�s��V�ÿ�l����<RE.����ӌ��O�;�I`�#��Rַ.2R���d��v0GZ�@p ��4����q��+���YFOn���)+X¤Ze�����*cE��0[�qRr�O^�Ӈ�\�#�j�g�P`�,�G<s��J�,��G4g���4�t�c��k�'��ZYY0zqڨ��I���4���*y���D�_����S��̓�Nz*� ����Vb�A���M��k�q�lv��=?:C"����w�ߥZ]�۸��t�N�pw�i�$��沵F8Ԝ�TJqF��z�\"���=k��&������C�Enzy�^e����zU{�=+��b�Z�;oQ�5�(��m�p �+�o�~6WG�)���ߊ�;�8e�)��5�~#�&��i��8��f_:���6;�Ԇc�{��2F�c�WI��!�n{��\]��%��Prz �<#�H�!|�~C�}2�,y�Jrrg��Q����KVیg�����������g�^�ȶF7��:�ֺ�5���:��(5>d:�MY�c���t���ƍ�������4@��G8�����+���lV����hx�P�q�Ć�jڰ�Ǘ[Jz���2^�ȥ��Gֱ5���܄�>�ƾ$�6��p@뗭=?Ǟ!`�ڃ��I�Ww�gQk�a!M�#ڼE��[��&1�ڹ[����ۃ�\ޝ�^��{�+�{V�=��v,{�jڝ4��Lݺ�:v�*0�ƺ2�6�W>���� \�=k�ӭ���$+��C�Roqm��9��j:m{U�Pl<`T�z[�6�b�@��ҕ�@�z������}���fL�c9�&����µ��$ �3�LVrI�2��q�N=EQ��X����Y�_�0�T�ePF1���k'fZ��m\�>�� ������U�#����U?�n���Dw2��7m �*�!�c�j�DS���."F眎>��t���jT��U-R�8���1�Ҵ���:���x������R����i��iO�p��M,2�-��pe�o�U�wob@��UA$��:}��Ϲ�7�)�0&��8=�'R�P�F��Ҹ��(�XH�L~5�{tT�Xu�*)#h��6u�e�qC��`���~X�9���mM�j2,dn��<�\�&�@y'�יV���;iY-��L�d`Lט����HIi�������j&fb��yεɐ�g���n �㦥NX��/uw�RFG<�V�bA?�Vu��f�����W��T�I��/�6:���F2O�Y��0Ny���G����%�6"�'8=sV��]yV�X1J9�Y���s����5�c���eE�{sZ6����8�r0υ<�j�WXO�q�ç��Y���W�f�b�Z�����#��>)�l�~���;*���+�T:��wV!��X�i�w�����[[��ƼR;�3��n�����\�Ú�FJ��[�z;��/����R��^;��y-��<x +�<`�ȵK��������kA�:;�@�1-�rH����<���u ymÎy�=��c�G����>���w*<���\l$t��.I=3���#��W���'#�SG>O�O>��.��B�=�Z��A^x��`tv��zq��[:{���'orB� �=k^��o>�N1Y��`uP:;u2��t��;k�28��i˨��w�qך��J�7`T�=O֠�E�pz�e>��n���5V�P� �Ts�5�КU,r8�CM�Av;�= c�j0��A#���s��R}��Oc�R: �U�>N�J����0H`�<��`\�[��vry#��]SVg�q�=*��'���Y������Ӹ�_�����k:�l�xj��.N>��X/.���+"s��x8�j����}3U���52�:q�z�G��cJ�LG�~ُ�9�˶'��jY�`��8� �#��ɴ^B�Cd�ׅnd��J��b�!�*V��<��s�Z�+Yţѧt�{�Y����V���o=A=�+�j�)��$|�s�]妿��>���`�6o8sjz���#�&��qʯ\U�X�r#�a����Ήj�;}:��n�Z>X��W�J7<�{�^���uǨ��\��'�Y��y�T�T9���\f�N�n��9k�x�/ڢ��H/Td��>�W9��L{���!L�ȭԷֺ�*�N�� �|���Փ�Q�O �k�#���ֻpvx�}������k�Ot�pO����3Wt�K��fڊ��W^H��-�m���)w���BY!Aq�� ��6�k�P���nrz\������y,�yb2@���ןkj���#b7gzצH�h�I�ZM�m踮kX��v"|�~�#��SR K�*������8��3���'���:���RDa !OcRx�E�H�$��A��0O��\4W�am��q���Q^^&�kCӣ%4{���+���1��uVW��w��>���&�Ę�:W{�k�a�1+�y�^|y��0�H�;y�rX6��֮�rv����h��8�[����K��S���]����)��LJ:��t=zg5QK!���㊖9H|0��[ngckH�ʙH�]~�v���WgpU�={��i��rFG�mF�+9k��GI��w�n�����p�9ӥ�([��s���TTF���R�n#��TK����&���Fp+(Y�Y���m��߽R����Rv�kz�T�x�Eu9�u��I8�F�R8+�:Ky�QǠb�Yy������� {��t�Tt��WVv��ȵm9��9�qV�{UH�2�9Q�[���z�y\�@�I,� 8ϧ�E�$L�d��' �\����Ȉ�1�*�NI�U�o,\z�Ue�U<�sY�Y�(��߉?��� �rCg�ְ�ԓp� U��c���j}�E*M�������T7Z�h��>��j^ �G���5��+D.<Ìt�z�x�ټ0������b$ ;��o*Fʯ�� p^%�w<ߚ���;X����p�=+�U�U�,������x��+;<�3�^�W�NU㷗,r�������8���Fϵy����.^W,OPk���g&�V ��t��-k��֡)y\�OAӯ5[N���m���cB�%���fk�|/��U :zb��؈P�,"ӭ.z���߇J�>oS�k��t�*l�j�a`�����k�@�6�s���kƩU�we9$��t��@�J�3[�B�����U("lw?ʦ-��`d����yJ�6�-�s�K�q&_��Ms��$6��>ƢI�ˇbA�A��itF2}Ε5��g�kWG�~�=}�����F ���C@�*�8n�5�Os�o���~,���Wy�M�� ��#l>F~{�+��$�`&N#*vi\��iȑ���_Zֵ�j��aq���hYNH���uFV9�mE6A� N�Џ֨Z�힟֮ō�թ14_����3Oij��q�8����M_=��b핐� Y�O�0<R�8�5��\�lg���e;�i6w;����Q�� ��C]I<�*�s8�ɬ[4.C1��d���į>��6Ȱ� g'���g��U�,� ��9=� �������d��>�^�n�\���h9�qYZ��i�9��V��U���R=+P��~r@��ɻ+�����F0}kT����Ҵ� �F���MB���6x鎂����3n�z08\��qX�Gs0�����\�H�H�^��,�$:�#5�-MS���B�0��y�cX�$��J��Q$������Y�S��z�,���D&y������A�+��� b��J��V���N8�+��t�� �z���7M�P�u��z��ۊm|zW���BVFp���� �d����}+����+���Svn&1-��)��}i*y)s�zZ3��䝉����@3�J��^)YS��-$��9�Z�` ����z���֤ ���)�z4�&k�ps�q��V����+&9���Gb{��ƹ�B�},E���q��W8�Y�h��s�ֹ��xl�����tݑ�����D�@[��� ��3����@@ǭ]�Q\���s�r�4wү ��r=i�+�=+.�b@9p*Cv��ǁ�\Δ�;��E�a��Qڐ3��g�Sk��=s�L7 .T�{qMSc�4�=H�Ӗm����Ymw�Q�9��{�i{b��lM$nAtC�*j�������\|����/N*Ԝ0���z��G#9J(�]E:Sd�������~��ǡ�R��2��������wW#r�cl�����s>[�펦�!t�㧥*����s����X�U�,���,�s뚭6��r� ���Gh��$֙)�#8�Oj��`�֓4�@����� H�J��f���۞O5��<�����ti�VsԩRJȩ4��Ȧmn�q�փM���u&�]0�{��X�N9ajOs W���z|*Ĝq[�Jb8�1ӥM�?�q��K�H̱��c�95�a �>^�}������(m�d�W�_���Pø�#�T�Q��Ց�dzzT2���1����s�Fȵ�ߴ<��] ��G�v�s\�E+���Q������{���?A�t���1P_[��� ��]&����;����}���P]9�|��V�j���fRU~Nk���[�� pO_Z�M��T�r8��jb���6�����qm��H��VYŻ�n�0+��meg9��>���j���Rh��3�k��|Lt�ȢW�'�]XN��s�O���Z�Y+e�}kH�����LW��;�!��;���^�m�$�0\`����U��U)r�#F��6{f���|?j�;c�R�\l��S���'I��@� ��j�Z�5������ɗ���t�x���Z\9� ��Gbk߯�q ]��N:�'�o���K$jU�B+���څnF|���\*�a���q�{�S��#/�Мֿ�<,�(Ҫm ��[�.�0E5�V��g�J�j+3ܼ?�H}��#Y��_��J�? kK.%�H�]���X�c,?:�e A�)�=��Z���~�TF@C�v/�����kOK�*`!��V�N�<��Ayxa�Mk�Wȭ� �@�^Se�E���:sҵ�<H7����5�q1����X������d_�DpI�7��*2�Ϗaޭ�B������c�]����;�.�[,��|����0���/~OJ�[��������Z��+���~�X^+G�`T�̅x?J�'�*1���J�>#�����t��l�Ia5��_L�O�X�S���l�˼�`s'�d�k�'̬:VS�oN����?��*�����g���c�� ��j�ψc^L��Z��#��a�P���~5�ʨ'w^íy���WL7B3Ҳ�M2q�欥�KK��~���k�܉G�qY�~ E ��O~}��5/�C�Ф�Z��|_��e��篭`�RzD��[�G�� ��3\��⑴����W��2Nd�5r�ߎ��6��<瞕+�U��T0v=K\�NqׯZ�M�ȡs��J�����7�ץp:sp�c�_z���=J��*��F7g����39h�$���:��Ew}!V�ߥa\ܼ�3Tc�?����4���q9����DYgwl瞼WA�K��6��G��=6�z�$ga?��{G��3�(ف�X�1���70�.y�߇<5�F�� �5��i�L\�6�ю���Yik�W<t=M%���8���!�'��R�DV�J���qV#��3��튰c ��GP���H,G��t0��sr��H<q�e���)# !�j�wu�;�7r�4�q�`��<���!��,��:�=k[O��/�V�`bPs�N�Z��=�nv=o#v[�,�܌\�x����ö���l�y<��Yzu����9'8�4i�3�x�"��F2}�G �l 1[�R:��@�r:\�*T��]V��jeX�+�2�b��i�4��A�]&�a!a#t�G�W�Ɩ#P�7�J��zWTݜ�v�#DA��� �}��T���q��u���B#�=V�@s�ۚ.gؤ���wu�<���-��,�89sޱ�����~}*+�D(a���;VD�&R[vH�}�H���`�vd�ǽ'�*H�<�X�^�ޝ,�.I�c��Ӊ���M�屓�V\3�L})Z��z��AcE��j�qr1�rOJ�5���5�yy�.V���r1�;�Ⱦ�9���������q�͚������5��lז�y)� ��y�X���g�����b�����YW�6I�9�IhRZ���OBx�Yw��I+��zI���ɻ������Z����Ek�͌�9��ҞdVQ�έYc|�ÜRZ^b^A�̮SB��<a��9� `�[� m�ӭt���ڣ�}�I{f��(���JPR]�/�t��%2��?�f���G��z������+���̏�#���2pi�x�m�i�B�g<VK1�8�Y9f9�J�MV������+��bUEg���p���Q����I��b�z�O)h����OPG���ڤ�g9/c��oac瀣��~����Ջkp[p���<� �yf��Z0G�G*��fA�~4�9��Wk�R��H*����7�.�Fq\�0÷f�uK*ĥxjr~~� �➷G;��x5.���v,V{Y���2���:�\]9����,EiţN+ҧ�8�:U���8lV~���Ą�ʦXx�jY����Ϸ���ޜ�̓�~���=?� ��� �m��ՎI%�@�z�沣���}��J�督��C��uG�6,<��y��7$�yw�O�1��sR-���pG��bW4�D�s�z�����2}�J�kd̠�#�u�֚y�Ҽt�z�B�3c�cʯ�Z�Cf�9^G_O��mA�@�*�:\�9�)���70a�,A*9� a0�t���MՇ_aW�t�t'���i� �Au9ht���8�&�Ǥc�z�ֺ�m#�9�`i� �'s\�ƾ�QG#�6d�8��O}0�.<du��,p^y��)�`��>��֙|�G�i�c�:ӓO�x\�zWQ%�+��y����e��3�J>�Ñv��Pj�:{2���0=�*۲�W�)�����v�H%F�:���LE��G�T�HU��T�ӧ�T�#�W��b� ��3�U�����ӥLqM�<���X�sҚ�䜪�{WU�i�*;�����!F��Z�U%r\O�۸�Ǵ�cd[0}s�[Ƅ��4�u澂XDσU����x�1��q�;�㾅�G��qڽ�3�ι�3n��%������s�?�? �{�."��q�N���0��c�y� *��qֿBu�C<,6�z��<K�ky��s��&�y���,�KI#�"k� �@����~e�e=u�ZZ���apY`U猎I�Z/��-�_,6:b���g�c�X�T���b� v��l�:ҵ|=��+�I�]$��0���z�&�9V�ݜA�e|Lu�o�X��=8�G��G�C�@�_ ����`qZ{9�fG��C���&W�9�N��>-��]ϖp8Z��R��""���J��xj$�IA@�+���飋I�|���7ܻ *GRjώ�P�%]�Pz�W�x�C��P;��:�o��8^8<u������_C6/�N7H@�'5�a���}�5���yR��략��js��F''�kH�Ѫ�4x�G�=��Ń��#�OJֲ�X8������œ�~s�>�Ҵ�|m�&fS���+:�%E��hK��ŧ� �d=1��W2���_7[x�0�q�z�5�o�#Ù3��\���G��>��� L��5j?��� ��t_���z�$~4L����}e�����F��$R1p2f��;T^e�>���O�.��I�ژ�2^A����ZKX=����r ��#=j�Ǎ@��A���Rx�s'8��T.�b��_�^y��]Y�)S��}���D�s��+:���U�:}��K��<���T��2�H�Һ#�U{���Os��d��\w5�� ��r:ׯ�x�x�ys��I�wz��>i[���[C&w��J�=[Q�n$I�u'�s�����F���y�֠�d��U���ýw��`�"x�q��u/�\)c�<����!bҞ8ұ��!~��T-q�I&�:XCdpV�V�-\\3���U9Hc��ґ�.r8�_zo��:�ta�y�>Љ�np+K�c�Z�@9Rz�h �$ؼ�<q^���^Z�����b�v[��0�9��-��|;����<��w���p?��Z�ET�U�����ʾm]��֤�d�a3�J���ݾ���6����5����l������j���9�����QKue��g��^;�c��c���O;9l�q�� <�n#�w�U�q=�#���ۭo�:s�W�z ��X�uު���]Ƈj"�]͌���QW2l��h�T�g�Eh}���`}�_δm�X���MH���c��5Ԣ�1rm����a'��C�.;UT%���]^��}�2)��k� ��rZ��,&�u2�5�� �`ڹꇆ��{{UT@����� 9 0?uG�uS��l�s���,��4$������|�� ��+�Y��v)��RL�L�z���T�;�ʩ�!-Y�������=z�73m+��_j����Nq�&�n�%rܓҰ���ǘ��ǯn*%a���Uۄ�~�JD%w���)j*������zӕ�@����w#`a�������K�O�sR�ZF��?�Fx����� Pi����zT�<��P�>TKst0~lAڳ�� ��`�ң������ӎ��2�A!۟����\P�B�2�����Vlӱ\��<��bXU~i�y��K�R�}+�rՊW7 ��{�I�w�'���:�������;�1i���R�j7&�}���b������C��6�P�ON�ʩ�0l�B�뎕��Z��\6I��9�U���v,���g�U��rX�L�IM����O�t�2,����1��%vB>PO8n+����('�p��8��WF�8����\����8�]���b�ON:� ^�p�������'��fH�Q����1���f����+��=:W���GY�t I�+:5eJi�))Ǖ�<�)Y0ÿzf8��U`mo\��+�$c���Ӛ�SG�bh:shrpI��<c��\r2G��S�b�x�h�4�^��U�ֻX�`��d �4�3 �=��<"��9�s^b��ˣF���;��� ��9��FУ(2��g�dxY2����ƫ��G9���I��%���xB��W����\���:m�1�R`�Pq^�F0x�MT�#6�3�ڦ�.�)^h������ϑ�Q��Qә�Yp����i���Rh�_[x�N���E9��k�|S��Yn�Kd�_K��j;*�瑊�p���_���X�{�⅙��z��q!��+1�$��r}�܆cJkC���p��0��/�w�?Zӂİ���m����q�Z6֘c�5�[}��Q��+��>�օ���d���lNF@#�zճӎ��9�םS��PKs�N���jװҋ�����+;3�q��z�C�Y�Q���;��>�%��PHĴ�cW*с�������x�N+[���=E9Tg��1��qJ�}KE�Ǵ��y��V</>����ޣ��� (�?{���-[��h� ����Q�0F8�ң�!0T䚞f�&B���O� ��I9��������y���U+���?ݐq�p�DJ �@���A ��(����銽l= � 42n�8���C �c�_S\����T�=s]�x{%ېp �V���{��"�|�^����d���Z���,��s\���*���4���e���g�H�dU�ʃW�ўS��z �"a��ǵw���.��4:�w~��q|�~l��I�n�k�mBX�ӯj������!���0$ը���k���"O��x�n�@�����(+?gR��f���F�.3�Z�`r~�3��kw涴Z1M�p��B1��H���z:�6d�9"�K�eݞ >�X`�c��I\�U��z\c ɭXm���5%�� �8�"x�9���f�HlKՅ9�w#^D��.��憠�"���ԭ@B��V9���M�?1^�tѿ��]n�f���8�k ����R�S�o��e����b�?Ƿ�cv����π���Gv�\�+��5KD�x\���@�&�7�[C���"կ��.�t�!�'�sҹ}V�y�:Wy��jZ|� blw W�iW8c���K *zj,L��0��s�3�����j[�9#$m5U�����ڏ+ZD�$�'Ing۽H�R��$#=z�>����sM�/��^Kf^K�ps!�8�N�Ӄ�� ���R�>^�j=�_Cx��w4��VV ��K�ۓ̬}r՞[��sҞ��88��R�DZ��T�b�\�rK�>��p���ߚ����S�2:�4�<\�����r�T���N}�2Ӧ)�4B�I;�iu��?y�y�ZC��F�Oz^�,�In^��8�U�|��判�|V��Q�W2���4��F����*��ۊ�T�7��d�'9�Y�C��P��55��T�S(�:(�9���g�� ޥFx��<#b#��(1�k�~�dB���9��p����T������)���ذs��L��b�0@�G����h��)�SZ�P@�ʚ��F>��q�|.�I⼓������>cC�������R<F������szw��,^l��&��OBQZ�TP��%p �9��F��ig�+��A�����������v��T�fRi��1m�����u6��r�8�Mbiv�[L2�d������/0<�f����M���[�c�����q6���ҳl�F�����:�0éS�}+�&�^��}0U������Y� ����K�� � �Z���'9����Cz�և:�(#;zV�� ��'�ựv<����� a��]0��0��:I�7�Ӷ�O�+��uP7 JuD#p$���&����sr��<�]��!8�j���$@zSL�A� nw�2p6d�qY�����ל�W�e�#��U.YBc������d�G�玣��s�ձq��=�d����㟭d�R��l�H�ҩ�&�����Fu#�*��1����dٲZ f;���� �t�S&�z�߇�\�[�Y��O�K�i����{���/���5���1�U ��f����f �t�eZ�.�NH����LB������� L���Z��pq�ͦ�F�ŏ��O�QԴ�X��q�]�z|P������m!�;+*�Rp�jV��mR�i%Oӷ��`ܱBK�랕��0#�'��k�Գ��F}:W,���d�vc95Y������q�d��4�%p �>� Ϙ�t&f� 㜎�����F�3�U`�m�-��*���e)�S�)-�����<���\�ZWօ����g�й���d���w�D��}=}+�6�.c?vG�ُ,��z��Ob�����R֭�s�X�C��q�"�8O9�Z��7�#����?�#Hx�י�)Wa�E} �?N�fpUx��֡�o0x&�l����̱Թ������zf�~����kֽ�.��&��]g��Hm�X�>����\�!���R 9��B��#��b*������ �-�c]�)�Gz�"��3_h����:�2�#�x�Q�'��m���k��5X7(j�����b�ϱ�"ܮ ,}*���-�y+���Yk{x����S���[�q�5��)E٣������ֹ=mw��8<qZ��bF##>Օ~D�`s��]T��Z�7�[�o�O���jX6�pO���1�09��������Q�c7̄Ӂ\��zzU�k,H� ӊ27�㧭Mm F���7T\��H� I&��[��ܓ��U!NH�[�RT7�A\Ҩ�a�� t������G���`��k'yS���ֵ��I���s\��Q1��y�M1����ۑRN�'������A!���Eg��N ^~P3���=���M��� a����J��)�*ҹI�a�2)��{�ꊹc��9�:��l��8��*Ļ���q�Z��qC��<��y�=j䏻��T��ApHm�8R*y�3�ղ�G-��j9m�'����42(n^ ����x{_��%��#��n�\l���c�*&�A�#=�ʔf�L�֧�_O�)?)#���������88��Mf� #Qُ5e/Vf� ���@��� *99<qL�\�=9�N�a88�)m^#*9lU^Ȥ��"�%��n�:�I.A�;x�@ ����R�ņ=+�g��H� c�#��u��\mb8�X˵�85n v��ߵRZܖΖ�ue�9#��I�-Xv���<��6��Z�ٛE���<{�b��2橹m�����I��J��V�<�8lx9�H�˴�)�8 ����'�*���Gjn(JMQ^.>r>�4q��k�k�!$u�U�M��^k�n��&u+t$b��O�Ix�s�}���� �[\��ӻ�%l0Bm�?�\Ǎt�.�]J�w������μ�Z���Cg0;��'��g͞<��ij����8q��_� @�`p���b�\�3^k�hK6�̱�w>��:mlz���9��((dh�;`J��~�b"un��������G�U��ۏ��듎hu1�R-T��h����Դ��4d�xlV#�����z���6�7֬>Τ��5���Ճ~�i9�ڻ)����Җ�����ɓ�������j_ �����\rx�6� ..!0=qҺVkje�5ў*��d|� u��s�k�!�QA���L��a$Q�?��j^m��pi}��e���=��L�|��k�ȡ�B;�\��|-$q1����s8Iيx'ot����H�Z�{k%��6�=�����^�����N h�c���F9�jx��SOu�j�sΛ�����O4�q�qHzqA���䜌s� �(��g��V!�s[�7���PMds�s�+��Kb^�M��3���U�t$����5k�����ۢ��q�t5���x�s��UE���t�Ia���־N[��f�5,A 3��V�zm����H�-�j����1���79�A~��[����J��vrNv����̌��}��Ko���:��u��%�sOӭ[�O�h���Һ#�\�錪�-O=���N��{֕��l)A��ֶ.4VYN��Ջ+%�G��N┴9=KI`8BlsQZ#G�F@���P�@�X{��-�n~UlV���B9̴�H�eA��54S���9sD�$�^�����ޚM ��n�w@�,Ż ߷�J�y��;�d�˃�q]��.�7���_BY�k >F3ڶ,u�#�8��覍y�??֡���H��sZ'aZ�Qw�/�dg�q�J��U27,��5�����NA�}}�B��#�jM��A���g>Ƨ��x��뎵ԟ��q�z����yl�SZ)�d�c��� �=��J6�z�=���㹪��/^1ߚNcP��ut�O#����w0*�6~��=�s����T�f ����Ϲ��r��$�y����u���,�πs۵2A���j/�V+Z���-���jp��E���\[eaG^�P�% N���.�B�8�U�B[z�����![<c��db��c��*:3�� �0�溻==#�#��G�=+8�dH �?9Դ�����=ri+7�J�+��AW�8�W[;������3�+�G�r�ŷ�O��j&���j Yp8��O��m�XGޮ�Z ��z�¹�؝���5�4o��3�ߥS2�H%s�4�v�o����C&p ?�X�km�J�rpO�S�݃��qS�\����i�`�A���7'c��p�F�<�W����c#�v���4Κ� 9��z�kd �s����4Ee�f&�Nx�@���kv�R�N�ɮ�S��ܠ)�W5�ؒ�A�z��aM�G�m4��n[�+��m�:jo�2�+��wJBc�t⼫�^��`�O@:�5�F��N�J��Vx@��?�L�k>C�^�<,��� t⡸��.~L�/j�y��c��h�D/+�qҘm~nrsһ���?'g�5�y�l8����iz����A�(�=GzUܭ��=�b��Ӱ����<㧥uª�!�p���������5��>>��'9��p��?>�5�\%�M�c+A���� �1]m�(��5�����t�k��r�A�ں�2�u`�<�����No�����Z��2�H��N)S$6���M�۾2����(�܀�Ϧ+�Pq��rY88��:��4�A�<�ʑ�ǎ�ؘ�!�J���/\��zqZ02����uϭP�ǘI?�j�R�I�Q&H�~}nsO���2���<��Iއ�ڑ#B���8��4�$1 ���h�dt��GJ��W�:�^>�Ҡd������W���� �2rH�����;�ҙ<����qQ�8#�����z\��L��;u���1�3�ڪ�ɸ�g#�;~�|�ێ��ҕ��3�N@{t2ġT��U�y%�F:�����S'g��3o!�ң�5'8��*f<����099��ژ�)�Ca����6��\�{t�&����'�=i�����0q��jԬ;�2���d��Zu�|�<b�����G{d_���۞�� �jÜ�RD��۞s�*��6�#� �L�enT;t�9�x5�͌qL1`c9��!X��뤒��?�}É�ʓ3��:�?�[�&_�Ҕ�+��Z9,7!������i@����y���;��J�`��)(قe�\�r? �rTd�⧄�s�I4!��|յ�_R���?7�G1;z�ǭI<ArO �9�w,0rx���@ʗ� ��U_� ]N1�*I��!�sR@��I�¹*4tAX����匳c�����l��W�Z��!���:՛�1�S����tj����W�r�q,Lq��Ey�[�þ�0qW� >2���\���]�|*A���Ʊ�Bk�^9CE�� �vV�I�:��j���^}O�V[�1�e�T�4&�&��Īru�UN��.�g����Sv���֯ B�`a&{c���%��ѓ�iȐ���qXqhd$G����]��ݝ���r}kJ��4�G��R�I��iw7���ʅ-�Y>��������NM���:��DF7ƹ�G�bī��,|4���u�3��M�Ȟ6 bs�F+ӯ�8�L�����4�h�Uϯ�/��b�����x5X0G^+μY�Dh_1��⾧��� !;zW�x�D�Ċc�?�j�C��:ib.|S�;Ík3���zc���]���:澤�����:F23�:�͞$�6��\�{9^'�.tN.�iTFY.y����K��!nk�<�!�g�בK��{R����ٔ�4������F;�0�����Lϔ�ןj�?��"���H�^anH0F �h�AjJF�;q��Z�YڒG����R=_èLXQ�@�]���f`6�1��<7o�:sȮ�D�AF�z�`�������vc����u�;Rz�8wIX�h�J��)�v���ޯN��'�(�S+���ϽtV��h뎝듲��� @�����æF �m"Z�z�`���O��d,J�t�OwU�b�ݖ�Y7�7E<�ո�gԯz��!~a�u� 7AבO0�����N��H�ASf=�*���N���[�S�rzzѸB��∣,O@W��=I�_N�C�<բ�܌�EH���\�s�멢��)�zq���$&�I">R;� �]Ò9�)N8��NG��i��S[C�S�jE��8< Ў,�:�~t<aN:�9�]�,�7)���Jg!r ����F1�U9Ѓ����M��5� �AUnn�7率ޫݱ�H��|�M�ӮWr2}�9Y��^|�\�Oo.�$��V� �I�$�ѷ�霜�>Ս����G~+J�ݺC�yGE��L��:V����9�T���x��Ƕy�_ؖu*�<��V� ����r*�R�+����ES���;��lb���J��a����ZҿF����{��e���$���Kr�0:c8�0]��F�2:g�X�:�� ��0EWiٟvH��ܯ�v�h��e�pG��Y�)B��$�U-�ʈ��nSֲ/�G�y��Rzh#3Yϒ��מ���m�����W_�K��8F����> <����Oֹ*��7�����r�����з$nj���N���( ��3�Mdѭ�(ă��ҞIٖ�;�^7]��t�Zt� �Vt�+��(L��sӟa^�eX1��Ҽ��o�a=���\��q��D�pwҺ�/tʳ��1�!�m�{}+&��p;�H=���� A��������S�P9�02�s۽r^'�VYr"����0pW���� f�2�<�+�祇����� �v�5B�A�NP��j��`���W���X�3�����wƥ�!�<<����A�T���d�+�/�d`���=OE��l�`�c9��qgDj�sµ� �X���cT�3�c��5��Y}���x���\���k��-��h��!����`T����C�@�vZ��ۜl9>�N�D� h�s��z��A�S���+�h���[�6�� ��Si�yU�p8�[z~���R~��W����q� ���n�;��]�鎕5��FQ�=q���:�[M�=�<W�R���E�`� ��^�Buh��w���$~�R���V% `q�j#;;�h�' @R8��i X��'����$��#��Ur�Q)`��Zs�TIq$9,�u0OC�:�W��g-�ǥHA\O���]�BC~Xf`UOn��S�U� �4�� ���Tr0�W��z�We�YŰ�g�9�����]�����c�`t�o�d(Fӻ� ��$��1���pM"��� �@��Q�pZ�C�,r8�2�F ���;��zVrBd�'��js���ބ,1���4�����s����͠���S$�w,A���ґ�#�`��Lt��}C�ϕK6F��Q�g�J���O�Hb!Nѐ?ZӟPM!VU�=���qٽ�y`�F@�9��GR�0��ݷ�?QN?x~4Q_�t?8$����o�� (�{1���?r�Z(���<}�q��J(���Z���c^�?O�E���C��'�}j���ڊ+���M'���VO��?J(��������U���(���i�$_��N��T~�QK�Os.��y���>�E��^��c{M��O������]M[��z�?֏�V�c����֠O�� (�Տ�C�?����^y�?��O�ʾ��v<o��x��?ʾN���!��(����O�3�����W�=�B�P~�RF]��Q�QE_bz���Q^���<���E���D�2��H����WU�����֊+ƥ� ��Ɖ���Qx��=h��J{S��x~��S'���4QJ�C�5_����H�t�G�!������jh:��QE_�%|"���_��V��=�V��:����QE5���t_}��ҥ�����QMn���.[}���#����=袷��"z��uQ��������R{��}��6��?E�B�f��:ч�=���4QP�#C����yU����US�Q/����]��Z�C�袢}}JE����Z��'���E�P](>��WS�/��(�����.E]G�I�>��'�_��QED���?�O�+���ֿ��:(�>ѯC2O�~��UQտ�VOo�.;������w�� (�E���ٻ�E���U��ǹ�x�EwQ� �_�*jOҨI���(����!�G�Y:���Ί+ϟ��v;��A���*d���(���u-��ލYw_�?ϡ����� ��W�>��x��x�QEr�s������?�Z�m��� �+�u44��?Ӄ��ErT��bh��������}(��'�� ?u���[�E���?�ҩ��U��E�?������W��d�[�h���B)�������UC��ċ�i.��������n4V|�i���V李 ?��?����o��ܢ����,G����Js�S���Ee-���o�)�}����E���6?��T����?�E��=��*��ESٍ�� |
| URL | http://zero.webappsecurity.com/resources/img/main_carousel_2.jpg |
| Method | GET |
| Parameter | X-Content-Type-Options |
| Attack | |
| Evidence | |
| Request Header - size: 288 bytes. |
GET http://zero.webappsecurity.com/resources/img/main_carousel_2.jpg HTTP/1.1
Host: zero.webappsecurity.com User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0 Pragma: no-cache Cache-Control: no-cache Referer: http://zero.webappsecurity.com |
| Request Body - size: 0 bytes. |
|
| Response Header - size: 351 bytes. |
HTTP/1.1 200 OK
Date: Mon, 14 Mar 2022 07:13:43 GMT Server: Apache-Coyote/1.1 Access-Control-Allow-Origin: * Accept-Ranges: bytes ETag: W/"112646-1358497020000" Last-Modified: Fri, 18 Jan 2013 08:17:00 GMT Cache-Control: max-age=2678400 Expires: Thu, 14 Apr 2022 07:13:44 GMT Content-Type: image/jpeg;charset=UTF-8 Content-Length: 112646 |
| Response Body - size: 112,646 bytes. |
����JFIFHH���ExifMM*V^(1f2x�i��HHPaint.NET v3.5.102013:01:16 15:54:14������(HH��XICC_PROFILEHLinomntrRGB XYZ � 1acspMSFTIEC sRGB���-HP cprtP3desc�lwtpt�bkptrXYZgXYZ,bXYZ@dmndTpdmdd��vuedL�view�$lumi�meas$tech0rTRC<gTRC<bTRC<textCopyright (c) 1998 Hewlett-Packard CompanydescsRGB IEC61966-2.1sRGB IEC61966-2.1XYZ �Q�XYZ XYZ o�8��XYZ b����XYZ $����descIEC http://www.iec.chIEC http://www.iec.chdesc.IEC 61966-2.1 Default RGB colour space - sRGB.IEC 61966-2.1 Default RGB colour space - sRGBdesc,Reference Viewing Condition in IEC61966-2.1,Reference Viewing Condition in IEC61966-2.1view��_.���\�XYZ L VPW�meas�sig CRT curv
#(-27;@EJOTY^chmrw|������������������������� %+28>ELRY`gnu|����������������&/8AKT]gqz������������!-8COZfr~���������� -;HUcq~��������� +:IXgw��������'7HYj{�������+=Oat�������2FZn������� % : O d y � � � � � � ' = T j � � � � � �"9Qi������*C\u����� & @ Z t � � � � �.Id���� %A^z���� &Ca~����1Om����&Ed����#Cc����'Ij����4Vx���&Il����Ae����@e���� Ek���*Qw���;c���*R{���Gp���@j���>i��� A l � � �!!H!u!�!�!�"'"U"�"�"�# #8#f#�#�#�$$M$|$�$�% %8%h%�%�%�&'&W&�&�&�''I'z'�'�( (?(q(�(�))8)k)�)�**5*h*�*�++6+i+�+�,,9,n,�,�--A-v-�-�..L.�.�.�/$/Z/�/�/�050l0�0�11J1�1�1�2*2c2�2�3 3F33�3�4+4e4�4�55M5�5�5�676r6�6�7$7`7�7�88P8�8�99B99�9�:6:t:�:�;-;k;�;�<'<e<�<�="=a=�=�> >`>�>�?!?a?�?�@#@d@�@�A)AjA�A�B0BrB�B�C:C}C�DDGD�D�EEUE�E�F"FgF�F�G5G{G�HHKH�H�IIcI�I�J7J}J�KKSK�K�L*LrL�MMJM�M�N%NnN�OOIO�O�P'PqP�QQPQ�Q�R1R|R�SS_S�S�TBT�T�U(UuU�VV\V�V�WDW�W�X/X}X�YYiY�ZZVZ�Z�[E[�[�\5\�\�]']x]�^^l^�__a_�``W`�`�aOa�a�bIb�b�cCc�c�d@d�d�e=e�e�f=f�f�g=g�g�h?h�h�iCi�i�jHj�j�kOk�k�lWl�mm`m�nnkn�ooxo�p+p�p�q:q�q�rKr�ss]s�ttpt�u(u�u�v>v�v�wVw�xxnx�y*y�y�zFz�{{c{�|!|�|�}A}�~~b~�#��G��� �k�͂0����W�������G����r�ׇ;����i�Ή3�����d�ʋ0�����c�ʍ1�����f�Ώ6����n�֑?����z��M��� �����_�ɖ4��� �u���L���$�����h�՛B��������d�Ҟ@��������i�ءG���&����v��V�ǥ8��������n��R�ĩ7�������u��\�ЭD���-�������u��`�ֲK�³8���%�������y��h��Y�ѹJ�º;���.���!������ �����z���p���g���_���X���Q���K���F���Aǿ�=ȼ�:ɹ�8ʷ�6˶�5̵�5͵�6ζ�7ϸ�9к�<Ѿ�?���D���I���N���U���\���d���l���v��ۀ�܊�ݖ�ޢ�)߯�6��D���S���c���s���� ����2��F���[���p������(��@���X���r������4���P���m��������8���W���w����)���K���m����C ��C ����"�� ���}!1AQa"q2���#B��R��$3br� %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz��������������������������������������������������������������������������� ���w!1AQaq"2�B���� #3R�br� $4�%�&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz��������������������������������������������������������������������������?�.�f�Z�4��Q@���4�}h�����(��(P(����ih:Q�i?�JZ?:9����(�@v��P߭��K@9��S@jJ:�w���-'n����������4qG�����ʌҚ?J?J^}h����"� ��zP}9���P(�Rw��4�i�֗�w�(�����zP�t��4����*?�J?:�9�x���PG����Lњ?iz�@ ֔�=i)G4���ڊ 擊:�Q���z�g�)A���%�2hh4�ю(��Z)(�����u�w��w�Pi)�ܚZCGJS@ ���(i:R�A��i���h&�����>��ޔ� Z(�֎�rhM&h�Gj�Ҕ;���}h�i{PqA �JJZA�R�;b� �G��s�J8��zSހ��f�Gj3�Gn)i�^�i:h��x�&��Z(�)h;��Hz�G�h�������@'�KEZZY�*�X�;����1FW#�`V�G�iGkd�,]�3�b���Y�M�f�RqO���&q�@�Ն�ld�el���R-����z�i���x�x�V���Z(z�@��մU�?���֓��2��E�}?Z���R�@ GlR�@!�h�x� ��~|S��ʁ�U�c8 ���� ��� �g�Q`+�d��ir�� psQ:4g�O�����P(�S�-%-7�����E�-!4R�f�})E��Ԝ�R��FOJNԴ~~8��4Q���)�p9��h���v��?��x�PA���zӨ {R�QHiGҀ �? ? Nؠ��_Q@��G�'�(��4R�����}�M-%%-���f���3E(�����:��4���PsK�Rc��K�4u��@�i1�-�ڀ▒�O�G9��Ҍv�ރGjA@GQցG� � _jC@�1GzN�(�:����@�P�JN��i(���t��J;�ޗ4���A����4�Ҏ�){f�����Jh�i(�JI�(h�Pϥv�f����c�@j8��zs@ �(�Qޔ�P�_˺�\�#�[#���}E�[����Y�t �dS��R@A������ާu�Hl[|��;D��p��>�ތ�tg5���G���ʹ�w�߃ב�2&ѡ�w�!ך�?���k/��~�h�Y��V�#���h6 ���?9Ht6 �n �M�ς�N����4[�y��ѲO%��=;֮��#�>j�d����ñڃ��?:�$�ߖ����W�x�E���ba�^{����!v6�vCg����'{�R�- ��$ �xڭ#ˊ̽���,T�'9�����%�p�.��G�늡��RJq��Y��5�'�Z:U*�*A����A@��t����g�.9���~ �<I�Mw�����)�2J08L����ך�����7�a�XO�]�����@~��m���ln<9u����\3j&D��mWb�8���8�"��sg�����'KW���z*j6���ww�� zsZ��L�ݶ�ͫo)�$�t(P��N���y�:g_'�� }���o��Z�K�=�Mυ�JZ&��<���W�3�k�/X[���?-�k����Z��G�u��s�H�t��9��+q���˫R����<��ΨM�~�`���!nM>�iv �91�ލ�v� P�!F���{��[n�}����͔�����RmLo� :Qۥ�H���Rf���P:Q�((�b�):u�#4PT�ʏsrH#GuVr>�'��S4��dS@{G��g��Ѥ���5X� �k���=8�?�t7�Ǥ�k�OGt���jv��C]����=:��:F����mܯi\B���ѱ��#�W��Ң���n/4Fu@#G�d���G�z�:�QIhL5?=<K�c�φ�Z�ÿZ2u>He��s\�Ɖ���ݫ.rf��>�f�������Oo�Fe������ ���_!x��Z�7�I|�-���ZI��d��9yp��j��*$H�w;9�}GJ����s�*��Y�V��l��FTZ�pF}���0�P��O¡������RsP��sG&�Ζ� �?*Z(�����-%-�(�G�� �I��pSҚM�u�q�.>y��dSŔC�;}J|� "�ʴ%���g�����Gu��(�`S�������2�;w��ԩ��f�CKIE q�E&��@j=���Z? :�O8��ZO�����i����h�SG|Rs�ih�� J^�PzQ@�旷Z3�;w�G�A�- ��>�w��9��}i9J>� ^3Ҁ�4��P(i;��I���w��G�@�<���4P)G���ڀ=)(ϱ�� �=(=i>�dPx���ր�q� �@�� (�ހ�� -&;ө(�P1�"�1@IA�ހ�����PG�n����g��Ŝ�+%�l���Yd*x �Dנ��P��%��tmL �bIܼ�µ����^���A{x�L���d�X�f�O���o����4��鮺w�>'D�Qg�8\�o�2?O����&��ƛtdb>Ԟ)�ء����q��]k��[��е�CC��r�y=�Y�2��Gþ?�ԅ���Y���υ�{�GJ��I-��y$<�U?�����1agp��&�`�1�\��dJ�]n)#�ek� ���v}�f�fz$e�Kyd������#_--�=N[�⬬#���E�-$����۶���$�0"��n�-��^R�ʼn�Ozm+SsR�t�RP���4f�Ҁ=��Dԣ�ԯ�&h�;�)p��������+�7�o������z���imƯ���c������f�Au{|�c̫v�̌�VE�"���;����=#�_����3�6y�����Һ-x#8�L_�^��i�km'����Ɣ�c���6e�����C�Q����þ$�vJ� ��g����'j�\鳫��GԖ%�˪��e�� �=_#�T�ٌ���-�H�He}����6������,ҟ6K��U�>��{z��\�r<� �_�n�H�'�{�@�Nk"����K�tH�ʲh����O;� ,�s�_(��8���I !�s����I��I��&}i{Q�Ԅ'j? _ʓڀs��Η�E��>�R�ZN�R���ޕU݂"�v8P;��P����y���"��G���a 2�*��:`��W�΅i������������g} i�����mDK4�z��1F��>S�e�n��o�f�}&8��w�%wI%��;��+F�B��������CD���R������c?�O�Z��z���aL����17��zW��uM����o��i2Z��`� *�#��,o:\+��$K�0��p�p�)r<�X��|��G}zu�;�V$�3��K�Z����!w��X�X��θ��N?����2�H�(E��(�X��nr�8�*��}й�mƪ�{�1�����@�A����֖��@�g�攚%���p+ҭ>x�T�T�<���,�t��3���������$ifH��p��q_Z|�7�C�.�e�]��'������0�M����ޒN�3�j�>x�g�<e�K��<)�h�`��YI �p�6����>��bW�G��[M��H_xn ���n�d��[h��5�_|7� Mnf�Ҽ7s4��2�B�PI�J �)Yligk������Ԏ�l'F��W�����]�ˈt��A��l�ܚ���R?��vW�qC��-Na�w�,6�����^�$>x#�^֚$;V�v}�+b7�����jo��0����V`������AK@�@�ގii(�E���:�𥤠<�P:�Gz(�G�A���֎��c� J(Ԙ��(<�E�ƀG�QZN٢��G^�Cҗڂ3@){�ފJZZ(��E�G��K�K@ �E/zLPE�(�@QHx��I�4u��Z:R��AҔZO���z��撖�}�i;�Gj:�{R��h��u����@ZZm/"�ƻ����x�g�y`����>b��1�}95�q���g \h�;����jZЀ�7)�COʮ��L���(�+�˫|=dQ�m_O�&�]�>��������!m������t����I�?�~&��_,k�gbu]y9邱��u�Ɨcc��f�9pYP-&�pc\kY�ӵ���5��r��[��7�i�L�F{n9���<Cg>���Łn<�c��+��,����E��t��;��p;W�j��y�Q���vK`v��%���$�d�� �{T:�Dm�3M&�@���:�x1ϕ���SP�l������ϚĤc�.��B��j3O���#�֣?�&!ԟ�4�� ���N1@��[[���\���L/UVUP�nΌ��M}{�U����5-ǐ0u^�S�3�2G��Z�s�b��j��$�"Tā��w��T�j�_���ɢ�������"@WV����}��3����D��Ƚ��]�O��x�RF ����I�7�b+�O����Z�>S+1&ي��'����~#��M��M�ϋ�����֬L��7� ����|w6��,v��l.�q1�����S����,��n����f2��k�N�v���X(�1]�&���%�19�%���s���O��$��w��רv&�N��O���oƨ� �tʮvđ�N���˓�Ε���<��G�A��B�((��ր�4PtiM�����qI�|������[4�|i�YK����eh�YSvY������c�k[o��U��Զ�6v�h��VM�nGpz�T~$)l}��� ܇�i�-�(��ppy_�s��dz��������|�b{_*E�6(��\���>�8�o�L\d��s���W�v�J���>�̗^ ��G�����&+YL�ώ��6��F@�]֗��;�'�|��K]s�R;[ڠ�)0]�߯��:X�Z}�A��{$%��u5���~�+�? ��<7k�b������HR���X/|�fǦ�A���&���ܮO����Z��Le+��v��?�zȻ��� �H[�+����c���95W5$� �~���`��4~�~4�� 'zu'��9�h>���8��4sá[_�WP�nc�'�ý}e��U��:u�z^������$#�F g�����Q����[i�EPބ�3��ᧈo4먴�XY��Q��1�Ny��R+j{#��k��=1��7��0�0�l�ud��+�.1��5��|K���f�?iWWL�C]�G��Ry������Ť�(��֗�M.B t�����q�L[2Os^_��_�Y�Q��3�;uMc�wn>����Z�O#�.�4����O�HNҷ�b��gG��7;�o�,?�uZ�1$Җ�����僴D���k?g�����rē2{rj%q+X��>̊T][�m�<�γ.J��MZ���Udܿ�E�V{�NMK;��R�"E!ϭ-��sGz`ڊ?: ���R�@�<�@)��� 6�߭IJ2���MH- #��}��k�^��N�9����;�M��.V\^�dZp�s�G?�1�\���<,����)sN�>��i�ך %O �Ҧ����T�b��]�GP(��!�[6�,��b��\����r�Z�Փ��`i�s�N)� �AǭKqC��9�ޢ��N�sCR���X}ix�R���J3ޓ��)X�������G=�{�J�<R�b�O�Ҋ��4w��)?���4�s@� 8�>�dz�LP�z�=3GJ �Ps@x�����piq�Iב@G^��J@h����K�'O�������|R�n2� 9��W1[�t��[�PX+�����Y��R7c��L�}��Aѣ�����G�����7G��w��oi�`�-[������k�����J�� Դ��B��#��N���!��W�Z�I��O u��>V�0��?����[J)�A��<?�džd[����Ò/��C7�d0���.�r���pv;�\�}��P�<���$�n�&�,�!��>��>+����{R����?��C^�M�r��m��-�w���U[�i����F3(��5~�&,f�F�2����%�d�aq��I>T�-���?�b4r�+���� [�#H� '�l�S5"ZJC�Qۊ1�SX��s#�RDk���������q�]�$�$- ������ĸ�+��2iږ��}��=�̇��7����7��|!�,�>"�[;�x.|�xa����w�C?k�o���Ҁ����.�Z�O�M����D�?��5�ر^�γ����h35�Z�P��Z�b�Eok�x���)h�E$ҥ���H�22�t?)#��}�㩼Kg�ۈ��=:���u�c�0�?��7��4�da�������G&�-Xڥ�<f��;�BM���6���Yw��ˤ��2O��t��t�c��+�6�/'𬻈�T���C��9��Y��W��^�@��jGe����z��MX�l���T��(���ށ�!s����t���d8��tY���ӄNF�Ҵ���v @��2OO�]m�a��nG�ҝ����u����EE42�G�!=2+�����4���9@��:��/�Ȋ�$�E�qԽG4��$����L�j���Ҏ�~��S�j9~!��j�]��n���,k��e����c�z��i%ߌ�K|;q!��7��`2�ԎG#�]5y-��~ ���6~\?ĝ*�9�>�~bc�+�o�v�����{�#|14n0��9I2_����/�K�Y_[�7�'�f�`"�X���s�G�����<9��r��%�yP�?��A�dl3ZMj]=�_��I͕����I�Gנ`��u� �I�+�|�!.}~��_|6�}��:v�'h����o�xι �s�d�d���=>�����%�g_iSE���\d3?ʺ�*ż��[f�+���,���-�~f�g��;�W�٬JDW�Ċ �B~`��U��+��������9��v�H��)i1@n�b����F-��)�Db�����=������ai�X��d��ox�'o ך,^z�8�}�g\�����}>[y�C���y�n�9=T�y��_8�z�/��G��w�X̊3 �͍�?�_��j��L��b�|;,I:|>խ�#�/|-�}���o0������0 "���Ϳ��D�L^ �~Z��>���YH�W�|@,/���)��Oz�~2뷶L"d�HJ�Z֞Өn��Wh#ޯ�SK�S�|Q�ffm_K���� ��?1?�p���n��0:!��������V:s�Le ���/S��8G�C�"L�I2S]����ˎ�FN�U��؏����D���=���Ա�:?�*+7�R~�5*Z\7��#�I\D4U��.XH�Bj�Ү唜��y�?,M�t��U�g��ϻ���o.d�c#Њ.��4���ڒ�zb��t���y/oೋ���cRzN9���WI��+� ��\�\�7�i2@�I�*���'����A�v�����F�a,h�5��w��ݐ������4�E���Ҿ,j�r��&���p�}3���Z��%t��f�Ş&����R��x��I�;~�k�Gĺ�Z)k��Փa�/!�n�Y�O�[OM,�z�|@�����Ǻ�������ds�z��k������EŜ��6c���+�ύ~ �f�y/��L�&Xشc��K�^�}Q����Dp�@Q����ڊB{�q��{����8��?ʝ����1��1�W�S�*���0�e�rs4���0i��,��d�� �����l��>Dr�_/mgE#E:J��\����Gz��yf��F,s��~����}W���|�x�U�q���x].R����GV*~PW#={ק�_� k�³�-���O�� �^�z��u�V����dd�;�#a�9�I���J��%��R^�s�n� ��nq�֍ɕ�~ ~�>��O��#�pB���X�}�=#�#�'�{]>v�z��m�?A_X|a�:ls\?�5�8�0����������D"y����x8{F�䒢�'k�RQL���&$�n��!w��e_iw!K��p �!b?�k[�%Ԓ�jx�C*��ӭ`__<��ى��g���j�2[|I*�UVb=*y�}�W=��@�jv��v4����JҁҐ`��1@�ڒ��0�(��)Rs@4w&��!���'�x����ހ�SҊCӵ0 Q�R�QH84��ΐ�4������h�' �-�sGCE!�gڎ�P}(��?JQ�V�=SPѵH�.�Kk���D�=A���3J(N�{g�O�3⎕4vZc[\Ƞ�P�f�������������n��K9��������k����Cq��2��H�9��٥r�2#�8澯�K���@�I|9q�uW���z}�O�kx'%vE��^��}��I��i�vy'�* �?w=kμW��<��L0q�Քs��_n]x�X�M�<C=�ʧ���H�ă^�M:����<�X�-4Եb=Ǔ�j�l�����Z�$ƶ����{~u�qw?p�nHPv#��\���z��[p>�(�W�@7P/?���e%f[NP�-�+��S���<�]]��{B�hܨ�����\��FY��c?t���+b��iG�=�����n|d�{(�&�ɎicW�#5��{7�oqi'��/Q�������\`)<���}�ȫ��=����𦲮_C�R�8��n18}Q����J��<]��<;����=��a5����E�'�&}�¿�c����*��0n����_Y���RD��9�>-�~)���[^]�oĶ��ُS��:�Wq�>��\�����ً�⎃�ZKi�im@�g�+�&��PW�?��jRO��%�1�WQ�܃��S�Q��w��<#�ڇR��� ��JGZ�?�h�I�]U $�d �>��|+Be�R����>k���n��N*ɕ"�`N�h����?Ϋ!"�X�9�k;V��C��'m�˸�3X�F���l���w2\9��B����CἺ �Dv������6P�w��>���+�_����b�h�����Oi��b�bb����"x���W$pA�ֈ��[��|A�ƺ�O��K[� �VF{w�Źq�Jķe�1l�op��ps�&�M|)���7VM{�^x�A�@}�v�g�Tq�H�G�?�q��m���4��Hb�����\� sK�F�6�-��MV4$^HB��s߿"���,^����>���?tJEY�U�C�c1�M�p�����o�ZK�����g�:�vN)���a�V->*��d�ۜqY����œ�a1G�ߌ���^�F��c���pE��p�����V>�y&�e���y[%�]v������jn� ��}���g�4Է+��l�߭Gޛ$Zm�ΐ 9��ྥ�i�lA����10���*s�g�J�k�e]'L�|Oy6�cqqB5�KfİI�CG8�Ү �&[_�ּK{�o��i)\�Ϧ�y��,?J���"����xV�������9& :M�K��^�� �Sk����5�z��o-�i���H���i[�1�U��\��֝���#����2���Y]��7��m��a�W��7:{T�gR��#�ϯޯ��2�)��;�oar�]9P��Dc�^�:R�$vP$jO����:��n�!�s��H^S�%�<~�\u�Mg]�E9A�G���J��-�9�x �K��Jʾx�O��1-b�e\����<db��n�\�������18�斵�1��ir�m"��qG�1<�Ȧ�b2\�ϦkB�I�'æ�J�|���G�����A�SӅ���~i��#��pif�ة�ޝI5c⎑�c�r}�Zе8��|�O��=ə��V�.��kC�uѯ�y�G���jd��)��\�� � �}C�����,���{x`Ǥ@����\Υ���HP�q� ᣴ���>��T�`s�[��g��}��5nș��%����C �K��Rz����� Ym�u���]�T�����+�n�v�����cF-�M�F�T�����:խ"�H/���[q"���W9�E,s��ʬ0pz)4�!���Hу�ym���О�g�?���BS�x��̪A6z�=����N���W���� ����b��=@]D{��q�����i�j�0:WďnU��ؘ$s�Ԝ+��<��Y���j��U}�Lxo;B��Rx82���+{]�v��~&��K��w� �f�g��`۬h-�(=Z;pO��\���RɨĿݕQ��=�2�mBV ����}k)�h��[���,̷J�S�C��L���a\yq������|#C��5��r�]��0.�H�3���g�x[�Z��Phs��2j�pS��� QW@���[�#v�S��Gr1U��m�#�b�>��=7�_��i~�J��d�icS���Tz���~4�xC�$];�։l��A�*��'��N-��:rJ���7ko2K,���F��#ӭ>�ff���HP8\�ںms^��-t]*���@��(�9�j��C#��6�#8���Rj�DXYeo ���ZW�u8�k�צ3^\�n#{�Z���I9���5�|Ir �q���m ���)��@O4A�� C�z���/��hm'Ak���S����@���=?�w���"��E֫�Yĵ� {�xtc�G^�ך�|B{|�k�>Q7����6��i��TU=>_�<�+����Oy�Ig�7QE|�>���';�����~ ��E��6��闛��o/��207`��;�����h�jj^$��h����#�!W�#�\���"�������g��M�M��i�nߐl~�>(�t�G��N���~��z��h��Ć�� 33e��9a��'�Z��c��D�l�'��H����mL�R՚�G��k`��H���&�� 5�7�r�ˏ��F�!��S���@.{c85��갴&?-� ��l���3�ұe$s�.C��<Q�T���ne۞��b=��N���)4��4��� �9Sv:0#�Wڟ|:��$�M-v���Q�g,|'�/[�]�p>��[NLv��h����A>���+o�`�Z<��|�a�r�V�\��j;�w����m͕��/Ai���{����_0�D�4�G��Φ��L��<�r:��?S]}:�G�B�����|���V7m��q��H�����pi��4��Ɵ�4���|����fM�ڛG�%�DGb��8#���oN�^B��� 80>��d�D��IaS�?��b�OS�9Tx�;E��T9����^8����)��<��F��jU;s�͡�� :���9�:��o+H����2������h��4 )ڲs���L֖����uo ��v��+�O���~5j:\WG0-ԟ����3m.��*ґ�$�'Ў>���O��2�Q��Q�wV8��4���Tv��洚(]��t ��$��� p�A�(�-���+�:��*#[�� I�ʅ�u�c]0i��@�L�C#�A�GL�QҤ?OҎ�g�� ;��4���0 OjQ��'�@��gց��(�zQҐ�c@<H~����Z)(�ZJ9�8����z�JhLb��Gj^�Rb��R��NM���3� 2�p�0���'�|E;%Əgx_;��7R�uP��� ���Q�X�d�ծ����%���__|-:���q�:��m�?�H��g���E%��������>�c�K�2p��o�뷕W�S�:��d��5{�1殥�,l���'<w�d�l��m]Yit���&��;��c#1�W��e����$�U��6�~Y�<�[�)롷C�<[}w-��.�f�B �n3�W%������x�9�����Y�Os����+ϘH����a7�5٣[x�R�-�����?1JWؕkm��22���������:��V��%|��j��/�z#� ��� ���_Z�Ziq��۴ә�|��Z�be;ep����J@���}��Ž����w7�b]^�/6MSH���R��K��uO>{yI ���[^���ic��|Y�����U�7c�7J}�<��:�ֻ����{/�u;cD2�� ���s�qҽ.��wz��2��4�K9����F�9�(lwV���i�n��ׅ4��&y���Zs<|s�پl�o�jpVw Y�#�߀^*a�4�_U��h&��!hN!����K�CY�o��Hn�#���������� ����� ��&���5C"`�K���+�9��o�_�������W�������W&�ŞQ:y�s�sT✮� ڍ��?n&�o:��kp��;Ę9����� �.��\N�."^��v�W��q3l���'�-��3�@��W�x�B�w�Y�� ��j&E��vi��R�.���1��P֚7�[��E��ߏZ߇������39�������;�Or�1�1,x��̣��5��kT�k�D8O�F��s�b:�ڴ!����oL���l��pi��wZn�:˵��X�Щ�w��i�Y�KM��> x�,�Զ:��|���o�a��������<��Gm��|Π��>��^7��6��-���kk�Go��w��W��V�ĩ�]X���. �ڐj����?� ��3j6g�|WyF�+�ǵ��m0Ǹ���2���IJ���j�B��֫5�����H�B"����ȑs�;��na��X IH�by�E9�s\��"%,���*Ҝ�ʢ���F��>8m��Q�~�պ��<��6>����O��[g�;��0V�ۗ�����@7��s�''��t���!YVT�C��B�i�]�ʌ~�����O�v����1�B�9�����͇��L2�#��(� e�����rr��q*<dvpA�kw�|�E��[%�r1�c>�H����UGF'��g�-R�H�}KQ��G����c�,_|��a�SZ�C�&��4���G���q�q���n�<ֱYG�[�S30B��n�R��E�G{{�y��W�Q���9�̇=z�T�sZ{'|SѮ�5U�����2�井�z��<���'մ9���������n�1^��Y�V�y`�<:����HX0=�xƹx�Zt��X���յ��m�s��[�+�ڌ1�I�y#�X�v�H��k�ܽd�ɉ�Sda��K�]���s�ndq��s�2��F 9!���=*l������鍵�H������4���Z��B���UQ���P��|"�nɎ��mD`Uc��RI����w��Ƶw�=��:�O/�����?Q��ǰ5��1��l�P�g=9 W�|8���� �����Vy�u]P��Q�s\$c�kK�:�!K���<7)c<�r$��K���o?Z�WQ�n"+�[�l ���F�g���1^��@�Օ��]�|-�c��v�`e��R$s���5��]2�x�+ҿu�b�Dc�eُ��M%��&�w�gw�<΄�oe�rq��s,V�b�Aut���=j��Bt�Y��i0�mΨ_�$!��G1����C]�32�q$���\�#�A�{���٭�ŐZm��(���H��?�~k&����J��'��c;��Q�[;x�k����wvv�<J��\�������╻�s���D��A�f����(��7}��U��w\�;Fz6#�]}u�V??S�-/��s:��v퓀N~�i����դ�L�d��|�~�U9.�z�_�)o�O��7q�Am'����үX}�K9M���`-��T6��9�弹���"8�ۃ��nq_E|)���=�+�^Y� �����q�7q^!���w��]�2�����ӭ{���5e���j �.ؕ�m�=�88��� 9� �n��S��$ҼC�$b�9Cj����G;�=9�2���B����[��k�� ��Ns�] ��3��{�߄�Ì���&{)bO�5����r���OM���_WF�N�:�Q.k�j�{�5�$1�'�}�HБ�*u�L����#s�6�s���?!ֺ�{G�|�DK��I!z�����wY�m�^�گe���e{��mh��-ˆ� a���*˽�%���dJpώ��ֶ�c�i����-��I�1YZ��-�,)�n�+��ޥ��=��8�g���c%N�+�Pz������{c�����'�,uz'��ya�;��d�Ʃ/��8� �?{�=�v-�ܩ#p�2��������O�����i9��Q��'��۟��B[g�ִ70SV�a��HW#��^���#%�4Z����>~���.}Ƒ?�p�>"oX�����rl1jv&H�=��������w���#7�5-�kt�8'���?^��\U�.2������"����v���<?�;ڼ�X�4u���k���nZ��i��?СA�������¼���L�p�+�\�.?�?zRH�f�b-&Ԧ������� ]��pv��ק��kU�X9�ure����w#g{7=6����`J��KI����5�'"5������ƻ$�op�R��]�iu��-�Y�+�D,��9ǽ}���Z$�����}�"w�@Z�cJе����H�b>ceq��?���L���T���8��a�4�}���:֑��4�wgӿaK�y�D{�|��L=�寋6~&�f��02��c���ǵ{/�-]�1��S�ȑ�%h����}���'��Eԯ���|5�n�����Q�ܹM5���!�X7L$#=p���3Y�W̸�LI ��]�/�[2G�[D�x��OMԒ;���Xz�x�q�8���=�ѕ~Z[r�i% �Ȉ��i��#nߩ���z���>�Ԧ�>�*�� �1����R��p?���w���*�����@4r)FW!�sҾ����}U�I�M�*�1"i����``l�+���uΫ��>��;�4j�)8�W���3j%�ı0gK�kI��H�oƴ���Q�G��g�^���M�x7B���N�5?��#�z*g=��+�_�_D�KGnwmSit�= ������m�MZ���2�3�'v��C�u����� �\H��rr{瞴�;�T����:���,�$h�{� �t���cY v��PD\�ǔ�H9��#]g��,W�[+,9#��01\�i H|�v=U-K����0{��������0n�E��VS�<Vψm�n�[O[�^$�~=�Y&���=GJ��юs�3�4���`!�GJ^�ڀ�3ړ�/j �'8���J(��iN;�R�o�i?s}����ړ����ހ&h�����z)z�ځ�@ ����2��###�Ps�/ÿ�Z��F��j���As�x<{���t8�1jZO�5c���M=�^I%P~k�?g�3���ݺ�x��G3��J1�:�S�dw�_^x��r�]ݏ�u�ɂbԖ6��&/^��~H��幇aa�i�KMm����F������9�+�>,x�9 x�\�Z #���L��0<��^��S�^�t�<7 �\I=x�$a���=���\�zf����d�9���pGޥK��eis��u[����&#'w��Z�B�5[�GOռ4�72C�a)H���h���0H ��z���x,L���2��FO�KdW�|9�.eK����FH��[�es�����Ҕ_5�k�#����}O@��E���U��ٵ[2�o���`H��9"�X���&F����P����𖥧i�7�y����!�F����� Da��ָO�zF��X���~!�E�ҝ�9_�v���U7i�����%��>���f�F�I���m$dg�U�a��0E�۷��R~��?�����֤��1�@��zW�����H�=0�=�����t�}��r]��Ã&6��`d��g�ƽ�Rua��mR�*�P�όd��>��Ku."%�R��G��~�eK���Gl���j[li$[�N��>!�Z��}�HYn���kr�9���>��p�U�u *MK��r�#�^3��s9����+�Пl���P�i=H����>'��W�I�_E�K"#��p?*qk�m�����Z�K� ���4 6 ��r1�~�!��c{r�J7!N�����֛��ho�/�[Y"b��a�p�<P8S���k�o�^7Դ�����V�p:U�W8�1�# �ꢪZj���!n-�sM ��90璬��S�ZU�K\8������T�<?{,�����iI��YW'�;��\��ב\M ������@``#U,8҄��EUG�t�E�pce��t^���Q2���6s���=3����&�\�-$Ś<$J �q֒\,K-��Br�-�n��f�5�kcج5{:�|�KtR�`l���q�^E��p�ޙ��(��tK��{x�yh_��~0`Er�'�5�V�Z���7�%�����z�u;�d�����` ��rs���[nǮ�?�VY��d��<5χ����}����n`y�h� � (?��rv���o�Q�NJь�!n��7'��T�tE�z�K1y�S:�BĀg�x�uF�Ͽ���aA�����=:؏J���]�isp�$I01D�ߝzï[�������Yi��`��]�-�bs�~`��d�{�J�o���'��n��Bɸ��oNs��U�B� ��xm��;⽫^�k�SL���5k�@A������I�ƹ+٢���-'�%a�H ����UdK��hVV��˛'�*�[��Ӄ��sWe��VU�3kĕKU?9?���Ϲ����`�P��L`խ;�H��snC?���.}w�O�����Ym��i�)�9F�#�W�+ Bq����4���`�J���`�٣�4�EWP�I��[0�)>����;�mKƲY�<�|̆yd�o}��OQ��?��Ú�i�����g'��y�$_uߌ�}k�_��ŷ���~.�݂����6����/01����MF��U���F�i�/#���I�^���s��������Jׄ$����?�5+� ]=f����E-�ū=BWBZ=GBkwS���q�J�~di�����0a`1��߉~4�� m�(�] P.�c�u���2:~u�*��.��i�����S~�Kr�=���;�� 9vNG��]OI.�&��J�A$�����d������� ,�a����dx��V7�5 $��A����#�ћI�^�{Y"���ī���ڝ�xفP����}��/ xsĉk�x�Kҵ"#mu�Ѹ�ɸ\��!]Ρ�!|8���Ӵ/�Įb:f��<��,����ZIX��#�ͱ�+��1�2�"���`%;�p��֯r���=�$[��Uʱܷ�J��3�Y9={ �]OB����:�NG�l��M u�-xr��?�l�3�� �M��s]���Fd� �1D�cb�|ǹ?���F�jE:���cf�鞔�����P�[F~\�*{�M����:'���X�\�|�7�Kp�3����}�k�o����5��ȴ��� rڋ�p$��>�$��g�.��v��Z���Ё���?�օ2Z:���̒��,�R��8�f���l���mգ!��[��k1u9nn5 ؞������֬+��%�,�Ț�>�&�cH��)��r0nen�Bz~��-��x���H�TF�䞁Gzv�$��L���]���ٻM��~ �y/�����˧�����O(q�%s��R3K����]|-Ʊy� �a|ٱ�2O�5�� �/����sq�&�8�.�9r�)�k�<?���-������%�3�9�~\�pz���x���M��$���$�m�S8�f�9^�ܐ�<�_�g,�%�!K��������u���;M���[̙�ɽ=�?�]���Y$o�r|�1��1����ҹ�_�>V��K����38�:p��ѓщ�x�[�Km6(��������ȯY��hSY���6w�t��u=�?_-�������̳�� ��i1���kQ~!Yi�Ŭ-$�VP��Fqӓ��(�@�=��M������c,� ���v+�ː�ǡ�5�7�庻�!�-�]� ���d6=��������N�xŌ"v2��j���k����HY�!`�s��U�Y���^k�5�G�5�G�H�뛹����B���^����%�Iђ0H�'��x�����F?(\�~*���¶~'��#�����7�����2FH�#8#�ڧ��W�F]�?��m2� ؞�(}��5����5�[��a��_�Up�x$���_�7�&����V�� ����$�~F�:�^���~*�"�|6�D0�"S��PEbO�/YK��P�������+��x���4cA�m�9-��� gebk��)蚝��'���$����X�4Ջ��&�xt���9q�jX4{�KJR�prd�Z��-�|<ڡ�9��M��E��f�ܦUO-y)`=�I�T��E�� �S�@c��G���:~u�����ud2M4��Ð�y=�+cTm6<��L���YÀ÷?�j�5��oj ml�&+p~g>���MM�/�9j����[a���P��O�}�ߋ������'�e��Լ<a��GX�ߡ���K�>�t�ɴ::�B z��?��%��� :O�����t�?��-�hu�)�MB��I��6��p��+��{i2�=��v,��!��E��$�5�}��_ܻD� ������U�z/�����"���-���{��e#��#��6����x�rW~�n��baI2n$����W�?�����:S���_��"��K���'�����o�/����h��41��V� ?x#ˁY�sZ������Kq�+r�����54m��'�#�ץx���zl�SÓF�ă ȕB��d9��W wbѱ0�`�@`~�ꚱ��k»�v�8��1e��> h�V�$Q���2yp�/ʬF2���<ל_\I ������s��o��k�����+ȕǗ}KcM��4Y�����x��v�����ݎ?�Ԛ��]ˡ���ăך<Q��kʮ�K��$�UUI���ZӰ��{��Us�I32���O����Cg`#�����-�~F��2�y|��Ԯ�r(����.������1��������w.���B5�� �6�����J��5���o��D�T����־��]�ħO��]y�����6.�$N� Υ�b��=j��>�m�ԡ�i�Ztz&�' n��y��5)<6�� B |�-����9�_�����|Qiegysk�'���q���#�����_1t[��1'�������w��+uj$��dx��3���ѷ�q��*� ;3��^�u�m&R�b�e�l������j���.��}��a��,C�w�����1}ޔ֑���1Lɴ�k��|��ci�����_�`�sIuM���/X�RH3�*���(Sk�����=�m%�.��I����kp;��;���{��l���A�[�(���$֗�|Kܲ=���S s�m`��nQ6�9''�t�w.*�f-ߡ���M����BD8!���T��Vԏ#|ǎ��x��l�.��T6�wi��6�g�5�23pH�ݪ]�#�N��?ZN�)��%(��4��)h���g�(?C@/jOΔ~4���?V1���,�;zBs@(�(8����9�y��#PG��F9�=(�ȡ�h?Z����*xv�^إ͌��і� �89GJ�3�6������x���u 5��~RP~U�w���5�ı��}��k�4,@$��A㡯�>^�\[��ׅ�<�xy8���[�ֺ�Lչ��O�4�Ӛ��[�Tl�m�(.29貦���~�o�#�߹:�2<��JF3����>�ԬR��M� ���[���'�<w���oi(�i���#��9�Wh�Vz�v�s�>�^x�����d���;mOZ���#B�ʼnE�kT��̑�N��#��J��t�&�'�O�8���?��{{Wz�CI�t���Q��|x��t�G�9�҃�n��>��w'��=)�t�G�J�|�Ծ�i��A8��[↳�jVR�����0;uO�z�p�W��ıZ�d�.洑�u��&�z�֗�|U⫨�k�Y�S�7�p�:0����t��j���c�����h,�%? W��$m��`��;�u�Y��&e�-���<�Q��J�咽�@���q��;�5�r����ˆ�<�����ꆳf-b�;�fٝ�����>�U�3ħ�O�Xڥ�K;JD��r^���M�S��9o<����Y"�Yp�Ê�I�I'9�՛2����j�{O�;�b�O���Q��R��g��c�`��y�|>����Lm�q�k�f��̲��*��=~�k�?gk���V���&�n��!��'�$g v�3���<�O�*8��r� �d�״����]�F>ઔ��#���sſ�=Q�I����Lwr4~��8?�|��6�Jy�h�W'����p?�ʌ�����x"]9�-#��H~y�즵�p��Q|���)�D����rܕB}04��.�����Ip�y1�&Q��]m��Z�z\�3|�#�1����sO����it�d��g�XW�a���vw%���֤�2����{�n�N�2�z����r�n�+ �����5����Q��%-сy��r�Q-�H.��ڄ�X�( �z�5���#�e�g�;�ӊô�e?*o�b���v �R&���P#oTko���E�;xi&�Dz��ֽ������ӵMJxT���{`�}��r̸�a� W�(�m���:�����+ݾ^�ޗb/mf�kh�6��@7G�s�ׁ�z���F)t=����-�_l�o�K�2b��.����t�-�F�����'X��mg�}Kź�Y�. �������xk��L:jx�C��p<��yrǎ��u�}�7⾏zD�A�� LY��B�ev�Y�c��SE��W�|��wX�T�:i4�A��c���^y�꺃;���&G$+~dWs�m#cJR�OH�Ѿ� ���7�pZ���e��B9!�.G�1�ӒH��,��L�R��l�����P�r�"JaHJ�Ȏۙ��'?Ҭ�\�D���G1�Ǹ��ʨO����N�!��ݽ��)%�<�rO�]�f���M�ܮFNc#�����y7Os��5j��Td� =z�˲ӭ�����M���p�ة��VD�i��(�^�]��=k��]V��5m6� ��C{���[�W8H]2���U�]��c�[�˦H�v�!�]g����<[�;��`q��2J�Wx��s�/H�� �~��K�x��J�VY��+ɼ���9�T%�}��_�v~��Ԍ7V�o&��][�}��C�Z���O� ���U�|�^��@�I #�_���n�}oc O+D���\ƣ��p���k�x�}-_X�� �n1jz+�+�]ꠑ�Z�v��'s���#3m<C�ȿv=�X�:��k�������&�`/��E�'��s�}���7�eY��,�J���H�r���_2x��~����ڈまF8�ԏjJܻ�{��3|��Y/n��1Z�?< �wkF$0\��{q����)����$�!�W��HTc������(x�bV�e;��<�SZ%�0�`2������k Gj�����3�/���q'���$�f�Ñ�0+j̘���xɹ�Ҳ-!�C�8N:��h�j���$ �ΊG! ��M&2 FKf�����������N�o��JKO�x.m�42���Y-X>��ws��Tc�[?��n��~5�]i�=��ɔD�gr+���!��� �W�x��Z������ȸ���Ns��z�����?��ũjZLJ���4��[��^E!YA�*J���>���q[A?��=,��gܬ�1#��\?�S(�6�.�|@� ڹ[��%0͙����5����t��Df��9(�+9�z`^���$�1��ڄѸ C�Id���;ׁk���Vα���w����4Һ�S��0�?��DKm~��Ս`�ڂI�τ�Wvr=����mC��eW�b���'�<�sY7V6��yZ���lÞ:z;�(i���SHmc�f����� �Ga�;P�m�������1I�+��3Z6ڢ �h!#k4�b��u5��G[%y9%��7�a�N�kB��,��ft�ɪןny}F%8��.��M<Ʈ>q��7`V��Y������"��qE��ss��y-��М~���#�͆��z�Z���eK��A��9���%Ȏ����?�Pi��6��WV��"6r�qޚvbh���X��J������h�V�r{<�����IH%����� �̲�k 2��q�ݱ�xW����n��!���ge ��F��g9,�}��lz���e+���a��kL}>f��?u��)�ef|��/m{q�&�!RO7�Nx�z��V��^�O���~�bk��Z��j��j�!X�U�I���"�;�S�p\I�?�!#�ר��W����C�����nX�C��ƘC��t����-*��Z�Y�-#�G�h�s�?�kCsv'=)�!�_Q�ܣ=0qT�Cp��jѼr~K-:,�g�����@����i��Z�yL�$oC� ��I��Qn"���%��*�*_���9c�0S��|�����"b��\��J���qj�Y�{˙���|i-#��`W�t�/Z�6��Gqoum,��/h�7�B�j�j�\�1-�R�>l@�ۭ{�����G�[K Ķ�K��^rC'�{���ә�E$ϭ�_�����پ��j���� :Ki��� S#���)���Zҝ���� �s��,t���"�5;���M�(E!�9wl�ް�/�� ��i��k�+���-�I؇�{V_j�JK�C�_�L�\NG�.v)�>ͯ .z���W��y�iE��7e�6�$שx���Yjq�n<�T#�a���<ז�$,�08�u��\�NkI6�l��kH�9$h,t�YPaY{ 8�>^k�O4�e�9#��1�n����q�/쭟i�v�ϡ9���\������՝�� ���}�Ɛ������$88��d�Z���g�U2��rܓ�hX��3v�O����<7g���l<�*����}��mb��-64�#d+�u���V�I8��ɯY����Ś�wĶ�M&��hs�� ���s�i��4�]>�_.I�2�,�e���;��P��9d� -�w+3�*��Nk�=�w��@?��{��,O�sg?�+��VG������?ٿ�l0�枾/���&�H�� ��a<v��6�e8ͣ�Ƕ��<�&ew�٩m�ԕJ�9���ױx��/���t���w�l7��z�ǽq�އ�[�-����fK1M��ԃ�sZX�W������Ap0����^צG���H��%�F�\H�=X��z&�{M������^�u |�o���EU�v�}y3[��j��n�����E&�m�G�?� C�:���W�-o,Ts�kj��[�ȯ��\q�5�6�k����^��bI�K�FCו���W��w���d��{&B�=�]�&���F`�������� �|���b���A�7 �������寴�%�>~��1?��pP��R�����V�>����� =��*6Яg�������-�{���pm��"���#B���$�n����Oҹ[ۉe's�������m��P��ZɅ����U>���U�܁��}O45bO�H:t�#���@;ѓ����1A8�iy�?�ZN�Q�(�h�Iޖ�f�� (������i�R���zP���=�K@h⁚3@�"��c��~4��I�����3O�%f�>��;��I�s�[�%��FN~b���n��k�W�V+H�Ӽe�K�Zj�h���gl�~�t���y�lm͌څ���٬ġu�.��w�<M��X�=k������_ �N�C��i��5{3��.Ԟ�F��|� �������~�¼c�:���<~���Ǒs&��c^��:�a$V�~�_�{8e�p�썋�ڼ+\��]D@�c�1jD)��ZIhh� ���v>�a�'}��s)�߂� 6�K;���G��E²@�H��+˼[ap��XзV�Qr?�>��މ�^�5����DK�?{�z�R��a;#�����V�����U��.�u�u�T�k����?H�F�����3�L�g��z ����.ѡ��֕t@�����u8�\+��C�f�L�v��ɥ�Uv��j�'����I��.����Ǿ��f��5PS�����z����9H�M9wK�~Mzg�R�&��or�1e�}����S�k�Wd�vr��zRV2��6B�P&�mc�� ��f��� �@o����U��ɷ9Dn�!����t��Tr8;�9���2�C��z��)�!�r5H����M�D�=y����]��O��[�X�F���t��$��}���~�m.����|�.0�}oJ�-�c��!_�y�_#~�Ƒs��[ܕ�s���p��8##��~������ag�<l��)�i�<��<��x� �+��]H�&���J)7Í.&9t�L��)#'$���zW͟/�8.�=3�w�s�$�n��ˁ��U������R��\|��,�������#7��>V��U��sY�II��/e��i�E�]�_C�bMJ�qJ#X� ���W�G/��v�9ʃ#�g�*��h��@0C��h�J�3VD"�b�j�K+�7��O�i�?�t�:f����7 %����;����A�}+XѸ�ԗD�d#�?�MYh'܂�n�X��N+J#j>]�g�����m�wό{�V�Y��f����Nom���Z� �͌���g�;��a���-�bf���H�#r��'>��Er��)�A��-��V��V]?ǖ�gx�ۢg�����M4���o�߈MƆ��Ktch��Դ$�����z�?�| �i-q�\�dHs2=ͻ��M�@�\��I��x��m#_ҭI�o����f��r6��z_�>)�#�O�丟]��q��7�!�L�'����V�sH+���^;��kIm%�S�D���\&���Gf����8,|ٙ��+�~)k>�Ԥ�O���D����ё��� �mJ�LK�Hmt�S#z����tQ#.�L�g��1�-p �;���)�cr�s�q�y�[�=�-ι7�b���yQn��U�ͫ�\�M g&[������̽UUe � ��U�8�K{�wR�8�؉���R8c��T��[�:´!�-e�N]�~;*xE��߯E���P{dG��V�rkN�0����q"�3���!�E �f���d.���k����j6��k;��B.8S�ܜc5��Z���a yo6�����xn���9�����Skn`�w�$�)���x�F�U���v�s�0���?�����{曦��H�t=a! g��g��,�5�'��hs\Eso�j^�����ͻs�H����Ҿ��&��M/IYW����\��nl�e�Y"�s��k$�<s���trݙ�� B��ʭ��'?���� �~���*�&8@��'�><\�];�[����\�ȇq�q����+t�/$R]ʙ�++����T����8��މ��պ�+���̓��S6�ac2Z�*�ɹ��FG��\��G�̕��zf{�;�U��5�Z�،�8�#����p:��8�w{9.�0Y��g>K��8���为,���䓓U��V;T�zB4mА@�=d��[3��W��L���Tl� *\Ĝ�v�kX�[LD?ng���;d>��H62od�%8F'?zF�V��u�AQ��Mjk�YM��n�WN��u32aۿ��;4jY�Cm�<~di8!&�A:/q_f|.�:trx��:��;A�F������E��5�_����.|��z����i%�r(�b��s�r�Gz���,m�>��/�Xˎi⿀���*��oB`�c|_��i��^M̌��P2��"A�z����ugu��@�e;�@��c!� z����,�~0E<]��I�N+��?J�o� �I|�o�s���_�C�J1[��MhR����R=/�)�A,P�?�G5�q���#=��0F3��6b0l3f�u+Ek��"�]Ǔ� �횅��w�ēk�ܪ��q�:����ׯ�y�n��Cʙd-�ç�+���Yg/#e���kX��T0��*7ѷ3�k�� �N�� f6ʟph%�i�iA���QV���Yhf;{�0~N#p�������ʗo%}�A��P}��$(� �(�����;'ʬ���_z��;D���җKt[�][h�!�}�߾ ���� ���/PV<�]N"-�7���k�o/�4_$>$�W>أ 'ӵX��8��=�_|����-�,��4;�<n�ݢ�A�����Q���<9K��� �Z�EtdA�(�vH֔V��W�$�dW�4��ta��<�5�.���2��I�ͷ+��We�4�E$�e����-k�s�w�� /%��ܘl-�1��ҩh�"[�l�o.����ǜn��,q��E���Ӆ��p<��A��G~����c��������O=�K�KC:���<�+��܍��G9����Ĭq��<촆G<�Oz��U���)Y|�5��W��Z�u u ��k�O�>����k�y��ݣ�*�@lps���q�b!$�u�W�=b���C̊͝�fS��$n�8�x�V����6Pi1��$��;�����8�¿��1�ɥ^kV�,w��Fc�����\�< ���0"O1� G yfT�����R���O���o&m@��VXa�'`x$�U'?�-��k���|<�śE��*8�T���}+�������kh����/�+�p������B}���D�FՏRTU������g$�֛��%��YV���/?��&Ȟk{6&��|]ao9�O]�8����O,���� ��/W���{�<���[K�,�_�kzu����K�i������|c}j�-�\N�ߺ|�}p8��Q3�q�N=q�X�Z(ܲ����P������,�9��d�`{�Qf;��!`���r7F3^��Y�Ϫ�w�����(�����,��ס�Y�c���^��?���C�%Ɲ�����::y�vpd��@@>� r�>�$�E�ɞ3�&��ʂs����V����a.�b�K�)�!<�=�XI�����U��::���d��"L�#m�׀u�u,��U�Ė>R1^C�#��g�g%ijo���ߤ��ټw�I�����2D��^&�'Gf_�E2��X�N;���B�v�����]>�&M����'ӡ�mB��=��.�h͆M��T��Ҵ�Bi�8���I��5�V#V�c��Ӈ�\��-��"��U��}A���{i�����:���r@��fC����k��ڄ.����{v���#Tfұ�k���8�d�S�����:H']���C CTuY��q3��Q���=��u�yB��˃�ej]�V;U�7�Z-T���p�q�f�KW�4�+|��Wi�~F��L迾�.���A�n�r�Y��O��:q̲n��&����Q�c��x��F�H��t�'��1�W1unğ.)�z�˴�U�jz�Zi��q8`x ���ָ�X�wj�]�>�\m��u5Z��c0�##�Cӊ\{�c�����R��Z%�P1@O4 S�Rh{{�x����8ǽ��������?Z)�z�=��Ҋ>�c4uǵQ@y�GZ:�Iڀ�b�h(�)M-v��?�S�#IpVA���{e���_i��|���Z\k�-����wb��$��_ �5��M�D~tP� ��N%8��������g��6m��~)��UG�%��(�q����a$�fd�S�=_⇉4��d�W�o���%ދ�y���Ym�1�5�O��� �����A������WY���j��t�o�Fڐ�z,7{����^��K�P�6Rh�qq�_��#��O�o�jb�ͥf�嚗�4���D��Ws����t�P�N�����ۋkkd0M0+tޣ18�`�!u��l��, 'U����]�����W��m��3{ ���f. ==�g�Ʀ;�5��>�~"h���N}{Np!5(�GM� s� a|O�������M��W����]@���W�:�e��g�O�k;�v��[�5���/��6��M�X��x=�n��+�>e���y�V��V8/p'�;��V��,�xĒ�x5�~>�Idg�e a��m�=���dm�H�s Z�^�h�<�D1�hO@Oֱ�� )Ԟ�Nq�5�%�Xx��v,O�8�}I��n0zap? ���Z� ����7Zt[3��(B:��L'O��.���Շo�f���%����>-����_Z8��v�*O����B��Cl˽@l�+���zWן/uMxg�Uմ�d#e��. ���R�O^�?J����iu_����Yl4)��ƛ�7U�$������q���:U��y�V!7j^~��^k�mN[�WM�����?����V��ƾx��] ZW�� 9}��=�"�ovo;[c�SO�}�����|vw�����ko2�'C��������x��#�`ͧ�쏕N=���>�ip�g��ǡ ��uwt����e��/#>�q�떾\I�#�WZCEm#��5ۆ�y�7�n���[TUB�O~N=������!��>fߨȭ�1#u�m��wGҹ�!O9�|V��bk��ݴ����I�e�K�"���@��g�q��8�#ur���(!x9��� !|�<�oUT�*��A���wS�b��~cI�-���q�kp�{��Ox�F�6��k�p���#���=�5��ܾ'����'�uV�f����v�1�7�k��xz���X����Z�ͻ{�d�C�5�.��t�|��h�m;V;���:��SЪZ�=�_���0��xr���`q�W��zƖ�?�la#��o��������).#c6�W�x�}�ļIy��d�8��� )���(rv��ʝR�C��7X��C�U.��dAs+���z�Gζ$��-�!s ^q$�s� �]��%�erY�?�k;��k���nB�2�[.�_J�]��A� hk�d+�r��^՟20*H#ޘ���Tڌ6)��f^Nࠜ}s�*�w���Lqީ�6�q��k-J�K}�K}Yy���Gq�+����?��$���ǔ�i�����u���� �<� ,�����K>�����3���+�J���c+!�#��E_C�/��j:�N���4��ϧn�H���� �l�Ƈ$Ҩ2],B�$X܂q��k�_�o�Z���j�0Y�G��B�X0q���C�W����LJ�hu�Q�o���6mߋC'_���ɤ]$���:h���=��$j�T[_I����s�+�ub�i���62n[�}k�/��k�0mO��|9b��B����W��'6��0��KO��&)�Jwv�%}�<��a��V�6�?x|�S/%����}��|�����j?�-��X��]�qߥV�;��<֞��H�1/��Q���Q�:t9 N�`F"���Ƈ;~�J5b~������-����!��q��k(a���1��h~s#��,���H�����dZ�� ���o�k���wpUDا��^�n��#I*��&�����:�<�U��,��X$;~'�`:����d�%�`�ź��|-����5���:� �8�:�⾼� �����[��U�/9Fx���ƿ6e]kY���ȴ{������.�$���z�����n�� ���� �t!�r?S+X�w�[��^"�[��$�x��9�@�_3x��O�n�4�bp-�$��_W�hOM����5(\�{$� =��ھU�悳4r]x�q�#�"=%y�?��k4qz���,��Wgc�k�I�ю+��n��y��<�����}v�O���$�3�A≕Ng��A�ȟT���|E���y'��P� ;6sw���[�!h�T9�6ȇ=����%�"�p���n�.�Pd�7r�Z���딹�����3lElq��ҳg�(���J#4�jm4v�8S��zT�-����]�IW�#�G�|;�ޫ}}�xe�Gf�6�(��[�־���}ß����<z��v���H�5��5=F�5�Y���`�q����c�`��W�F�յ�a(����|�W'!B�^p M\�w����>!�5��m�΅��R�Q�s����0�O���O.��㏴\1=}Z��xb{WmCQ0jH��1�6���:�\ƫ��0j�i�B�1y��v��N(Sm�y�ze���D��]?j���$��������*�.t����RM�*R=A��2Z�;N�����3��H�❈8ټ'��#.����Ir?�����,&M.�s�� Ď۽~��E����)eg�=d�&���N�X�֣��7r4���w���Fޣӡ�};��Ҷ��)�$�v�Dex3��]�i��wS�=wL��\XL!���AW�A�'��%��y���C{{>�m����a�<������e�Qӭ����=)�������S��������[���U���q$ �c� G���>!k�k?xK_m� $��V�rH��Nk��u�/ 2;t��"�^`zi��]����c���K�h���X�O��|��x~�]A'!��^j���t����y��h,��Y� }��\���V���k�2����l�U��7���QQе����X�~ӭ�}��6c��x�}:��& �>���?"���p;�5>����]癎rO8"�W��{�}��:<��{t~���^ty\[����ߥE�b�ӚUm� 0>�>7qSZ��$���J$��e\,��7W]�*mP�M��J�Yn!�G*���G=k����zܨ9�C5����Ξ>'Ii�F�v�����~Y!u`U����1�]|�Kz�ei7O�#i ���� �<W�x���+�F[I?�-"���.�:n]���ָ���%��Y���(��ꖥ����ezu��^����:�5��x�S�]�P���w����sm3x$���O�j� ��3p��O�,&�:��hR+:�?�{�����h���#j����$9+}�g��8_�yF��iNŭ�J[�X� ��aZ�;nD�����>�ow��j��iօ�'�� ���L�j#V��1-��݂G��=\�n4����_ɵG?ٶ�9l�'��u[1%��!pZI5+�s����)�>�8�Q��xE�Q>2�.Ojv�sy��RL6��U�\E7�kk2y1u;v+�:��=MWѬ��ܶ3���:�.�S��rƬ�iZ{3��f�����0c�hZR���lO>ۍQ���FF/Iq�~�3ӷZ���+�!3qx�?%��Y�|A�4�[f��G*�m=5��R�4������溟�ntS��6?��Y���d�9�ڛx�epX�d'����Z�I���M��RHR���P@��G P�����)h���ޓ�/l�~������4������R�v�ފ(h��(��qG�E�GҌP�Y��Y�:�G�oQՔr@����>h��H����7`Zjmi(9�D��oĊ�����������c�Q_N|>��ũˤJ�s��r&x���������͞�e�/]X�=��[�BP%��wбQ�VX�ޯ4���[ݟ�ۛ���?���������U����5%����$ �}Ʃ�{%�?�y'��3S��� _��X��n�S�?4g�O]���csac��N�=���KGj�����^��k{�GԠԟM��%um��[i#m�jx���v5�W�z����m����Aӡnks��7Cm46ҭ�Ҫ��p���y`�#�z��{ӱ�>����]�̧�~ �jl��?|-��*<db��?���H4���|<�Ɲ VR����tc#����>5頼:�è/d^^�O�o<{����g���U|Q���Ikڦ�pA�7���<q�h���m�]�UiGs�|o��5 x���s��ar��gּ�R�*̱�����e��>7�g�/�&��,��%�S�*��z͘��$|�Tc�\Q)&�'��R�K�K7��l,��L�3}��Ċ���-�ԣ��R\�0��#3͓���M9�� ���#WIr6��W 7�=O�,H��s�R����T�f�RA׀F=�F��خ��*�1C,���E9b�¾��o�x��;w<g9�4�ĊPGP�I���_i:}�7��I�H9NT������^G�։�߱ _1y��� ���V�b~��^��h�Ƴ���5 $.}��[w�}��⡩�r���")Ķ�k��Oz����1{���xg�1D0�|��`T�N�^#�j���jS�����;��,�r/�1�51�zɦ�+�编�������Ǵ1�mҲ�%����?*����ܮ�4�6��q߾k!�ɅV )���.�vge�^�f���;���\Ψ"G��0�ސtϠ����]�ŀ^3��;W=m"Ά5'��c�P��gս9�$dU?�G�UyJ��:�ʒ�ځ���n �@�`5cD����VMw��y�gTL�`����T��'��V��#x���U�U���ʧ- a��G�4��}C�/C�P��-���b�xdI�R�9���}sc���mP�u{pc��[,�{�A��˟�7���sxo\ӥ��p�yD��A_�⾧�.|mg�#�xj�2f��\ �A��c�)�苤�Ϛ>4��7�K%ݺ2���b3q��ׄ�s�ֳ���N��pdgsϱ�}I��\�|�A�e^X��X�Hē�t������1;;B9�4��~���� ���lwZ�����n������P]h����Nv��O1��裁Z���|OzrIxQO�DX��{Y�n@�q2F�C�;}X�Mg�'���m!tU|��}�����e�*��� l�~��5O� �R!�N�B��M?|ki29�͍�?T��I)o�x���� ���كʡ��V0����r;n�1`wc�����waX�gb�dk([8�#�A��V��x7-'�P"jK���=�I�z�TL����ݴ����_5)������G�Z���Zd���h�d�y����m?P��u}nܴ{I��eN;����w��] ��Sx{ē���"���w����0�#Ҿ��A�k�=�E�^Z�v�7���b��r�:zӓ�QA��g|f��q`ӯ�'w�4W�rÏl�O־f�7����b�G�[��JF=��O־�����ڥ����#t��Hq�ۼ��P����}�1ҕ]� �<�x=?JK�-Md��_X�k�}�D�*�}��<���P�D��<�\��_>a�?���kF�B�D�n��u���="�<����2�H�!W�֕-#RK���g����r���˱�x�)���DUO-�k��JJ@<v>��ꖖ���Ks���$�l��ƹ@�\o�d�d��C�]�j�6���X���ޝ� ����W�j��+����t��Z�R�2�ťn����t�k��yW:�0�(H9��"��/16�����~u�i{ol�c��� ulO���sS�n�ms��8v����+�����d��t��j 2{褆�iI��)7m��+>��]Ǧ�F{VS�;��/L�^1ߐ+��{�K�o!��qo"����� �b����S��t�����Cl7~�3�T��<SoM�sn}!�K�.4wH�t+�SwUR��W��m!��&ңS�o���O^G�_Y����R�Ǚym�+-�!��d��W�|W���'���t��C;4M�az�De��I�s�}_M�y0�sGԓ-��>��Ph��Hy���M��C̗����x��ګG� �U�����G�� rW:��)���E����Ao�'�2O_«�#'r��I,��cUȖ���(�%~d 9s��>���4��[��F|�2�W뷏�k����S��[�p���q���,�i�~\m��ּ>�$ A#����CO:,H �b�r��M�G�H���յ�eL ����h��M�hӢ9�����(��]ɧjq\E"� ̭��������~,�ޫሯ��o��"� Z�x�g�GÑ��Ҿd��t��l��-e'�l���zt?�z���[��m����~���/gԮt�0x������J���8�O�����Ɵ�/�~��*�oe���������,|,�wu�M>��o�(\�/��� 0=��<��iYǦ-��w��2��XX�M��p#�Aۚ�+�b�H�j����!X���I+�� E(l��s�YJ��&���o�ֱ������\��i���H��G�yƷ��࿗�iv��L�m)P�W�_�mH�<%�+ˋ��xǒ�x�4-&[�#��+����Ms&���j����3�����|��|J�p� ���퓟�a\O��O����ˉ@d�Eb%����q[��H��YxX�$f�D۫1�Lb��,Loymfi���֥�\�=��{_x�Bͻ䳌���x��+�֧i�˙�V3$�J��^zb�[�.�?�zK���ڼc�8��f�'� �er� �~�/����5g��}��m��Mυ��_�>+æ�tMZ�؍�=��_!^�yN��wC(e �<�d���� ^H�8��ۯ�i+ �OF#��Я-ݖ��S��7��>Z˞�<�cXp:�Zw��N����W<�ڍ� ���ś��*Ͼ�|��Xj3�3�R̃�PҸ\�cb�D�i�;�۠�S����s�b���̒n���C�Af�l�[Zn�uw�F�M#J87���Edk�79I5Y��d��*�����!�9{��� :d�M�?ڧ�,{���nN 5 ��.B�|�Wm�R3o�cz�|��3 �3����p��]�R��i�^���];čy�yN�$��B?�S�S��g��n��i���- ���"-�#8<�#�5�>3��%���a�=��Kj��̚�:'�u�&;��\�ү6��B�{m�|}ѓL�����V�6�����1 ���S%yX�\�<����Z��䶩l2HD��^}pN+˵���*�eo�������j_C�)%d���� ��>���ס� Y5GU�>s-�cr�[Q!��փ^�$yU��m�'�r��=5��F�y�y%�LG_�p\���^j�6�L��u�d\m���%�>�8������-o�w5�~W9��SD�c��Q{��(�?xJ���t�״��c��l��h�W���J�[���9n ��-���M@;(�1!��5����U��s��=����^y����Ohl�<7`�H����ڹ�m&Ё��RP���'~kGѭ���!��'.N"ڡ=rY�������*�����%���<���1��y���\J���䞤�g��]'I�0}�\��jq�9*H�\m��)���ʠt���+(4v�Qց�R�@�h����<��b����(���Sҏ�'JB�u��s�t��{�/:n�u�"��|��빱��5����>;� �w�G��ܹ�IT�&���#ސR��������(�Q@���-&(=MQҊ8������PG�%� ����k$� �D��3&䍋7��+�/���!�\Xî�n�&����O�P�g�����l��hu �ӅIW��?>+�i7�9�߇��������eM��C x�"+h�����F��b�y�hbtA���M��Rb�^k�~*��sl���m�$�_H���p�5�6�6��I��N����-��Z�.�~S������ڮ�w# oI��Rq$�Xr~���IO����溔���$�.����@�*����!�m��9L��.>����9����!���s��u*y��c� ��d�ۢx�O��V����;��,�T^�D��g��\Yì�o��|�)Fh��f��z��}��SL�)�Oyf�L��wJ�@�'�Z��.�}��x��A7�Q�7Zd͞��X�{�����OX�������G�y���P�"��@��&��OYhx�/��W���f��r��o(=����y-�y�H�A��������K�+s���iM*�w��z��������]��ipٰ�S�wؕʧu�幍:�� #�YDs��Csl6o��O�}����a�ʭ��n��c�]�t��h�g���"n�C�c��f���j�CH�?��Ucp�\ւG;/��O��֪@H|�=������:1�1]'ýkW�n1ax#��>\˺&?C��\��6����k��ig �¡�%p�+0&7���Q�R>��g�x�V�"m�S+s̰'��@�ֶ�w��ƚ�9��{���ˬ�&�8�W~x#PӜ^XE�9�_��Ce���z��6:u5�x�Oca0_K�!>Ӧ=��{��MSJ�. ����7j�r�����0��rS���j���g�u�_/'yA���l�����,���4��Fy��)8�OQ�P�!�/C�R�a퓀*��%�hD�?@����J�[D��a��s��Y:���˹,C��e {��խ$��R6������V?+��Z���Z�0i"b�c؞���j;啨��OqR%v�m��{՛=GH���od�����=3��R����,.ۜ$����>���> j�zi��SE����$����Ѹ�y���-*�[�T�ɦ$� #u�٤f#8�0�|��/���:[��sZNO2!$M��B��<;�xoR�VG�t�$�G�m���Eq���$�ʢ��<�����_�+=�3�˹�*]�~w-x��]�y]\), ��a�E{�ƻ[�.��ȶ�T����h��9��<[��Xo��Ꮣ��}(卵*R�f&�s<ٹ��&b6�̰��8�g�[��xl�����$o^x�jܑ\��G���q��(�b�Dls5�(���~\I�[��Ӣ%���_Ukd���''o��6���J��F+s�6��"C�"(�'�?���V�A�_��u@������[K����w�φ�l�ٍ��GM����0��WӮ˩��'^y�*5���]c�wyU��rҡ�U�+�v�㈑�(=wM0>��kW�-�R-�`Q���)kq�'���������hL��>������<�>�N.�m�Hǧ��?����?�3c�[���K ���1U>�rW�5�~�c�b7~�4��l���wqmv��M��{Sr�����M[w�ʋ�4�J�+o�$�n�xG�ҭ��Ku<q�t�������~)־2i�-���9.�ȹ�m̈́1�^&�?:���8��O;U�y��/�{�j�����6��g�x��o)k����ړ�s�\D��+7����D��y�=����|KvJIz�r|˞}}ie�$ .��,��,m������Q��ͯ��ZW��0/����\ ��4�ۓ�kr�B�Q=ޣo6J���aX�Q,dR�X���Ļ�!1��V?CZ�p��E�leCo#�C'^���9�@���3��[\ +r�!l-�:��G��:��<`Gq4���"~}�:����H[�j�'ɉI�rj���4v���>:�?��q�C��v��������;� [��ȋ���V�3�����2F=��Y�M�ˌ ������t+φw���-�'����s<h�V_�M�<g�iݭEdݏ�~�X��F�=?'a���+ׅ;��+��h��zT�i���6o�Ē�$B;B���v����-4�f�e��Z�1�a��e|R�-�����5��È�<�c߆�=��+�|�g��%����H?���e�����V&-N�G���� ���kؾ![�\��$7z�ẇ��W=�����z�0����T��6�0�ו�cT�c�%��|K�Nm���t�g��_N�����v�N�;�h�3i��v���]Z#�C�) ��S�Ü�� �KA���3Mt�c\3q�� ~������֏�:Tz��%���R�yV+�Q�1�~4�'��5_�����a��@?��ٺ��� �#���~}?O��3^��'%�C��A�#���K} /��Omݢ-v��1�t�c��^g�_�J陴��<�"H���� =�OR�����/��cRM��P�{�����n�7f��C��=�zq�|���<G��~(o�0���ħ=z ��[�Z��̞����<H�mnt\v�R+ya �w�b�<��W<q��'I��Ŵ�0�(��4V�r�����T���_�}�x�ɲ�o,���\/�g���Ƨ��o��KՕ�>����GW��>�3I��7"?6��uR1�_f|*�:��Ơ��n��w�\���dg���ʿ�<O��U-�f"ْ�u%� ������{Q�x��ݕ��������ȃ�B���B�=g�σ��^+��iת I�E=F?Ԝ�Z��ź��D�m��o��)X�D����2:��m�߈?�q7�>��#܋l�q�W�x�Ok1,�_ ��q�p3X0zs��0�[��roE���k~�ݕ�Cy+���@w�>�^�[�� '�ׇ�I�A�ܘ����,�'�j�/��� g�$��F]�FG>�[Q�'�5� ��f�j�©$d�����r������%�����~��mF�;Hv����,Q���Q��z��>���GI��}�O�� �5���k`e����Ӓ�����|�o�S%���R`2 \�� �$ �ПT�?*��Y�8ɤBA�8�i ݧ��k29�F���K��AIۺ)�(��>�k���a�9��z� �M1dԭ��B�����B���c���Z�������(�PK`U�`�p� I���|+�0�0���|�]�չH5h��Yc��q�W�������G��t��c"m2�����b0)h��gk�ƥ%��y�qR,1�� ?��+�[�&hn�/m�~u����"�U�� �? �E�e(m�#`s���~��Z] �ib*w+����Vд=_T*�Z]���#�~0?�|=!k��8,Q�����ր��?��fv�]>�7����3�j$7�*7��\���|T�<K�Z<WV8ЗE �ɹ�'=wyk��5�7��R5�qj�-�$1�����C��sϮk��>%^�(�ּA`�@ ��<J�уB�n扴�wZ���潟B��?����~��sz��!p����r{�8�Sx�Y�����'^x{���x��5˵���V�utY�ȥ���l�]���is�e���r�K�XH�B�`�Ƽ����.dO���M�����u�k��Z�ª���X+���~U��� A>�ֺ|g$���u�NMBh�K�%,X����[H�/��m�m=}j�� �Kv�3��Y~��v&�`�2����P#��I֞3�i�n;.�)��E���;�@�q��Dr�j����4+-�[*�o��cW�m�3������#>�� ��n̿闺lg���O�E���d+4������2G=Ǜw�,����=0���a�Ey,�,�Z��A2��I��@�LTP@�&���(���@'Ҍ��*��4 ST��� Cf�yr�(��pO�������ϥlxC�����~͢i��m`$���E��9�}:�U���-!uMZ�H,I����`���F�HObq���� � b6����iZx��[�n;f6�lq�T=�EO��؟��_x�-J���=���!��>c��]���O�X�7�K���Ov��.O?J�J��O[��VӴ)go��?�z���J�9?�)|Q� +A�N���ǂ|��f�\�H}"�I9�P��yRA��u�j�WͶ��)�.T����N�b}V+(��%Ny�6�Lv��շ�_���ss�^i>,B�Uby��Trs�Ik�� �4=.=?N�Q"^I0+�������е�g��̍���c�%r�ZN�qҏ�Ҁ JS�84s@QE���RR�Tt���y�Ҁ:�PY]���.V���e�|��ݎ@#��_B�:��)hh���^xcS��Aw�M�y�;y��yk��bżem�q-�2Q,}Q���C�����w�������� ;�#Z:]���>Y?L����L�jD~0���"����$@/����?��?�yf��Z��_T��v!Y�[�c�^����ߊ-�7���D������!�s_=|K��n/��{�9��l�Z�ی�ᏽB��k'��v�w�<���a��lg�_��h�j�uۆ�Ծ߶ل�`>V̌���>���]Q��Ԝ6�;�},ˑ�ul�n��z���}��l��Y^�@!$�x\�8���R�������I���ot��OæV�m~٧I��v�����v��Z1��/�J�|�kx,�c����^U�A��t K|�q���B�����g�g�z��cڴ7~#��W�=o��$��~e9�vֵ-�T���_��!1����7�˴�/�xϮ v�u�u�A��uu��������v�\��FIX�0H��q��_?���%˫�B����)Ih ���x�����/9���أ����Xd�!h�D�y��]�Ԗ�՝+��H��y0e��Ny�����XC��q-������Y44�&��fc���OzXC��Ƥ��l$�3�?�«�>��:�y(W�5�|2����'�Y*\|��:N��z����Ų�Rk9��<~dM�R?���v)=x�'��Y��oÚ���u���l��V�����EԼ�xz@�*��Ԭ��F R%Q�Ҷ>��\� ����1�>�L�f��I��@�����u�ev����D �n. �^�煽�Q+�X֞�>G�恡���\�X�-b�瞄5��irڤ��C}8�z����o.N�wX�a[��b����&r-�$�F ��8��fA�N��8���.A�k/\����� ?Һ�k[P�Z�7H~��\���Hyb���v���'�jHJ��T�EFT�H�zT��! ��-'�F@�O֣�b(pA�*�`����J��'�T�V�0�߹@S���R{}J[�.o2�5F�����s�¾�𭯑�,PMms(;�g�s�r{u����xq$6��}�\[L>Smv"���Cو'N~����M?�:v��|@������[��F08̈�.��a���$�ɭ�d�����ϙi}�BxA����k�֎- ����?�:��㞝5�����.�����h�<q�@�ξT�ݏ�|����!-�,��c�9�����s�D�����yg��x��U��Pb��I�'+kW?^��ZI�Ǟ��v/�qR:��{����+�;T�>����,�9�aܻ$��c���}�d/ޭmnh�GkE=pI?�<�H���ï����&�,q�&c�n�>����pE ��t������Vw�ȭn������W��&��ƺ�LYY��iW�`�N�@�d��IhK0������H���+?]Qa<�m��";������-��=/FV�I��OӥA�����s�峵��#5�Z����5��_��0��e����K]@m����Tc��� ���76%�V� ����m�5t�I��뷊�;�Z!���KԸ* �2Fr~`?�}K�þ+���S��bF�/��6�ɔ��Ur�!�\�����w\���4�V�[��6��^��'�I�Z�tf�����+l��g�q_��|:�xe��.�[]��1��{21����f�n7<z�H��X�i��*#��MZ�>e�~An��*h�]�v�H�q��=��k��0ۯj���,�p3��k��u���.%�M��N2Ovw�k�V�u��蠃���a\u�pƝ���s��V~ϦCd1���d�i?��KS��9vr���c?A�]O�f����f����p��֮F�JK���H�61�w�t�%�rhY�FJl�b)��kSC�T}�����n��(x�<`��-@����i�:hkr�m��;�{T�Ԛ�!����t�٪]�\�$���#����^�#�g����oѬ��N���lo��y�9W^���+µ�kH��$oYh?�+�ٖ�A��U��rd�H�h�-���Y�!�84�� Z��O|6�t]CH�x��J�K�絝�$#�P9rEc|^�|?�X��MO�q�:��f��0��Z�Юm�o4K�Ț�����dz�Ey�ŝ:��;���3�f���� V�u�= Ji����D��2 Fo7ľ'Ev$���s��+����Ԯs}��רX��S���J�c��]~���d��R%by�-s��V��x5�Rď9� 9��)#+>�_i������I9��rF?һ�C������,����m���M�~�aʑ�㱮+��Oٴ��5�W��s�����e��[h��Q<���ui�6�C� ��B�{�J�� �3�υ��5�,c��V��0'�q��<��濴��"Ka�}L���.tb�3��l��~XYY����"�#��}���F2pB�ϯz��v��_�S�j�0��Tވ������/5�bۍ��<]��3O��%�P������3�8�z+Y����3��z�Q�Р��X<[���J���;�+�ucf�x�f��}�U���ұ���̈́vz��!�2����`��Mp�>Q-�k�,�;p1��tVWN�r����B���j� �����\cm���w�:��P�]58R��C_N��>��|?K�W�r�v� ��9���%̩$�� �f�g�F�"��E�Ѯ��[/�$�O�y����STN��/��x3M�"Դ�E�LTfM\��I� �@���ߍ~���:N�*��G�Yǰ��^k�<?�x����[�è���`��d�<Y���z�O�-����_�%s�,��ϼr��Φ6���� �Z����_`i���+�7�����v�mB����3���������4/Arl��I"R܃�F:��ڪ���}�� Zg���3��n*�2�WS[V}B�H[-C�S=��b;].�Ac�?!��,���v������������G��s�KZ��( ��v����-P�|?������k{v8��]������K��7R9��"����a�R�������!�/=ϭa�!�c@��ឍ6�{"�����'����־��[��K�E'��R��3(z6��y�L�Hާ�P�Gj�w�v��W�m��~�#��q��g�5��Z-�:i�#��u�v��Րc� V8Ϧ:��8����ς>�o���2�u�k�i =YU�s�(���g����d��'��Urz�� Ҍz1��,j|;h��#Z��Y����I$����yE�(��g��]���|W�d4:���B-(��5~��x��:���q�].�8�F����.;W)���Y�f�]ODVnO�b��A��]&��oP���,���o��-�A��X�>:�x�[[]�JSZ��*>�:~4�}Q:w!�I��M���ֳ|�:D�����b+μp��dMuu�*D0$�l���z����5�L��?bL��w��P�bEyޠ�b�ɹ�<���i2d�7�I���Ns�����^[�Q,��s�ְcM�p��Z�V�q#.�Y�s��J=c�עk1(�$�����_ `� ��/�/?N �� 'ڼ���v�c�պ7h�~D��Y�F��-�F� �?�(�ˋ�܆V���kw�v�V�1��c�Z�'��2�t� �����������3[�a$��f��2q�Q�dӌ�8&�/Gl%s�at����q�rq�M5��'����?%���e�A��X�ob���q���STr�{c_�GB3�����ys��}�M��E�k[�Z�I�:�?¤Mv`�=A�n��0=�;�O@2t���l�ң��� ����@��)!���f�K�K+]:�9���*`C��gڴuI����&��L� ˘r@l��L�7��f�|���}���~0�N��7<��+,@{`߀��{��j�|���~1u:N��jN�pR�������|9��ޯ��]/%��H����S�W�KM��}Q�𥜕PU|V��p��?���7���5����3�-����/��+��|�Y^�xtԹ�A�&�|Ƅz ����P)�����O��'s�%?�*O4ij���Un��㡻�]�*�$����:ƶ����W�����)�Gd!� ]c�Qj���͒7 Z_4Y���6��aY��wS��p�/�< :M7�1�����wi���Jz��a��Z� ��� �F{����͜dן��?�<K�[��%-���:�tmRT���u�T� �Mχ�x�>{�{q��?iQ�K�q`��ݗ���Yu9o���'����ԑ�p'Q̑/�1. �<Wu��KU���/����jr�^���X��{(S��=������I4��.& K��2qֳ ߍYT��NBG+�qϮ�BW`��|>�|�h����� �Q����hh��ڀ ?�Z=���QG4Q�;RP��W��9�F7c��}���F�-�մ9�m���͌�F0~��Μ�^��~YT��#�z������E��-��-�I�,퓏�°U�oKfg-�z��V�w�,���D����}����Ff��^g�&��:E܉&��;h�?�������_jcR��!��뱕�M�Ŕ�ܨ�,m��|Z�H�ܞ[�6ڡ�y��J�٣o�x����e�#��� R�ֿ��uݮ�k�Ļ�XnQ��c� �G��ֳ�o��z?�K���A��Em|:� �/��[{{uR��y� ј;m�x�;H[��_�����5���J�>f���dߩ��_ܓ��^ �V���� ��l�ϗy�-�m�4`��y��[M:��_[ٕGi�/�Q��fd�}W�U�m�s� l�<~$M�t�I?眮?,S�%�:I�����z��ȷƛv9��ţ���*e5��֫q��_'LR8��d��U��t���M&��T}��z�μC^����q%��s�|�6�l&��i4����J��#� �$��5���$Kl9'���~=�班_���B �V��5�ю{sU�7R�Ƨ;b]���J�G#2����>�F��2*]FP�a#�����Ϙ�؊C���|�J��s�^iZ�b����29��>��d����:"UI3Г�дWG��~%��ii���F.H�4,O����C�Oh���g��V2����������_5��g�4���P���G>������_���چ��۷R���R{ 7~&��C�<_�˸��5��������M��c����H(p;��^���=kJ��ِ��-��v�OM�"�Ҽ�_y��N�-��%�u����W@ՙ�w�)��H,W�����ֱo�m�2C��q�����o*�nȳ����� ���9��NK�1��eB�s��b��nIiy`O�JlG6�c�P�a6ʼnb�'�+�. \g����m�c�s������i<�;����֫�2�����c�<���Z`v�^o69b��>P�[a9�"9^k�/�:��F�l���շ8��V�&��BOOQ_#�uX!��J�,�7�%Ȍ�ǥ}W��/��D�:$� ��2Z6{aԄϾkEk�#��agw6�� d��K� mt,���;W�^/��9% �ˇ�Hy1�gۭ}7�D�:���_�h5���*=��|���;Y[����'9$��>�鯄s��n#R���a���8a�9g�Ywd���z��if�n�b�Ev˞IB?�9d����ϛ6��Y�b��#D�H����c�q�t7��ܱ��F����\���$�֤��ܪ��PM-��`��3�a����eӮ˶�����/N��+�4���Bu'�63��o�Bh ��Ǝ��$YF?�$ի ���o���c��`IUmkV���?������ă�ֲ��M�����4����o㌕\��"��t,n5?�A��B�Cm,�=� �= �W��e�5��C{�ۛpJ�d�����o��5��[�G 1H�������_l��>/��<;c�"_�*�O{�)9 =FzӋ�+�a�hxX���|����{�b�B��i�j2���A�b�pq�{f�Ѵ߉Z����G�ֲc�pK\XL�����*���7�>)�w;�����d��:\F��>S��RM#i+�� �4l&�QbNv� 1�{�=�C�d6�c�������a�Z����;�*��e9���0�ڹ��b�F�ҡ�b�m���.G$;�3�(o��H�<H�8,�)��ʣ�N�D.H����,c5�x�AU�f�<K��I�DQ����Ms�������3#�_�������E��m���J�PoC���1\�Hݑ�+��}�#[���$�VN~������SQ#7�w噡�άZ��m�l��4��.ه�d���o�l�AH䅢�mBs��@W?���&s�i-�-��9�>�H�w����P�-s�� ����{���n�l�W��Z��<UW�J��ٰ�q�@=�+�O�~�qp�ä�^-��#71�v�˓����ipoS��;�cž�����N 5_5��8��( `��Cּg���;T"(��w�6�&�v?�.���}3�������F���l(ޱ�pb\uǙ'�?�+� �=��=טK+]�ۻ�d�3;Q��6�������7��Ft��9�������l>'i'9�t�{It�����Z��F��N��Y�=6گ�����kS����S���`��\~���!I���&�u�\�1؈�B#D�,I� ���&�ei��2Oh7W��gGU����U@��I�08�+�π����[m2wK+���ծH`&B���{�1�_j�K�mis�����{9#3ٖ''a��r;�\,� [���>�ë�9-��E�l��բ ѱ�?�t�㞞.4ۙ��n��6�9��2ƽ�o xcU��c�~�����E�D���Sg�~=�7ᖜΚw��oLp�q�[�0?�:�}�R���j:�M]HM��G�T�"��ָ�*�d-5�p�9&i���@3]�t-��� iY�#�s����:\�]t�V�'~�6�͇�S�F��+]^�6V�滁���c� T\�9�m����R[���9I���K�֒�|3�Z89Q���r[?��/�4����I���U�v��Aԟz�.7{]��`ӓw��O��9ďt���{��:o�5���l�Ә�ق������¿�)��k�V�wQ��n�S�� O��/����\j.�g'���͝���<���y�k�߃�c�i{.�v��?o�h��rs�\ V4���9?��a�C,�/�۫M��kw�Z���$!��_5��Y�f �0�"����2z���C��í�5͆�fdb�M��=;�ooOJ���^�,�{x��C������4+[a�;�q����}1}O�����YL�n�Z�K��/����F������z�3@�U�Pz�A�Os�M��4]^C�]"S��V����M�}ݎ����Eo����;r{}�N�X��j���d����J~@Wj�~Uĸ;�{���?m>`�� ��@|���'��ּ��̗NČ��#���)+2{ 6�q⾶���m֝m�t��2���Uq،�G�}+�k& $A��y�R���ي��.W削��i�=Oҝ~�B����pE�d�w㪆;^+�ω�=���m�W�\���;���T�:���k�.��^{�B��f���ǝ_�+ɾ3x�>�^�����W~��[��!�qJ*��R�8�r�+�⛄8Sd���+X7Z-���_Z�� V%#�O�Yz߈�sk#%���H�Fߚ߰�#5��x��J�Wm�p<�ǯlӱ�2:h:E��x4���~�s9?�a��}�+��G$h��j��x���8��1b�C�<G��q�rbk^��n�5MBեV�%��\�����K9�����J���g+c+tT�MPԕ-���W4���Ex�VV<>9�[�TV��-UF0Bʇ���]D2jEH���� ��4����\�bO-t;�mwa���6��L�4�̻��p��b���D��yn�Z�)�q�&�@;��ؚ�����:�� ��ǚ�v�6�a=�Z@q��"N=w+��tǶ����2Ƚ�;�>�qLM�R��|���־���{�Q�A@k�b��{_1C ���I�jX�{�2ڊ�;��S��8k���*S ����Q�h�<<���k���x�R���,_�^o�+��H��~�ވ��y�ċ����͚�<���~%�����i 7I�jʄ/��-�{��~��q�uqi���'-s}eS�}��r}��t�-�qu5��iP�h�6�0#��Ҷ�>�fx��O�^Ӭa�o���d�XḍM�HOFڋ�zg'p���q��ÂFI8�Q�^�o�G5����z]��IKBK�z�p2q�M.���iO����%�M�,��0� ��q� kd�F�u�;J�o.t�*]v���h�e!(�n��FO�g� �5��/��ioyd"��%��$�Pyj��lş���<���]�`��k�~�2�?��ux�`��u��Gk�>�HV�,lT�p �t��]N�_�|?���i�䖗�1����_r�3~5�\����.��dn��?�y���Y�]kڞ��i�7�䴘G#x��mCP��#�89a]f��x��Ėַ��J����N+�� q�1ާ�@Fi�$iϥi������$��I��oҙ �ݶ�_��Nq �Y}6� ��x���!��m�Ƽx�ɞ+��-ٲ��%�'�q[z~��kֹ�/l5[h%Y��@'n;"�Mzكy67� �+B���F�B�q��Ƭ���ň# ��]џ��_֯O�"6�y^܁�I�"�O��v�w���B��������H�{kx29������8���wqHRj��������.��9��օ���,AC��"�}����.��>���4>?x����s��q!��zPJ? ZB1I�Ӊ��QEQ�A�@ K���G�@��=ֽ������}�gy��8��Jy���'�GҼ �^����쯴/O�_�`�y�$��*��#�U����7Љ�>��<Q�N�)��,צ*����$��c�Y ���;�q��B��F��#�r�i�у����`}Eki���W�Sþ�%��qu��R+�F:������~$k��қ��:ɀ�k;y�q�}���������_iv�\��M�/P%��)�s���Q�]j��B�I��0�V`� �F�ʾ����_�9si���@�?M�g�:����ɰ��{0#��{�����t�>��/�6�t#}b�FVo�éY�� O�.C~��\cw�����5�����}�V_�w�����_,2<�)�i�12ˡ���#����@Ǹ��rj��4�2ms��r�9���c���jG�z��] ��|��R�{_9G��3e����0{dH���>'յ�l���'��2{WП,-Vsh1�.<���:�zs����E�+1lE���\�&� =L�n�1�N�\�? ���-¾��㍋�����h��,�!Sԁ��Ar�^D|�f��|mA���j G7p�~�})a����}V��`h\��C�uN@�a}��W��"�fn�z*����o8,q�����H}�j)�G���쟳Ž�ͧ���xTnkl���=~�}k�O�>��[]�Z��&@k{�VO�B��5|�Bծ!0v�be����3�+v�x��>��~�.�ME��x[}WL����Þ�:f���-ͩc��my���-W�:�,��k1��*�zt5�G��5����!�B1����|p>���� x2�r���ld���%A��3i_i �b�3��q�c��ώ�+��4���:ƕsf�5�i�l0�ξC�Ӂ�ʱ漱1���lyءa���֨��-�F)��Ÿ前�~3D�ۭ̓� 1lac��G�ѓ������wR�h��ڡꄍ���X���n{���-���Y����������˹I���H�h�.D�NUɨ��T|����p��h]����+��s��O�"����汫�~.H����k�`c�n�f 0�:�k������Kx�ᅣ4k�^��ac�."(��[5��"k�[�>��Nq�ھ��+5�{0x��×rcx�:>�H$}7 �mh$�"���<}`�e���*P0�[jW(�$�Glךx�hV�"�z�e�8�F+��^�ŷ::�%����4�4��c�,�����xŔ�{�Z�ᶙ��Y���C����R�l�N�s����5�}r1���=�d4� V������_�����h,.|��!�O��/��M�=:�{�e��&����Rԍ���usz�uX�����O�k���a�WG�Gk&����Qe����I��\����ˀe�*F.�$q^#ȱ2�gi����� "]�6�L�o[[��b}�@G�q\'�!��[�i��E3��n��#����Y�<Kd?�4�4��C{9�`�W�bY�,3R���@�A�l���1��_�@������ӠO��RN�����qm �s��Rƌ�g����S! ��6⾢��Z����GY����@�����r㧽|��ؤ?�.D�{*׳��� �O١��iS�U�ba��Q����US�R�����K�: 9��HJ���A#qف���=���k�k[�,,����$W1̛�������v���I'�$�,�w��㞪���~Ժ6�gj�,���h��F��t�o~�B��>W�����MWV�lm!`�qד����-�?���JV����X���rB�U����]%� �'q����Z⤎00ܻ0=-m���4�u3rfEɼm� ��cّ빺�7y�,ŷy5���v��G�}��s-�ɞB}v�T~U�jR��3rs�v��RPz��/ �Q�$�y`��2 XӐ5҂���W O�h������գr�[l���Q�:Y9�Q|�mc�#�m����� Z$`0L��G�Z�U���}E�����M�S5|!go7��I-�eHز4��0p=FsҾ��)g{%�b���PaDO8��p����+�/#�x�Ֆ�X�ݴ<�vq����¸���r'Y�J��i��x=�eC~d��j�7z���K���R��<RK%�����s���_7|P�e����<S<�In�C`s��k�uu�I��U_��nm@g�P����u���u}<��(Ԧq���!��r�Y��G�j:�{��� =$#��52}W���O��ځ�������ՍK\ 6"�X�� ����q�ހ��ڭ��rb;A�A�e+�V���:��եj��[K9<�&k��z�Krp7c�1_�u-J��y��]2�S�)<�L�����~cx��Q����a�Dy6>�8��c�Vmo�m��O���X�@�Q��[';dM���:E+&�O[^���o>�Lii,�e�����|��s_:x�^��W��O%\Ckmp�;sׯ�z�ڧ�d�ѓ\�m/UPl�`�Or �q�^!�KU�`��{3l���A���\����/���RU3-d�|��{W�/ꓡy��6��]�p����|Qu�Ἥ?U�3��K����Z{���;�3){]>�<S�0�o�G+3r�A�j��ktW�b+L���x�y�̦��'/���ס���q���vэ��?"��Kc��}~����b�:z���ziY��s=+��U��3�ڛ���Ԗ� ~tq>8W��N+�`s����{��+�J���v��4" KL��K�Y�����D�/��ٓ�%������MU1>R�Z��g�8=����n<a����ƃ�h����i�k�s��BYz�"��k��!���o2�HW�MV�9:�`p: ���?<:���7zM˂V;�$$d�$]A���.�����>5x�N��z'���5���,.���_5��ő��;*�1� ���Q�d9�]G��- ����m F���7��9�}+���KMF�����@b�[�����{h9_���j�w2��^8bG�E䍷�M�~u�s��钷�ܱ?��c���K��y`?b���&�.���+���Z��&u �$3��Wlʹfx�]k�hB������s�$��V dF�#mQ�nߝF��pH�F���I(�&�G}���{�meoK�'I�U� v��[)�L��<�߀�����A4����,+�O����gԟ���WM��5v ֑}����Σ�*_��Y��A��K'�4Mӏ��ȯO�1��W������c8w��m:�[�Hڹ�Սr��o��+%���qsbFՋP��QB��(>�5�ln�ϟ�cW��#_�a��C �z�ο�p��1r:)�ҥ� ��.ek�B�B�6!���F1\����N�/N�^B>e�����Է�)�mOX���W�����c�z��E��w!�\^�aB��1��Me�^�Z>����$��h����zv�q�,�/�n�^�,�xڏ����SB�0�,�T�)b>��zT�V�"d)�����*wR��VloQ&Sݓ#���#��!� d��1�]F�=�n\[H�H�Ps�̾�`��k��,��T���F8�.>�U���c�5[)NzF5+��Z�E�f)�s4�+á�7�7^c?�K�c��+R�4��yұ8Qdn>����7්�F�>�C���7 �ģ���#8��Q�<����bp$�b�k���kr��V�z]�a�5zx?u>��+ؾ�5�燡�='J�ME�L����ς{�c��薚%���s,�s��U���Xn�9�{V��Պ�����5F��D����u6��.�ё�B���^�#��9W������e�x�?�&{� ;"�S������O��w��CϷ�/a��H�-��G}\7䎼�+d�=��C$�qq�e�_���?,��F` �9>�=~���> ���X5���9�� ����ZD^����� J��Zi7ЈXF���2�Y-�r��=�E�s� �R� �ޚ�ryhYs�G5�^�E���2?��������́b�#���~u�?�$�����/"D�6�2OW�@���L.t���������9�H\�����^��ũAe5�+�(l7^�����Ǡ����Y��<6y$�̹�+�X��(��s�ޒ���`�ei��utV��9�J��t�.<?q�_ߍ2����ܬ��!�$q�<�u��m%����l�Z5�гc���s�� [��OR�8O�}:K�Ȓ���X�ۆ�y��x��F�?�a�/�����\Ld�w1�!F࠱�Oj��4�k}J�N [M�A��F���]��s��4�+�Ƴ����H�3���L��j����ui��֧��A�Z���99!��O���+y����O���e�j����~�Bt�fg�S�q�7n�������i��Y�3y��ZFP��>S7 c'>�����mH�2<c�R�^�黠���o%�G��[I��G?����ʐg��RV}e-S�+t�nA�ޫ[vW�V�5��o$MʲH�� :T�Y1,y ���?�eM�/ O3�'��by"�1��u��y�@��������1Ei�b�� \�K�i�;R�j@%c�n�Z(�z\Pz����^���V�/R_�.� �Zj��{�02q�Bq�_Ҽ���Q�Z��œ(����^���Ic�9癔����Fl�LK����:�4�.H��D�}R�n�*;���=�_�j���Ů�s@I�|m��'�$���`.�n��[������f�/������ ���犳co���r�wL�8���0����s�z�ͺ]Bw$䖐�P���E��A��,͐2z��$�-7>��n�&��mo�I�ܺLJd��zy��������5֣��y1�/ZM�|z����8�Y%�u�g���4�#X_�F2?Ѥ��,�g��9�$^�nk�φ�ϊ�����TQ�� ��w8��;�Ns[T�S R|ǐ|[ӥ�;�u� �y�Wϱ*�y��f�N����l��U�ñŎr���&���������x�kZ"q꤀+�Aj&���܆��q�j��*[�i��� ��P?����!��[�)�=ry��+Q�%��[B ��̃��u�I�sz�?���1�v䏥CLH�5�);E���d���!�z����b]��;F?3ɪ'�K*J��`O��� ���8ȭ (�H��;y3�y ����-A�A�Cav�ۛ �(���F�$�A��W֟ot�=��[����-��Ќ�d���=x�멥k]�ZA̗v*/-�c�4D�~�}+�/�>#���$�Z�6�0�mr�?�F�S۽\�f���o����K�?�_]����������5�>*��\Is���r!�FG�ײ�Y�&�x\���^1�v����c1�1����އ$�����:��=~�$Ջ���5&�,z5�-����'5�wu,���z��a��<~U�6�}�x3"�Ě�s��h���� 0����0JW"�+��J��`hW�������7�?Z��F���0��z��V0�QH '�����k��o�R�E�� ��kx�h��.DV�� �g�;9��_X�5�t ���Ș���rTM�{|�3�_'� ������E,�G��7{1�g�<����ߊ��(�u}9T�$^X,�8�g�L}�R�Wgc��4�,S�>��~it]eb'�,W���ׁ|G�n~�.<��(����(�N�z��v� k�ŝ�����xp:��;/_j�Msƾ ����iyo��յ�8_�*��T�s���I�.�y��G�̿�$VjZI � ��[~m����u7���i"�c�@n?�ߥ`jR��������*d�.�<��Io�� zD�\*~��a\��̘㎘�=kQI\�Vc�n���),ۏ��q���`U�H<�+��D���*�l�&9�䉔�Xι�)R;�r��h�}=�f�\���}cQ�q�窱��UʗN���ԳsK�����?�$���B}�R�������s��l���Lh~��ܨ2����+��Q�8Y�I"�V+�e@�+��˱?λ��w����ܢ�KEt��A�=G#ֈ��w�|�n�h���i��ڳ�n�ģ�߅��y�O�~"����"���8U���\�B�����X� ��l��_A�X��R��ynFyܹ?ﺻ�{�."o��z�H����J���gE����K�]�f��2nf���9�8��'S�c��?=�?E���{�b&ҥc��h�W������<�n���T���표앙���[�'�k.�j�q.�ۛ&h��s�^0�0�q�l�I��b�!�B�1?�v�����[kO�q���S���&��,w�a>FQ����v��[8�'b3�� ݹkfϼ��5�n?�y�R،m@��qX�oR;���Z6�9�_J��\���A�d^[�Qj�,���9O��ˌI�]����h�]��6�;/�џ�1��o[ ]ϻ-a���s\�Цո�߈b��L�� g�+毋3��*\��x�%�R�`�{�+���v���&�{�����O�\�B�O�ּ��݆�e;�t{���Ykq]��AcU�m ٫�A��[��������?�}�Rop5���:�k���Χ��.�ϛ=F5e�����K��)�fi�۟�{VR���Nk[o�I ����&�Ϙ�O ~u�~����P�eb�Aa8�_���NEp�"�L�=��G/!��&�/ٜ��f�&�%��+��m��W� n�^Ԡ9`�,��Б�x����{K�D3���RA������M��o��lC�f�2#r|�~�W���|�C@Ԯ�f[_:m�Dm,�rz��Uϋ���|��ؚ��eP�h����<�z�E^�ї�s���:2[8MFnؿh�ك��]���J��WK��[h~�m�N˓ �����v1�{�`}n0��@�\�ޮ�R�����P�0�����5(�fU]_[����Fp-"1ƣ�,���/�_f�Fh�P8�sɽ����e�������/"��d�/��s�����\��ā�����iY �ffr͂MX�u�6�/4�m.c9I����Џ�U_���U���'�>���>7|Im6��bϕ �z�Y�p���5��ֳ�/\�{��a�g]��B}����f�a�=k�[�@�����7�Љ�d�$z�#��}�/U��i��GZg�,5w��^��!�qTҵ� 7>�ܛk�+DF-��BI�Я�\>��I��/� :~��G�$��^����� ��^��Y���4�t���b�^���G��ErH��|�i5�Nɔn�ċ���)�Gk��qX�Z>�m�G�[�pI��}�}v���K��RT;c�lcM���,?�W�Ѡ�>��6���1��[߿���ߙ1�]�bM����U���VƼb��3��<���nM4C.[m��J=�f�<.�� �V\����e��4���|Wm��G�|K��i�Z��ꄤ�{�`�0���#�}5����n����ʮ�Dz��`9���^k�<T�0i-$�N�x�d�Ɲ�O�=���\q�\/�O �%�>L�!����:C��p=�;�{�z�=WP�Lqw�x[]�G�G6�$z�U��5r��e����-u#���,[J�}�T:�u�yY����e��+H��.���3z.�������\n^��s�\��o3�Xw@�;rG��1$b�:.��$�����Mpc_�hι]h�:|�,4�u��I��rO�[z���{9ʏ�����7J�As=��E���?���CP�i.��f#�� ���X��$Ib9�dUK�i��-"���b�%.ŏ`S^����~���k6M��|�����H��T[������"������6F![�$ע�[�ֵ�Ƴ��Mgg��i�6Fp�}��| � N���䏚�R�I�����v�i2˩��`�������\�1ԁZF�ݕ������:.�k�E�!{�S�Q���۞pJ�t�+~�ЭƲ��!Qť̪#���|Q����Hѭ�14�M���+�d���=U�u+g� %\ya��h�m-W9���z�$�}M��K�.aT;���b�$rr�#��<�X&��H���[���ڐ���4��wx9>��9�H���^�Km�OL0��vw&�'ia�kME���v��zm.#*�V�%Q��9 '=zv��+�u캍����.����]2�2N:�D �<�u����l&�x,^�$pb�-M��H�[���g�sk=���s�߭��;�h&��2���s�Vt�u���5��xG<I}1F��9#��j��M�f�U6���y�1�a�ô���9Զr N���K�0��<3�Y����-�tQߵ7GM> >��=�L<�tK�*��$�23ڪ�t�w m}ym���͎ɡ��Ǒ��s�M!\��Xy�d�]�; ��Y�`�v2��#�^:Ӽ)��e�X���H%b��:��� �C.r��\�s�%��=.�]�'v��9��@9 };c�jW��"�[~Fd}2s �����=�Z ~�]���<A��h���C<`�����FrNp~���M��m��ĥ��x�G ��n8�Qү�6v�:�R��^E�UӖe\�H��q�'�K� -mD>��:���F��� �!A=�y��4Ҵ�i�.�J;�����+g�+��(c��1��B��.�g��H��bK(��f>c�hRP�l�U����K�'Y��ԤΔY����� �9皝t+h༁�#����ˇF�LRN��r��rrs@V������8K'��ڳ�$�ɹ=�i杧�3O�qq�j�t����������FT�$���W����ϫ���DEqnna���3&O9>ՁiVz��ޏ��z�ź����p�IE�G9��Ђ�L��*�8m���i{�Ǣ1\�F�~ƿڰ�@V�CJ�9�T;W���"�72�o�K� j@ i��P�!<*>�� ?��x�l�'��E�ƛ$M����5�@0��s�h)3�2,m�wt�����g��Xg��V:��Ū��4sB́$NOЊ��Me�zd��V?=X`��5�V?>1�*���0"X��"+j��d��r2|`����_���letyZCֽ���H��q���G���ڢ��ŏ�i�6^n���`d��W���.��H��E}7o�x���:��^�c�������uʑ�ϊLy�#�f#�S�ȁ��:J��?������� �z/�G�&�/� {�b�--��$��Ù!�C�&�Ĵ��>�o��>�r���h��֦��8~�o�Ŭx�Q��ܳ�#��"�MA�2>'�ޖ����G�+��7�|�j�]i�y���}r�mih�r}kß?g�G@�\�~kZΛ4FXo ��X�Q�T��wC�R�h��=�W�:��f�tq�X�)�U�[�q�24�F�|�l��1���m���> ���/�G����C Γ3�,�sڟ$��|#�1���Ad������� � O�� ��F���t�t�\�9���M���/}�]Oÿ �_�+\-�Z@�H���۹�:��h��~a�+0 rOa�[�ҵK��}2�`睳����o�[o�����}����n��b��U� �0zU?|d�����j0�.&�y-Ε4��<�G�QǕ,��(ρ|?��e߁��j�.6��g���r?+�~�?�Hxs��4u ~�;�>��ɯ�<!�;X�<m�O��=�ձ�i7��x�g�'�O|k��i�}֛>�� �����X��WHD��^GU�%�ĭ��Z�|F�5? x�M�K;�z��O��Y�|%��!�q��J�(���<g��k�߈����94��jV�2:���F��V� �=�y��?����������0��v@�����J�?PsE��n�<����8���\�J��E�NXV^��=|{��b�:��"8Wԡ�=��kپ6�O��m�i�� ��k��ip�u�V��xH��v$O\W�x���kM).�>'i.��&�i��@�C��K��W����<�2á[篙�����MiX~�% \����l�>?��\����⓹�> �J�~\Kc��?�b]|Z��u�G�x�����Ѐ��4��=r��!�C����g�Y��̊Ѷ��c�P�������^e�O__��^>�Y�dhn��Lzm.���U5��e�+_j�6��53"2u�ߏ�&�!]�V�_�U�χ����U����C]ƶt������J>=kV�JCJɫ[G���ۃ^!���_"Ks�W0�=>�͕����4�0q��z]����h���>�KC���o!�eKK8d�PH�͜����H��],Gm�hW���ɭʼ�#Cop��"!\f��N�U�������� �]t�����Q�e�ƽ]x��z}�>"ԓL����pZK �D��r��'��/��(�=ޚ|q� �Y�w�iv�m:ᣆw���M�7��FOl��ܙ溟��#�^.�nӷ���۾�V=���i�V�������?6?=�����x[ž�T�k�x�Wl�z~��&�+�QX6X�#h;�������N��?\���/�k���#����c���h���#yA�����z��+}n=.?x�T�n�Ik��O��v���R�y�ڽ��Ԭmb*���FT�GH���h��Z�> �zE宾�/���kY]�⑭��,����r q��u�Z�j���i�e���"�0��^�ٚ2)S��ɒks��!�O ���Gohv�[1wgsgq �W�� *#F8�c%����+S���5�x���Σ�i�.��Do��� �ar����{�_*\�sx�zo��=��-͍�]�Oo�_I(�� 2�9$_���C�����ϧ��5�w6^`�첌��t;�#�)N>���#�E��M�Y����N7�j���,�i��+��f�}6�tC�≁ �Ȫ?���f�m��Q���1��u0��rwF���B+ȆqQX�GS�m�.��[H�|z�.���î���O2���}��<]x�7.[W���w[io nzs�,<W��3��?ý;������n��Oeፕ���G9�R�� ��g�:���z;������da&�4�v�/�<U/�����c��r� ���Q����<T7�V���Aj������꽭�?�� �*���9ەf%`��noğ�Uxe�̸ϸ��V �3�n�3�#�Ϡ5�!��K��J� �˶Ԉ��9`+D�}�]g#H����E� O䤚��� ?w+8?8�0G���5�r4�8�s~���?x�����k�\���L����@�s]����[^�L�u������@@���ǥb�ܾ�r�L33�3��w�ZWF+��t�:�[�$�����&%X�+T㸮�� ���7V~���[��}B��Y��H�ں;�ه�Q�����2>˩���L)$�nw��E�u�� ��}�k���5d�"��Ϸ;��yk�|c�?�ך"Yj~8��a# �x��b���} ������8A��z��d$�O��c�~/ijV��^+�GS��+����Rm��{��iV��zb�%�.챎�%W��p��ՙ��t�:�(�M�dg���/S�����f�jGk�G����318/���]�U��<D\��A�8�?�\���*�l�Y�9� �Ҫp{�>�{T�+�9$�ހ)��,�AI��u�i=j����RI�i�t�!}���UN�)�`=����ĩe�j�/�ah��-Q�W � -�)���x�Ğ"���_��Vp�go<h20�m��O,C r��#"�m<CyTw����.�Czd~5��6-j�J��^!��{�=�5V Fq����W��n'vy/.�����N;����Vl�t�Sܾ�� h��O�#���5��fk�.o�c��hs�d�Fq�ֹk;���+(�c2L�C�3��d㷥w��h���"�-��`\$�N3�A��?����C�?�'�f�����F����.�.9���=�Z��^K� 鱶Ӊ�mZuB}|����c��Ѵv��u�g��:�)�_Y7��H�A�a�i��McU��d��{��!d��ln�>�����5S����>]ϛ��f�R��q������A����e$�j�HP��+��>��ۺ�6�bY�bՖP��0s���8�H����m'7�۽L�!&���XE�k�d�]���O3��B�F{�+��Us�b�U�b���.�;D�5�WI$W� �ҹ}c�vc&����4!�y�(�ܜ��g�D�v����i=����6�6붇j�=�$�?ޏ�����!��6�2j����q[�Ytېqд`?S_&���dX٤h��\S�3/�F�~����|y,ZH���R�2�������b�#���ik�2�3�$�����8�UU���kz#�3W�kwfQ�հS�ےz����~��9�:���Ηu$$�Jc�y���S�+e���V�#'�YMK���e��u$YaզS�Oz�i�s�������[,����<����I�+^�Mx�"�_��������;R��1iaZ���a�=z���Y�9����\��K�� �$����Z�!�X���O��_t���YNNr2I`M�����g�n��)�G��@�\��O�0�����zЙ�F Q���zSB{M�>�ݱ����>9��d`b� k�,��F;`1ǥv:��~9�hM+�����iڼr��9����?��?�b'�PĊ{�m�j�d�jݽp@�M�6���酭�� �q�y����}rl�4�.:����ZH��½bĨ`|� � ���5�[Y��z�o"d1�|��}���ac}o~����Ԁ���1���[H�.�}p&���{O0 �n�#8��֗+as�����h����L���BI�����[�F��*����c~�l��L=�I�W�>�ݕ�D�&�-�������>���Z��v�]�\4��� ����zn`8��<V����m���]��:��<!/�(���,RM'��� �.w��Ʊ�de�o1���O@>�L��G�Eg�[[��:(�~���G;�R)���]�F�=�9����mZxd�R��2�~�-�<�-�a�ư&��ַCz}�BK�I����r6�#�>�4>(��df�����ZK�5������?6j��k���g��c0.�eտ�q)a���@�n)�M���MO̚~��N�+�yfX��@�9=y8�ҡ�9�� [h�QM��V�d�,��� _����sH��N������{��OsX����g��7C��u�o/�o雔��yY�y�B������9ɠ��a4z]�k_ۖqJۊN��ٙ� Y�N~_A���gQS�鋪\[A�K�����{�p �������c=旦�se)_���v�*܌!#�g�}jοk�k�� ���)���X�bH�Eo���Nj+]�w:G�{@�Xc-s6��;p�2��;s�Gz��~�%��P[�Y[�r�z=�Si*r��v��^#��x���6+ֺ���b���H�q�A�=����3���K�̇�e^2H�LsLF[�c$�G�P��%C��m�p>pPF9�s��>��̹�]3Spq I8����囑�20 � ���{ŋL[�X��+Mm�F�V-� e�8��Q��A�d�[}'V�G[��VhT��s��g�AE�8��Kx��2Cք�4������\��U� Otu6�|�t�\G�,2�O�y�#���U+c.�C%����I��k��\D�7d��8����i2����-f���E�4r���"����y��ҝ�#���nm"K�9�,Z]>�+��$���wW�7�����դ��h�W2]��۫7PU���s�03Ӛ�����J�dW��Y~��C��>̀ ��Ywz��j�Z��yb��rj ��s�]����B��ƣh�����ϯL���U��8h��V���LcSk�NͼY�Y,���\OPO>�S�|+s��R�KX^4a��^�j'*����}*�� \Ok�j�Z�+/K��F0z���`�{P�2 Z+}I������Zi�Xܵ�0?1$0�@���g��V�m?T��8�v��UG�Q��uĄ�k4{z����i�%{k=n��ѤhF������"s��q�U� ��){;5 �� .���p�^:n�2(�vs[.� O}��� ��]�I8���?�x�^��w��_ϱ��dȚ��ݴ����{z�:^�z�r�l�F?�QE�T�M��G�ힹ���h��=�0k��fI�Hv�p$twitn7�4�]Y�[�lX�����1�+$����������z}�������Q��X'ʲ�Rrr9 �t)�����g�uH��0�t�Y��RFs��x��a�N����g�}=�g8ϧ=il4K�|A]_O�n/l��j1���S#�YD<�w�[�;�5��\A�X�w��|��� ��8##"���>6_|Rմ_�wz��Qi�� �f�|�1fS�q���9�i����(��-����W�<Q��{�9๖�I�dg���r3ҥm����<Ai�'\�e����e���#c�.�G��>`�v FG�tz����O���.��F�wq������^#����m</� �{R��xT[{�y$�pv����k����cQ���j��t�-����-B��X��t%����X�b[z�����[�hzw�n4 gdd��V�qS�Ls�x9��s�/I�6��ǁ�$�e�P�X̙]�B���r��Z���xWB�u��_�Wz���ľU1oa�>n~\�=*o���i�φ��]����������w��6�$4�P��Ԟ��}���Û���w�B����k5���jB"�D�gL���x��� ��m5��ciAs�ެ�:�I�)��rG�� [�_�5��w^��|�B�!�а�l����� 8���䎣��������q����Emk�k u�u�8�6��U�O��Cw�������~,�<'��xd��=���u���A�s�rq\Ν�m�_Ŷ��f�I�6�+3�Zk�H�.��&�eۜd�x��|"����SU��7�q����;w��!ʪ�;�;�S���~��_����]R�G��ݕ�B���!�V�1ކ�įf�3�X�W����L����2��4��oCʻ�e���3�S�_�_����*�R���<�3��m&�(+�'��kj_�dž�MB���,`���k�-���������69����׆|O�]#G��b�4E��ա�����Hb�O=I.I<��ܽ.r� ��m�{9�3��{O%��Ҟ����҄P@l����4�:6���h�T�����[�/N1%ã��a��X�տ'�[+�KmOU[�k;���K2b��v�Hw�8 ����%�a�A<Wz5̺U�V��� 3��rp8<��M�[jy��o��r�%����k���oX�~��/2�7j���3�Z=KU������o&�iv��[��$�D#�A�����'����ɫ�ی[����<�����kj��0�-�y7��[{�ְ~�8 ����^hyů�.�G�4�����.������X�R,~`]�N���=�#�I�O� �_i:ͧ���'�4��ڝB`&�O�"�Y�2&F;u�N������t{�.���8<�;;�`hm�s�S��$����MK���--�~;h����������(@��=�CSu�I=:�E���~\x�G�w��sk�-��wr<�o���'��\`�����M7O�G�x����o�=Q�����5���`�'gr���z����&�#���l �Q�|v!0�՛W�Ih�-bp7�&��>M���iw<����x�O�cP�U��|3�jZm�[Oa���^�\�������yN��U���Gm>xR�WY�-�Ӌp��u��c�+� Y| ��+u��br��Iu���Ѥ�=������ŗ��+�麭�݅����ܫ��ݵ\�9�=*\���������,�G�c��.�q�2�aiq� C�#]�~�&�ue"2��^!O/a+�93�rI�kgu-јG!K6�f ��*���>WK��Y6��2��ju�.���VT�I�?1���P��¶��8�[ڗ��8d��Z����$����t��6l��X�ѕ��X7+=��]��2,y���Q��v;A���inĎ��ii��ޫ�:s���O��c�]Uʧ ��A瓓��R��A��=Q0��y �>��H� ���9�=k�/|0����Cg��+�G���w(�e�1�����y>�ٞx4�k��(���+�-��עxr�'��3��V��øʼ�3��;*+���h����>'x'��-S�~3���5�.H`7N���#l�ȹ 8S� ��SP�����7��'�|m�x��O��n��O"�.c�FT#�\s�_8���Z������i"����v���PI:�%y#�J����q$����g�hn��ӡ�/�/��U�;��wT���$�lE�4�G0����� �L����)��zW�����xR�kw��-����e�A���dpM|���i\�v��Ͽ_�Cu*�b��6h�2pF �cҧ��G��a����������wo>���)p�>z��A�w|f�����}W���.�iqcy��;<֗vA����0`@;G� y�� �|��p��� ���(���!����"�&�ÕZǾ]��|wcmi}}��m���q �N&dD� ���W�~�&���<Z��?�^�)��[k�<�k'���9Q*�e\g��u��t��XIe���T1g�uC�?x'w�C�Z���X�������9�Il�)��!�d`���U�YX�3����5�v�6�ot�z���IB��ˇ��l7�y�0+�-��i��H������W��_�?�U|o<-�M��p��r��)'�=k�� �[M-�ĚN�yZ�����c�{0�l�6?�P�<�Q>��� i��Ҿ���<~��J�[I�4$���5�ٷ�� �K���\�[�|i>��zu����@U�-ّ����m�W��'��atd���Y��VǷ NrMj}�k��wv/����G>e��Z�p;�B��?���_���Z����h��+ėZU���b��2ӼC�]9�6:��*r���?,�k��7���:t�����B��4��8�Rlf��2�%9.�o�?��w�����!Ӑ&Y���jȧ�]�;W�k >��{?.L�V�g`���6���K����%p'���c9�a@�;���fS��zJ�ЈG4�"�m�5�oxCN��]o�V!cđ��x�kP��;g3B��C��ǚ�s{f�a{DU\ ��Fs�u�oė��Ku$�c>79x��Rq�5~���iP6Ԛܓ�&M6mj�[yh�I���ι`�X�G�ZMsp~_��ܜPQr�\�Y�A��+nB��2���_�^.��q��_j2=�3gpC�P���s_ ~]���+�o=ݙ;�p�Gi�cO R�v���+��ᧆn���?������K�~�E���#�5W��1��g�O_�����Wy��Ӂ��V�WI�~�>7��i�<=�����qߖ���|[�σ�{ 5_ ���ra�`��`|��W̿�=y�]}�_�7tu�w`�rÜnR0}�&�Pkm�lҿl�} �U�,r�q�;�ی��x���#�{Xu��!�)>n�i?Q���ҾM��y����ISZ6�`�𮧪XX\K��е�*f(c���'���֎k�%E�>���쑭Y���ø��1�mlO�2��ox��U�-'�ΰ��x5�b���+�/f�_�\�76'��_AT^I$��'oOj\�CH��i�'���K�<G`���[RI��KB?�s��,�I@�w*�.=��?�C�^��m�"ks�b1�Bz���E�e�W#9'����ӇUmJ�C.�Y\|��H�LV���)�R���.�#��6��.�Z[M9�Ci�wh��jxcºtZ���Ld;s ���A�� �W�x��-��t�6�m�����{�#�kV�K�GM��߇�&�h��X~j }���W��ߧ�}o8K��۶����p�@u>�8����|@�t�����Đ�I4q�:��>j���#�a���i"����h���O���i���j������O�(�k�O���z�G�4;i#����M#���ގ1>F�� b�����Ըh��hڋ���-�C~%A��G����?:01_mj~/����7_�����]���? ǻҿc L�k KL�77�/c�=:nT������\�s��'�;r+�~x�᮹<V�:��A��S�B��Lm�~���P��?쉮ɳJ��uc#�ʄ~�W#������[���Q���]���7Z �w.x3��%���~|x�b��ͮ��7'��H���ýdx�^֭���״_�.���4��i#�|�e�R_~�z�C~��6ɽ��^3����\Lj�cߌv � {A�}з�D���h�w�|ӵ�;���L���Z*�6��%\�*8�N���!N������@3ם� �5���㎙#,� ��U��e<S��|�J�u��t�����ځ�Ri���I�Wdz���#,����:,n�?���u��jWwL|�)�k�� ��X�ٹ[�;�fDв�Um˜�H�9=i4������s����;��O%��O ��H���8������me⻫t��|��r?1^@]:oZE�+G ø84�+�GS��~���qy�ho�(4E�0��[ɞ}�5��B�9�1qa:�0���T��-y�z��W�Y 7�i ����Y��#Rs� �4���o��D,����b?1YW:��@`�Z��=`��ڭ�����k����i�js����|�K[V? >)�,��<K(=ƛ*�� �A���ϗj�?�q&X�*ϔ���ҽ.����t/�55�x3<Q��N+cO��>2�(g����{\jp��1��s�z���~yf��=���,�3Ǹ��b�+�2A��WX�֛f��G����ixG�y��u����EռjYa�#��rW|�pq�*�ŰgW�j6�;i�ׄ cw��P[]�=Z?P��zΡ���S�H��(���=R(L�z [�v5���m4�%�¾����,�r�+�N� b1�k}�H��p��μ0��D>�����^Eԥ++m�&�F�q���� ��K1�o��S�9�X��,�#9��ڲu?�=��څ�]I!H�شP�yl|÷$S[x���O�j~�"l%�����I��C��K�'r�:���-sOt�U!��F����[�� O�{I�o5h��,P3����(9$�+��4�O�m�4m*�lBw���J�F���3�wS᥄���ίh�,�O �Ǖ�s��{Ղ�Usw���Q�A��a��ld}G\���mօ�Z�6���Q����VX��A|�秭r��B8./�,g���$�D�y-��1���u t�{�z^��������ZR�R�P�G3��\6�7`ۜ���߹�w`����W�:���s���!ݐr�'�Ҵo>ϩ[}���q*��6X�#��"��'�=y�z��#ԛL�4�+�T"�8p�?(��Cq���0N���� Z�=VȤ����L~�;T��1�בB��VPڮ��߮�$D-�h I��cdt���R����Q��C��d�Е�40���{�������E��&��`�J��3eq��rKzr:VF��h�E�����5˴q��d�2t�\��d�҅���#ե���Q�Z|��XO*O��3H�vIp1�5��ZǪ�O��|�A��R-ة��<ci����M�j�?�%��� P��j�d�OA�'��>����v��xn�̷�Z!',<zd���/WQ1C�_����w.~�p���ς��H���u ���=^�Z�{c���]��W���>��=+S�Mex�\�izF�,@+\�K9�F�#�z��W}uu�g���M ���<�";�b)���3�^�X.6��!-�j:^�g ��xL%L+2��e�s�8���m���T�nO���@�{6K�$��߁R�^k�{u[ nг��1��� �l�n�Q�X|-en$�u��*���Eʸ=�ª����u,��ٚ�����u��������=2�O@ �x��������- ؈�^m�������w�B-D�]i�v�.H�� ^#�K��<��b�k�1��_1I��NՄl���� ���1�Ҙ�)��F-#����H����r����9e<|�/��]���K�t����"/ *����c���N!���I�P���U����c������ium0>�>��{X�d���ͦ�y�����8GS���Lx��)%䍩>��\�!Kup%�U��"��Ǡ���D���"�X�C�Y�E�i��$�3��SIJ]�*t��_ٹ25����NF9 �î�5�W�Kj-�K$����Q�C��+�s��z�x�弙��;X/���#��L]����un��# q���������u�7!#�d�c�$��^�^x��K�ja��}V�J�.�b[bа=��w��qT�YS�R�\7�M�b;{�2�JX��$�GV `dP����֙��5��ilu5 Tɞ�������L���ޞ-;�S�c-ݵţ.����~S���ȭ)�s%��,�+���ʴ���\���� J謴뻫t[�%�0-�RҸ�L��^}�vFU��d���-�W��?t��$.2x��V��wwGκ�nRC�-����ɩ[U�4���t��{�/�K(�U���Fx�ޒ���<�柳����O�!�y��jY�����:�d�R~��2��e`Y|h��⫇��wH�v��v� � @>��]~���?���957��Z��a�t���l�\:���} ���z~�j.a�J dO��§!@��aP�ݜ�Kc��>?�0ڷ�.mī� ��/��s�*���?A,�M@(���Ӽ�[�߽$�ٚl�4YX�`n���V��Gs&s�������Q�^��ߏ�TF�7�F g��Y���X�ů����cM�.�,|+Z��G�y�Q_qN�!�Nv��?©�ڛ��\4O��J��@�ZV}��>C���Y�@�w�5�`^YZ_�}���^�������E���V���K�.C�ȲE�����k���%��w@�N��*G8�@aVb���í|�lfY$�����d���Rrkq��5����{%����h��� ��t�=�:���zw��O���P�Ʒa��0Kk:ɏ��ƿ(�=��~����{�N����f����Q�k��Ġ��^�w:~�� ���l,�T��K�)DZ ǟ��d�������?P@ ��NF9�zu��~�����w�`�o�|��F�I� 跖ǘ���ū���D�F�o�h���e:�9�}�=���ǚv������ c�"fP\�s�9��� �|�1Z:&��s��� �i=5)�x��>�n������Z��l��C�ݑ�����P�� �l���k������Z��q���Ҡ�d�o��:��#`��y��=��'�/Y"),Ѵ�3��� /��^�[�:�Y��/��WΊ��I��±�ګ�U��s���j�f��|I�^��u�gXuPͼ�œ�C�_�1�]7��_��i���T�n,n� �a�i8&Gr�n�}��|M����y4�R�9d��W1�nz�ف�G�O���}M����h۽�p��� a�����s�4�&���Z���H&�ѯc�͂�X �������H�J���~�5;�#�6�~���^\�GZ��*�G�Ӂ�7k�tO��0���;/\xC@ya�y!Ԗ��� ,��F/@ݎ���� _]k����"�ij/���1<&n���v�f�RQZ�덯j�c��Y�lU�(��TA�s�S���?xZx#U8"�}@�ƪ���kQ��̘�i2�R1� ��"��+��Gub��D���OO@8>���St�v�M��1���0�4�#���N=+W�Y�bq�1��t���]��U�ǧl ���42�/d�{p�ƕ�s&��ĚU� ���Y8����a�?vOQϧ��/��;�����Pk�d$7�$Ѱ��+s�Z��n<�kH��(�`����iI �2�`��p}k�մ������v�U�y+�'T�DԴ�;�F�?I�J���&E�Z�C�7����C�Ku��t����FA8�D�c>���|4MK���Qw}-�[�!�L�1=П|t��A/�`������4��O^�O^u?ц�i�}1����be�F�#o,}��j��]�G���ش�.��B�y�`�;>dn[�9$1W�-�� ��h�,I��_2I"���H+�q��6/ϭ�:{k{��i/-fd vA������ �Etzw��i4~5�m���s%��;B�GR�J�!� О�]�s[�c���%��8��r�K���q��r��Je�����a^���6���,���A�i��l�T��z�[צ�+� u�.5������Ӵn�B����$��JQlZa*FvH�r1��*���|��O@sɮ���� �Rnmb�2Iq�Z�u=>�HceA����j���X�a���PI!w��v�M�ȳ��B���5<vqC!v-�A����l$I!o-���a�Nkf�K�ԯ,-�mK۰ţ?*�� �rs� c�%���|L���n��+��e{p��v�ɛ������,�Y>���5��z��ٷ�^�go��CU���)>��of�@����G�-�/�- �N�g�Q��ɦL��s�����TjzO���g�K��4ϓL�-�59��@���^��?����u�U�t�n�j'@���2U��p�U���֧�i���2���D��x�fI��{��<[�/�ұDž"����K�?��_z��e�5�Q-��YUBg��=�ӮO&�o�g�[?��[ZA đ�]�@��d�D�$ښO��G��W?u������V2PI��]5߅�8��?�$�:j@��ͥ��GVeIK=G���.�J�jl�L�ݷ��U �5��^9�+�iF��"��4�CG�R5g?��6�r�,��Y�`v+��K����3[�;�-�����EH�����Fpv��VM��<Es;�����&d����gꚬ��� CQ��9�������5 �Vfx�H� ����gz�S}x>��o��-��A��E|�t�<��h��c���q�O����7�"� ��f����kq��~���&�L�����A�k�~ζv�\w�����,�����居^{���m�Ld�)�X'ߜ�V�q�䓟q_W�KD���D�+��m��Ѫ�9�gq\g��������=:X��Wg'����4���i�zt�(@��@�B�8s��ǰ��\��|�� i�7�����n$��D��@'�����l�YB�ך���Q[� �n]��+���ח�H��S֣��ԦҴ���ifb|���l��6��#o>¸�Zҗ���F ;/����~�xt�sU��n�IԌ��Cu7��j��^ߵμ���"s���� |�r =k��Z��_�3�2����WwP0��'Ns�T��jRiP̞a���c��`�<�FqӵzT�TkvqT��Gy�x���V=�ց��Y��J1B|]ۗP=�G�^��.�J��!���cF�5Ox��u-J��uQ$�����rY_�.U��_&Z�n��噎U\�C�w������x���y|=�^Y�����L��VH�(���J�{�y����$���=���;]_���αg��hl&�P�ʘ&?,��� �����~�<5�5�����WI��Llݲ����dW��'�]J�X xwZ]�V�c�N�O7H������!�K���:�J�i�kVv7J��d���z��F3��>���%%sD�R�Y#- �{I�w�0Ml��7 ۈ�z�zoƽ?��:�[�鋦�>W/�zn�l�� �J��t=FY��gY�!>��IGvB�z!��Ę� �N��sێ�J���p��Wj���?\���6X��9v�[�NI(U�s�_·�o��q#�ʶ�9k�������U��]�ƕF��o���i�����X��n`�˔�3�����ޗ���#T֯ẏFӴY���B1�>ygaB��G�a�+�p��lV� �" �7R2�c���t~����<�ڷ�"���w!�r�e���:ਗ਼�N�W;i��mY���@��$K�{�Y��R��2�� �`{s^O��_Ao��r�fV&��*`�##8���i7�I�-�?�i�[^����q���ц����@�� ����ݓ�6��o1�L�gÃ���qY�7mۓ�)���|���%ن��(�\�g�>�Z�:=�֤G| ���{�^�������ٴ��,�����r�x6����{Ɵ��$�P�=��p����d������쮦��>-��S�kT�$����ZK�q>� "�� 18c������-a�����Țs#p3����ɬ�i�V��Ei���md; �X��V�G�5px�B�|Wq�jr�iږ�� 婋8��-���]�d��s8��H�{���6���{#,�2^?�3�'�=�*�C�}�[Z��W(^�<��I%�{�+��5km5�+�����Y��fV�N����d����K�izh����3s"\]ܲ.IEW���{�������;o������v~8�.��M���,��f����\{��oi��E�,c�}� #������U�zωe��WMP[C!<+�q*�@�~��0��5�2�&e�.V��?Rs������>���_�<�����/0�%��"?\�*ʔ�#�s+���ܭ�<{�?� ��5�m��vX���^�gH��9/�����"yy�����C�C<Fo�_���Ձ�qPɤ|V*�G���+cn��A�ω$�t�e��\>"��}���>��U�.�W��0ip���l��G,���KE�nw��ӃT�X�ϫ��k]=�>����Pi1H�;eBU�o>A�A�hm��������/��Pn�+̾��P����/�-tmj��ʒ����J���`��:��ͷ���a������kK�,u�'˕0�$��,88���b��{�~x~[Cu�����PL��Ɍ�,W���SO��U���h�_�a��ԒH-o ��h��wD����N8��Ҽ/� Bj_�m^�U�{Y-����,bP���9\�"��#y�W��\��x�X�����_m��v_���~��)���w���=j�W�O�����/&�>�Bd�\��>%��L��D�z�>f������|�ܤ.q�$�N+�������_jau7��:���b���2�"���Z��R�D� Ҭ_1���t��>��nax���(��t���G�ks)���4����7��}rr8�5��������淀"�[�3����c�ˀG95���}� �j\�e�yA��qT�;�H�Z�v���pHT�г���j��\�Y�ge��l�� e�Y(��l� l���P+khA�&/�O�X�ذ}�Ğ!Kk��j�-n�IH������X|�NG�ⰵ�뉬��[Z���V�M�(�1�!������W`��Z��<�7�C2�G��e���e��8��F{��)��ng��]"��.�.��ʂGSۦz�$����qg�8�����~]�c�I�����k�QX�����u IY�5�|��dg�������И Ю��/,�mu+u���{����V��5[8DQ�:�����8m�&>Xa�<du�g�ż�� ��[[ڼ��"9��2�����A֣։���������2g�u(�,������N8�@���z���-ͽΟ�e#��[ݹ�5�#s��? =��[k=fYm%u���F29��c�x�N��j��젳��h�E��q:[��`[��0�pzzi���t�מ���Q�b,��?�dm* � ��Qq��o �xY`8�#�RD��)��A9����e���'Q�G�u���/��Я��s�O�?N��=���m}"j��]&X#�`��9#��K�z�+[��{�Wɺ�t��ʹ ,����}�\�8��\���Ju{y���ћ�'_����x��xcĞ�ֱ�?�n<7�����J���g�$��*0y�Z]�kډ���H�l�2_B�&I��������E(���DV~&�Al K+�,{IB��I ��=�5��o�9��4����He/-��>e�@�b}Z����_l����AȚ���X��2�q�s�1T<Iq-����v��Mi�{������|�~B����˪j���mWB�-�Cu�w�{�$���#h�R[#�`.u$�</q�Vz=��I'�+h�<�ǻ`0:�үE�ؠ�3kSK�YI�M�8v�K�Z�4+k���Ю_k��#\A>]����rOlս*_Y�.#��̓L�F��s*��DY �ʌ���[մ�]͞���-���Z}�sͅ��A8�*�2���c�k21�/1���E �����`���ฯ��.�um�d��4����]��Ō�9鞵���e��&�-�G7�ViL��\Qp��7.�|���OG�ܹX_F��w����'�{t��"n��H�k�Was��n�x \c�`��Zm#F��#���6��������X�����H�&��5=> ��,$��09V�I��ҁ5[��i�$� ��C�nR@��%X�����;V^�ss?�5��]Ӈ�Yc͏��ltO��Z7Z����b��R�dŧ�o" cS�̓�q�;t���FѢ���K���q<A�ٰr0s��i�I&��k��myISmcx��_P�y9�MCmy�Y�y0 W@���z�~�ps��6���K��-���;�:�p��o�H�\��Gu�:��Y��g��"�;K��|2��5��#;�I�8<{Q�;�ψ�!�[3ꖐij�/�jvR���L1 ��W^�H4�C�ZO�KnmRB�W=22I�=q���NӅ��x����y�`c���#ۥg�=���xv��S�<���R����h�f�3�-��wkZ�z���9-�,I�� �������-d���,�=2�g�[�f+�F����zT����~fn"?_���rj�Ճ�#�,�"(�[f9?('!���<��{�x,o��l���-"�R�2��*�PN3�p�o� �lEƯf�۲nK�0��=�c���?3�Κ�X������V���]��(3��� 5^k��;���w��[����(X������� )�2o�:��{y�麶�ko$�-�9�3�#����X�^��V�X�u&���m^�;�����ie.��,3��֖��_ "����Ѯ-�2Of�o�d� u�2;�Y��b������Y�;�ݠEYbC��b�g?�O�7�`�8������y1;lb �Wn_q9#���]�� �N���֮g�t�v�f��P�_�z��\����;��畉�8�{�;j[-�7L�埇u+�>V��,$��<���ؽ{����N�j������_*^Zi ��𗍥Զ�!#AO���|��y=��$��a�,X��hu��6s����?e�_i����y$w�l���o*葀C���#*8 �$�u�o��R�5��Q�:�'�F/}��OӮl,� $�۽�E'��Os�4��ګǺ�����]�0�:*�8�\��ׅq���դ�c@;�2O�\�Ƣ�ǹG�Jދq��,�ƪ�d�HC�X,� �x[]���-tå�ݱ�x�d�G'?)�9�TW��ǐ��ɿf�RĶq����ǣ�,�_��J�U�T"RA�9��O�Lm����-!Y�g�%��^�������cGӠ��y��X��� bߥy���h,䜐��R���8�犫��j�D��z���� �e�9}��GfM�C�o�߲O��닫�x��Zit��e2��w��M��������r�-�2�῍�u���[h��5LJ�� �����@��&���/Eh_������i,�eP���v׳�!���s���SŞ����}*�S���qʻ6�@c�'#�Z�FK����]�0�k�R���� 8�k����@�3ផ��a�7�5Wi�e�҅gb4��#L�I�����χ,����?D�J�2m� ��n�yS)����%�O5�~����(����oS�Z�[{Xt�{i��r��U��嚉o�A]y��6�����T��u�uX}��h���F�K�I曀G��<|�*���l�W2�+�7��f�����E+���qH'�x���� ���U���w����� �zr�y2�(R�[pF9�yW����{�52e��܉"�lG�����y$y��Vv����ek%���.`��ƕ����8��ϭG�o���j(.�Ј+��I�|�}��V���%��Y ��}�1�ާ[��c�o8�c+FW>�(�F>��|=��;q6��K��KG�M��srg�|0^z�Sߚ�t-/��Ua6��ߏ x��WJ��9����2<���u��?��1�B�]��w� ѢA����m��5x�%��d���y�-gh��;�`AF>� ��EG]��9o�߲�Ž!����MZ���q�N��P<��Яsɯ����"��E�Ol�y#*��#��^�����������x�M��(�o%��Z�Q����6��y3�]���\x�:k wJ6�H ��4d�L� ��~��/1�4|us�)�l��Q�w�F3P��u�HĖ�!a��lV���:����A��:E� �e��#��9+:���t�K=sO�����Q6s���)K�%$ݑቩx�+��v��D*�{���9Qޮ�S�Wm����x�be�Sl���^3��>'�:���m���8n|õ>e'�q�֮�,��`�Lgo�=�J-=PI[FzV�q)����ZF~I�R��E$;,k�wq��[��g�!d�Z ����A���p�L:��}��O@8�k���iJ���oa�)�xK�W�\��3oF$�\���;o��>��~ Ũ6�m�b�7q���9!�u�����~�ѿ�A��,<C����:�'�Y-�F R2@��?|���[e��R�,������ֶU�KY#,���7��d� ��B�}��n��{j���~~�6/s�kZ|����SlX��[�g�^I��~�9fn�����H����q8�s�x����z���Э����\�!W`�m��p�GZ�ud�홇��:���v:g���Q��R��W>����O�=����K�Վ���oR���=C<�n}���|����=q�4�a��2��|����2;��kS��ռ���3��s��OS��j��\�L���ܐ���g�eR�B�]DƤ���B����G�t�^�c�{�5a�ede!Xv��h�����VY7:��p�8�q��5�����(cRv�{gVNo��P�]�H�[[�$v��~�S^��o������kh�d�q��|�Kz8��U�]�A�j;Kf1y6~l����¯�]��?�k�j�w�4�u��~�[�����bw��T��\u��)�EjtS��j��<K����4�&��Z��}�h�s���=W�~�x��W�<��1�qk!'�$�A�+�x�S�Ӣ��/�d�fQ�-ӣ�q�!����p>xw�F�ws�|?�4�lSXұgs#z����H�����h����g���yV�Ҡf�(u{����ӾК�K-��Zb1#S.�}1�ֽ��^�?��~'xet�CM���NkFt"�QF6��F$������&�w�^��-��`��Mc���,�AI�7x#l�WN �����W��f�NК�,��-�%A2� o-���O<k��Ӡ�{]>�K�u8[��?�R7c>�Ump���Ŷ��5���c�{F�2w��*G �~��b�Mr���o��R@��A��s�����ZXɖH|��s�31��Җ+��@!�Nyf�+BM"�K��8Z8�y�:$s8�$30�*;k[�Oٖ��̐��w��������L�Qr-�X[j��O3^FB`8��y��&��7j�|0ͭ�@�n�T,��jv۱��[���W�[ <�R�фѶ�n�-�����V��.���D����#��ڳ|�)X�;Q������O��7�ώ��'���67�Uw���Ӹ��l����F�V��;g�Ť^��4�^&��7B+��:��_%�9�8'��@��ݜdy=�B��/�[=IZ�&�"��d�cУq�:W�,�;�M�~�|3��o ]�ZΫ��� �Aq8l�M.�L�?�'�<9i� ��F�{u�K5�����p7~���@���ŏxj t=ƺ�v1eZ�i7��0J����EV����k�O>x��� �^}�)�+))\�s�������+HӬg�K+�<�d��f����<q���W�Ij�,Ө�B�?�ܷ�;~���_���Z^�wiQ�^E��HEf�{�������x�kk�e��c �D���s�We.US���ֹ�V2T���M6�C{��Q���-��md'|z.��u_Y} RO�[��L��uh�1��,���z�A��09��Zv1@<�)�FB<���v8$r�ܵ�\=W햑�R/1�R�`s��ڴu��@�ƣ�r�w'��fl�r��",��n�$'��<דV����A�Vv!�O@��G3��V���麣�;���f�������<3�fn��]^(�Iw��E��:V�i���c���=��|�o��+��l��p;W�xo�4�Ҿ#i>����ĩr�N���λE� 9#��ݨ�ƛ\J�<�F�Ԭ���kZ��x+�aHF+��wt��k��e���w��Ͼ%�8Q����6���{I�_�xn�U��jzm��}��þ Q#�(T�k���:��5��� CI�6S�ZٝF�����y�{םV�2�s�Bܶ�D�Nj�x����Z�ir�o��xJɐ��Iw��N����7 �i�c��V~���,Y��H�2*�\�����r�<?i�x�-�K���KȢY np��J��>�����|;�My�xf+��'��_}�A+q$���f,1�q�1�+j)��{�3Mo�7�n-���F#���"O�F�;X��{�ב�k�j�WBm�]��m�Ge�P��JYԐ:��lW��]��nH��SKB�[r�T^W?"�,6�$g��|�Ok6Z~���^�l���ԯ��6V$La�r������iE���rjmk�>��V�^���~f�̳�us���J�&���=+����2O2���Ȍ(�`t��]�Ik+������tHQ���?�n�z��oj�]D��w:���Ͷ���}5����DH�p�)��ך�akjpN��O M{�[oiKnF�g�A"� �X� ���O���+A�M2��e�����B2~X��<�z+�Ѵ�5[����I>�s��U;����֓,�$S�ك��t:��w��4��fUS�wg�z�Gբ����Hج��fIt +�3ڽsS���Rmz�I{�[h�ɨ�Ϋ���A������_���W��6M�&��"���v�6lc(q�q�`v��_Q�g���?����6�� \�f�����/����]�0��l��$�q��'W��Ǵ����nk#[�o<'������x���l�[\k�x�,��� ���I.RU*�30;���8��ݤ��k�Jhm�9�,$-ݤ��=�&�eurga��²��Q#-�~}k:�F�bDFV���:Fԭ����sT�)��F,�G�?�}�0Y$c���7�ȹ���%���u��\0���VdFg2*?��!�F��l����WY��n���ڬ�����5�>�n.�0/%A���ۊ�Q�V��U�K�-\�lӳ��(,~��3�H�Y�,� ��om� �ᔌ{��:�}SP{!`ڕԖq�eHV�÷WN穭���3�>���Qpq#�@�?��#h��_F�&��,,�n|r�il�--�>^�le� l>}�jx��w�i�Ƶ�5�"(c;Go�w�ہ^�����y7�;��Q�C���&� �!*\��~k�t?xk@�F������A�QH�=x�P^ϡD~����d��z�ߢ:�Fõ�zn�sai����ehH��4Q�I�c��ZMk��!�����T|�7*�~��:�x�ڀ}2Gkf!H�g�߆֪�j6M��(�y#9�-�R�ﷰ�5`�>#� Gt"�oe�"���x_�A�#���8�ZȚyu 2KK�M7Q�LI�ܼR $tN a��Z'�t}~+�t;n"��o8 rs�~�Np85���M�-������R+h�F�����i����y�]2=�+&������n�éǯq�4[�m6�\��G��R ��n�2�r0�����c�Ҳ����e��x/�Jo��X���\2̹��3ߓ]F�����;v��m*w���A�e����ь�ҋl��E&� ���]���ÇqvB�@�~l�����,���%�I{�BKi~��tʁ���t�p��z n2���K�?�4�,��kk�X�����N)����}$�֗�\H�n'ԙ>f�pr#PX�=8���Hfo�uMI�Ye���g�E� I��������>�$dg)�v���^��]v�X�����R���&N �O@q��%��s�겾��C�F���}�r�%vg�:1ǽV�o ���Wz����9[d �}̼mt�p2s�Q�ͥ���O]�Ԣ���t�ѕR BN82 �ߑb-"�^��k8�t=fC�� �28����c$�k?W���N7���t�-OG�5�d�y�w>��t�x�ki~���/�v���d"g��:���J�kZ�G�-J� U<I ��=y��wb4xt�.�)��@�G��du@�����s�T�tmHE�io4;��k��ȭ$ .�Ɂ�p �@��-�u�i!V� v��C|�(�w�O^��b"��,,b���:^�,�*��c }� ®;d�ҭiWw��:}��F�mp�h�.%�+m8�z�g�����s}��O�X]2~�{��`�=I�W�!y�&��a�������>axR�L����A���*_[Xhw�a�ϯX��yd��H{�rNv�ӎǃL� J���s\�B w�����'��}{ի�N=Nk�B��dm 2U�@���v8�����.�R���'T��b8ЉCcf�#������l;�xN�k];TD�B��C���2��(��8�Xs^���m��>$����mw2*`�g=Fy�Q�׳�f CE�����6�K�؇��,���ҝa$��e�������,���,��{���'P+��wm>�k{�jZ&�;�{hg�]���ʪ�Y������ >Im��~�/Rh��*-�9%IR�x`�=6�@�ᶟ�~!�0 �\W� ��nm�I��V\�VvW�ke��W�#o��kR1�H���ǩՀ��'��`ږ�2jztҏ.��F����c컔�[��twi��#�Ѥ�����0���۷�)<"��mGM{��?j�u A\�<*�p�}kKTּ5�j��5՝�u!m^2�r�21�g=sHh.��?�۵�VV��.E�x9���}+7H���f�R�$�-�m�)���9��Q��J�uV���/�s#�G.-��w��8�4 R��9l�����Wo&+F��'i��*�J5 ���N�g�3�IK*��:{ߴ�Ț]���4���Mԟe��Qܠ`^�G����V>�G�'�=�Z���D�f�,i�3{z �s�(��c�݄����{��ۢec>�:(�i�>�3G}v������ȁ�$��O�c�|A�i�ҚU�� ��Ј1��-�����4�\��J�Vv��Z��G�8 =�ϥL��oG����D�,���$��:�#��k����$�5meD���J�0ڗ��|�z|Ű;�^���~��[(Eݥ���2�*4���"��o�'w^���s�M��Y��k�?� 'Ȯͻi`��cMqt]kR����U��l-��oq�y���s�8\ē]����!Z��-J(�ry�����Ó��^��ϥ�7�z��6�Q��;��YN�D�?y�I@�Nj��o� J��)��+`�\s-��ʐ���2H��@#`i�v6l������/o���ۀ��ĺu��۩o�l^A���G��C�x���Əm}tV��|@'�����$���j��;˗��8hl~-�s��x��O�In%`ǘ������|@��$�����-.���|��L��Ӄ�"���j}��|C����+�=��go��V����f�P����zzt?=s��a�=Y�}���a��K[}~)�y��I�����ǥoi��6�F�l@mFOC����dd����F9Mdž=H�_SE�O�/ė�f�X�ixk�T\�w�����˧�?ᆧ}j�=��2)����J�n;+�|�u�Mv8k�D�]�(c���矯�W} ��%b:.��+Ӽa���ѿÉm6��}i4�����z����5�������=��"�E���+��+>�쯦��῎�X.�%�1��2�8�+>���y$�'�BY�g,�ORX�I��c�kuas�����_��~�]fS�����{\[ �����\�q���c����d���:{��b�x�.��C{���@��8��A\�\�v�-,���`��k���ȭ��o�;����,���ڗV���� ���`ԩi�[��0��e�`_��Z�<�e��f�7j�8��J�`r9�A�5�/S���X��9�����Zm^_��}0�T���H�n��� v���%�h�{xs�ي�� I�`0D�{�ܫt*>���>����n��_��iwgq!D{C�8�IC�HR��ӎ��~��x{�� �u�wQ��II��^�#\�X�ݒ6�@,��1T���6v����H�O��Ʈؼ��-��'Ϙ��X��1�=+�o�h��9�#�X[��LT�e����r:�_�~��E害-�����G�R+��#�G*O��9�vC)�$pk�<Y����f? �K��f��[���4�u�m��V��y1�}k>�J�N'C���I.���d:B�uq��Q�[�z��C�i�Vd�2[��F�����V�+]���7>D�e'��G��'����E��A��ip ��49x��O-�A�pw9�*��bz.���kvѥ�����3�ar:+I�<g�k�O xz����� A�t�`Z�]2g�v�!\�̧�l��W���wz������M<e�+�ӭ���L��4���$�Fy���n��(ݓ\�5��_��Gi h�����&X �pCuJ ����]ں>�����G����ߊz����h����8ܷi�@���} y����[�v�*��ř�m���-�m��*�A�v{��^K�gZ�5x�$����4�]�%���4��ڧ�����|q-�çh�>����e�U-M�JD>P}�O�f��t�*S���|X�}��+O�]߈!��g��}�.���<�*�'�|�O��/%�kn�z*�;ᧂ|G�?ⅆ���l��PO:���ȉ} Ǯ+�o|!�I��D��{V�,\�څ�h�G_�s�P�Z�>dݑ�_� M&�-����q�)Qq�:� �q�r8 꿳m��c�V�q��wp�ݱ�>V���W���|[���'h��o�~����p>�������� ���e�-�p����Kt$dŁ\�u\Qq�ާϾ,� �{×��!�Kh�Ķї�1���/�|9���u� �}�c,��pz����������l�:T����\�'=��?3]5���Zr����?XI"�K�Cp���&��%�����s-�?���/5�N�Hך��e��4�nb}�#{>X�*s����_�< w� �4�7L�ա"-֗RC����1�m=y������^��^��"Vɚ}49�*�k��[���7��w� �M���H�膰�[�/S#RԮ��4��R�-OB�@-#HW�|0�>�>�on�Y�����HU�FT쌱� ��=k�M_��ɾݮ��[����<?�x�E�U�nWv�rjv:|�3]��."ڸ���L^b�&�得gF�ӽ���?��I�]]��;M�r֚�q��������/��ڀ�u{i�V�t���K`G־����U��vI��H-�3�]�K�VT���S�6�n�N{��M�o�S��[m[�|9:�Ɠ39�9�[�v�U�; ��j��8�8˽�~����t���M[�>!�.���>� �G�I��l1���1����G,e�����\}���ʛa1$Y3�pw�9�2q�=+ꏉ����8����4MR��I����l���x����czֲxn�W ��+$��n��8��m<�ӵU�i��իOތo��1��=$�q�W� ��w�%��I��X����V�8�Y@�5�h��m���TW0[X�r�^o�rd�!%�1,�'8k��o�<��ˢ�6�dU�9�����?) �]w���x4��.�?|�O�$�bIv����g�aW�rmT_z:)�뤓���{�-u�� 2����F15�H���Lq��Z�|yy6�����8�/��y#�y��5��X&�A��R���e�n3����3�����]o^�uҴ�cnF�?�|�ꣁ��\�z��*�H�Q�?� ��6���n%Ǜ����l�q�9�� �/X�[Ѵk��-tMkM�"Ӧ�Y��!P��6K����J�|o�n������ ^�c���f���|%u��s]�68���@9lw#��4����j����Q�NY��Yػ�-R��Tլg��UWA ʺ��`ÃǽGk-���c>RH��t 3g�v�^��MJ��]������-5F�\�a�@P�W����sѥ���h��$#ξҤx�HA�S�<��s�t-DZ���j������gŒ��Q^�t�.H��'��{՛>�e7zT7X�����9]�@ϥ{V��?�����Z;�V�0��N���'*=sN��[���f���iQ���,YG`��h���ing���]?�4��o=��Ьc�0�W��NJ3ml�q���5������}� "�#�tv�����n� 8�F3���O��������X[�;�Q# ��^2�]�i�O�O��WVE�8cB:�rG�Y<���m�_�k�-4_?���[����o�NO���{+_!Ϋ=�٭��˵�*�u���[�P�����V�$���&�ӯ?�q�|C�k[`|�O��7g��:���<�L+կ>XG�=���0�s�>iv_�+i�~��m@���د�|��*�)<�����]���NU};�6��ȖV��py `3�S~|�Njn4[<ni����$D���� �� x#^�e��d��<S�*��j��"#��{X��!��WZ����T��k�&T#NI����T��� �/����w�ߊ��S����ɹ�d3l#=c�A�z/��iml�~��[jM �f���ҩ������u�_|}Ѵ����tmcTX����AtTy�\NkO���7�|8�d�S_j3��Ӯw�%�?(�p��<o?<]J�����c���U/N��6�[���k=Y����.�s�,��}��P�"��y~����� �w�)����L˸���L�#$c�� ����Z���MY�m�|��1��s�pkv��:]�*�f�qc$�S�V�'L�)g8�2�E̿���C��)�hF�������˛�>{�����i��������sL�@�)M��T�M{��� ��]u{ >�8���KlI��==�]> �?VU{+�4Ր���$0$��n�\������̞M^;~:;�uu W�`�$\�,A��\q�U�.�wd��q��m��w�Ҹ� �c^ɬ~��R���}oC�*�m����3|3�{��Eɾ���U���1�MtS�pU����C e��}���_�f� Z�[�u2��[i8>��<�Դ{1��-���$�ȉ4l�H�� �3��p��}�9#H��.��J,�#���ٮ�������:$V�j��͟�/�r���뽤��2}k:��J*�uF�l=HO�n�I�����4{8���kQ�o���,6q�b�6G�u� ����N{X|'��RI�/& ���,A ������<'$�{,Z�"O5�4�X��S���Ev:G��tk[xl����r�=�er:�˷���O�y�Bڌ����a�M^m|��.|G�kͧx;Ph�'k\�G��3r8�+�<W��ź��m��?31ב��`�H�>�S�'��Ģ�it�*l�������֮]|]�(�W{�%m���qٰ�H!X�@�G85�G���e����7����7Mk�_X��-��r`<� �� ��^X4�,�S 휆{�#����_s[ߴ ���S~��~2�TH��:m�b��8L|�p}���O�oSs�yG��l���=+��ukR�[��Zߓ<<l�Fv�=;��e{����X�Ң�[�X�����`d��5�n�<�#��w���O�]֭��g h3�2C$��הR�]��>x��6W^�L�~��)����,r�!Y%U+���^����*�YM��i�,x��V��Ŭ�-��������;[��t��#=>|�k��m�#�4m>�?�,�SE3�7]�s����?�J���ힵ�3��|o��TZ�X����L�]��ќ�FI<+��M��]�:E�el]^it�`*�>�Z9�#�'�ڷ�{� Y�wĴ���� ���24��°c�D1�2�0v�w���_�q�Ǩ�{�hPOu$F9�.��@��W<���mz��mR�V���+jVS�"%�?�$��[�'5�"�ƒ]�����$;\YH �����*���R����/_k�5�~a9v �й�:7��m�Zix�d�Vx� d�2#~l`���:�Ɇ�Z�%�G�$��D_]Ϊ;�ϭu_>��f��w5��`�i�o$�(��n~��.�&xk��&�~�$�nn�Ҝʱ��3����{��OٳOӣ��|e{o�];����!\rC�e,F;`}kߥ�ż&���(eV8�AI�Rq�I�5WT��4�������p@1� �n\ �*��SP@�N�U� �<7� 7L��y'N��+q��h$��g<U�Ԣ�b� ��ԯލ%ߒ}����ǗU��t���(sc�,�Q(\�n0=�>���5D��;�� � �B��"�2������ԑ�I������;+���q)������ *��9?�*�Zm�Q�Q�_ýs�F��[��Z�;�1\ۿ���n@�N9<pz�g���ݧ����Zjpǝ�^�$�g������{��2h�Kvt>*��[�f�X��d��=��N��k&����<1���B�ns�ӓ����|s�NE��E�22,9U|6ߖF��s[����X4QAyo8d!�~G�Z��[�SQ������FM[M���7�{��t����5�=��\��d�7r�S�Y����a��+O\�dK��r�|�o�Y��o��c�aVX��2�:�����\3�G$�OQ��*.$���"4��c��U2Ecys�����Fz���MT�R;��ך��p��˔جvF�`��H�sWuɎ�l���uk�v��˸�Qʜ�<4����-uˋKegA�_�_5�~P�q���������̶��ڏ{�N��.!d�c�[p��H�g?�W�m4�7�m�Xx�[M@�pD��'�r0�8�͍wP�m!�]+R�-S��|�"c0���2O|U+]Z��FL�V�#,q�� �>\c<� ��h�DSl�����8A_����*Քz�ݿ�t��Y��{���`�������z�a��ii�;ۿ ��e����d��<`9��!MM#jog>�{�-��9�� \rTc�a�OLմ���P��sP�ܲ�<-4P�%��:�p*�E��UC=������ ���V�d#��O�+����?�a�.X�K]^�d��e;�0x�^�l���=>[kg����/<�#|�W���/�u�ͥ�I-���f����Ї�71N_��>�j6�{�����M6X�,�q�Н��1�qF�q��\����&��{I�\��x�#�==8��e����Ś"^[4d�9�U��(�)����5w�ȴ�Wv���1��� �'89�=�� ο��3���O�=�,S&�ʼ�NN0xaky�ӵ+{ݎ�se�D2�.q�� �Ѐ�����:��ڕ�o���N��<d��w�zp�4l+\�Ӯ..D�xg�#�Ui4�K�eq�r��q���=��h.`���u-�]��i����F�U<p���W"���P��6��Բ����i��e8r ���SX�c��������7�I�,��H#�`�|����L,�����㵻����Z��,pw4��9 1ר��{�P��4��gC�����2J���8���x��^�'�Vky�?Ӵ���$]��8<�ɫ�흗������ij2��fR��@8a�ߚY����koc���,y.m��?��B�c<���Q�����;�/[�6���q�# ���95F�/�D���Es�ݴ�'��bL� !w��=�9#�j/�&���um6=6�2�][�)���\����zPԂ�m��ӵ+��/�5���� B���#�'ۯ��X.��^x�HҚ�&�N�w W�6�!V4� n���&�c .�}�R?�@s�p8�zn�p����F��ޝ�/�-�# 9g�Z hk_��6��]J�^��9�D���'����U-CC�}�Z��&i���I���?�y7�:M��ڦ�f5و��/��G�l�m�U�8�1�/�h�sj:�ϖ�&鮮d�wcaO��K�e���."��u~H�|C�#W� �աk��ɊYŻ���q�Y�X��}v�\�����oas�Ɍ|���;��xUw4֢z�h�EƯ�q��5�JV;� �=@b3�X�,�5���h.R��k{O�"������=1�U�7�:]���Ckl�{�����H�#�{f�Ǩ[�6��dN7t�+�<����;4R�)��Q�k���ou�.�����?�s�K���̪����L���o�S��<���M3J�����ӭ湵ɷ�XC4D�|�1��rj�v�Yå�m���n#y1"��HV=�Nh]��� ծ59������eF��h��T`�xSb��8�+vh�iv���r�6�<�d; !9��m�QͧC.����㸑<��$�p��\��V������4E�ݸ�����G)�a�C�P�O��/��F���k7洶�X�� ��N@Ͻq���>���N���[u�e�{�A'�J����g������3[�J���n�!��R���JL�'#����4��-N��,3[��.!(��G#�����|�T�7����HQ�圳� X��~a�t#�ƹ�W�_�-VK�|�mE归���rP���*�����wzn���Y�":X�1���=ד�]����25��� ��fA�|�s��V.)����K�Muq���D� $�_W�����F�^>���O���em\ͬ�6M�s��HB�� �8�N��������%A~Y�dJ��c�s�>1����.���n��n��҅�W!I8���4�Kd6��}�� ���Owq5�E����[[���� �q�y���l_��A���'�!1��%��˫���!��aR�Ё�5�.��Tjך֛����A%ͬ�Wڗ�4�@�B�-��-��\��|p i� 4�pd�H� �>��+���8l~lg8*h�{�Mr��gP2�q$�U�p��i��W=��_���'�t���{�Zx�ɹ:s:Z�Q�������'�������_Ki�"�I���������VOpqiӮ-�%�`FT/�#��V��=�P@��iG�e_��~U�O�rk���&�Q�J�m-���mE�J��<qj"��}�;\dr3�WIz!�cy�x��B�>$�#;A�-����H�E�Cᔽo:� Tد�'<q�ہԓ��߈�7ks1�������H�'?{��2:���t���k8��#D�G�;�F��=��~0���9�Ɩ���s�����<'�&���qҾ���t�'���٤�O�u��.��fg�@Q�*2A��|9�;�i��h.�}N���F�Uf.[j�s�_gk�<�Z_�iW�Φ �(�T@9`ƍߩ8���� ���<o}�i�������]KI�ݓQY�I%� FCa�l(�Q�z�̟����l�����pV{yT���Gs�����6Ե-����U���4}9KG�d8��~��u�g��.��<g[��t�A�9��v����U_�ʌ��B�A���Y|>6����-���w*�ɕ#$<���C^��&��ZJ�Pf4��xۓ�$r{��N��.�����d�J}R^3�/gyF�O�'5��:&��h�Ҷ�}q�ź8���@��d䑂2�t�����9�8ܻN�8f\�O�H�y�<q��^��_�9��1ee����W�����%���np: r6�e����SФ���dP�k,nT��;�ڸ_�$~5���?F��{]>�Rկ""1o��4��#'��@o�}�h�&�ўпf�M���u��mmV�T�vzyR��+��Ŧ|9�_�G���iets��0 {���/`��鎽+���*��'o+�OmhE�u�죋��:��y����=��?�=_I��n�uɼC�h�d��#l��/���o%KlRrp�&��5cI-un��)9�����6����s�O�N���/�r� �z�!��GY�6���]ͽQZ���@#�1�vt�j3\o2y��$1@G�zWe����zM���~�����k�Yf:������*K ��y�ҹ]In�7Q��Zis��%����kF��C�H���W��mF�ImF;ۛX�B��m���5�������.���V� �orf�1m����9�9�T�m�|Qi�Ad�~�F8a�2,�@UD�I�sޓ��#L��&���!�ic��׆1���W,��8�:{ׯ|5�]*�m.�>�x�;�{;���sך��?��/.4[��1e���I��� �P�瓎�� i�5���5���hD�Vg��¡N8�:u��K}��E�y�K��$vv�x�Sr��B�\0���IbAd���*���xP�N��'��Qi h�@)8���F}Ef�K���m�LX��Lq��"�pK���`Q���|)=�1F�Dʻ/;~�<�+�E�I����-�;���7��/5� �K��+im�B��H9P���8*S�b���'��+m���O� �RKG�|,i+ ���A�#��aX�WԼ!y�K��,@��l��?�9�w��~ �|e�~#�Q��ʋmF˂ ��#�ǏUoz�ت9�=��g��p��)��>����)�)�&��k:E����m���;��ˑ���y��U�O|H����G�yeU�/�yB)�6���}��ȩ>j�.`�t�gG�j]a�V o{m>P�/.GO�ݹ�5ߍ~/��U|}��^�J��g5�Q�e�P``�}k�[����F��:`���Z��h-7����;������3��`��p��+�����f�M}� wN�PQ�������"�_=�.f��{��[����l`]W.UH\�������k�B��n%s#�r7�%��O,z�k�����νG$�6*�ׅ�iKW��H���?��{�����:"�H��c9=�\N����"�.�Oo�Āb+;Eg��I�OA^8�ߵ� ��������5�������U�8�9�B�G��F ���'=\�9k'���Mr�] c?�.nm���%hP>�C��_�5s��49�{�u8��fÈ7�$�0s^w���^��h�Mҳ� ���@����X�b��y������������Y"'�FV��H##q�N=�Z�,!Q*j��!GRPnn���t ᮉw?�$��I��Ԟ�e>�����k��}��o���ռa��L�{���y�*�����}CV��l|�]<��U�5��:1<��{�����)�ʸ��Vʓ�xɿ��ϖ�?�����|/�����[I�+ d�ɐ�c�<g��sX��kBԒmV�x�V�Jԛ�$�ɀN:{�;�E$�?�|:�����7x���4�5M5�'�.�DO�;��Pg9#*�k��B7�ϛ�����3��"�ݪ��kC���>4i�� ��)�&!����Ӑ��y��OŏGf����Է6k[˛9GЂ�ۺ�p���� ���9���q>���<�r�N���9Ջ?�z���N��Ϩ��$6v{��o�"� <��~�S�}�2������~�go=3N���]m��o���qo4���@��b�O�c^�s��<4�S��D�%����y-�`�}�e�u�=�όd�4�_���L�V��"� �Im��:�{կ����][Om�����mP���� �UxlEh�Q�j+�빝xQ�sm�_#���cS��#���ng�a�8BA��ҽ��^���>'���E���� �B��{��v�?���&���xfx�e!.4�^��P6H���9ݜw9��;��z���YxCI���O�,���7��퐶�p;��1�]X��J1�O/_#��=��z����[YF��f�F �Q�p7#A^]�-SR�?ٰ��gzH�T��!�;�N���B7ރ4�2+q%��w_��N+þ)�3�ܐ�tp�!� �Ÿ����N��5����7>�jZG���o�~�a��6�s{&�YAݍ�ˆ�=u���}úܶ�b�d��V����q�d�q'�p:d��,e���Xj^"�Ҭ�����)'�89i���}���c�k��ր��Z�U�K���E����*)���`����5�?R�Q��~ZÓF�����Ϫ�y����͠�����#i6��,9~H1���㏥p?~�1������e�� �� �?2.9,�}k�|�����`�|Q�����Y���%X�w(ifwQ0-��^#���c�[����Q[v�������P��6�q�U�/�����漇��;F;u�����Qͥ�i�go��L��h9��Kp��� ���GÚ����M���-�ҋ�@h.ZX���6�nO�yW͚���j,�8���ab� t'��XZ��/�#Ay�M8L�%����+�ޕ����BZ��?��q�Vm��:���V����C�ZG�o/l-���ߜ�*s�A������!x�M�Y�u��dQ�`�q�Ȭ�k\��:�^,�i�S"e�Wf-��rk�~|;���&�Y4MOSrm��x��V�sop.>�s�^��ӣA*�Rk}�y?Z�j��v^��j� �O����R�oo|�vy�HL�Oλχ�.�����jZ��ڄf�K6!$u=rq]&�����~ �K�����ޡ�:KI�s��r��<?5�x�C�ƥl͡�Oen�,:�M����8#��*��5J-F?$l�Κsi�_6u�m�)�%�-<Co�v��GSy�ܱi�*��1�sӥu�Ņ������m���&��3��6�]q�8ϧ�|��� IX��R�@��I�<���S��/� .K-j�O�^�F����>_�=�;�A,I�uc6Ȅ梖�N�������1��Ț�V�6Trʤ��I�*-wº$�L��w�!�����m-�B�̼�ע�W�~��<�z1|H�1��H��Ic��_�Z���RZX�[���n�.D8 >_�d�=�W%Ocy��loNU���:x�M{y���˂L��^7��:b��qq�M$xru���>|� �'�#�5��@�4��]��\�-��ݎ��"`3��c<PɵA�vG$�ߵz\U9.jN�9�Xj�������cO-���z:�J�ַA#On�rUJ�pI �Z��������E��^��G�F�(�`)ޫ��{w�2����'��Z�_���-��A�G[;UX��݉��i���V����>!�i����Lp[�9G$6�۟�rp*g_Qߙ��"�A[���x;O�<?�k������o�E���zn=k�~*�6Oy�̓3��9ٌ�q�r����}.�YImR��B���X�b0F�00y'���a���N�5+�g}���z��q��+�B�O��ww2�R�w<����.�S�#I�K�Ʋ�����5\�yWna^���+�X���ͯ�uv���/��ќ�6����5��D���O�źZ0<�����:c�i�Y�f��y6m{yy�%v�+z�N���W�O�����Օ� �3ugn�e��6M>�R�F��jԞ���k�#��o�['ڮ�>\+���=�H��lj����y1���b>Q���~��f�ZT�l��j7:i�N���P2O^�ؒF:�3�&��Й��s�>�U�\�t�H��^~����[�� ����bV34A�y ��9��:�]�~ӧL/<G��+�����7U��=�'�k>��[��k�.��X�v >��VTL�QW�In�NN��lt+�DǦ��dJ�o��L�-�(>�Y�z��\��2i��m�8-�DѲ��a���$��;�zU���W�LR� ��\�R�=����I�X���Z��H�ga��l��2��}:�� )�s>��xc^�g�s.��N�퓐���@��X�ѭ�X����^��Β�$��cn��a��:Zi$z���#�7�j�>�gs��H8�W���Ms�^��[kW �f}Rhݒ����ڹ��c ��ê�M&�]h�_%���cE,�*\|Ē9�s�����X<1�ij�$.�sdɴ�B�?($�����8=�k��\ͨh:�K�S$�e�r�Ɍ��-���G�VGӣ}cI�Q��ڎ�v��O�y�;��Кm ��g�1i�\���G��Q&��J�Ѱc�%���ӱ�5���[�&�na�R��ӟ�h<Ag�Gy��\k��6W���I'��H�:c����8�������K�nC��^A�I����ƙ�_�R�k�ymsuev~q4��=w��T���z4B���z���U�#ې=�O�P�������m���V��sku�h%��� :rzU�+� �Q�NK4��ڛ����M+�Us�<���0F��ײHt��*U&/��- 8��bsߟ�VM��~�.��xjX%�%��a+4$�r�Pl�k��o��э�a����B0�܉9g5T�&�/�4�� ��Q{�������+�l���/�4�B T:Ayi�ȇ?6#��Q�,�kO;�:6�kw��f��ތdu�Uq���J�^��:t�[��y��6L������ž՞/�ާ�jb2�8�G���X��^zB���,���E�M`�);����:�dqY��l[Q�t;�2wEO�黦�&<B1��z���vZ�����KK�:D,��Nz����Y>=�-*�oc�5K��q�i H؞11��1LV�A����Y5�7:^�!dMP�x`�\�LSAw�vڅ���Lp�����I�6\�J���H�\\i��r�z�'!���%ħdbAS�8��PxwP����Я����b+=NG��0��pNi�.� ԯ絖���mÂ֎�LȠ����'��v��",丛�1k{ۢ��f+l��?�ב��g[kx���=:}8�,������ �����;)�+? 0����RH�E&��� f�X�s�-L��K��g]o����[�)J1������Ԧ�K�C6��A�����v�k����븒08��C�Z�z=ܲ$�qaz7Gt�XF�Ł���NI�[�kI�ٮ�������7,�C�u99�H�I�G�Լ���2I�j���=������3�283�OJ�����(�:,�-��̷��O�0�>�(�9���y����B����"�)`FT���ڷtK�,�Q<�}� ,��M��`�c�c���m㴝��u����A(F0�� ����cZz<ׅe��Ŵ���#>㫞�x㠭;`[`��LeJ���'�����/���Mna����P1h@�RKl9��^1�Jڍ�b�<��meP;/j��h#!W#���-�W�]�qܥŬ��h��u�q�8����� �z�>���;�3T�a����#қe9�p;T*쩻`��s�*�ͬS�,�^)���N�S �<I���WV:~�i5��-�W=�L�t>՛�]x�N֍Ω��p6�,������yg��jҥ��}=��K5�H�ȣ�60��>r��u�}W�^�-j�r:�-�N��0�I?wnN㷧��R&�����u*��;��@R%a��Y�A�H����Dž����?UӶ� �b�����խue���-����yC�x�nX#���UC���Ʃyq��{֥�c��cs��-F�e��4�o�H���;��ʛ ��0xǚe����P��� �|Ns� �Ȯr���[�����{ ⸑-Y���` ��m�Q�sޫ�7�����������p/\��p;v����Mr�I�� �sEg�G��q�.Pz���P3�X6#U�{j"+S��θ��̪?�����$���V4mcNֵ�[\[��]�R�;3�m�s��Z���Ⱥ�Bmm����͞(叉lu[40N�F@�#��2q�2�����P�]��F����w ���w{-���e��O���t�Ox�m�x�55��zm�vwZ�3K��q*,�����v>��y6��3� <�(�2=1Q[�v+���=�|Ã��˕ �w�f�W·ͣ���� ,lq���m�5����Z|>)�R�K?��E�%��lg��U�$�B�����a�.K����|K�?��ǒ#k��1�ew�Q����Q���zKK�tՙ�'��?��ťi^0�5���H��m,�E0��+t�Y_?=�y5���~+���Ι��^�ቅ���r��t� �)�T����<� �O�F�;{���@�\3���6J�Cdyfu˟��,A�;V?��g_�� �M��&�����P�����I�\�ы)Ǫ7r)�KFDou��? �����W���x+��G ����\����� #pn��$g�]��uO�x:�������[R����M�R��q]a�� �ON���N��G,i�ۺ�]&����d�ɲ{}�Z*����FB�MB�~5j��{}� MaI�-/�E�W��+��l�߃���I�8�#������@�tz,��>�zN`�����X"��;W��O�y�[$�֩g�\1�Y>�$��G�>:v=8��t����W0����{O03ؤL����dV�~nG��� ��� �.Z�_��K�����+g��1т@��� 6V��&ϟ<9�[���;K};������-]6��N�T���� p+J��?í?���C��Bg`�]�}��ı[$�!��e�9��W]���;�8��$h�n-HO |$1��K�Ac����[��Y����[x��C�a�i��]�����k���`x)�����O�"���u��Β�����n�]=������v���,m��D��͙������I�)]�m�a���g�߇��4�nu��_ݟ2�V�ۏ�����|edR���V�ձ�s0��D��{�Z�Z�\��� �Z]����� ��)��Þ:Ծ0�P�R���n��n��@��e��u�q� ��RVg�~״�o����&��ꖺ���4�mVgӅ�ERE� �b%��!�~��0��?����]�I���2�R�&�M�7) K+�@b{קx7��߄4�mt%���>]֥5�w��C 8.�����us�߳w��kZ���b�SӢ�~�)"�ڶ�WD5��u�=�{�xcත���k�[ !��\Cf�>̪7� ?1Qך��g��?�o�/��Z��}�+�{H,��@F~ �,2�}3Z><��ŏ�>�������隄b;��1�(9d�rJ�Z��,�|:��M���ͦ�Y}��<8��۷b�\�h4�vz�~����W�G�4�W����#Y�O��ٮt����x�k0]�NP��]��Q���=i�3���rʶw�l�3"��W9U��y���>0�f�\z����*�N��ao�ہ,plم>y���߂�����ao��*Mm6�M��Bt��%H��ܥ$a���:�7 D%��^t�_�y�����d$1��J�e���<�-�>�Yk˼E�0��F�xoź=�k#��t{I�\�r��'�� ��Ú������^��R���m��k{�@����y<����Z��k�{�Zu�N�͍,eTQ�q��+�x|}h;���������%f|y���⎖��.�w~�����e`>b##�N*�?�"i�;E��fK�"]���(�(=w�zq�k��w�z_�K[S����{�Bv�8r��t�~`��\��K��W�*�U��C`��q��'Ҝkf_&T���L�4o��Z���y����H|�i.��w�.A�|��܌�/�/�7:DZv��\�������A�������^�W�<yk%�I���\�-InA*�y �+k�� ֩���Se���4�m��y����I|�^/�g�h��E���k�6XG.���#�;�^0�}��Ǻ�/��z�m�J��� �F�H�k�?g�^�c���9YZ6�E ����9������i��?���(�$�'�P|�&)�K���,9�SK 9k]���T��iN�6E����g&��I��UR�aH�@��$��'��I���kG�U�&��_�$���n�����C��ŏ��_���*)�H�|�#9D���2���g�.x����l���w<���mn�y(�9\�،��[���,�I��<D��?C4�~�xb�ׇ��~��1�~!�~��+���hN��u��u5O�x��'�����{f�>�k��F�����K��̮��n2�'n1����]/�ĝ#Q7z_��MbZM�-u��S��a[~�S%�SX���S�'I�����:��>#|3�e��r&��.-J�ۺ��Ӵd�zzf�q�������[����]Z�b���2��ޟm�I�����G%��m���U�{�,���VE�6H�i���B%�W�쮗d�Cp&d�wF͍˞���\��X�$��(���vK�ĥ�t���,�m�q�#��q]?��[%v��{dz}Err|W�m�A$ͧ�]b��"�c�>f����X|OT,f�g$��i#��-^��Rq�O=ԧi#�5�=�t�"�I�]2� ��,E�IQ�m����'�sZ�������Լ1q���U|����kx-����8y@�A�Ey>��d��-��2���xO�SKz��m�w������k S�N>�v��BP����C�7Z�'�4�/.{I����`��ڹ۫{���u :�+���x���.���\�}Flj� ��maI �A��c/�x~����]ZR�l}��#ד��qX���r�w���諀��I�z�[i��j[x�\K�"��`��=����Tw��qz.�h`Hd�R�<��<���ޮ6�ɢʶ�u��m1?��3���r�v��k:�K��5��}:ݤ-��9Y=r03�9滩�R����Lᜣ(�ľ(����AKIH�9 $a��fQ�1��ֺ�^���V<R����HY���������G�6Z|p;��i��sD��� V�H#��uC�vV�n�7J�+X<w d���<���)�h�v�" '���7��������wD�x� �����ֱ|K� �Y�D�-�!g���[�@lO9�y�*�/� լ>���ԂIe��Ƒ��C���dwҮXxoKoi�L��39���$4��!d�0������s�Z�ok'����j�i��T*0���xa��ƹ�n.�.��ต��K�0��p��I��f����H�|��Ʀ�b��V��8��+� ��:W�K���&�e��K����j �6� �d����t¤9|�g shd�jw1�jQ�e+��X�8RTBN�z����n��ĺ��s2K,�����d���J���i�j�LB��)�V�ܞkgCQEe>��v��Q�.��H��p��h�F���r��j»�Է��_Z�u-��nf�l�ٜ4r���w�W'��q�:�&�Im��E��j�e�fPH���>�kԼa�;�����"K���"�6� v��;� ���du���h�N�W&� ӌ[�k���K����<@�傀���e{gpG!�~U�C�Î �fEB�89�@���p>��I�fԲm9ޭ�}k�E�dq�]ܚYR,Z++�#b�h�s�#�{�T��s���||Ȭ���_]�d�t���0[�ڣ�NB���d-�iwPi���I�2�ٟ�U$n=��V��\�$�Zar����@~G�p����q�j;K����o�R&�6�W�G�8,��=1Z�$:n�%�ڬ�L/�o�K��� sXM���?���Y�����ϭ�x�ð�#\��P����Vh��&B+r��3x���[�OQ��N ��#bxP��'X�y�y>[m,�m����ʼ䏽��n5C4���Y$����lhz��==낦�W���c��"T��&�gԞ�i�[��uˈ��"$`�#��C~���_�7�uE�� |&��A�У�~�+��≴_���5]n�t�Y!��Nꠝ��� @�y;x���4�\��M?NѴ�Ñ�ܾՄ�:�0J����g�3�� �[�X�u�I-o��oV�g�Ț��L�]���1�~�t:�CǸ�[ľ�敡�Mq�]&->���������?�M�\��*�B�Isf�&�Q��*� �'!���d�\W��V����X_ص�4�"]�hp�09�c�E�Q�H\%V�V��c��>�k7�x������$���y�m���(0�`6�z����#Z��G�bI�g�]��)�������^�&��+����PH��un�<.���^+��.<P����Um�7պ�����JV����o���k�|�g�OP����V�s�|���DR��?� ��>�K}&�� X�-��Ũ��g�22���m-,m�:�����9�$�U/�G��5��p� ���</�_�ӂ\����9*b$ޚ#*�H����� ��1S�y�l�O�[=2Sm��22aJ�$�¯��+]���qW��O�{��?VǷ�����l-�:�υ�d`�����m��9�L����s9n��ys>�k}ous��9���� 7|z.=+��u�in��ԧ�4�-��Ha+yX��P�I9���7:��4�{��Gr��w�*1�FC3p1��׃I~�i�̲ͭx� ��pG�G�� 'q=:d��� x���I�j&MOvYn�*aE_�ܙwl���*��������t��-��]�6�e�c$�ۖ��,����1� �x�����V(�����A=��Fj-���RY.���S����P�$v?;~nJ�9�.���|e�겭���:�T=����������>�M�W&�`�65��bq��'=z�\��n�x��v�6W|��=�5���ir:I'oR9�_Ia�ٔ��氄��a!Uh�9C�3�� �`t�a��Ό�K�x/�aq�^#��Ԑ���p��=�>Ymf j��֮����IFȷ���Ԓ�ixs�z~�9��tK��4p�x�gQ�g��n�j���Ehk��F�q��V��{��F9� \�Gg�hw�[=f]#RTG�E���(,Q����8�Rx���i6�:է���� �LJp3�͌�{�U�n�Yc���/��4�%>b |�q������!6�>�W�o4������Ax#��'V%�V�wX�[�����H�\Ő@�8e��`*巇�"��P�o/<;H�y"�3�<��:�ӌU�oQ]:�[+�"�A�1�����ܰ�`�<�)�{k1�6{�(�EYSJ�2p�q�:���ҁ�/�m�[E�t��7�gӦ)n#9�F�ۀ?�/��Xi��iz�3�MG����B�IW�H�Fў�1[:����zH����I��#ay�������y�E{Τ��#�<D���a�X��zz�4_M�4�_�>[�fcwd�zr������nu}F//V�5��S�\��-�H)!T�p3ԓL��N��[$�φ�ە�Uy�ھ�zd����qZ��Z�R^X[���<�l�ʹcn�'�v㎴��|%a�ؙSP�4y�X�M*��J峵�g�A>�-����B-+T��e)���d�ڧL��f|p6�z�e�:k�ޝKU�/� ������� ��(� 8�R�iZ��+qs�i��d�{c.$�F��=:� �P�v?i:V������}J�5V�(%I��Ñ�p:�Һ��:6����^�l����/PT�1\7�-��ka}uis#{�<�|�j+ug�Fq[�֗��kq��O�_˺G����u�*��I�������oi&#g|���O~n&f�?���C�;�v�#A��:�á��g�1#����s�~e�������m�H"���Z��J�C�� �}@�呞i������;�"c��F�� 6�3��?O��5�����E�9�⌺�Q�5t,�B��A]���ͺ�YH�xgC����J|�����] ��o��C�E����<;m�jo�$�yw�p��#�=�pj��:��~5/n�٠��v�Z0�1Q�{�?QV���\�Mz������nGBW8'�V�uhK[���s���F��ߠ�~�XI�h���N�M&��[���>��Ҩ����(M:�+�/��d��b�)����=MT��Hb��<�O�,#p�q�9����ڣ�P�ծ��m쯴x��9M�Bɜ�5�s���I�;�Oou�i�ȵ��#����I+����q=�S�\U).��Kn�n���Mn��\��|��� ������z�P�tsi2��94�Z� ��eg���v�� ��ۙ����l�B�f��n� ��w ��0����|;s5��yն�q��'����r�{x�Y������|C�%�ٚ�ծ'FY�,�,�^���������5���\����J]�ݸ��ۮ��k�<:\Vv���@,��ui"�2H�s�r=��K��j��U���s�]�B������@P�W�u��5J��]=��ܲ[��mo������R3�~�=� ���\xf��H��(m�g��� 9U^9, �=��Ɠ�o<W�Aawm2�[a�Ĉ2���w�8���sj�]hd[mj�[�A��C'�����+Y.X�x��T�wg�GZ�4�=Ug���U:Η|��E,fGU(��N����zg���O4���֏*��6�=�,HeQA��<f��7��hW����7��:씁����:�\��&�P�H �<�_j失���[�CC����3������pI8� I.�=�os��Ay�CX�U����*�9QӜy� 7>��i&Ӯ�m�U�N��6���`d��U�,�#ҧ]��D$3�\K;����V<��$��RX�[�·��)&V������$1P�tnJ�Û�����y�rQ�?_P(ܛ����T�A�k1G�ZC���8�|�ylǻ�5xum7QEx�凜��q��T��q�b�[Դ��ó����V�';�*dc�a�=*�OJ�/n4I�[�*RWE>Z��px>�1j6�O���}ODռ�:���1����9O�*ƭ���{m�Mk%�z��؏$lV-�z��*�����{K������Ё�Ɗ�ؑ�`�sO���Z�b{�[K��y��ab��#�?Z^C:HD�� ��ğ*�0�v�a�:���.�4{y呾y6��qϽ`x{S�C�]-�E��^��O9�a�[=K` .4�2Y���Zs�:�;��h<(m0L�$���T�T����E=��Μ���QE&�?ZE�P�4QM���U7���-As���QSOb��?��_��u�?���\��ЅV�hq��t_�|%������5t���d���'�D�T-���������c��L3�����(��������W�����%h������~B����g������y���]-��}�ײQEy���uGg��3��5����+u����Q]��a�$�['���I��}G������c�������=�ϵS[0[���j'��5��p�h����G�_��%cU����Ы���T�Z(�h�(�_$��@�}O�5A袪;=ɴ����\d��M;U�����)���(����Ǿ~�{�_���U�����$�D��w�F�+���|�Sա������?���.�i���(��n�����������Ei� �#��i���B��t�h��$����O����T>�7�?����|q��<Y� �?����������s���W/�~�����!����Ŀ_�Q��:(��8������V-���V��q���*)�{�����ۯ���_����5������Vu���������?�J��u?�3\�O�&�����TQ\��]�����$y_���!/��:�����O�����)��o�D��(j?���C��x���~��7�4�Ere? ���Y�c���?TsG��:.����A���t0�ȿu���.�+*� ��e� �;��ֿͪ ���_��Z(��^F�s���]�ΰ�������Q\��*[�i���Z�W�{?��%t^�������E������=l�7�����\ ��u�_��%�t��EwῈ������?�$�W���X��~����$���8�(����n?��Y�Ȭ���h��;S�,��m�>���Vߎ��k���i���E7�P���C�"���{��וx7�J?���7��Eka���x��D;�����VW���@�����R�h��O�����ݿ�����+�����E[���_�w�E����Ut ��i�`��E��G/�|�����~-��ǭ�����QT9ã��=���K�k'�_������� (�B_�h�Lt���ה����m��kEK����?��?�����C����|C���(���ٞ��W�F���_�����u��w��FQE5�Dzݷ�����u��,V���eT��s���8o��A����_��x��I��qo�h��_ hO �.����Ƭ?����CE��k����� Q��D�_���S{!-�0���#���\���jתj��M����KE�TC������?��<I�%?� ��3E=�G���|I�?ּ@������i��-QؙK��������2J���=s�^�*�E�����sS����F�n�]�����`���T�B�ix�I������_����:��A4QM��������x����G�@�����d�������W����B������R��?�7��W1���>�_��E������,?��_�*k��*(������ |
| URL | http://zero.webappsecurity.com/resources/img/main_carousel_3.jpg |
| Method | GET |
| Parameter | X-Content-Type-Options |
| Attack | |
| Evidence | |
| Request Header - size: 288 bytes. |
GET http://zero.webappsecurity.com/resources/img/main_carousel_3.jpg HTTP/1.1
Host: zero.webappsecurity.com User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0 Pragma: no-cache Cache-Control: no-cache Referer: http://zero.webappsecurity.com |
| Request Body - size: 0 bytes. |
|
| Response Header - size: 351 bytes. |
HTTP/1.1 200 OK
Date: Mon, 14 Mar 2022 07:13:43 GMT Server: Apache-Coyote/1.1 Access-Control-Allow-Origin: * Accept-Ranges: bytes ETag: W/"101493-1358497020000" Last-Modified: Fri, 18 Jan 2013 08:17:00 GMT Cache-Control: max-age=2678400 Expires: Thu, 14 Apr 2022 07:13:44 GMT Content-Type: image/jpeg;charset=UTF-8 Content-Length: 101493 |
| Response Body - size: 101,493 bytes. |
����JFIFHH���ExifMM*V^(1f2x�i��HHPaint.NET v3.5.102013:01:16 15:53:54������(HH��XICC_PROFILEHLinomntrRGB XYZ � 1acspMSFTIEC sRGB���-HP cprtP3desc�lwtpt�bkptrXYZgXYZ,bXYZ@dmndTpdmdd��vuedL�view�$lumi�meas$tech0rTRC<gTRC<bTRC<textCopyright (c) 1998 Hewlett-Packard CompanydescsRGB IEC61966-2.1sRGB IEC61966-2.1XYZ �Q�XYZ XYZ o�8��XYZ b����XYZ $����descIEC http://www.iec.chIEC http://www.iec.chdesc.IEC 61966-2.1 Default RGB colour space - sRGB.IEC 61966-2.1 Default RGB colour space - sRGBdesc,Reference Viewing Condition in IEC61966-2.1,Reference Viewing Condition in IEC61966-2.1view��_.���\�XYZ L VPW�meas�sig CRT curv
#(-27;@EJOTY^chmrw|������������������������� %+28>ELRY`gnu|����������������&/8AKT]gqz������������!-8COZfr~���������� -;HUcq~��������� +:IXgw��������'7HYj{�������+=Oat�������2FZn������� % : O d y � � � � � � ' = T j � � � � � �"9Qi������*C\u����� & @ Z t � � � � �.Id���� %A^z���� &Ca~����1Om����&Ed����#Cc����'Ij����4Vx���&Il����Ae����@e���� Ek���*Qw���;c���*R{���Gp���@j���>i��� A l � � �!!H!u!�!�!�"'"U"�"�"�# #8#f#�#�#�$$M$|$�$�% %8%h%�%�%�&'&W&�&�&�''I'z'�'�( (?(q(�(�))8)k)�)�**5*h*�*�++6+i+�+�,,9,n,�,�--A-v-�-�..L.�.�.�/$/Z/�/�/�050l0�0�11J1�1�1�2*2c2�2�3 3F33�3�4+4e4�4�55M5�5�5�676r6�6�7$7`7�7�88P8�8�99B99�9�:6:t:�:�;-;k;�;�<'<e<�<�="=a=�=�> >`>�>�?!?a?�?�@#@d@�@�A)AjA�A�B0BrB�B�C:C}C�DDGD�D�EEUE�E�F"FgF�F�G5G{G�HHKH�H�IIcI�I�J7J}J�KKSK�K�L*LrL�MMJM�M�N%NnN�OOIO�O�P'PqP�QQPQ�Q�R1R|R�SS_S�S�TBT�T�U(UuU�VV\V�V�WDW�W�X/X}X�YYiY�ZZVZ�Z�[E[�[�\5\�\�]']x]�^^l^�__a_�``W`�`�aOa�a�bIb�b�cCc�c�d@d�d�e=e�e�f=f�f�g=g�g�h?h�h�iCi�i�jHj�j�kOk�k�lWl�mm`m�nnkn�ooxo�p+p�p�q:q�q�rKr�ss]s�ttpt�u(u�u�v>v�v�wVw�xxnx�y*y�y�zFz�{{c{�|!|�|�}A}�~~b~�#��G��� �k�͂0����W�������G����r�ׇ;����i�Ή3�����d�ʋ0�����c�ʍ1�����f�Ώ6����n�֑?����z��M��� �����_�ɖ4��� �u���L���$�����h�՛B��������d�Ҟ@��������i�ءG���&����v��V�ǥ8��������n��R�ĩ7�������u��\�ЭD���-�������u��`�ֲK�³8���%�������y��h��Y�ѹJ�º;���.���!������ �����z���p���g���_���X���Q���K���F���Aǿ�=ȼ�:ɹ�8ʷ�6˶�5̵�5͵�6ζ�7ϸ�9к�<Ѿ�?���D���I���N���U���\���d���l���v��ۀ�܊�ݖ�ޢ�)߯�6��D���S���c���s���� ����2��F���[���p������(��@���X���r������4���P���m��������8���W���w����)���K���m����C ��C ����"�� ���}!1AQa"q2���#B��R��$3br� %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz��������������������������������������������������������������������������� ���w!1AQaq"2�B���� #3R�br� $4�%�&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz��������������������������������������������������������������������������?�'j�#�:�\g`�ӥ�A�jL�b8}��R�ʎ܌��'8�l�)H\t_Ɠ?9��p~�Ұ�㑁��T�8���;Ғ?:\p>�R�aGJBr�&�g��� ���?JV�:(��[$��N<���0�@1��Pʧ�'�G��Sֲ�N2E)4ʷ6���9���F�p���#���:W��9\*Ŧ��>%��=���r����!+�9����0$�V�fT������l�xi9Ah}�-LcG#�Z�w�Fy#�l��wt�U ��q�j�����s���T��=+*[f��l�WYsn���j��H\q�PV+��N��r�95z��>x�kVtT�k:�'=�*j�ݛ)J�O~��s�Ɣ�'Q�U `>fB��RC�A��G?.�vE�[�v�Zъ]�d����X����j�#n��vK-�4�Ğ�ic�ўi]�=k)��4D����"c�O�0��I� b��:T��`-�1��H{�X(���ӲH�qZ{owQr�8���sHI' ���~�T�������E�n�b���:�Y���RFrW�Oz�����t�������Z8��k̲��?� ǿz�9�<��c=k>Y@����h� umC0�ZG��5�����~�t��F3���x��Mhk�Ny�ϥ4�z��Ȥ'������I�����s���"���<��;��UqvLv�b�}܅�U��h''���@��Yά��Ф�H�s�E;��d���P��8���1�Q���7RI��2O��b{�T.n�^�u�s\�ѕ�=+xR�Q{��ŝN���z�9���-'֛�_�H��9k�<W�U���l�9 ���YeZӳBsQG|���`�[�������^�_��L��-v�=�g��H+���z5rEL�Z���J1�aU�� c/��k��TRs�z��߃e#������YJ��jX�d�A\8>���Ͼx�s^}o���ql����z�3��VR�Tw5SL�����z��L.>c��rP\�y'��5#�/p@�sX��'`�:C��q�<s�G��8�ۯJ���r1U%�@�A�x�2��1�g-��}i˫���p}�]S2t8J�5 Xa�o,�`�;a���V�NMM�a�c����?�OO�Ў��yrc��S�7Z�o��`��k����g��V��YW�g�5�<������.*d�RF���\%�� ?xӭh[j��#ך���ѝ���:�&� Ͻs������z�n�>�*����p6U���4o$�<��Q�v��8�Z���9��Z���;�1��i�>߅9�lὩw����l�& �L�� 7 �O�OL{�ɓ�'�P4`c4Ir20~���q�@$/ ���n�2��`��$�J�XFp3��+�_�SZ£��:���%�k�:=غf�d��N�-w �N*��Nv�קO*j�q���铅/� ���`� �wq��#�X�J��)�4U�L���jc%=�Q&��$��٭�Y���۽bD��{zS���f���V:�`���]��q��5��������׀���84"�f�s�5�����O�E�df�N^��L˻]ā������e�*H>����Un :��8IǨ�V�I��z�-�i�.Hf��&�R��#h%�T�r I�����fD�s��K�{ͭ3c?) ��t�fH�+Ly<�y���rd��qް���9r�8(N1��aʖ&&I8���j��b\�u��M�N�wf��K�|�!I���ں�#[F*rk��c����=?L��[�=�t�F�������Q��s�ڰ�n ����q��՞�ա �S�l58�V��°��zq^i��̬�ǏZ鴭X8\�;W�/S�����1ysZ��W�>���t�qY�bB>n���"�9���p�� JR�ԛ=���㓎ޔ��lc���5ߦ���s�#ґ��N���;�b�y�z,�������x��zt�h$3�J�v��.�W�Rg�P#�M��<J�}��`=*~@������s�k �@އ�v ��3����'�7#��4qz�{��� �K�m�8�9�{��r )�pO_�4n���c�C�CK����i8��� ��Oʐg'�ZA�u�9�8�~(�ohR0A=(�8�r��@!F9�v��9�A9� B��9�@��#��CKߡ┢��i�E4[��S�Y�ց�������S$PG��|n_ �j�]C�8�JÒ@�=k�9�����0Ɂް5];� sۊ��;��Rn�%�>��SVg-"��hԾv�kJ�ݕ��TB;u�_f�g��otd�Z����Vt��$#��+����g�ҳ�# �9�QQ��HďO.ű��*�V@!�U��:p3��ĊRx�(��{��+�`298?�*F�:�p�����k�M��^����y�����2q�Z��㼓h-�������>�w�II̾�����u��F ���� ���Z�Qqvq���OS�O@*��\g�9������#>�$��c�?:�H�1H���ӄ�ev \sŸ`~����<�8�Ml@�r8��D��$zt�J���ތ�o�$%����z�A#�9�-~�� �Z�/�6Eys�{W�B4�@���uepK�95������}k�͢�F@�jK+�<})��)�Eb��z�v�Mj$����\ ���8���{N�Ī9�kĭ��=�[� ��{�r���-nמ��<�1�Ao~�brA�jk.,@��r�>���ڒ�An;V�����7")6�s�k3P�R��5��j���s�Ճ}��� Ny����M��lm5�2�x�l�'���5�c� Ҵc1����М���T��N�����r����k�|\f�Re�lϥ{n��d� � y��4�qx�19����]Zpg-D�9M0�H؟\�+�ѯ.`�"m̀go�ғH�&��x��㝹5-�v$���]U�)��1���4�<�^s��yeY�)����!�j3Eu�:�hڣ���r�P���؈�z�Ygh2�Et�;d]ñ�Z���I��8��F�f%�mϡ� J.V�6m���c��z�Tr�͝�:����J����$w��s�H�m���u��8[��s���H�6})�ܶ�9�����I�c(�q��?�ni6a%�H�jB��M�2��fo^�k���O$����lt����嵋m�k��b��5�JQڦ̅�)�n�~�_�5��r�;�w6�Aaɮ�.�*�tv��2F;g�s���qR� p��sE�ɟ�r}�����Y]&F�����$���h��S��ӊ�X��&�D� ��W�_��dE\�>���2G zU�I��^j}�+/wP�Gs��A�-�l[�+���;ןX�g�� *�6>��έ��'�Z3���$?:��`�k�}�p��е}�<�J�Fg(�J�g~�p9 #��~����N��������� �����C:䜞E �i'���h<�:Q�N?B:�A��J�+�+.*?�/~? �=z{Ҫ�>a�åh�t#>�\���+Pr����t�QC�g��խخޠ~UJ��h�o�o$�����ac,��%���@�\��V�G����{X<5*�i�g98�4~+�L��OJ�ҵ�.ݮ=�kɭ��\e�=s]��mI���X:0���Ӝ�=;J��� �d�q�2G���j�^a�ݐJ����7GG gޣ��A��R�����Q� �9���E <_)�gި]��nO��Z'��s��M���������\�n!FOz立�s�ν�]�m:饈�6L�]Z��vebzqYm�sGq�5����H���#]�2�R@���8\M:��9��F���0c���Mt�V�T�����3�9PK/`{V���If=}y�y<*E�! �vg��:�p��3�9��6����+��/������u�f�>a����upӼ7:ӌ֧����H�0��O���u��+��V�> ��+Vx������SW%N���v+.�Ex���� ���e\2}���uu�6۵�V��s_���,DSN��bpS��F�#?����I��_��J0G־�RWG�Ճw�N��<s��!8ϭ!�}MQ#�,ӆFq�3��/q��@�Ȫ��`2G�Ҭs�<�k�h���X�� �|ghs�g҃ӡ��`��iPsӵ�n1H�?�������899���8�px=(o�i�猜z� �<���x��v�19"�}�NFZ��ր��n����t��A������`�x�8�G^zzP���@ z��~�t��4�'>�����Hb�b)1�28��'�z�ԭpP���*�ժ�A��WO#������\8�jŦ���pg1�i��b]۴/�x����� �.�d��b�6��wz���������9Y���]E�ӿ�l�99�5��Z��|�V�=�������&�ȍ�eI��[��Ȫ&$�Ͼf�i$;�W;G��\�&�k1���{r�5 ��!�{�Xṕ������� Ƚ�����O�^�؎P <W5�[�m�s���W-<$��i̛-6���1�OJ�U���s^_�8bs�=�����P��� ��˪r�KY��=N9�EX���vw��X�<���_j�P�FN=k������R�=)s�H��NLd�s�*[�C/AӥM�� �)��֘T���Ҝ'(��h���H���z���?(Q��z��wnZ�6��0O�z�0���;�>� ��C���sK��IIv�5�叝���ֹ�SDܘ �z��,\9l(ǹ�@�\4�H�ֽ�����q�������ľ��Fk�ԯ ���z�Lh�������j�7q�jܚ8pּ~+����ը���'�-\��j'}��z���d�q�X����g�?�rwz��北s�v�{��䔗%��]�\����3���%v�D��>����iyb{�TO���{�M37�?��X�SZ�3n�QÂ��Z6����==:���(�rGC��-Fv�5�V�&�4١q{�ۑۧZ�H��FB�sT#�@�I�_ �ޙ^�Մ�F���b�c�<"��+���KB�J�����!��VS����tR�RV{額�m&�1pg�Z���d1�<���� ��rB͞稯M>�[�I�Y��c�8XB��+��{NT�!CԮ�WE�t� }�V�i��2sn*{h���#�i��q��־f�2i���\���4(����@?Z���-�����]���Q��+X֠Y6o O���b�Rk��F(������r �G5�m�(��t�Өe+�{Mtb����8�38��B%k+0�}x_n�bPlq�R�&�}8���ȸ�9�˜�����$��c�8�6����'�f�8 u�k+u�@s\��--���ʌ���+�+��p��z�ժ�@�x��.���WV]���%�4svڢ��i�9=k^�R.�+������^6-��V���<sm��#�M}4��է�{;�=����j��aI�,��2�R3B9�u��NGcָ�Qte�w��gq=����c�M*���T�I��zG5%����r6jڼcV: ZΗw��w?�oZ�����'��<���I��x�ɯ��S�r���ߍ�ǜ�;qA�a�T�r29�|���'�$���WW�6-���<с����v�J�p�穮�MH�X$E'''�3�����,pip{t��78�@㜟���)��Sߌ~�)� �{ɟ��Ow#�)7�v5�g�,`�r��#�q�"���X��{W�L��,:Vn������u�K:N�c�{�{�Kiu�x���?"�6A�=k��4��X�x�z��KV��t�ac&�z����4��^T�3N��`q��X��H��=*+��<g��}�������5T3=kwM�A`u�0�Xh������u�g��ֳ���� RG��"��ޔ��2:��H�ۧ�n�N�&^�k͜^�V�=ƒH���~�������bƌ��u8Q�W;���`Pc��j�J�8���6��ӧ��(Ք�=O�7�%�G?Z�tǷ������vմ�Az�+���3*q_E��ޑ���_Tp}���w��M�#$�'nq�{�?��Khİ��o���Oŷ݁�?:�e���W0����&�����WS��"�X~u��C43)vo�q��o ��2�Y�>�5�٦B�Q�G��\��t!�����$+��^a�껀;��o��\��^�˪^NƕhB��G�i��p>`x�h'>��5��V�$%���]f��G"�_z�/!��UҌ��c�1�S��:�9�9�z�x�*��ڶӜ�W�n��X|]:�Y�?R�����c8=A��'���^=)s������W�`%\�������ګ_�L���q��;n�3H{g8�t�CpGN��5�4�iTg�h��4�����T��c�)OL�)#��(6:zq��q�Jq�i�A��~t��zs����@1K�3��rZ0��R���NRH�>��B�:�aF�4����J�px��0����#<P�s�Fp ;��B>^���*'�T�* �z�7C�p����rL�H��Yw��F�^jʤ�߭K�C7%�P3��k3Q�B��J½��n��Z�Լ@�۷��Z���Jmu6�7\��fS���;�v#<����x����4�?RY[!����M��K٭O���xn�� E$'y#<~�E0�FMJ���Ӯk��c!�]�:\Z+�����ܑ$$("�Ϊx�zURX�y��W��S�����`0�ץq>"�g����GzW�^�ː;�k�$�����t�9��.��[�aW$E�w'�����,��J��m�g�cW��}�'9�j���}�H�64��"�aq��ZMS~r;f��3�26��"�Z0V-���(خS���A9�lT��C��Z�K��8f�S�jG$y河�+��<�g҉Wtg:�PA:<]z�Oݹs����-��;x���L�q������y�H�n����X����3�5,6I$;��H�P=}j�W��`�]�jY�D�`x�L�F1�y���3�?(q�#9��N�2�W���is���uS�N��Etg�6�*XD˞0D�q��.8����P���q`��&��fFq��b��*�q�4}�\�e44��b�⻃�Pv��ynFӁ�>՝LN#�#& )㚲�tH>���Z+q 3�i�OH8�]z�z���C�ґ��cET�nv�����6�[��Yb��͍��a�u++܉M%��5�)�$�R�jꏈ�>���2_�M�Hpy��ƺ���F�H�g��N�(�'v�1�ǪJɝ�����Ӽ֙��=sN��.$]�:��k��N\~�}|�j�i�D�#6�H�zJ��̤y|�u���(F /�Skzt-lF��5,B�+�Nǚj��Y>9#��cXW�ί�v��&5���$����~Q�3^[▽Kf��}�q����v�x�mY��8��W�f���8���q��u� ��Oj�֡���)����~������@�8�ڎ��y��:���-����5���O دS��h��r �&���\F7�&�f��(m��q_�g����E�(�G�9���.8�����sǥM��>ڸ����L'̀�`VXj[�ͳ4o��kKأ�ֽ��E�f���[9�����+-u>���5Lj�j-Pԓ=%���pF+3U�����;���ˁ�}k���s�.}+Ŕ*a�f����"`ύ�� s^}����I��5�f������Ҹ�h ſv:���_Q�g��䩱�����hs�n�k���z�(9�Ϣ�{��cw$�����9�zU�S��DqV$�Wɦ<#g�ac�O_�FLgcֹT��>��(dp:WI��T>����!�`w���7�k�ǻ�\M�\����Z9-��8�P�?�8�6�9��˕������z� jp9$z�z�$d ڝf�-.O^q�N�N�'����q� zt��� w0ʐ?Zkd�~E<Gk�d�0��'SS��0�)��n��Sf�H��?�+��p1JpW9��+�8�5&+�(�w��X�Ύ�]Wˀr9�Q\*�d3�kHJ���QTu�ڸ=N���PrQ�:t�9�mլ<��h ���x�@�ؿ�2G��1��婪3�Z��QL�+3�El[�,H@��5��Oe6�`<�����Al7:����3�� Q1]�4��B�1�V|����+����@�Ցq�W ^�O�ֹ��*�"���z�$)"� wr����˼?�O��A?J�t�P2�<t�ί��)Y��gC���Tn>� c�"��\�$�8��Y��j��3�իg���JVP���b�MŁ��!Вh�Ju�:�g�Ll�\$��?½���HOJ�5�-r�����9��;Κ�<1�e��p@�=֭i�]ZbH��Oc]���ّ8�}��'I.3��~_�{��C����4t-sj*H�Z��\�Ͼs^FӲLL@�rW������K{�r�t'���dʺ|��8��F��,�G u�kf���`ѹ�k�<#�n�S���U�L0�9�_���aj^:X�R����6����������:����9��pEj�j�@��k�����Jޝ�7�B��w=2 �p0rje!��\���$�p�սevcp�+��9���i�'��Γ��w8$�}CpR�C������PO\W�Y�N�= &vc�u(��������������x��zӗ;� h�~(^��s�9-�t�})q��� �=�*7d�t��ڀw<gօ�*E���K�r)�ׯ�B�8����`s�j�4��l��Sߎ��&Q��E,�8B��(?0��^(�M�./���TnuR}+SԕA篽sZο�+I���y�iǩ^�]���X@�o�Y7��F��w�Q[�^`9뻥p~&��go�~�J��f��*4g'd�h�|L�ϙ��[ƐF 2��Ϟ!��q0+j���W���Y�c��[���U���H���_R[�}�/�6p+n��F�\'�>,�f[m�G�z��f��K+1�9�4?��\3�V��#���w��.>#ks�E��i9ϵz�O����^�ǽx(rT���A"I��5�f6����E�J�ZhhZ�sƤ09�tVw"H���|����i��;MF\I��CĶ��#$����k��!���9�ӹ� �h�d�����j��F?���u꺀rA⦐�eq� �6aF�yf�"\Z)O �gw�q�V�a�3��U��N�����0o�*T�=�Y�h���Ƞ�c�tW1�8�5�t����Z��%��rچ����X�W1�j��o�z�K�mqlJ� �ב��B��dfܘ|���b� ��݉U$� _�0[�l-�����R�����k�D:�ZNrK��[+�AB�c��vק�t�iF�q��z>�u,�����=k}v��Vɮ'�w��@#�t){���k�%��ݐ���c�9?�3���8�l�E�{�r�i�}��X��Y�+�� ̅b��'��aA�=�Gu!�3�z�T��f���nA8�W�����}��5(ϒ@�<�ڼ��Xd�e=HS���ۖь��� ��/�̗l�b2x�j�����Íޣ��Sr�$�z7����g�s_��J�M#�NL�۽j�2)F@2py�h�4e����ٮ�ĺ*^�ʩ�b���<#4ڇB@=��}�'E��&sNU��Ӧ�Ʋ�7�/���4�jK���1�f�iZ����l���H�Aqas �bG ǰ�:kR\�Ս��dt��}�<�N�dUKo ���Pͻ9#<T�U�v�L��zֽ��Ot��q�^]Yע���q����v��q�uZN���!q�����͍[Ϡ����0>��X�uZ��l��,���%p��i�l��j�B�pJ��]����>i4Ũۛ��R8��wX��=*��5m��zמkz��M�ry��+�/�U����o�MBp\�Gn�N��q]�F�w� ^�(\Nk�<;�:�p��^�<T������㚧��'͂_%��fA���l�9��W���A$g�#�W���yy��+��fr����8��a�w��� ��SW���9�f�Z��@+���ʅr1�q_3������W�s�����OLf���NFP<������(�eT�1[�0B�>j�iY.JZ i=�o;Z����5� ���wgBY@�����4x��%@f����l͜�@ ��j�2��&��WL�J�/��ov�S�9�^��?�p�g�k�|A���9��v����f���Dr�FX{}k�<� ��Ε��*����t�M.PG=�Q��9#'jw¹c�u=�b�R�� ����L�ղ��EMn' �X�ܣ��Wo�����T���ȯgF��3p? IX�A!�"�S���5&���FS�+�D����a��![6��g����a �Ñ�1Z�Lj����bj&�h�j� ��Ҭ �N �=j���Ƿ?��d��J�Bs�\����������՜����q\ƙv�A$�݂]�g<~5��1X�bq���Fűԏ\�Τ`֖��Up��i ��c㞾�.�Bx�uڤ�~�M��}+У]KC7w;�s�sLp6㌃�� ܞ�J~�#'��t:����@�݇�>��W��5���Ut���Lc�jGl���H��q�n)NphC����Uu :)c9��*��Q��G�<�kH�G�h�;��U�^xy�ѽ�8 w�[����8�>���F}MwS�Ԧ��ɞY}�1���8�k��z���C�?Qڽ�}2���������o�;N7DN�2ўC�j���0������!�u]́��+�ִ�$���*��aqo6���׳��E;��c�c�t-JM����d�v�����- d���J贽z)�A��k��ag 6�:SM�R��#�OV��v�:�ȻY�=sW�`Wp��\r�PS�=��k�d|p9���@�E2U�)+�T ����`{�h~j2�s��z<ц=�B��d��Q�t��J�����y`#��}�:}ki�$��n9 {���,���a��WS�J�N;��_G�͓����ws��3iΤƥs��u��@�Wrb�w��v�ۮӴ����y)�q�9��5�J1�G�@���=�D��B��I��s]-��ȣ���ҵ��0e9^�t��Þ'�R���k�1�$��uB�^��K;��������5�0�J����j�̠����j�Ua����p`3,V]S�z.�W�N�m$zn�~�Fs��� ��M��q�df�K}h4*w�Z�K+�U���ٟ=[+p���\N~���Ӏ���#�|��k����z�q�n�Z���9�8�'�u�a�w�s���Ȧocߵ#K��*\�M�(��I�I5��5��O�x�'��z�Ɠe�N��F�FO8���Q��Ug�W'?:��t��駅��k=��{UI�Pw�}��S<����D�������;i��ܼ�UA� ��5lCVm�܍�����x���|�/����x-���s�S�$��W�mj�Vu�H�L�[{j$���MSM �+��9�2n��wS��]#��ِ���8�yƱaq�$$���s^��i<�3�j��I���ۣLs]�~o�d\�G��� ��jf{�m���3�)�`{��q#�Oz��uc8�ҋC3�rq���t�0��#>��{w��H%'��ױ�%�i�O������k��u�i�&�OB��9n��ֺ��?��$sH��g�+\m�c�z����rI�*�(b):uct�_m8J�>��k��Z��H.Ar3���K���1�9�_�>����������� �����W��-�Gr����82t��W��_ ��OvZ3�hϨ枠��c�Z�7.��0ܽ1ھC �ʌ��#�:eN�����=1T儆 �$�*�6F~��m�=E{������ɾy_���[�)o�Q����o#o���~��Q�ę���N��f݁h`^�J ,0��^}�](�r����F=+ۤ���ث|�����f��D�I�z��xzPM[���oS��s\�9�����m�fh���~�c@�т1�*�ո�zB�q���r��)��N���?���h��5J�.���RDKgi���Я������*��p?�N�ʄ���*A�ۃKT��F�ZXXt���'�6?h�&����|�b���X�Ū�l�A'kL<� �il���.,��M��`�8��V�l�#�t��h�it�ĘBr��k���B��>��k���צ��s�4�,M�y���-�Q�]x��Ӽ�1�I��u2��J�X( ��/��1,3dg��'/f�=���v;֏M���z����?�^+�UW��}������/&52��W��kY������`2A��j0Ta^h��g�뗓��"�q������ܗѤ��Q��w���- ��b͒]Ku�֎��izX$;F0?N+��R��N(�����Y \� �>��n� 2�c���<��)��Px�qZ3�@�x��O�_�b2c���c��A�=a�D�p�����kp��}�8�ڼ�~#�JJy���:�Yz��t(��è�f���ا4�-����=�D�c�MyV��;�- ;��� �[Ԥ�Rds��1\��o�N�ϥ~��e��F�9kUg��'��YUߜ9�UUI$:����k���M����?A^��}z��H�F�#��_Z���.�k�} e���bF�f���6�<���3�mJ9"\���5Q�w����jќj{6t��,�<8t*���D-�g�+ϞK�y�|��3Z/p���$8�zWjʝF�!JIz�����ؓRh�0�[>`�5�<C{�6q���\����Kx��B{{��\'�R���"<�>�����U���y�����:�p����_¼���E��Bx�%�=�j�ֲ�o�\3��1]^�B��9\%Y[C���{�]���#;~u�h6֖� `��c���'U���s���<�£�5k����&p���W�b(V� tH��e�=��e�6ɀ�=j��$gۓ\�b��9�GZގ'\�q�_)����;��,�� �����rX)�Ìg;���6�{�ZbG/�r9F��-m���e`��Z�6��B�ڥ��2�b�ml�H��ּ�F/�IXm�����֯G��rjKXI�a��M ��"�y��m��$��+̗<s�V�0���[l�`���5T�J02��D���(����~*�PG9Ϯx�yg���G-n+��\c?�X��� �� L6x��"T~���d���`n3T�v>�m�yg���~�UBn,V��㩩���C��:���JF���ST�.%�p�I����r�=Ȫ��p�yǭ\����z]��d5a��@�zRH����=��$j=�{t�UsX���)�>=H��N;K;���Ts��]�nK�9�H0� �(��QQ�') �!�qX~ �l�zV�� �Q�ʤ��$�ʒ��r��>,���Rg�'�OP��Tl���J���OV�̥�A�zW�hSF\� ���Z�\&aNqT�F3��v�T ���Z<v�y�wd���7�er��\�'�G�y�� w��3�k�1�l�tc�P�H=y��D�3�$=y�&kY�9����rs��u^ԚX�ҼlV6扴d�Dr]2��s�=�f�j�b�j���R��.O^x5�2��e?C�J�@89�21�ӣ#�n�)!ܭ5�Ex_±�M(0,��tx�!��M�^TQiE�.yw��8��c�<�����uar�|�$�C�+��>9���\���8�� }3�W���S��e�2�5-O�q$%Y���AZȾ�g��(�r���x�óZH�VQ�XW��\eݱy�X��+�_W��*��j�:�IYnw?�[4�b�|q�z��mZ�sdu�:ׂ趍��wێ�u����4l��J��_;�e4�N���U �Q��l��I7�b��Uu�����8�NJ!������u�S�eW�G˃���O_ S��U�-O��;����\�?Z�%���zzUYo�G$ ���*Z���JLВ^5μ��ֱ�5^r?�R}Kg��J������맃���^*�dUY��N5�\�|��+�� ��}���q$#�;�eϩ�\j`��`��)�0x��a<�7�';��1�j� �O��j%��MA-ӑSW���J��jc�����T�����1֗�����:�rk�ɽM,W��<cFg#�U��B�~��#c=r+�RԤ��/��qǿ�~l��zԨp�u5���ƿ�T�`q\������n��v�Uo-ׁ�zW<��X��xω<=��¼�ľ� X������5�(2��'ڸ�hK e)�ڽ,�5�r�r��>|���6 ���עx��;w4)�W���|�W��}� Ѻg�8��'�J3��i�[�S��u�;�c�����j�y��S� �qK�8��W3'���]��Zϒ{�:�nl�h�C��y�g$��mXR9���'wg��h�^'�|��\E���_*N�O��_J�w��(��m��)��� �ֿ6�z��s�ŭW�7�Y�=ņ�'���W�q/��ӕ|��w�+��˒���g�FEބT#�8����^;ӵ�6;�k��]s���B��(e�&� �LF[[��#��u�M^"�jW�U{�PF�'�J׆���(z�^e�p������� � �vg2���f�6��֙n�eU�eNI�n������Ed][�10G�^S���ɤh��Z�λ��w4�>S�s�ެ����f0s�va��5nK���(�V;��zR!HAc�@�&��/���#$㯭g�z��DɁ��z��i��$f��]�m���`�Y�)<V����)��ÒA�+]��̹�$�V���t��ө�vl��1�G���Q[�ۀy�ޙ�K�4Y`pzg�kB�5�>��g*z�r��I���=����c[1�$�A�W��jv�Ԟ:�5��i�a*��C��t��>Te�Ы\�}[I3����:o�fK�\�p����z��8��%���䯯�\us�[�Si8$�__�ͩՏ�#)R��~���GA���_�-j�%������"��܂6���L��v�(�H�NN�<^�r+jp��Ԟ�Bђ��V=֟$��{���W����`)���5#i�� �g F1���ׯǓK+�J�Y���7�$�&3�z�V�[8ÉH�S�G���Ro �mD�|q�u x����h� bwdu��gVw�9��>郡��A;��$��V// ��v�ǎ3��/Cd�8�r�S� ���jZΫ�[fp3�5�<+w��F�$�b�Ά���A �&��SJ:��3�1��4w�T\)~2��rK}6�b�i�C�ּ�ⓧ%Ktw�o�9ltzo����7L�w��Kkr�F9���+cJ֡��#���a�!v�N��+�'��s>s�F=i7�ۜ6��:ֲ�&�2yoN���x��j�`���c��*�+B�3Z��^���bA���oE��q���c�*嘑�ʮ���6��5�:s���%ٜ���_�� U�����3��ji�3��u�>��J� ����54>��HWE|}�e�k�˳J�Vz�i�_t��ú����ı�������ҽ���7z^� +�����6�m$[���'�|� �~�ֳuM_O��d�UP�r�k��q���,��9����=O �g�%�֥%�(o�O&���z��Wh��������w�7���}����4��Qx��5��Cg]�Hu#���o��<eZVc�J���Y�[���"�#��T**vc֯[��#sԊҳ�v���dW�W�-�記�{DR�I�Mji�O$���ּvj���W,m�r��W�_)��ɒ-��c��SD� ���ui��|���+=��~Y��k΄��؉�P�)� ���3�9��5H9ws����M !]�GAMU�zzU��p�ҡ��A8�~�.I�3{��>������#��x�����<�{ԩ;�į�A�^��,[��ք鞣���s� ���V�wz�n�-���Zx����x����_�TB]�l��;ӕ6�h"��;�sm�@w��)8�{�&�r�c����Dب﵈ �LT�Sd�x�pj)�1��bm�G~9��U�5e�l=�>�Yd$��zR�(�����A�����U�܇s��'�zT��� ǧcP� ��� �8���]I�B$;���)�G���8�y���[�����6��M�9��'�ŗ�H�(�=3�ӊx=䓓�m4��̓�j��t՝[`��i�#��]��=8ǭTC�'� z�FY��+���6�ʜ�@q�ϭ}we��<Q�t�61�Fs��\o(ST�j�%E7̎[N��w��q���0[�o���\�����|�Gsx��kpIU��dd���EJ3���tÙ-���Y�P40�y�Sh�&�W��+�z����XX�`��ֹ��I����Z7Z�t�9狄]��t�R9C8 �5�V\�:W���w�u���1685����]�}���e��J�:)�SWF�g�9*r)���4F ����64' cp��*�VE�^{~v���naӡ��K�[�x�C��6���^k���y"�ֽ�U$è��[N��{�p�ڔe�.*[�;�C>�>��;�_��)�m[���N�ڽOž�YT+�Ha�W���E����`�OB~W��5�\U*�_��e �3m�o-/L���� 9� w��M5��pp3\"Z��+)a���W �H�hF=�����U'$�(���ެ6�1��ԙ�����ENrǯ�=b�����j�- ��z�į������I�D������+͝j�~�7QKb#���L9jG�{f�lf��h`�zG�#ڤ�<�>���!PI�~�"�#ڜ�v������ �9��*�J���}钐W�+F#>��Ef��@��s�<+>Q��'�i�R#��V��~�ZDГ��R��P�\TA��"�Q��i�9<v�M�H�yhp;q�V��������ny�=�����Ұ�.b��yf��,�����\��,%S8��4���NNzW/� xbW Ҟ_=v4�e��>��\ZJŇ��IT� �'�z�?xy][�Z��ok+���.�ሊ�S��lr�0~�� ��A�:�&W#�G���^���b�2���>���N>��>�i��{��Vd�*H���I$���fMjT���u�v��H�ɬ}B���=�ֽ���_mK? �{�x3RI�������= }�#�&��8�\��� vé���H�gj��P�����q�i��C�s^N<�r\�:?�+�TþW�OֽR���E ���{3y���k�٫����K֥[{�~c����_XxG�V���/�� b�+��Y5o���{�%����v�kI���N�_��R��Y�S�c[�ƛ�2,؎���c�ʥJ�ȭ�)EsCX2�Q?S�Ԭ�"!�L�]��U���s�[r;�=k/R� �A�;�i��Y��ި��Z2���:�+\!l��i�.�lUdF��%kc���y� �˅H�3��v*ج]x���N��ct"�.�h�^Q��E�K�R���3�0��^�m�Z�[y�c��V>��-?N��2(^�M},��eH)c+Z=�����N�֦.��}>�>}@����Ȯ���ak*�5)�i�6������nf�L�E��ML��7N*��6�j�y�'�i���U2��)����_��qP��Gp؍�p:�+�f���v:QN����'�b�/t���e��Q����S0$|�?��BZ���=�J�V�]�]5<�V��A�o���܊��t����ك �W��^���y�S+������ ����:ׯG4��}Edx��Y6�NO´��V2[��`dq�����W9�7���Y�h1y�X�0;/z�qJ[hO�L�/e�Kb�9�Bs�Z�|]����73!<�-�}oƽZ}��y��r�����=�gR�H�^�=�eI$sT����Ûhɚ�F���}��� xb�5D�C��<�+��7iW�u�:M�i��xW�iV�;�ԅ��;��v��p�+�!������-v��2�)�v��Rh�.�L!E���$��Gy^h���q���M�|C�9��.-��1U�?�r6�/��;��/R2rK)��8GMJU*%�4�މE������?-ʎ�m'@�� ҩdS������;�=�i#������^���"EhX��G�7�ʂr�f��q���$�{�����%�:��y����K�f�e8;pzW#��Z�fF�#Pr3����*�xע�9$�-f_�&p 2� �OS���m.�9Yn6�쫜V���\��Gl�;�5q0�[�F!�1��]��"�l-�Б�sUgҿz0��$֦�c(E'�炼 䯉��Y�:��3Y�/`<��y��h�k�-ё�g�,�HDM+:�����=�Pv =}*���ob��������x���k��m�~&�m7EK^[�+i!(�f���5f d�q�\8�ƽk���%�^@b��qO��B��AVs�9�:���w�כI�q��j�������ۦ%��x�Gb�rR�@'��˟֏���s�j=�D<�=*��|��B[���y;�z��Q�#�8?Qڤ�������iYϕ��:;U$ �B��i��9+���H#2��>�b�!C8��З@#��AS�|TWH�,3��B����/��L�c4���=�8PNx<S�)�ps��( ��s���3��#�j���ЌDž���<_6W?_J��I�jI�� �'�OjҜ�����:��J��Q�@�m�cJ�)N�k@��b ���B��H�h�2 <w�I��S�f2 :�嘳�q������� �2�G�I�!��(AQB�yS�g�sPI!B����H!�'�]�z丗q�,?���oC�j��$g9��1#�zWe�"�6���q���D#=�Zb��rq�s�D�KV���b˔ ��q֡\��z�IA8baRyJ�l���r��&G �I�?J�l�6����21��@y*Jt�3�~��#�0I8�(�5˵�''9\���^��e��j�卼�C����a1�p��Tg(��3�CFԾы�gO*y�� xgK��gk<H'ֽ�ƾ�XT�I�A�^emuu�j��Kn��Y�7�+�h��Ҵ4h�xhBWz�Əl��@ٷ.s���/0��F�2;f���� ��`#�@==���.���6��_Z��Щ* w��9.g�GMiU�d�u�[J ����:W���X�O�B�QI��hxG����=x���TUD_�\ܧ�$t�)�n{���Ƴ�j�@GE ���W �����Λ��4ܶ���F�Y� �@���pv�l����������+�&�I��"�_xr���`�u���r8�j�qt�F+J]9y���{ ʃ �u���� �����S�㸉����%�h�+ͭr��Ͻ{q�NQI����I���t�J�lE�y^M/nO�yΚD\��ZV��9��)�� ��V2�a�:?¢u�ޭH0{��U�<������`�sLb���֙,�!*y��N�F���k �Hv4g�D'$q�N�x��s����R֝e�7˜ܱ���gp���rra8��G0��VY*O"��Ť����3��s�Z��teR������{4�길s����x�vgrC�qڪ���8�_��W)���yrQ��c�>��3��J��4jP���F��IN<�P�G�i�N}=ix���=�4��)$��u�� �Fр8�{��@Y@ ?�X����H����8�;U�.�c�J�Y���Ȥ~5y�=���g�q�����l�u�0c�ּ��������Bx�Ұu�$H� y�;W,=�\�٪��g�~+����##���a�&;����g��ާ|Y8����L��G+�k�r�����2�B���IەZ�܌߮{V��g5��Y1����c$�ǥ}$$���9'>���j���q�)�O֔I�#�j�N��٫3Q�ާ����{d�����Ԍ�Y�� ���]�q-h�*�[����[iVH����YN=���?g���z5�O�'f�!c�'���x�֜��8�����z ��.�f�wG���C ka�x���i��ZtN���"���<���A��-l����/�_��j)I%ƘXn��c����O��?���n�.��Xr3ʟB=k�<��p��_�0�ߪ_�?�~�ZX��%�����2c�)$un���w��k[MN�<x9���wTҦ�r�IL�R�CG�IsE����sW�� h��5CH��J���� �U�p�XH@0:sTntԹ�������^Lq5p�o ѷ*j�n���cme+!#��QX'MIZ�F��gl�O�J���̅�aЎ����$�a�;X ��fu1�1�|��F���KA��فө5�y�=���aOr+����#<�Q �z�=��u��<�s�s����*t#V+Fs,R��^��w]���eF���s�V��l��''���Wa�x�Z�+j,����r�{ ��|1oyڅ�L�����W*� �vo���v����=���#��+�3+BB�'�� \h�r�h��@���k�U�HHَ;����0s��]�n�c@�kx��xUV�xc���V�\�hN�98*娎4 ��Ҹ-(���I4Q�8�����ǻ����S=�i s��=ˋ~�#���[����� ͍�px��Si��%��=��m��FT��s�V,�� f�R��ؖr�%�#�/].��)�E��l��Gp��+���e�<�J��% ��~c�ZΥV������˿�-32��zUV�-�f � vSG��������$����\�9�5���Rl89��W%�6�5wH�d$nPz��t��Cg`�GEI�O�[�Ԝl�s6�ɤ;Af�N8�Zi�b%��V����}9���Bs�+*rv�fLzXvɄ*����H�Bb�,�Dl�' �a����Xc���M��pԥ ����<p�Z�G���Ҧ�v��h�b�𡐮�c����>V��C&���}��S�L0�ɩhc�Gz7��p��js��P�+M #�E��}���0G�e�wjI`䍀��s\��oI�T�eo�� [gm�X�ϭ8�Rzc؊��4���<`���^��{(?{̗$��z�����Ғ4@�scֹ�s�_ض�MA����+��G����Q4�2!����溨����Px����[E�gU�z��� >ؙ�X��e5ok�|V[C!�^Q������|<�u5C�j3̧ƿ"7��z�'������Z�M�����B��dQF|�f�����c���/,�I�,8�fiӴ�h�V��:���I��R�� ^@��ul$� 1~�j謗B&��~u;\ �P?¡��<䢶\ K���{f��$���1����j��N�@�灊Զ���ԃQ]���e�OOJ�kj�bp� �jq_h�'�zU��*��c�@�Q<K ��L���>��A�bi�̅���4���B}GL��Dȯ'�psɥ'���z�AS��p9��?ҩ:���G�K^}�uS��{?-wO�cP��ё��U�%8�[�5�?PhsR�#�@��4�����q֧�Dю0Gh�kv=�.T���Q�xw�Ӄ��@�zw��BG=��Nq�9�JQz�UQ��?p ��?Ҡ�\��j�Z7��!�3�vЫ%����F˓�G�G7+�A4�0�G!��Z��B�ƽ8��d�i-�;`����8-�Ԧ2 ��8�;����J�O[H����ңe�/��>H�9�}i��W���i�,$>}0i�G'�1�?C����*Ϟ��08����.�= �²�b�F1���@�b�B�E��� �����09�Z��(�*z�ލyҒ���ՙ��\�W�c�#c8r8a]�/tōLL�O8�H���/����f��W�{����J������V�~[�r����~$ 2�Ŋ2m!Nz���!�/��!���J���M_��'��gf��mf�k��=����"�s����nS����P|���F�Gͥ�_-n���]�<���r9�^�m�[�`;�^I����V�DvEI����K�!w3���^.[�Vl�-��R��� ��*g%c ��ןi�#\,bSϩ�]���C{�@n�Z�BQE&_��7^}(x��F;3M�2n��>9�������Q���# ���zܽ�2��:}Mo�+�~Y�U�C(%T|�J��pad�beʀ:���^8i.$�@��x��j��,0��@I'�OҘ.<���F�� �Y��d�09=�P�)��Z��3n�z��X}�X�)q���k����FK���˞�umb-�!c���p*���!���{ܴ1���Bۊ�k��-��8!P���S[��HYpy������R��+�w�_C���Nm6>N�n�8<`��� �\P��}Ȭ��oݼ|��1t5��A$�0:��W���#-���'uv�C�ߕ Е��� ty��V�Ϊ���y�j�s����j��7�u{x<ƶ0�8vC��5�e�����$�k��%J ��g�[��� ݼ���dY_����^O?����n.w��Է��_R����Z�V�W��:��Tz<res�=j\�ǽai:�H2y���pW=�\Q��)��'�8$�I%�\qL�`Sѫh�L� �'9�ޥ��b ��L@H�~�4i�Z�:�4 �go�F���ZU��zƐ���8��Eӑ�I�W �����w��z��Q�Va���4�1N��xu�W%{t�z{��|��[$�F��¥���'c���Spf��p�k˵�&{)\m�ӎ+�ohQJ���x��ƾ��m��cӥ{y^y�/gXs�����f03�5�� pk��g��l'mѐ��K��V#�y�)�.�W<��ޕ�#�SM��G48�=1�V��2H��$j�V$c��g<���j�u��5JMl'��-�.H�kc��"ռ�-��r���ȿ�O�����OQX���&p���{/�EӨ��f3�h������w��x�� ��a��bH�������X���Y�#=~������������x�RX�������R����|k8�BBC|N����ߥ|6c�x��r��>�=�O�GE,}O�WݗF}w�i3X]����*��E��Ñ��m�C��Q�o2L�r�sY�6�d;��2y�Q�+��X�>�ь'i�?�12�=��P�xI��N���n�$ �X�S)dSt'����'���itc���@�y�]�����f�Q֚��7˓�nq���T��s|������"�K�4:�*¹8����-Fu_*�} P����3��څ���l�2�ؽ����Dž>!��#�Iac�����_X�n���\��Kd�ǯ�����e�o���Ť�Q"�I 9l�E}�_SK ��Sz;�v�ʧ-�<���ݽ��WJ��i�vxj��WͶ�����H�@�֪�6�;i����z܍uxm�9*��^�,l��h�!�=3^N?6���B\˪kF����]���|<���ң��$�W�'��ݗt��>��i܄U��1�q��j��"Ep#U�X���W��Y�u5Dp$KB�{��ķ���sY���B8�_j�k���"L�Om�2��Y��%�,��[�2s����ȹ,�V��l�<,˅��"���ě��:t��Ӱ�жoC�.T�s�S.��С�� UYeh�ס��-Yng�3����m4�[���eg�d䓃K{|��j+1=��U+I0%��z� J�'�]A2���hs��lV���]d,d��{U��-�N�#c���X� ���6����ܕ����R�`�^�����x�� '��,ac?9%{��rK1\aOC���l�JI�@����Q��Q�E��t���l�"�d�$�5�I���H��"�G���t��+��jd���ꧭU�$pŎ���jX�o-�� �9�4��!�sS����B5S7�@�S^�t�6<���3 �Z��i!WpAlk2�D��,hZX� 7<�]���Ju�P ��z�7p�Xt �V�������ϧJ�é�Z���t�Ae"\��=}��|'��]ޛYeOF|g7Nk��;�+��e���ۏ)T�ETR��x?�_�R�D���E+����2BŃz���W�uN�[4 �y�o�M/�����_��V�9S����yh�-��sC�3�.�����l��K�I"w���k��<=ii5�B��rۺY�&x/eU[�=�WC(ӌd�5��� ��FA#�Sȉ�"��y��cV��@f�o+8A�X�ص��$'�p��׃V�t����kԺH�9����H�l���k~)�t˜�^E�k��'�m�����L�-���o��1��/goA9�;�Ԥ�[��<W3u�KI��t�p@k��Ǟ9���������1Z��w� ���'>Zb���J8t卨��wr%M��ä�����{g�j]���q�;��c���Ö�� d!~�3d���[Y��q>��+�ӣ�h�2̸��p���#H�,q�Ҥ��W! �=A�r�43+�` ݿ �P��B� #�Hw��<V{بfdl�:��v���@�d1Q�6�2 D����%V�W#�����nBwթj�Q+"��pGze�0K�@��GsZs$��mw=�2� Oz``�B3�j_=B4X�G�&�� +IQ|��0�r[��P;U�yc��y"��X�ц�u�-�*�br8j�� �̤�1烎��fU��=�%�9�,a�W�XX7Dh9����(�.:� �kr��y���H����z�T �\������}QMɥt%�a���ޡc!L�~OJ�ei3m�i����Lq�=�]*����&��{�ќ���֠�)$�d1�S�ӀW�+ХZ2Vd5f0Jd����Xd�(=�4���أ'���SԈF%9���>��'��N����"�Ov4��.�8��n�q��%(ى&GU �9����8#�Rf��(lg��M 0Gj�s_�:.r����K�r�w��D��V�=�Ւ��g�瞕��ut#ʿho��Fk�X��n|� ����z�o��j�[Xܟ.T�H'�}1_N�ZJ]F�����5�_>#�ږ�����Ὀ���s*P��՝����9�ӓ�<~h�O ��6���6R�H��8�j?�7)V���>��E���q������5*´��n���H�#�ڽ�O��J3���i�*w����A�C��:��u@v�ܙ������?���7��3��Ҹ�v��]Z[;g(\p:s���I��+8���U��-���SJ�^%ZO�"��sj��zׂ�x��*)������4j`�o"�};M�����P{qڴ4�z�y�-09��k⤣Q�SZ��sE�kHj�[��1�D�C2 ��8����O9�L^��ڽӢ�g>��I�!�q[Z�.�q��W�[2K�I8�[ԃ汊:k;�p �;�ՠ��z�%�_*���GJش��;9隨Yn��v����EY�<�J���dA�:u&��9"��Z�S���<Q[��ٕq����/���R3�#�VY�$`��;�P��c��=�kԩ�ל=������SO���|��{Ka���~�z<_�{����(�_gNT��{ݥ������*E`(g�� ����r`����N�`��%)?}+ߡ�¤ꤖ���zZ�:��B�He1�H��Z�:��z4�{Z]X��n68��߇j�6�a�����C�; 9��b�� �,�g~�Zۇ+�%��;]hן�qѨ���'������)��D�U��vA9�u�:���5�ʓ�@�z��?<3���h���qm���`nn��y��:]�Z�V���$�h6�����05�R�f���x ֵ��i�鎕]��<&p9Vt�B;�X���_ ��+Gs��:tUe?��O��r{�5���tH ��8�Yz�]ɧ��2��������d�[�Ոr3�s�U���±t>8�+�ޠ�{Ӊ�Һ��DXcI�g�K�s��"���I#aA�=�,��,4�@늭5�<qQ� ��Up��'�L�\i�A/s�Y:Ɛ%��zr+I$d#8�jF�p��< �8�jRmU�o %�,�B㌊��>kVy"^�r+�Mv��V;zW����$��ߗfu0sP��M%Qj|�so$-�R�8 �s���N��v� ;k�5n-ܬ�Þ�b�@��)ׂ��զ�ƹÞ����:�*���0�5$3�<�_+0RM��7/�lv�m^�F�ҷU��1�_Zk���US���MJ*j����)�Y~�Q���s^��1I��\iQ�w�^�sh�`%ѝ����_�{s��<��#0 䖒�{z��j����$�<e�Ũiwq\E*�VF�3�#���z��|Nj�s�^l_2�9�ܞ��>�>�� ��7��/g_)z�~y�`�����Wu��7p��`����H�k���1����/���>&h� �X��A���@�3��=�w�\B"�l}�G#��_�P�K���gZ�Mt���fz�7���)j����i��t5��[�m��A$|����y�c�ȸé���Y��Gn�n�x���x��ԡ.]≋}NO��N�8��ݹ$�ǿ5j�kg���!!~V@���qt�OH���Y�\����iڎ��g7�P�� G*;�k[� 2�ܸ/����*��$v�����;S���+��3pP���+i�Q2FB��J˒Uڕ{m绸���ZcZ��t�ev�q�I��k�xO����ʼ�����:�����I��6��a�\�� B݀���6C��e:|������L�^��;�jz��{ci2��_�9?C�T`�4��E��oTH�w��U���M?D�*x�9��v�k݃)��m���Ğ�o����KT!���]��`8�Z� ��/��.��w��x�w�[����[�k�/����V�i����6�����p�����V����o��h�6��?u��߽z�н����%G$�_=��U�Ut�h��=� cQI^$֓��pf(r~@8?�"�!��S�b*��)-�C���?N��۬k+��9A��i�2I_B�Z��9v���_J��e*����*cF�2q��*�ݫE ��8<u�Q�5�����Uv�?U�X�ћv�A��T(e��8�G���;��4�����ΩM5il��V`_BU��M�0L���:U���a��2+8�=sWeӘZ�yc�H��#ZjK`�+�n���p��4�D�#�70"�Ոj�8db;��+��ڟ�e45U���r k<�Wv���_�W/\�61���:pj��,"�q�� �5�6������-gP�hbP����TqZ�-h�mtkZ[��h�l��;�Ѿ�� 4��9-���2���;�y�ߋ<?kq9��8�����+�x�O kͤ�e.�[�]��~�(��<1ޡo�eC0�Z�� �V�S�U�d2��WA����/�XZ��c4V���ku$�L�l<g��~m�%���gҸ����:㬷�]L[�Ff@CZz�ͧ�çi�|�j6��Ib>�����+}KZ�ݵ{��}�~u�ڶU焅��J_e����-y�W��/-b}^��)B�2��[kIs�9���= y���ij�^[��(�4en�l�O�I��\]�WO��D�a���=�� �8T��a���z_R���Q٣o�ʪJ�d���jƏrQLs($wR��k*�f�⥷��7�DPzW��ۤ�&��ƥ�7��&De'<��>%�TԼ%t|7*�z���h��譮QgU$�l��$Ur�яZ�2l�xi�R��J�E+�?.�ʬn����|C�/��4�IJ뺋��1�X��a��/O�^��_�~��I6��;��?��j��wK���H���sܙn'��N��Q��c��n����UFr���k�����vV�IZ�O�ȚtaM]��rO�z~���т8�^ X��G�?x��a�y���/�W-oi:�>��Ͽ^��.���=m�m_b7~=������S�5�c�h�����-D�FY�^��+������\��l�i�mD�$��ph~'�D���U��A#�<W�� �s}�x���V۱�Ȥ���֘��-��n�G:�"���B2�'����^��K9�MJ�Kq/�-����Z2η�a��RO>ճ�H��;2�عB1��x����o�i�n���T�H烏C^m,� �_�*JkxK}<�c�� �-n��-3�K��H㚷4~dr�˔q�z�t����WV�� G~+R�a�R͕!s�L�ׄ��:�Y�͟r���+yM�������MAB1��?�I��#�8a��95^K��Ao��1��K}ll�y����>��1&/8�^�o&�[1Glg��²�o�}Am�Trp���UүU'l.T�4�b*�'�*+��[��u8��k����afG_�IɮZ��2��A�D�ݗ�����a*VNi�n�/�m�s��b��3��VfhR����}}���qey����C.��`�o�8�_� �"9��/3�R)bp�hM)�__'�����B��B@q�QKi2G8�� %��K� }���k9���@FNq�@Ὠ�Q�o�FK�B�L� ��ױ�-\E�0���3i��1�����o ��D�u�k�[uCL��N\�����ԟh�N�Q�~~�Ka$ѥ�!I��a�5^X�N�����W �Z'�h."ap���^�hܫ�iT~�CU�����8�g�ǟ�֟E{'A���uG�d�%�I�#������F�2}�>�~�G�9V�9�j�#�s�=k����c=��˵�P ��Z(� ]��"��t��8���I���gg�J�NIj&6kL#I���i�Qٱ��6��qZXK$/�`Y�C-�߱�X�Wv�^e˗�x���8<�m�R������Ef ���l�t�ks�{ҩTIY�+���gv��&�n�X6|>���Y��v2ь����J��;u�ڡH��3� ��"����� 4�A�=ј��mbIl�aI����;7D���㚞���6 c'��;�M��܍�����MsJu\��ߨլs�-ѧ�_�L�6VE�:q\��"W���� 8ʨ���^���e��io�D���#+� q���=k��2��N)�QТ�,�Y�*;��R?�\�S�����Ck9AL�ՙ�E���T������Q��JòG�\�u9ǥs����9g-t����ҡ�����]�Z��28]J�U��H�x�� ���#��=k�����p���^-dg=x�N] �����*�QSt`�M%�������]���`U.d�f{)8������H��WCn0�G,.sE��~�㹭�� ՟�$�B�����V��x��M����>T)©��5��>[�S��y�^Ev��\f#�6��o�ʖ�'̖�����Ia����_��D�YȊS��p m]x-��n����.Gj������0[ɤ��ۇ���Ϩ#�W�uqiקd��w�}���B��.��b���E�FrMZ�s�k~�]gQ�͉lQ����5�������!Ӣ�Im�D�9*���Wq��V�N�x.A��e*~�ن��,�a1��To���:lcR������I�x_��:{�.�l�\�v���W�����֟�<�!q��f���w���]=ũy���6���O�ɚ��wW���I c�]�J�S�'�+�vv'.UT�ͷ�W��o����K������b��"�`���!�Yu�X$ #ȣ���v����GJ�b�,Sl�9>T�#���vI]�~������T��jo��[���)P�e�YVw� �H���n�՝4��i s�懛�9�����*�U��o���O��s*�b�2�Q��)��&��jn�ڣ�7f�g� ���V#�ld)���L��횱�M�q�0*���qڈ������<����� ;JukZ+X����S�z{ �Q�%���R��j�w�W���y����I!@ǽK���se���� ���� ����f��-�3ǭ}Oqf�G�Q��s"��s�@ ��*1X �Qw]�TԴ��lj�9u��0�"N8��'�"���>!�+����^)��Md�������e��,T--$s��������x�QR��N�b��H���T|�G�^�q�����/�FA9�M>r� �j��~_����=�VOsx���u�v$*�GL��.�%%w`q^�so�w/8�O�D�zW�CF�u|�+�r��C��rWE������$�?;�c_r~ʟ����8m�7����*HN"�>�OC���3_%&�l�T�i#+ �������$���������%��5�o�����Gu��9��-e�ayeO"S�Iʧ|�u��`�堊v�|J���x��/� �����M�"�a� �<��~�����;Ho�$���|I�|��9w�z�{VKˀ��rݸ���v~�z�G������Fu�՝�Bt泸l������y!��H���J�CD2=�h�7F@�B"�� �X�;q�O�R �L����(TB�U�wc��J6�[����� 霆�� 'DmSC����Z�?����xz��U�� G�r�4�r.&��v�ϥt�[��-"�Iן���dq����X�&�m�.��B5��Vh�k�GM���?J��x�~��?�E6s_���t�쥺7R��l���Vg8i���^A����G�m9>�%ׯ��M�܊#�����������{-��x���ca�1%�}wJj�`�?���[R6��_��E�� ~�$e�{W�`�T���H%t��j�oF��~G<��a._D|��|<���^�/�g�Y�ڀ�"�^��^����b���`��.� $P���b�x�b����������a��]��д�R҃����M�:�Z|9��BO�Eu˫�ic{�=X���냱�rFW#���b�ڼai 4䮔Z�/V�{���~f4�уr�o���P���i��W[[@a]���e�by����W���[�Y �ܳ� y5����'x3��-�hڍό�L�^�([H�����d�=9�;ms���]d�S�,�XiWH����̌�ؓ�ڸh�LJ�������=m��/3I��,U���>���Ή���Zkq�R�B*�%@��z_"Y/��^䑹�����*����^�m-o��X���KL�FN[��zχ�G���s����o��ps_+��P�Y�����\d�S{�\�; U�#F���z՛;��i�o0�"Sz��Q���f���)�\)�u@[���w릺xg��A�(,�|��ָm(��b�cma����veH���__ґ�G��;'��ܼ}��O�����hd�&��G�K�H�p��F�w^u�;�H@�-xH��]�f�� v�J�ZN ��;T��"�7&KQ�1D��t���o�L�J�]��YO��'���.ʤ�~i,�vqQ&企�Ihm&������8������sŞ*{"�����fD�@���� ��BӮJxa��(��&ID�cW���;��{X<Ƶ6�5x�f�����3p��]�.x�A����M���R�@��?�� �NsZ>��� ;�ڏ�&�A;fH����=��J�Q��~��Q��vzv��e& ���]��'Ҽ��ƾ2�ĺ�����V������o�S���W�a�⾖�g�b0|�%ӷٽ��-].��u�����ŢxP�h>�<�咅Gȸ�< �Þ7�<E�O� ol���G�q�8��1ֲ����F�vm�їhFE �ێ+�����xB]?C��U%s$���B�'9F@��y0p�^ӝ�S�;�g��n�F�3��e�����{)�i��O8��}j���E��1r,x"C�k�?fmg^֧��t?���e�B�4v�'�zٵ��o��Y!��x�;)�ڼl������SH�eq�6B�̆4S�n#-�=��V��Z^ImkTۜm�֛-�=��d��A�60�2q�jh��Sky2�p�nT�s݇q^=�����jCqe$rY�$�d��'�皒mj��\y����d���"(�$8b���+ۜU�9���e$[�m B�!%�N1��i�i6 �{��k�ib��b���3��ȱJ�\)�2q�P���iա��$XZ$��è4Zj���-��:a�����)�8I5x�����^K�Gez���Ź������kSͥ�E�A=����{�{�-�$}��ОĞ����j��^,ik8�R��-���bgJΒ����Wg��)Eu>_���w�ZO��u�hwr��!|ϳ=��z'�~x7@�ǫ}�Ry���I��Np+�=:�][v{[�B0VU ����_"�V��-��ݥ��u�>��0G�5��h�Q�eJik���-$�>��Nqm�����m.�3�Ζ\F�`>Z��#����x��~�f��w�������|�����/�O�u� Χ~�0��d�$�Ϛ��������|_���y%^m��O}���T��7����אJu����y���3\���MZ�i��%,~_�]�X��'�^�O���={�O;0#2�)R�ڽ��گ��j�Z�ڵ��ƙ7�nu�?��f� /ĺ6�f�C�,5(�|��8QȪ�gUp)��t��RN�����j;�|�]>��Z����`�6<���d�-���op�Y\?�k��F����M�of�C[���H�*SӚ�� �/Ҧ�s�[� �wh�\�pG_��+楆��j��g�����7{��K4��U]�kn�L��߇� �X��)�M�$���������.�'��6�ď$�<�,W�h�a���k����u��v���#�cǠ�|^�Z��kfm'����W������I�����V|p?3^1�4�=ֱ�]x����%��֗.U��^��W��@�lL�F ��s�"�q���S��hMD��ռ�^�=:Wv[�a��*���v����W�~��N�sSOn��.��қ{��H�IY��#�����S��K�& �4� �7jK�ۂA?�h�� �����ڶ�ckq���D$0zz���s�|�\^Y�"�K{k!�B�a��l(�)�yi��->f�����lL��H�eۿ�1��o��Ɵ4�Oğd����ɍcm�����Q���їLmJ�p�g<W�]k:������� ��iV("�r� ?(f��ڽF�������xn�@>����ܜ�;V��T�B�6|��8��I�j�+�J|�N���Qs,v�[*�1���W`����lL�*��W�jz���i7����˵�.�|�� �����4�Y��Y������ ��x%N�e�Nj�{7�6�U;Ǫ�.f��a�4r#���|qQ�mm2�����UkSHot�G�p��Z�ep�G�c�,�Yv��}�ϔ�Q[f^�E{��k$L�7F��Y�,�yf��A��V5���WgF �dϖv{)�11�q�� t䖣E�{h� ���$<`�~ƣ�l�-?u:�bx�'�X[�Ɯ�G+�'��J}��-��^���cNU}�[s�kU�z���ZPȒ�J�$q��S�� Ў#rzU�R��[�w�$����k ���&³��S�Ӻ�VM��lnX��ڠ���)��)/�#��y��w�ޥ�P���YT����t+��[!�ږ仂�-�A�wƪǨ�Ӵ(ꧮ 6�UJp��2z�. ��X�Q�7^��mx�w�!�d�u�h?{�P�,����R�ǯZd�y*#�0RF%�*�<��#�R�L�ֲJJ��-�-m��G�_���k{�m�"m9QLO��\Π1���{~:�"�]]���oL�k�ݻ��E�Tt8�9�zE�`����jh��3�2����zT� V����Ϳ�ʔ��+�s,d�T�QՇ_ǡ�-<��]���֭9!�d���0��c��� oen�Ky2'd�늇~� 4G�:}��t� �>�W?�4=�-�o�8<��j<M�5�$�B�~wn��/�l�c�Y�n)��y�ש��NMID�O��#������V���L *��ZR�S@N_�u�r����3g8 �F���� ���>��9��2*{���I6_����!�9$���r�p:Sm��0���]��J�����O#��9��R�s�d�1%H�e��i�-n��0���Q�W����G���j(~��ǭy��#��ϵV����H8���y���#k=u�s��F�M�0�$��j^%7�m�&���Pk:��+���\>�ه8��%��̊���Px�c�ZЊ�F[�����31n.�l�|���#���I-��|��@Mqèj����O^+���g��9X���jK���q������Ie,�"(�9�>��L�-�h�M���o��Bn��<�I���*L�ԃ�z���omtԆU��W�ޯ/�<el��kLݶ��Y��x�S��[�z�a,]+�5�o�}�t�g�nt_<P�r�2�W�O���=�Y1��aE��ٖK�y<�һ� �KaH�AXέU.iue(�m&^~qOI@`0F Md�#'��*�V$�y5�����YE��3����7<�������cW<�O�85� vFm�T��p0:{R�t8�|F���=)�>H����|J���h�p0�q�ML9��涁�{h#���9a�zS�9P;��K�ݪ�q q��[U*N��O �~��.8����V�=�h�L�Z0~��9�LW��#v88�_�6ߙG<��D�tW)��r��6��;IB���o�/�k4���OOz�MZ��r$B1���`��Oݎ�q�x'�?��5�X�#��5��y�%C���fӌ*�MϟD�6�j��[�ǥ7Ěd�7��A8�P;*�_e�⤏6�Y� x�qQe뚬.�B*6�8'#�����*�4D���W���~c�����{�mP��>l����/{R'Y��Gy���q�+���Hk�������<?#b{~b��'��zn��z��B�;k-cvl$�v#%��ҡ���%�֏��^:�gt�~��:�>&xN/�7W�P� �<���y���+C7V��F�� 4k VePO;���8�~c��~x�xb�`@��rL7�甑{�~�������'�~0�bݢO�m��.������r���W�� ��j��F�p��5;�����p���cf�/��#[;Ֆ���PD��E/�}�'��=1�U�|�Aq5�0�2F�� ��r�eyaI��[�C�"�^??zx���h��~q��Qo��q=���M��L�6��Q�����c^}8үR�{>����:�N�|]k�x�K������O�˲Kf9f;���z�^+��Lje�\�c�R4���X_I��!�H�G�������}l���ʢ8�-NX��m�g玕WĚ,w��ԣ���i��F�;+!te�2�p�px��<ђ����F��k��U�-Պ^;�t��R�ݬ���ab����rGPs������!�D���pt�1-��P�VmG 8sܓ����j��Es�O%���s��1��YD� ���#0EI# N�PX��WC�k�U���=>x�p�,�Dm�˗��? a����z*�q�:o�I��NV�Y_{%�ϡ��g�X��&�ݬPCM�-��,���볢�!�0���I�{������m6��I}'K����G�c�C���c����R���iw��%�ѣ��巌�pG�M:��Ѵ�a�;a��I��q�ٰ�9�O��\��a�����u�t�� �FL�\XM"�fm�Qsn���y���#�;ֆ�"���oD���kx�}�f8*:��:L�,�[Eu�d��`�SׂOA���Q����g�Kf-$r��bX*���<d`��A�hk}��k���K�id����pT�'�֙;����Y��D8��I�_;�@=0*ͥ�bHn/<�R67����%�~�����Y�Cky�t�0D���A��B��^�G8���F��i����jf��ƛ��������Q�3��*�-��kv�&S.nsrGB)�*�\v��αL����X�ͽF�q����or"�[2[J�������?y�����Җ/��&\�R(�����t�o�x`~��s�)u��kr#l � ����`�1Ҫ���Z�o�%��Ei%��˅U��A8q�)�wP�I�S��A�#r�p� e���T}]����ȟ��D6q)g݀��<��;Ս:�Iy�[��� �IQ�C�(�9=j���k�O/����� F�� *���מ�S-�m�W2�����:,.�FJ���Ni�<˞����t7�| � ������l���3�}k����X|s��(��֭m��Z}�o�FRU9ݻ�q�t��7v��r�b"�#�6��Ē��q��zԏ�O=��[����8���dnnp ��߭u�k���n-�[�K?=V�Wv�ؙEJͫاo�]^i���C����^c�1��n"�G�^�jz�xg��,��Su���@*�>�\ú���4������0m$���i�q<i=��y1�o2X6�# 1Ϡ�� g^�WR�n??Ԩ����i� 8ŦCX�G�(�Uu8 �Юq�U���]$y�]����#(���p3���G���*A;���"<JN@�wU�з�]_*�����%X��hKGn�0 �^r۰s�X:Rs�w�ƞ�[kF�ӀY�II�hdi ���29�1�l��=(���7x���!ܶܯ��'ګ\�[�u�:��#���wDN�01 �q���8#�����q�ʲL6���.�p�pG8�֛�˫`��3��zlQ�e��_:�1�8'���{�v��+t��|% �8]�w���:M���-�Y����!������ps�Ѣ�Ac=�i�14P���A�|���m�8��7Br�İë�� ���d�vg[3�J���t#��w�Q\O+�nv�-��U}r:ԖWhЖ���X#��G���rN��u�,�[�{Ȏ�l�$��4���Ԑ9Rr8 �3MRӳ��oߨ���:��;��ZXA��e��J��3���o�N�6K<�r���!s�*yOU��U����[Z[(�a��&&l2���`s��S���Gu��M���`��q�$`g�Oҭ~���5濯/������K۷��7:\�����|��[����1p&����[ΉF����#�d^��wkk<w���f,�g��,��6�v.��-��Ko%��ct����#���:�x���)G�f�*��t�S��ݤ�B�t�;/�gXZJ���H��g?�~Q����W�%���m�k�w����O-�k��(�h��N �px���&�kIɳ��aq��w�H��ps��W3�'�V��n�Iv�&��.��[�e�����xe8�A�����k ^����.��m]?�;tR��Д�̝�o��_��#�|9����nԴK�m��;L��*�g�W�|Y�cm���x�������������|���a��J�t������ ��N�ke�2�VJ`��d��R����F�2�Ox��o�Ť�ۙ6������f��s��Ұ�����ߕ�G�NQ�G�oN�R�B��۶��_�9�/�i����'�r��Ev-�J)�$�����j��~%�xxlծlt�iiuB0S��X�w�=�]�˧xW�vb������F��Σw�zs�^ ����ڥܷ�u��'W>lP<�OBX�@���&�¬��L����՞ݴv/���M?[��}Ǟ~��|k,�?��o��:�[�n6yQ��{�O9�U����!�ugo}-��Z��*0̀���U��Ï;Zx�\��W��B�I�^��c�8.�8��|z��ivp%��B;A��,�8�Z۬�q��0?t��_����-�7����n�~��*��Z��<��h�{��R�-��E3ɷ�wpE2w��UY��"��r�|���� x���+��M��W���d���\��rƥס��������X�\�d�^X��o,��0`�l|х%]wV w�J�,FK��G��4��ӳ�wB�9;&i�����>��=~q ��Asܩe��Gː1�{אx'�~9�/���V�n�ln;�������� �ҽ��m����)ay�Dn�H &��8=�Ve��[�������Z��� �0>���#�^0���<4��I���k;��t)RR���]O��o��Z����߈����[L��b��̊�N2y��o|v��nm�|M.�i�S�������NM}!�i�G�2��y�n�0�.T���^�b;�������MWI�U擩Ga#̲K��$G�#��ds�⽬�7O�hӋ��J�/�n���~XU��������q�����ۻmi��c�3ž���m���z����e�����1�'��<���}k���|%�o���ow�x?[ӭR+��j�%$�>W��o�28��K��>��i�<M}d�Z�QjW �<`�d{( f��bq���T�����R�is������&�b�R�k��Z�>���y�x�f��xUc$�|�}�^x�_,4qF�g%Y>��}�c����l����P�"H�A�u���9�'۵{恤�x{N��"�=Ljn�#ڣ���8|�����ּ<�+��mS���W�����tQ��o��~�xn���$��1��0;�z�e�������2r:f��)"�u��#�7�0�ב����ӊ��)nubn��i7���$8$��l�+���^߉��T�@�XMmWܥB�q֫۴��:������c���+�����ml-�;2��v'@9����u4KL� �r��r ��_l�g����Td�[��5��Ck�` �̸�9�K��LnZ�y# 8��8ڝc �) nR�� DQ`� �\c�4�'pIApC=�@c��L��Qq��^�֣oQ�Il�ٛ������,zU$�Ia��K���ȿ�=�j�Ȱ�D���4EZ+}��K~ufO�/-���QqÇyP�*8�ޮ���B �K���ʊ~f'�w��=�5�GL��;C.:g�Y�40ζ'S{K��"�G�������~��k觳̓8bQ���85�I��sjf�z��|�$S�1G�d��H@���R�c7����ȹ���5����[}�ݰ$ ����� {�u}XB�]_EH�vB"Q� ����Q�Vܝ�(�\[ɲ*�,���Ǟ�}�k�Ky��tr�(zs�XV�%ӯb��������>-�A;]�A�z�+��_�])!H5�.��U�4���%s�$nq��8J�~ϑ�������g)�*���(��σ�e��ˁ����ah涳���X����ג'�{+o��L�_\������H���'�8��#�q�,�����F������E���ܦأ���,���<��P��җ�ڊv�����9猂^��u����z���ϸ?�X�2P�gi+�<���^u��D�/t�[Q�֔-����Ϲ��#�ۀ����f�ť�[�/�Y��m�����zk 6�;�ܣg�&�<3�i:?���O�j�xl���d��?���Rp����G5�R��h��ޚ��M�Y.�}�?kR������c��:��kϩ�˪X̿��rOG-\���?��.�o���6���2��*O,9�}�jf���k�V�}m�[�m�ͻ���U��*�$�g��O{���G.��tr�soa��v�{�:���ӡ �Q�4��t�z5kmta��[��m��.�B��&��z��(FڛϧQUe���8�_ 'c�-����q�«��3�3�H���L����}+9����˓��{Th��d�zf�yry?�$R�3��P��`=�Jt�H�9'@�g�s���#m��4��cd���ڑ�'���*"�$��V����\m!�&A�V4���g?�h껕O�Xa���+������������'ں�w��ޭ�jn�'N+����?J��Fw#S�r�^5�˖kf9�(��t�YԾ$h��y�Av���=���5�O�_�o��]J�v�8X��U{}k�^ex��>�DZ�$� ��y�c��ni/%�ˇ�ѣ.d�<����1�=t���������=kya��V23�RH�8=ϵ|���O�N����4���1�5��2���U턠ڀ��m�gbI�8�%b.2��fI�ⴢc 99�J��+�=MC4��I2�{�[Ӈ*�Mܹ V�@PG���k�䷞8�Bv��6�i�d�xܸʺ�A`�1���G�����>D�!�E8�=UI����P�"�� Օ�@Oj�n�ЎH�629�L��3��WAC��J��16�w�q\�o���H ����� \Q�b�j����.�>����ܽG'ץJcB��j��qh?n�2&�&;�H�'"��j��x����A>��l`�����@��"#b�ս$�A�������:W-xB��I�>4�3�h���J�*@ȯ�5k9���J����v�ݣ.�I��������o���g9 ��^�O����)�=��*��ٟ-I&N;��7�<��?�t�;�f��_0h[�����L�� dpO|��*ӭ:n��*Fp���|;��B@��ǽD�'�zsO�?��l�!>�W6�����T��~b�5�T�g���e�#�*�U�/�3���9۽Y`r�s�1L��W�iz���w-�ݬ�H'����0�T�������<ⲍ��l�z0� ��^��>R�}��(���?���wė�����V���ԏ`ݣ��� =0x�x����f ��<�&�A�U�s� ǿ�~OZ�w/ *v�A__��_����Y[xC��_i��+=p��[/@������x�?"�n�_RX�^/Y���������8�T\����>���-��@�%Ă��L��m�RX��3�z�����g{�d�7$���(���#�>����uc팿j��c�`kI�8*ѷ �y����{岎�S���E� �l����־c�����K��}��v~L���vf5��W��� -��c��9�&Eú��` �=>R>j�u�.���~#��"[iܾ��]O�2��_�N�j�ga���r�vS���kBn!��(�y�|�!�3�� ��Wa�h7Eo���b^L���� ���8�ON�T1�������R�g/�^i��+��rv���O��вƍ�&Fg��w)x$ T7̶;᷎4V�>��C��,���� Sx���^M&��[�ѵ��sp>x��T��X�2��p8�⦍��z��ŭ̍�k�$��G;F��y��beG_�x����%z:����5_Ցqo�r5�uy��Vʟ6�l�Cp�t�8>�U}J� ����h�0�"`��7�p�á��x.mZ���=�3�+��.B�����9�9��[Z�p��-��2$�H���B��*B�u���F.�V�h�3Ng������ ���)&0AbO��&�����u_� q�k�ݙ�� U�R ��9�KKk�7LD�ٚ�h٥����7�`g��l?*�v�2��[�<2�42YF9���n@��,�i:�H��� ��^E�6�&�Y�����66F9���H�D����𰼴�c�d�z�H� L���Ir�w��7��(�I��7К�`��� Cܮ%؎R#��p@�I�)����,1Ȑ���3i����S4l�Oݐ�?('#<�R�qr�d0��� E�6��V�ȹ�PÓ�=�͚\���p�3I��r�$��� ��ҪCsq��,ֻ�)�g.eu�O@��w=)��� ��$�a%���l}�)̳ ��I9T Cp��CK��T��g����]��Ʊyys��;6����郙b:u��y"Z���}�T���v�F�����ӥQ�6wOm$�Vl��H����G>�����ǯ���#GWKk�G}���$h�$h�z�v����:�k2'wӢeڶm^\�8fe',d';H�� �^C\Xl��ڔ���C0�3q��뚞�#��Ӵ�c�f�5YЖ;���9����tH�AZ����G��;�vd��!R�`0��3d�ӎ��)`��7��3��=���>2I$�6�~i!��[Hoa����_3���c��*B�H�1��ޡ�]�jP�5���yȶ�H�A���/�0:�״�Y�)]�"�o>��1n�:�����ݧv:����}�@�y��kG�ٞhب��Fz����5b���,���ky��@�b����0>�s�c�#����d���ы*ݾmĖAa���#&��Ճ��։X�� <�8���!*��+��0q�ޫ�t����<���M"ۺ�l$���;�s��8njh ��[��RҖ�D�Dgh����� �~���������m1v�2(.�Ŋ��}� (�J����3;ò�u�yH�6'ʍ�o����$�\��[��,�g�m&�[i����Up�H�r89�H�⡸yM�Ԧsqi�1"�������v3�w�Յ���Զ��\2��E��� }�1�0��5�}�ר�u�$��>� �{<�$q[��x]�����x�y�0����G*�����:���HV�H,3�>��.�SL����.�v+2�-����xϳZ��;K�$)l�ln�$���v�;����c�@#���I�ş� Kk;�X��8�F��'��$b���xym���ky�L�[60�^H�����]����sL��K��X\���q�sK�i=�1Eax!�e�]�pR �2T}�ȫQ��x�ܿ�^ɦ_� �b�m�/�����T$�=���~�5�Q#��Z[_�� ĹV���X`�֫�Kb-��Ī����q�6p�ǦH�7��p�M�B���!dc�� ��G��a�H���j�m� -nI�a/.��l��u�IV���߂.�=�J�W76q�W+V�G�]��Nq��y��k�FX���hͻ�R��8��<2|��L��IF��:iE�V�3��g� v@��r����y�c�)�6{>����g1�L�[G�V���7�t�楧CH|�_�:�7r:y=G5��-;W�5��;���<C"���#{��'u�Wm���%���ڑ�Cp�(��~YTm#i���Z~���w�E8����Lh��ׅܸ�9�<UO��uf�շ'k���(F? I��<M�c��f�r�&���vk���ۑk��d��R�ppy���Əx�^�%��l�@�Mg����<��1��Ƀ�6��/����]I�O j6�>���[� J�۴� ��є��r� �xP�:��]�4�Ɗ��&�rp�H�Y���la� ��_g��S�ìE8�_T�����[g���U�>G+_�s��t[�Ff���J�p�6-��3c-�}zW�|9�3��b�Z��q/~@�� ���Q���eӓ¾ �����X�a�D���{�]#��9�y�= 7ž5�ӡK�j�N�ݴ�� �K}�����&i$����8���\�xY>�~Z~���R����������^��Xh?�&�T���Y�@�''8�!������~ Դw�m�� �{�����]��l�UK9lÃ�g�<]��ʶ���x�,�UC�4�!F!��-Ӿk��<E����r�m�;}����\g%�<�S��\x,�F��:����_f�̓�K�]/k��WU���_k}�|���4k�:�אַ�6�j�L�7��0�ۻ�ʎ1��H�ΰ�W1[��������,�2��'*���#=�yg�o�ڧ�m����,�1,V�G(/o�����<�Zi!:ɾ�Hm�p�p��V�T����nOPד���,T��z�_�ꢧȔ�,隍���Tw/y<ۑT�#YAl.P��o=�{�k�������o��t��Hw��-d�FNk����;���d�M;"���u,0�y�yj��Ţ�t�ZD�We!�R�Bs�$���8�Ň�����I�O��G�8��4���&H��euWX��Ui�}����e=2Ny� u� <M����ia�\��+��k��E ���M�YpPc���:�m�R�'��塚["�yї%KIIR���:8�>v�[d>�FmGǺ�6mn����g�3�v�� ��=~����(V�*��Z� �ok����Q�R1��.�ROw���ϥ�U�ӯ-��9��<NQS��R2�rs�5�C�^"־�y?ǽnk+�A6�¥Yq�6�d2Ҵ5o���/ �W�_�� ���tMg��+�>.���Z��~kƇ�9�Y��/�W���I�j��w�-�1�V�fַ����6����z����_���E�o�e���-�~1��ԦM@�y����%yc�a��G\q^��mF������-��6�����(<�[�����A�Q�g�k�5?�z���C�B�������R�V�����K���I����i��6�LX�M�>^����� �6�3z����z�s%��F�:���W,Z����Iu4ê�r��螯���KmF=7G�����:�7%�7�����T{at�Ko-�~\L�x���n둌�܃��Z]����._0�K�9��H�+m�$���Z�f�س�gC�M�l�����d�+ƍ%������}���b%�=��qoE0:�q�8l�pA#��j��b�`��K3��F�Tʜ�E��A�UAv^����m��bb�mͱ۷A���f�I�����YL^��̑B�e\ʫ��0��xmT��/�X"�d�A�?ѡ~��)��� j�jb����e^��2�<|�'q ��O<c�����E���J��2j1�dž%��~�b����Mgx��r���M2�K�P�[Z�w~}ܛY����j�z7ȇ8�]T2��-� ��;���r��ή��P�Qy�Cn]�d])`0[%�$`}�H�Ⱦ#�k���f���A��.�n�����\��NN>l`���$��Fu_ �����K�����-5�����Դ���3��9���P��-���^ ��H���L�6��il��L0�8c����] {x>u��RJ��m�vջ]]5S��>0W���z�Bx��z�K20��/yt�b���o5 �l��2#�䏙܅�#�º����O>���]�'I�}≃,$��e�@P�9�Ҽ���/�L��w�:�����s\�̺���Z�6��x�c�7`���U� �YxZ�R�<}�oi���W-���/��c�݊)@�F�����ҽu�S�Bֳ�xɧ��GͲ��ֶٜ�X�O�_����;мZ���<c�E�}CO�f���:As��x�C*�T 1�v��#� �7+iw+�y��$[�͆N�8P6 $�8����u�����Ȳ��O�麟�^56�˛y�*��b9�#pFpf�>��K{mK�:��^9�m_ZЛ�>�o=��`��+� RT�}L+� ~�.�\�_��Yn�ns�电�y���R�����o ���m΅z%�,��F�hCo�`G�_ ��q�g�~"��9x��N��x�YӚK���isK�[�Y�&&@]��tY�O߉�O[x��zm�o�LQ�Ei�a�]�m�;m�e��dQ�> \K�47��^��:w��:��L��\,*I\�/�s�N�c&��꺻�t��vz�;�/}�ݫ��^��w���+���x�t��L��9����Ls�����_� �z;/��͠xz���T�cӖu�"�{��1��$�Wg��ᅾ����xwC�/^d����S����T|�B��@|�g9�6҄���˭��ƺ��D6�)��F�W����fy��Q����Z[K4��ͧc|>�n�������6ZN��M+���%�u����i>�[}97�}Ӏ���`�{��U���N�����z&�E�2C/�u!m�7<�l�du�x�hR+X���;�$;�+�vd��sX^.��jI�S��ڥ�(S�bSda�u���g^SJ�vZ~V_�~gz����h��qi�Wn{ �H�8�J����$���K>�;���(�۰���*'RGR2j�FY�$��W�'.��s�YJ7J�h�j�8P1��&��u�qKq*Z�L�Fy��+����6F�� q����ZW;�h�`1�ֽ����jn���>g�q^]���s��,���s0�#<��ڷ�O�k�֭v,lH�rq�m{�VY��Br�[���'�����)4��p��=�@'��p^��e�_\��'��� ��vҒ���W�?vr�gc� y�0G^M`\�VV�� �89����7i�w9&��{��-o%�N��\�(�m #n��?U�{���<�+yd�H28�cּ^u�V�&��*8���=5�ل�a���95��:Iu�r�z����I�[G)�Ă}j��\� �y��Oq����S���%��_��?:��O0�J�eU��R�+��~�f��Ok�;���0�c��^�2;`w��Z��#FVB1��j�M��l�|g������v�y/��S��ϋ1''���:Ѣ������M�D��[�#ݒX��Y��8궾��$�v������ūY��+oFF�_�k?�n���ב����O��.� ��.�0�Ҹ/x�[�4���H�ǩ�:��XƔ�ڒ�D�WݡB�775O]�g�c��c�'�=뻰��!�ux/��6Z���b,�� �}M{�$�E�He�N:�S�\�;��N�Uǎ���#�.O�&�{k5�1�3�4�0T1������f���9���[F��O>�hD�DGc�jl�aN@�jeM�p���Q�ȩ�g�]ch��''���4��I���Z���w�m�OzU,���;�[�����&4`�4[K�*�d�r=�i�U�x��2�T2�r �4�Rm����=j���h� '�r+����Up�$����K���Ģ�j���X��\u��Rи��$�������=�)�J�������� `��v�k�4���fU�`Gz�&xZ�R�*-��z��2����+�WT\�*�Y#��H9�ȸ��SE�8<z��i������yiy`�%��6��ʺ�=���y�m%:n�L+���,0���K$[��MN֤��n�ݏ�m�ں���#ꊦN�})�Z���O�Z1������N0Fz��w���Lʆ���9�� �1�kFKpc$s��?��Wp�U����[Q��.[����oc��g��?Q�U�&�|%�<1,���ݙ-�y�~��T��ǚ���z��<i�_�j�-KM��z<2��r���#����fv,Ē}k��f��+�=�}�K��2��t���7+�?��ta��q_)�\g�vX�1+埓�=�Ϻ�&h�.Z��~���7�9y�B�A�.%g<�c��GcYW%�T����ң<nOl㟥E�s�W��,�au��9�0դ�K�7=U��цA�]�o�Fm�kv��0)����_�S��9P��:����~�����=�ՓZ����uM;M���G#�b�4�9ا's�5��~,]hv~#:��[x. ���.��Gps������rZG�E(���%���@�wN �ּ�R���j�1k~���G�Seqon���v<���=���o F�ە�ke��ӭ��O]�c�ͫ��>7�l��Ađ��06W�2�C���g��Z�o�i��Ռ�)ȍ<�>�&e�cnB�F@�b��V�/�߇o|qwl��U�^+i �*~��ֵ�d���n��a�[H��C!o0�}8#�'�>��ZJj6�k�/������H�oD[Xմ� �\[�[������#d��F���ɥ��4� ��r�+�$!$��1��I�>��S���Y���tqڴb2֮rl����rL�����bP�� S�����yҭ�_�rҹgY������-����Ř8���<���Zf�e ��I� l��1$R��D�F�����W�i���om�'%3����sY�͕���Akb|�6S��J����~C���H%e�pA��!��'�Z��`�j���Ԛdvj3 _(����OT+b�^��Q�0[ۮE�z0'�#��g�Đ_$�n�Z�����څVI=nJ�;����cw,���E{c��$0�Z��dWZ�v6��N�M��N�2C0�8��{�^��Q�{yH�hFp;t��jv���\��È��o�X�;y?Z��W��o��\v��S�z�%�#�L����0y�di�1�Cմ�2JN�"�D�d� �F����]:�^\�6^�o�x6�È،`�3��Y�6��]O%��B9C����8�Nj�UFv�n��D�Ԋ�+�Vȥû�O5�"��I1�;�#��q��64�ZŨ͘���Td�yy�;u���X.�7��)�(IS���ǶG�6���4ցdتv4��)��ާ�8�7��ԗȻ����y7̈��y�v�A�O#�z��o3���!��G�ʅ�x99�SA�O-��Q�yxԮ���\��N���G��ݾ�4��Vcy �x* ��(u}�_���;y� A�3n���))�8����ug?j���.)������NWh�#�m��;�0ݲ�`���U���hT��k=���RG4���L�> �#��'4��j�5f^��GrO�]����d�`ONr9��ӵ1mj���O�+�� ��rFI=95�q�5��[m�R:c �zU{�m �k!�l��A���Ts�q�T��`��Y��h�qon��`�m���� ͐}�>��{�(a�ⵌH�'�&U�#��/�^�����4�;}� $b��&��3d����N�C,��1��W j�+��X�F�Uk$�Zt�����BK���K`�!�dI#�6�" ;��*=�{Ye�_2�J���E���u^Nх u�*���G�xoI�X�"��̟2m��L�����㠦x3W�|[��kd�^[�*� ��]�o|c��Q���W�{y\���_��f�5 ��R5�h��X�ci�~t9=�^�MK�����MHF�G�s��,xi!|�,Nӑ�~x^;;{��qp�Z;X�QJ�.�uQ�?SYwo�QH��H�%اj��v����gw�_�mG�˛����\#D�.�$�P�a�V8�23�S[�5��ܭ�Bo-�a9]�01%X��T�z�����J�K��#\A�)��y�rH�ڑ$��V�攣�6�E3��9VPO=OZj�~���gb��m�|&�v r�(T���ۃ��ܩ��ڬh��Y�M��y֠g�R�sU��[In�K�v�DbK�Rbnd�<q�j�ڵiY�-%�DX��6( �YGS��ץ)WQ��z�^����MX�_����<Q�c�{z�b�|g�`�yծ��&�KE%�T0r8c�z���%H�m���V�s����y� jkw�=���ڙm�K(f'�]����jp���Y�P�(����e�{>�(FRNJ���|��?ğ��@�zv�{�ج �~��6~P��~�n+?���u��Hj�v�b�=j��3( ��p7v����zkj�;[UÕ�{�ZW'9 ���X����t�O�F�i��"1�\*�#��}2����*4�]�������� &���Z��_���`R(�N��>l��{ץi��-岷�ң�|�M6�`n�gh'sc�'&�ҭ'��㼷��T�ݴry)�B�%wq���+[=M~�omug� {�21��ҐG9#ڼlNg��Ϛ�K���zۧ�Ɯc���.�1�u}���d��J� #lecPW'����h�XP�%��h�Oea,.�#�<�t�s�s�b�P����H-�}ш����q#iG��OĞ�.��%�����瀡6Iq�6����Z�ד���.�+�8��]Bso ċ"�'���vA�cj F�o��� �~��Y��"�8I��6A�0l�/'�{� ^�Xm��n��Q��x$�z͝/�}.X#��R�K�~8V8�����G��Rko���X����-��-��MbVݰ>w$�x=��Uu.��.��ٶxm�1�L���~���с�d���J����m�+N0� ���Ny�㚜\�Ϩ<�l�Ӻ~���$Tle����� �֪8�F�����j��i�w,�̂�A\�98�*� +M�O���q���6����BpH�dc=kr����*\ov�Yg*n[ ���sS�e� .�+��a�E��y�c��yd�(<y�%��4�����ܕ���h� Dd�� VT� ;���7��?�����Q�^f�ۼQ�ݖ���A�#F�~\�z�\��������y�%�Jd�����r�a�,����^ 8��c#����Lľ�M�� ���'�]#Z�V���o�� �+sz[k�i�n��+�EW{+�-��Ea�/=�1Y�u� Z[���ݥ��~����~H#��Kc���^Y��Z4-e-Lj�����gM���f;�n��_��8s��,�%��c��'IѼ+a�Mo����V-F�%�r�^] ��`�<pFq^�$ĵ�WD�}�[�m�q�����u=g�>2�,#�o�6�Q���-L�1�[����i�Eq�5�A���k��v�h4����9u ��];�& _��+�����C¾!�.u���R�_�[�P�uy2 �dC�1�U�� ��_��5���6)�GU��6�9��I�&�����095�8L�E�)^��VM]wO�_�8g^��ӭ���l2���������^�����#ZѴ�Kh^�����H�ث){��I��S�&����:֝��H��걉?�fHD���V�ۆA��������S^6�,�ȵ��������2n@s�t�ȭ+o����\h:ޝ��i����jG��X앉��� ���Y[�Z� x�h�t��'���&��z�1Uu�u�]����������Դ���Kqqet<�����cGY�S�%�n�˻5�-�OY�v����I��qJҩ��Au����w��3�;m/L��>xj��Y��"ԥ� �\u���Z2��\(^8��/�5���~�I�m�՚�gY�i��V�8���6�¯ �T��+��#-�}{7e�M�}�*�y�GV��\��/x���:6��!�&+iͬ��{��v0�1zkR�A�ML�|��:����$���o8��0#H�!�1x-�����|��/-o�����r]��V��R�)@K����}+�4χ�k�������ѣ�i�].����Cm�U^��3�5Ǎ�5'�^�z]_�]�}�)T��J�ק��ïj�H�u��+�]��ť���� PY8�~�y��d���s�?���{��+����M�x��̿3�[(�@���yz�W�[��~��Ӵ�>+kiwo� j��"���=yE�Ծ\�ia�.#�7�����rZ��GV�������ߋ����0���_�c ��Vۡo\�Z�Vm#=��Բ��[DQ�AV�q[�R�^���nap�V����c���z��)a��[g�g����+I�F���{U��Sv�\�J@6�b#iun�>�}kȞ:u����|��N1�m//xXڻG�nU�9`ɍ��t����y.J�eK�1\�dupe��Ku�x v�����M�&��B��6%d�Ab7n*���c҇���L�jD�2����)�J釐ߴ�2�ukw38���\7�e�p�����:}Է����$~H��U �͐� �{�1R�$�mbqa���Ōr�.�N00T�'�5J�U:����#0�`�͎�sɯK ��9h��?���a��������M�<���k&�X��F2̫��H5���Z �\���v7����������_� }73�ne�j�VK�U�U7�� ?Y~ӑ����1�L ������� �E�X�u�|��x�H��-, ���7�/����O{�����5�N5hϚq���P��=Oö�ߏ��uE����g���������4��(�[�G���6��v�\�6�[?Ν��G�lV��cC� ��W���e��WU� Y��]�����M'R�\d���<Ike�\X�z��R7"/&2WۑU���[ �2��͏#v]�Ҿ���]�E�R�[C)/�Xt��Xo<5j��9Õ{W$��w�X�J0O[��ײ���+A�٦�G ���ݟ���c���A�V���몸�āK=�+�^�6�I�A����X�`��w^U�����8b�,�{q����9<D��R<�o���:���p����J�4Dc:�F���QԀÒ;W��(�?���Kk�h��Z)&6�v��z״j�J���tGj�g����w����ms����&�d0�ư����f` ۑ�����IJm|�7v簬���i �I8ܹ�\p�jۖ����9���F1/�g�by�F�E��.y��f���f-�ʝ�ҹ��U� ��J����Ҝ ӷQ��="�0�v�@:Ո�Ӈ�89"��;�k�}�v�f�V�W3�4|�5�NQVq3w�_�� $�+���m1�/��O-�bN[�@y~��"kY�C',H�+Cű�\�m�;-b���E���ܧ��s��_A�b�P�:�i)�GM���C�Ns��emO���'�e���2�&h��.Tッߚ�i�=�j�y��m?;,}���ú.���%�a�v�w��{ �E��Ud�=k�Y�Qֲ�߭�C����Њ�:?�$�%�m$0��Yع��z��&|7��֛��E|�m�ݬ�������U�T�ʇz����J�4�:��<�<f(�<��@ϵN#0�!G�UR�g��q����%�uo̹{?���Xծ���]6��d�p��z��g��K������<��[��]o��=��-m4q���*1���0�=��Wp��Hۗ��T������d�?����nfg�:�ɮ�eC*��&��g�P�Ӛ�ehت�rO|U+B )����.e"�u=}*X�@In{梷�g�Hn���o��M�٪WM�"̄4d�95\B����;T奉U�g��1��OLcN�`��������⣾O-_���� ��4�E$ ���iOD4�f�Yp�q�:��[3�$�ڢ��.W�?x l���m����51�KPݔ�1pb'��O��W!w`t���{�$�H��jY�9�'��X�)_�C�/;�Q���i���*�ہ�J�h�غ���뛍�9P��ֲ�"I��KVE�M��euVܽ@�|��wᕵ���Yõ��\���������y�;m,-�(�uZ�K�����>��4����~}x�J��n�x�+КȆLK���q�_Z�^�c�ӪۆnH`9���q�k�Qth`<;W���R䞓ꈩA�z��X�?p��dqH֬�0���O��P���J�[]̔]�+0�7�oZ��Z��dh�z�Vז�+2��N�5��y�����qJ�2����gB����bf\��-�MBR?r�r+�d���s�i� tT��z�&���缮7���?��ƞ�T&��7�r�'t�z2���k��{����O��K(��_�@olta�q��B.�����`����SRе�mGH�������<M�=�DZ����O���Nѭ�ik����t�v+����9�K:I����*W��;�-�_�'�gb��c��c�9��v���x�tI���v�vq�3����f�gP�C)��܌�:��X�f�娭il�n��~�N�T����|?��^�M�b��U�Jm�T�,6��q�߇>$}:�t��/]ԣ�Mך��7�۾���c��j��MNBƊw���Oμ�Z��~$��ҍ:l�+QP��8�yc(֤�֊J��ѷ�����waF6w6V�&V�Я"����^�V/$,?�I�ӃZQܵ��sZJ$�q�91��\����S�����c�,@e�?�Ml_Op4�mCF`�JC�hARF9���u��(N�-F��M�{w�5�-tt�ᬯ�f�q1�o��x���pc�%��.lw��9}qߵT��}Va�,���l�u��V-mXY�̅�;���e��������u�������!����O��?:�q`��S�,ɰ�nI���J��]�X%�C����T��X�)����9�c�Է6ې�d%��b[���[c��h�g���{I�)<ϕ���+:k�7�hQw�6���ۋ����@�-xr���uɪRkϧ��L�K��mV�O*he>\�0�Gؐi��m ���۪� +m @����צ(�[6�I,b>c��!�����#S�)��$��8��������-q���hvKR���S�_pH�Փ��,r\@�鴦ؿ��Z�q ����ᐎ*aqo#�+32�͵��>��Tי�h-a��e�slpE�i��)nf��=�R��n�o��8���I°�ga����i$�xbkf`�BXq�3��ӌ�6��5C.�V(�FB]v������4ԎK�%��w�ѝ���gGrM���^K�ޯXC:F���c�dn9�8�)6�p���q���2~c ���=I=kƗ���X�Ou>�{8�B����<��k{O���+k��Dæ0��z]WN��&���&��ddq��O ��E�R�F�{�+uKf��"n֬�)ZDl�m`D �"ݾ࣌�玂�'��`�&�G�]���J�Z�� ��G\{Wm�Zi$�K�&���,0��s&I��=)>��zV����4���-���'��־Ν\��8�+TS��Q\����W�s�ƻ\�z�� ��7㏉z�wZ���y\��wGi�z�5���?�����H�>ؒ�1>D.�ѻ��9��{�R�3j��_�a�Z%��,��YP7�:��f��Lt~�N<��/�O��)PT���e��_,Z�o�� wo8��'������6�����X�Vh�Col������"���jz$1��d�|�_C�?'�J�/�I{k$S�[�܌; q�u�ʼ�VW��N5�R��^L�2M��h��q$,�O&`�'��Y��C�X��#v!�}�Eo��=�2Y�Z ֥��n%'��}�V�?:W`�����}k�M�}���j��p�I��D[��̪GL�ޚ"h�ˮ˅ هP�(��T����sϩ�*ͅ�gI&hwa��9'�g��j�����Gyy%�PGp��F��3�<u�;<���?=6?��XN���~�^yYeFUR��I?AW.�njK?�Y0��>�_Z�7{�J�`�F�4���)��4v�p�G�/����V�6�6�-Q����4���גy�~�+��>_�~5Q#mH��s�3W*�Z��QV�f��J��1���v��@�MBѓ[���>+�y��^��z��vM�$�+�������7��p��s|��� �8'y�Ha��ׅ���@�d���sқ�]�=��[�31����RǑ�{�0��+�&{`�ʫ��V�RA}r��Q���&<|�ߥ5{Y=���i�4W�siq���A�X�o��Y�mnM,�O26���|gh$�{U�f�{��o)��s����>��s��k����5ݲ5�?kXµH����7���Vo��q�-���!�Ew�F9 ``�6[�g��ս�*�I.' �?�O*:g���<D���f�G�DE����0����23��v���K��鲥�l�Z�陁9A������O�T���W}����d��9��z�5�t��KI�Mͣ���qr��@;�21ܣ�c���R�4=&8��O��<�d���C � �������S�oXj�<G���<{�2얷L�~^Ʋ�h7��i�zl���i�������8N�Q��������&��I_��S'/gMk����/x�V�{y� �K=DԮ�a�l�[�FE�3$��|�Џz��1ce�wW�Q� ��a2[/䍊�?�9 !��[�w���6�����U�֗<�:m�W $2�0ʞ����+��ߍ��o���$1Gom�i. �]v�������c;�����>o{��Gf�G%i�%*��_�4��ί�~��0i�x����I�d�.�#ݗ{��o�a��Y�F��\X�{'����(M��]_f��a8I�✌w��9��G�γy%��j��,ż@z�v���Uz߂c��;[� xK���W7ږ�ų��2��<��Ҹ�V#�����[���r��Km���m��:�R���m��?�M�2ʹk�5�VPD��kڬ/l��~l��W?y��zغ�^��;捠X���ƃT`/�J�Z�g'�5�7��fׄ���B��q,<�8<�ףx�����������hD^N�n��V����5�.(�a��8�k��J�ӗ���`*�m�nϝt�x�T�u���h�����g���۴qd��qϸ��¿ ,��n.�|K�[��\��СS��#���=+���4k�O�-Į��s�I��~�8�[3H��1��c*���J��gbdҥ����k�����)-Z���x�V��^�twD���,N�3��'�q��]M���e����O�3�5Qo)<ne�\�O�Ij�����6A�O �����v���f�2�����W�S_���^�=|��A+M���^�-����!���}�C{mf�!�n-��|�x\�B����Sӽ%�%�#m��T�q�Q�7�-�O>k� sJ3K�Z��^E˻8��t�Edw�����2Ɍ��|~V���O��D�K5�#��.bG'�?0�J_j�b����12q��q�ۧ�k]�r4e,DPۃ;���0����.�9+c�P_��;V���O�K��)vA�_�I<�p=b�x�M�5Ye��'���d����y'�k����g�dY-��B�X�꘏��l/�]^��P��K��Qٖ���d�#������O�I�_��_{���s�����/�'9������ˌ� �Y\�%���01�Ph���>��\\G��"8�8��� {f�����"���S�+5��J�P�?]+� rx����p]:vx������<:��E�Zv��y���S�u�e#�&�ߌ�1�/�]�o����/q+����$�t�֎����)8�������L5R��7��,2�MN���D�2��>i�p�[������PG���� �M�w��~�4���pO���_������1'/��ȓ���_�e�HB�ZCb:�_�O��b}�6�季���t�S�]Y�g���ەE�q���}�:�����3^Z��)�r�����!�����e���n��r&c,�����k���'x?�:|�h���]$� ���(�XSr��g�o�ݯ�ueE;Fq�o���O�� ����|�g������r����� �����Q�i5�� �p�DH=W��ۥ}?�=xk���E�̓�c��C�l���m(U�y�������i�pJ�C���Wy�/�?x�}2�nH �PǕϵym���Y'�Ino�~�<�#�^�����\�7~���Vt��6�m_QѮ53*��+P���>��ϧ*W���^q��N���苼�*q\�%s�����m�\�c<D������Ҽ5��\�k`��8@3���������n��ӭ������}H�t�>+_�W��� �8�9�14rZS\�%SϿ�x���%�=#Q����f\�.�6=�'�:�:r�]��G�1�\L�_u}[l��*��� 둎j����ĺ�����o��/�q�rx��[.qq�k�l�p�R��H�mX��b`�I;�3\6��1�~��| �S}a��.�~o�<҅H�<2k���m+Ŀ��,7E������P�8�RU����ބ:���"�9�X�B5>s���W����[{x$��)vs�����.�m���T�Nz���s���^f�Q3��3��>q�=�a$��1_M�M���n7bP���㰯I���o}lv�-ᙆ+���7~#U#@�v9;S��^O�k����u{;�u{~F���J�\&����>V����y$�}��$���彝l|݅�Z��*҈��ȼZV�V�8�bRW%x5� r�-��fM�ȵ$��ޱ.�\�"�<5��F��tڍ��Ẉ���n{�Is՝��-�xٸ�W�m�d�Y� ;�@yZ#[������h��&Q���v�GM��>������-!fI��@�@=I�_|R���뚋[XB�D ���g���<Y�;vGK�B��S��d;q�+�_�^�\Zi�4�����f�Z٢�M(�-�4��K�3�F4�s�����5�B��x�w��N3�u����l4�ag�Ѩ�9�<��#�H�<��y���|�~�~��w� ��Y:y7p���ή2?��5�0*w�&�:}����+bmnX6���2�ŏ��ʗ���W8�M���x�f���$�gur)=�ֺ����X�4�'R%�!�p�X�{�����z�bo|Ae.�"T��������E;�C�5����aӯF_��zg�'���w>� �����q�@���?C��y�mBE[��y�b+K_�ʵ��f���2��Q� xf���^��,������<� �lc�=+Ξ/��?�PT��~/�)�i(ɴ��}��<�e�Pt��T��&1&�F{W'�Q�����<v�<1��}~��wd+�ڧ9��l��ӹ;J��D�{4,���Y�9��͆���qT�U�1�1�6l��"�wOM��2�e.x��>��qjM����(*Ŵ�ṋ(���֬5�mT����$�j3|�X{�y2H@1��+f�̮��ҝ��c%wa��ƨ�=�,Uc,?�K�'����� i�]����Q�VOp�`�y8^�Z�%���YQ�°s�T��ݪ�4p�W#r��\jIǖhVꉤ���8o��g�T�:�Ī�@�8���+���(����I&��� F#�;q�j���u��KV��}ʑ�8b:�W��H�(�^edG+� {q���.�AN@��ԓ�iq��|0_�O�s</�XJ�]K�G��<{��P�n$�$/%� ��49epq�־��7���J���#�hny�W��~�Y^>��Âyh�z��<�:�������Fj�(���.�I��`�TQ]K��#�V&�{C��tN0{�|�K+��)�������9�w-MpKg�X��{t�U�gc���)ӻ#��p v�t�3U��k_[���pG9��&6Z�C�)�$�����u�U��ް�G�G��HP���������qnR��=L7�f��"{c亶�d8*GBb+�O����MC��o�{�K��;NN~�$=���?^���\��y3D��q֕,/X�Z��O����s���"���n�t�5��p���j_~��{e� 3�J�g��9�ڳ���\����k������<0��[�7�KKk�_2[����J�:���[Ӓ��h�IP2�rNk��7ʱ�=���/ޥ�d�����hՅzjp8[���|� �֦�&16W+�pk\���X��`.2�����α%S���j&�ʹVX�h�zc�]����gNM�ku�Bw��7��9!�U����d�©i��G�]����Xw���Lgu�6��1ɬ�[HK��m�&Rv�g�z��T���KEa����o�A9����M42�}�"o��S���U��c ��L� ���l Q"ڤl�GQ����>mG��Kv�D�Xd�%pE3Ij_s������D� �� �Z���fP�@9ɨ��>�h�.>T���^���R�[JL�z��V�Kx���ǩ{>�J-%x���8#�*�������ܓ�eU#�֡��9n���������[���s�7���}���9%�� Q��hD�:����z �d�HPp������L(������UB:}�~'�Cqm�r�*�nF'�1JU�~R\��V8��^*k��5���P�NӚM2�'�Q��g���J"��H4B��c"o�6��}��[��[)vD�e��v��U͝���d��e�K9���:�g�l�M;ꅹ����pn�� m��q�U�{N��A�Z���J"& ���j�b����.�c�9���lɫ]���|�K�H����~�-&��j��>�u&Vz3���5k_�s]�HbQ�+H@GS^��'�G�[L�u�,�^�@�A����6I&���]�k}�DlTs�u�ᇃt� �AV�?1���ws�_Q��2�t�[��t��O��U��ƣ��9|�P�Ẹ�ٳ�Q��Nj�_�a<B��bRI���z�����Llr�������p�\>Cg9S��k˭��e�H�>�::���E܉,�ps��zU���bK��;q�{Ԗ��,&'wnq��xbi"h,����x�y6���~��G+��z�Z�Y��x�%�b7��8=��5^h���Nݪ8��jYmh�?�8��R�k���墄(�}��?�ڍ7P�f�)w:�Ic!?����M�+�ާ��T��i�� +\w����@hx��}�'��s�03�~��x�Z�.y�OO_ƴ�C,IW>b����g��w�X�`�3����ZR��c�� ����+x��1��N�Y��K��B�9dݒEs�������^2��^%Py�%�5�i"�5X�kw�y$$��|�/<�J�p�>&�e%%�.�V���{┒�Dџ�FB��8�ɮC��$�)��{�u.��?�����t;P�;�u�� ]�T��q���ۜן��!����6Mou@҉>g=y<���j������7�ȯ����92�-���� �c�����L�َ��PGF����qU| �6�S��R��S��5��bG<�'<��'Һ_�K����Ŭ B/8H� ��#���|��+��� f%���Q���x=��r���^K]����t���+U�^6�4}4R��j>� ��!쎪�9��('���#�����_i�&wf�H���j���t�9�]i��suusx�pPđ��Glt�8�]���B��m������rCn�E<��W=L JU]� ���W۾��5H�f��M/�F�m=���5)fi!ͻ��1HO=���Z���=O������팶ن[e�HG��ix������ta6�y}<�!}��4�*9l���[�v|P�tQF���{�9=�ם��!'Znr[[D���<b��k�'��!�|c㛫M2���ѢO)f�l��X�v}�¯����|� �;��֧�S� ����1 ������Ǘw�@�I=}��iѵ��2&����y�'�X�O�am�����KI˞z�3����L�h��+G�"�0s�P�5�[�oÖ�<r�y� ���H#��ٹ2\L�1*` �*�xd��|�l�^W�7���E[CJ�+94��B !�_���-� ��E �qޖ�`������#8�M��\<��Qc�k�Ϛ6z�D%�3�_2�B ?0q��������ʏ�/����s�i�s�l͟�\�M`k^(�H8�]����==�5�Q�N�=�k��¥xS�r�:+��!�2Y06�G_��ڍżV�-ܨ���hn�s\|z� �/#�� �����֮������>�r S�Y��W��%��[��߱�b��Қ�k�-�A�٪�" :~�����,����X�¯2ƽA�u��<��F�r/yNG�Һ�h!��˷�#Q�(�~���$b������z/��q�&���U�|,�nJɫ^Gm9Q�7�Wo�x�:YY�ڦ^�\��>�t��$�?��c�}�$�a5�O^�W������d��M����3֙������^�\�)y������9�)sϭ?��'�g_���@��5�8�\�9�=j%^�g�W6-^����S������k�rЄ���SY�]%������D>\�6�fD����h�u��=�-�R������&2;W�(a�Մ�C���jվj���Ri3�|{�b��Z�^�.��ifˆ�q��i�g�g�����fWd�o3�S��A]�C��&�rL�<���s�TX���O�Ʋd)a�����YJ��۵����)J�KH-T5�����!Il�#w�b�����[<��n��V��z��)Y^�_���۰����gg(&Ց7����;3 �h#�����8������$�䂙���I!g=��_����>�����I�t�kr�u*9�����4�87���Ķ��;�����wc��ͽ�eKfI��'��6�O2���X�oO�UmF�����h��$��ub;��+E�wm|���s�-Ny'����Ir�m�qW|#�_x�J�����RIUl~�j�n�K���d�`G�Si>1���d��ޗ�R0%����?��H�ӭy���|Ekq��آ*|譬 |��'x��e4��s�i�\�j�+�6՚�;Ն"�q�V �WO�~-����2��]���#ʸ s�9��+þ)�t�|Q�x5+{����.r��N:|�����ğ�6��V���o5Ӝ� �N2�_������mM��F�Zki���@�!:����ڵ�T�ۛ���3��]�{�RM7k�-N������,&�Dd�W�~�ϵn��go>�d-4j]���?�\��{z��Y���L�n���kx�l�G#���.�r/�{mJ�#�c��0��7�mx��ЯQ߱���8֢��jQM��������,�����a�.��STy��$̸ ��`�gH�{��/�܅Wi`�2�p�,�6w1��2y�,r����d�N�-uܚh�K9nJM%�!�����Sss��Ր:���$�ewo�s1��r4r�ǦOLs֧�|2��U�YI�%o�alg#�WTy����h�Ԓk�z�mIl�(+�>�����2��9^00[��c�C�|4���z�71Y/�-1\���kxZ�\s����e��zJ���iX�i�6%_2'�V��`x�Mk�Ԗ�RX#%�n�2��6���c ���C����n�zTw`�l�m�d�.#��|����(T�A*�W}}�e�<����u��k�E��Nݶ[2r��~�+�5 m<#��[�9� � �Dt=8�o���K�{�ь�L�f�0q���O���,�|Wy�V��E���b1��<�Nkѩ��S�ܪ[�i�����ȗ����O����_kw0hn�o%M+/)����^����F����5�m�Ocƻ��:|��pH鞵ͯ�u�m�/]XhVsO�-4�4�#��x� 무�OF:��łT���JI?1=X�'�槎���~�'MCD��w�m*�����8�x��=Σe�+������p��<���5�}h�%��R�J�(ٵ���|�����SRՓKh��e��n|�!��wu�����c�j)�[��������c��0~�0�,]�ί2}W~�E�˒���s|U�������=����L��kg��l���Z��nf�h�!="���[X�#x�WM�R2�M2*�� �.B�ԓ�Jm�����ֶ�ֺ�j��/yNv�#ljF=ֳ�Q��'%������+y]�C-��Zv�k�2y��Fy�}).L�7��)A�l�3��^?�?�2Al�+0�.��[�����py b������K�T��Qm,ca#��GZ�T�G���jێ�.�Gkv F��7��Umf�/�W�V�����(㺒>[ȐK�&����* l��;kg��KE܃��w;����?zশ�"/�f��a���&�b�T�,p�J��WL���?Zt�ϧjP.�9�)N�v��}�;[�[rב�b}�1��&�����ʽ��I��Ю��ܕb�#a���S����Z�0�� R��������4�s���NMD�y]Zۛs �y�a�U��}s��[�ik�_p�DA���"!t�$zU�=E�XH�@����5�4��$G�������\��ʅa�i�)"�B�s���Mg�Oo��_.�f�Q �_pq��d��i������Ll�3"�G�����ln-��3np�g�Ջ���V+�%@I'q�H��ۥ/eet��pl��#Y<18��q(!��U}^��]�{{�YnY�����}�J���QX �V1*̸�����^zTZ��I:܉e�o0I*���sҳ�#4ﶋ_�i����?�%�i�4�L�F7��|��I��g2���N�����g�6*�̪"w�ubAe=��U�?��~<�h�FYPP{�x=+�/���Z�Y����䪭=ώ�Ӽ�¤����Rz�I��(7A�˟�1�����z���W7��E����o<�s\�"��#|�`����J��5�Z p�h�>Wk34y0me=P���%�����W9 ֤p�v�� ���c��ޫ���� �UۼiӏZ�L��kTT6ius�V5*[�U}a��#�pm�6>�n����G,��8ʖ�Q��Uuky��K�������ְw��ь��֑���)�� �rk��gO� ~�I��]�q���10%�y����^#�]�G�f�x �ɏ�ޱU�B1�\ ����� *5�4%�|������D�~��/���?o�i7��V�d�'�א�P�Dƿ2�g���%�]�,�2Iq�����f;Xwd��>���_�w�~"�^KK�I��p�ua؊���W0�έ燗^�O����>� ����iv7��a*��E�����{�^3Z�V�e�z�*��h�g����S���A�ӱ��Z�����Q��>��_�y��&<��>�y�C9Q������G{���w���]R�r��{k�ʬ��n���|�rI�UE�P3�¦���c��h��!���#&�Ry���i�q���I��8��8�<��S!w��������S�l-!o����6�;IЫ��0� g������ �R��S��h<�����Ηl�d���M�X�����䤕���X3�ۣ|�r�����Im�j~�r�/ *r�\�X��T&�q���a���R�(�!��֎[�2��7F>BN?Z��F!H�����ǀ>�- V��A�>�6�:>F;���f��p����[�g�E�$,B�7�?:�|��i���lc�U�sqB�����P[��S~*�9�V�ͅ��qÝ�xS����UMR@f*���W�P%�x� ���m��[��H9'����b��d��zs��!��g�8-��+���"��E%����C�'-FP�V�u�g����+63�9lg��տ"+yy01߭Qկ!��� ���UN�vJ�xɺ�;GU늴��.�J�����b���[3+\6Nx�����7�g_���Gj��� w�z�|�[�Q�ɓKs��T14��#pvm��s��cK 1f^Fp�:��W���u��d�l�E8��@�>��Me�A{�+�j��}�.����*9��+�0�>�������3��vG[�?���$F��p!M�Ol�A��=㋯��&�j�E�f������A���ti����2F�ɴ���[��uo^յ�-�ݯ��60�����?1#ӜG B�H�O]o�^�nm�͡O�^ס���n��\8�ir_hn3��Ju߀.쬭u}Q��q&H�qԧ<s\��u KG]7�2�2���|���;֏��o�x氟h�%�R�:(�zW����T�y(����_��<jQ���3���Z��ھ����mq-K�Ϧ?�} nxWC���n�����V'�u8�A�֪ˣ��U����t ���*�>�����_.9:�I>��=����S��Z���1;2����%h�!�qZB"��,f���PqT|5�n�O��kk���l�j�^y8q���1[��y�2jѶ���@v�����|W^�c�IEt�>f�<�ß!�Pw�d�)�!>��k�xJ�m�0!�QC�N}�j%28��c��!���b�ABx�ҼJ��'�������J��Y��Uv��I� �XϘ0u�id��3�RK����ڸ��-��˲YYdl>R�C��7�5 �*��t�3�òy>�����p&7�!���X:�4Q"U#[7����ʑ��k^��nZ�$����J�.|Sqp�h��t5Z ;X��4��'ӑ^���5����s�5 �ٯ�kV�c��$�<I��F ����~�9�Z�7�-b`�?�?��º�>���qC��}�W����go���Wר�ODqo���a��NcC������kB�\���??8��e v�)(�$��5�]�e�k8����jW�U�r�=�����P5p5R�@O^jm�u������L��( � ��7~���V������R�O�Q�Gnԣ�c$�x9�*.��N ��L)�Ͻ<��})�~l��Q(<��?ۉux�/Kp8�y���:�ڳ��V[�c��`s�5ˋv�s��T�q���"���0�,>V�x(z�A��cU4�<�X���۳�F�`{��ʭ�\4i $���6�I:������08?2��e��,�%�hb� ���d��М���?(��6�+��H�����-?�锶q$�\�tp�B�ל�;�ޕ|���v��N�Vn6(��0A�����H2��Gm0H�_��̹ �b~P}G�D�m^�����$hbW�!��NIPv���̼�Q�+s������������H�a�UT�B��q����JU�-�{��I���Ia�U�-��f���*Ɓ�LDFFa�����2A�%�^[B��x��I���1)�ff]�� g�1�N�\�_���o�=���2�M<$",g ����}އ�*����C���'�\��f��P�9�^��k�v맸��k���l���m�pA8�H qU�I>�$ȳK*��w� �U[�`8q�2|��}?�������[_F-�sn��pP�����8��m��pH��F��,B�k;?*�:d����i7�Es4��qs(��|�&��)V����s���j��Wz}�zm��4�R��������k8�=.���j+]�xkZ�-tH��s]��ѳ��I���o�玾���t?l��۹�%rc���Zl��Uz�3�z�?�t\��h/�젚V�j�\(�BT�#|+��_��"zWE��.��3�+�-��y7ml�Gm��\��,���:��cy�ʹ��2��]]�^��{����C�����zE�>2�^��N����������Z�ǫ����w�|�˛�T�.F# ��A#%[���7���L��j���5��p�[8�@_,dGu�#�5�]|<�c��.���[υDVW�2K��g !˖�_�rF1^��X%&��O���ҘF�zɷ�v<���o�uH�I�i�F�����f��+��#8n��[Ǻ�ŏ�:��<W���E�o�[+1mO�R�����t����� .�m��wdO�� ��`����b����lQj֗p[j6����$��B��X��������63J8����*~�T�o�I?��ce˯K����^0��r��K?���DV͘�`0pz1��ā�6���kE�+(�A���{$�߶k"=B�Ȃ����JVE���f��z�$��1��m�jn�����y�<��y������z�Z�S�+���4��KW{���o##�b�9,eYH㑑��\r y�ƭ\uk�|o�Z��}��&���,��3T�'q�Ev��7��i�\:�Y#�I�Nxʓ�z ɞ�� �� e-�˧f)4D,�( ������8��x�$�������G�jzx��B�?�'����]X Y�J���EohG��q]�9<W��?�ω��2M[Ŷ>���&;-=���nU�!�lŔ��7�A�ȮgǞ ��V��7��ٮ���B��y)�k���!aI C ��j���Z�o�e�Z՛>,�\[�(h^��;�0��1��9)� �8�糿���{��C��I��ot9��..-C�y�GRA8T1���A�O�f+u��ZVx�J�:1�#��x�GZ�K�Z��O�Xľ!�Ӡ��? �r���&MF���)��%������)����xj�{�k�FkigYC�Q�h�� ��9��1�LF�v��ۭ�7��d��nZkXnl�t�A�'��I�n����䎜U�/���F�I�F�^L����pxe�>��]C �x�����h�%�6GM��9�5jݧ��;KK4h]VO�[��,[@$ʐ{d���:�r�]���טܕ���\�7�Ä]XʂT�W� �c�=��jM&���Y�;v[�Օ`��.el&ޠ�[�� ��5�"m��mv]m��9Vm���2�OJ�_�{��~&����BԮ��}�L��W���ytLn�*rq��t�-��#R��獮�V����߿a�5������Y����&��u}��(�F��Fn2��c���Z�e=g�~<���g�.�{��X��1s�z����k�|-���Ŝ�*���9hYVHل����!T�'��/�Xv��>�S�~���y3�9̷7d���A���s���[�V/�倣�W��g����;l�~�T��������������o�M�z��m�h>A��PN�r0@�O=3����^.6ojI���t�/ne�:��9j�|M�F=G�������i�x�ӏ�J�����'W��j�_X��K�R �!���$�r'���u��g�ҊI�ߕ��[ )AZ�g;�?�� 4K��K�F��bK�B_6P[�+�y�;�ڻ-F=B1-��&�XTDm�(bp0F��TV���=֗#<���C�0��`,1��p��t�,�Ih�o�m /��\��+aN�cn_Ƽ�T�U�;�/���)9s]�"\�WYK6����c-�����杝M��&(�KG��6���>Hnp9�D���"�W���ye-�6�J���jȒH좹{�[��L�*�Ѭv ��䪁�3��8�A������+|Ɲ�V��K{T�u#�&� ��c;�S���Ӽ� nme��2*ߔX���A������=����e�+8��ʰ�����*pxͻ[��Y]i�� ۫4�*2c`¹^Wa��pzt�w���OV;�=��ڲ9eKHȚ9M��:n�q����RF���wC�b��Hـ p�c8��Ux��V[d�O��x>ϴ�pK)S�l�W���s�;�gp��a�f�$�O�в�`3���29u�f��7�����l4��j_�\[�m팓��袵���@vm��'ל��i�|��I�|��� ����J��=�)f����Kqn�q����jHc�n��d�*�V:}�m���VH�S��̲`�p0Tc���8¤f����=��ho�MQ����IBF�(9��r�09�E �ޤw�=�9�u4m�#�<�٬ۍRk�k���E.d����,�Npvl�����xռI>��-<�"��ޠ9S�f��������{l�~�zU�zĽ�-�~ؖ�1k{#��a�b2~a��$���6�En-�XOk��Wy�g,�g}�3�j��ܷ�un����>ZG�w/%�lm���^A�zpj��k�X�&�%"#�D�7vI;�|���qC��tV����:mNkK�*�rDL{Q~u!K��p��������L��M?�p7#ػF0�!�q��Ea[-���R:?�� /d?�6,��`�Q�8�3������x��۰y��=�mC�2�a��FJ�zg:R��2V��"�<�uvx� K���eڥ�Q�;�7pv�+埉?u�j`�..#����]̀'������}�auP���H�����#2'����l �`c���\��Ŭhz}���Rdu��aŻ�.�X�OL䃃�Nk������=W��jW���Qy�̴c"mr�c�7Ӧ�5���L:y���:�y<vS^���|�Mq�� ��$�>[�UU�bg8st5�W:DI*<�utB�(� ��}ھ�����4t�9ꪑ�ܒK�s��s<(��e`1��<۶k+T���*B�A*`�Ȟ� Ncs/ �F����K��>��m��ED��1��I¨��X�a��G�y�5�B�b�rԜ���f��^�8�[��N�����1�"�r��+F�;��۷�j5�(D��a�@�s�M=�.��`P˸ތ��L����j�SW1r�!�[G"�Da��˝��w��~j��k�x#\MWA�4j���$��t�#�z{��!s6�V�Hc��߾:�O���Y���p3ۓ�$���S�B�Zn�U��OTc�˚4}���&�� '�\ !�me?O�^�r�\Z��W�W�ׅ�K�xWR[��I�|6�뻜����{���_��tE�yr ��Px/�%9�~����V+)���f���������u҄ݤ{TД���&� ���QV�7�W,3�k>����y�k��Y�k�G����(X���� �=wt�oR�1�e�&9 ���^�^������ �mjzݲb�kK�<����(���NA>�r}9c�xy$t�۽�Hk2����(+��bȳ� ���S�i b��늎�@� s�Ì~5$A�B��砨����G����֧����>��҂���j��u�DVF$��<⪝މn5�p;�q�z�0�q�Lb��Ԡw�����i9C��l�8��b�k4��^{�6�$y�<u5@����Z67{Ss84��L���[�R1�t�^th���������J�Y��n���.nb_�y��֓���S���7l�i�W+��iC)l����sm�� �L�*��oY��{�[�=3����b+K�n���XX��+���? ȹ�!VhњBǀ�b����]��|��Q.�8�fϡ�L�u %����0,�� ױK!���V%M=��R��Y q�29f��z�����'�D��܌j`��������� ?� ���j��Ua�l��I9�g(�эOz)/��MV�j"���6��6��e�=�q]_�t����{�(f���g.W�_n�kD��N����,Q��7��=꾨f��[�XͪȄ���t��կ�/N�Q���L!k'vP�lj��(%{ �}���p1ߚ��[�o�?Mux��g����Mj[�9��Q��>�,����26 �|��Q�'�����n�n~����Y�[��:r�4��ZuT��)�9�`kk{x�#%�A���j�t�ʹV��fh���(���Vp��/0g=?�t�D��<�|El�f�%v��^�xO�}���kxa,��.=��OZ�]�|.-�`���%�e�TQ���j�X����^f'5�c*Zsvc�KDcͦ�[�jcV��ћ�k���Oa�*{�H�%�����[۔�'��5�U�N�h��:���w� �M�l`�c��m�n/S�����6��`:�䃊�JS����Zb��:�k����t���j�'BYc�'$����Q�rPyjy%�J���EYk-��L.~�J�m>� �g,2FI'���F��@��?��sb��!���$g�v��8�l\(��ԣ����ݟ/��ȿv�~a4���)1�S�<��a�#0k�]���S�ʬ�FPqV�u&��%JO����f��C��]����U�.��c�Ӆ�0�VT3d�v�ZI9���_K��E/t��osV9OcX�S�#�8���!Fz㡫1�>��^�h����߭O�8>����㊳�����j�)3H�ՆQ�S�'�e�/�0����z��W4N�>G��R#c����ɒ:T�^��B)Cs�x8��U����H� u�Z�Hd���x��@�~���Jz�� Pǜ�9�!�p9�ᚉO"�<��ց�x�������n������8<���4�;�Rq���������kP�yuk3����1 �y�����ڸ<��O2�ۢ�b(@dw#j��G���-6�y~�-ʼ���J4��ލW�* ��~��ߵ��[y6�d���t`B[��L���m����c*�F���G��@���� q����*�*�����#q4�<J"I-+cp��ap9猲��ZIs\!�d!�6¨nz��~�yo5XB#�1�WS��2͔�)���h�I#�'�5np�����d>E�Gzc�p��w2��!��+q����� 1ȶ���pFNŷ�c�,���p�n茶d���u!u4 ��(��卿��@�]�϶OQ���f[�'��Q�0!C�GB�ԀOL`O��]ӽ�������:_��I.�Dv�,�o�*�˅�;�\00��<rF�!���ɵ�e�XM۰Hn'�sVOK{x�����>坃!�\���_��g'�n��4�|�T[�24�fP�1�3�Hd�'�S���P�܊��a`�ZY�d�;���pU9?6�q�Nk�~���H�r�庢�*��Rx.۳�����ſ�^��.ӿ�\�Si�ݷ��1�w@a��*�Tn�u�a-݉r.�*~`=�t�T���������0�S��N��,CSӭ���&�[k}��������*ņ����y��K��ܼ>k���u�%��a��* v��ym%�%�� b>t#�����q�<t���Mn�O����n_dhQ�������)f��1q�����ũ+Y��"ڬVf8��� ���q�E��e�!��@?tവ����D�X���8�̎�s�$F�3ul}�`d��q�=.+i�<3HP4� ��2��%A�k��X��j�[N@*^��H$T���vVL����)Տ-�N,MWJ��kK�&Kk����I�`���6X��@�G�em� �5K]-d�[w��67�L�I���0�������i�Y&K��-K#y�Y�E�F�ʂ�f8�''�V���g���z�v��Y;Imp��:a�����Yy݁��Δ�����,����]S^��ɛJ�W_���|s�k��g,m��� [��m�ؠ� �[ �eARG's�A�����-�=�N�ԱbX�1����S�$�����&��%�|!e�h��J���f�`,YK�Bw�y#���M��?Y��&�cl�&9������P �I�c�B+٫Bi��S�-��zjJ����g�_���7:ı�Go�7SYK2��o�.w��m��q���N�Wj�y��B�fE�$��8�����������5����1�;�ao�����p1ߥy���=z��+��ۨ�� g����02H�#9>���~ҋ�N2I=�m|����_��'v�k�}/aX.a�%���� ����9�s���;x��+���|a��|@�f� �f���&Q�W[ir!�vn;OZ��*��2\=����.�*�2|�˸�$����b�b�o<=ս�NQ~�(��eC30R[��Fp��sQ�R�������I)hy}����âo��-���ز���t��p�$�"AO�F��^�?��4�Z���Ҭi)�6�Q�R73"�*HS��'�u�+�����>��֩�w����;In�Ձ%���䏔pv�د%������қ�> ��ѕ$1�[E���Z���gv2�nW �n��oB�j���OH��+i��_������ ަ��Ǩ����."�nt���햯�*�F����1�#X ��&������G)2�m������#�<f�#�!��^�I���5핂^I��NXc�<�I���������^���Zo����V�?X�/� F�K��H�1*b�G�*v�F@8=�F�r�W����ߓۥ�L����,�>է�H]bkhq�*2 l�dne��M@%��[���ȱ0�dH��������2U����9:wB�M2��� Dw��q_%�(;wI�8�Ԋ�=��[���B�\�X��.H�u��u������I������$��fH�3c�A����mu�A+�ji�P-��c-�H��8b�zyC!C`q��N+z >��-�����`�$i���NM�FFXm��5Bܬ���_i�<�>��b�bp@$�3���X�k�_������4�.f�cHܐ�%��ٓq FrF�z��9��T��O�k;�~���w1�ke��s�+� �����-1�$�@g�\�����S��:�(�Z��ء�I�v����Y2q�d������ j�����1=�9�n��r��;�sdca������ӂ8�������5X�es H]e���/�>�����uu������>sn��x<e{㝫�ީGf�Io�F����+�+>�A�<rk7U'o��>�[In�����D��2Ko&�� 'i d���#����,�D�������W 9��`j).�nQ�6�{���rS�꼒ʀ���2H�9_Q����o2in�T�ͨL3|��G�8��b��Ke��q��i2�p҅�8I"ȱW?&�P�ĥs���1���l����xg�r��(&Da��q�B/C�}?~�*�����V;F*�0�!�0;[p�s��uV���2-��u��"��0�O�� vW��z�*�baZ��'t���zz���fO-������$�n.ʖA���u��Q�g���"[�,~t_�'����ӌ�l�cu����f�I�����p|���T�Z�5�Kkueiuqi!�1$J�%��Ӏy^��G��RW�����e�G%�S�r�Wm�m�2�팜,y�@�N�$�N%�g���o�I��*J����3�������oy�_Z�Inf��E��lp��W��^HSЍ�5v�+,�:���K;�LO�*�O*H �g�$Ҍ�����������]�[Z��ِEm�Pp��)b�w����M����Xo-Z�g��]�.�{���]-�Zm�6�<q���b\<Ь�LeN���s�u$�8�ՒF�eI���=Ēā�\�����s�R��w������R��`l�O��`�^Hd�dA�Y��#F��jƉ=����P3Eù�eWWwt!�t빲sVSQ-��ƞ`}�f �1��ː=�2�#�&�oi5��[#G#rU�vn�F7A껿 &.<�ֿ����e���[�KSA�����ےx,FF ��gj��u�E<\7���#+ �Pw�Pp��1��U�{�.�u�� [ݿ�%��b9另1�x${[���p��n�9�b�p�2I�q��(��yW����e�JVf[{Evk�%�+�u,_h�<3S�K��~��t�H.��{{���D�'*��O;N�3�Òz֦�Bq�=�\Ƴ9��l &�V��G�aֳm���Ö� �M�DXɜ6��`�:}i<C����b�{�� ���^;�.'��[6�\��hq岰��Ra� ��_�����N��k�h��C�l�d$�-�,�A�g���60}�I�D0ܲ��)��|s�rZ6����qM�&�,�Ku�i�T&y$�\�%P��*���(�����(O���є�ٟ����q��&�y[D�F�%I$�c���V]��Nҥ�i�#�`x���K�����n��ZC�F1r�VB�Tr�m*�������!{�]I���g��JN[nHH'�=+���-Y�>��rV�Y^�۳F���as�O8�;����R ���Y7`�ml�zdv��ri��$D���������i�l�V�_H�������85���dSx��\C�nT�'�Gѱ�AL����UT[��1� �g�����l�ڲ:��ۃ�F~����˸��6�g��(<�������jK���ᵋ{�.?�9$���$p)�E�C�i�2[][�x����Wc�X��̶{L�p�8�@q��Yqh�fIR�nr��i�#�j�&��i���<<�+����H��$��^�+lԣ$�a'���W��7V���pA�����Ӯ�O=����3�5\:c�O���fo�j� �W�g$w ��OC�5���:����an�+�_�}�N����Ϫ.�^"F7ޠ1��w5sF��Utuua뚒��(_�~o�̥{O��g|��Td�@% xϽfj��d@z�ٸ�!��s�W1]���9�RWn�G7�$����=�ռ���H�뚽�Y� �`�۽bH�Eq��擊��eې �1�?:��J�4R,J08�9��+��v8;�r9���y�N��iJJM8(t�A.�����#9�hP��U��G�q�R����}������;[|F����ף��|RID4: �#F �h=U+��X��@=W�q�!��f�����S\����#%�^�v��u5�$�4���#�����䀒���&�y��;=����z�¹K9d���|�zm�s�W�P���@U�L�1�~��<�4�!)\���,�2C�������0i�4Ѩ��1A�t�+c@�ʿi�mYF3��������Қ�v�~�����t��kDCWL��I{�{�kp����c�^��=^K^���6H'�TzO����9�7�1�W��+ �E�W*����3\-���B��e6�n�[�n��� �;;��!��B���0����E�m�F�"p1�WQ�h6��P2{�6�uB��bu$��zo��Ei�� ���]��|�ƙkq#�9��\��D���*�r�O݀�x�slV!�)���klP�<7mi"Q�9�[@R5�-��Ic�UKnp� ��Ք[MjR�,G��?Ju�G���U�.R4 7'�V]��Q���rMJ���U�3R+����< u��H����k������:*�rwW������cƷ>k�C���y&3nX�cV�:z�����p�"�g9�X��aY,�7��5�'�>/_]��=�¤�����/|_K-em5��X���ހ����~U�tx���MZ�x8� �IЃ�G��#�n%a����RF��}�7,Ğ �cwo{d�V���J��H�*F;ƭ#.xc=G5��ӣ�cf����|U�b�J\�Ȟ(�A��=I�J���}��*���I�^x��J�3���52M�x���'r�0 �݀����$z�2�c�4�'n3�Gs�V2�i�����pjx� r0>¨+�$�9�Ԫ�1�Ӿk=b�tFf�3��j ��9<��dr_��X�^}�GJ����ћ)0���9&�E!���!������1M�Q�5�a��p�?�� 8��Đ9T�H�u�w�j�+��HՉ���jx�'��z�I>oN��f)W=G�ҽ������g�V"�����TR�oj��p �Q�i����Ա���)=rN�q�W�N�e�U�=��x�z�����{Ա����]1�ƙaX����'�5 1���9�Wq����W-㫓����M]2�y��\w�@?�����e���j���u���N�Q��ۋYl�����M��?)���R�j֚A�Fh�}��o\�,,y,r���Y�����&Gf@7F�!2r`k;\ ��ċ8�d��8��_�J0��������Țe��]#�0�<��!a�wd�6�guf��)��$��Y-�l���˒�����o�$�/�^VlDn����2�z�֞R��̈�A�u.�l�_�(ϼ�y-&{cW2ʰ<H3��c���rzf��8~!�,%(�.Y��V!��;�\c�Z�b��Ķ奔��� \s����#Q������!H�lX�͚��z6�����VeK;מ�I �k¯�[�Ut<pArH�p8"��f����I#� �� '�nU�z`u��IZE��٬&�1�%I�P~��2D����L�2�`*K��$t��b��������=��n��+}?Mxm����lE*��X�[k�;�Vs�W0Z�#Gwko�32� i���c���?�cޮ]E�id���I�*�|����^��6hchm[e�`�p�R};c����������+Z�4���od�2̫���Fa�pI�H�K�$��[���-�ќg���L���;[�o8��H8F8��K�!6W�Go�'i�ל���7������ȷ}�Zj�\�j�WS̛^i�&�`�����#�\忂4��D���ؒ�8�,�'<z�;���b���M���$,��\�|}�;�j��?�%{�R�,����C���t����� n;3���-��jP��Uf��N��ʌ���P1�����&�f��O�)����)bx|�k�ݷmea�県�ֺ�d�~�ɖ�#i8�ϯ�]�uk��b�Č�{@*ܖ抔*I%��*S��Z����+5$�g����)��>xI���-ٷTu����&�?TҾ%x�V[���ܱ�x���؎�q����|W6���s�X[�Еx�h�����⋝C@�"��vb���Csӷ�{��HQ�U9=qI��O�B�/g����ݏ��~�~4�n��_���Y�����������p~n��{��|?ៃ��b�Mմ+[�9��n$�\�y��$�:O�a���_����|q~������*��#�v����Ū5݆��I���Q���w�jT��Z���u{rzY5/���Ir5o+�����y{�_�ڗ�|7��M���-��W�,�>�����Fqڼ����3� ������U��ȨA��xǥt>Ѵ?|��WZd����Ǿ�CV|���� �~Š�;#�.'����ҼJ��`��(�]9^�wiݧ�� ��n�z|��v���è[�I~��e����`EP� ��5��Saa�^@��ƣ`��ňe*U���5= ����d�~y^x��K�J��frZ2�?v��ӭq?�E�������w<{�Vv�n�}e�jZ^����x�%��m���%��T�NW����ҵ{[����?[��t���8���FӇ�`�s��q]���m/!k�v%9�$�'#�28�ҹ}{U�5��6�u%��4�m�.�9�䩏��#�\��崣����z|�_�]"����S���y��\jז�y3 .a�ϖ����|���jӝ���'��H��ndS���\r=���?��-�էק�d�k���-�0G8Br3��y���>0��f���ѵ�L0�N�D���sמGsֱU*�EE�����mޡ(-�D�!��e��]��a�~2�OΒ+y�D��f�iD�P�o�O�V%Ƴ>�'�ַ�8��|�C��^�I��±K�8c�>�.�#d��fO,���.��6��S�m�Ʊ��!Gu퓞? Ž�N����kK�R�#��5�ۑwTz`��J��j7���A!c7)�C�O�W��6SYk��^ڥ�J�.��sc���+��4��/����.\a)E�=?I]P{v���,�KM�(�9���T�v�&�f[��;��j`����@p:���5{] ?���ԴBd�k�2 ���Q֮��vq�}�S����,�-�7��vbpX�t[�?z۵�;����s(ԃ�����x���w���.�����K�tzr8���@�%���w �"���)�+�����5���M1��{��ՠo1nY�a�q�ٯ<�ǽO�!Ӵ�(�\f7�/�I���R ��Q��)�.�R_z���3Y�_MOm�Dzki�$������npO��W�|I�Jxkím��Y�i��~�&=H��������Oj�}�O���xʈ���z�Ҳ4����U�}J[y I���g���ya�q���AKUի5K��G��+�)O�����o�Cx��K�Q��|�+c�=�Mw�wm&��o���eX��=��G�k�>�;O�>�.��Rj:��/�w4�Ѕ�q����mk}��z��wgc+�3�XBx�K@=8'�g����*PM�]lڿv����⤣}K���9/�7�E��.�m����>���2F����1@�L�O �px�kI-�����)�����n�5�ƣ��-]�s���zt���5� ѧ$�������� ���%d2�YG��꧰�c��U���)�VH� � ��"��2t�eu$=���MM{4ot�\D�IX0�ߎ 7V���z����sl�������'���7O�SCs~�J~����6}���ޙ{^F�ܔ�V�]s��?I-��bSu `��3��~u���4�U�����j�<nA��-�H�y��}Ҡ�NjΧ:��4��W��J�9�r��jȎi�Kr�$@M��?�Zm䖐lC3��7�M�c���\��P�n���_�+��%�Q�c��d�rW.�:�0:qY��4:�Cnm�)6�Y�l�?\j������\ؽ���`P�w�G^��)�����u��WC�;��QUU�7ˢ������*;�6��2Om�_1[���{�8=z�Ҥ��Yl��2V3��@��$����F�s�C��β��T��FSԷ���*�j�|W/��[�lr1��ׅ������o!8��Kmyk�K�sEn�v�3�i���\W���j�}���S�����U���}k���i%�wrY|���sӜ�B�R;8է�k�܆x�����UI�J�[]������>7���^�nn.l즹������99����י�~���HWg��eFy�����o��j7|3�#�'���=>�?�����[�59��#f� e�1�c���5��?*�t�>�®IsC~njI'R"%Ԍ��������fKiKcj�z�֮�14SbX�JF ����������eIp������w<�EE� ��C�e�eVl�� �}�-n7��B3��0�ԓ�Z,k����������������Z%��ͽn�+��T��J�̼`��r�,��n������N�G<"��u�#����Rm��bB���F��Ƿ~�e�/��u�]m����� _^xS����sE*:�m9W�q&�]�2gq�{���_�/j>��OԦ�m06�Ųa��u�θ��)c��85j�WO3��c��U3�K�q*��{��q���f�Ŷ:�յ�H�( ���O,iqA��_�R��0=�e�������Õ��=�ݜsm8�z֍���v����둃���fU�� Q��s����E����O��ƌYY��`zW��� Fzt�o�::�.�pq��R4j/h4��O����h��`"�ߍr�!��9�" �3<נx��r0| *�$2�>��ׂ�)%+ H�R�f�G�+`'�H¤g�.|Enn��,G�_ӵA?�����@�'��銂�ᾮn�4�7ǧ�+����$���rܐwb19f<Υ�2J��4���/��oă�x+���G�����$� ���[c�;b� 'A�4c������o�A n�:�E����D���֭����W'=MvqX${F�>���#����_5_4��KCD`�� ���Gs�Զ��C�c��n%Q+�� ���A=�:�=Z���#��ܪ1���4`'{zT�h�$ ����+�Z�`d{�JVj�rG�H'ރ*G���zW9�x����.�q�$���i���{m�5�C,��]�������-cU��H�\ޥ� V�2�_Z��o�B�b<�3����şuK�[̺}���l �\��1�u�<���zE��Mx���d�E��Ns^S�_������b/f'$ׅ^�7��z�<�J��ɯ���;��q��<���"���N�Ğ>�5Y���L����r�쭆s����7=)�>O���_OK F��by�r����++��rO<��;�0�T�ezc�N�����5��fN ���/��U��αv̖��>��k�x�I�>�.���X/�a<2L~�z��6 q������GA�#�ӮLr��g����#��Nq�}���e�Ƶ�Q�������}��$����8���r{q�s\�?��%�[]m��@7#�=�wa�WwL��_��up�:���G� �MZKu��!�~$N��m���]I#���pb�<�\m�E��\�'�?z��2??��UW�pq�Ԫ����5��:#2�lv�21�5"I���j�d�X�}*Bǒp�eM�PЊQ����9�\��$sϵd$�n��X�L�'NkZU�tFf�Lx<sϵY�Q�U�k9J�ry5n@ �E{Xlbf���K��ҬG(u����$�OJ���g�{�1F�F�2��J���YI'o�5f)P;r=+���sE#R)09�*�R{�\R�A�V"�����^�Jf����=852>x����=j�r���{zשJ��w/���w�# �R'�j�7�H����&Z����ڹ�`6��{�����#�zW)��u�����MS�~�׃�!�7^Z?�ʫaK1+�}��4��?g�(�VL=�=���)RF?�W�M�,��p�;�c5�ci�ş{n�����ʎ���a��oҫ��Ag�#Ʊ�6�o=?�%�ф� B�GT2^�v[�nn���VJ��_�Ȼ�I=�7�\��ǭCy*ц������\S�F��;�q��A֒�ф�HU�>\s�f������4oa$ASi\`���Il�QF�ʃ/"+s�^�V��I�@����.Z����:i$�� ?v�s��������ݐۅd���,�@1���Ԓ$�%�-1 �'a� zƠ����%�����j[���xa�CƑaH#�ۥKi���5LM>2��-�����O�U�Hl��k��i�#��I ��柪$�g�(;;�О��q����*"��8�Pړ���{kq�e���7)T� ��,�mG��3�Ϸ�S[<�\�2 �Ө'�T��X�2G)f�`z���qu�"6��� �*G9������������O���}?1V.����=[�*!��<h~e�V��qObn�%��d�I*$�k`r��Ҵ|-ᵈ�����f*�B_1`J��������2$!�G�5�'��J0�A�+5f���l�Q|���F|>����%��$K0��3s!S�v���w�߳lv�Cw�.�����۔��~�z��6��=J=ua��lIa7^0@���o|S��A��Ak =��d���`+��b���B�Z�Qv�i�ה��勲�|ދ�5��{]>�(lckx�HX�8 ���� ��K`�H��n��q^\֟�K��]Co��� >� ���?�����\�>E����b���S�i�K��p�5~���z%_>D�p~�Z�����7��G�ˉb�e���r���fev��\n9�~y5�Ꮓ6�����I5�����qְ��b��q^n���;B�_<��X�sx�������L晩XZ<QEx�qH�����LJ�-M�.ke�yc|����g��h�dutN���[<<�*�����1��5x=4�<;��-%�!��Mr�q�s��XkMOĚ��p��i�7� �E³0���ϰ�<W�9��Yv;���5���i�����w7l\v�=��u��nn�>����_a�����;�8�@�;z�B�ks��x�1�Gןΰ�O��Hl-��r��RH犁u�Z?��,!��K���<�;cޣ�M�ˠ���c�KC"�� �1�ު>���H�rs��>nj��ͩ��vV ���=��p��r�ִ�������q}Ĥ�����2���Ί_��Q�>�+�i��$�Q�i������1?N+Ԭ�7��I+�����jD���n��9��۟Ό,V_�T0�ɸ���I����/K��ӝgR�4�ϒ��q(�S��([��I����_J�/��������\��g̱8������5��-���4�4�9M�S�eN6������^�\�+���+�Wrce'��c]P�[٤��/��y�_�Ҥ�.X���Wƾ�D�J��WW L��=�AY|a�[e��C��N�n�#�ޭ|B�<��s~f�[¿�#�[����\*匒'�N��%9�j�y������e�Z���<#�v��<c�X=ߛ�U�.���9��W־$xF]6����\Ŷ\FP�ߎ�Ͼ��xFؔ��=� O�zW�O��&Ye�jg*8�k��ͤ�<���kG�[��|�� ���2[�o�e�ۄ�]����@z��^����W�D~\�&�9$!���}k��W^"��[H%����HМ��ֽ����u/ ��ʑ)�9�O��a�)Gnw����k-N�M� �ޡqbG?*�`7'�ַ���{d��Ѱ��'����f��hc�g�d���~�Z��xr�+�$7H ��k��I;��%�lkV�\�����ݧ��x��K���ZI&R��B�������z?jMs����9�'_cT�����I���n �=�D�K�Q����jz&u�i�Y�0 ��1�����[�N��v�D���z3XsZk�1$dF�d�/��u��o�K�|n*J��W�-8�R��3��m�7H�9��� n���=�J/�ހ���^��b�zg�n��U�s�jė�io��c�~��1K����/��D�92�� ��������uS����'�oʪ�^#�K�X�F8��d���Zn�m%��52�O�Z�N6�D٭�p�R�Ļcs�^�3�S��o<v�\}�9�۴�1����5�ղ]����r?ýW���]��P���sӞG*�Z?��m�aqk=���)��s�}�:��xn�S�e��Yx!@FI�{�?�m��y�y#B�=�Z�m �^4�Yb�H����U����]���?�E"I%�2}��wĹ�=ǯ_����$Ѧ�o�Wl�G]ˌs_��L�-�8��Q�:��^Q�O����^LB��8篾k��N$��J�%�wFU���|v��3�I=*A��B}�����4I�B�U'��s.〬��S�_�R�ӭ8;�x�(J��d�S�+=�llۥJ�%�0�I���)��D�� �پ�n����1I^�I���2z��I���'"��w!�;R[���[�T�*�oS���M���G<�Z{7��Tz���'ĝ+�:DWVw*ᗑ�A�>���1`w�=���s��S���w�t�"c�ع����_ļ%�ͩ��\�{���3��c�7�?��?I#�+��9����@~���(i�%�"�9��<d��~��e�w9�6�,nM��9���=�EM]��w�� �N��Xry�WK-����+>��L|�c�ֽ<=|>27�������*9��\�G��]pTc�J�-''�z �+ ���cF�^�� K�����eq��jѶ�!G�сZ�(��Α�T�����N����*�H���b�۳�N���w/�.�H�9�F����V���m̓��0pH�_��8�� ���c]�Ť��z�꧃��v�X����5Kx�F}�T�,0e����x>0ivFM�>c琵�^2���^����T�M}>[���M�Ց�[B��-O��C�"��X��;��/��x��e�=s�|�x���V2O#��Շu}<�[��.�|J��<����5c�<W�kW���hǢ�k�ռKyw)w�ܞ�sXD�����>]�ëS�G�V�Z�ߕɧ��bK��$�'�/j:WjIld/J(�)8��N\�z �&����*1�9��m#�;piT�ұ6,`�����jnp M��ҥ�M-3P���Iᙣ�3�u8"���_ŏ1��u���*M� ��Ҽ��4~dm�O�5�cp1p䨏3���G��Kf�_�<����w�B�F��rj��FWp�N��<WΟ ~$�iGi���[��HܲC�^�j�Z�����Hu�5��e����]c���N�|�������~f�=NG=�y���v2{�{~�Z6\m99?�= ǦF9�Ę̲���P�qS+�s��}*��n��1�}�@�0ea�����o��gb�N01��SDHL�NI�T��=s���i���9�ұ� �2�R�x��X�r�ߥg�=}zԈ�Q���L\��s�36`�����U�f9'5��0xU��\�q�A�9�^��f�F�R�=��Hs�s�MeC(�8ϭY�^�8=+�0����jG&:�Y�^1�ҲⓏ��X��f���X�ԎC����֬�'���\r�ۑ��� s�N+ڡ�O������< ��ݺ�L2��=*���<w�Z�3U+�H���k���gV���`?�&��_>���<jO��x#�o���+T�3��S�o�F�'i���5��q&K ��u��2��BW���Y�M��:W��luuZ���}��+��#Uu`dF<���Ck��G9<栞�InT�y#�_z0�ϓ���]MF��ɚ8F��pW��LD��p�Ny��R\�\8ʧL���Җ�UVY<��J�~�5ewk �")�%%u=�A)��_�}�A秱55��I3��u�Z?)���Tu���N�a�����P��ׯj���^nTܘ�O�H�n�����/{F�cp�$ܖ��}�n�@9Xԃ���5�es#+��b�Iu*�^s��P�L�6\`�:�4�%=���.��������Ԟp7BS����j�Vq�)wv`=��Z���%H�8ɨ�)5� �H�k{�0e`à?Ҧ����E[$��S��d�,�{�^� ��������}����er��2��%��"����n�^����8�RM:���wL��kHI��-X,�[�R ?Q��MG��r�矔g8��|�a��84�D���b3�G���M�E�ɦ�"��� n��]����䟥V4�$non�5����!q~��78]�©W��Q�"|�ow�����U�c_�փ-����<�u�� >���ZO�<'�[��}v"��v��L��ֽ?ƿ<;�D �K!U����|��[��:�gXi�oh[�QQ�Ӂɮ���E�by��\ZV���:q��j��]nt�?h��B��m��]\��$�ߡ�ҟ�=x����Y�2��������8��R�5}~��[�����<�^����6z�Z2��D�DEpq��N�3R�ӗ�IY[��_������_#i�cݽH Z��{���&蘭�Y�ik]G;B7y�t��k�k�udpA9#<�V�\4�9�v*5cQsD��Aᘅ�ç;$m�0�� �+��4}~�yc�X-� a�e�z����۫aS�NH��;�1^]��T�ǭx�0���Z�B�����5�=6�t�p�����I��'�w6� $xm�;����@��e�F�Y�-�)�z�Gon$X�)Ek\3t����be�3�v1!���SX��#��tҪC{��n��x�����>�뽻��3�ԴYm��.7��?tצ|?�<3��k�>����ʳ(fC����i��z����6->M)�,b]���=;V92�`�: 5(�6�7k>�v��-)�Wm>��O�\�|��o��#F�IJ�#'�sҼ#�5��Yl�㼜$(s�O�+ڼY�'P�Z�P���I9"��߀�+d�$v�ѱ��js�N�IT��%�ɫ/���GU(҄�������<P�)�kkv�grX�\����>Mz�˪^���Ux��^���ڈ!�^�>�ˋ�K(�3r;X�\CvRQ_�_������^���ᾇ�`b���2H\�+���Dr� �G�ָ�x���YE�p���,��l-�[�&Ǯ��VJ7mA6�Ϳ�6����z��co8Pʌ��I�e���7C9ɯ�e�/��P�t�6w ���;G�}k�~i>-C�[�4Q��$���sҺ�k���_��-Ҵos�Xy0mRrG��j��RH7v���Z@�E�rw�55�ܩ�c=zS�.md�3��q5ʣ$�#'L�֘�A,;^2 kCP̌m�֘Ȣ���l` ӕF6�+����>��݂H�=i�z��Z1��:��Z�6����K�{N�5�n�,+��Ir�%s>�+u�)���P��{{ⰵ\��,2�����5�]�*��\w�iVY�L���aS N���*5$�?M�+q���'%�{b��i:��bv�����ze�1Gb���UFQ��wn��K+ܥU����T�\�����?�A���oe��_�T��;�z��)H���Z��-01�9�9�A�X�*���W=���aCKjͼ�s<�j8�4ה��23���1^��h�OI$AC��{t�:����ơ�N���xJ���ԍ�x��o����p�r� ��}� ���w�/t���a��0k��� +�D~XQ��k��?Ý3R��e��P������d��#�Q7T�*Ǖ�It��ct$��4зB�^��c�uż��i�J����^#��U�Gq����3�`��R�={&#^�K�䋷�>�S$U�>��f��.0w� #�r�{!�gٜ��tiL���P1֣.��֨���������Sd���!�m[Ú�_�7F��z�����?�q�ݿ�x���J��;��1���X����+��-'he��:b���p�����3���.�T~�hzŽݺ�r�h��˜�1_�$��o����_ $kǟ_�W��S㿇�XŪA��Wṯf� �� ǣG���P�� �v�c< κtQ�r+���.�p�K�Xc�Tw>6�e�^��W-Y�5�����s���ULn��=OY��&1�\o�|weD���Z��K �yT��9�w/�1��'R�JQ��=w_l�Nz���?�-U�.C78Pk�|[�k��}�L=�+����F}�I�_�e�B :��V#5�t���-��sp]-O����8�����e썞��K��e���U7[�ך�\O�ëB(�+c�U��\��g��X�<�ǖ4���Bzьb�G܊ ₸4b��<��;R�I�h�4��\P�8�A������ SUMM�x,�|��y�"BO9��Fo�*�(��Mc)��!�����Yh��8���@ʎi댁�FzV�ށ�,v�. 6+��m�S×;=Ŧrb���_�N�6�'��K��R�,01���1��q���R����8�#� �:6����G � ��Z��G<t�q_��iS-��,@.�8?�{����ӔH�dۃ��W��# ���9]~G���U4�a����r�H__aOV�P:t&��t��>�d�h�;d�G�UWR29�}*"�R*QwL���t��5f�2±'�¦�رQ��~�N7=�:�5">��5��&���O'#�L�?��R�`~��A�T��<�u�SDā�'���S�ΈT-��cwA��ju�`����J�#��ڤW���s�V../C�5 (fn9���r)x�q�X�˂O�1S�.�N9�]Tq2���36�qU���==��_\�����J�G#�Oƽ�.2��H�Iz�銳����㐑��Y�B[{C��)�����P�=k&)xO�Y�\+���T�h%8�5����c��~���/;�c��E�ЏwB:�s^���;�2�Tk�5��������^������u7n����^ p�%8����ֺ���m��"��;���ܗly�z{��t������`����Z?F�Z5R����Ixd�R���:r*[p&.�^�f���d<���}@7�����2�� ���)?U� q�]�������M*[��Q���V+���$p;S&S9 &��Ek�I��ie�� �T(�4��<�֮ (T0��"��]��x��j�ùZU�11d��8K2Ās�qWc@#P�T����}� ���u�q��.Il!{RҜ��9�*�r�b��3�u��$8���>��3.���֎2qHZ�3�PO�wu��18��ۣ�m ��}���y�.��9�j�ME��e�$����9�����*F=��V\�������>�EJ�QܘNe!NAG�I��1�ð�s�ʠ�dc✲���y���KK�;��:ԭ2y@�U�z�^:i�c�=kMR�V'��㛌�ϯjѹ����3�ySިۺ�~N9sRG!����zӧ.D��%r������!�z`W)5���j���5�$ci5?�< �Cn'�dVp�ڵ��ã�,w1� &@��� Up�4����c/���k�O�O�Qr��t5�|O�g k�Zuьo�����e$���4ѥ��}3PCql匊pS=� _��w�&��Z�4�2�*�����MKT�[Q�f,���_�y�}M{��N5熧5R�Zߵ֟=0�8*��Xߋ�u�`G�Y]���[��:}H����kC��A_fX{���?�l��tWcoo�#Px���%R�*j�]-�v�����9`�)|�?{ڝ!(���9�c˶ң�Xo�>x�� �������.|�/�1�*���/�CJ�3|�\Wn��g"�V�-��c�iA�Ms;��-&��RYħ�F0+u����9���Q�084����xQǯ�N/�6[���D`Oʠd��錙;Q��>O�4����5�4��C���� ���0�u��})�%�@V'm��Fǡ�� !�r2G�]�$:�R�xq�/�.y�+��Iaqs�59n�K�Ynp�����K�Z��On���*���W��x���%�h��:�H����k�bz��R�{\D�o66#��b�f�n��E�_=�#ۥ܂8 �¾�<�h����Թ���}ۣ��������7Ή5���]y(���ݲ@�5��7ঃf�I,��@?��|͟^k�n�,,��@|V]����b%�D#���䮫TӲ�~�����h�Z�KH�b*"�508�7ֶ�S�B��>2��a� ��+��5����\զō��@���gN���J]ޟ��'-ϧ<5��k��n�$X�����x�F���b.�?,�����~5�~��3��tqo�i��<28ܣ�]w��O�m��gk�kݧW!�a�#^K��ٯC�k �q�L�VۼFp�[C"��;�ɮO@�lS8�X��A=+�K�4`���s^*�o�uY�/4Y9�l��2�?Ғ��e�;R�<���]�����E`�����i%������zgz��O��B���֊م�ZY@��7q�P5��ޤ�_Z�x�4��n�{���M��pps\uirI������ c�Tk�\�����4,"??~�����a"��IE��R��H���Uq�ry�E�Nq�g\��}i��d�V�6�ݚ`�-�f�B�J�qf#tl�0@54�cr��Q�Z\��!���(�=��j 멗�iV���8�W�|Y�W�l�;_��/Z��l.��n��;�.K�����+�T������_�5���C�x+Q�o+�RS��(�>���XƋ�+�Χf�<ѷ��s�|��;�ƹ�H�G�$_s�q1V�U�϶�q�l$$���y4�D��z�{h� `���Zw6�$�f��N��l��d&��U�V<�R��s�DT��{TQi�S�}�֭�o�'�WT�{b��Wm��+�siA�*��Dۢ�ԏC��f����6��O�j�RIjf�A�%���5o����xx�Ő.�z��S����q��c�lqֱ�(�g�F���{�h���\�%�|w��]֫�M�6G$���0�*x��ѷl�mO���FU#U�+�S\JĖ,O|�fC�ke�cc�7�}=pN?*�U`s:rF[K��zc�nZ��wn}�U�t=?*�J=qh��3M&��0'�aC��j�<�F�F�0 P@ӟZ{�`�@ �NS��J�"8�݀�ccڜ�1lU��dU�"��n+9T��l���������ŵ�g���F�(�G|qXKR�ٍ�b:�S����N{֒[l�x���S�0Xaf9���g��R�E��h�x�oo��� �xU��~�� ��Q��;5��7r1�j�A���Z�Բ���dx%���]/�-����xC�f���{�Z0�8�Z�_B�w��Z�0����� &� ��F@�?Ʋ~�}��R�(�Y;�)Ꮓ�VH��l��Xt���^��TG �������T�� ��U�*�D ����f��Cq�;��8�+�V���H�����+-�q��)-�p���;g�&��P��(�ߚ���Л�SR���e��R�0GZ���n����q�����a+�>��;?����iR�V�楷c�3��f浧�h[$�8+��5&�rOq�z��5�;���I��9�ֹi�h%)2`7/�k �����c��-��*�V_>����A\rs�ҟݑ��#��9�zf����I��l�rFe����l�>'��@-���q�����9#s1���ֲqGDf[F��t#����b~��ؚ����(|�ǜ���XJL&^�PQ��[����d��X�sc��㓒G<�uT�Λ7���y�3�s�*�Sp9�����8�8犻m?t�z�\ovl�lE 8��֭C!���Ʋb���= �PJ �������hd�r={�G�f#PLc�P�f�C!�}y�J��3�����x���_� ��0=����u��K$V��[K|Ѹ� x��C�<��Y�?^k���2_4����.!;W�����C�e���VK}z_U�B��_��������9-uKC�;���S�+�mn�~V�8a_'��(�Ȗ�eS�p9�߁����@��KC�@?w�q2��Ӹ���r���,�*����w�~���a�*iQ����! �Gw��(`��tˈ�P�y4��}�H��z�NgO0�������ppv*���*h�E-��Ңep����� �[��I�~�:��� ?��r)�A�E>r6T����G�0 �{1�2~��KpP�9�M�O�����N�c-�:�u�����YHN��zX��~a��{����dT�t�L%;�˷9�`8��A$l܃��j�����䓎�� 2a�<T��T�\��U k��bE�r =�4�}�)�Ia��T�Dv��ʺ�r6(�p�O28��r9�u�p:Tq'�p?:��'f2drc�OS�j[k�%��\�LE*�r;�)%�rx��p��ܗ���ೞs$��{�O�@* ��Gjk��i��{�!�Ѧ���.6�rj)>\ay�B)RNI��nb�%��\��R�$.��+�<�R�YF6��T�9�)�`�J�q�I�x>��V��$��|�u�MQ�F��\� ��(���z-�U08�,y`3�i��^q�y�T�5���c�H3L�(c��PB���֦`���`��U9�Fⵙ�Y�d*L��b;ict���{Q*!<q�e�����14�s[Eq'�"�P7��W6����`����nI.A�ʩj� <��Z��ख�Z�=��^;ֵL�6Q�<�'5�E����13Z����#?L�_U|(���q�=�rt�d�J��GL���6�V���ь��{�I<���MFN�k�����c��#�ϊ�5��2��n����s�Wy��_J�`P�ě}��|Y�xoU��GP"����8�-�<y�j�y:m�����_j��N���Q��{�D�I�7Z�u�iT,��+˾$�E�&H�4� "�I� �_��^;�o�@�y#$g�5�x[�}����A�����~��*8x�~��+�4K�j�?ጾ!��0�6�Ej�����4�,���:c5GD��(�T;V�IhT`c�k�S��u%^�2�["ݱh��pz�OK�I�G|U5�U+����;pF{ �I؞��o9��ު����#��Tb���{b��YI"�@��YK�Jz�a�l��U*AQ�t����;�,sZ1iѠ�H�z���)Q�ҷ�r���7] V�|�}@\{ՅӢq��OO�Cu�C�ι�γ�<Ok��~�St� &�qi`�Ͽ4�\+(E :W;�4뉌i@�-��7�|Ay��5�V��~�^Joz�P�UI�Oo3EJM]���qu�s���ո|��u�?��_-�*u���O�Q�Bb��Nkٌ1K��"��l�V��Ѐ�E���6�o��H���W�0�n����y��n� N� =ӊ��c%/�2[�V��f�[MF(wʸ�x:�R���R\-y���G���霊�4��:uտ�s������z�k�*��Y�?��O4�v�H�x��ỻ)�e���Ҿ��u�-F=�*8�<�W�|E����yj =T]yFu��?a_�]��.�yj|�{������T�%H��H�H�]��+�D;�=+�OGS��5�4�|�6p���X��-�A��q���+b�I;�كϺ�xg�W� ��Ǜ*3��A��CI��g���~�A�^�գH�\P 9 �2|ܩ ��S��|��zz?.>��n�X��@��ǭ1��:�u�\�,��ۭD�K�'"�2�� 2���D���zwzH���Z��z�21��$ �4�j��Im��A?�H��~��{+������)�`�[��=)RG����{t�-�ԃK8�kb82q��Vb�lr�G�g,K]JX{������d������;|7��ZZ�8* ����F����:+�a��52iS)ڪI��w�?�oop�[1����_�e���VPFpZ�q9�* �$�����{m"��R6l�5���#]ԥ ��I^������X��T�ܯZ��x�������;���x�_�g�+,���(�o�Ʒp�Yԅ#��k���� ����y�<gھ��A����U��m����^\�3�_�����M{�<�Þ��5_��w������0�1]ٰ�q�t튭u�B��F+íB�Is�vm�9Hu���P������9�n_�HC�=��-4Y1���ָ�R��V�L���x�W�&�����cҴ��ОWٸ��%�^5�g�T��^���=#�8ܳ�Tq�s��p���J��2�U����1�_��}}�U%f��6h����s2(ry�j��s�6qҪb�%����:ջ; D�Eڧ���Y���L��ǧQ���$�Ι1P��C��ֲ�P�����v]CIӨ�s��q`�- �09Ʃ']��{�i<�ܩ��#1\����e��N��;���1���]�&wõ�9����3�`�s�T��PI�Np Uw܍��x��F��۸ǥw��9ٖć�����K|ߎ; ���������99�x"��N�O�l1�9���*I���֪$�& ��nޕ$m�=OaYJ7�B�rl��0b)y���G<����R����׃X��T��m1�9� ��+)@�$���V��0���zX|c���27 �����Y���]�y����i�LN9�U/M��q��N;��h���z8����O����������G�E6�z�+�8��E��S��xG�x��k��p�G���7���W�`?���_��?�C�f�+�<#�v�k�����E~Yß�1�}#dT����W��p���G!i��ƣ��߅Uu���1TG��E��>�K/�����QZC�b�-?�N���QY��������&�+J[�?��ޤo��O�E�B�O� 2.��R��} �4��}h���I�����T����Eb2���W�Ҋ+>���b?���)/>�������z�*��_�O���=���["�,]V����QEl�Jܒ��)��4QR���?�ҧo��E�1��Xjo�g��E�� o�_�0����w���'���QE}��Ȯ��x���ס��ş�.���:���E��o��_�ϥ�������*�-z���E͕�Or���J�����(��ko-�i>�:O�Ɗ*�Ģ��J�F��(���K7������Z(��$r��W�J�5����h�����֙�^��q?�����ȵ�n��QEx�A��:h�ϕ5��M���U�s����4Q_�a>�]o�������� n��c��h��a�:�2t_�/��i�����E݈�G.dz߁��>����~4Q_ W���z���������g/����E}e/ᣥnʷ�p�kS�~��+���p�1�����S���Q^�����B�A�����QYȸ�Mq��� Q_��4QS �����i��h��! |� )�h�� z������h���*�5yՏ��4QXϡ�"h:7Ҷ4/��_��tQ\uv;h|g���=����k�|)�#�t#E���_3�{ލ�~�������J(�0��-Ʒ��*���袷��.�m���G���h��?�*\���Ӡ�ޢ���H�?w�_�Ɗ+g�"��ֲ�~���Ep�����7}G�QED����� �����m��}7�E�S�p�?��UjO��_Ɗ+˯�Dx����9-s�CR��G����ٍW�R�O���~��o����,?��?�QEWQ-�GU��VOc�=I���O�� ���G�¦���H���xU��ק��h��u�C���ު����r��Ez�>��z�� |
| URL | http://zero.webappsecurity.com/resources/js/bootstrap.min.js |
| Method | GET |
| Parameter | X-Content-Type-Options |
| Attack | |
| Evidence | |
| Request Header - size: 284 bytes. |
GET http://zero.webappsecurity.com/resources/js/bootstrap.min.js HTTP/1.1
Host: zero.webappsecurity.com User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0 Pragma: no-cache Cache-Control: no-cache Referer: http://zero.webappsecurity.com |
| Request Body - size: 0 bytes. |
|
| Response Header - size: 361 bytes. |
HTTP/1.1 200 OK
Date: Mon, 14 Mar 2022 07:13:42 GMT Server: Apache-Coyote/1.1 Access-Control-Allow-Origin: * Accept-Ranges: bytes ETag: W/"26898-1358437290000" Last-Modified: Thu, 17 Jan 2013 15:41:30 GMT Cache-Control: max-age=2678400 Expires: Thu, 14 Apr 2022 07:13:43 GMT Content-Type: application/javascript;charset=UTF-8 Content-Length: 26898 |
| Response Body - size: 26,898 bytes. |
/**
* Bootstrap.js by @fat & @mdo * plugins: bootstrap-transition.js, bootstrap-modal.js, bootstrap-dropdown.js, bootstrap-scrollspy.js, bootstrap-tab.js, bootstrap-tooltip.js, bootstrap-popover.js, bootstrap-affix.js, bootstrap-alert.js, bootstrap-button.js, bootstrap-collapse.js, bootstrap-carousel.js, bootstrap-typeahead.js * Copyright 2012 Twitter, Inc. * http://www.apache.org/licenses/LICENSE-2.0.txt */ !function(a){a(function(){a.support.transition=function(){var a=function(){var a=document.createElement("bootstrap"),b={WebkitTransition:"webkitTransitionEnd",MozTransition:"transitionend",OTransition:"oTransitionEnd otransitionend",transition:"transitionend"},c;for(c in b)if(a.style[c]!==undefined)return b[c]}();return a&&{end:a}}()})}(window.jQuery),!function(a){var b=function(b,c){this.options=c,this.$element=a(b).delegate('[data-dismiss="modal"]',"click.dismiss.modal",a.proxy(this.hide,this)),this.options.remote&&this.$element.find(".modal-body").load(this.options.remote)};b.prototype={constructor:b,toggle:function(){return this[this.isShown?"hide":"show"]()},show:function(){var b=this,c=a.Event("show");this.$element.trigger(c);if(this.isShown||c.isDefaultPrevented())return;this.isShown=!0,this.escape(),this.backdrop(function(){var c=a.support.transition&&b.$element.hasClass("fade");b.$element.parent().length||b.$element.appendTo(document.body),b.$element.show(),c&&b.$element[0].offsetWidth,b.$element.addClass("in").attr("aria-hidden",!1),b.enforceFocus(),c?b.$element.one(a.support.transition.end,function(){b.$element.focus().trigger("shown")}):b.$element.focus().trigger("shown")})},hide:function(b){b&&b.preventDefault();var c=this;b=a.Event("hide"),this.$element.trigger(b);if(!this.isShown||b.isDefaultPrevented())return;this.isShown=!1,this.escape(),a(document).off("focusin.modal"),this.$element.removeClass("in").attr("aria-hidden",!0),a.support.transition&&this.$element.hasClass("fade")?this.hideWithTransition():this.hideModal()},enforceFocus:function(){var b=this;a(document).on("focusin.modal",function(a){b.$element[0]!==a.target&&!b.$element.has(a.target).length&&b.$element.focus()})},escape:function(){var a=this;this.isShown&&this.options.keyboard?this.$element.on("keyup.dismiss.modal",function(b){b.which==27&&a.hide()}):this.isShown||this.$element.off("keyup.dismiss.modal")},hideWithTransition:function(){var b=this,c=setTimeout(function(){b.$element.off(a.support.transition.end),b.hideModal()},500);this.$element.one(a.support.transition.end,function(){clearTimeout(c),b.hideModal()})},hideModal:function(a){this.$element.hide().trigger("hidden"),this.backdrop()},removeBackdrop:function(){this.$backdrop.remove(),this.$backdrop=null},backdrop:function(b){var c=this,d=this.$element.hasClass("fade")?"fade":"";if(this.isShown&&this.options.backdrop){var e=a.support.transition&&d;this.$backdrop=a('<div class="modal-backdrop '+d+'" />').appendTo(document.body),this.$backdrop.click(this.options.backdrop=="static"?a.proxy(this.$element[0].focus,this.$element[0]):a.proxy(this.hide,this)),e&&this.$backdrop[0].offsetWidth,this.$backdrop.addClass("in"),e?this.$backdrop.one(a.support.transition.end,b):b()}else!this.isShown&&this.$backdrop?(this.$backdrop.removeClass("in"),a.support.transition&&this.$element.hasClass("fade")?this.$backdrop.one(a.support.transition.end,a.proxy(this.removeBackdrop,this)):this.removeBackdrop()):b&&b()}};var c=a.fn.modal;a.fn.modal=function(c){return this.each(function(){var d=a(this),e=d.data("modal"),f=a.extend({},a.fn.modal.defaults,d.data(),typeof c=="object"&&c);e||d.data("modal",e=new b(this,f)),typeof c=="string"?e[c]():f.show&&e.show()})},a.fn.modal.defaults={backdrop:!0,keyboard:!0,show:!0},a.fn.modal.Constructor=b,a.fn.modal.noConflict=function(){return a.fn.modal=c,this},a(document).on("click.modal.data-api",'[data-toggle="modal"]',function(b){var c=a(this),d=c.attr("href"),e=a(c.attr("data-target")||d&&d.replace(/.*(?=#[^\s]+$)/,"")),f=e.data("modal")?"toggle":a.extend({remote:!/#/.test(d)&&d},e.data(),c.data());b.preventDefault(),e.modal(f).one("hide",function(){c.focus()})})}(window.jQuery),!function(a){function d(){a(b).each(function(){e(a(this)).removeClass("open")})}function e(b){var c=b.attr("data-target"),d;return c||(c=b.attr("href"),c=c&&/#/.test(c)&&c.replace(/.*(?=#[^\s]*$)/,"")),d=a(c),d.length||(d=b.parent()),d}var b="[data-toggle=dropdown]",c=function(b){var c=a(b).on("click.dropdown.data-api",this.toggle);a("html").on("click.dropdown.data-api",function(){c.parent().removeClass("open")})};c.prototype={constructor:c,toggle:function(b){var c=a(this),f,g;if(c.is(".disabled, :disabled"))return;return f=e(c),g=f.hasClass("open"),d(),g||f.toggleClass("open"),c.focus(),!1},keydown:function(b){var c,d,f,g,h,i;if(!/(38|40|27)/.test(b.keyCode))return;c=a(this),b.preventDefault(),b.stopPropagation();if(c.is(".disabled, :disabled"))return;g=e(c),h=g.hasClass("open");if(!h||h&&b.keyCode==27)return c.click();d=a("[role=menu] li:not(.divider):visible a",g);if(!d.length)return;i=d.index(d.filter(":focus")),b.keyCode==38&&i>0&&i--,b.keyCode==40&&i<d.length-1&&i++,~i||(i=0),d.eq(i).focus()}};var f=a.fn.dropdown;a.fn.dropdown=function(b){return this.each(function(){var d=a(this),e=d.data("dropdown");e||d.data("dropdown",e=new c(this)),typeof b=="string"&&e[b].call(d)})},a.fn.dropdown.Constructor=c,a.fn.dropdown.noConflict=function(){return a.fn.dropdown=f,this},a(document).on("click.dropdown.data-api touchstart.dropdown.data-api",d).on("click.dropdown touchstart.dropdown.data-api",".dropdown form",function(a){a.stopPropagation()}).on("touchstart.dropdown.data-api",".dropdown-menu",function(a){a.stopPropagation()}).on("click.dropdown.data-api touchstart.dropdown.data-api",b,c.prototype.toggle).on("keydown.dropdown.data-api touchstart.dropdown.data-api",b+", [role=menu]",c.prototype.keydown)}(window.jQuery),!function(a){function b(b,c){var d=a.proxy(this.process,this),e=a(b).is("body")?a(window):a(b),f;this.options=a.extend({},a.fn.scrollspy.defaults,c),this.$scrollElement=e.on("scroll.scroll-spy.data-api",d),this.selector=(this.options.target||(f=a(b).attr("href"))&&f.replace(/.*(?=#[^\s]+$)/,"")||"")+" .nav li > a",this.$body=a("body"),this.refresh(),this.process()}b.prototype={constructor:b,refresh:function(){var b=this,c;this.offsets=a([]),this.targets=a([]),c=this.$body.find(this.selector).map(function(){var c=a(this),d=c.data("target")||c.attr("href"),e=/^#\w/.test(d)&&a(d);return e&&e.length&&[[e.position().top+b.$scrollElement.scrollTop(),d]]||null}).sort(function(a,b){return a[0]-b[0]}).each(function(){b.offsets.push(this[0]),b.targets.push(this[1])})},process:function(){var a=this.$scrollElement.scrollTop()+this.options.offset,b=this.$scrollElement[0].scrollHeight||this.$body[0].scrollHeight,c=b-this.$scrollElement.height(),d=this.offsets,e=this.targets,f=this.activeTarget,g;if(a>=c)return f!=(g=e.last()[0])&&this.activate(g);for(g=d.length;g--;)f!=e[g]&&a>=d[g]&&(!d[g+1]||a<=d[g+1])&&this.activate(e[g])},activate:function(b){var c,d;this.activeTarget=b,a(this.selector).parent(".active").removeClass("active"),d=this.selector+'[data-target="'+b+'"],'+this.selector+'[href="'+b+'"]',c=a(d).parent("li").addClass("active"),c.parent(".dropdown-menu").length&&(c=c.closest("li.dropdown").addClass("active")),c.trigger("activate")}};var c=a.fn.scrollspy;a.fn.scrollspy=function(c){return this.each(function(){var d=a(this),e=d.data("scrollspy"),f=typeof c=="object"&&c;e||d.data("scrollspy",e=new b(this,f)),typeof c=="string"&&e[c]()})},a.fn.scrollspy.Constructor=b,a.fn.scrollspy.defaults={offset:10},a.fn.scrollspy.noConflict=function(){return a.fn.scrollspy=c,this},a(window).on("load",function(){a('[data-spy="scroll"]').each(function(){var b=a(this);b.scrollspy(b.data())})})}(window.jQuery),!function(a){var b=function(b){this.element=a(b)};b.prototype={constructor:b,show:function(){var b=this.element,c=b.closest("ul:not(.dropdown-menu)"),d=b.attr("data-target"),e,f,g;d||(d=b.attr("href"),d=d&&d.replace(/.*(?=#[^\s]*$)/,""));if(b.parent("li").hasClass("active"))return;e=c.find(".active:last a")[0],g=a.Event("show",{relatedTarget:e}),b.trigger(g);if(g.isDefaultPrevented())return;f=a(d),this.activate(b.parent("li"),c),this.activate(f,f.parent(),function(){b.trigger({type:"shown",relatedTarget:e})})},activate:function(b,c,d){function g(){e.removeClass("active").find("> .dropdown-menu > .active").removeClass("active"),b.addClass("active"),f?(b[0].offsetWidth,b.addClass("in")):b.removeClass("fade"),b.parent(".dropdown-menu")&&b.closest("li.dropdown").addClass("active"),d&&d()}var e=c.find("> .active"),f=d&&a.support.transition&&e.hasClass("fade");f?e.one(a.support.transition.end,g):g(),e.removeClass("in")}};var c=a.fn.tab;a.fn.tab=function(c){return this.each(function(){var d=a(this),e=d.data("tab");e||d.data("tab",e=new b(this)),typeof c=="string"&&e[c]()})},a.fn.tab.Constructor=b,a.fn.tab.noConflict=function(){return a.fn.tab=c,this},a(document).on("click.tab.data-api",'[data-toggle="tab"], [data-toggle="pill"]',function(b){b.preventDefault(),a(this).tab("show")})}(window.jQuery),!function(a){var b=function(a,b){this.init("tooltip",a,b)};b.prototype={constructor:b,init:function(b,c,d){var e,f;this.type=b,this.$element=a(c),this.options=this.getOptions(d),this.enabled=!0,this.options.trigger=="click"?this.$element.on("click."+this.type,this.options.selector,a.proxy(this.toggle,this)):this.options.trigger!="manual"&&(e=this.options.trigger=="hover"?"mouseenter":"focus",f=this.options.trigger=="hover"?"mouseleave":"blur",this.$element.on(e+"."+this.type,this.options.selector,a.proxy(this.enter,this)),this.$element.on(f+"."+this.type,this.options.selector,a.proxy(this.leave,this))),this.options.selector?this._options=a.extend({},this.options,{trigger:"manual",selector:""}):this.fixTitle()},getOptions:function(b){return b=a.extend({},a.fn[this.type].defaults,b,this.$element.data()),b.delay&&typeof b.delay=="number"&&(b.delay={show:b.delay,hide:b.delay}),b},enter:function(b){var c=a(b.currentTarget)[this.type](this._options).data(this.type);if(!c.options.delay||!c.options.delay.show)return c.show();clearTimeout(this.timeout),c.hoverState="in",this.timeout=setTimeout(function(){c.hoverState=="in"&&c.show()},c.options.delay.show)},leave:function(b){var c=a(b.currentTarget)[this.type](this._options).data(this.type);this.timeout&&clearTimeout(this.timeout);if(!c.options.delay||!c.options.delay.hide)return c.hide();c.hoverState="out",this.timeout=setTimeout(function(){c.hoverState=="out"&&c.hide()},c.options.delay.hide)},show:function(){var a,b,c,d,e,f,g;if(this.hasContent()&&this.enabled){a=this.tip(),this.setContent(),this.options.animation&&a.addClass("fade"),f=typeof this.options.placement=="function"?this.options.placement.call(this,a[0],this.$element[0]):this.options.placement,b=/in/.test(f),a.detach().css({top:0,left:0,display:"block"}).insertAfter(this.$element),c=this.getPosition(b),d=a[0].offsetWidth,e=a[0].offsetHeight;switch(b?f.split(" ")[1]:f){case"bottom":g={top:c.top+c.height,left:c.left+c.width/2-d/2};break;case"top":g={top:c.top-e,left:c.left+c.width/2-d/2};break;case"left":g={top:c.top+c.height/2-e/2,left:c.left-d};break;case"right":g={top:c.top+c.height/2-e/2,left:c.left+c.width}}a.offset(g).addClass(f).addClass("in")}},setContent:function(){var a=this.tip(),b=this.getTitle();a.find(".tooltip-inner")[this.options.html?"html":"text"](b),a.removeClass("fade in top bottom left right")},hide:function(){function d(){var b=setTimeout(function(){c.off(a.support.transition.end).detach()},500);c.one(a.support.transition.end,function(){clearTimeout(b),c.detach()})}var b=this,c=this.tip();return c.removeClass("in"),a.support.transition&&this.$tip.hasClass("fade")?d():c.detach(),this},fixTitle:function(){var a=this.$element;(a.attr("title")||typeof a.attr("data-original-title")!="string")&&a.attr("data-original-title",a.attr("title")||"").removeAttr("title")},hasContent:function(){return this.getTitle()},getPosition:function(b){return a.extend({},b?{top:0,left:0}:this.$element.offset(),{width:this.$element[0].offsetWidth,height:this.$element[0].offsetHeight})},getTitle:function(){var a,b=this.$element,c=this.options;return a=b.attr("data-original-title")||(typeof c.title=="function"?c.title.call(b[0]):c.title),a},tip:function(){return this.$tip=this.$tip||a(this.options.template)},validate:function(){this.$element[0].parentNode||(this.hide(),this.$element=null,this.options=null)},enable:function(){this.enabled=!0},disable:function(){this.enabled=!1},toggleEnabled:function(){this.enabled=!this.enabled},toggle:function(b){var c=a(b.currentTarget)[this.type](this._options).data(this.type);c[c.tip().hasClass("in")?"hide":"show"]()},destroy:function(){this.hide().$element.off("."+this.type).removeData(this.type)}};var c=a.fn.tooltip;a.fn.tooltip=function(c){return this.each(function(){var d=a(this),e=d.data("tooltip"),f=typeof c=="object"&&c;e||d.data("tooltip",e=new b(this,f)),typeof c=="string"&&e[c]()})},a.fn.tooltip.Constructor=b,a.fn.tooltip.defaults={animation:!0,placement:"top",selector:!1,template:'<div class="tooltip"><div class="tooltip-arrow"></div><div class="tooltip-inner"></div></div>',trigger:"hover",title:"",delay:0,html:!1},a.fn.tooltip.noConflict=function(){return a.fn.tooltip=c,this}}(window.jQuery),!function(a){var b=function(a,b){this.init("popover",a,b)};b.prototype=a.extend({},a.fn.tooltip.Constructor.prototype,{constructor:b,setContent:function(){var a=this.tip(),b=this.getTitle(),c=this.getContent();a.find(".popover-title")[this.options.html?"html":"text"](b),a.find(".popover-content")[this.options.html?"html":"text"](c),a.removeClass("fade top bottom left right in")},hasContent:function(){return this.getTitle()||this.getContent()},getContent:function(){var a,b=this.$element,c=this.options;return a=b.attr("data-content")||(typeof c.content=="function"?c.content.call(b[0]):c.content),a},tip:function(){return this.$tip||(this.$tip=a(this.options.template)),this.$tip},destroy:function(){this.hide().$element.off("."+this.type).removeData(this.type)}});var c=a.fn.popover;a.fn.popover=function(c){return this.each(function(){var d=a(this),e=d.data("popover"),f=typeof c=="object"&&c;e||d.data("popover",e=new b(this,f)),typeof c=="string"&&e[c]()})},a.fn.popover.Constructor=b,a.fn.popover.defaults=a.extend({},a.fn.tooltip.defaults,{placement:"right",trigger:"click",content:"",template:'<div class="popover"><div class="arrow"></div><div class="popover-inner"><h3 class="popover-title"></h3><div class="popover-content"></div></div></div>'}),a.fn.popover.noConflict=function(){return a.fn.popover=c,this}}(window.jQuery),!function(a){var b=function(b,c){this.options=a.extend({},a.fn.affix.defaults,c),this.$window=a(window).on("scroll.affix.data-api",a.proxy(this.checkPosition,this)).on("click.affix.data-api",a.proxy(function(){setTimeout(a.proxy(this.checkPosition,this),1)},this)),this.$element=a(b),this.checkPosition()};b.prototype.checkPosition=function(){if(!this.$element.is(":visible"))return;var b=a(document).height(),c=this.$window.scrollTop(),d=this.$element.offset(),e=this.options.offset,f=e.bottom,g=e.top,h="affix affix-top affix-bottom",i;typeof e!="object"&&(f=g=e),typeof g=="function"&&(g=e.top()),typeof f=="function"&&(f=e.bottom()),i=this.unpin!=null&&c+this.unpin<=d.top?!1:f!=null&&d.top+this.$element.height()>=b-f?"bottom":g!=null&&c<=g?"top":!1;if(this.affixed===i)return;this.affixed=i,this.unpin=i=="bottom"?d.top-c:null,this.$element.removeClass(h).addClass("affix"+(i?"-"+i:""))};var c=a.fn.affix;a.fn.affix=function(c){return this.each(function(){var d=a(this),e=d.data("affix"),f=typeof c=="object"&&c;e||d.data("affix",e=new b(this,f)),typeof c=="string"&&e[c]()})},a.fn.affix.Constructor=b,a.fn.affix.defaults={offset:0},a.fn.affix.noConflict=function(){return a.fn.affix=c,this},a(window).on("load",function(){a('[data-spy="affix"]').each(function(){var b=a(this),c=b.data();c.offset=c.offset||{},c.offsetBottom&&(c.offset.bottom=c.offsetBottom),c.offsetTop&&(c.offset.top=c.offsetTop),b.affix(c)})})}(window.jQuery),!function(a){var b='[data-dismiss="alert"]',c=function(c){a(c).on("click",b,this.close)};c.prototype.close=function(b){function f(){e.trigger("closed").remove()}var c=a(this),d=c.attr("data-target"),e;d||(d=c.attr("href"),d=d&&d.replace(/.*(?=#[^\s]*$)/,"")),e=a(d),b&&b.preventDefault(),e.length||(e=c.hasClass("alert")?c:c.parent()),e.trigger(b=a.Event("close"));if(b.isDefaultPrevented())return;e.removeClass("in"),a.support.transition&&e.hasClass("fade")?e.on(a.support.transition.end,f):f()};var d=a.fn.alert;a.fn.alert=function(b){return this.each(function(){var d=a(this),e=d.data("alert");e||d.data("alert",e=new c(this)),typeof b=="string"&&e[b].call(d)})},a.fn.alert.Constructor=c,a.fn.alert.noConflict=function(){return a.fn.alert=d,this},a(document).on("click.alert.data-api",b,c.prototype.close)}(window.jQuery),!function(a){var b=function(b,c){this.$element=a(b),this.options=a.extend({},a.fn.button.defaults,c)};b.prototype.setState=function(a){var b="disabled",c=this.$element,d=c.data(),e=c.is("input")?"val":"html";a+="Text",d.resetText||c.data("resetText",c[e]()),c[e](d[a]||this.options[a]),setTimeout(function(){a=="loadingText"?c.addClass(b).attr(b,b):c.removeClass(b).removeAttr(b)},0)},b.prototype.toggle=function(){var a=this.$element.closest('[data-toggle="buttons-radio"]');a&&a.find(".active").removeClass("active"),this.$element.toggleClass("active")};var c=a.fn.button;a.fn.button=function(c){return this.each(function(){var d=a(this),e=d.data("button"),f=typeof c=="object"&&c;e||d.data("button",e=new b(this,f)),c=="toggle"?e.toggle():c&&e.setState(c)})},a.fn.button.defaults={loadingText:"loading..."},a.fn.button.Constructor=b,a.fn.button.noConflict=function(){return a.fn.button=c,this},a(document).on("click.button.data-api","[data-toggle^=button]",function(b){var c=a(b.target);c.hasClass("btn")||(c=c.closest(".btn")),c.button("toggle")})}(window.jQuery),!function(a){var b=function(b,c){this.$element=a(b),this.options=a.extend({},a.fn.collapse.defaults,c),this.options.parent&&(this.$parent=a(this.options.parent)),this.options.toggle&&this.toggle()};b.prototype={constructor:b,dimension:function(){var a=this.$element.hasClass("width");return a?"width":"height"},show:function(){var b,c,d,e;if(this.transitioning)return;b=this.dimension(),c=a.camelCase(["scroll",b].join("-")),d=this.$parent&&this.$parent.find("> .accordion-group > .in");if(d&&d.length){e=d.data("collapse");if(e&&e.transitioning)return;d.collapse("hide"),e||d.data("collapse",null)}this.$element[b](0),this.transition("addClass",a.Event("show"),"shown"),a.support.transition&&this.$element[b](this.$element[0][c])},hide:function(){var b;if(this.transitioning)return;b=this.dimension(),this.reset(this.$element[b]()),this.transition("removeClass",a.Event("hide"),"hidden"),this.$element[b](0)},reset:function(a){var b=this.dimension();return this.$element.removeClass("collapse")[b](a||"auto")[0].offsetWidth,this.$element[a!==null?"addClass":"removeClass"]("collapse"),this},transition:function(b,c,d){var e=this,f=function(){c.type=="show"&&e.reset(),e.transitioning=0,e.$element.trigger(d)};this.$element.trigger(c);if(c.isDefaultPrevented())return;this.transitioning=1,this.$element[b]("in"),a.support.transition&&this.$element.hasClass("collapse")?this.$element.one(a.support.transition.end,f):f()},toggle:function(){this[this.$element.hasClass("in")?"hide":"show"]()}};var c=a.fn.collapse;a.fn.collapse=function(c){return this.each(function(){var d=a(this),e=d.data("collapse"),f=typeof c=="object"&&c;e||d.data("collapse",e=new b(this,f)),typeof c=="string"&&e[c]()})},a.fn.collapse.defaults={toggle:!0},a.fn.collapse.Constructor=b,a.fn.collapse.noConflict=function(){return a.fn.collapse=c,this},a(document).on("click.collapse.data-api","[data-toggle=collapse]",function(b){var c=a(this),d,e=c.attr("data-target")||b.preventDefault()||(d=c.attr("href"))&&d.replace(/.*(?=#[^\s]+$)/,""),f=a(e).data("collapse")?"toggle":c.data();c[a(e).hasClass("in")?"addClass":"removeClass"]("collapsed"),a(e).collapse(f)})}(window.jQuery),!function(a){var b=function(b,c){this.$element=a(b),this.options=c,this.options.pause=="hover"&&this.$element.on("mouseenter",a.proxy(this.pause,this)).on("mouseleave",a.proxy(this.cycle,this))};b.prototype={cycle:function(b){return b||(this.paused=!1),this.options.interval&&!this.paused&&(this.interval=setInterval(a.proxy(this.next,this),this.options.interval)),this},to:function(b){var c=this.$element.find(".item.active"),d=c.parent().children(),e=d.index(c),f=this;if(b>d.length-1||b<0)return;return this.sliding?this.$element.one("slid",function(){f.to(b)}):e==b?this.pause().cycle():this.slide(b>e?"next":"prev",a(d[b]))},pause:function(b){return b||(this.paused=!0),this.$element.find(".next, .prev").length&&a.support.transition.end&&(this.$element.trigger(a.support.transition.end),this.cycle()),clearInterval(this.interval),this.interval=null,this},next:function(){if(this.sliding)return;return this.slide("next")},prev:function(){if(this.sliding)return;return this.slide("prev")},slide:function(b,c){var d=this.$element.find(".item.active"),e=c||d[b](),f=this.interval,g=b=="next"?"left":"right",h=b=="next"?"first":"last",i=this,j;this.sliding=!0,f&&this.pause(),e=e.length?e:this.$element.find(".item")[h](),j=a.Event("slide",{relatedTarget:e[0]});if(e.hasClass("active"))return;if(a.support.transition&&this.$element.hasClass("slide")){this.$element.trigger(j);if(j.isDefaultPrevented())return;e.addClass(b),e[0].offsetWidth,d.addClass(g),e.addClass(g),this.$element.one(a.support.transition.end,function(){e.removeClass([b,g].join(" ")).addClass("active"),d.removeClass(["active",g].join(" ")),i.sliding=!1,setTimeout(function(){i.$element.trigger("slid")},0)})}else{this.$element.trigger(j);if(j.isDefaultPrevented())return;d.removeClass("active"),e.addClass("active"),this.sliding=!1,this.$element.trigger("slid")}return f&&this.cycle(),this}};var c=a.fn.carousel;a.fn.carousel=function(c){return this.each(function(){var d=a(this),e=d.data("carousel"),f=a.extend({},a.fn.carousel.defaults,typeof c=="object"&&c),g=typeof c=="string"?c:f.slide;e||d.data("carousel",e=new b(this,f)),typeof c=="number"?e.to(c):g?e[g]():f.interval&&e.cycle()})},a.fn.carousel.defaults={interval:5e3,pause:"hover"},a.fn.carousel.Constructor=b,a.fn.carousel.noConflict=function(){return a.fn.carousel=c,this},a(document).on("click.carousel.data-api","[data-slide]",function(b){var c=a(this),d,e=a(c.attr("data-target")||(d=c.attr("href"))&&d.replace(/.*(?=#[^\s]+$)/,"")),f=a.extend({},e.data(),c.data());e.carousel(f),b.preventDefault()})}(window.jQuery),!function(a){var b=function(b,c){this.$element=a(b),this.options=a.extend({},a.fn.typeahead.defaults,c),this.matcher=this.options.matcher||this.matcher,this.sorter=this.options.sorter||this.sorter,this.highlighter=this.options.highlighter||this.highlighter,this.updater=this.options.updater||this.updater,this.source=this.options.source,this.$menu=a(this.options.menu),this.shown=!1,this.listen()};b.prototype={constructor:b,select:function(){var a=this.$menu.find(".active").attr("data-value");return this.$element.val(this.updater(a)).change(),this.hide()},updater:function(a){return a},show:function(){var b=a.extend({},this.$element.position(),{height:this.$element[0].offsetHeight});return this.$menu.insertAfter(this.$element).css({top:b.top+b.height,left:b.left}).show(),this.shown=!0,this},hide:function(){return this.$menu.hide(),this.shown=!1,this},lookup:function(b){var c;return this.query=this.$element.val(),!this.query||this.query.length<this.options.minLength?this.shown?this.hide():this:(c=a.isFunction(this.source)?this.source(this.query,a.proxy(this.process,this)):this.source,c?this.process(c):this)},process:function(b){var c=this;return b=a.grep(b,function(a){return c.matcher(a)}),b=this.sorter(b),b.length?this.render(b.slice(0,this.options.items)).show():this.shown?this.hide():this},matcher:function(a){return~a.toLowerCase().indexOf(this.query.toLowerCase())},sorter:function(a){var b=[],c=[],d=[],e;while(e=a.shift())e.toLowerCase().indexOf(this.query.toLowerCase())?~e.indexOf(this.query)?c.push(e):d.push(e):b.push(e);return b.concat(c,d)},highlighter:function(a){var b=this.query.replace(/[\-\[\]{}()*+?.,\\\^$|#\s]/g,"\\$&");return a.replace(new RegExp("("+b+")","ig"),function(a,b){return"<strong>"+b+"</strong>"})},render:function(b){var c=this;return b=a(b).map(function(b,d){return b=a(c.options.item).attr("data-value",d),b.find("a").html(c.highlighter(d)),b[0]}),b.first().addClass("active"),this.$menu.html(b),this},next:function(b){var c=this.$menu.find(".active").removeClass("active"),d=c.next();d.length||(d=a(this.$menu.find("li")[0])),d.addClass("active")},prev:function(a){var b=this.$menu.find(".active").removeClass("active"),c=b.prev();c.length||(c=this.$menu.find("li").last()),c.addClass("active")},listen:function(){this.$element.on("blur",a.proxy(this.blur,this)).on("keypress",a.proxy(this.keypress,this)).on("keyup",a.proxy(this.keyup,this)),this.eventSupported("keydown")&&this.$element.on("keydown",a.proxy(this.keydown,this)),this.$menu.on("click",a.proxy(this.click,this)).on("mouseenter","li",a.proxy(this.mouseenter,this))},eventSupported:function(a){var b=a in this.$element;return b||(this.$element.setAttribute(a,"return;"),b=typeof this.$element[a]=="function"),b},move:function(a){if(!this.shown)return;switch(a.keyCode){case 9:case 13:case 27:a.preventDefault();break;case 38:a.preventDefault(),this.prev();break;case 40:a.preventDefault(),this.next()}a.stopPropagation()},keydown:function(b){this.suppressKeyPressRepeat=~a.inArray(b.keyCode,[40,38,9,13,27]),this.move(b)},keypress:function(a){if(this.suppressKeyPressRepeat)return;this.move(a)},keyup:function(a){switch(a.keyCode){case 40:case 38:case 16:case 17:case 18:break;case 9:case 13:if(!this.shown)return;this.select();break;case 27:if(!this.shown)return;this.hide();break;default:this.lookup()}a.stopPropagation(),a.preventDefault()},blur:function(a){var b=this;setTimeout(function(){b.hide()},150)},click:function(a){a.stopPropagation(),a.preventDefault(),this.select()},mouseenter:function(b){this.$menu.find(".active").removeClass("active"),a(b.currentTarget).addClass("active")}};var c=a.fn.typeahead;a.fn.typeahead=function(c){return this.each(function(){var d=a(this),e=d.data("typeahead"),f=typeof c=="object"&&c;e||d.data("typeahead",e=new b(this,f)),typeof c=="string"&&e[c]()})},a.fn.typeahead.defaults={source:[],items:8,menu:'<ul class="typeahead dropdown-menu"></ul>',item:'<li><a href="#"></a></li>',minLength:1},a.fn.typeahead.Constructor=b,a.fn.typeahead.noConflict=function(){return a.fn.typeahead=c,this},a(document).on("focus.typeahead.data-api",'[data-provide="typeahead"]',function(b){var c=a(this);if(c.data("typeahead"))return;b.preventDefault(),c.typeahead(c.data())})}(window.jQuery) |
| URL | http://zero.webappsecurity.com/resources/js/jquery-1.8.2.min.js |
| Method | GET |
| Parameter | X-Content-Type-Options |
| Attack | |
| Evidence | |
| Request Header - size: 287 bytes. |
GET http://zero.webappsecurity.com/resources/js/jquery-1.8.2.min.js HTTP/1.1
Host: zero.webappsecurity.com User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0 Pragma: no-cache Cache-Control: no-cache Referer: http://zero.webappsecurity.com |
| Request Body - size: 0 bytes. |
|
| Response Header - size: 361 bytes. |
HTTP/1.1 200 OK
Date: Mon, 14 Mar 2022 07:13:42 GMT Server: Apache-Coyote/1.1 Access-Control-Allow-Origin: * Accept-Ranges: bytes ETag: W/"93436-1358437290000" Last-Modified: Thu, 17 Jan 2013 15:41:30 GMT Cache-Control: max-age=2678400 Expires: Thu, 14 Apr 2022 07:13:43 GMT Content-Type: application/javascript;charset=UTF-8 Content-Length: 93436 |
| Response Body - size: 93,436 bytes. |
/*! jQuery v1.8.2 jquery.com | jquery.org/license */
(function(a,b){function G(a){var b=F[a]={};return p.each(a.split(s),function(a,c){b[c]=!0}),b}function J(a,c,d){if(d===b&&a.nodeType===1){var e="data-"+c.replace(I,"-$1").toLowerCase();d=a.getAttribute(e);if(typeof d=="string"){try{d=d==="true"?!0:d==="false"?!1:d==="null"?null:+d+""===d?+d:H.test(d)?p.parseJSON(d):d}catch(f){}p.data(a,c,d)}else d=b}return d}function K(a){var b;for(b in a){if(b==="data"&&p.isEmptyObject(a[b]))continue;if(b!=="toJSON")return!1}return!0}function ba(){return!1}function bb(){return!0}function bh(a){return!a||!a.parentNode||a.parentNode.nodeType===11}function bi(a,b){do a=a[b];while(a&&a.nodeType!==1);return a}function bj(a,b,c){b=b||0;if(p.isFunction(b))return p.grep(a,function(a,d){var e=!!b.call(a,d,a);return e===c});if(b.nodeType)return p.grep(a,function(a,d){return a===b===c});if(typeof b=="string"){var d=p.grep(a,function(a){return a.nodeType===1});if(be.test(b))return p.filter(b,d,!c);b=p.filter(b,d)}return p.grep(a,function(a,d){return p.inArray(a,b)>=0===c})}function bk(a){var b=bl.split("|"),c=a.createDocumentFragment();if(c.createElement)while(b.length)c.createElement(b.pop());return c}function bC(a,b){return a.getElementsByTagName(b)[0]||a.appendChild(a.ownerDocument.createElement(b))}function bD(a,b){if(b.nodeType!==1||!p.hasData(a))return;var c,d,e,f=p._data(a),g=p._data(b,f),h=f.events;if(h){delete g.handle,g.events={};for(c in h)for(d=0,e=h[c].length;d<e;d++)p.event.add(b,c,h[c][d])}g.data&&(g.data=p.extend({},g.data))}function bE(a,b){var c;if(b.nodeType!==1)return;b.clearAttributes&&b.clearAttributes(),b.mergeAttributes&&b.mergeAttributes(a),c=b.nodeName.toLowerCase(),c==="object"?(b.parentNode&&(b.outerHTML=a.outerHTML),p.support.html5Clone&&a.innerHTML&&!p.trim(b.innerHTML)&&(b.innerHTML=a.innerHTML)):c==="input"&&bv.test(a.type)?(b.defaultChecked=b.checked=a.checked,b.value!==a.value&&(b.value=a.value)):c==="option"?b.selected=a.defaultSelected:c==="input"||c==="textarea"?b.defaultValue=a.defaultValue:c==="script"&&b.text!==a.text&&(b.text=a.text),b.removeAttribute(p.expando)}function bF(a){return typeof a.getElementsByTagName!="undefined"?a.getElementsByTagName("*"):typeof a.querySelectorAll!="undefined"?a.querySelectorAll("*"):[]}function bG(a){bv.test(a.type)&&(a.defaultChecked=a.checked)}function bY(a,b){if(b in a)return b;var c=b.charAt(0).toUpperCase()+b.slice(1),d=b,e=bW.length;while(e--){b=bW[e]+c;if(b in a)return b}return d}function bZ(a,b){return a=b||a,p.css(a,"display")==="none"||!p.contains(a.ownerDocument,a)}function b$(a,b){var c,d,e=[],f=0,g=a.length;for(;f<g;f++){c=a[f];if(!c.style)continue;e[f]=p._data(c,"olddisplay"),b?(!e[f]&&c.style.display==="none"&&(c.style.display=""),c.style.display===""&&bZ(c)&&(e[f]=p._data(c,"olddisplay",cc(c.nodeName)))):(d=bH(c,"display"),!e[f]&&d!=="none"&&p._data(c,"olddisplay",d))}for(f=0;f<g;f++){c=a[f];if(!c.style)continue;if(!b||c.style.display==="none"||c.style.display==="")c.style.display=b?e[f]||"":"none"}return a}function b_(a,b,c){var d=bP.exec(b);return d?Math.max(0,d[1]-(c||0))+(d[2]||"px"):b}function ca(a,b,c,d){var e=c===(d?"border":"content")?4:b==="width"?1:0,f=0;for(;e<4;e+=2)c==="margin"&&(f+=p.css(a,c+bV[e],!0)),d?(c==="content"&&(f-=parseFloat(bH(a,"padding"+bV[e]))||0),c!=="margin"&&(f-=parseFloat(bH(a,"border"+bV[e]+"Width"))||0)):(f+=parseFloat(bH(a,"padding"+bV[e]))||0,c!=="padding"&&(f+=parseFloat(bH(a,"border"+bV[e]+"Width"))||0));return f}function cb(a,b,c){var d=b==="width"?a.offsetWidth:a.offsetHeight,e=!0,f=p.support.boxSizing&&p.css(a,"boxSizing")==="border-box";if(d<=0||d==null){d=bH(a,b);if(d<0||d==null)d=a.style[b];if(bQ.test(d))return d;e=f&&(p.support.boxSizingReliable||d===a.style[b]),d=parseFloat(d)||0}return d+ca(a,b,c||(f?"border":"content"),e)+"px"}function cc(a){if(bS[a])return bS[a];var b=p("<"+a+">").appendTo(e.body),c=b.css("display");b.remove();if(c==="none"||c===""){bI=e.body.appendChild(bI||p.extend(e.createElement("iframe"),{frameBorder:0,width:0,height:0}));if(!bJ||!bI.createElement)bJ=(bI.contentWindow||bI.contentDocument).document,bJ.write("<!doctype html><html><body>"),bJ.close();b=bJ.body.appendChild(bJ.createElement(a)),c=bH(b,"display"),e.body.removeChild(bI)}return bS[a]=c,c}function ci(a,b,c,d){var e;if(p.isArray(b))p.each(b,function(b,e){c||ce.test(a)?d(a,e):ci(a+"["+(typeof e=="object"?b:"")+"]",e,c,d)});else if(!c&&p.type(b)==="object")for(e in b)ci(a+"["+e+"]",b[e],c,d);else d(a,b)}function cz(a){return function(b,c){typeof b!="string"&&(c=b,b="*");var d,e,f,g=b.toLowerCase().split(s),h=0,i=g.length;if(p.isFunction(c))for(;h<i;h++)d=g[h],f=/^\+/.test(d),f&&(d=d.substr(1)||"*"),e=a[d]=a[d]||[],e[f?"unshift":"push"](c)}}function cA(a,c,d,e,f,g){f=f||c.dataTypes[0],g=g||{},g[f]=!0;var h,i=a[f],j=0,k=i?i.length:0,l=a===cv;for(;j<k&&(l||!h);j++)h=i[j](c,d,e),typeof h=="string"&&(!l||g[h]?h=b:(c.dataTypes.unshift(h),h=cA(a,c,d,e,h,g)));return(l||!h)&&!g["*"]&&(h=cA(a,c,d,e,"*",g)),h}function cB(a,c){var d,e,f=p.ajaxSettings.flatOptions||{};for(d in c)c[d]!==b&&((f[d]?a:e||(e={}))[d]=c[d]);e&&p.extend(!0,a,e)}function cC(a,c,d){var e,f,g,h,i=a.contents,j=a.dataTypes,k=a.responseFields;for(f in k)f in d&&(c[k[f]]=d[f]);while(j[0]==="*")j.shift(),e===b&&(e=a.mimeType||c.getResponseHeader("content-type"));if(e)for(f in i)if(i[f]&&i[f].test(e)){j.unshift(f);break}if(j[0]in d)g=j[0];else{for(f in d){if(!j[0]||a.converters[f+" "+j[0]]){g=f;break}h||(h=f)}g=g||h}if(g)return g!==j[0]&&j.unshift(g),d[g]}function cD(a,b){var c,d,e,f,g=a.dataTypes.slice(),h=g[0],i={},j=0;a.dataFilter&&(b=a.dataFilter(b,a.dataType));if(g[1])for(c in a.converters)i[c.toLowerCase()]=a.converters[c];for(;e=g[++j];)if(e!=="*"){if(h!=="*"&&h!==e){c=i[h+" "+e]||i["* "+e];if(!c)for(d in i){f=d.split(" ");if(f[1]===e){c=i[h+" "+f[0]]||i["* "+f[0]];if(c){c===!0?c=i[d]:i[d]!==!0&&(e=f[0],g.splice(j--,0,e));break}}}if(c!==!0)if(c&&a["throws"])b=c(b);else try{b=c(b)}catch(k){return{state:"parsererror",error:c?k:"No conversion from "+h+" to "+e}}}h=e}return{state:"success",data:b}}function cL(){try{return new a.XMLHttpRequest}catch(b){}}function cM(){try{return new a.ActiveXObject("Microsoft.XMLHTTP")}catch(b){}}function cU(){return setTimeout(function(){cN=b},0),cN=p.now()}function cV(a,b){p.each(b,function(b,c){var d=(cT[b]||[]).concat(cT["*"]),e=0,f=d.length;for(;e<f;e++)if(d[e].call(a,b,c))return})}function cW(a,b,c){var d,e=0,f=0,g=cS.length,h=p.Deferred().always(function(){delete i.elem}),i=function(){var b=cN||cU(),c=Math.max(0,j.startTime+j.duration-b),d=1-(c/j.duration||0),e=0,f=j.tweens.length;for(;e<f;e++)j.tweens[e].run(d);return h.notifyWith(a,[j,d,c]),d<1&&f?c:(h.resolveWith(a,[j]),!1)},j=h.promise({elem:a,props:p.extend({},b),opts:p.extend(!0,{specialEasing:{}},c),originalProperties:b,originalOptions:c,startTime:cN||cU(),duration:c.duration,tweens:[],createTween:function(b,c,d){var e=p.Tween(a,j.opts,b,c,j.opts.specialEasing[b]||j.opts.easing);return j.tweens.push(e),e},stop:function(b){var c=0,d=b?j.tweens.length:0;for(;c<d;c++)j.tweens[c].run(1);return b?h.resolveWith(a,[j,b]):h.rejectWith(a,[j,b]),this}}),k=j.props;cX(k,j.opts.specialEasing);for(;e<g;e++){d=cS[e].call(j,a,k,j.opts);if(d)return d}return cV(j,k),p.isFunction(j.opts.start)&&j.opts.start.call(a,j),p.fx.timer(p.extend(i,{anim:j,queue:j.opts.queue,elem:a})),j.progress(j.opts.progress).done(j.opts.done,j.opts.complete).fail(j.opts.fail).always(j.opts.always)}function cX(a,b){var c,d,e,f,g;for(c in a){d=p.camelCase(c),e=b[d],f=a[c],p.isArray(f)&&(e=f[1],f=a[c]=f[0]),c!==d&&(a[d]=f,delete a[c]),g=p.cssHooks[d];if(g&&"expand"in g){f=g.expand(f),delete a[d];for(c in f)c in a||(a[c]=f[c],b[c]=e)}else b[d]=e}}function cY(a,b,c){var d,e,f,g,h,i,j,k,l=this,m=a.style,n={},o=[],q=a.nodeType&&bZ(a);c.queue||(j=p._queueHooks(a,"fx"),j.unqueued==null&&(j.unqueued=0,k=j.empty.fire,j.empty.fire=function(){j.unqueued||k()}),j.unqueued++,l.always(function(){l.always(function(){j.unqueued--,p.queue(a,"fx").length||j.empty.fire()})})),a.nodeType===1&&("height"in b||"width"in b)&&(c.overflow=[m.overflow,m.overflowX,m.overflowY],p.css(a,"display")==="inline"&&p.css(a,"float")==="none"&&(!p.support.inlineBlockNeedsLayout||cc(a.nodeName)==="inline"?m.display="inline-block":m.zoom=1)),c.overflow&&(m.overflow="hidden",p.support.shrinkWrapBlocks||l.done(function(){m.overflow=c.overflow[0],m.overflowX=c.overflow[1],m.overflowY=c.overflow[2]}));for(d in b){f=b[d];if(cP.exec(f)){delete b[d];if(f===(q?"hide":"show"))continue;o.push(d)}}g=o.length;if(g){h=p._data(a,"fxshow")||p._data(a,"fxshow",{}),q?p(a).show():l.done(function(){p(a).hide()}),l.done(function(){var b;p.removeData(a,"fxshow",!0);for(b in n)p.style(a,b,n[b])});for(d=0;d<g;d++)e=o[d],i=l.createTween(e,q?h[e]:0),n[e]=h[e]||p.style(a,e),e in h||(h[e]=i.start,q&&(i.end=i.start,i.start=e==="width"||e==="height"?1:0))}}function cZ(a,b,c,d,e){return new cZ.prototype.init(a,b,c,d,e)}function c$(a,b){var c,d={height:a},e=0;b=b?1:0;for(;e<4;e+=2-b)c=bV[e],d["margin"+c]=d["padding"+c]=a;return b&&(d.opacity=d.width=a),d}function da(a){return p.isWindow(a)?a:a.nodeType===9?a.defaultView||a.parentWindow:!1}var c,d,e=a.document,f=a.location,g=a.navigator,h=a.jQuery,i=a.$,j=Array.prototype.push,k=Array.prototype.slice,l=Array.prototype.indexOf,m=Object.prototype.toString,n=Object.prototype.hasOwnProperty,o=String.prototype.trim,p=function(a,b){return new p.fn.init(a,b,c)},q=/[\-+]?(?:\d*\.|)\d+(?:[eE][\-+]?\d+|)/.source,r=/\S/,s=/\s+/,t=/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,u=/^(?:[^#<]*(<[\w\W]+>)[^>]*$|#([\w\-]*)$)/,v=/^<(\w+)\s*\/?>(?:<\/\1>|)$/,w=/^[\],:{}\s]*$/,x=/(?:^|:|,)(?:\s*\[)+/g,y=/\\(?:["\\\/bfnrt]|u[\da-fA-F]{4})/g,z=/"[^"\\\r\n]*"|true|false|null|-?(?:\d\d*\.|)\d+(?:[eE][\-+]?\d+|)/g,A=/^-ms-/,B=/-([\da-z])/gi,C=function(a,b){return(b+"").toUpperCase()},D=function(){e.addEventListener?(e.removeEventListener("DOMContentLoaded",D,!1),p.ready()):e.readyState==="complete"&&(e.detachEvent("onreadystatechange",D),p.ready())},E={};p.fn=p.prototype={constructor:p,init:function(a,c,d){var f,g,h,i;if(!a)return this;if(a.nodeType)return this.context=this[0]=a,this.length=1,this;if(typeof a=="string"){a.charAt(0)==="<"&&a.charAt(a.length-1)===">"&&a.length>=3?f=[null,a,null]:f=u.exec(a);if(f&&(f[1]||!c)){if(f[1])return c=c instanceof p?c[0]:c,i=c&&c.nodeType?c.ownerDocument||c:e,a=p.parseHTML(f[1],i,!0),v.test(f[1])&&p.isPlainObject(c)&&this.attr.call(a,c,!0),p.merge(this,a);g=e.getElementById(f[2]);if(g&&g.parentNode){if(g.id!==f[2])return d.find(a);this.length=1,this[0]=g}return this.context=e,this.selector=a,this}return!c||c.jquery?(c||d).find(a):this.constructor(c).find(a)}return p.isFunction(a)?d.ready(a):(a.selector!==b&&(this.selector=a.selector,this.context=a.context),p.makeArray(a,this))},selector:"",jquery:"1.8.2",length:0,size:function(){return this.length},toArray:function(){return k.call(this)},get:function(a){return a==null?this.toArray():a<0?this[this.length+a]:this[a]},pushStack:function(a,b,c){var d=p.merge(this.constructor(),a);return d.prevObject=this,d.context=this.context,b==="find"?d.selector=this.selector+(this.selector?" ":"")+c:b&&(d.selector=this.selector+"."+b+"("+c+")"),d},each:function(a,b){return p.each(this,a,b)},ready:function(a){return p.ready.promise().done(a),this},eq:function(a){return a=+a,a===-1?this.slice(a):this.slice(a,a+1)},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},slice:function(){return this.pushStack(k.apply(this,arguments),"slice",k.call(arguments).join(","))},map:function(a){return this.pushStack(p.map(this,function(b,c){return a.call(b,c,b)}))},end:function(){return this.prevObject||this.constructor(null)},push:j,sort:[].sort,splice:[].splice},p.fn.init.prototype=p.fn,p.extend=p.fn.extend=function(){var a,c,d,e,f,g,h=arguments[0]||{},i=1,j=arguments.length,k=!1;typeof h=="boolean"&&(k=h,h=arguments[1]||{},i=2),typeof h!="object"&&!p.isFunction(h)&&(h={}),j===i&&(h=this,--i);for(;i<j;i++)if((a=arguments[i])!=null)for(c in a){d=h[c],e=a[c];if(h===e)continue;k&&e&&(p.isPlainObject(e)||(f=p.isArray(e)))?(f?(f=!1,g=d&&p.isArray(d)?d:[]):g=d&&p.isPlainObject(d)?d:{},h[c]=p.extend(k,g,e)):e!==b&&(h[c]=e)}return h},p.extend({noConflict:function(b){return a.$===p&&(a.$=i),b&&a.jQuery===p&&(a.jQuery=h),p},isReady:!1,readyWait:1,holdReady:function(a){a?p.readyWait++:p.ready(!0)},ready:function(a){if(a===!0?--p.readyWait:p.isReady)return;if(!e.body)return setTimeout(p.ready,1);p.isReady=!0;if(a!==!0&&--p.readyWait>0)return;d.resolveWith(e,[p]),p.fn.trigger&&p(e).trigger("ready").off("ready")},isFunction:function(a){return p.type(a)==="function"},isArray:Array.isArray||function(a){return p.type(a)==="array"},isWindow:function(a){return a!=null&&a==a.window},isNumeric:function(a){return!isNaN(parseFloat(a))&&isFinite(a)},type:function(a){return a==null?String(a):E[m.call(a)]||"object"},isPlainObject:function(a){if(!a||p.type(a)!=="object"||a.nodeType||p.isWindow(a))return!1;try{if(a.constructor&&!n.call(a,"constructor")&&!n.call(a.constructor.prototype,"isPrototypeOf"))return!1}catch(c){return!1}var d;for(d in a);return d===b||n.call(a,d)},isEmptyObject:function(a){var b;for(b in a)return!1;return!0},error:function(a){throw new Error(a)},parseHTML:function(a,b,c){var d;return!a||typeof a!="string"?null:(typeof b=="boolean"&&(c=b,b=0),b=b||e,(d=v.exec(a))?[b.createElement(d[1])]:(d=p.buildFragment([a],b,c?null:[]),p.merge([],(d.cacheable?p.clone(d.fragment):d.fragment).childNodes)))},parseJSON:function(b){if(!b||typeof b!="string")return null;b=p.trim(b);if(a.JSON&&a.JSON.parse)return a.JSON.parse(b);if(w.test(b.replace(y,"@").replace(z,"]").replace(x,"")))return(new Function("return "+b))();p.error("Invalid JSON: "+b)},parseXML:function(c){var d,e;if(!c||typeof c!="string")return null;try{a.DOMParser?(e=new DOMParser,d=e.parseFromString(c,"text/xml")):(d=new ActiveXObject("Microsoft.XMLDOM"),d.async="false",d.loadXML(c))}catch(f){d=b}return(!d||!d.documentElement||d.getElementsByTagName("parsererror").length)&&p.error("Invalid XML: "+c),d},noop:function(){},globalEval:function(b){b&&r.test(b)&&(a.execScript||function(b){a.eval.call(a,b)})(b)},camelCase:function(a){return a.replace(A,"ms-").replace(B,C)},nodeName:function(a,b){return a.nodeName&&a.nodeName.toLowerCase()===b.toLowerCase()},each:function(a,c,d){var e,f=0,g=a.length,h=g===b||p.isFunction(a);if(d){if(h){for(e in a)if(c.apply(a[e],d)===!1)break}else for(;f<g;)if(c.apply(a[f++],d)===!1)break}else if(h){for(e in a)if(c.call(a[e],e,a[e])===!1)break}else for(;f<g;)if(c.call(a[f],f,a[f++])===!1)break;return a},trim:o&&!o.call(" ")?function(a){return a==null?"":o.call(a)}:function(a){return a==null?"":(a+"").replace(t,"")},makeArray:function(a,b){var c,d=b||[];return a!=null&&(c=p.type(a),a.length==null||c==="string"||c==="function"||c==="regexp"||p.isWindow(a)?j.call(d,a):p.merge(d,a)),d},inArray:function(a,b,c){var d;if(b){if(l)return l.call(b,a,c);d=b.length,c=c?c<0?Math.max(0,d+c):c:0;for(;c<d;c++)if(c in b&&b[c]===a)return c}return-1},merge:function(a,c){var d=c.length,e=a.length,f=0;if(typeof d=="number")for(;f<d;f++)a[e++]=c[f];else while(c[f]!==b)a[e++]=c[f++];return a.length=e,a},grep:function(a,b,c){var d,e=[],f=0,g=a.length;c=!!c;for(;f<g;f++)d=!!b(a[f],f),c!==d&&e.push(a[f]);return e},map:function(a,c,d){var e,f,g=[],h=0,i=a.length,j=a instanceof p||i!==b&&typeof i=="number"&&(i>0&&a[0]&&a[i-1]||i===0||p.isArray(a));if(j)for(;h<i;h++)e=c(a[h],h,d),e!=null&&(g[g.length]=e);else for(f in a)e=c(a[f],f,d),e!=null&&(g[g.length]=e);return g.concat.apply([],g)},guid:1,proxy:function(a,c){var d,e,f;return typeof c=="string"&&(d=a[c],c=a,a=d),p.isFunction(a)?(e=k.call(arguments,2),f=function(){return a.apply(c,e.concat(k.call(arguments)))},f.guid=a.guid=a.guid||p.guid++,f):b},access:function(a,c,d,e,f,g,h){var i,j=d==null,k=0,l=a.length;if(d&&typeof d=="object"){for(k in d)p.access(a,c,k,d[k],1,g,e);f=1}else if(e!==b){i=h===b&&p.isFunction(e),j&&(i?(i=c,c=function(a,b,c){return i.call(p(a),c)}):(c.call(a,e),c=null));if(c)for(;k<l;k++)c(a[k],d,i?e.call(a[k],k,c(a[k],d)):e,h);f=1}return f?a:j?c.call(a):l?c(a[0],d):g},now:function(){return(new Date).getTime()}}),p.ready.promise=function(b){if(!d){d=p.Deferred();if(e.readyState==="complete")setTimeout(p.ready,1);else if(e.addEventListener)e.addEventListener("DOMContentLoaded",D,!1),a.addEventListener("load",p.ready,!1);else{e.attachEvent("onreadystatechange",D),a.attachEvent("onload",p.ready);var c=!1;try{c=a.frameElement==null&&e.documentElement}catch(f){}c&&c.doScroll&&function g(){if(!p.isReady){try{c.doScroll("left")}catch(a){return setTimeout(g,50)}p.ready()}}()}}return d.promise(b)},p.each("Boolean Number String Function Array Date RegExp Object".split(" "),function(a,b){E["[object "+b+"]"]=b.toLowerCase()}),c=p(e);var F={};p.Callbacks=function(a){a=typeof a=="string"?F[a]||G(a):p.extend({},a);var c,d,e,f,g,h,i=[],j=!a.once&&[],k=function(b){c=a.memory&&b,d=!0,h=f||0,f=0,g=i.length,e=!0;for(;i&&h<g;h++)if(i[h].apply(b[0],b[1])===!1&&a.stopOnFalse){c=!1;break}e=!1,i&&(j?j.length&&k(j.shift()):c?i=[]:l.disable())},l={add:function(){if(i){var b=i.length;(function d(b){p.each(b,function(b,c){var e=p.type(c);e==="function"&&(!a.unique||!l.has(c))?i.push(c):c&&c.length&&e!=="string"&&d(c)})})(arguments),e?g=i.length:c&&(f=b,k(c))}return this},remove:function(){return i&&p.each(arguments,function(a,b){var c;while((c=p.inArray(b,i,c))>-1)i.splice(c,1),e&&(c<=g&&g--,c<=h&&h--)}),this},has:function(a){return p.inArray(a,i)>-1},empty:function(){return i=[],this},disable:function(){return i=j=c=b,this},disabled:function(){return!i},lock:function(){return j=b,c||l.disable(),this},locked:function(){return!j},fireWith:function(a,b){return b=b||[],b=[a,b.slice?b.slice():b],i&&(!d||j)&&(e?j.push(b):k(b)),this},fire:function(){return l.fireWith(this,arguments),this},fired:function(){return!!d}};return l},p.extend({Deferred:function(a){var b=[["resolve","done",p.Callbacks("once memory"),"resolved"],["reject","fail",p.Callbacks("once memory"),"rejected"],["notify","progress",p.Callbacks("memory")]],c="pending",d={state:function(){return c},always:function(){return e.done(arguments).fail(arguments),this},then:function(){var a=arguments;return p.Deferred(function(c){p.each(b,function(b,d){var f=d[0],g=a[b];e[d[1]](p.isFunction(g)?function(){var a=g.apply(this,arguments);a&&p.isFunction(a.promise)?a.promise().done(c.resolve).fail(c.reject).progress(c.notify):c[f+"With"](this===e?c:this,[a])}:c[f])}),a=null}).promise()},promise:function(a){return a!=null?p.extend(a,d):d}},e={};return d.pipe=d.then,p.each(b,function(a,f){var g=f[2],h=f[3];d[f[1]]=g.add,h&&g.add(function(){c=h},b[a^1][2].disable,b[2][2].lock),e[f[0]]=g.fire,e[f[0]+"With"]=g.fireWith}),d.promise(e),a&&a.call(e,e),e},when:function(a){var b=0,c=k.call(arguments),d=c.length,e=d!==1||a&&p.isFunction(a.promise)?d:0,f=e===1?a:p.Deferred(),g=function(a,b,c){return function(d){b[a]=this,c[a]=arguments.length>1?k.call(arguments):d,c===h?f.notifyWith(b,c):--e||f.resolveWith(b,c)}},h,i,j;if(d>1){h=new Array(d),i=new Array(d),j=new Array(d);for(;b<d;b++)c[b]&&p.isFunction(c[b].promise)?c[b].promise().done(g(b,j,c)).fail(f.reject).progress(g(b,i,h)):--e}return e||f.resolveWith(j,c),f.promise()}}),p.support=function(){var b,c,d,f,g,h,i,j,k,l,m,n=e.createElement("div");n.setAttribute("className","t"),n.innerHTML=" <link/><table></table><a href='/a'>a</a><input type='checkbox'/>",c=n.getElementsByTagName("*"),d=n.getElementsByTagName("a")[0],d.style.cssText="top:1px;float:left;opacity:.5";if(!c||!c.length)return{};f=e.createElement("select"),g=f.appendChild(e.createElement("option")),h=n.getElementsByTagName("input")[0],b={leadingWhitespace:n.firstChild.nodeType===3,tbody:!n.getElementsByTagName("tbody").length,htmlSerialize:!!n.getElementsByTagName("link").length,style:/top/.test(d.getAttribute("style")),hrefNormalized:d.getAttribute("href")==="/a",opacity:/^0.5/.test(d.style.opacity),cssFloat:!!d.style.cssFloat,checkOn:h.value==="on",optSelected:g.selected,getSetAttribute:n.className!=="t",enctype:!!e.createElement("form").enctype,html5Clone:e.createElement("nav").cloneNode(!0).outerHTML!=="<:nav></:nav>",boxModel:e.compatMode==="CSS1Compat",submitBubbles:!0,changeBubbles:!0,focusinBubbles:!1,deleteExpando:!0,noCloneEvent:!0,inlineBlockNeedsLayout:!1,shrinkWrapBlocks:!1,reliableMarginRight:!0,boxSizingReliable:!0,pixelPosition:!1},h.checked=!0,b.noCloneChecked=h.cloneNode(!0).checked,f.disabled=!0,b.optDisabled=!g.disabled;try{delete n.test}catch(o){b.deleteExpando=!1}!n.addEventListener&&n.attachEvent&&n.fireEvent&&(n.attachEvent("onclick",m=function(){b.noCloneEvent=!1}),n.cloneNode(!0).fireEvent("onclick"),n.detachEvent("onclick",m)),h=e.createElement("input"),h.value="t",h.setAttribute("type","radio"),b.radioValue=h.value==="t",h.setAttribute("checked","checked"),h.setAttribute("name","t"),n.appendChild(h),i=e.createDocumentFragment(),i.appendChild(n.lastChild),b.checkClone=i.cloneNode(!0).cloneNode(!0).lastChild.checked,b.appendChecked=h.checked,i.removeChild(h),i.appendChild(n);if(n.attachEvent)for(k in{submit:!0,change:!0,focusin:!0})j="on"+k,l=j in n,l||(n.setAttribute(j,"return;"),l=typeof n[j]=="function"),b[k+"Bubbles"]=l;return p(function(){var c,d,f,g,h="padding:0;margin:0;border:0;display:block;overflow:hidden;",i=e.getElementsByTagName("body")[0];if(!i)return;c=e.createElement("div"),c.style.cssText="visibility:hidden;border:0;width:0;height:0;position:static;top:0;margin-top:1px",i.insertBefore(c,i.firstChild),d=e.createElement("div"),c.appendChild(d),d.innerHTML="<table><tr><td></td><td>t</td></tr></table>",f=d.getElementsByTagName("td"),f[0].style.cssText="padding:0;margin:0;border:0;display:none",l=f[0].offsetHeight===0,f[0].style.display="",f[1].style.display="none",b.reliableHiddenOffsets=l&&f[0].offsetHeight===0,d.innerHTML="",d.style.cssText="box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;padding:1px;border:1px;display:block;width:4px;margin-top:1%;position:absolute;top:1%;",b.boxSizing=d.offsetWidth===4,b.doesNotIncludeMarginInBodyOffset=i.offsetTop!==1,a.getComputedStyle&&(b.pixelPosition=(a.getComputedStyle(d,null)||{}).top!=="1%",b.boxSizingReliable=(a.getComputedStyle(d,null)||{width:"4px"}).width==="4px",g=e.createElement("div"),g.style.cssText=d.style.cssText=h,g.style.marginRight=g.style.width="0",d.style.width="1px",d.appendChild(g),b.reliableMarginRight=!parseFloat((a.getComputedStyle(g,null)||{}).marginRight)),typeof d.style.zoom!="undefined"&&(d.innerHTML="",d.style.cssText=h+"width:1px;padding:1px;display:inline;zoom:1",b.inlineBlockNeedsLayout=d.offsetWidth===3,d.style.display="block",d.style.overflow="visible",d.innerHTML="<div></div>",d.firstChild.style.width="5px",b.shrinkWrapBlocks=d.offsetWidth!==3,c.style.zoom=1),i.removeChild(c),c=d=f=g=null}),i.removeChild(n),c=d=f=g=h=i=n=null,b}();var H=/(?:\{[\s\S]*\}|\[[\s\S]*\])$/,I=/([A-Z])/g;p.extend({cache:{},deletedIds:[],uuid:0,expando:"jQuery"+(p.fn.jquery+Math.random()).replace(/\D/g,""),noData:{embed:!0,object:"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000",applet:!0},hasData:function(a){return a=a.nodeType?p.cache[a[p.expando]]:a[p.expando],!!a&&!K(a)},data:function(a,c,d,e){if(!p.acceptData(a))return;var f,g,h=p.expando,i=typeof c=="string",j=a.nodeType,k=j?p.cache:a,l=j?a[h]:a[h]&&h;if((!l||!k[l]||!e&&!k[l].data)&&i&&d===b)return;l||(j?a[h]=l=p.deletedIds.pop()||p.guid++:l=h),k[l]||(k[l]={},j||(k[l].toJSON=p.noop));if(typeof c=="object"||typeof c=="function")e?k[l]=p.extend(k[l],c):k[l].data=p.extend(k[l].data,c);return f=k[l],e||(f.data||(f.data={}),f=f.data),d!==b&&(f[p.camelCase(c)]=d),i?(g=f[c],g==null&&(g=f[p.camelCase(c)])):g=f,g},removeData:function(a,b,c){if(!p.acceptData(a))return;var d,e,f,g=a.nodeType,h=g?p.cache:a,i=g?a[p.expando]:p.expando;if(!h[i])return;if(b){d=c?h[i]:h[i].data;if(d){p.isArray(b)||(b in d?b=[b]:(b=p.camelCase(b),b in d?b=[b]:b=b.split(" ")));for(e=0,f=b.length;e<f;e++)delete d[b[e]];if(!(c?K:p.isEmptyObject)(d))return}}if(!c){delete h[i].data;if(!K(h[i]))return}g?p.cleanData([a],!0):p.support.deleteExpando||h!=h.window?delete h[i]:h[i]=null},_data:function(a,b,c){return p.data(a,b,c,!0)},acceptData:function(a){var b=a.nodeName&&p.noData[a.nodeName.toLowerCase()];return!b||b!==!0&&a.getAttribute("classid")===b}}),p.fn.extend({data:function(a,c){var d,e,f,g,h,i=this[0],j=0,k=null;if(a===b){if(this.length){k=p.data(i);if(i.nodeType===1&&!p._data(i,"parsedAttrs")){f=i.attributes;for(h=f.length;j<h;j++)g=f[j].name,g.indexOf("data-")||(g=p.camelCase(g.substring(5)),J(i,g,k[g]));p._data(i,"parsedAttrs",!0)}}return k}return typeof a=="object"?this.each(function(){p.data(this,a)}):(d=a.split(".",2),d[1]=d[1]?"."+d[1]:"",e=d[1]+"!",p.access(this,function(c){if(c===b)return k=this.triggerHandler("getData"+e,[d[0]]),k===b&&i&&(k=p.data(i,a),k=J(i,a,k)),k===b&&d[1]?this.data(d[0]):k;d[1]=c,this.each(function(){var b=p(this);b.triggerHandler("setData"+e,d),p.data(this,a,c),b.triggerHandler("changeData"+e,d)})},null,c,arguments.length>1,null,!1))},removeData:function(a){return this.each(function(){p.removeData(this,a)})}}),p.extend({queue:function(a,b,c){var d;if(a)return b=(b||"fx")+"queue",d=p._data(a,b),c&&(!d||p.isArray(c)?d=p._data(a,b,p.makeArray(c)):d.push(c)),d||[]},dequeue:function(a,b){b=b||"fx";var c=p.queue(a,b),d=c.length,e=c.shift(),f=p._queueHooks(a,b),g=function(){p.dequeue(a,b)};e==="inprogress"&&(e=c.shift(),d--),e&&(b==="fx"&&c.unshift("inprogress"),delete f.stop,e.call(a,g,f)),!d&&f&&f.empty.fire()},_queueHooks:function(a,b){var c=b+"queueHooks";return p._data(a,c)||p._data(a,c,{empty:p.Callbacks("once memory").add(function(){p.removeData(a,b+"queue",!0),p.removeData(a,c,!0)})})}}),p.fn.extend({queue:function(a,c){var d=2;return typeof a!="string"&&(c=a,a="fx",d--),arguments.length<d?p.queue(this[0],a):c===b?this:this.each(function(){var b=p.queue(this,a,c);p._queueHooks(this,a),a==="fx"&&b[0]!=="inprogress"&&p.dequeue(this,a)})},dequeue:function(a){return this.each(function(){p.dequeue(this,a)})},delay:function(a,b){return a=p.fx?p.fx.speeds[a]||a:a,b=b||"fx",this.queue(b,function(b,c){var d=setTimeout(b,a);c.stop=function(){clearTimeout(d)}})},clearQueue:function(a){return this.queue(a||"fx",[])},promise:function(a,c){var d,e=1,f=p.Deferred(),g=this,h=this.length,i=function(){--e||f.resolveWith(g,[g])};typeof a!="string"&&(c=a,a=b),a=a||"fx";while(h--)d=p._data(g[h],a+"queueHooks"),d&&d.empty&&(e++,d.empty.add(i));return i(),f.promise(c)}});var L,M,N,O=/[\t\r\n]/g,P=/\r/g,Q=/^(?:button|input)$/i,R=/^(?:button|input|object|select|textarea)$/i,S=/^a(?:rea|)$/i,T=/^(?:autofocus|autoplay|async|checked|controls|defer|disabled|hidden|loop|multiple|open|readonly|required|scoped|selected)$/i,U=p.support.getSetAttribute;p.fn.extend({attr:function(a,b){return p.access(this,p.attr,a,b,arguments.length>1)},removeAttr:function(a){return this.each(function(){p.removeAttr(this,a)})},prop:function(a,b){return p.access(this,p.prop,a,b,arguments.length>1)},removeProp:function(a){return a=p.propFix[a]||a,this.each(function(){try{this[a]=b,delete this[a]}catch(c){}})},addClass:function(a){var b,c,d,e,f,g,h;if(p.isFunction(a))return this.each(function(b){p(this).addClass(a.call(this,b,this.className))});if(a&&typeof a=="string"){b=a.split(s);for(c=0,d=this.length;c<d;c++){e=this[c];if(e.nodeType===1)if(!e.className&&b.length===1)e.className=a;else{f=" "+e.className+" ";for(g=0,h=b.length;g<h;g++)f.indexOf(" "+b[g]+" ")<0&&(f+=b[g]+" ");e.className=p.trim(f)}}}return this},removeClass:function(a){var c,d,e,f,g,h,i;if(p.isFunction(a))return this.each(function(b){p(this).removeClass(a.call(this,b,this.className))});if(a&&typeof a=="string"||a===b){c=(a||"").split(s);for(h=0,i=this.length;h<i;h++){e=this[h];if(e.nodeType===1&&e.className){d=(" "+e.className+" ").replace(O," ");for(f=0,g=c.length;f<g;f++)while(d.indexOf(" "+c[f]+" ")>=0)d=d.replace(" "+c[f]+" "," ");e.className=a?p.trim(d):""}}}return this},toggleClass:function(a,b){var c=typeof a,d=typeof b=="boolean";return p.isFunction(a)?this.each(function(c){p(this).toggleClass(a.call(this,c,this.className,b),b)}):this.each(function(){if(c==="string"){var e,f=0,g=p(this),h=b,i=a.split(s);while(e=i[f++])h=d?h:!g.hasClass(e),g[h?"addClass":"removeClass"](e)}else if(c==="undefined"||c==="boolean")this.className&&p._data(this,"__className__",this.className),this.className=this.className||a===!1?"":p._data(this,"__className__")||""})},hasClass:function(a){var b=" "+a+" ",c=0,d=this.length;for(;c<d;c++)if(this[c].nodeType===1&&(" "+this[c].className+" ").replace(O," ").indexOf(b)>=0)return!0;return!1},val:function(a){var c,d,e,f=this[0];if(!arguments.length){if(f)return c=p.valHooks[f.type]||p.valHooks[f.nodeName.toLowerCase()],c&&"get"in c&&(d=c.get(f,"value"))!==b?d:(d=f.value,typeof d=="string"?d.replace(P,""):d==null?"":d);return}return e=p.isFunction(a),this.each(function(d){var f,g=p(this);if(this.nodeType!==1)return;e?f=a.call(this,d,g.val()):f=a,f==null?f="":typeof f=="number"?f+="":p.isArray(f)&&(f=p.map(f,function(a){return a==null?"":a+""})),c=p.valHooks[this.type]||p.valHooks[this.nodeName.toLowerCase()];if(!c||!("set"in c)||c.set(this,f,"value")===b)this.value=f})}}),p.extend({valHooks:{option:{get:function(a){var b=a.attributes.value;return!b||b.specified?a.value:a.text}},select:{get:function(a){var b,c,d,e,f=a.selectedIndex,g=[],h=a.options,i=a.type==="select-one";if(f<0)return null;c=i?f:0,d=i?f+1:h.length;for(;c<d;c++){e=h[c];if(e.selected&&(p.support.optDisabled?!e.disabled:e.getAttribute("disabled")===null)&&(!e.parentNode.disabled||!p.nodeName(e.parentNode,"optgroup"))){b=p(e).val();if(i)return b;g.push(b)}}return i&&!g.length&&h.length?p(h[f]).val():g},set:function(a,b){var c=p.makeArray(b);return p(a).find("option").each(function(){this.selected=p.inArray(p(this).val(),c)>=0}),c.length||(a.selectedIndex=-1),c}}},attrFn:{},attr:function(a,c,d,e){var f,g,h,i=a.nodeType;if(!a||i===3||i===8||i===2)return;if(e&&p.isFunction(p.fn[c]))return p(a)[c](d);if(typeof a.getAttribute=="undefined")return p.prop(a,c,d);h=i!==1||!p.isXMLDoc(a),h&&(c=c.toLowerCase(),g=p.attrHooks[c]||(T.test(c)?M:L));if(d!==b){if(d===null){p.removeAttr(a,c);return}return g&&"set"in g&&h&&(f=g.set(a,d,c))!==b?f:(a.setAttribute(c,d+""),d)}return g&&"get"in g&&h&&(f=g.get(a,c))!==null?f:(f=a.getAttribute(c),f===null?b:f)},removeAttr:function(a,b){var c,d,e,f,g=0;if(b&&a.nodeType===1){d=b.split(s);for(;g<d.length;g++)e=d[g],e&&(c=p.propFix[e]||e,f=T.test(e),f||p.attr(a,e,""),a.removeAttribute(U?e:c),f&&c in a&&(a[c]=!1))}},attrHooks:{type:{set:function(a,b){if(Q.test(a.nodeName)&&a.parentNode)p.error("type property can't be changed");else if(!p.support.radioValue&&b==="radio"&&p.nodeName(a,"input")){var c=a.value;return a.setAttribute("type",b),c&&(a.value=c),b}}},value:{get:function(a,b){return L&&p.nodeName(a,"button")?L.get(a,b):b in a?a.value:null},set:function(a,b,c){if(L&&p.nodeName(a,"button"))return L.set(a,b,c);a.value=b}}},propFix:{tabindex:"tabIndex",readonly:"readOnly","for":"htmlFor","class":"className",maxlength:"maxLength",cellspacing:"cellSpacing",cellpadding:"cellPadding",rowspan:"rowSpan",colspan:"colSpan",usemap:"useMap",frameborder:"frameBorder",contenteditable:"contentEditable"},prop:function(a,c,d){var e,f,g,h=a.nodeType;if(!a||h===3||h===8||h===2)return;return g=h!==1||!p.isXMLDoc(a),g&&(c=p.propFix[c]||c,f=p.propHooks[c]),d!==b?f&&"set"in f&&(e=f.set(a,d,c))!==b?e:a[c]=d:f&&"get"in f&&(e=f.get(a,c))!==null?e:a[c]},propHooks:{tabIndex:{get:function(a){var c=a.getAttributeNode("tabindex");return c&&c.specified?parseInt(c.value,10):R.test(a.nodeName)||S.test(a.nodeName)&&a.href?0:b}}}}),M={get:function(a,c){var d,e=p.prop(a,c);return e===!0||typeof e!="boolean"&&(d=a.getAttributeNode(c))&&d.nodeValue!==!1?c.toLowerCase():b},set:function(a,b,c){var d;return b===!1?p.removeAttr(a,c):(d=p.propFix[c]||c,d in a&&(a[d]=!0),a.setAttribute(c,c.toLowerCase())),c}},U||(N={name:!0,id:!0,coords:!0},L=p.valHooks.button={get:function(a,c){var d;return d=a.getAttributeNode(c),d&&(N[c]?d.value!=="":d.specified)?d.value:b},set:function(a,b,c){var d=a.getAttributeNode(c);return d||(d=e.createAttribute(c),a.setAttributeNode(d)),d.value=b+""}},p.each(["width","height"],function(a,b){p.attrHooks[b]=p.extend(p.attrHooks[b],{set:function(a,c){if(c==="")return a.setAttribute(b,"auto"),c}})}),p.attrHooks.contenteditable={get:L.get,set:function(a,b,c){b===""&&(b="false"),L.set(a,b,c)}}),p.support.hrefNormalized||p.each(["href","src","width","height"],function(a,c){p.attrHooks[c]=p.extend(p.attrHooks[c],{get:function(a){var d=a.getAttribute(c,2);return d===null?b:d}})}),p.support.style||(p.attrHooks.style={get:function(a){return a.style.cssText.toLowerCase()||b},set:function(a,b){return a.style.cssText=b+""}}),p.support.optSelected||(p.propHooks.selected=p.extend(p.propHooks.selected,{get:function(a){var b=a.parentNode;return b&&(b.selectedIndex,b.parentNode&&b.parentNode.selectedIndex),null}})),p.support.enctype||(p.propFix.enctype="encoding"),p.support.checkOn||p.each(["radio","checkbox"],function(){p.valHooks[this]={get:function(a){return a.getAttribute("value")===null?"on":a.value}}}),p.each(["radio","checkbox"],function(){p.valHooks[this]=p.extend(p.valHooks[this],{set:function(a,b){if(p.isArray(b))return a.checked=p.inArray(p(a).val(),b)>=0}})});var V=/^(?:textarea|input|select)$/i,W=/^([^\.]*|)(?:\.(.+)|)$/,X=/(?:^|\s)hover(\.\S+|)\b/,Y=/^key/,Z=/^(?:mouse|contextmenu)|click/,$=/^(?:focusinfocus|focusoutblur)$/,_=function(a){return p.event.special.hover?a:a.replace(X,"mouseenter$1 mouseleave$1")};p.event={add:function(a,c,d,e,f){var g,h,i,j,k,l,m,n,o,q,r;if(a.nodeType===3||a.nodeType===8||!c||!d||!(g=p._data(a)))return;d.handler&&(o=d,d=o.handler,f=o.selector),d.guid||(d.guid=p.guid++),i=g.events,i||(g.events=i={}),h=g.handle,h||(g.handle=h=function(a){return typeof p!="undefined"&&(!a||p.event.triggered!==a.type)?p.event.dispatch.apply(h.elem,arguments):b},h.elem=a),c=p.trim(_(c)).split(" ");for(j=0;j<c.length;j++){k=W.exec(c[j])||[],l=k[1],m=(k[2]||"").split(".").sort(),r=p.event.special[l]||{},l=(f?r.delegateType:r.bindType)||l,r=p.event.special[l]||{},n=p.extend({type:l,origType:k[1],data:e,handler:d,guid:d.guid,selector:f,needsContext:f&&p.expr.match.needsContext.test(f),namespace:m.join(".")},o),q=i[l];if(!q){q=i[l]=[],q.delegateCount=0;if(!r.setup||r.setup.call(a,e,m,h)===!1)a.addEventListener?a.addEventListener(l,h,!1):a.attachEvent&&a.attachEvent("on"+l,h)}r.add&&(r.add.call(a,n),n.handler.guid||(n.handler.guid=d.guid)),f?q.splice(q.delegateCount++,0,n):q.push(n),p.event.global[l]=!0}a=null},global:{},remove:function(a,b,c,d,e){var f,g,h,i,j,k,l,m,n,o,q,r=p.hasData(a)&&p._data(a);if(!r||!(m=r.events))return;b=p.trim(_(b||"")).split(" ");for(f=0;f<b.length;f++){g=W.exec(b[f])||[],h=i=g[1],j=g[2];if(!h){for(h in m)p.event.remove(a,h+b[f],c,d,!0);continue}n=p.event.special[h]||{},h=(d?n.delegateType:n.bindType)||h,o=m[h]||[],k=o.length,j=j?new RegExp("(^|\\.)"+j.split(".").sort().join("\\.(?:.*\\.|)")+"(\\.|$)"):null;for(l=0;l<o.length;l++)q=o[l],(e||i===q.origType)&&(!c||c.guid===q.guid)&&(!j||j.test(q.namespace))&&(!d||d===q.selector||d==="**"&&q.selector)&&(o.splice(l--,1),q.selector&&o.delegateCount--,n.remove&&n.remove.call(a,q));o.length===0&&k!==o.length&&((!n.teardown||n.teardown.call(a,j,r.handle)===!1)&&p.removeEvent(a,h,r.handle),delete m[h])}p.isEmptyObject(m)&&(delete r.handle,p.removeData(a,"events",!0))},customEvent:{getData:!0,setData:!0,changeData:!0},trigger:function(c,d,f,g){if(!f||f.nodeType!==3&&f.nodeType!==8){var h,i,j,k,l,m,n,o,q,r,s=c.type||c,t=[];if($.test(s+p.event.triggered))return;s.indexOf("!")>=0&&(s=s.slice(0,-1),i=!0),s.indexOf(".")>=0&&(t=s.split("."),s=t.shift(),t.sort());if((!f||p.event.customEvent[s])&&!p.event.global[s])return;c=typeof c=="object"?c[p.expando]?c:new p.Event(s,c):new p.Event(s),c.type=s,c.isTrigger=!0,c.exclusive=i,c.namespace=t.join("."),c.namespace_re=c.namespace?new RegExp("(^|\\.)"+t.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,m=s.indexOf(":")<0?"on"+s:"";if(!f){h=p.cache;for(j in h)h[j].events&&h[j].events[s]&&p.event.trigger(c,d,h[j].handle.elem,!0);return}c.result=b,c.target||(c.target=f),d=d!=null?p.makeArray(d):[],d.unshift(c),n=p.event.special[s]||{};if(n.trigger&&n.trigger.apply(f,d)===!1)return;q=[[f,n.bindType||s]];if(!g&&!n.noBubble&&!p.isWindow(f)){r=n.delegateType||s,k=$.test(r+s)?f:f.parentNode;for(l=f;k;k=k.parentNode)q.push([k,r]),l=k;l===(f.ownerDocument||e)&&q.push([l.defaultView||l.parentWindow||a,r])}for(j=0;j<q.length&&!c.isPropagationStopped();j++)k=q[j][0],c.type=q[j][1],o=(p._data(k,"events")||{})[c.type]&&p._data(k,"handle"),o&&o.apply(k,d),o=m&&k[m],o&&p.acceptData(k)&&o.apply&&o.apply(k,d)===!1&&c.preventDefault();return c.type=s,!g&&!c.isDefaultPrevented()&&(!n._default||n._default.apply(f.ownerDocument,d)===!1)&&(s!=="click"||!p.nodeName(f,"a"))&&p.acceptData(f)&&m&&f[s]&&(s!=="focus"&&s!=="blur"||c.target.offsetWidth!==0)&&!p.isWindow(f)&&(l=f[m],l&&(f[m]=null),p.event.triggered=s,f[s](),p.event.triggered=b,l&&(f[m]=l)),c.result}return},dispatch:function(c){c=p.event.fix(c||a.event);var d,e,f,g,h,i,j,l,m,n,o=(p._data(this,"events")||{})[c.type]||[],q=o.delegateCount,r=k.call(arguments),s=!c.exclusive&&!c.namespace,t=p.event.special[c.type]||{},u=[];r[0]=c,c.delegateTarget=this;if(t.preDispatch&&t.preDispatch.call(this,c)===!1)return;if(q&&(!c.button||c.type!=="click"))for(f=c.target;f!=this;f=f.parentNode||this)if(f.disabled!==!0||c.type!=="click"){h={},j=[];for(d=0;d<q;d++)l=o[d],m=l.selector,h[m]===b&&(h[m]=l.needsContext?p(m,this).index(f)>=0:p.find(m,this,null,[f]).length),h[m]&&j.push(l);j.length&&u.push({elem:f,matches:j})}o.length>q&&u.push({elem:this,matches:o.slice(q)});for(d=0;d<u.length&&!c.isPropagationStopped();d++){i=u[d],c.currentTarget=i.elem;for(e=0;e<i.matches.length&&!c.isImmediatePropagationStopped();e++){l=i.matches[e];if(s||!c.namespace&&!l.namespace||c.namespace_re&&c.namespace_re.test(l.namespace))c.data=l.data,c.handleObj=l,g=((p.event.special[l.origType]||{}).handle||l.handler).apply(i.elem,r),g!==b&&(c.result=g,g===!1&&(c.preventDefault(),c.stopPropagation()))}}return t.postDispatch&&t.postDispatch.call(this,c),c.result},props:"attrChange attrName relatedNode srcElement altKey bubbles cancelable ctrlKey currentTarget eventPhase metaKey relatedTarget shiftKey target timeStamp view which".split(" "),fixHooks:{},keyHooks:{props:"char charCode key keyCode".split(" "),filter:function(a,b){return a.which==null&&(a.which=b.charCode!=null?b.charCode:b.keyCode),a}},mouseHooks:{props:"button buttons clientX clientY fromElement offsetX offsetY pageX pageY screenX screenY toElement".split(" "),filter:function(a,c){var d,f,g,h=c.button,i=c.fromElement;return a.pageX==null&&c.clientX!=null&&(d=a.target.ownerDocument||e,f=d.documentElement,g=d.body,a.pageX=c.clientX+(f&&f.scrollLeft||g&&g.scrollLeft||0)-(f&&f.clientLeft||g&&g.clientLeft||0),a.pageY=c.clientY+(f&&f.scrollTop||g&&g.scrollTop||0)-(f&&f.clientTop||g&&g.clientTop||0)),!a.relatedTarget&&i&&(a.relatedTarget=i===a.target?c.toElement:i),!a.which&&h!==b&&(a.which=h&1?1:h&2?3:h&4?2:0),a}},fix:function(a){if(a[p.expando])return a;var b,c,d=a,f=p.event.fixHooks[a.type]||{},g=f.props?this.props.concat(f.props):this.props;a=p.Event(d);for(b=g.length;b;)c=g[--b],a[c]=d[c];return a.target||(a.target=d.srcElement||e),a.target.nodeType===3&&(a.target=a.target.parentNode),a.metaKey=!!a.metaKey,f.filter?f.filter(a,d):a},special:{load:{noBubble:!0},focus:{delegateType:"focusin"},blur:{delegateType:"focusout"},beforeunload:{setup:function(a,b,c){p.isWindow(this)&&(this.onbeforeunload=c)},teardown:function(a,b){this.onbeforeunload===b&&(this.onbeforeunload=null)}}},simulate:function(a,b,c,d){var e=p.extend(new p.Event,c,{type:a,isSimulated:!0,originalEvent:{}});d?p.event.trigger(e,null,b):p.event.dispatch.call(b,e),e.isDefaultPrevented()&&c.preventDefault()}},p.event.handle=p.event.dispatch,p.removeEvent=e.removeEventListener?function(a,b,c){a.removeEventListener&&a.removeEventListener(b,c,!1)}:function(a,b,c){var d="on"+b;a.detachEvent&&(typeof a[d]=="undefined"&&(a[d]=null),a.detachEvent(d,c))},p.Event=function(a,b){if(this instanceof p.Event)a&&a.type?(this.originalEvent=a,this.type=a.type,this.isDefaultPrevented=a.defaultPrevented||a.returnValue===!1||a.getPreventDefault&&a.getPreventDefault()?bb:ba):this.type=a,b&&p.extend(this,b),this.timeStamp=a&&a.timeStamp||p.now(),this[p.expando]=!0;else return new p.Event(a,b)},p.Event.prototype={preventDefault:function(){this.isDefaultPrevented=bb;var a=this.originalEvent;if(!a)return;a.preventDefault?a.preventDefault():a.returnValue=!1},stopPropagation:function(){this.isPropagationStopped=bb;var a=this.originalEvent;if(!a)return;a.stopPropagation&&a.stopPropagation(),a.cancelBubble=!0},stopImmediatePropagation:function(){this.isImmediatePropagationStopped=bb,this.stopPropagation()},isDefaultPrevented:ba,isPropagationStopped:ba,isImmediatePropagationStopped:ba},p.each({mouseenter:"mouseover",mouseleave:"mouseout"},function(a,b){p.event.special[a]={delegateType:b,bindType:b,handle:function(a){var c,d=this,e=a.relatedTarget,f=a.handleObj,g=f.selector;if(!e||e!==d&&!p.contains(d,e))a.type=f.origType,c=f.handler.apply(this,arguments),a.type=b;return c}}}),p.support.submitBubbles||(p.event.special.submit={setup:function(){if(p.nodeName(this,"form"))return!1;p.event.add(this,"click._submit keypress._submit",function(a){var c=a.target,d=p.nodeName(c,"input")||p.nodeName(c,"button")?c.form:b;d&&!p._data(d,"_submit_attached")&&(p.event.add(d,"submit._submit",function(a){a._submit_bubble=!0}),p._data(d,"_submit_attached",!0))})},postDispatch:function(a){a._submit_bubble&&(delete a._submit_bubble,this.parentNode&&!a.isTrigger&&p.event.simulate("submit",this.parentNode,a,!0))},teardown:function(){if(p.nodeName(this,"form"))return!1;p.event.remove(this,"._submit")}}),p.support.changeBubbles||(p.event.special.change={setup:function(){if(V.test(this.nodeName)){if(this.type==="checkbox"||this.type==="radio")p.event.add(this,"propertychange._change",function(a){a.originalEvent.propertyName==="checked"&&(this._just_changed=!0)}),p.event.add(this,"click._change",function(a){this._just_changed&&!a.isTrigger&&(this._just_changed=!1),p.event.simulate("change",this,a,!0)});return!1}p.event.add(this,"beforeactivate._change",function(a){var b=a.target;V.test(b.nodeName)&&!p._data(b,"_change_attached")&&(p.event.add(b,"change._change",function(a){this.parentNode&&!a.isSimulated&&!a.isTrigger&&p.event.simulate("change",this.parentNode,a,!0)}),p._data(b,"_change_attached",!0))})},handle:function(a){var b=a.target;if(this!==b||a.isSimulated||a.isTrigger||b.type!=="radio"&&b.type!=="checkbox")return a.handleObj.handler.apply(this,arguments)},teardown:function(){return p.event.remove(this,"._change"),!V.test(this.nodeName)}}),p.support.focusinBubbles||p.each({focus:"focusin",blur:"focusout"},function(a,b){var c=0,d=function(a){p.event.simulate(b,a.target,p.event.fix(a),!0)};p.event.special[b]={setup:function(){c++===0&&e.addEventListener(a,d,!0)},teardown:function(){--c===0&&e.removeEventListener(a,d,!0)}}}),p.fn.extend({on:function(a,c,d,e,f){var g,h;if(typeof a=="object"){typeof c!="string"&&(d=d||c,c=b);for(h in a)this.on(h,c,d,a[h],f);return this}d==null&&e==null?(e=c,d=c=b):e==null&&(typeof c=="string"?(e=d,d=b):(e=d,d=c,c=b));if(e===!1)e=ba;else if(!e)return this;return f===1&&(g=e,e=function(a){return p().off(a),g.apply(this,arguments)},e.guid=g.guid||(g.guid=p.guid++)),this.each(function(){p.event.add(this,a,e,d,c)})},one:function(a,b,c,d){return this.on(a,b,c,d,1)},off:function(a,c,d){var e,f;if(a&&a.preventDefault&&a.handleObj)return e=a.handleObj,p(a.delegateTarget).off(e.namespace?e.origType+"."+e.namespace:e.origType,e.selector,e.handler),this;if(typeof a=="object"){for(f in a)this.off(f,c,a[f]);return this}if(c===!1||typeof c=="function")d=c,c=b;return d===!1&&(d=ba),this.each(function(){p.event.remove(this,a,d,c)})},bind:function(a,b,c){return this.on(a,null,b,c)},unbind:function(a,b){return this.off(a,null,b)},live:function(a,b,c){return p(this.context).on(a,this.selector,b,c),this},die:function(a,b){return p(this.context).off(a,this.selector||"**",b),this},delegate:function(a,b,c,d){return this.on(b,a,c,d)},undelegate:function(a,b,c){return arguments.length===1?this.off(a,"**"):this.off(b,a||"**",c)},trigger:function(a,b){return this.each(function(){p.event.trigger(a,b,this)})},triggerHandler:function(a,b){if(this[0])return p.event.trigger(a,b,this[0],!0)},toggle:function(a){var b=arguments,c=a.guid||p.guid++,d=0,e=function(c){var e=(p._data(this,"lastToggle"+a.guid)||0)%d;return p._data(this,"lastToggle"+a.guid,e+1),c.preventDefault(),b[e].apply(this,arguments)||!1};e.guid=c;while(d<b.length)b[d++].guid=c;return this.click(e)},hover:function(a,b){return this.mouseenter(a).mouseleave(b||a)}}),p.each("blur focus focusin focusout load resize scroll unload click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup error contextmenu".split(" "),function(a,b){p.fn[b]=function(a,c){return c==null&&(c=a,a=null),arguments.length>0?this.on(b,null,a,c):this.trigger(b)},Y.test(b)&&(p.event.fixHooks[b]=p.event.keyHooks),Z.test(b)&&(p.event.fixHooks[b]=p.event.mouseHooks)}),function(a,b){function bc(a,b,c,d){c=c||[],b=b||r;var e,f,i,j,k=b.nodeType;if(!a||typeof a!="string")return c;if(k!==1&&k!==9)return[];i=g(b);if(!i&&!d)if(e=P.exec(a))if(j=e[1]){if(k===9){f=b.getElementById(j);if(!f||!f.parentNode)return c;if(f.id===j)return c.push(f),c}else if(b.ownerDocument&&(f=b.ownerDocument.getElementById(j))&&h(b,f)&&f.id===j)return c.push(f),c}else{if(e[2])return w.apply(c,x.call(b.getElementsByTagName(a),0)),c;if((j=e[3])&&_&&b.getElementsByClassName)return w.apply(c,x.call(b.getElementsByClassName(j),0)),c}return bp(a.replace(L,"$1"),b,c,d,i)}function bd(a){return function(b){var c=b.nodeName.toLowerCase();return c==="input"&&b.type===a}}function be(a){return function(b){var c=b.nodeName.toLowerCase();return(c==="input"||c==="button")&&b.type===a}}function bf(a){return z(function(b){return b=+b,z(function(c,d){var e,f=a([],c.length,b),g=f.length;while(g--)c[e=f[g]]&&(c[e]=!(d[e]=c[e]))})})}function bg(a,b,c){if(a===b)return c;var d=a.nextSibling;while(d){if(d===b)return-1;d=d.nextSibling}return 1}function bh(a,b){var c,d,f,g,h,i,j,k=C[o][a];if(k)return b?0:k.slice(0);h=a,i=[],j=e.preFilter;while(h){if(!c||(d=M.exec(h)))d&&(h=h.slice(d[0].length)),i.push(f=[]);c=!1;if(d=N.exec(h))f.push(c=new q(d.shift())),h=h.slice(c.length),c.type=d[0].replace(L," ");for(g in e.filter)(d=W[g].exec(h))&&(!j[g]||(d=j[g](d,r,!0)))&&(f.push(c=new q(d.shift())),h=h.slice(c.length),c.type=g,c.matches=d);if(!c)break}return b?h.length:h?bc.error(a):C(a,i).slice(0)}function bi(a,b,d){var e=b.dir,f=d&&b.dir==="parentNode",g=u++;return b.first?function(b,c,d){while(b=b[e])if(f||b.nodeType===1)return a(b,c,d)}:function(b,d,h){if(!h){var i,j=t+" "+g+" ",k=j+c;while(b=b[e])if(f||b.nodeType===1){if((i=b[o])===k)return b.sizset;if(typeof i=="string"&&i.indexOf(j)===0){if(b.sizset)return b}else{b[o]=k;if(a(b,d,h))return b.sizset=!0,b;b.sizset=!1}}}else while(b=b[e])if(f||b.nodeType===1)if(a(b,d,h))return b}}function bj(a){return a.length>1?function(b,c,d){var e=a.length;while(e--)if(!a[e](b,c,d))return!1;return!0}:a[0]}function bk(a,b,c,d,e){var f,g=[],h=0,i=a.length,j=b!=null;for(;h<i;h++)if(f=a[h])if(!c||c(f,d,e))g.push(f),j&&b.push(h);return g}function bl(a,b,c,d,e,f){return d&&!d[o]&&(d=bl(d)),e&&!e[o]&&(e=bl(e,f)),z(function(f,g,h,i){if(f&&e)return;var j,k,l,m=[],n=[],o=g.length,p=f||bo(b||"*",h.nodeType?[h]:h,[],f),q=a&&(f||!b)?bk(p,m,a,h,i):p,r=c?e||(f?a:o||d)?[]:g:q;c&&c(q,r,h,i);if(d){l=bk(r,n),d(l,[],h,i),j=l.length;while(j--)if(k=l[j])r[n[j]]=!(q[n[j]]=k)}if(f){j=a&&r.length;while(j--)if(k=r[j])f[m[j]]=!(g[m[j]]=k)}else r=bk(r===g?r.splice(o,r.length):r),e?e(null,g,r,i):w.apply(g,r)})}function bm(a){var b,c,d,f=a.length,g=e.relative[a[0].type],h=g||e.relative[" "],i=g?1:0,j=bi(function(a){return a===b},h,!0),k=bi(function(a){return y.call(b,a)>-1},h,!0),m=[function(a,c,d){return!g&&(d||c!==l)||((b=c).nodeType?j(a,c,d):k(a,c,d))}];for(;i<f;i++)if(c=e.relative[a[i].type])m=[bi(bj(m),c)];else{c=e.filter[a[i].type].apply(null,a[i].matches);if(c[o]){d=++i;for(;d<f;d++)if(e.relative[a[d].type])break;return bl(i>1&&bj(m),i>1&&a.slice(0,i-1).join("").replace(L,"$1"),c,i<d&&bm(a.slice(i,d)),d<f&&bm(a=a.slice(d)),d<f&&a.join(""))}m.push(c)}return bj(m)}function bn(a,b){var d=b.length>0,f=a.length>0,g=function(h,i,j,k,m){var n,o,p,q=[],s=0,u="0",x=h&&[],y=m!=null,z=l,A=h||f&&e.find.TAG("*",m&&i.parentNode||i),B=t+=z==null?1:Math.E;y&&(l=i!==r&&i,c=g.el);for(;(n=A[u])!=null;u++){if(f&&n){for(o=0;p=a[o];o++)if(p(n,i,j)){k.push(n);break}y&&(t=B,c=++g.el)}d&&((n=!p&&n)&&s--,h&&x.push(n))}s+=u;if(d&&u!==s){for(o=0;p=b[o];o++)p(x,q,i,j);if(h){if(s>0)while(u--)!x[u]&&!q[u]&&(q[u]=v.call(k));q=bk(q)}w.apply(k,q),y&&!h&&q.length>0&&s+b.length>1&&bc.uniqueSort(k)}return y&&(t=B,l=z),x};return g.el=0,d?z(g):g}function bo(a,b,c,d){var e=0,f=b.length;for(;e<f;e++)bc(a,b[e],c,d);return c}function bp(a,b,c,d,f){var g,h,j,k,l,m=bh(a),n=m.length;if(!d&&m.length===1){h=m[0]=m[0].slice(0);if(h.length>2&&(j=h[0]).type==="ID"&&b.nodeType===9&&!f&&e.relative[h[1].type]){b=e.find.ID(j.matches[0].replace(V,""),b,f)[0];if(!b)return c;a=a.slice(h.shift().length)}for(g=W.POS.test(a)?-1:h.length-1;g>=0;g--){j=h[g];if(e.relative[k=j.type])break;if(l=e.find[k])if(d=l(j.matches[0].replace(V,""),R.test(h[0].type)&&b.parentNode||b,f)){h.splice(g,1),a=d.length&&h.join("");if(!a)return w.apply(c,x.call(d,0)),c;break}}}return i(a,m)(d,b,f,c,R.test(a)),c}function bq(){}var c,d,e,f,g,h,i,j,k,l,m=!0,n="undefined",o=("sizcache"+Math.random()).replace(".",""),q=String,r=a.document,s=r.documentElement,t=0,u=0,v=[].pop,w=[].push,x=[].slice,y=[].indexOf||function(a){var b=0,c=this.length;for(;b<c;b++)if(this[b]===a)return b;return-1},z=function(a,b){return a[o]=b==null||b,a},A=function(){var a={},b=[];return z(function(c,d){return b.push(c)>e.cacheLength&&delete a[b.shift()],a[c]=d},a)},B=A(),C=A(),D=A(),E="[\\x20\\t\\r\\n\\f]",F="(?:\\\\.|[-\\w]|[^\\x00-\\xa0])+",G=F.replace("w","w#"),H="([*^$|!~]?=)",I="\\["+E+"*("+F+")"+E+"*(?:"+H+E+"*(?:(['\"])((?:\\\\.|[^\\\\])*?)\\3|("+G+")|)|)"+E+"*\\]",J=":("+F+")(?:\\((?:(['\"])((?:\\\\.|[^\\\\])*?)\\2|([^()[\\]]*|(?:(?:"+I+")|[^:]|\\\\.)*|.*))\\)|)",K=":(even|odd|eq|gt|lt|nth|first|last)(?:\\("+E+"*((?:-\\d)?\\d*)"+E+"*\\)|)(?=[^-]|$)",L=new RegExp("^"+E+"+|((?:^|[^\\\\])(?:\\\\.)*)"+E+"+$","g"),M=new RegExp("^"+E+"*,"+E+"*"),N=new RegExp("^"+E+"*([\\x20\\t\\r\\n\\f>+~])"+E+"*"),O=new RegExp(J),P=/^(?:#([\w\-]+)|(\w+)|\.([\w\-]+))$/,Q=/^:not/,R=/[\x20\t\r\n\f]*[+~]/,S=/:not\($/,T=/h\d/i,U=/input|select|textarea|button/i,V=/\\(?!\\)/g,W={ID:new RegExp("^#("+F+")"),CLASS:new RegExp("^\\.("+F+")"),NAME:new RegExp("^\\[name=['\"]?("+F+")['\"]?\\]"),TAG:new RegExp("^("+F.replace("w","w*")+")"),ATTR:new RegExp("^"+I),PSEUDO:new RegExp("^"+J),POS:new RegExp(K,"i"),CHILD:new RegExp("^:(only|nth|first|last)-child(?:\\("+E+"*(even|odd|(([+-]|)(\\d*)n|)"+E+"*(?:([+-]|)"+E+"*(\\d+)|))"+E+"*\\)|)","i"),needsContext:new RegExp("^"+E+"*[>+~]|"+K,"i")},X=function(a){var b=r.createElement("div");try{return a(b)}catch(c){return!1}finally{b=null}},Y=X(function(a){return a.appendChild(r.createComment("")),!a.getElementsByTagName("*").length}),Z=X(function(a){return a.innerHTML="<a href='#'></a>",a.firstChild&&typeof a.firstChild.getAttribute!==n&&a.firstChild.getAttribute("href")==="#"}),$=X(function(a){a.innerHTML="<select></select>";var b=typeof a.lastChild.getAttribute("multiple");return b!=="boolean"&&b!=="string"}),_=X(function(a){return a.innerHTML="<div class='hidden e'></div><div class='hidden'></div>",!a.getElementsByClassName||!a.getElementsByClassName("e").length?!1:(a.lastChild.className="e",a.getElementsByClassName("e").length===2)}),ba=X(function(a){a.id=o+0,a.innerHTML="<a name='"+o+"'></a><div name='"+o+"'></div>",s.insertBefore(a,s.firstChild);var b=r.getElementsByName&&r.getElementsByName(o).length===2+r.getElementsByName(o+0).length;return d=!r.getElementById(o),s.removeChild(a),b});try{x.call(s.childNodes,0)[0].nodeType}catch(bb){x=function(a){var b,c=[];for(;b=this[a];a++)c.push(b);return c}}bc.matches=function(a,b){return bc(a,null,null,b)},bc.matchesSelector=function(a,b){return bc(b,null,null,[a]).length>0},f=bc.getText=function(a){var b,c="",d=0,e=a.nodeType;if(e){if(e===1||e===9||e===11){if(typeof a.textContent=="string")return a.textContent;for(a=a.firstChild;a;a=a.nextSibling)c+=f(a)}else if(e===3||e===4)return a.nodeValue}else for(;b=a[d];d++)c+=f(b);return c},g=bc.isXML=function(a){var b=a&&(a.ownerDocument||a).documentElement;return b?b.nodeName!=="HTML":!1},h=bc.contains=s.contains?function(a,b){var c=a.nodeType===9?a.documentElement:a,d=b&&b.parentNode;return a===d||!!(d&&d.nodeType===1&&c.contains&&c.contains(d))}:s.compareDocumentPosition?function(a,b){return b&&!!(a.compareDocumentPosition(b)&16)}:function(a,b){while(b=b.parentNode)if(b===a)return!0;return!1},bc.attr=function(a,b){var c,d=g(a);return d||(b=b.toLowerCase()),(c=e.attrHandle[b])?c(a):d||$?a.getAttribute(b):(c=a.getAttributeNode(b),c?typeof a[b]=="boolean"?a[b]?b:null:c.specified?c.value:null:null)},e=bc.selectors={cacheLength:50,createPseudo:z,match:W,attrHandle:Z?{}:{href:function(a){return a.getAttribute("href",2)},type:function(a){return a.getAttribute("type")}},find:{ID:d?function(a,b,c){if(typeof b.getElementById!==n&&!c){var d=b.getElementById(a);return d&&d.parentNode?[d]:[]}}:function(a,c,d){if(typeof c.getElementById!==n&&!d){var e=c.getElementById(a);return e?e.id===a||typeof e.getAttributeNode!==n&&e.getAttributeNode("id").value===a?[e]:b:[]}},TAG:Y?function(a,b){if(typeof b.getElementsByTagName!==n)return b.getElementsByTagName(a)}:function(a,b){var c=b.getElementsByTagName(a);if(a==="*"){var d,e=[],f=0;for(;d=c[f];f++)d.nodeType===1&&e.push(d);return e}return c},NAME:ba&&function(a,b){if(typeof b.getElementsByName!==n)return b.getElementsByName(name)},CLASS:_&&function(a,b,c){if(typeof b.getElementsByClassName!==n&&!c)return b.getElementsByClassName(a)}},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(a){return a[1]=a[1].replace(V,""),a[3]=(a[4]||a[5]||"").replace(V,""),a[2]==="~="&&(a[3]=" "+a[3]+" "),a.slice(0,4)},CHILD:function(a){return a[1]=a[1].toLowerCase(),a[1]==="nth"?(a[2]||bc.error(a[0]),a[3]=+(a[3]?a[4]+(a[5]||1):2*(a[2]==="even"||a[2]==="odd")),a[4]=+(a[6]+a[7]||a[2]==="odd")):a[2]&&bc.error(a[0]),a},PSEUDO:function(a){var b,c;if(W.CHILD.test(a[0]))return null;if(a[3])a[2]=a[3];else if(b=a[4])O.test(b)&&(c=bh(b,!0))&&(c=b.indexOf(")",b.length-c)-b.length)&&(b=b.slice(0,c),a[0]=a[0].slice(0,c)),a[2]=b;return a.slice(0,3)}},filter:{ID:d?function(a){return a=a.replace(V,""),function(b){return b.getAttribute("id")===a}}:function(a){return a=a.replace(V,""),function(b){var c=typeof b.getAttributeNode!==n&&b.getAttributeNode("id");return c&&c.value===a}},TAG:function(a){return a==="*"?function(){return!0}:(a=a.replace(V,"").toLowerCase(),function(b){return b.nodeName&&b.nodeName.toLowerCase()===a})},CLASS:function(a){var b=B[o][a];return b||(b=B(a,new RegExp("(^|"+E+")"+a+"("+E+"|$)"))),function(a){return b.test(a.className||typeof a.getAttribute!==n&&a.getAttribute("class")||"")}},ATTR:function(a,b,c){return function(d,e){var f=bc.attr(d,a);return f==null?b==="!=":b?(f+="",b==="="?f===c:b==="!="?f!==c:b==="^="?c&&f.indexOf(c)===0:b==="*="?c&&f.indexOf(c)>-1:b==="$="?c&&f.substr(f.length-c.length)===c:b==="~="?(" "+f+" ").indexOf(c)>-1:b==="|="?f===c||f.substr(0,c.length+1)===c+"-":!1):!0}},CHILD:function(a,b,c,d){return a==="nth"?function(a){var b,e,f=a.parentNode;if(c===1&&d===0)return!0;if(f){e=0;for(b=f.firstChild;b;b=b.nextSibling)if(b.nodeType===1){e++;if(a===b)break}}return e-=d,e===c||e%c===0&&e/c>=0}:function(b){var c=b;switch(a){case"only":case"first":while(c=c.previousSibling)if(c.nodeType===1)return!1;if(a==="first")return!0;c=b;case"last":while(c=c.nextSibling)if(c.nodeType===1)return!1;return!0}}},PSEUDO:function(a,b){var c,d=e.pseudos[a]||e.setFilters[a.toLowerCase()]||bc.error("unsupported pseudo: "+a);return d[o]?d(b):d.length>1?(c=[a,a,"",b],e.setFilters.hasOwnProperty(a.toLowerCase())?z(function(a,c){var e,f=d(a,b),g=f.length;while(g--)e=y.call(a,f[g]),a[e]=!(c[e]=f[g])}):function(a){return d(a,0,c)}):d}},pseudos:{not:z(function(a){var b=[],c=[],d=i(a.replace(L,"$1"));return d[o]?z(function(a,b,c,e){var f,g=d(a,null,e,[]),h=a.length;while(h--)if(f=g[h])a[h]=!(b[h]=f)}):function(a,e,f){return b[0]=a,d(b,null,f,c),!c.pop()}}),has:z(function(a){return function(b){return bc(a,b).length>0}}),contains:z(function(a){return function(b){return(b.textContent||b.innerText||f(b)).indexOf(a)>-1}}),enabled:function(a){return a.disabled===!1},disabled:function(a){return a.disabled===!0},checked:function(a){var b=a.nodeName.toLowerCase();return b==="input"&&!!a.checked||b==="option"&&!!a.selected},selected:function(a){return a.parentNode&&a.parentNode.selectedIndex,a.selected===!0},parent:function(a){return!e.pseudos.empty(a)},empty:function(a){var b;a=a.firstChild;while(a){if(a.nodeName>"@"||(b=a.nodeType)===3||b===4)return!1;a=a.nextSibling}return!0},header:function(a){return T.test(a.nodeName)},text:function(a){var b,c;return a.nodeName.toLowerCase()==="input"&&(b=a.type)==="text"&&((c=a.getAttribute("type"))==null||c.toLowerCase()===b)},radio:bd("radio"),checkbox:bd("checkbox"),file:bd("file"),password:bd("password"),image:bd("image"),submit:be("submit"),reset:be("reset"),button:function(a){var b=a.nodeName.toLowerCase();return b==="input"&&a.type==="button"||b==="button"},input:function(a){return U.test(a.nodeName)},focus:function(a){var b=a.ownerDocument;return a===b.activeElement&&(!b.hasFocus||b.hasFocus())&&(!!a.type||!!a.href)},active:function(a){return a===a.ownerDocument.activeElement},first:bf(function(a,b,c){return[0]}),last:bf(function(a,b,c){return[b-1]}),eq:bf(function(a,b,c){return[c<0?c+b:c]}),even:bf(function(a,b,c){for(var d=0;d<b;d+=2)a.push(d);return a}),odd:bf(function(a,b,c){for(var d=1;d<b;d+=2)a.push(d);return a}),lt:bf(function(a,b,c){for(var d=c<0?c+b:c;--d>=0;)a.push(d);return a}),gt:bf(function(a,b,c){for(var d=c<0?c+b:c;++d<b;)a.push(d);return a})}},j=s.compareDocumentPosition?function(a,b){return a===b?(k=!0,0):(!a.compareDocumentPosition||!b.compareDocumentPosition?a.compareDocumentPosition:a.compareDocumentPosition(b)&4)?-1:1}:function(a,b){if(a===b)return k=!0,0;if(a.sourceIndex&&b.sourceIndex)return a.sourceIndex-b.sourceIndex;var c,d,e=[],f=[],g=a.parentNode,h=b.parentNode,i=g;if(g===h)return bg(a,b);if(!g)return-1;if(!h)return 1;while(i)e.unshift(i),i=i.parentNode;i=h;while(i)f.unshift(i),i=i.parentNode;c=e.length,d=f.length;for(var j=0;j<c&&j<d;j++)if(e[j]!==f[j])return bg(e[j],f[j]);return j===c?bg(a,f[j],-1):bg(e[j],b,1)},[0,0].sort(j),m=!k,bc.uniqueSort=function(a){var b,c=1;k=m,a.sort(j);if(k)for(;b=a[c];c++)b===a[c-1]&&a.splice(c--,1);return a},bc.error=function(a){throw new Error("Syntax error, unrecognized expression: "+a)},i=bc.compile=function(a,b){var c,d=[],e=[],f=D[o][a];if(!f){b||(b=bh(a)),c=b.length;while(c--)f=bm(b[c]),f[o]?d.push(f):e.push(f);f=D(a,bn(e,d))}return f},r.querySelectorAll&&function(){var a,b=bp,c=/'|\\/g,d=/\=[\x20\t\r\n\f]*([^'"\]]*)[\x20\t\r\n\f]*\]/g,e=[":focus"],f=[":active",":focus"],h=s.matchesSelector||s.mozMatchesSelector||s.webkitMatchesSelector||s.oMatchesSelector||s.msMatchesSelector;X(function(a){a.innerHTML="<select><option selected=''></option></select>",a.querySelectorAll("[selected]").length||e.push("\\["+E+"*(?:checked|disabled|ismap|multiple|readonly|selected|value)"),a.querySelectorAll(":checked").length||e.push(":checked")}),X(function(a){a.innerHTML="<p test=''></p>",a.querySelectorAll("[test^='']").length&&e.push("[*^$]="+E+"*(?:\"\"|'')"),a.innerHTML="<input type='hidden'/>",a.querySelectorAll(":enabled").length||e.push(":enabled",":disabled")}),e=new RegExp(e.join("|")),bp=function(a,d,f,g,h){if(!g&&!h&&(!e||!e.test(a))){var i,j,k=!0,l=o,m=d,n=d.nodeType===9&&a;if(d.nodeType===1&&d.nodeName.toLowerCase()!=="object"){i=bh(a),(k=d.getAttribute("id"))?l=k.replace(c,"\\$&"):d.setAttribute("id",l),l="[id='"+l+"'] ",j=i.length;while(j--)i[j]=l+i[j].join("");m=R.test(a)&&d.parentNode||d,n=i.join(",")}if(n)try{return w.apply(f,x.call(m.querySelectorAll(n),0)),f}catch(p){}finally{k||d.removeAttribute("id")}}return b(a,d,f,g,h)},h&&(X(function(b){a=h.call(b,"div");try{h.call(b,"[test!='']:sizzle"),f.push("!=",J)}catch(c){}}),f=new RegExp(f.join("|")),bc.matchesSelector=function(b,c){c=c.replace(d,"='$1']");if(!g(b)&&!f.test(c)&&(!e||!e.test(c)))try{var i=h.call(b,c);if(i||a||b.document&&b.document.nodeType!==11)return i}catch(j){}return bc(c,null,null,[b]).length>0})}(),e.pseudos.nth=e.pseudos.eq,e.filters=bq.prototype=e.pseudos,e.setFilters=new bq,bc.attr=p.attr,p.find=bc,p.expr=bc.selectors,p.expr[":"]=p.expr.pseudos,p.unique=bc.uniqueSort,p.text=bc.getText,p.isXMLDoc=bc.isXML,p.contains=bc.contains}(a);var bc=/Until$/,bd=/^(?:parents|prev(?:Until|All))/,be=/^.[^:#\[\.,]*$/,bf=p.expr.match.needsContext,bg={children:!0,contents:!0,next:!0,prev:!0};p.fn.extend({find:function(a){var b,c,d,e,f,g,h=this;if(typeof a!="string")return p(a).filter(function(){for(b=0,c=h.length;b<c;b++)if(p.contains(h[b],this))return!0});g=this.pushStack("","find",a);for(b=0,c=this.length;b<c;b++){d=g.length,p.find(a,this[b],g);if(b>0)for(e=d;e<g.length;e++)for(f=0;f<d;f++)if(g[f]===g[e]){g.splice(e--,1);break}}return g},has:function(a){var b,c=p(a,this),d=c.length;return this.filter(function(){for(b=0;b<d;b++)if(p.contains(this,c[b]))return!0})},not:function(a){return this.pushStack(bj(this,a,!1),"not",a)},filter:function(a){return this.pushStack(bj(this,a,!0),"filter",a)},is:function(a){return!!a&&(typeof a=="string"?bf.test(a)?p(a,this.context).index(this[0])>=0:p.filter(a,this).length>0:this.filter(a).length>0)},closest:function(a,b){var c,d=0,e=this.length,f=[],g=bf.test(a)||typeof a!="string"?p(a,b||this.context):0;for(;d<e;d++){c=this[d];while(c&&c.ownerDocument&&c!==b&&c.nodeType!==11){if(g?g.index(c)>-1:p.find.matchesSelector(c,a)){f.push(c);break}c=c.parentNode}}return f=f.length>1?p.unique(f):f,this.pushStack(f,"closest",a)},index:function(a){return a?typeof a=="string"?p.inArray(this[0],p(a)):p.inArray(a.jquery?a[0]:a,this):this[0]&&this[0].parentNode?this.prevAll().length:-1},add:function(a,b){var c=typeof a=="string"?p(a,b):p.makeArray(a&&a.nodeType?[a]:a),d=p.merge(this.get(),c);return this.pushStack(bh(c[0])||bh(d[0])?d:p.unique(d))},addBack:function(a){return this.add(a==null?this.prevObject:this.prevObject.filter(a))}}),p.fn.andSelf=p.fn.addBack,p.each({parent:function(a){var b=a.parentNode;return b&&b.nodeType!==11?b:null},parents:function(a){return p.dir(a,"parentNode")},parentsUntil:function(a,b,c){return p.dir(a,"parentNode",c)},next:function(a){return bi(a,"nextSibling")},prev:function(a){return bi(a,"previousSibling")},nextAll:function(a){return p.dir(a,"nextSibling")},prevAll:function(a){return p.dir(a,"previousSibling")},nextUntil:function(a,b,c){return p.dir(a,"nextSibling",c)},prevUntil:function(a,b,c){return p.dir(a,"previousSibling",c)},siblings:function(a){return p.sibling((a.parentNode||{}).firstChild,a)},children:function(a){return p.sibling(a.firstChild)},contents:function(a){return p.nodeName(a,"iframe")?a.contentDocument||a.contentWindow.document:p.merge([],a.childNodes)}},function(a,b){p.fn[a]=function(c,d){var e=p.map(this,b,c);return bc.test(a)||(d=c),d&&typeof d=="string"&&(e=p.filter(d,e)),e=this.length>1&&!bg[a]?p.unique(e):e,this.length>1&&bd.test(a)&&(e=e.reverse()),this.pushStack(e,a,k.call(arguments).join(","))}}),p.extend({filter:function(a,b,c){return c&&(a=":not("+a+")"),b.length===1?p.find.matchesSelector(b[0],a)?[b[0]]:[]:p.find.matches(a,b)},dir:function(a,c,d){var e=[],f=a[c];while(f&&f.nodeType!==9&&(d===b||f.nodeType!==1||!p(f).is(d)))f.nodeType===1&&e.push(f),f=f[c];return e},sibling:function(a,b){var c=[];for(;a;a=a.nextSibling)a.nodeType===1&&a!==b&&c.push(a);return c}});var bl="abbr|article|aside|audio|bdi|canvas|data|datalist|details|figcaption|figure|footer|header|hgroup|mark|meter|nav|output|progress|section|summary|time|video",bm=/ jQuery\d+="(?:null|\d+)"/g,bn=/^\s+/,bo=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/gi,bp=/<([\w:]+)/,bq=/<tbody/i,br=/<|&#?\w+;/,bs=/<(?:script|style|link)/i,bt=/<(?:script|object|embed|option|style)/i,bu=new RegExp("<(?:"+bl+")[\\s/>]","i"),bv=/^(?:checkbox|radio)$/,bw=/checked\s*(?:[^=]|=\s*.checked.)/i,bx=/\/(java|ecma)script/i,by=/^\s*<!(?:\[CDATA\[|\-\-)|[\]\-]{2}>\s*$/g,bz={option:[1,"<select multiple='multiple'>","</select>"],legend:[1,"<fieldset>","</fieldset>"],thead:[1,"<table>","</table>"],tr:[2,"<table><tbody>","</tbody></table>"],td:[3,"<table><tbody><tr>","</tr></tbody></table>"],col:[2,"<table><tbody></tbody><colgroup>","</colgroup></table>"],area:[1,"<map>","</map>"],_default:[0,"",""]},bA=bk(e),bB=bA.appendChild(e.createElement("div"));bz.optgroup=bz.option,bz.tbody=bz.tfoot=bz.colgroup=bz.caption=bz.thead,bz.th=bz.td,p.support.htmlSerialize||(bz._default=[1,"X<div>","</div>"]),p.fn.extend({text:function(a){return p.access(this,function(a){return a===b?p.text(this):this.empty().append((this[0]&&this[0].ownerDocument||e).createTextNode(a))},null,a,arguments.length)},wrapAll:function(a){if(p.isFunction(a))return this.each(function(b){p(this).wrapAll(a.call(this,b))});if(this[0]){var b=p(a,this[0].ownerDocument).eq(0).clone(!0);this[0].parentNode&&b.insertBefore(this[0]),b.map(function(){var a=this;while(a.firstChild&&a.firstChild.nodeType===1)a=a.firstChild;return a}).append(this)}return this},wrapInner:function(a){return p.isFunction(a)?this.each(function(b){p(this).wrapInner(a.call(this,b))}):this.each(function(){var b=p(this),c=b.contents();c.length?c.wrapAll(a):b.append(a)})},wrap:function(a){var b=p.isFunction(a);return this.each(function(c){p(this).wrapAll(b?a.call(this,c):a)})},unwrap:function(){return this.parent().each(function(){p.nodeName(this,"body")||p(this).replaceWith(this.childNodes)}).end()},append:function(){return this.domManip(arguments,!0,function(a){(this.nodeType===1||this.nodeType===11)&&this.appendChild(a)})},prepend:function(){return this.domManip(arguments,!0,function(a){(this.nodeType===1||this.nodeType===11)&&this.insertBefore(a,this.firstChild)})},before:function(){if(!bh(this[0]))return this.domManip(arguments,!1,function(a){this.parentNode.insertBefore(a,this)});if(arguments.length){var a=p.clean(arguments);return this.pushStack(p.merge(a,this),"before",this.selector)}},after:function(){if(!bh(this[0]))return this.domManip(arguments,!1,function(a){this.parentNode.insertBefore(a,this.nextSibling)});if(arguments.length){var a=p.clean(arguments);return this.pushStack(p.merge(this,a),"after",this.selector)}},remove:function(a,b){var c,d=0;for(;(c=this[d])!=null;d++)if(!a||p.filter(a,[c]).length)!b&&c.nodeType===1&&(p.cleanData(c.getElementsByTagName("*")),p.cleanData([c])),c.parentNode&&c.parentNode.removeChild(c);return this},empty:function(){var a,b=0;for(;(a=this[b])!=null;b++){a.nodeType===1&&p.cleanData(a.getElementsByTagName("*"));while(a.firstChild)a.removeChild(a.firstChild)}return this},clone:function(a,b){return a=a==null?!1:a,b=b==null?a:b,this.map(function(){return p.clone(this,a,b)})},html:function(a){return p.access(this,function(a){var c=this[0]||{},d=0,e=this.length;if(a===b)return c.nodeType===1?c.innerHTML.replace(bm,""):b;if(typeof a=="string"&&!bs.test(a)&&(p.support.htmlSerialize||!bu.test(a))&&(p.support.leadingWhitespace||!bn.test(a))&&!bz[(bp.exec(a)||["",""])[1].toLowerCase()]){a=a.replace(bo,"<$1></$2>");try{for(;d<e;d++)c=this[d]||{},c.nodeType===1&&(p.cleanData(c.getElementsByTagName("*")),c.innerHTML=a);c=0}catch(f){}}c&&this.empty().append(a)},null,a,arguments.length)},replaceWith:function(a){return bh(this[0])?this.length?this.pushStack(p(p.isFunction(a)?a():a),"replaceWith",a):this:p.isFunction(a)?this.each(function(b){var c=p(this),d=c.html();c.replaceWith(a.call(this,b,d))}):(typeof a!="string"&&(a=p(a).detach()),this.each(function(){var b=this.nextSibling,c=this.parentNode;p(this).remove(),b?p(b).before(a):p(c).append(a)}))},detach:function(a){return this.remove(a,!0)},domManip:function(a,c,d){a=[].concat.apply([],a);var e,f,g,h,i=0,j=a[0],k=[],l=this.length;if(!p.support.checkClone&&l>1&&typeof j=="string"&&bw.test(j))return this.each(function(){p(this).domManip(a,c,d)});if(p.isFunction(j))return this.each(function(e){var f=p(this);a[0]=j.call(this,e,c?f.html():b),f.domManip(a,c,d)});if(this[0]){e=p.buildFragment(a,this,k),g=e.fragment,f=g.firstChild,g.childNodes.length===1&&(g=f);if(f){c=c&&p.nodeName(f,"tr");for(h=e.cacheable||l-1;i<l;i++)d.call(c&&p.nodeName(this[i],"table")?bC(this[i],"tbody"):this[i],i===h?g:p.clone(g,!0,!0))}g=f=null,k.length&&p.each(k,function(a,b){b.src?p.ajax?p.ajax({url:b.src,type:"GET",dataType:"script",async:!1,global:!1,"throws":!0}):p.error("no ajax"):p.globalEval((b.text||b.textContent||b.innerHTML||"").replace(by,"")),b.parentNode&&b.parentNode.removeChild(b)})}return this}}),p.buildFragment=function(a,c,d){var f,g,h,i=a[0];return c=c||e,c=!c.nodeType&&c[0]||c,c=c.ownerDocument||c,a.length===1&&typeof i=="string"&&i.length<512&&c===e&&i.charAt(0)==="<"&&!bt.test(i)&&(p.support.checkClone||!bw.test(i))&&(p.support.html5Clone||!bu.test(i))&&(g=!0,f=p.fragments[i],h=f!==b),f||(f=c.createDocumentFragment(),p.clean(a,c,f,d),g&&(p.fragments[i]=h&&f)),{fragment:f,cacheable:g}},p.fragments={},p.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(a,b){p.fn[a]=function(c){var d,e=0,f=[],g=p(c),h=g.length,i=this.length===1&&this[0].parentNode;if((i==null||i&&i.nodeType===11&&i.childNodes.length===1)&&h===1)return g[b](this[0]),this;for(;e<h;e++)d=(e>0?this.clone(!0):this).get(),p(g[e])[b](d),f=f.concat(d);return this.pushStack(f,a,g.selector)}}),p.extend({clone:function(a,b,c){var d,e,f,g;p.support.html5Clone||p.isXMLDoc(a)||!bu.test("<"+a.nodeName+">")?g=a.cloneNode(!0):(bB.innerHTML=a.outerHTML,bB.removeChild(g=bB.firstChild));if((!p.support.noCloneEvent||!p.support.noCloneChecked)&&(a.nodeType===1||a.nodeType===11)&&!p.isXMLDoc(a)){bE(a,g),d=bF(a),e=bF(g);for(f=0;d[f];++f)e[f]&&bE(d[f],e[f])}if(b){bD(a,g);if(c){d=bF(a),e=bF(g);for(f=0;d[f];++f)bD(d[f],e[f])}}return d=e=null,g},clean:function(a,b,c,d){var f,g,h,i,j,k,l,m,n,o,q,r,s=b===e&&bA,t=[];if(!b||typeof b.createDocumentFragment=="undefined")b=e;for(f=0;(h=a[f])!=null;f++){typeof h=="number"&&(h+="");if(!h)continue;if(typeof h=="string")if(!br.test(h))h=b.createTextNode(h);else{s=s||bk(b),l=b.createElement("div"),s.appendChild(l),h=h.replace(bo,"<$1></$2>"),i=(bp.exec(h)||["",""])[1].toLowerCase(),j=bz[i]||bz._default,k=j[0],l.innerHTML=j[1]+h+j[2];while(k--)l=l.lastChild;if(!p.support.tbody){m=bq.test(h),n=i==="table"&&!m?l.firstChild&&l.firstChild.childNodes:j[1]==="<table>"&&!m?l.childNodes:[];for(g=n.length-1;g>=0;--g)p.nodeName(n[g],"tbody")&&!n[g].childNodes.length&&n[g].parentNode.removeChild(n[g])}!p.support.leadingWhitespace&&bn.test(h)&&l.insertBefore(b.createTextNode(bn.exec(h)[0]),l.firstChild),h=l.childNodes,l.parentNode.removeChild(l)}h.nodeType?t.push(h):p.merge(t,h)}l&&(h=l=s=null);if(!p.support.appendChecked)for(f=0;(h=t[f])!=null;f++)p.nodeName(h,"input")?bG(h):typeof h.getElementsByTagName!="undefined"&&p.grep(h.getElementsByTagName("input"),bG);if(c){q=function(a){if(!a.type||bx.test(a.type))return d?d.push(a.parentNode?a.parentNode.removeChild(a):a):c.appendChild(a)};for(f=0;(h=t[f])!=null;f++)if(!p.nodeName(h,"script")||!q(h))c.appendChild(h),typeof h.getElementsByTagName!="undefined"&&(r=p.grep(p.merge([],h.getElementsByTagName("script")),q),t.splice.apply(t,[f+1,0].concat(r)),f+=r.length)}return t},cleanData:function(a,b){var c,d,e,f,g=0,h=p.expando,i=p.cache,j=p.support.deleteExpando,k=p.event.special;for(;(e=a[g])!=null;g++)if(b||p.acceptData(e)){d=e[h],c=d&&i[d];if(c){if(c.events)for(f in c.events)k[f]?p.event.remove(e,f):p.removeEvent(e,f,c.handle);i[d]&&(delete i[d],j?delete e[h]:e.removeAttribute?e.removeAttribute(h):e[h]=null,p.deletedIds.push(d))}}}}),function(){var a,b;p.uaMatch=function(a){a=a.toLowerCase();var b=/(chrome)[ \/]([\w.]+)/.exec(a)||/(webkit)[ \/]([\w.]+)/.exec(a)||/(opera)(?:.*version|)[ \/]([\w.]+)/.exec(a)||/(msie) ([\w.]+)/.exec(a)||a.indexOf("compatible")<0&&/(mozilla)(?:.*? rv:([\w.]+)|)/.exec(a)||[];return{browser:b[1]||"",version:b[2]||"0"}},a=p.uaMatch(g.userAgent),b={},a.browser&&(b[a.browser]=!0,b.version=a.version),b.chrome?b.webkit=!0:b.webkit&&(b.safari=!0),p.browser=b,p.sub=function(){function a(b,c){return new a.fn.init(b,c)}p.extend(!0,a,this),a.superclass=this,a.fn=a.prototype=this(),a.fn.constructor=a,a.sub=this.sub,a.fn.init=function c(c,d){return d&&d instanceof p&&!(d instanceof a)&&(d=a(d)),p.fn.init.call(this,c,d,b)},a.fn.init.prototype=a.fn;var b=a(e);return a}}();var bH,bI,bJ,bK=/alpha\([^)]*\)/i,bL=/opacity=([^)]*)/,bM=/^(top|right|bottom|left)$/,bN=/^(none|table(?!-c[ea]).+)/,bO=/^margin/,bP=new RegExp("^("+q+")(.*)$","i"),bQ=new RegExp("^("+q+")(?!px)[a-z%]+$","i"),bR=new RegExp("^([-+])=("+q+")","i"),bS={},bT={position:"absolute",visibility:"hidden",display:"block"},bU={letterSpacing:0,fontWeight:400},bV=["Top","Right","Bottom","Left"],bW=["Webkit","O","Moz","ms"],bX=p.fn.toggle;p.fn.extend({css:function(a,c){return p.access(this,function(a,c,d){return d!==b?p.style(a,c,d):p.css(a,c)},a,c,arguments.length>1)},show:function(){return b$(this,!0)},hide:function(){return b$(this)},toggle:function(a,b){var c=typeof a=="boolean";return p.isFunction(a)&&p.isFunction(b)?bX.apply(this,arguments):this.each(function(){(c?a:bZ(this))?p(this).show():p(this).hide()})}}),p.extend({cssHooks:{opacity:{get:function(a,b){if(b){var c=bH(a,"opacity");return c===""?"1":c}}}},cssNumber:{fillOpacity:!0,fontWeight:!0,lineHeight:!0,opacity:!0,orphans:!0,widows:!0,zIndex:!0,zoom:!0},cssProps:{"float":p.support.cssFloat?"cssFloat":"styleFloat"},style:function(a,c,d,e){if(!a||a.nodeType===3||a.nodeType===8||!a.style)return;var f,g,h,i=p.camelCase(c),j=a.style;c=p.cssProps[i]||(p.cssProps[i]=bY(j,i)),h=p.cssHooks[c]||p.cssHooks[i];if(d===b)return h&&"get"in h&&(f=h.get(a,!1,e))!==b?f:j[c];g=typeof d,g==="string"&&(f=bR.exec(d))&&(d=(f[1]+1)*f[2]+parseFloat(p.css(a,c)),g="number");if(d==null||g==="number"&&isNaN(d))return;g==="number"&&!p.cssNumber[i]&&(d+="px");if(!h||!("set"in h)||(d=h.set(a,d,e))!==b)try{j[c]=d}catch(k){}},css:function(a,c,d,e){var f,g,h,i=p.camelCase(c);return c=p.cssProps[i]||(p.cssProps[i]=bY(a.style,i)),h=p.cssHooks[c]||p.cssHooks[i],h&&"get"in h&&(f=h.get(a,!0,e)),f===b&&(f=bH(a,c)),f==="normal"&&c in bU&&(f=bU[c]),d||e!==b?(g=parseFloat(f),d||p.isNumeric(g)?g||0:f):f},swap:function(a,b,c){var d,e,f={};for(e in b)f[e]=a.style[e],a.style[e]=b[e];d=c.call(a);for(e in b)a.style[e]=f[e];return d}}),a.getComputedStyle?bH=function(b,c){var d,e,f,g,h=a.getComputedStyle(b,null),i=b.style;return h&&(d=h[c],d===""&&!p.contains(b.ownerDocument,b)&&(d=p.style(b,c)),bQ.test(d)&&bO.test(c)&&(e=i.width,f=i.minWidth,g=i.maxWidth,i.minWidth=i.maxWidth=i.width=d,d=h.width,i.width=e,i.minWidth=f,i.maxWidth=g)),d}:e.documentElement.currentStyle&&(bH=function(a,b){var c,d,e=a.currentStyle&&a.currentStyle[b],f=a.style;return e==null&&f&&f[b]&&(e=f[b]),bQ.test(e)&&!bM.test(b)&&(c=f.left,d=a.runtimeStyle&&a.runtimeStyle.left,d&&(a.runtimeStyle.left=a.currentStyle.left),f.left=b==="fontSize"?"1em":e,e=f.pixelLeft+"px",f.left=c,d&&(a.runtimeStyle.left=d)),e===""?"auto":e}),p.each(["height","width"],function(a,b){p.cssHooks[b]={get:function(a,c,d){if(c)return a.offsetWidth===0&&bN.test(bH(a,"display"))?p.swap(a,bT,function(){return cb(a,b,d)}):cb(a,b,d)},set:function(a,c,d){return b_(a,c,d?ca(a,b,d,p.support.boxSizing&&p.css(a,"boxSizing")==="border-box"):0)}}}),p.support.opacity||(p.cssHooks.opacity={get:function(a,b){return bL.test((b&&a.currentStyle?a.currentStyle.filter:a.style.filter)||"")?.01*parseFloat(RegExp.$1)+"":b?"1":""},set:function(a,b){var c=a.style,d=a.currentStyle,e=p.isNumeric(b)?"alpha(opacity="+b*100+")":"",f=d&&d.filter||c.filter||"";c.zoom=1;if(b>=1&&p.trim(f.replace(bK,""))===""&&c.removeAttribute){c.removeAttribute("filter");if(d&&!d.filter)return}c.filter=bK.test(f)?f.replace(bK,e):f+" "+e}}),p(function(){p.support.reliableMarginRight||(p.cssHooks.marginRight={get:function(a,b){return p.swap(a,{display:"inline-block"},function(){if(b)return bH(a,"marginRight")})}}),!p.support.pixelPosition&&p.fn.position&&p.each(["top","left"],function(a,b){p.cssHooks[b]={get:function(a,c){if(c){var d=bH(a,b);return bQ.test(d)?p(a).position()[b]+"px":d}}}})}),p.expr&&p.expr.filters&&(p.expr.filters.hidden=function(a){return a.offsetWidth===0&&a.offsetHeight===0||!p.support.reliableHiddenOffsets&&(a.style&&a.style.display||bH(a,"display"))==="none"},p.expr.filters.visible=function(a){return!p.expr.filters.hidden(a)}),p.each({margin:"",padding:"",border:"Width"},function(a,b){p.cssHooks[a+b]={expand:function(c){var d,e=typeof c=="string"?c.split(" "):[c],f={};for(d=0;d<4;d++)f[a+bV[d]+b]=e[d]||e[d-2]||e[0];return f}},bO.test(a)||(p.cssHooks[a+b].set=b_)});var cd=/%20/g,ce=/\[\]$/,cf=/\r?\n/g,cg=/^(?:color|date|datetime|datetime-local|email|hidden|month|number|password|range|search|tel|text|time|url|week)$/i,ch=/^(?:select|textarea)/i;p.fn.extend({serialize:function(){return p.param(this.serializeArray())},serializeArray:function(){return this.map(function(){return this.elements?p.makeArray(this.elements):this}).filter(function(){return this.name&&!this.disabled&&(this.checked||ch.test(this.nodeName)||cg.test(this.type))}).map(function(a,b){var c=p(this).val();return c==null?null:p.isArray(c)?p.map(c,function(a,c){return{name:b.name,value:a.replace(cf,"\r\n")}}):{name:b.name,value:c.replace(cf,"\r\n")}}).get()}}),p.param=function(a,c){var d,e=[],f=function(a,b){b=p.isFunction(b)?b():b==null?"":b,e[e.length]=encodeURIComponent(a)+"="+encodeURIComponent(b)};c===b&&(c=p.ajaxSettings&&p.ajaxSettings.traditional);if(p.isArray(a)||a.jquery&&!p.isPlainObject(a))p.each(a,function(){f(this.name,this.value)});else for(d in a)ci(d,a[d],c,f);return e.join("&").replace(cd,"+")};var cj,ck,cl=/#.*$/,cm=/^(.*?):[ \t]*([^\r\n]*)\r?$/mg,cn=/^(?:about|app|app\-storage|.+\-extension|file|res|widget):$/,co=/^(?:GET|HEAD)$/,cp=/^\/\//,cq=/\?/,cr=/<script\b[^<]*(?:(?!<\/script>)<[^<]*)*<\/script>/gi,cs=/([?&])_=[^&]*/,ct=/^([\w\+\.\-]+:)(?:\/\/([^\/?#:]*)(?::(\d+)|)|)/,cu=p.fn.load,cv={},cw={},cx=["*/"]+["*"];try{ck=f.href}catch(cy){ck=e.createElement("a"),ck.href="",ck=ck.href}cj=ct.exec(ck.toLowerCase())||[],p.fn.load=function(a,c,d){if(typeof a!="string"&&cu)return cu.apply(this,arguments);if(!this.length)return this;var e,f,g,h=this,i=a.indexOf(" ");return i>=0&&(e=a.slice(i,a.length),a=a.slice(0,i)),p.isFunction(c)?(d=c,c=b):c&&typeof c=="object"&&(f="POST"),p.ajax({url:a,type:f,dataType:"html",data:c,complete:function(a,b){d&&h.each(d,g||[a.responseText,b,a])}}).done(function(a){g=arguments,h.html(e?p("<div>").append(a.replace(cr,"")).find(e):a)}),this},p.each("ajaxStart ajaxStop ajaxComplete ajaxError ajaxSuccess ajaxSend".split(" "),function(a,b){p.fn[b]=function(a){return this.on(b,a)}}),p.each(["get","post"],function(a,c){p[c]=function(a,d,e,f){return p.isFunction(d)&&(f=f||e,e=d,d=b),p.ajax({type:c,url:a,data:d,success:e,dataType:f})}}),p.extend({getScript:function(a,c){return p.get(a,b,c,"script")},getJSON:function(a,b,c){return p.get(a,b,c,"json")},ajaxSetup:function(a,b){return b?cB(a,p.ajaxSettings):(b=a,a=p.ajaxSettings),cB(a,b),a},ajaxSettings:{url:ck,isLocal:cn.test(cj[1]),global:!0,type:"GET",contentType:"application/x-www-form-urlencoded; charset=UTF-8",processData:!0,async:!0,accepts:{xml:"application/xml, text/xml",html:"text/html",text:"text/plain",json:"application/json, text/javascript","*":cx},contents:{xml:/xml/,html:/html/,json:/json/},responseFields:{xml:"responseXML",text:"responseText"},converters:{"* text":a.String,"text html":!0,"text json":p.parseJSON,"text xml":p.parseXML},flatOptions:{context:!0,url:!0}},ajaxPrefilter:cz(cv),ajaxTransport:cz(cw),ajax:function(a,c){function y(a,c,f,i){var k,s,t,u,w,y=c;if(v===2)return;v=2,h&&clearTimeout(h),g=b,e=i||"",x.readyState=a>0?4:0,f&&(u=cC(l,x,f));if(a>=200&&a<300||a===304)l.ifModified&&(w=x.getResponseHeader("Last-Modified"),w&&(p.lastModified[d]=w),w=x.getResponseHeader("Etag"),w&&(p.etag[d]=w)),a===304?(y="notmodified",k=!0):(k=cD(l,u),y=k.state,s=k.data,t=k.error,k=!t);else{t=y;if(!y||a)y="error",a<0&&(a=0)}x.status=a,x.statusText=(c||y)+"",k?o.resolveWith(m,[s,y,x]):o.rejectWith(m,[x,y,t]),x.statusCode(r),r=b,j&&n.trigger("ajax"+(k?"Success":"Error"),[x,l,k?s:t]),q.fireWith(m,[x,y]),j&&(n.trigger("ajaxComplete",[x,l]),--p.active||p.event.trigger("ajaxStop"))}typeof a=="object"&&(c=a,a=b),c=c||{};var d,e,f,g,h,i,j,k,l=p.ajaxSetup({},c),m=l.context||l,n=m!==l&&(m.nodeType||m instanceof p)?p(m):p.event,o=p.Deferred(),q=p.Callbacks("once memory"),r=l.statusCode||{},t={},u={},v=0,w="canceled",x={readyState:0,setRequestHeader:function(a,b){if(!v){var c=a.toLowerCase();a=u[c]=u[c]||a,t[a]=b}return this},getAllResponseHeaders:function(){return v===2?e:null},getResponseHeader:function(a){var c;if(v===2){if(!f){f={};while(c=cm.exec(e))f[c[1].toLowerCase()]=c[2]}c=f[a.toLowerCase()]}return c===b?null:c},overrideMimeType:function(a){return v||(l.mimeType=a),this},abort:function(a){return a=a||w,g&&g.abort(a),y(0,a),this}};o.promise(x),x.success=x.done,x.error=x.fail,x.complete=q.add,x.statusCode=function(a){if(a){var b;if(v<2)for(b in a)r[b]=[r[b],a[b]];else b=a[x.status],x.always(b)}return this},l.url=((a||l.url)+"").replace(cl,"").replace(cp,cj[1]+"//"),l.dataTypes=p.trim(l.dataType||"*").toLowerCase().split(s),l.crossDomain==null&&(i=ct.exec(l.url.toLowerCase())||!1,l.crossDomain=i&&i.join(":")+(i[3]?"":i[1]==="http:"?80:443)!==cj.join(":")+(cj[3]?"":cj[1]==="http:"?80:443)),l.data&&l.processData&&typeof l.data!="string"&&(l.data=p.param(l.data,l.traditional)),cA(cv,l,c,x);if(v===2)return x;j=l.global,l.type=l.type.toUpperCase(),l.hasContent=!co.test(l.type),j&&p.active++===0&&p.event.trigger("ajaxStart");if(!l.hasContent){l.data&&(l.url+=(cq.test(l.url)?"&":"?")+l.data,delete l.data),d=l.url;if(l.cache===!1){var z=p.now(),A=l.url.replace(cs,"$1_="+z);l.url=A+(A===l.url?(cq.test(l.url)?"&":"?")+"_="+z:"")}}(l.data&&l.hasContent&&l.contentType!==!1||c.contentType)&&x.setRequestHeader("Content-Type",l.contentType),l.ifModified&&(d=d||l.url,p.lastModified[d]&&x.setRequestHeader("If-Modified-Since",p.lastModified[d]),p.etag[d]&&x.setRequestHeader("If-None-Match",p.etag[d])),x.setRequestHeader("Accept",l.dataTypes[0]&&l.accepts[l.dataTypes[0]]?l.accepts[l.dataTypes[0]]+(l.dataTypes[0]!=="*"?", "+cx+"; q=0.01":""):l.accepts["*"]);for(k in l.headers)x.setRequestHeader(k,l.headers[k]);if(!l.beforeSend||l.beforeSend.call(m,x,l)!==!1&&v!==2){w="abort";for(k in{success:1,error:1,complete:1})x[k](l[k]);g=cA(cw,l,c,x);if(!g)y(-1,"No Transport");else{x.readyState=1,j&&n.trigger("ajaxSend",[x,l]),l.async&&l.timeout>0&&(h=setTimeout(function(){x.abort("timeout")},l.timeout));try{v=1,g.send(t,y)}catch(B){if(v<2)y(-1,B);else throw B}}return x}return x.abort()},active:0,lastModified:{},etag:{}});var cE=[],cF=/\?/,cG=/(=)\?(?=&|$)|\?\?/,cH=p.now();p.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var a=cE.pop()||p.expando+"_"+cH++;return this[a]=!0,a}}),p.ajaxPrefilter("json jsonp",function(c,d,e){var f,g,h,i=c.data,j=c.url,k=c.jsonp!==!1,l=k&&cG.test(j),m=k&&!l&&typeof i=="string"&&!(c.contentType||"").indexOf("application/x-www-form-urlencoded")&&cG.test(i);if(c.dataTypes[0]==="jsonp"||l||m)return f=c.jsonpCallback=p.isFunction(c.jsonpCallback)?c.jsonpCallback():c.jsonpCallback,g=a[f],l?c.url=j.replace(cG,"$1"+f):m?c.data=i.replace(cG,"$1"+f):k&&(c.url+=(cF.test(j)?"&":"?")+c.jsonp+"="+f),c.converters["script json"]=function(){return h||p.error(f+" was not called"),h[0]},c.dataTypes[0]="json",a[f]=function(){h=arguments},e.always(function(){a[f]=g,c[f]&&(c.jsonpCallback=d.jsonpCallback,cE.push(f)),h&&p.isFunction(g)&&g(h[0]),h=g=b}),"script"}),p.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/javascript|ecmascript/},converters:{"text script":function(a){return p.globalEval(a),a}}}),p.ajaxPrefilter("script",function(a){a.cache===b&&(a.cache=!1),a.crossDomain&&(a.type="GET",a.global=!1)}),p.ajaxTransport("script",function(a){if(a.crossDomain){var c,d=e.head||e.getElementsByTagName("head")[0]||e.documentElement;return{send:function(f,g){c=e.createElement("script"),c.async="async",a.scriptCharset&&(c.charset=a.scriptCharset),c.src=a.url,c.onload=c.onreadystatechange=function(a,e){if(e||!c.readyState||/loaded|complete/.test(c.readyState))c.onload=c.onreadystatechange=null,d&&c.parentNode&&d.removeChild(c),c=b,e||g(200,"success")},d.insertBefore(c,d.firstChild)},abort:function(){c&&c.onload(0,1)}}}});var cI,cJ=a.ActiveXObject?function(){for(var a in cI)cI[a](0,1)}:!1,cK=0;p.ajaxSettings.xhr=a.ActiveXObject?function(){return!this.isLocal&&cL()||cM()}:cL,function(a){p.extend(p.support,{ajax:!!a,cors:!!a&&"withCredentials"in a})}(p.ajaxSettings.xhr()),p.support.ajax&&p.ajaxTransport(function(c){if(!c.crossDomain||p.support.cors){var d;return{send:function(e,f){var g,h,i=c.xhr();c.username?i.open(c.type,c.url,c.async,c.username,c.password):i.open(c.type,c.url,c.async);if(c.xhrFields)for(h in c.xhrFields)i[h]=c.xhrFields[h];c.mimeType&&i.overrideMimeType&&i.overrideMimeType(c.mimeType),!c.crossDomain&&!e["X-Requested-With"]&&(e["X-Requested-With"]="XMLHttpRequest");try{for(h in e)i.setRequestHeader(h,e[h])}catch(j){}i.send(c.hasContent&&c.data||null),d=function(a,e){var h,j,k,l,m;try{if(d&&(e||i.readyState===4)){d=b,g&&(i.onreadystatechange=p.noop,cJ&&delete cI[g]);if(e)i.readyState!==4&&i.abort();else{h=i.status,k=i.getAllResponseHeaders(),l={},m=i.responseXML,m&&m.documentElement&&(l.xml=m);try{l.text=i.responseText}catch(a){}try{j=i.statusText}catch(n){j=""}!h&&c.isLocal&&!c.crossDomain?h=l.text?200:404:h===1223&&(h=204)}}}catch(o){e||f(-1,o)}l&&f(h,j,l,k)},c.async?i.readyState===4?setTimeout(d,0):(g=++cK,cJ&&(cI||(cI={},p(a).unload(cJ)),cI[g]=d),i.onreadystatechange=d):d()},abort:function(){d&&d(0,1)}}}});var cN,cO,cP=/^(?:toggle|show|hide)$/,cQ=new RegExp("^(?:([-+])=|)("+q+")([a-z%]*)$","i"),cR=/queueHooks$/,cS=[cY],cT={"*":[function(a,b){var c,d,e=this.createTween(a,b),f=cQ.exec(b),g=e.cur(),h=+g||0,i=1,j=20;if(f){c=+f[2],d=f[3]||(p.cssNumber[a]?"":"px");if(d!=="px"&&h){h=p.css(e.elem,a,!0)||c||1;do i=i||".5",h=h/i,p.style(e.elem,a,h+d);while(i!==(i=e.cur()/g)&&i!==1&&--j)}e.unit=d,e.start=h,e.end=f[1]?h+(f[1]+1)*c:c}return e}]};p.Animation=p.extend(cW,{tweener:function(a,b){p.isFunction(a)?(b=a,a=["*"]):a=a.split(" ");var c,d=0,e=a.length;for(;d<e;d++)c=a[d],cT[c]=cT[c]||[],cT[c].unshift(b)},prefilter:function(a,b){b?cS.unshift(a):cS.push(a)}}),p.Tween=cZ,cZ.prototype={constructor:cZ,init:function(a,b,c,d,e,f){this.elem=a,this.prop=c,this.easing=e||"swing",this.options=b,this.start=this.now=this.cur(),this.end=d,this.unit=f||(p.cssNumber[c]?"":"px")},cur:function(){var a=cZ.propHooks[this.prop];return a&&a.get?a.get(this):cZ.propHooks._default.get(this)},run:function(a){var b,c=cZ.propHooks[this.prop];return this.options.duration?this.pos=b=p.easing[this.easing](a,this.options.duration*a,0,1,this.options.duration):this.pos=b=a,this.now=(this.end-this.start)*b+this.start,this.options.step&&this.options.step.call(this.elem,this.now,this),c&&c.set?c.set(this):cZ.propHooks._default.set(this),this}},cZ.prototype.init.prototype=cZ.prototype,cZ.propHooks={_default:{get:function(a){var b;return a.elem[a.prop]==null||!!a.elem.style&&a.elem.style[a.prop]!=null?(b=p.css(a.elem,a.prop,!1,""),!b||b==="auto"?0:b):a.elem[a.prop]},set:function(a){p.fx.step[a.prop]?p.fx.step[a.prop](a):a.elem.style&&(a.elem.style[p.cssProps[a.prop]]!=null||p.cssHooks[a.prop])?p.style(a.elem,a.prop,a.now+a.unit):a.elem[a.prop]=a.now}}},cZ.propHooks.scrollTop=cZ.propHooks.scrollLeft={set:function(a){a.elem.nodeType&&a.elem.parentNode&&(a.elem[a.prop]=a.now)}},p.each(["toggle","show","hide"],function(a,b){var c=p.fn[b];p.fn[b]=function(d,e,f){return d==null||typeof d=="boolean"||!a&&p.isFunction(d)&&p.isFunction(e)?c.apply(this,arguments):this.animate(c$(b,!0),d,e,f)}}),p.fn.extend({fadeTo:function(a,b,c,d){return this.filter(bZ).css("opacity",0).show().end().animate({opacity:b},a,c,d)},animate:function(a,b,c,d){var e=p.isEmptyObject(a),f=p.speed(b,c,d),g=function(){var b=cW(this,p.extend({},a),f);e&&b.stop(!0)};return e||f.queue===!1?this.each(g):this.queue(f.queue,g)},stop:function(a,c,d){var e=function(a){var b=a.stop;delete a.stop,b(d)};return typeof a!="string"&&(d=c,c=a,a=b),c&&a!==!1&&this.queue(a||"fx",[]),this.each(function(){var b=!0,c=a!=null&&a+"queueHooks",f=p.timers,g=p._data(this);if(c)g[c]&&g[c].stop&&e(g[c]);else for(c in g)g[c]&&g[c].stop&&cR.test(c)&&e(g[c]);for(c=f.length;c--;)f[c].elem===this&&(a==null||f[c].queue===a)&&(f[c].anim.stop(d),b=!1,f.splice(c,1));(b||!d)&&p.dequeue(this,a)})}}),p.each({slideDown:c$("show"),slideUp:c$("hide"),slideToggle:c$("toggle"),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"},fadeToggle:{opacity:"toggle"}},function(a,b){p.fn[a]=function(a,c,d){return this.animate(b,a,c,d)}}),p.speed=function(a,b,c){var d=a&&typeof a=="object"?p.extend({},a):{complete:c||!c&&b||p.isFunction(a)&&a,duration:a,easing:c&&b||b&&!p.isFunction(b)&&b};d.duration=p.fx.off?0:typeof d.duration=="number"?d.duration:d.duration in p.fx.speeds?p.fx.speeds[d.duration]:p.fx.speeds._default;if(d.queue==null||d.queue===!0)d.queue="fx";return d.old=d.complete,d.complete=function(){p.isFunction(d.old)&&d.old.call(this),d.queue&&p.dequeue(this,d.queue)},d},p.easing={linear:function(a){return a},swing:function(a){return.5-Math.cos(a*Math.PI)/2}},p.timers=[],p.fx=cZ.prototype.init,p.fx.tick=function(){var a,b=p.timers,c=0;for(;c<b.length;c++)a=b[c],!a()&&b[c]===a&&b.splice(c--,1);b.length||p.fx.stop()},p.fx.timer=function(a){a()&&p.timers.push(a)&&!cO&&(cO=setInterval(p.fx.tick,p.fx.interval))},p.fx.interval=13,p.fx.stop=function(){clearInterval(cO),cO=null},p.fx.speeds={slow:600,fast:200,_default:400},p.fx.step={},p.expr&&p.expr.filters&&(p.expr.filters.animated=function(a){return p.grep(p.timers,function(b){return a===b.elem}).length});var c_=/^(?:body|html)$/i;p.fn.offset=function(a){if(arguments.length)return a===b?this:this.each(function(b){p.offset.setOffset(this,a,b)});var c,d,e,f,g,h,i,j={top:0,left:0},k=this[0],l=k&&k.ownerDocument;if(!l)return;return(d=l.body)===k?p.offset.bodyOffset(k):(c=l.documentElement,p.contains(c,k)?(typeof k.getBoundingClientRect!="undefined"&&(j=k.getBoundingClientRect()),e=da(l),f=c.clientTop||d.clientTop||0,g=c.clientLeft||d.clientLeft||0,h=e.pageYOffset||c.scrollTop,i=e.pageXOffset||c.scrollLeft,{top:j.top+h-f,left:j.left+i-g}):j)},p.offset={bodyOffset:function(a){var b=a.offsetTop,c=a.offsetLeft;return p.support.doesNotIncludeMarginInBodyOffset&&(b+=parseFloat(p.css(a,"marginTop"))||0,c+=parseFloat(p.css(a,"marginLeft"))||0),{top:b,left:c}},setOffset:function(a,b,c){var d=p.css(a,"position");d==="static"&&(a.style.position="relative");var e=p(a),f=e.offset(),g=p.css(a,"top"),h=p.css(a,"left"),i=(d==="absolute"||d==="fixed")&&p.inArray("auto",[g,h])>-1,j={},k={},l,m;i?(k=e.position(),l=k.top,m=k.left):(l=parseFloat(g)||0,m=parseFloat(h)||0),p.isFunction(b)&&(b=b.call(a,c,f)),b.top!=null&&(j.top=b.top-f.top+l),b.left!=null&&(j.left=b.left-f.left+m),"using"in b?b.using.call(a,j):e.css(j)}},p.fn.extend({position:function(){if(!this[0])return;var a=this[0],b=this.offsetParent(),c=this.offset(),d=c_.test(b[0].nodeName)?{top:0,left:0}:b.offset();return c.top-=parseFloat(p.css(a,"marginTop"))||0,c.left-=parseFloat(p.css(a,"marginLeft"))||0,d.top+=parseFloat(p.css(b[0],"borderTopWidth"))||0,d.left+=parseFloat(p.css(b[0],"borderLeftWidth"))||0,{top:c.top-d.top,left:c.left-d.left}},offsetParent:function(){return this.map(function(){var a=this.offsetParent||e.body;while(a&&!c_.test(a.nodeName)&&p.css(a,"position")==="static")a=a.offsetParent;return a||e.body})}}),p.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(a,c){var d=/Y/.test(c);p.fn[a]=function(e){return p.access(this,function(a,e,f){var g=da(a);if(f===b)return g?c in g?g[c]:g.document.documentElement[e]:a[e];g?g.scrollTo(d?p(g).scrollLeft():f,d?f:p(g).scrollTop()):a[e]=f},a,e,arguments.length,null)}}),p.each({Height:"height",Width:"width"},function(a,c){p.each({padding:"inner"+a,content:c,"":"outer"+a},function(d,e){p.fn[e]=function(e,f){var g=arguments.length&&(d||typeof e!="boolean"),h=d||(e===!0||f===!0?"margin":"border");return p.access(this,function(c,d,e){var f;return p.isWindow(c)?c.document.documentElement["client"+a]:c.nodeType===9?(f=c.documentElement,Math.max(c.body["scroll"+a],f["scroll"+a],c.body["offset"+a],f["offset"+a],f["client"+a])):e===b?p.css(c,d,e,h):p.style(c,d,e,h)},c,g?e:b,g,null)}})}),a.jQuery=a.$=p,typeof define=="function"&&define.amd&&define.amd.jQuery&&define("jquery",[],function(){return p})})(window); |
| URL | http://zero.webappsecurity.com/resources/js/placeholders.min.js |
| Method | GET |
| Parameter | X-Content-Type-Options |
| Attack | |
| Evidence | |
| Request Header - size: 287 bytes. |
GET http://zero.webappsecurity.com/resources/js/placeholders.min.js HTTP/1.1
Host: zero.webappsecurity.com User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0 Pragma: no-cache Cache-Control: no-cache Referer: http://zero.webappsecurity.com |
| Request Body - size: 0 bytes. |
|
| Response Header - size: 359 bytes. |
HTTP/1.1 200 OK
Date: Mon, 14 Mar 2022 07:13:42 GMT Server: Apache-Coyote/1.1 Access-Control-Allow-Origin: * Accept-Ranges: bytes ETag: W/"5615-1360116138000" Last-Modified: Wed, 06 Feb 2013 02:02:18 GMT Cache-Control: max-age=2678400 Expires: Thu, 14 Apr 2022 07:13:43 GMT Content-Type: application/javascript;charset=UTF-8 Content-Length: 5615 |
| Response Body - size: 5,615 bytes. |
var Placeholders=function(){var validTypes=["text","search","url","tel","email","password","number","textarea"],settings={live:false,hideOnFocus:false,className:"placeholderspolyfill",textColor:"#999",styleImportant:true},badKeys=[37,38,39,40],interval,valueKeyDown,classNameRegExp=new RegExp("\\b"+settings.className+"\\b");function cursorToStart(elem){var range;if(elem.createTextRange){range=elem.createTextRange();range.move("character",0);range.select()}else if(elem.selectionStart){elem.focus();
elem.setSelectionRange(0,0)}}function focusHandler(){var type;if(this.value===this.getAttribute("placeholder"))if(!settings.hideOnFocus)cursorToStart(this);else{this.className=this.className.replace(classNameRegExp,"");this.value="";type=this.getAttribute("data-placeholdertype");if(type)this.type=type}}function blurHandler(){var type;if(this.value===""){this.className=this.className+" "+settings.className;this.value=this.getAttribute("placeholder");type=this.getAttribute("data-placeholdertype");if(type)this.type= "text"}}function submitHandler(){var inputs=this.getElementsByTagName("input"),textareas=this.getElementsByTagName("textarea"),numInputs=inputs.length,num=numInputs+textareas.length,element,placeholder,i;for(i=0;i<num;i+=1){element=i<numInputs?inputs[i]:textareas[i-numInputs];placeholder=element.getAttribute("placeholder");if(element.value===placeholder)element.value=""}}function keydownHandler(event){valueKeyDown=this.value;return!(valueKeyDown===this.getAttribute("placeholder")&&badKeys.indexOf(event.keyCode)> -1)}function keyupHandler(){var type;if(this.value!==valueKeyDown){this.className=this.className.replace(classNameRegExp,"");this.value=this.value.replace(this.getAttribute("placeholder"),"");type=this.getAttribute("data-placeholdertype");if(type)this.type=type}if(this.value===""){blurHandler.call(this);cursorToStart(this)}}function addEventListener(element,event,fn){if(element.addEventListener)return element.addEventListener(event,fn.bind(element),false);if(element.attachEvent)return element.attachEvent("on"+ event,fn.bind(element))}function addEventListeners(element){if(!settings.hideOnFocus){addEventListener(element,"keydown",keydownHandler);addEventListener(element,"keyup",keyupHandler)}addEventListener(element,"focus",focusHandler);addEventListener(element,"blur",blurHandler)}function updatePlaceholders(){var inputs=document.getElementsByTagName("input"),textareas=document.getElementsByTagName("textarea"),numInputs=inputs.length,num=numInputs+textareas.length,i,form,element,oldPlaceholder,newPlaceholder; for(i=0;i<num;i+=1){element=i<numInputs?inputs[i]:textareas[i-numInputs];newPlaceholder=element.getAttribute("placeholder");if(validTypes.indexOf(element.type)>-1)if(newPlaceholder){oldPlaceholder=element.getAttribute("data-currentplaceholder");if(newPlaceholder!==oldPlaceholder){if(element.value===oldPlaceholder||element.value===newPlaceholder||!element.value){element.value=newPlaceholder;element.className=element.className+" "+settings.className}if(!oldPlaceholder){if(element.form){form=element.form; if(!form.getAttribute("data-placeholdersubmit")){addEventListener(form,"submit",submitHandler);form.setAttribute("data-placeholdersubmit","true")}}addEventListeners(element)}element.setAttribute("data-currentplaceholder",newPlaceholder)}}}}function createPlaceholders(){var inputs=document.getElementsByTagName("input"),textareas=document.getElementsByTagName("textarea"),numInputs=inputs.length,num=numInputs+textareas.length,i,element,form,placeholder;for(i=0;i<num;i+=1){element=i<numInputs?inputs[i]: textareas[i-numInputs];placeholder=element.getAttribute("placeholder");if(validTypes.indexOf(element.type)>-1)if(placeholder){if(element.type==="password")try{element.type="text";element.setAttribute("data-placeholdertype","password")}catch(e){}element.setAttribute("data-currentplaceholder",placeholder);if(element.value===""||element.value===placeholder){element.className=element.className+" "+settings.className;element.value=placeholder}if(element.form){form=element.form;if(!form.getAttribute("data-placeholdersubmit")){addEventListener(form, "submit",submitHandler);form.setAttribute("data-placeholdersubmit","true")}}addEventListeners(element)}}}function init(opts){var test=document.createElement("input"),opt,styleElem,styleRules,i,j;if(typeof test.placeholder==="undefined"){for(opt in opts)if(opts.hasOwnProperty(opt))settings[opt]=opts[opt];styleElem=document.createElement("style");styleElem.type="text/css";var importantValue=settings.styleImportant?"!important":"";styleRules=document.createTextNode("."+settings.className+" { color:"+ settings.textColor+importantValue+"; }");if(styleElem.styleSheet)styleElem.styleSheet.cssText=styleRules.nodeValue;else styleElem.appendChild(styleRules);document.getElementsByTagName("head")[0].appendChild(styleElem);if(!Array.prototype.indexOf)Array.prototype.indexOf=function(obj,start){for(i=start||0,j=this.length;i<j;i+=1)if(this[i]===obj)return i;return-1};if(!Function.prototype.bind)Function.prototype.bind=function(oThis){if(typeof this!=="function")throw new TypeError("Function.prototype.bind - what is trying to be bound is not callable"); var aArgs=Array.prototype.slice.call(arguments,1),fToBind=this,FNop=function(){},fBound=function(){return fToBind.apply(this instanceof FNop?this:oThis,aArgs.concat(Array.prototype.slice.call(arguments)))};FNop.prototype=this.prototype;fBound.prototype=new FNop;return fBound};createPlaceholders();if(settings.live)interval=setInterval(updatePlaceholders,100);return true}return false}return{init:init,refresh:updatePlaceholders}}(); |
| URL | http://zero.webappsecurity.com/search.html?searchTerm=ZAP |
| Method | GET |
| Parameter | X-Content-Type-Options |
| Attack | |
| Evidence | |
| Request Header - size: 281 bytes. |
GET http://zero.webappsecurity.com/search.html?searchTerm=ZAP HTTP/1.1
Host: zero.webappsecurity.com User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0 Pragma: no-cache Cache-Control: no-cache Referer: http://zero.webappsecurity.com |
| Request Body - size: 0 bytes. |
|
| Response Header - size: 242 bytes. |
HTTP/1.1 200 OK
Date: Mon, 14 Mar 2022 07:13:43 GMT Server: Apache-Coyote/1.1 Access-Control-Allow-Origin: * Cache-Control: no-cache, max-age=0, must-revalidate, no-store Content-Type: text/html;charset=UTF-8 Content-Language: en-US |
| Response Body - size: 7,723 bytes. |
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Zero - Search Tips</title> <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"> <meta http-equiv="X-UA-Compatible" content="IE=Edge"> <link type="text/css" rel="stylesheet" href="/resources/css/bootstrap.min.css"/> <link type="text/css" rel="stylesheet" href="/resources/css/font-awesome.css"/> <link type="text/css" rel="stylesheet" href="/resources/css/main.css"/> <script src="/resources/js/jquery-1.8.2.min.js"></script> <script src="/resources/js/bootstrap.min.js"></script> <script src="/resources/js/placeholders.min.js"></script> <script type="text/javascript"> Placeholders.init({ live: true, // Apply to future and modified elements too hideOnFocus: true // Hide the placeholder when the element receives focus }); </script> <script type="text/javascript"> $(document).ajaxError(function errorHandler(event, xhr, ajaxOptions, thrownError) { if (xhr.status == 403) { window.location.reload(); } }); </script> </head> <body> <div class="wrapper"> <div class="navbar navbar-fixed-top"> <div class="navbar-inner"> <div class="container"> <a href="/index.html" class="brand">Zero Bank</a> <div> <ul class="nav float-right"> <li> <form action="/search.html" class="navbar-search pull-right" style="padding-right: 20px"> <input type="text" id="searchTerm" name="searchTerm" class="search-query" placeholder="Search"/> </form> </li> <li> <button id="signin_button" type="button" class="signin btn btn-info"> <i class="icon-signin"></i>Signin </button> </li> </ul> </div> </div> </div> </div> <script type="text/javascript"> $(function() { var path = "/"; $("#signin_button").click(function(event) { event.preventDefault(); window.location.href = path + "login" + ".html"; }); }); </script> <div class="container"> <div class="top_offset"> <div class="row"> <div class="span12"> <div id="nav" class="clearfix"> <ul id="pages-nav"> <li id="homeMenu"><div><strong>Home</strong></div></li> <li id="onlineBankingMenu"><div><strong>Online Banking</strong></div></li> <li id="feedback"><div><strong>Feedback</strong></div></li> </ul> </div> </div> <script type="text/javascript"> $(function () { var path = "/"; var featureIdToName = { "index": "homeMenu", "online-banking": "onlineBankingMenu", "feedback": "feedback" }; if (document.location.href.match(".*" + path + "$") != null) { $("#homeMenu").addClass("active"); } else { $.each(featureIdToName, function(featureId, featureName) { if (document.location.href.indexOf(featureId + ".html") >= 0) { $("#" + featureName).addClass("active"); } }); } $.each(featureIdToName, function(featureId, featureName) { $("#nav").on("click", "li[id='" + featureName + "']", function(event) { event.preventDefault(); window.location.href = path + featureId + ".html"; }); }); }); </script> </div> <hr class="row-divider"/> <h2>Search Results:</h2> No results were found for the query: ZAP </div> </div> <div class="clearfix push"></div> </div> <div class="extra"> <div class="extra-inner"> <div class="container"> <div class="row"> <div class="span4"> <ul> <li><span id="download_webinspect_link">Download WebInspect</span></li> </ul> </div> <div class="span4"> <ul> <li><span id="terms_of_use_link">Terms of Use</span></li> </ul> </div> <div class="span4"> <ul> <li><span id="contact_hp_link">Contact Micro Focus</span></li> <li><span id="privacy_statement_link">Privacy Statement</span></li> </ul> </div> </div> <div class="row"> <div class="disclaimer span12"> The Free Online Bank Web site is published by Micro Focus Fortify for the sole purpose of demonstrating the functionality and effectiveness of Micro Focus Fortify’s WebInspect products in detecting and reporting Web application vulnerabilities. This site is not a real banking site and any similarities to third party products and/or Web sites are purely coincidental. This site is provided "as is" without warranty of any kind, either express or implied. Micro Focus Fortify does not assume any risk in relation to your use of this Web site. Use of this Web site indicates that you have read and agree to Micro Focus Fortify’s Terms of Use found at <a href="https://www.microfocus.com/about/legal/#privacy" target="_blank">https://www.microfocus.com/about/legal/#privacy</a> and Micro Focus Fortify’s Online Privacy Statement found at <a href="https://www.microfocus.com/about/legal/#privacy" target="_blank">https://www.microfocus.com/about/legal/#privacy</a>. <br/><br/> Copyright © 2012-2018, Micro Focus Development Company. All rights reserved. </div> </div> </div> </div> </div> <script type="text/javascript"> $(function () { var path = "/"; var attachClickHandler = function(selector, handler) { $(".extra").on('click', selector, handler); } var footerLinks = { "download_webinspect_link": { absolute: true, page: "https://software.microfocus.com/en-us/products/webinspect-dynamic-analysis-dast/overview" }, "contact_hp_link" : { absolute: true, page: "https://support.fortify.com" }, "privacy_statement_link": { absolute: true, page: "https://www.microfocus.com/about/legal/#privacy" }, "terms_of_use_link": { absolute: true, page: "https://www.microfocus.com/about/legal/" } }; $.each(footerLinks, function(linkId, link) { attachClickHandler('span[id="' + linkId + '"]', function(event) { event.preventDefault(); if (link.absolute) { window.location.href = link.page; } else { window.location.href = path + link.page + ".html"; } }); }); }); </script> </body> </html> |
| Instances | 13 |
| Solution |
Ensure that the application/web server sets the Content-Type header appropriately, and that it sets the X-Content-Type-Options header to 'nosniff' for all web pages.
If possible, ensure that the end user uses a standards-compliant and modern web browser that does not perform MIME-sniffing at all, or that can be directed by the web application/web server to not perform MIME-sniffing.
|
| Reference |
http://msdn.microsoft.com/en-us/library/ie/gg622941%28v=vs.85%29.aspx
https://owasp.org/www-community/Security_Headers |
| Tags |
OWASP_2021_A05
OWASP_2017_A06 |
| CWE Id | 693 |
| WASC Id | 15 |
| Plugin Id | 10021 |
|
Informational |
Base64 Disclosure |
|---|---|
| Description |
Base64 encoded data was disclosed by the application/web server. Note: in the interests of performance not all base64 strings in the response were analyzed individually, the entire response should be looked at by the analyst/security team/developer(s).
|
| URL | http://zero.webappsecurity.com/resources/js/jquery-1.8.2.min.js |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | D27CDB6E-AE6D-11cf-96B8-444553540000 |
| Request Header - size: 287 bytes. |
GET http://zero.webappsecurity.com/resources/js/jquery-1.8.2.min.js HTTP/1.1
Host: zero.webappsecurity.com User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0 Pragma: no-cache Cache-Control: no-cache Referer: http://zero.webappsecurity.com |
| Request Body - size: 0 bytes. |
|
| Response Header - size: 361 bytes. |
HTTP/1.1 200 OK
Date: Mon, 14 Mar 2022 07:13:42 GMT Server: Apache-Coyote/1.1 Access-Control-Allow-Origin: * Accept-Ranges: bytes ETag: W/"93436-1358437290000" Last-Modified: Thu, 17 Jan 2013 15:41:30 GMT Cache-Control: max-age=2678400 Expires: Thu, 14 Apr 2022 07:13:43 GMT Content-Type: application/javascript;charset=UTF-8 Content-Length: 93436 |
| Response Body - size: 93,436 bytes. |
/*! jQuery v1.8.2 jquery.com | jquery.org/license */
(function(a,b){function G(a){var b=F[a]={};return p.each(a.split(s),function(a,c){b[c]=!0}),b}function J(a,c,d){if(d===b&&a.nodeType===1){var e="data-"+c.replace(I,"-$1").toLowerCase();d=a.getAttribute(e);if(typeof d=="string"){try{d=d==="true"?!0:d==="false"?!1:d==="null"?null:+d+""===d?+d:H.test(d)?p.parseJSON(d):d}catch(f){}p.data(a,c,d)}else d=b}return d}function K(a){var b;for(b in a){if(b==="data"&&p.isEmptyObject(a[b]))continue;if(b!=="toJSON")return!1}return!0}function ba(){return!1}function bb(){return!0}function bh(a){return!a||!a.parentNode||a.parentNode.nodeType===11}function bi(a,b){do a=a[b];while(a&&a.nodeType!==1);return a}function bj(a,b,c){b=b||0;if(p.isFunction(b))return p.grep(a,function(a,d){var e=!!b.call(a,d,a);return e===c});if(b.nodeType)return p.grep(a,function(a,d){return a===b===c});if(typeof b=="string"){var d=p.grep(a,function(a){return a.nodeType===1});if(be.test(b))return p.filter(b,d,!c);b=p.filter(b,d)}return p.grep(a,function(a,d){return p.inArray(a,b)>=0===c})}function bk(a){var b=bl.split("|"),c=a.createDocumentFragment();if(c.createElement)while(b.length)c.createElement(b.pop());return c}function bC(a,b){return a.getElementsByTagName(b)[0]||a.appendChild(a.ownerDocument.createElement(b))}function bD(a,b){if(b.nodeType!==1||!p.hasData(a))return;var c,d,e,f=p._data(a),g=p._data(b,f),h=f.events;if(h){delete g.handle,g.events={};for(c in h)for(d=0,e=h[c].length;d<e;d++)p.event.add(b,c,h[c][d])}g.data&&(g.data=p.extend({},g.data))}function bE(a,b){var c;if(b.nodeType!==1)return;b.clearAttributes&&b.clearAttributes(),b.mergeAttributes&&b.mergeAttributes(a),c=b.nodeName.toLowerCase(),c==="object"?(b.parentNode&&(b.outerHTML=a.outerHTML),p.support.html5Clone&&a.innerHTML&&!p.trim(b.innerHTML)&&(b.innerHTML=a.innerHTML)):c==="input"&&bv.test(a.type)?(b.defaultChecked=b.checked=a.checked,b.value!==a.value&&(b.value=a.value)):c==="option"?b.selected=a.defaultSelected:c==="input"||c==="textarea"?b.defaultValue=a.defaultValue:c==="script"&&b.text!==a.text&&(b.text=a.text),b.removeAttribute(p.expando)}function bF(a){return typeof a.getElementsByTagName!="undefined"?a.getElementsByTagName("*"):typeof a.querySelectorAll!="undefined"?a.querySelectorAll("*"):[]}function bG(a){bv.test(a.type)&&(a.defaultChecked=a.checked)}function bY(a,b){if(b in a)return b;var c=b.charAt(0).toUpperCase()+b.slice(1),d=b,e=bW.length;while(e--){b=bW[e]+c;if(b in a)return b}return d}function bZ(a,b){return a=b||a,p.css(a,"display")==="none"||!p.contains(a.ownerDocument,a)}function b$(a,b){var c,d,e=[],f=0,g=a.length;for(;f<g;f++){c=a[f];if(!c.style)continue;e[f]=p._data(c,"olddisplay"),b?(!e[f]&&c.style.display==="none"&&(c.style.display=""),c.style.display===""&&bZ(c)&&(e[f]=p._data(c,"olddisplay",cc(c.nodeName)))):(d=bH(c,"display"),!e[f]&&d!=="none"&&p._data(c,"olddisplay",d))}for(f=0;f<g;f++){c=a[f];if(!c.style)continue;if(!b||c.style.display==="none"||c.style.display==="")c.style.display=b?e[f]||"":"none"}return a}function b_(a,b,c){var d=bP.exec(b);return d?Math.max(0,d[1]-(c||0))+(d[2]||"px"):b}function ca(a,b,c,d){var e=c===(d?"border":"content")?4:b==="width"?1:0,f=0;for(;e<4;e+=2)c==="margin"&&(f+=p.css(a,c+bV[e],!0)),d?(c==="content"&&(f-=parseFloat(bH(a,"padding"+bV[e]))||0),c!=="margin"&&(f-=parseFloat(bH(a,"border"+bV[e]+"Width"))||0)):(f+=parseFloat(bH(a,"padding"+bV[e]))||0,c!=="padding"&&(f+=parseFloat(bH(a,"border"+bV[e]+"Width"))||0));return f}function cb(a,b,c){var d=b==="width"?a.offsetWidth:a.offsetHeight,e=!0,f=p.support.boxSizing&&p.css(a,"boxSizing")==="border-box";if(d<=0||d==null){d=bH(a,b);if(d<0||d==null)d=a.style[b];if(bQ.test(d))return d;e=f&&(p.support.boxSizingReliable||d===a.style[b]),d=parseFloat(d)||0}return d+ca(a,b,c||(f?"border":"content"),e)+"px"}function cc(a){if(bS[a])return bS[a];var b=p("<"+a+">").appendTo(e.body),c=b.css("display");b.remove();if(c==="none"||c===""){bI=e.body.appendChild(bI||p.extend(e.createElement("iframe"),{frameBorder:0,width:0,height:0}));if(!bJ||!bI.createElement)bJ=(bI.contentWindow||bI.contentDocument).document,bJ.write("<!doctype html><html><body>"),bJ.close();b=bJ.body.appendChild(bJ.createElement(a)),c=bH(b,"display"),e.body.removeChild(bI)}return bS[a]=c,c}function ci(a,b,c,d){var e;if(p.isArray(b))p.each(b,function(b,e){c||ce.test(a)?d(a,e):ci(a+"["+(typeof e=="object"?b:"")+"]",e,c,d)});else if(!c&&p.type(b)==="object")for(e in b)ci(a+"["+e+"]",b[e],c,d);else d(a,b)}function cz(a){return function(b,c){typeof b!="string"&&(c=b,b="*");var d,e,f,g=b.toLowerCase().split(s),h=0,i=g.length;if(p.isFunction(c))for(;h<i;h++)d=g[h],f=/^\+/.test(d),f&&(d=d.substr(1)||"*"),e=a[d]=a[d]||[],e[f?"unshift":"push"](c)}}function cA(a,c,d,e,f,g){f=f||c.dataTypes[0],g=g||{},g[f]=!0;var h,i=a[f],j=0,k=i?i.length:0,l=a===cv;for(;j<k&&(l||!h);j++)h=i[j](c,d,e),typeof h=="string"&&(!l||g[h]?h=b:(c.dataTypes.unshift(h),h=cA(a,c,d,e,h,g)));return(l||!h)&&!g["*"]&&(h=cA(a,c,d,e,"*",g)),h}function cB(a,c){var d,e,f=p.ajaxSettings.flatOptions||{};for(d in c)c[d]!==b&&((f[d]?a:e||(e={}))[d]=c[d]);e&&p.extend(!0,a,e)}function cC(a,c,d){var e,f,g,h,i=a.contents,j=a.dataTypes,k=a.responseFields;for(f in k)f in d&&(c[k[f]]=d[f]);while(j[0]==="*")j.shift(),e===b&&(e=a.mimeType||c.getResponseHeader("content-type"));if(e)for(f in i)if(i[f]&&i[f].test(e)){j.unshift(f);break}if(j[0]in d)g=j[0];else{for(f in d){if(!j[0]||a.converters[f+" "+j[0]]){g=f;break}h||(h=f)}g=g||h}if(g)return g!==j[0]&&j.unshift(g),d[g]}function cD(a,b){var c,d,e,f,g=a.dataTypes.slice(),h=g[0],i={},j=0;a.dataFilter&&(b=a.dataFilter(b,a.dataType));if(g[1])for(c in a.converters)i[c.toLowerCase()]=a.converters[c];for(;e=g[++j];)if(e!=="*"){if(h!=="*"&&h!==e){c=i[h+" "+e]||i["* "+e];if(!c)for(d in i){f=d.split(" ");if(f[1]===e){c=i[h+" "+f[0]]||i["* "+f[0]];if(c){c===!0?c=i[d]:i[d]!==!0&&(e=f[0],g.splice(j--,0,e));break}}}if(c!==!0)if(c&&a["throws"])b=c(b);else try{b=c(b)}catch(k){return{state:"parsererror",error:c?k:"No conversion from "+h+" to "+e}}}h=e}return{state:"success",data:b}}function cL(){try{return new a.XMLHttpRequest}catch(b){}}function cM(){try{return new a.ActiveXObject("Microsoft.XMLHTTP")}catch(b){}}function cU(){return setTimeout(function(){cN=b},0),cN=p.now()}function cV(a,b){p.each(b,function(b,c){var d=(cT[b]||[]).concat(cT["*"]),e=0,f=d.length;for(;e<f;e++)if(d[e].call(a,b,c))return})}function cW(a,b,c){var d,e=0,f=0,g=cS.length,h=p.Deferred().always(function(){delete i.elem}),i=function(){var b=cN||cU(),c=Math.max(0,j.startTime+j.duration-b),d=1-(c/j.duration||0),e=0,f=j.tweens.length;for(;e<f;e++)j.tweens[e].run(d);return h.notifyWith(a,[j,d,c]),d<1&&f?c:(h.resolveWith(a,[j]),!1)},j=h.promise({elem:a,props:p.extend({},b),opts:p.extend(!0,{specialEasing:{}},c),originalProperties:b,originalOptions:c,startTime:cN||cU(),duration:c.duration,tweens:[],createTween:function(b,c,d){var e=p.Tween(a,j.opts,b,c,j.opts.specialEasing[b]||j.opts.easing);return j.tweens.push(e),e},stop:function(b){var c=0,d=b?j.tweens.length:0;for(;c<d;c++)j.tweens[c].run(1);return b?h.resolveWith(a,[j,b]):h.rejectWith(a,[j,b]),this}}),k=j.props;cX(k,j.opts.specialEasing);for(;e<g;e++){d=cS[e].call(j,a,k,j.opts);if(d)return d}return cV(j,k),p.isFunction(j.opts.start)&&j.opts.start.call(a,j),p.fx.timer(p.extend(i,{anim:j,queue:j.opts.queue,elem:a})),j.progress(j.opts.progress).done(j.opts.done,j.opts.complete).fail(j.opts.fail).always(j.opts.always)}function cX(a,b){var c,d,e,f,g;for(c in a){d=p.camelCase(c),e=b[d],f=a[c],p.isArray(f)&&(e=f[1],f=a[c]=f[0]),c!==d&&(a[d]=f,delete a[c]),g=p.cssHooks[d];if(g&&"expand"in g){f=g.expand(f),delete a[d];for(c in f)c in a||(a[c]=f[c],b[c]=e)}else b[d]=e}}function cY(a,b,c){var d,e,f,g,h,i,j,k,l=this,m=a.style,n={},o=[],q=a.nodeType&&bZ(a);c.queue||(j=p._queueHooks(a,"fx"),j.unqueued==null&&(j.unqueued=0,k=j.empty.fire,j.empty.fire=function(){j.unqueued||k()}),j.unqueued++,l.always(function(){l.always(function(){j.unqueued--,p.queue(a,"fx").length||j.empty.fire()})})),a.nodeType===1&&("height"in b||"width"in b)&&(c.overflow=[m.overflow,m.overflowX,m.overflowY],p.css(a,"display")==="inline"&&p.css(a,"float")==="none"&&(!p.support.inlineBlockNeedsLayout||cc(a.nodeName)==="inline"?m.display="inline-block":m.zoom=1)),c.overflow&&(m.overflow="hidden",p.support.shrinkWrapBlocks||l.done(function(){m.overflow=c.overflow[0],m.overflowX=c.overflow[1],m.overflowY=c.overflow[2]}));for(d in b){f=b[d];if(cP.exec(f)){delete b[d];if(f===(q?"hide":"show"))continue;o.push(d)}}g=o.length;if(g){h=p._data(a,"fxshow")||p._data(a,"fxshow",{}),q?p(a).show():l.done(function(){p(a).hide()}),l.done(function(){var b;p.removeData(a,"fxshow",!0);for(b in n)p.style(a,b,n[b])});for(d=0;d<g;d++)e=o[d],i=l.createTween(e,q?h[e]:0),n[e]=h[e]||p.style(a,e),e in h||(h[e]=i.start,q&&(i.end=i.start,i.start=e==="width"||e==="height"?1:0))}}function cZ(a,b,c,d,e){return new cZ.prototype.init(a,b,c,d,e)}function c$(a,b){var c,d={height:a},e=0;b=b?1:0;for(;e<4;e+=2-b)c=bV[e],d["margin"+c]=d["padding"+c]=a;return b&&(d.opacity=d.width=a),d}function da(a){return p.isWindow(a)?a:a.nodeType===9?a.defaultView||a.parentWindow:!1}var c,d,e=a.document,f=a.location,g=a.navigator,h=a.jQuery,i=a.$,j=Array.prototype.push,k=Array.prototype.slice,l=Array.prototype.indexOf,m=Object.prototype.toString,n=Object.prototype.hasOwnProperty,o=String.prototype.trim,p=function(a,b){return new p.fn.init(a,b,c)},q=/[\-+]?(?:\d*\.|)\d+(?:[eE][\-+]?\d+|)/.source,r=/\S/,s=/\s+/,t=/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,u=/^(?:[^#<]*(<[\w\W]+>)[^>]*$|#([\w\-]*)$)/,v=/^<(\w+)\s*\/?>(?:<\/\1>|)$/,w=/^[\],:{}\s]*$/,x=/(?:^|:|,)(?:\s*\[)+/g,y=/\\(?:["\\\/bfnrt]|u[\da-fA-F]{4})/g,z=/"[^"\\\r\n]*"|true|false|null|-?(?:\d\d*\.|)\d+(?:[eE][\-+]?\d+|)/g,A=/^-ms-/,B=/-([\da-z])/gi,C=function(a,b){return(b+"").toUpperCase()},D=function(){e.addEventListener?(e.removeEventListener("DOMContentLoaded",D,!1),p.ready()):e.readyState==="complete"&&(e.detachEvent("onreadystatechange",D),p.ready())},E={};p.fn=p.prototype={constructor:p,init:function(a,c,d){var f,g,h,i;if(!a)return this;if(a.nodeType)return this.context=this[0]=a,this.length=1,this;if(typeof a=="string"){a.charAt(0)==="<"&&a.charAt(a.length-1)===">"&&a.length>=3?f=[null,a,null]:f=u.exec(a);if(f&&(f[1]||!c)){if(f[1])return c=c instanceof p?c[0]:c,i=c&&c.nodeType?c.ownerDocument||c:e,a=p.parseHTML(f[1],i,!0),v.test(f[1])&&p.isPlainObject(c)&&this.attr.call(a,c,!0),p.merge(this,a);g=e.getElementById(f[2]);if(g&&g.parentNode){if(g.id!==f[2])return d.find(a);this.length=1,this[0]=g}return this.context=e,this.selector=a,this}return!c||c.jquery?(c||d).find(a):this.constructor(c).find(a)}return p.isFunction(a)?d.ready(a):(a.selector!==b&&(this.selector=a.selector,this.context=a.context),p.makeArray(a,this))},selector:"",jquery:"1.8.2",length:0,size:function(){return this.length},toArray:function(){return k.call(this)},get:function(a){return a==null?this.toArray():a<0?this[this.length+a]:this[a]},pushStack:function(a,b,c){var d=p.merge(this.constructor(),a);return d.prevObject=this,d.context=this.context,b==="find"?d.selector=this.selector+(this.selector?" ":"")+c:b&&(d.selector=this.selector+"."+b+"("+c+")"),d},each:function(a,b){return p.each(this,a,b)},ready:function(a){return p.ready.promise().done(a),this},eq:function(a){return a=+a,a===-1?this.slice(a):this.slice(a,a+1)},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},slice:function(){return this.pushStack(k.apply(this,arguments),"slice",k.call(arguments).join(","))},map:function(a){return this.pushStack(p.map(this,function(b,c){return a.call(b,c,b)}))},end:function(){return this.prevObject||this.constructor(null)},push:j,sort:[].sort,splice:[].splice},p.fn.init.prototype=p.fn,p.extend=p.fn.extend=function(){var a,c,d,e,f,g,h=arguments[0]||{},i=1,j=arguments.length,k=!1;typeof h=="boolean"&&(k=h,h=arguments[1]||{},i=2),typeof h!="object"&&!p.isFunction(h)&&(h={}),j===i&&(h=this,--i);for(;i<j;i++)if((a=arguments[i])!=null)for(c in a){d=h[c],e=a[c];if(h===e)continue;k&&e&&(p.isPlainObject(e)||(f=p.isArray(e)))?(f?(f=!1,g=d&&p.isArray(d)?d:[]):g=d&&p.isPlainObject(d)?d:{},h[c]=p.extend(k,g,e)):e!==b&&(h[c]=e)}return h},p.extend({noConflict:function(b){return a.$===p&&(a.$=i),b&&a.jQuery===p&&(a.jQuery=h),p},isReady:!1,readyWait:1,holdReady:function(a){a?p.readyWait++:p.ready(!0)},ready:function(a){if(a===!0?--p.readyWait:p.isReady)return;if(!e.body)return setTimeout(p.ready,1);p.isReady=!0;if(a!==!0&&--p.readyWait>0)return;d.resolveWith(e,[p]),p.fn.trigger&&p(e).trigger("ready").off("ready")},isFunction:function(a){return p.type(a)==="function"},isArray:Array.isArray||function(a){return p.type(a)==="array"},isWindow:function(a){return a!=null&&a==a.window},isNumeric:function(a){return!isNaN(parseFloat(a))&&isFinite(a)},type:function(a){return a==null?String(a):E[m.call(a)]||"object"},isPlainObject:function(a){if(!a||p.type(a)!=="object"||a.nodeType||p.isWindow(a))return!1;try{if(a.constructor&&!n.call(a,"constructor")&&!n.call(a.constructor.prototype,"isPrototypeOf"))return!1}catch(c){return!1}var d;for(d in a);return d===b||n.call(a,d)},isEmptyObject:function(a){var b;for(b in a)return!1;return!0},error:function(a){throw new Error(a)},parseHTML:function(a,b,c){var d;return!a||typeof a!="string"?null:(typeof b=="boolean"&&(c=b,b=0),b=b||e,(d=v.exec(a))?[b.createElement(d[1])]:(d=p.buildFragment([a],b,c?null:[]),p.merge([],(d.cacheable?p.clone(d.fragment):d.fragment).childNodes)))},parseJSON:function(b){if(!b||typeof b!="string")return null;b=p.trim(b);if(a.JSON&&a.JSON.parse)return a.JSON.parse(b);if(w.test(b.replace(y,"@").replace(z,"]").replace(x,"")))return(new Function("return "+b))();p.error("Invalid JSON: "+b)},parseXML:function(c){var d,e;if(!c||typeof c!="string")return null;try{a.DOMParser?(e=new DOMParser,d=e.parseFromString(c,"text/xml")):(d=new ActiveXObject("Microsoft.XMLDOM"),d.async="false",d.loadXML(c))}catch(f){d=b}return(!d||!d.documentElement||d.getElementsByTagName("parsererror").length)&&p.error("Invalid XML: "+c),d},noop:function(){},globalEval:function(b){b&&r.test(b)&&(a.execScript||function(b){a.eval.call(a,b)})(b)},camelCase:function(a){return a.replace(A,"ms-").replace(B,C)},nodeName:function(a,b){return a.nodeName&&a.nodeName.toLowerCase()===b.toLowerCase()},each:function(a,c,d){var e,f=0,g=a.length,h=g===b||p.isFunction(a);if(d){if(h){for(e in a)if(c.apply(a[e],d)===!1)break}else for(;f<g;)if(c.apply(a[f++],d)===!1)break}else if(h){for(e in a)if(c.call(a[e],e,a[e])===!1)break}else for(;f<g;)if(c.call(a[f],f,a[f++])===!1)break;return a},trim:o&&!o.call(" ")?function(a){return a==null?"":o.call(a)}:function(a){return a==null?"":(a+"").replace(t,"")},makeArray:function(a,b){var c,d=b||[];return a!=null&&(c=p.type(a),a.length==null||c==="string"||c==="function"||c==="regexp"||p.isWindow(a)?j.call(d,a):p.merge(d,a)),d},inArray:function(a,b,c){var d;if(b){if(l)return l.call(b,a,c);d=b.length,c=c?c<0?Math.max(0,d+c):c:0;for(;c<d;c++)if(c in b&&b[c]===a)return c}return-1},merge:function(a,c){var d=c.length,e=a.length,f=0;if(typeof d=="number")for(;f<d;f++)a[e++]=c[f];else while(c[f]!==b)a[e++]=c[f++];return a.length=e,a},grep:function(a,b,c){var d,e=[],f=0,g=a.length;c=!!c;for(;f<g;f++)d=!!b(a[f],f),c!==d&&e.push(a[f]);return e},map:function(a,c,d){var e,f,g=[],h=0,i=a.length,j=a instanceof p||i!==b&&typeof i=="number"&&(i>0&&a[0]&&a[i-1]||i===0||p.isArray(a));if(j)for(;h<i;h++)e=c(a[h],h,d),e!=null&&(g[g.length]=e);else for(f in a)e=c(a[f],f,d),e!=null&&(g[g.length]=e);return g.concat.apply([],g)},guid:1,proxy:function(a,c){var d,e,f;return typeof c=="string"&&(d=a[c],c=a,a=d),p.isFunction(a)?(e=k.call(arguments,2),f=function(){return a.apply(c,e.concat(k.call(arguments)))},f.guid=a.guid=a.guid||p.guid++,f):b},access:function(a,c,d,e,f,g,h){var i,j=d==null,k=0,l=a.length;if(d&&typeof d=="object"){for(k in d)p.access(a,c,k,d[k],1,g,e);f=1}else if(e!==b){i=h===b&&p.isFunction(e),j&&(i?(i=c,c=function(a,b,c){return i.call(p(a),c)}):(c.call(a,e),c=null));if(c)for(;k<l;k++)c(a[k],d,i?e.call(a[k],k,c(a[k],d)):e,h);f=1}return f?a:j?c.call(a):l?c(a[0],d):g},now:function(){return(new Date).getTime()}}),p.ready.promise=function(b){if(!d){d=p.Deferred();if(e.readyState==="complete")setTimeout(p.ready,1);else if(e.addEventListener)e.addEventListener("DOMContentLoaded",D,!1),a.addEventListener("load",p.ready,!1);else{e.attachEvent("onreadystatechange",D),a.attachEvent("onload",p.ready);var c=!1;try{c=a.frameElement==null&&e.documentElement}catch(f){}c&&c.doScroll&&function g(){if(!p.isReady){try{c.doScroll("left")}catch(a){return setTimeout(g,50)}p.ready()}}()}}return d.promise(b)},p.each("Boolean Number String Function Array Date RegExp Object".split(" "),function(a,b){E["[object "+b+"]"]=b.toLowerCase()}),c=p(e);var F={};p.Callbacks=function(a){a=typeof a=="string"?F[a]||G(a):p.extend({},a);var c,d,e,f,g,h,i=[],j=!a.once&&[],k=function(b){c=a.memory&&b,d=!0,h=f||0,f=0,g=i.length,e=!0;for(;i&&h<g;h++)if(i[h].apply(b[0],b[1])===!1&&a.stopOnFalse){c=!1;break}e=!1,i&&(j?j.length&&k(j.shift()):c?i=[]:l.disable())},l={add:function(){if(i){var b=i.length;(function d(b){p.each(b,function(b,c){var e=p.type(c);e==="function"&&(!a.unique||!l.has(c))?i.push(c):c&&c.length&&e!=="string"&&d(c)})})(arguments),e?g=i.length:c&&(f=b,k(c))}return this},remove:function(){return i&&p.each(arguments,function(a,b){var c;while((c=p.inArray(b,i,c))>-1)i.splice(c,1),e&&(c<=g&&g--,c<=h&&h--)}),this},has:function(a){return p.inArray(a,i)>-1},empty:function(){return i=[],this},disable:function(){return i=j=c=b,this},disabled:function(){return!i},lock:function(){return j=b,c||l.disable(),this},locked:function(){return!j},fireWith:function(a,b){return b=b||[],b=[a,b.slice?b.slice():b],i&&(!d||j)&&(e?j.push(b):k(b)),this},fire:function(){return l.fireWith(this,arguments),this},fired:function(){return!!d}};return l},p.extend({Deferred:function(a){var b=[["resolve","done",p.Callbacks("once memory"),"resolved"],["reject","fail",p.Callbacks("once memory"),"rejected"],["notify","progress",p.Callbacks("memory")]],c="pending",d={state:function(){return c},always:function(){return e.done(arguments).fail(arguments),this},then:function(){var a=arguments;return p.Deferred(function(c){p.each(b,function(b,d){var f=d[0],g=a[b];e[d[1]](p.isFunction(g)?function(){var a=g.apply(this,arguments);a&&p.isFunction(a.promise)?a.promise().done(c.resolve).fail(c.reject).progress(c.notify):c[f+"With"](this===e?c:this,[a])}:c[f])}),a=null}).promise()},promise:function(a){return a!=null?p.extend(a,d):d}},e={};return d.pipe=d.then,p.each(b,function(a,f){var g=f[2],h=f[3];d[f[1]]=g.add,h&&g.add(function(){c=h},b[a^1][2].disable,b[2][2].lock),e[f[0]]=g.fire,e[f[0]+"With"]=g.fireWith}),d.promise(e),a&&a.call(e,e),e},when:function(a){var b=0,c=k.call(arguments),d=c.length,e=d!==1||a&&p.isFunction(a.promise)?d:0,f=e===1?a:p.Deferred(),g=function(a,b,c){return function(d){b[a]=this,c[a]=arguments.length>1?k.call(arguments):d,c===h?f.notifyWith(b,c):--e||f.resolveWith(b,c)}},h,i,j;if(d>1){h=new Array(d),i=new Array(d),j=new Array(d);for(;b<d;b++)c[b]&&p.isFunction(c[b].promise)?c[b].promise().done(g(b,j,c)).fail(f.reject).progress(g(b,i,h)):--e}return e||f.resolveWith(j,c),f.promise()}}),p.support=function(){var b,c,d,f,g,h,i,j,k,l,m,n=e.createElement("div");n.setAttribute("className","t"),n.innerHTML=" <link/><table></table><a href='/a'>a</a><input type='checkbox'/>",c=n.getElementsByTagName("*"),d=n.getElementsByTagName("a")[0],d.style.cssText="top:1px;float:left;opacity:.5";if(!c||!c.length)return{};f=e.createElement("select"),g=f.appendChild(e.createElement("option")),h=n.getElementsByTagName("input")[0],b={leadingWhitespace:n.firstChild.nodeType===3,tbody:!n.getElementsByTagName("tbody").length,htmlSerialize:!!n.getElementsByTagName("link").length,style:/top/.test(d.getAttribute("style")),hrefNormalized:d.getAttribute("href")==="/a",opacity:/^0.5/.test(d.style.opacity),cssFloat:!!d.style.cssFloat,checkOn:h.value==="on",optSelected:g.selected,getSetAttribute:n.className!=="t",enctype:!!e.createElement("form").enctype,html5Clone:e.createElement("nav").cloneNode(!0).outerHTML!=="<:nav></:nav>",boxModel:e.compatMode==="CSS1Compat",submitBubbles:!0,changeBubbles:!0,focusinBubbles:!1,deleteExpando:!0,noCloneEvent:!0,inlineBlockNeedsLayout:!1,shrinkWrapBlocks:!1,reliableMarginRight:!0,boxSizingReliable:!0,pixelPosition:!1},h.checked=!0,b.noCloneChecked=h.cloneNode(!0).checked,f.disabled=!0,b.optDisabled=!g.disabled;try{delete n.test}catch(o){b.deleteExpando=!1}!n.addEventListener&&n.attachEvent&&n.fireEvent&&(n.attachEvent("onclick",m=function(){b.noCloneEvent=!1}),n.cloneNode(!0).fireEvent("onclick"),n.detachEvent("onclick",m)),h=e.createElement("input"),h.value="t",h.setAttribute("type","radio"),b.radioValue=h.value==="t",h.setAttribute("checked","checked"),h.setAttribute("name","t"),n.appendChild(h),i=e.createDocumentFragment(),i.appendChild(n.lastChild),b.checkClone=i.cloneNode(!0).cloneNode(!0).lastChild.checked,b.appendChecked=h.checked,i.removeChild(h),i.appendChild(n);if(n.attachEvent)for(k in{submit:!0,change:!0,focusin:!0})j="on"+k,l=j in n,l||(n.setAttribute(j,"return;"),l=typeof n[j]=="function"),b[k+"Bubbles"]=l;return p(function(){var c,d,f,g,h="padding:0;margin:0;border:0;display:block;overflow:hidden;",i=e.getElementsByTagName("body")[0];if(!i)return;c=e.createElement("div"),c.style.cssText="visibility:hidden;border:0;width:0;height:0;position:static;top:0;margin-top:1px",i.insertBefore(c,i.firstChild),d=e.createElement("div"),c.appendChild(d),d.innerHTML="<table><tr><td></td><td>t</td></tr></table>",f=d.getElementsByTagName("td"),f[0].style.cssText="padding:0;margin:0;border:0;display:none",l=f[0].offsetHeight===0,f[0].style.display="",f[1].style.display="none",b.reliableHiddenOffsets=l&&f[0].offsetHeight===0,d.innerHTML="",d.style.cssText="box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;padding:1px;border:1px;display:block;width:4px;margin-top:1%;position:absolute;top:1%;",b.boxSizing=d.offsetWidth===4,b.doesNotIncludeMarginInBodyOffset=i.offsetTop!==1,a.getComputedStyle&&(b.pixelPosition=(a.getComputedStyle(d,null)||{}).top!=="1%",b.boxSizingReliable=(a.getComputedStyle(d,null)||{width:"4px"}).width==="4px",g=e.createElement("div"),g.style.cssText=d.style.cssText=h,g.style.marginRight=g.style.width="0",d.style.width="1px",d.appendChild(g),b.reliableMarginRight=!parseFloat((a.getComputedStyle(g,null)||{}).marginRight)),typeof d.style.zoom!="undefined"&&(d.innerHTML="",d.style.cssText=h+"width:1px;padding:1px;display:inline;zoom:1",b.inlineBlockNeedsLayout=d.offsetWidth===3,d.style.display="block",d.style.overflow="visible",d.innerHTML="<div></div>",d.firstChild.style.width="5px",b.shrinkWrapBlocks=d.offsetWidth!==3,c.style.zoom=1),i.removeChild(c),c=d=f=g=null}),i.removeChild(n),c=d=f=g=h=i=n=null,b}();var H=/(?:\{[\s\S]*\}|\[[\s\S]*\])$/,I=/([A-Z])/g;p.extend({cache:{},deletedIds:[],uuid:0,expando:"jQuery"+(p.fn.jquery+Math.random()).replace(/\D/g,""),noData:{embed:!0,object:"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000",applet:!0},hasData:function(a){return a=a.nodeType?p.cache[a[p.expando]]:a[p.expando],!!a&&!K(a)},data:function(a,c,d,e){if(!p.acceptData(a))return;var f,g,h=p.expando,i=typeof c=="string",j=a.nodeType,k=j?p.cache:a,l=j?a[h]:a[h]&&h;if((!l||!k[l]||!e&&!k[l].data)&&i&&d===b)return;l||(j?a[h]=l=p.deletedIds.pop()||p.guid++:l=h),k[l]||(k[l]={},j||(k[l].toJSON=p.noop));if(typeof c=="object"||typeof c=="function")e?k[l]=p.extend(k[l],c):k[l].data=p.extend(k[l].data,c);return f=k[l],e||(f.data||(f.data={}),f=f.data),d!==b&&(f[p.camelCase(c)]=d),i?(g=f[c],g==null&&(g=f[p.camelCase(c)])):g=f,g},removeData:function(a,b,c){if(!p.acceptData(a))return;var d,e,f,g=a.nodeType,h=g?p.cache:a,i=g?a[p.expando]:p.expando;if(!h[i])return;if(b){d=c?h[i]:h[i].data;if(d){p.isArray(b)||(b in d?b=[b]:(b=p.camelCase(b),b in d?b=[b]:b=b.split(" ")));for(e=0,f=b.length;e<f;e++)delete d[b[e]];if(!(c?K:p.isEmptyObject)(d))return}}if(!c){delete h[i].data;if(!K(h[i]))return}g?p.cleanData([a],!0):p.support.deleteExpando||h!=h.window?delete h[i]:h[i]=null},_data:function(a,b,c){return p.data(a,b,c,!0)},acceptData:function(a){var b=a.nodeName&&p.noData[a.nodeName.toLowerCase()];return!b||b!==!0&&a.getAttribute("classid")===b}}),p.fn.extend({data:function(a,c){var d,e,f,g,h,i=this[0],j=0,k=null;if(a===b){if(this.length){k=p.data(i);if(i.nodeType===1&&!p._data(i,"parsedAttrs")){f=i.attributes;for(h=f.length;j<h;j++)g=f[j].name,g.indexOf("data-")||(g=p.camelCase(g.substring(5)),J(i,g,k[g]));p._data(i,"parsedAttrs",!0)}}return k}return typeof a=="object"?this.each(function(){p.data(this,a)}):(d=a.split(".",2),d[1]=d[1]?"."+d[1]:"",e=d[1]+"!",p.access(this,function(c){if(c===b)return k=this.triggerHandler("getData"+e,[d[0]]),k===b&&i&&(k=p.data(i,a),k=J(i,a,k)),k===b&&d[1]?this.data(d[0]):k;d[1]=c,this.each(function(){var b=p(this);b.triggerHandler("setData"+e,d),p.data(this,a,c),b.triggerHandler("changeData"+e,d)})},null,c,arguments.length>1,null,!1))},removeData:function(a){return this.each(function(){p.removeData(this,a)})}}),p.extend({queue:function(a,b,c){var d;if(a)return b=(b||"fx")+"queue",d=p._data(a,b),c&&(!d||p.isArray(c)?d=p._data(a,b,p.makeArray(c)):d.push(c)),d||[]},dequeue:function(a,b){b=b||"fx";var c=p.queue(a,b),d=c.length,e=c.shift(),f=p._queueHooks(a,b),g=function(){p.dequeue(a,b)};e==="inprogress"&&(e=c.shift(),d--),e&&(b==="fx"&&c.unshift("inprogress"),delete f.stop,e.call(a,g,f)),!d&&f&&f.empty.fire()},_queueHooks:function(a,b){var c=b+"queueHooks";return p._data(a,c)||p._data(a,c,{empty:p.Callbacks("once memory").add(function(){p.removeData(a,b+"queue",!0),p.removeData(a,c,!0)})})}}),p.fn.extend({queue:function(a,c){var d=2;return typeof a!="string"&&(c=a,a="fx",d--),arguments.length<d?p.queue(this[0],a):c===b?this:this.each(function(){var b=p.queue(this,a,c);p._queueHooks(this,a),a==="fx"&&b[0]!=="inprogress"&&p.dequeue(this,a)})},dequeue:function(a){return this.each(function(){p.dequeue(this,a)})},delay:function(a,b){return a=p.fx?p.fx.speeds[a]||a:a,b=b||"fx",this.queue(b,function(b,c){var d=setTimeout(b,a);c.stop=function(){clearTimeout(d)}})},clearQueue:function(a){return this.queue(a||"fx",[])},promise:function(a,c){var d,e=1,f=p.Deferred(),g=this,h=this.length,i=function(){--e||f.resolveWith(g,[g])};typeof a!="string"&&(c=a,a=b),a=a||"fx";while(h--)d=p._data(g[h],a+"queueHooks"),d&&d.empty&&(e++,d.empty.add(i));return i(),f.promise(c)}});var L,M,N,O=/[\t\r\n]/g,P=/\r/g,Q=/^(?:button|input)$/i,R=/^(?:button|input|object|select|textarea)$/i,S=/^a(?:rea|)$/i,T=/^(?:autofocus|autoplay|async|checked|controls|defer|disabled|hidden|loop|multiple|open|readonly|required|scoped|selected)$/i,U=p.support.getSetAttribute;p.fn.extend({attr:function(a,b){return p.access(this,p.attr,a,b,arguments.length>1)},removeAttr:function(a){return this.each(function(){p.removeAttr(this,a)})},prop:function(a,b){return p.access(this,p.prop,a,b,arguments.length>1)},removeProp:function(a){return a=p.propFix[a]||a,this.each(function(){try{this[a]=b,delete this[a]}catch(c){}})},addClass:function(a){var b,c,d,e,f,g,h;if(p.isFunction(a))return this.each(function(b){p(this).addClass(a.call(this,b,this.className))});if(a&&typeof a=="string"){b=a.split(s);for(c=0,d=this.length;c<d;c++){e=this[c];if(e.nodeType===1)if(!e.className&&b.length===1)e.className=a;else{f=" "+e.className+" ";for(g=0,h=b.length;g<h;g++)f.indexOf(" "+b[g]+" ")<0&&(f+=b[g]+" ");e.className=p.trim(f)}}}return this},removeClass:function(a){var c,d,e,f,g,h,i;if(p.isFunction(a))return this.each(function(b){p(this).removeClass(a.call(this,b,this.className))});if(a&&typeof a=="string"||a===b){c=(a||"").split(s);for(h=0,i=this.length;h<i;h++){e=this[h];if(e.nodeType===1&&e.className){d=(" "+e.className+" ").replace(O," ");for(f=0,g=c.length;f<g;f++)while(d.indexOf(" "+c[f]+" ")>=0)d=d.replace(" "+c[f]+" "," ");e.className=a?p.trim(d):""}}}return this},toggleClass:function(a,b){var c=typeof a,d=typeof b=="boolean";return p.isFunction(a)?this.each(function(c){p(this).toggleClass(a.call(this,c,this.className,b),b)}):this.each(function(){if(c==="string"){var e,f=0,g=p(this),h=b,i=a.split(s);while(e=i[f++])h=d?h:!g.hasClass(e),g[h?"addClass":"removeClass"](e)}else if(c==="undefined"||c==="boolean")this.className&&p._data(this,"__className__",this.className),this.className=this.className||a===!1?"":p._data(this,"__className__")||""})},hasClass:function(a){var b=" "+a+" ",c=0,d=this.length;for(;c<d;c++)if(this[c].nodeType===1&&(" "+this[c].className+" ").replace(O," ").indexOf(b)>=0)return!0;return!1},val:function(a){var c,d,e,f=this[0];if(!arguments.length){if(f)return c=p.valHooks[f.type]||p.valHooks[f.nodeName.toLowerCase()],c&&"get"in c&&(d=c.get(f,"value"))!==b?d:(d=f.value,typeof d=="string"?d.replace(P,""):d==null?"":d);return}return e=p.isFunction(a),this.each(function(d){var f,g=p(this);if(this.nodeType!==1)return;e?f=a.call(this,d,g.val()):f=a,f==null?f="":typeof f=="number"?f+="":p.isArray(f)&&(f=p.map(f,function(a){return a==null?"":a+""})),c=p.valHooks[this.type]||p.valHooks[this.nodeName.toLowerCase()];if(!c||!("set"in c)||c.set(this,f,"value")===b)this.value=f})}}),p.extend({valHooks:{option:{get:function(a){var b=a.attributes.value;return!b||b.specified?a.value:a.text}},select:{get:function(a){var b,c,d,e,f=a.selectedIndex,g=[],h=a.options,i=a.type==="select-one";if(f<0)return null;c=i?f:0,d=i?f+1:h.length;for(;c<d;c++){e=h[c];if(e.selected&&(p.support.optDisabled?!e.disabled:e.getAttribute("disabled")===null)&&(!e.parentNode.disabled||!p.nodeName(e.parentNode,"optgroup"))){b=p(e).val();if(i)return b;g.push(b)}}return i&&!g.length&&h.length?p(h[f]).val():g},set:function(a,b){var c=p.makeArray(b);return p(a).find("option").each(function(){this.selected=p.inArray(p(this).val(),c)>=0}),c.length||(a.selectedIndex=-1),c}}},attrFn:{},attr:function(a,c,d,e){var f,g,h,i=a.nodeType;if(!a||i===3||i===8||i===2)return;if(e&&p.isFunction(p.fn[c]))return p(a)[c](d);if(typeof a.getAttribute=="undefined")return p.prop(a,c,d);h=i!==1||!p.isXMLDoc(a),h&&(c=c.toLowerCase(),g=p.attrHooks[c]||(T.test(c)?M:L));if(d!==b){if(d===null){p.removeAttr(a,c);return}return g&&"set"in g&&h&&(f=g.set(a,d,c))!==b?f:(a.setAttribute(c,d+""),d)}return g&&"get"in g&&h&&(f=g.get(a,c))!==null?f:(f=a.getAttribute(c),f===null?b:f)},removeAttr:function(a,b){var c,d,e,f,g=0;if(b&&a.nodeType===1){d=b.split(s);for(;g<d.length;g++)e=d[g],e&&(c=p.propFix[e]||e,f=T.test(e),f||p.attr(a,e,""),a.removeAttribute(U?e:c),f&&c in a&&(a[c]=!1))}},attrHooks:{type:{set:function(a,b){if(Q.test(a.nodeName)&&a.parentNode)p.error("type property can't be changed");else if(!p.support.radioValue&&b==="radio"&&p.nodeName(a,"input")){var c=a.value;return a.setAttribute("type",b),c&&(a.value=c),b}}},value:{get:function(a,b){return L&&p.nodeName(a,"button")?L.get(a,b):b in a?a.value:null},set:function(a,b,c){if(L&&p.nodeName(a,"button"))return L.set(a,b,c);a.value=b}}},propFix:{tabindex:"tabIndex",readonly:"readOnly","for":"htmlFor","class":"className",maxlength:"maxLength",cellspacing:"cellSpacing",cellpadding:"cellPadding",rowspan:"rowSpan",colspan:"colSpan",usemap:"useMap",frameborder:"frameBorder",contenteditable:"contentEditable"},prop:function(a,c,d){var e,f,g,h=a.nodeType;if(!a||h===3||h===8||h===2)return;return g=h!==1||!p.isXMLDoc(a),g&&(c=p.propFix[c]||c,f=p.propHooks[c]),d!==b?f&&"set"in f&&(e=f.set(a,d,c))!==b?e:a[c]=d:f&&"get"in f&&(e=f.get(a,c))!==null?e:a[c]},propHooks:{tabIndex:{get:function(a){var c=a.getAttributeNode("tabindex");return c&&c.specified?parseInt(c.value,10):R.test(a.nodeName)||S.test(a.nodeName)&&a.href?0:b}}}}),M={get:function(a,c){var d,e=p.prop(a,c);return e===!0||typeof e!="boolean"&&(d=a.getAttributeNode(c))&&d.nodeValue!==!1?c.toLowerCase():b},set:function(a,b,c){var d;return b===!1?p.removeAttr(a,c):(d=p.propFix[c]||c,d in a&&(a[d]=!0),a.setAttribute(c,c.toLowerCase())),c}},U||(N={name:!0,id:!0,coords:!0},L=p.valHooks.button={get:function(a,c){var d;return d=a.getAttributeNode(c),d&&(N[c]?d.value!=="":d.specified)?d.value:b},set:function(a,b,c){var d=a.getAttributeNode(c);return d||(d=e.createAttribute(c),a.setAttributeNode(d)),d.value=b+""}},p.each(["width","height"],function(a,b){p.attrHooks[b]=p.extend(p.attrHooks[b],{set:function(a,c){if(c==="")return a.setAttribute(b,"auto"),c}})}),p.attrHooks.contenteditable={get:L.get,set:function(a,b,c){b===""&&(b="false"),L.set(a,b,c)}}),p.support.hrefNormalized||p.each(["href","src","width","height"],function(a,c){p.attrHooks[c]=p.extend(p.attrHooks[c],{get:function(a){var d=a.getAttribute(c,2);return d===null?b:d}})}),p.support.style||(p.attrHooks.style={get:function(a){return a.style.cssText.toLowerCase()||b},set:function(a,b){return a.style.cssText=b+""}}),p.support.optSelected||(p.propHooks.selected=p.extend(p.propHooks.selected,{get:function(a){var b=a.parentNode;return b&&(b.selectedIndex,b.parentNode&&b.parentNode.selectedIndex),null}})),p.support.enctype||(p.propFix.enctype="encoding"),p.support.checkOn||p.each(["radio","checkbox"],function(){p.valHooks[this]={get:function(a){return a.getAttribute("value")===null?"on":a.value}}}),p.each(["radio","checkbox"],function(){p.valHooks[this]=p.extend(p.valHooks[this],{set:function(a,b){if(p.isArray(b))return a.checked=p.inArray(p(a).val(),b)>=0}})});var V=/^(?:textarea|input|select)$/i,W=/^([^\.]*|)(?:\.(.+)|)$/,X=/(?:^|\s)hover(\.\S+|)\b/,Y=/^key/,Z=/^(?:mouse|contextmenu)|click/,$=/^(?:focusinfocus|focusoutblur)$/,_=function(a){return p.event.special.hover?a:a.replace(X,"mouseenter$1 mouseleave$1")};p.event={add:function(a,c,d,e,f){var g,h,i,j,k,l,m,n,o,q,r;if(a.nodeType===3||a.nodeType===8||!c||!d||!(g=p._data(a)))return;d.handler&&(o=d,d=o.handler,f=o.selector),d.guid||(d.guid=p.guid++),i=g.events,i||(g.events=i={}),h=g.handle,h||(g.handle=h=function(a){return typeof p!="undefined"&&(!a||p.event.triggered!==a.type)?p.event.dispatch.apply(h.elem,arguments):b},h.elem=a),c=p.trim(_(c)).split(" ");for(j=0;j<c.length;j++){k=W.exec(c[j])||[],l=k[1],m=(k[2]||"").split(".").sort(),r=p.event.special[l]||{},l=(f?r.delegateType:r.bindType)||l,r=p.event.special[l]||{},n=p.extend({type:l,origType:k[1],data:e,handler:d,guid:d.guid,selector:f,needsContext:f&&p.expr.match.needsContext.test(f),namespace:m.join(".")},o),q=i[l];if(!q){q=i[l]=[],q.delegateCount=0;if(!r.setup||r.setup.call(a,e,m,h)===!1)a.addEventListener?a.addEventListener(l,h,!1):a.attachEvent&&a.attachEvent("on"+l,h)}r.add&&(r.add.call(a,n),n.handler.guid||(n.handler.guid=d.guid)),f?q.splice(q.delegateCount++,0,n):q.push(n),p.event.global[l]=!0}a=null},global:{},remove:function(a,b,c,d,e){var f,g,h,i,j,k,l,m,n,o,q,r=p.hasData(a)&&p._data(a);if(!r||!(m=r.events))return;b=p.trim(_(b||"")).split(" ");for(f=0;f<b.length;f++){g=W.exec(b[f])||[],h=i=g[1],j=g[2];if(!h){for(h in m)p.event.remove(a,h+b[f],c,d,!0);continue}n=p.event.special[h]||{},h=(d?n.delegateType:n.bindType)||h,o=m[h]||[],k=o.length,j=j?new RegExp("(^|\\.)"+j.split(".").sort().join("\\.(?:.*\\.|)")+"(\\.|$)"):null;for(l=0;l<o.length;l++)q=o[l],(e||i===q.origType)&&(!c||c.guid===q.guid)&&(!j||j.test(q.namespace))&&(!d||d===q.selector||d==="**"&&q.selector)&&(o.splice(l--,1),q.selector&&o.delegateCount--,n.remove&&n.remove.call(a,q));o.length===0&&k!==o.length&&((!n.teardown||n.teardown.call(a,j,r.handle)===!1)&&p.removeEvent(a,h,r.handle),delete m[h])}p.isEmptyObject(m)&&(delete r.handle,p.removeData(a,"events",!0))},customEvent:{getData:!0,setData:!0,changeData:!0},trigger:function(c,d,f,g){if(!f||f.nodeType!==3&&f.nodeType!==8){var h,i,j,k,l,m,n,o,q,r,s=c.type||c,t=[];if($.test(s+p.event.triggered))return;s.indexOf("!")>=0&&(s=s.slice(0,-1),i=!0),s.indexOf(".")>=0&&(t=s.split("."),s=t.shift(),t.sort());if((!f||p.event.customEvent[s])&&!p.event.global[s])return;c=typeof c=="object"?c[p.expando]?c:new p.Event(s,c):new p.Event(s),c.type=s,c.isTrigger=!0,c.exclusive=i,c.namespace=t.join("."),c.namespace_re=c.namespace?new RegExp("(^|\\.)"+t.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,m=s.indexOf(":")<0?"on"+s:"";if(!f){h=p.cache;for(j in h)h[j].events&&h[j].events[s]&&p.event.trigger(c,d,h[j].handle.elem,!0);return}c.result=b,c.target||(c.target=f),d=d!=null?p.makeArray(d):[],d.unshift(c),n=p.event.special[s]||{};if(n.trigger&&n.trigger.apply(f,d)===!1)return;q=[[f,n.bindType||s]];if(!g&&!n.noBubble&&!p.isWindow(f)){r=n.delegateType||s,k=$.test(r+s)?f:f.parentNode;for(l=f;k;k=k.parentNode)q.push([k,r]),l=k;l===(f.ownerDocument||e)&&q.push([l.defaultView||l.parentWindow||a,r])}for(j=0;j<q.length&&!c.isPropagationStopped();j++)k=q[j][0],c.type=q[j][1],o=(p._data(k,"events")||{})[c.type]&&p._data(k,"handle"),o&&o.apply(k,d),o=m&&k[m],o&&p.acceptData(k)&&o.apply&&o.apply(k,d)===!1&&c.preventDefault();return c.type=s,!g&&!c.isDefaultPrevented()&&(!n._default||n._default.apply(f.ownerDocument,d)===!1)&&(s!=="click"||!p.nodeName(f,"a"))&&p.acceptData(f)&&m&&f[s]&&(s!=="focus"&&s!=="blur"||c.target.offsetWidth!==0)&&!p.isWindow(f)&&(l=f[m],l&&(f[m]=null),p.event.triggered=s,f[s](),p.event.triggered=b,l&&(f[m]=l)),c.result}return},dispatch:function(c){c=p.event.fix(c||a.event);var d,e,f,g,h,i,j,l,m,n,o=(p._data(this,"events")||{})[c.type]||[],q=o.delegateCount,r=k.call(arguments),s=!c.exclusive&&!c.namespace,t=p.event.special[c.type]||{},u=[];r[0]=c,c.delegateTarget=this;if(t.preDispatch&&t.preDispatch.call(this,c)===!1)return;if(q&&(!c.button||c.type!=="click"))for(f=c.target;f!=this;f=f.parentNode||this)if(f.disabled!==!0||c.type!=="click"){h={},j=[];for(d=0;d<q;d++)l=o[d],m=l.selector,h[m]===b&&(h[m]=l.needsContext?p(m,this).index(f)>=0:p.find(m,this,null,[f]).length),h[m]&&j.push(l);j.length&&u.push({elem:f,matches:j})}o.length>q&&u.push({elem:this,matches:o.slice(q)});for(d=0;d<u.length&&!c.isPropagationStopped();d++){i=u[d],c.currentTarget=i.elem;for(e=0;e<i.matches.length&&!c.isImmediatePropagationStopped();e++){l=i.matches[e];if(s||!c.namespace&&!l.namespace||c.namespace_re&&c.namespace_re.test(l.namespace))c.data=l.data,c.handleObj=l,g=((p.event.special[l.origType]||{}).handle||l.handler).apply(i.elem,r),g!==b&&(c.result=g,g===!1&&(c.preventDefault(),c.stopPropagation()))}}return t.postDispatch&&t.postDispatch.call(this,c),c.result},props:"attrChange attrName relatedNode srcElement altKey bubbles cancelable ctrlKey currentTarget eventPhase metaKey relatedTarget shiftKey target timeStamp view which".split(" "),fixHooks:{},keyHooks:{props:"char charCode key keyCode".split(" "),filter:function(a,b){return a.which==null&&(a.which=b.charCode!=null?b.charCode:b.keyCode),a}},mouseHooks:{props:"button buttons clientX clientY fromElement offsetX offsetY pageX pageY screenX screenY toElement".split(" "),filter:function(a,c){var d,f,g,h=c.button,i=c.fromElement;return a.pageX==null&&c.clientX!=null&&(d=a.target.ownerDocument||e,f=d.documentElement,g=d.body,a.pageX=c.clientX+(f&&f.scrollLeft||g&&g.scrollLeft||0)-(f&&f.clientLeft||g&&g.clientLeft||0),a.pageY=c.clientY+(f&&f.scrollTop||g&&g.scrollTop||0)-(f&&f.clientTop||g&&g.clientTop||0)),!a.relatedTarget&&i&&(a.relatedTarget=i===a.target?c.toElement:i),!a.which&&h!==b&&(a.which=h&1?1:h&2?3:h&4?2:0),a}},fix:function(a){if(a[p.expando])return a;var b,c,d=a,f=p.event.fixHooks[a.type]||{},g=f.props?this.props.concat(f.props):this.props;a=p.Event(d);for(b=g.length;b;)c=g[--b],a[c]=d[c];return a.target||(a.target=d.srcElement||e),a.target.nodeType===3&&(a.target=a.target.parentNode),a.metaKey=!!a.metaKey,f.filter?f.filter(a,d):a},special:{load:{noBubble:!0},focus:{delegateType:"focusin"},blur:{delegateType:"focusout"},beforeunload:{setup:function(a,b,c){p.isWindow(this)&&(this.onbeforeunload=c)},teardown:function(a,b){this.onbeforeunload===b&&(this.onbeforeunload=null)}}},simulate:function(a,b,c,d){var e=p.extend(new p.Event,c,{type:a,isSimulated:!0,originalEvent:{}});d?p.event.trigger(e,null,b):p.event.dispatch.call(b,e),e.isDefaultPrevented()&&c.preventDefault()}},p.event.handle=p.event.dispatch,p.removeEvent=e.removeEventListener?function(a,b,c){a.removeEventListener&&a.removeEventListener(b,c,!1)}:function(a,b,c){var d="on"+b;a.detachEvent&&(typeof a[d]=="undefined"&&(a[d]=null),a.detachEvent(d,c))},p.Event=function(a,b){if(this instanceof p.Event)a&&a.type?(this.originalEvent=a,this.type=a.type,this.isDefaultPrevented=a.defaultPrevented||a.returnValue===!1||a.getPreventDefault&&a.getPreventDefault()?bb:ba):this.type=a,b&&p.extend(this,b),this.timeStamp=a&&a.timeStamp||p.now(),this[p.expando]=!0;else return new p.Event(a,b)},p.Event.prototype={preventDefault:function(){this.isDefaultPrevented=bb;var a=this.originalEvent;if(!a)return;a.preventDefault?a.preventDefault():a.returnValue=!1},stopPropagation:function(){this.isPropagationStopped=bb;var a=this.originalEvent;if(!a)return;a.stopPropagation&&a.stopPropagation(),a.cancelBubble=!0},stopImmediatePropagation:function(){this.isImmediatePropagationStopped=bb,this.stopPropagation()},isDefaultPrevented:ba,isPropagationStopped:ba,isImmediatePropagationStopped:ba},p.each({mouseenter:"mouseover",mouseleave:"mouseout"},function(a,b){p.event.special[a]={delegateType:b,bindType:b,handle:function(a){var c,d=this,e=a.relatedTarget,f=a.handleObj,g=f.selector;if(!e||e!==d&&!p.contains(d,e))a.type=f.origType,c=f.handler.apply(this,arguments),a.type=b;return c}}}),p.support.submitBubbles||(p.event.special.submit={setup:function(){if(p.nodeName(this,"form"))return!1;p.event.add(this,"click._submit keypress._submit",function(a){var c=a.target,d=p.nodeName(c,"input")||p.nodeName(c,"button")?c.form:b;d&&!p._data(d,"_submit_attached")&&(p.event.add(d,"submit._submit",function(a){a._submit_bubble=!0}),p._data(d,"_submit_attached",!0))})},postDispatch:function(a){a._submit_bubble&&(delete a._submit_bubble,this.parentNode&&!a.isTrigger&&p.event.simulate("submit",this.parentNode,a,!0))},teardown:function(){if(p.nodeName(this,"form"))return!1;p.event.remove(this,"._submit")}}),p.support.changeBubbles||(p.event.special.change={setup:function(){if(V.test(this.nodeName)){if(this.type==="checkbox"||this.type==="radio")p.event.add(this,"propertychange._change",function(a){a.originalEvent.propertyName==="checked"&&(this._just_changed=!0)}),p.event.add(this,"click._change",function(a){this._just_changed&&!a.isTrigger&&(this._just_changed=!1),p.event.simulate("change",this,a,!0)});return!1}p.event.add(this,"beforeactivate._change",function(a){var b=a.target;V.test(b.nodeName)&&!p._data(b,"_change_attached")&&(p.event.add(b,"change._change",function(a){this.parentNode&&!a.isSimulated&&!a.isTrigger&&p.event.simulate("change",this.parentNode,a,!0)}),p._data(b,"_change_attached",!0))})},handle:function(a){var b=a.target;if(this!==b||a.isSimulated||a.isTrigger||b.type!=="radio"&&b.type!=="checkbox")return a.handleObj.handler.apply(this,arguments)},teardown:function(){return p.event.remove(this,"._change"),!V.test(this.nodeName)}}),p.support.focusinBubbles||p.each({focus:"focusin",blur:"focusout"},function(a,b){var c=0,d=function(a){p.event.simulate(b,a.target,p.event.fix(a),!0)};p.event.special[b]={setup:function(){c++===0&&e.addEventListener(a,d,!0)},teardown:function(){--c===0&&e.removeEventListener(a,d,!0)}}}),p.fn.extend({on:function(a,c,d,e,f){var g,h;if(typeof a=="object"){typeof c!="string"&&(d=d||c,c=b);for(h in a)this.on(h,c,d,a[h],f);return this}d==null&&e==null?(e=c,d=c=b):e==null&&(typeof c=="string"?(e=d,d=b):(e=d,d=c,c=b));if(e===!1)e=ba;else if(!e)return this;return f===1&&(g=e,e=function(a){return p().off(a),g.apply(this,arguments)},e.guid=g.guid||(g.guid=p.guid++)),this.each(function(){p.event.add(this,a,e,d,c)})},one:function(a,b,c,d){return this.on(a,b,c,d,1)},off:function(a,c,d){var e,f;if(a&&a.preventDefault&&a.handleObj)return e=a.handleObj,p(a.delegateTarget).off(e.namespace?e.origType+"."+e.namespace:e.origType,e.selector,e.handler),this;if(typeof a=="object"){for(f in a)this.off(f,c,a[f]);return this}if(c===!1||typeof c=="function")d=c,c=b;return d===!1&&(d=ba),this.each(function(){p.event.remove(this,a,d,c)})},bind:function(a,b,c){return this.on(a,null,b,c)},unbind:function(a,b){return this.off(a,null,b)},live:function(a,b,c){return p(this.context).on(a,this.selector,b,c),this},die:function(a,b){return p(this.context).off(a,this.selector||"**",b),this},delegate:function(a,b,c,d){return this.on(b,a,c,d)},undelegate:function(a,b,c){return arguments.length===1?this.off(a,"**"):this.off(b,a||"**",c)},trigger:function(a,b){return this.each(function(){p.event.trigger(a,b,this)})},triggerHandler:function(a,b){if(this[0])return p.event.trigger(a,b,this[0],!0)},toggle:function(a){var b=arguments,c=a.guid||p.guid++,d=0,e=function(c){var e=(p._data(this,"lastToggle"+a.guid)||0)%d;return p._data(this,"lastToggle"+a.guid,e+1),c.preventDefault(),b[e].apply(this,arguments)||!1};e.guid=c;while(d<b.length)b[d++].guid=c;return this.click(e)},hover:function(a,b){return this.mouseenter(a).mouseleave(b||a)}}),p.each("blur focus focusin focusout load resize scroll unload click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup error contextmenu".split(" "),function(a,b){p.fn[b]=function(a,c){return c==null&&(c=a,a=null),arguments.length>0?this.on(b,null,a,c):this.trigger(b)},Y.test(b)&&(p.event.fixHooks[b]=p.event.keyHooks),Z.test(b)&&(p.event.fixHooks[b]=p.event.mouseHooks)}),function(a,b){function bc(a,b,c,d){c=c||[],b=b||r;var e,f,i,j,k=b.nodeType;if(!a||typeof a!="string")return c;if(k!==1&&k!==9)return[];i=g(b);if(!i&&!d)if(e=P.exec(a))if(j=e[1]){if(k===9){f=b.getElementById(j);if(!f||!f.parentNode)return c;if(f.id===j)return c.push(f),c}else if(b.ownerDocument&&(f=b.ownerDocument.getElementById(j))&&h(b,f)&&f.id===j)return c.push(f),c}else{if(e[2])return w.apply(c,x.call(b.getElementsByTagName(a),0)),c;if((j=e[3])&&_&&b.getElementsByClassName)return w.apply(c,x.call(b.getElementsByClassName(j),0)),c}return bp(a.replace(L,"$1"),b,c,d,i)}function bd(a){return function(b){var c=b.nodeName.toLowerCase();return c==="input"&&b.type===a}}function be(a){return function(b){var c=b.nodeName.toLowerCase();return(c==="input"||c==="button")&&b.type===a}}function bf(a){return z(function(b){return b=+b,z(function(c,d){var e,f=a([],c.length,b),g=f.length;while(g--)c[e=f[g]]&&(c[e]=!(d[e]=c[e]))})})}function bg(a,b,c){if(a===b)return c;var d=a.nextSibling;while(d){if(d===b)return-1;d=d.nextSibling}return 1}function bh(a,b){var c,d,f,g,h,i,j,k=C[o][a];if(k)return b?0:k.slice(0);h=a,i=[],j=e.preFilter;while(h){if(!c||(d=M.exec(h)))d&&(h=h.slice(d[0].length)),i.push(f=[]);c=!1;if(d=N.exec(h))f.push(c=new q(d.shift())),h=h.slice(c.length),c.type=d[0].replace(L," ");for(g in e.filter)(d=W[g].exec(h))&&(!j[g]||(d=j[g](d,r,!0)))&&(f.push(c=new q(d.shift())),h=h.slice(c.length),c.type=g,c.matches=d);if(!c)break}return b?h.length:h?bc.error(a):C(a,i).slice(0)}function bi(a,b,d){var e=b.dir,f=d&&b.dir==="parentNode",g=u++;return b.first?function(b,c,d){while(b=b[e])if(f||b.nodeType===1)return a(b,c,d)}:function(b,d,h){if(!h){var i,j=t+" "+g+" ",k=j+c;while(b=b[e])if(f||b.nodeType===1){if((i=b[o])===k)return b.sizset;if(typeof i=="string"&&i.indexOf(j)===0){if(b.sizset)return b}else{b[o]=k;if(a(b,d,h))return b.sizset=!0,b;b.sizset=!1}}}else while(b=b[e])if(f||b.nodeType===1)if(a(b,d,h))return b}}function bj(a){return a.length>1?function(b,c,d){var e=a.length;while(e--)if(!a[e](b,c,d))return!1;return!0}:a[0]}function bk(a,b,c,d,e){var f,g=[],h=0,i=a.length,j=b!=null;for(;h<i;h++)if(f=a[h])if(!c||c(f,d,e))g.push(f),j&&b.push(h);return g}function bl(a,b,c,d,e,f){return d&&!d[o]&&(d=bl(d)),e&&!e[o]&&(e=bl(e,f)),z(function(f,g,h,i){if(f&&e)return;var j,k,l,m=[],n=[],o=g.length,p=f||bo(b||"*",h.nodeType?[h]:h,[],f),q=a&&(f||!b)?bk(p,m,a,h,i):p,r=c?e||(f?a:o||d)?[]:g:q;c&&c(q,r,h,i);if(d){l=bk(r,n),d(l,[],h,i),j=l.length;while(j--)if(k=l[j])r[n[j]]=!(q[n[j]]=k)}if(f){j=a&&r.length;while(j--)if(k=r[j])f[m[j]]=!(g[m[j]]=k)}else r=bk(r===g?r.splice(o,r.length):r),e?e(null,g,r,i):w.apply(g,r)})}function bm(a){var b,c,d,f=a.length,g=e.relative[a[0].type],h=g||e.relative[" "],i=g?1:0,j=bi(function(a){return a===b},h,!0),k=bi(function(a){return y.call(b,a)>-1},h,!0),m=[function(a,c,d){return!g&&(d||c!==l)||((b=c).nodeType?j(a,c,d):k(a,c,d))}];for(;i<f;i++)if(c=e.relative[a[i].type])m=[bi(bj(m),c)];else{c=e.filter[a[i].type].apply(null,a[i].matches);if(c[o]){d=++i;for(;d<f;d++)if(e.relative[a[d].type])break;return bl(i>1&&bj(m),i>1&&a.slice(0,i-1).join("").replace(L,"$1"),c,i<d&&bm(a.slice(i,d)),d<f&&bm(a=a.slice(d)),d<f&&a.join(""))}m.push(c)}return bj(m)}function bn(a,b){var d=b.length>0,f=a.length>0,g=function(h,i,j,k,m){var n,o,p,q=[],s=0,u="0",x=h&&[],y=m!=null,z=l,A=h||f&&e.find.TAG("*",m&&i.parentNode||i),B=t+=z==null?1:Math.E;y&&(l=i!==r&&i,c=g.el);for(;(n=A[u])!=null;u++){if(f&&n){for(o=0;p=a[o];o++)if(p(n,i,j)){k.push(n);break}y&&(t=B,c=++g.el)}d&&((n=!p&&n)&&s--,h&&x.push(n))}s+=u;if(d&&u!==s){for(o=0;p=b[o];o++)p(x,q,i,j);if(h){if(s>0)while(u--)!x[u]&&!q[u]&&(q[u]=v.call(k));q=bk(q)}w.apply(k,q),y&&!h&&q.length>0&&s+b.length>1&&bc.uniqueSort(k)}return y&&(t=B,l=z),x};return g.el=0,d?z(g):g}function bo(a,b,c,d){var e=0,f=b.length;for(;e<f;e++)bc(a,b[e],c,d);return c}function bp(a,b,c,d,f){var g,h,j,k,l,m=bh(a),n=m.length;if(!d&&m.length===1){h=m[0]=m[0].slice(0);if(h.length>2&&(j=h[0]).type==="ID"&&b.nodeType===9&&!f&&e.relative[h[1].type]){b=e.find.ID(j.matches[0].replace(V,""),b,f)[0];if(!b)return c;a=a.slice(h.shift().length)}for(g=W.POS.test(a)?-1:h.length-1;g>=0;g--){j=h[g];if(e.relative[k=j.type])break;if(l=e.find[k])if(d=l(j.matches[0].replace(V,""),R.test(h[0].type)&&b.parentNode||b,f)){h.splice(g,1),a=d.length&&h.join("");if(!a)return w.apply(c,x.call(d,0)),c;break}}}return i(a,m)(d,b,f,c,R.test(a)),c}function bq(){}var c,d,e,f,g,h,i,j,k,l,m=!0,n="undefined",o=("sizcache"+Math.random()).replace(".",""),q=String,r=a.document,s=r.documentElement,t=0,u=0,v=[].pop,w=[].push,x=[].slice,y=[].indexOf||function(a){var b=0,c=this.length;for(;b<c;b++)if(this[b]===a)return b;return-1},z=function(a,b){return a[o]=b==null||b,a},A=function(){var a={},b=[];return z(function(c,d){return b.push(c)>e.cacheLength&&delete a[b.shift()],a[c]=d},a)},B=A(),C=A(),D=A(),E="[\\x20\\t\\r\\n\\f]",F="(?:\\\\.|[-\\w]|[^\\x00-\\xa0])+",G=F.replace("w","w#"),H="([*^$|!~]?=)",I="\\["+E+"*("+F+")"+E+"*(?:"+H+E+"*(?:(['\"])((?:\\\\.|[^\\\\])*?)\\3|("+G+")|)|)"+E+"*\\]",J=":("+F+")(?:\\((?:(['\"])((?:\\\\.|[^\\\\])*?)\\2|([^()[\\]]*|(?:(?:"+I+")|[^:]|\\\\.)*|.*))\\)|)",K=":(even|odd|eq|gt|lt|nth|first|last)(?:\\("+E+"*((?:-\\d)?\\d*)"+E+"*\\)|)(?=[^-]|$)",L=new RegExp("^"+E+"+|((?:^|[^\\\\])(?:\\\\.)*)"+E+"+$","g"),M=new RegExp("^"+E+"*,"+E+"*"),N=new RegExp("^"+E+"*([\\x20\\t\\r\\n\\f>+~])"+E+"*"),O=new RegExp(J),P=/^(?:#([\w\-]+)|(\w+)|\.([\w\-]+))$/,Q=/^:not/,R=/[\x20\t\r\n\f]*[+~]/,S=/:not\($/,T=/h\d/i,U=/input|select|textarea|button/i,V=/\\(?!\\)/g,W={ID:new RegExp("^#("+F+")"),CLASS:new RegExp("^\\.("+F+")"),NAME:new RegExp("^\\[name=['\"]?("+F+")['\"]?\\]"),TAG:new RegExp("^("+F.replace("w","w*")+")"),ATTR:new RegExp("^"+I),PSEUDO:new RegExp("^"+J),POS:new RegExp(K,"i"),CHILD:new RegExp("^:(only|nth|first|last)-child(?:\\("+E+"*(even|odd|(([+-]|)(\\d*)n|)"+E+"*(?:([+-]|)"+E+"*(\\d+)|))"+E+"*\\)|)","i"),needsContext:new RegExp("^"+E+"*[>+~]|"+K,"i")},X=function(a){var b=r.createElement("div");try{return a(b)}catch(c){return!1}finally{b=null}},Y=X(function(a){return a.appendChild(r.createComment("")),!a.getElementsByTagName("*").length}),Z=X(function(a){return a.innerHTML="<a href='#'></a>",a.firstChild&&typeof a.firstChild.getAttribute!==n&&a.firstChild.getAttribute("href")==="#"}),$=X(function(a){a.innerHTML="<select></select>";var b=typeof a.lastChild.getAttribute("multiple");return b!=="boolean"&&b!=="string"}),_=X(function(a){return a.innerHTML="<div class='hidden e'></div><div class='hidden'></div>",!a.getElementsByClassName||!a.getElementsByClassName("e").length?!1:(a.lastChild.className="e",a.getElementsByClassName("e").length===2)}),ba=X(function(a){a.id=o+0,a.innerHTML="<a name='"+o+"'></a><div name='"+o+"'></div>",s.insertBefore(a,s.firstChild);var b=r.getElementsByName&&r.getElementsByName(o).length===2+r.getElementsByName(o+0).length;return d=!r.getElementById(o),s.removeChild(a),b});try{x.call(s.childNodes,0)[0].nodeType}catch(bb){x=function(a){var b,c=[];for(;b=this[a];a++)c.push(b);return c}}bc.matches=function(a,b){return bc(a,null,null,b)},bc.matchesSelector=function(a,b){return bc(b,null,null,[a]).length>0},f=bc.getText=function(a){var b,c="",d=0,e=a.nodeType;if(e){if(e===1||e===9||e===11){if(typeof a.textContent=="string")return a.textContent;for(a=a.firstChild;a;a=a.nextSibling)c+=f(a)}else if(e===3||e===4)return a.nodeValue}else for(;b=a[d];d++)c+=f(b);return c},g=bc.isXML=function(a){var b=a&&(a.ownerDocument||a).documentElement;return b?b.nodeName!=="HTML":!1},h=bc.contains=s.contains?function(a,b){var c=a.nodeType===9?a.documentElement:a,d=b&&b.parentNode;return a===d||!!(d&&d.nodeType===1&&c.contains&&c.contains(d))}:s.compareDocumentPosition?function(a,b){return b&&!!(a.compareDocumentPosition(b)&16)}:function(a,b){while(b=b.parentNode)if(b===a)return!0;return!1},bc.attr=function(a,b){var c,d=g(a);return d||(b=b.toLowerCase()),(c=e.attrHandle[b])?c(a):d||$?a.getAttribute(b):(c=a.getAttributeNode(b),c?typeof a[b]=="boolean"?a[b]?b:null:c.specified?c.value:null:null)},e=bc.selectors={cacheLength:50,createPseudo:z,match:W,attrHandle:Z?{}:{href:function(a){return a.getAttribute("href",2)},type:function(a){return a.getAttribute("type")}},find:{ID:d?function(a,b,c){if(typeof b.getElementById!==n&&!c){var d=b.getElementById(a);return d&&d.parentNode?[d]:[]}}:function(a,c,d){if(typeof c.getElementById!==n&&!d){var e=c.getElementById(a);return e?e.id===a||typeof e.getAttributeNode!==n&&e.getAttributeNode("id").value===a?[e]:b:[]}},TAG:Y?function(a,b){if(typeof b.getElementsByTagName!==n)return b.getElementsByTagName(a)}:function(a,b){var c=b.getElementsByTagName(a);if(a==="*"){var d,e=[],f=0;for(;d=c[f];f++)d.nodeType===1&&e.push(d);return e}return c},NAME:ba&&function(a,b){if(typeof b.getElementsByName!==n)return b.getElementsByName(name)},CLASS:_&&function(a,b,c){if(typeof b.getElementsByClassName!==n&&!c)return b.getElementsByClassName(a)}},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(a){return a[1]=a[1].replace(V,""),a[3]=(a[4]||a[5]||"").replace(V,""),a[2]==="~="&&(a[3]=" "+a[3]+" "),a.slice(0,4)},CHILD:function(a){return a[1]=a[1].toLowerCase(),a[1]==="nth"?(a[2]||bc.error(a[0]),a[3]=+(a[3]?a[4]+(a[5]||1):2*(a[2]==="even"||a[2]==="odd")),a[4]=+(a[6]+a[7]||a[2]==="odd")):a[2]&&bc.error(a[0]),a},PSEUDO:function(a){var b,c;if(W.CHILD.test(a[0]))return null;if(a[3])a[2]=a[3];else if(b=a[4])O.test(b)&&(c=bh(b,!0))&&(c=b.indexOf(")",b.length-c)-b.length)&&(b=b.slice(0,c),a[0]=a[0].slice(0,c)),a[2]=b;return a.slice(0,3)}},filter:{ID:d?function(a){return a=a.replace(V,""),function(b){return b.getAttribute("id")===a}}:function(a){return a=a.replace(V,""),function(b){var c=typeof b.getAttributeNode!==n&&b.getAttributeNode("id");return c&&c.value===a}},TAG:function(a){return a==="*"?function(){return!0}:(a=a.replace(V,"").toLowerCase(),function(b){return b.nodeName&&b.nodeName.toLowerCase()===a})},CLASS:function(a){var b=B[o][a];return b||(b=B(a,new RegExp("(^|"+E+")"+a+"("+E+"|$)"))),function(a){return b.test(a.className||typeof a.getAttribute!==n&&a.getAttribute("class")||"")}},ATTR:function(a,b,c){return function(d,e){var f=bc.attr(d,a);return f==null?b==="!=":b?(f+="",b==="="?f===c:b==="!="?f!==c:b==="^="?c&&f.indexOf(c)===0:b==="*="?c&&f.indexOf(c)>-1:b==="$="?c&&f.substr(f.length-c.length)===c:b==="~="?(" "+f+" ").indexOf(c)>-1:b==="|="?f===c||f.substr(0,c.length+1)===c+"-":!1):!0}},CHILD:function(a,b,c,d){return a==="nth"?function(a){var b,e,f=a.parentNode;if(c===1&&d===0)return!0;if(f){e=0;for(b=f.firstChild;b;b=b.nextSibling)if(b.nodeType===1){e++;if(a===b)break}}return e-=d,e===c||e%c===0&&e/c>=0}:function(b){var c=b;switch(a){case"only":case"first":while(c=c.previousSibling)if(c.nodeType===1)return!1;if(a==="first")return!0;c=b;case"last":while(c=c.nextSibling)if(c.nodeType===1)return!1;return!0}}},PSEUDO:function(a,b){var c,d=e.pseudos[a]||e.setFilters[a.toLowerCase()]||bc.error("unsupported pseudo: "+a);return d[o]?d(b):d.length>1?(c=[a,a,"",b],e.setFilters.hasOwnProperty(a.toLowerCase())?z(function(a,c){var e,f=d(a,b),g=f.length;while(g--)e=y.call(a,f[g]),a[e]=!(c[e]=f[g])}):function(a){return d(a,0,c)}):d}},pseudos:{not:z(function(a){var b=[],c=[],d=i(a.replace(L,"$1"));return d[o]?z(function(a,b,c,e){var f,g=d(a,null,e,[]),h=a.length;while(h--)if(f=g[h])a[h]=!(b[h]=f)}):function(a,e,f){return b[0]=a,d(b,null,f,c),!c.pop()}}),has:z(function(a){return function(b){return bc(a,b).length>0}}),contains:z(function(a){return function(b){return(b.textContent||b.innerText||f(b)).indexOf(a)>-1}}),enabled:function(a){return a.disabled===!1},disabled:function(a){return a.disabled===!0},checked:function(a){var b=a.nodeName.toLowerCase();return b==="input"&&!!a.checked||b==="option"&&!!a.selected},selected:function(a){return a.parentNode&&a.parentNode.selectedIndex,a.selected===!0},parent:function(a){return!e.pseudos.empty(a)},empty:function(a){var b;a=a.firstChild;while(a){if(a.nodeName>"@"||(b=a.nodeType)===3||b===4)return!1;a=a.nextSibling}return!0},header:function(a){return T.test(a.nodeName)},text:function(a){var b,c;return a.nodeName.toLowerCase()==="input"&&(b=a.type)==="text"&&((c=a.getAttribute("type"))==null||c.toLowerCase()===b)},radio:bd("radio"),checkbox:bd("checkbox"),file:bd("file"),password:bd("password"),image:bd("image"),submit:be("submit"),reset:be("reset"),button:function(a){var b=a.nodeName.toLowerCase();return b==="input"&&a.type==="button"||b==="button"},input:function(a){return U.test(a.nodeName)},focus:function(a){var b=a.ownerDocument;return a===b.activeElement&&(!b.hasFocus||b.hasFocus())&&(!!a.type||!!a.href)},active:function(a){return a===a.ownerDocument.activeElement},first:bf(function(a,b,c){return[0]}),last:bf(function(a,b,c){return[b-1]}),eq:bf(function(a,b,c){return[c<0?c+b:c]}),even:bf(function(a,b,c){for(var d=0;d<b;d+=2)a.push(d);return a}),odd:bf(function(a,b,c){for(var d=1;d<b;d+=2)a.push(d);return a}),lt:bf(function(a,b,c){for(var d=c<0?c+b:c;--d>=0;)a.push(d);return a}),gt:bf(function(a,b,c){for(var d=c<0?c+b:c;++d<b;)a.push(d);return a})}},j=s.compareDocumentPosition?function(a,b){return a===b?(k=!0,0):(!a.compareDocumentPosition||!b.compareDocumentPosition?a.compareDocumentPosition:a.compareDocumentPosition(b)&4)?-1:1}:function(a,b){if(a===b)return k=!0,0;if(a.sourceIndex&&b.sourceIndex)return a.sourceIndex-b.sourceIndex;var c,d,e=[],f=[],g=a.parentNode,h=b.parentNode,i=g;if(g===h)return bg(a,b);if(!g)return-1;if(!h)return 1;while(i)e.unshift(i),i=i.parentNode;i=h;while(i)f.unshift(i),i=i.parentNode;c=e.length,d=f.length;for(var j=0;j<c&&j<d;j++)if(e[j]!==f[j])return bg(e[j],f[j]);return j===c?bg(a,f[j],-1):bg(e[j],b,1)},[0,0].sort(j),m=!k,bc.uniqueSort=function(a){var b,c=1;k=m,a.sort(j);if(k)for(;b=a[c];c++)b===a[c-1]&&a.splice(c--,1);return a},bc.error=function(a){throw new Error("Syntax error, unrecognized expression: "+a)},i=bc.compile=function(a,b){var c,d=[],e=[],f=D[o][a];if(!f){b||(b=bh(a)),c=b.length;while(c--)f=bm(b[c]),f[o]?d.push(f):e.push(f);f=D(a,bn(e,d))}return f},r.querySelectorAll&&function(){var a,b=bp,c=/'|\\/g,d=/\=[\x20\t\r\n\f]*([^'"\]]*)[\x20\t\r\n\f]*\]/g,e=[":focus"],f=[":active",":focus"],h=s.matchesSelector||s.mozMatchesSelector||s.webkitMatchesSelector||s.oMatchesSelector||s.msMatchesSelector;X(function(a){a.innerHTML="<select><option selected=''></option></select>",a.querySelectorAll("[selected]").length||e.push("\\["+E+"*(?:checked|disabled|ismap|multiple|readonly|selected|value)"),a.querySelectorAll(":checked").length||e.push(":checked")}),X(function(a){a.innerHTML="<p test=''></p>",a.querySelectorAll("[test^='']").length&&e.push("[*^$]="+E+"*(?:\"\"|'')"),a.innerHTML="<input type='hidden'/>",a.querySelectorAll(":enabled").length||e.push(":enabled",":disabled")}),e=new RegExp(e.join("|")),bp=function(a,d,f,g,h){if(!g&&!h&&(!e||!e.test(a))){var i,j,k=!0,l=o,m=d,n=d.nodeType===9&&a;if(d.nodeType===1&&d.nodeName.toLowerCase()!=="object"){i=bh(a),(k=d.getAttribute("id"))?l=k.replace(c,"\\$&"):d.setAttribute("id",l),l="[id='"+l+"'] ",j=i.length;while(j--)i[j]=l+i[j].join("");m=R.test(a)&&d.parentNode||d,n=i.join(",")}if(n)try{return w.apply(f,x.call(m.querySelectorAll(n),0)),f}catch(p){}finally{k||d.removeAttribute("id")}}return b(a,d,f,g,h)},h&&(X(function(b){a=h.call(b,"div");try{h.call(b,"[test!='']:sizzle"),f.push("!=",J)}catch(c){}}),f=new RegExp(f.join("|")),bc.matchesSelector=function(b,c){c=c.replace(d,"='$1']");if(!g(b)&&!f.test(c)&&(!e||!e.test(c)))try{var i=h.call(b,c);if(i||a||b.document&&b.document.nodeType!==11)return i}catch(j){}return bc(c,null,null,[b]).length>0})}(),e.pseudos.nth=e.pseudos.eq,e.filters=bq.prototype=e.pseudos,e.setFilters=new bq,bc.attr=p.attr,p.find=bc,p.expr=bc.selectors,p.expr[":"]=p.expr.pseudos,p.unique=bc.uniqueSort,p.text=bc.getText,p.isXMLDoc=bc.isXML,p.contains=bc.contains}(a);var bc=/Until$/,bd=/^(?:parents|prev(?:Until|All))/,be=/^.[^:#\[\.,]*$/,bf=p.expr.match.needsContext,bg={children:!0,contents:!0,next:!0,prev:!0};p.fn.extend({find:function(a){var b,c,d,e,f,g,h=this;if(typeof a!="string")return p(a).filter(function(){for(b=0,c=h.length;b<c;b++)if(p.contains(h[b],this))return!0});g=this.pushStack("","find",a);for(b=0,c=this.length;b<c;b++){d=g.length,p.find(a,this[b],g);if(b>0)for(e=d;e<g.length;e++)for(f=0;f<d;f++)if(g[f]===g[e]){g.splice(e--,1);break}}return g},has:function(a){var b,c=p(a,this),d=c.length;return this.filter(function(){for(b=0;b<d;b++)if(p.contains(this,c[b]))return!0})},not:function(a){return this.pushStack(bj(this,a,!1),"not",a)},filter:function(a){return this.pushStack(bj(this,a,!0),"filter",a)},is:function(a){return!!a&&(typeof a=="string"?bf.test(a)?p(a,this.context).index(this[0])>=0:p.filter(a,this).length>0:this.filter(a).length>0)},closest:function(a,b){var c,d=0,e=this.length,f=[],g=bf.test(a)||typeof a!="string"?p(a,b||this.context):0;for(;d<e;d++){c=this[d];while(c&&c.ownerDocument&&c!==b&&c.nodeType!==11){if(g?g.index(c)>-1:p.find.matchesSelector(c,a)){f.push(c);break}c=c.parentNode}}return f=f.length>1?p.unique(f):f,this.pushStack(f,"closest",a)},index:function(a){return a?typeof a=="string"?p.inArray(this[0],p(a)):p.inArray(a.jquery?a[0]:a,this):this[0]&&this[0].parentNode?this.prevAll().length:-1},add:function(a,b){var c=typeof a=="string"?p(a,b):p.makeArray(a&&a.nodeType?[a]:a),d=p.merge(this.get(),c);return this.pushStack(bh(c[0])||bh(d[0])?d:p.unique(d))},addBack:function(a){return this.add(a==null?this.prevObject:this.prevObject.filter(a))}}),p.fn.andSelf=p.fn.addBack,p.each({parent:function(a){var b=a.parentNode;return b&&b.nodeType!==11?b:null},parents:function(a){return p.dir(a,"parentNode")},parentsUntil:function(a,b,c){return p.dir(a,"parentNode",c)},next:function(a){return bi(a,"nextSibling")},prev:function(a){return bi(a,"previousSibling")},nextAll:function(a){return p.dir(a,"nextSibling")},prevAll:function(a){return p.dir(a,"previousSibling")},nextUntil:function(a,b,c){return p.dir(a,"nextSibling",c)},prevUntil:function(a,b,c){return p.dir(a,"previousSibling",c)},siblings:function(a){return p.sibling((a.parentNode||{}).firstChild,a)},children:function(a){return p.sibling(a.firstChild)},contents:function(a){return p.nodeName(a,"iframe")?a.contentDocument||a.contentWindow.document:p.merge([],a.childNodes)}},function(a,b){p.fn[a]=function(c,d){var e=p.map(this,b,c);return bc.test(a)||(d=c),d&&typeof d=="string"&&(e=p.filter(d,e)),e=this.length>1&&!bg[a]?p.unique(e):e,this.length>1&&bd.test(a)&&(e=e.reverse()),this.pushStack(e,a,k.call(arguments).join(","))}}),p.extend({filter:function(a,b,c){return c&&(a=":not("+a+")"),b.length===1?p.find.matchesSelector(b[0],a)?[b[0]]:[]:p.find.matches(a,b)},dir:function(a,c,d){var e=[],f=a[c];while(f&&f.nodeType!==9&&(d===b||f.nodeType!==1||!p(f).is(d)))f.nodeType===1&&e.push(f),f=f[c];return e},sibling:function(a,b){var c=[];for(;a;a=a.nextSibling)a.nodeType===1&&a!==b&&c.push(a);return c}});var bl="abbr|article|aside|audio|bdi|canvas|data|datalist|details|figcaption|figure|footer|header|hgroup|mark|meter|nav|output|progress|section|summary|time|video",bm=/ jQuery\d+="(?:null|\d+)"/g,bn=/^\s+/,bo=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/gi,bp=/<([\w:]+)/,bq=/<tbody/i,br=/<|&#?\w+;/,bs=/<(?:script|style|link)/i,bt=/<(?:script|object|embed|option|style)/i,bu=new RegExp("<(?:"+bl+")[\\s/>]","i"),bv=/^(?:checkbox|radio)$/,bw=/checked\s*(?:[^=]|=\s*.checked.)/i,bx=/\/(java|ecma)script/i,by=/^\s*<!(?:\[CDATA\[|\-\-)|[\]\-]{2}>\s*$/g,bz={option:[1,"<select multiple='multiple'>","</select>"],legend:[1,"<fieldset>","</fieldset>"],thead:[1,"<table>","</table>"],tr:[2,"<table><tbody>","</tbody></table>"],td:[3,"<table><tbody><tr>","</tr></tbody></table>"],col:[2,"<table><tbody></tbody><colgroup>","</colgroup></table>"],area:[1,"<map>","</map>"],_default:[0,"",""]},bA=bk(e),bB=bA.appendChild(e.createElement("div"));bz.optgroup=bz.option,bz.tbody=bz.tfoot=bz.colgroup=bz.caption=bz.thead,bz.th=bz.td,p.support.htmlSerialize||(bz._default=[1,"X<div>","</div>"]),p.fn.extend({text:function(a){return p.access(this,function(a){return a===b?p.text(this):this.empty().append((this[0]&&this[0].ownerDocument||e).createTextNode(a))},null,a,arguments.length)},wrapAll:function(a){if(p.isFunction(a))return this.each(function(b){p(this).wrapAll(a.call(this,b))});if(this[0]){var b=p(a,this[0].ownerDocument).eq(0).clone(!0);this[0].parentNode&&b.insertBefore(this[0]),b.map(function(){var a=this;while(a.firstChild&&a.firstChild.nodeType===1)a=a.firstChild;return a}).append(this)}return this},wrapInner:function(a){return p.isFunction(a)?this.each(function(b){p(this).wrapInner(a.call(this,b))}):this.each(function(){var b=p(this),c=b.contents();c.length?c.wrapAll(a):b.append(a)})},wrap:function(a){var b=p.isFunction(a);return this.each(function(c){p(this).wrapAll(b?a.call(this,c):a)})},unwrap:function(){return this.parent().each(function(){p.nodeName(this,"body")||p(this).replaceWith(this.childNodes)}).end()},append:function(){return this.domManip(arguments,!0,function(a){(this.nodeType===1||this.nodeType===11)&&this.appendChild(a)})},prepend:function(){return this.domManip(arguments,!0,function(a){(this.nodeType===1||this.nodeType===11)&&this.insertBefore(a,this.firstChild)})},before:function(){if(!bh(this[0]))return this.domManip(arguments,!1,function(a){this.parentNode.insertBefore(a,this)});if(arguments.length){var a=p.clean(arguments);return this.pushStack(p.merge(a,this),"before",this.selector)}},after:function(){if(!bh(this[0]))return this.domManip(arguments,!1,function(a){this.parentNode.insertBefore(a,this.nextSibling)});if(arguments.length){var a=p.clean(arguments);return this.pushStack(p.merge(this,a),"after",this.selector)}},remove:function(a,b){var c,d=0;for(;(c=this[d])!=null;d++)if(!a||p.filter(a,[c]).length)!b&&c.nodeType===1&&(p.cleanData(c.getElementsByTagName("*")),p.cleanData([c])),c.parentNode&&c.parentNode.removeChild(c);return this},empty:function(){var a,b=0;for(;(a=this[b])!=null;b++){a.nodeType===1&&p.cleanData(a.getElementsByTagName("*"));while(a.firstChild)a.removeChild(a.firstChild)}return this},clone:function(a,b){return a=a==null?!1:a,b=b==null?a:b,this.map(function(){return p.clone(this,a,b)})},html:function(a){return p.access(this,function(a){var c=this[0]||{},d=0,e=this.length;if(a===b)return c.nodeType===1?c.innerHTML.replace(bm,""):b;if(typeof a=="string"&&!bs.test(a)&&(p.support.htmlSerialize||!bu.test(a))&&(p.support.leadingWhitespace||!bn.test(a))&&!bz[(bp.exec(a)||["",""])[1].toLowerCase()]){a=a.replace(bo,"<$1></$2>");try{for(;d<e;d++)c=this[d]||{},c.nodeType===1&&(p.cleanData(c.getElementsByTagName("*")),c.innerHTML=a);c=0}catch(f){}}c&&this.empty().append(a)},null,a,arguments.length)},replaceWith:function(a){return bh(this[0])?this.length?this.pushStack(p(p.isFunction(a)?a():a),"replaceWith",a):this:p.isFunction(a)?this.each(function(b){var c=p(this),d=c.html();c.replaceWith(a.call(this,b,d))}):(typeof a!="string"&&(a=p(a).detach()),this.each(function(){var b=this.nextSibling,c=this.parentNode;p(this).remove(),b?p(b).before(a):p(c).append(a)}))},detach:function(a){return this.remove(a,!0)},domManip:function(a,c,d){a=[].concat.apply([],a);var e,f,g,h,i=0,j=a[0],k=[],l=this.length;if(!p.support.checkClone&&l>1&&typeof j=="string"&&bw.test(j))return this.each(function(){p(this).domManip(a,c,d)});if(p.isFunction(j))return this.each(function(e){var f=p(this);a[0]=j.call(this,e,c?f.html():b),f.domManip(a,c,d)});if(this[0]){e=p.buildFragment(a,this,k),g=e.fragment,f=g.firstChild,g.childNodes.length===1&&(g=f);if(f){c=c&&p.nodeName(f,"tr");for(h=e.cacheable||l-1;i<l;i++)d.call(c&&p.nodeName(this[i],"table")?bC(this[i],"tbody"):this[i],i===h?g:p.clone(g,!0,!0))}g=f=null,k.length&&p.each(k,function(a,b){b.src?p.ajax?p.ajax({url:b.src,type:"GET",dataType:"script",async:!1,global:!1,"throws":!0}):p.error("no ajax"):p.globalEval((b.text||b.textContent||b.innerHTML||"").replace(by,"")),b.parentNode&&b.parentNode.removeChild(b)})}return this}}),p.buildFragment=function(a,c,d){var f,g,h,i=a[0];return c=c||e,c=!c.nodeType&&c[0]||c,c=c.ownerDocument||c,a.length===1&&typeof i=="string"&&i.length<512&&c===e&&i.charAt(0)==="<"&&!bt.test(i)&&(p.support.checkClone||!bw.test(i))&&(p.support.html5Clone||!bu.test(i))&&(g=!0,f=p.fragments[i],h=f!==b),f||(f=c.createDocumentFragment(),p.clean(a,c,f,d),g&&(p.fragments[i]=h&&f)),{fragment:f,cacheable:g}},p.fragments={},p.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(a,b){p.fn[a]=function(c){var d,e=0,f=[],g=p(c),h=g.length,i=this.length===1&&this[0].parentNode;if((i==null||i&&i.nodeType===11&&i.childNodes.length===1)&&h===1)return g[b](this[0]),this;for(;e<h;e++)d=(e>0?this.clone(!0):this).get(),p(g[e])[b](d),f=f.concat(d);return this.pushStack(f,a,g.selector)}}),p.extend({clone:function(a,b,c){var d,e,f,g;p.support.html5Clone||p.isXMLDoc(a)||!bu.test("<"+a.nodeName+">")?g=a.cloneNode(!0):(bB.innerHTML=a.outerHTML,bB.removeChild(g=bB.firstChild));if((!p.support.noCloneEvent||!p.support.noCloneChecked)&&(a.nodeType===1||a.nodeType===11)&&!p.isXMLDoc(a)){bE(a,g),d=bF(a),e=bF(g);for(f=0;d[f];++f)e[f]&&bE(d[f],e[f])}if(b){bD(a,g);if(c){d=bF(a),e=bF(g);for(f=0;d[f];++f)bD(d[f],e[f])}}return d=e=null,g},clean:function(a,b,c,d){var f,g,h,i,j,k,l,m,n,o,q,r,s=b===e&&bA,t=[];if(!b||typeof b.createDocumentFragment=="undefined")b=e;for(f=0;(h=a[f])!=null;f++){typeof h=="number"&&(h+="");if(!h)continue;if(typeof h=="string")if(!br.test(h))h=b.createTextNode(h);else{s=s||bk(b),l=b.createElement("div"),s.appendChild(l),h=h.replace(bo,"<$1></$2>"),i=(bp.exec(h)||["",""])[1].toLowerCase(),j=bz[i]||bz._default,k=j[0],l.innerHTML=j[1]+h+j[2];while(k--)l=l.lastChild;if(!p.support.tbody){m=bq.test(h),n=i==="table"&&!m?l.firstChild&&l.firstChild.childNodes:j[1]==="<table>"&&!m?l.childNodes:[];for(g=n.length-1;g>=0;--g)p.nodeName(n[g],"tbody")&&!n[g].childNodes.length&&n[g].parentNode.removeChild(n[g])}!p.support.leadingWhitespace&&bn.test(h)&&l.insertBefore(b.createTextNode(bn.exec(h)[0]),l.firstChild),h=l.childNodes,l.parentNode.removeChild(l)}h.nodeType?t.push(h):p.merge(t,h)}l&&(h=l=s=null);if(!p.support.appendChecked)for(f=0;(h=t[f])!=null;f++)p.nodeName(h,"input")?bG(h):typeof h.getElementsByTagName!="undefined"&&p.grep(h.getElementsByTagName("input"),bG);if(c){q=function(a){if(!a.type||bx.test(a.type))return d?d.push(a.parentNode?a.parentNode.removeChild(a):a):c.appendChild(a)};for(f=0;(h=t[f])!=null;f++)if(!p.nodeName(h,"script")||!q(h))c.appendChild(h),typeof h.getElementsByTagName!="undefined"&&(r=p.grep(p.merge([],h.getElementsByTagName("script")),q),t.splice.apply(t,[f+1,0].concat(r)),f+=r.length)}return t},cleanData:function(a,b){var c,d,e,f,g=0,h=p.expando,i=p.cache,j=p.support.deleteExpando,k=p.event.special;for(;(e=a[g])!=null;g++)if(b||p.acceptData(e)){d=e[h],c=d&&i[d];if(c){if(c.events)for(f in c.events)k[f]?p.event.remove(e,f):p.removeEvent(e,f,c.handle);i[d]&&(delete i[d],j?delete e[h]:e.removeAttribute?e.removeAttribute(h):e[h]=null,p.deletedIds.push(d))}}}}),function(){var a,b;p.uaMatch=function(a){a=a.toLowerCase();var b=/(chrome)[ \/]([\w.]+)/.exec(a)||/(webkit)[ \/]([\w.]+)/.exec(a)||/(opera)(?:.*version|)[ \/]([\w.]+)/.exec(a)||/(msie) ([\w.]+)/.exec(a)||a.indexOf("compatible")<0&&/(mozilla)(?:.*? rv:([\w.]+)|)/.exec(a)||[];return{browser:b[1]||"",version:b[2]||"0"}},a=p.uaMatch(g.userAgent),b={},a.browser&&(b[a.browser]=!0,b.version=a.version),b.chrome?b.webkit=!0:b.webkit&&(b.safari=!0),p.browser=b,p.sub=function(){function a(b,c){return new a.fn.init(b,c)}p.extend(!0,a,this),a.superclass=this,a.fn=a.prototype=this(),a.fn.constructor=a,a.sub=this.sub,a.fn.init=function c(c,d){return d&&d instanceof p&&!(d instanceof a)&&(d=a(d)),p.fn.init.call(this,c,d,b)},a.fn.init.prototype=a.fn;var b=a(e);return a}}();var bH,bI,bJ,bK=/alpha\([^)]*\)/i,bL=/opacity=([^)]*)/,bM=/^(top|right|bottom|left)$/,bN=/^(none|table(?!-c[ea]).+)/,bO=/^margin/,bP=new RegExp("^("+q+")(.*)$","i"),bQ=new RegExp("^("+q+")(?!px)[a-z%]+$","i"),bR=new RegExp("^([-+])=("+q+")","i"),bS={},bT={position:"absolute",visibility:"hidden",display:"block"},bU={letterSpacing:0,fontWeight:400},bV=["Top","Right","Bottom","Left"],bW=["Webkit","O","Moz","ms"],bX=p.fn.toggle;p.fn.extend({css:function(a,c){return p.access(this,function(a,c,d){return d!==b?p.style(a,c,d):p.css(a,c)},a,c,arguments.length>1)},show:function(){return b$(this,!0)},hide:function(){return b$(this)},toggle:function(a,b){var c=typeof a=="boolean";return p.isFunction(a)&&p.isFunction(b)?bX.apply(this,arguments):this.each(function(){(c?a:bZ(this))?p(this).show():p(this).hide()})}}),p.extend({cssHooks:{opacity:{get:function(a,b){if(b){var c=bH(a,"opacity");return c===""?"1":c}}}},cssNumber:{fillOpacity:!0,fontWeight:!0,lineHeight:!0,opacity:!0,orphans:!0,widows:!0,zIndex:!0,zoom:!0},cssProps:{"float":p.support.cssFloat?"cssFloat":"styleFloat"},style:function(a,c,d,e){if(!a||a.nodeType===3||a.nodeType===8||!a.style)return;var f,g,h,i=p.camelCase(c),j=a.style;c=p.cssProps[i]||(p.cssProps[i]=bY(j,i)),h=p.cssHooks[c]||p.cssHooks[i];if(d===b)return h&&"get"in h&&(f=h.get(a,!1,e))!==b?f:j[c];g=typeof d,g==="string"&&(f=bR.exec(d))&&(d=(f[1]+1)*f[2]+parseFloat(p.css(a,c)),g="number");if(d==null||g==="number"&&isNaN(d))return;g==="number"&&!p.cssNumber[i]&&(d+="px");if(!h||!("set"in h)||(d=h.set(a,d,e))!==b)try{j[c]=d}catch(k){}},css:function(a,c,d,e){var f,g,h,i=p.camelCase(c);return c=p.cssProps[i]||(p.cssProps[i]=bY(a.style,i)),h=p.cssHooks[c]||p.cssHooks[i],h&&"get"in h&&(f=h.get(a,!0,e)),f===b&&(f=bH(a,c)),f==="normal"&&c in bU&&(f=bU[c]),d||e!==b?(g=parseFloat(f),d||p.isNumeric(g)?g||0:f):f},swap:function(a,b,c){var d,e,f={};for(e in b)f[e]=a.style[e],a.style[e]=b[e];d=c.call(a);for(e in b)a.style[e]=f[e];return d}}),a.getComputedStyle?bH=function(b,c){var d,e,f,g,h=a.getComputedStyle(b,null),i=b.style;return h&&(d=h[c],d===""&&!p.contains(b.ownerDocument,b)&&(d=p.style(b,c)),bQ.test(d)&&bO.test(c)&&(e=i.width,f=i.minWidth,g=i.maxWidth,i.minWidth=i.maxWidth=i.width=d,d=h.width,i.width=e,i.minWidth=f,i.maxWidth=g)),d}:e.documentElement.currentStyle&&(bH=function(a,b){var c,d,e=a.currentStyle&&a.currentStyle[b],f=a.style;return e==null&&f&&f[b]&&(e=f[b]),bQ.test(e)&&!bM.test(b)&&(c=f.left,d=a.runtimeStyle&&a.runtimeStyle.left,d&&(a.runtimeStyle.left=a.currentStyle.left),f.left=b==="fontSize"?"1em":e,e=f.pixelLeft+"px",f.left=c,d&&(a.runtimeStyle.left=d)),e===""?"auto":e}),p.each(["height","width"],function(a,b){p.cssHooks[b]={get:function(a,c,d){if(c)return a.offsetWidth===0&&bN.test(bH(a,"display"))?p.swap(a,bT,function(){return cb(a,b,d)}):cb(a,b,d)},set:function(a,c,d){return b_(a,c,d?ca(a,b,d,p.support.boxSizing&&p.css(a,"boxSizing")==="border-box"):0)}}}),p.support.opacity||(p.cssHooks.opacity={get:function(a,b){return bL.test((b&&a.currentStyle?a.currentStyle.filter:a.style.filter)||"")?.01*parseFloat(RegExp.$1)+"":b?"1":""},set:function(a,b){var c=a.style,d=a.currentStyle,e=p.isNumeric(b)?"alpha(opacity="+b*100+")":"",f=d&&d.filter||c.filter||"";c.zoom=1;if(b>=1&&p.trim(f.replace(bK,""))===""&&c.removeAttribute){c.removeAttribute("filter");if(d&&!d.filter)return}c.filter=bK.test(f)?f.replace(bK,e):f+" "+e}}),p(function(){p.support.reliableMarginRight||(p.cssHooks.marginRight={get:function(a,b){return p.swap(a,{display:"inline-block"},function(){if(b)return bH(a,"marginRight")})}}),!p.support.pixelPosition&&p.fn.position&&p.each(["top","left"],function(a,b){p.cssHooks[b]={get:function(a,c){if(c){var d=bH(a,b);return bQ.test(d)?p(a).position()[b]+"px":d}}}})}),p.expr&&p.expr.filters&&(p.expr.filters.hidden=function(a){return a.offsetWidth===0&&a.offsetHeight===0||!p.support.reliableHiddenOffsets&&(a.style&&a.style.display||bH(a,"display"))==="none"},p.expr.filters.visible=function(a){return!p.expr.filters.hidden(a)}),p.each({margin:"",padding:"",border:"Width"},function(a,b){p.cssHooks[a+b]={expand:function(c){var d,e=typeof c=="string"?c.split(" "):[c],f={};for(d=0;d<4;d++)f[a+bV[d]+b]=e[d]||e[d-2]||e[0];return f}},bO.test(a)||(p.cssHooks[a+b].set=b_)});var cd=/%20/g,ce=/\[\]$/,cf=/\r?\n/g,cg=/^(?:color|date|datetime|datetime-local|email|hidden|month|number|password|range|search|tel|text|time|url|week)$/i,ch=/^(?:select|textarea)/i;p.fn.extend({serialize:function(){return p.param(this.serializeArray())},serializeArray:function(){return this.map(function(){return this.elements?p.makeArray(this.elements):this}).filter(function(){return this.name&&!this.disabled&&(this.checked||ch.test(this.nodeName)||cg.test(this.type))}).map(function(a,b){var c=p(this).val();return c==null?null:p.isArray(c)?p.map(c,function(a,c){return{name:b.name,value:a.replace(cf,"\r\n")}}):{name:b.name,value:c.replace(cf,"\r\n")}}).get()}}),p.param=function(a,c){var d,e=[],f=function(a,b){b=p.isFunction(b)?b():b==null?"":b,e[e.length]=encodeURIComponent(a)+"="+encodeURIComponent(b)};c===b&&(c=p.ajaxSettings&&p.ajaxSettings.traditional);if(p.isArray(a)||a.jquery&&!p.isPlainObject(a))p.each(a,function(){f(this.name,this.value)});else for(d in a)ci(d,a[d],c,f);return e.join("&").replace(cd,"+")};var cj,ck,cl=/#.*$/,cm=/^(.*?):[ \t]*([^\r\n]*)\r?$/mg,cn=/^(?:about|app|app\-storage|.+\-extension|file|res|widget):$/,co=/^(?:GET|HEAD)$/,cp=/^\/\//,cq=/\?/,cr=/<script\b[^<]*(?:(?!<\/script>)<[^<]*)*<\/script>/gi,cs=/([?&])_=[^&]*/,ct=/^([\w\+\.\-]+:)(?:\/\/([^\/?#:]*)(?::(\d+)|)|)/,cu=p.fn.load,cv={},cw={},cx=["*/"]+["*"];try{ck=f.href}catch(cy){ck=e.createElement("a"),ck.href="",ck=ck.href}cj=ct.exec(ck.toLowerCase())||[],p.fn.load=function(a,c,d){if(typeof a!="string"&&cu)return cu.apply(this,arguments);if(!this.length)return this;var e,f,g,h=this,i=a.indexOf(" ");return i>=0&&(e=a.slice(i,a.length),a=a.slice(0,i)),p.isFunction(c)?(d=c,c=b):c&&typeof c=="object"&&(f="POST"),p.ajax({url:a,type:f,dataType:"html",data:c,complete:function(a,b){d&&h.each(d,g||[a.responseText,b,a])}}).done(function(a){g=arguments,h.html(e?p("<div>").append(a.replace(cr,"")).find(e):a)}),this},p.each("ajaxStart ajaxStop ajaxComplete ajaxError ajaxSuccess ajaxSend".split(" "),function(a,b){p.fn[b]=function(a){return this.on(b,a)}}),p.each(["get","post"],function(a,c){p[c]=function(a,d,e,f){return p.isFunction(d)&&(f=f||e,e=d,d=b),p.ajax({type:c,url:a,data:d,success:e,dataType:f})}}),p.extend({getScript:function(a,c){return p.get(a,b,c,"script")},getJSON:function(a,b,c){return p.get(a,b,c,"json")},ajaxSetup:function(a,b){return b?cB(a,p.ajaxSettings):(b=a,a=p.ajaxSettings),cB(a,b),a},ajaxSettings:{url:ck,isLocal:cn.test(cj[1]),global:!0,type:"GET",contentType:"application/x-www-form-urlencoded; charset=UTF-8",processData:!0,async:!0,accepts:{xml:"application/xml, text/xml",html:"text/html",text:"text/plain",json:"application/json, text/javascript","*":cx},contents:{xml:/xml/,html:/html/,json:/json/},responseFields:{xml:"responseXML",text:"responseText"},converters:{"* text":a.String,"text html":!0,"text json":p.parseJSON,"text xml":p.parseXML},flatOptions:{context:!0,url:!0}},ajaxPrefilter:cz(cv),ajaxTransport:cz(cw),ajax:function(a,c){function y(a,c,f,i){var k,s,t,u,w,y=c;if(v===2)return;v=2,h&&clearTimeout(h),g=b,e=i||"",x.readyState=a>0?4:0,f&&(u=cC(l,x,f));if(a>=200&&a<300||a===304)l.ifModified&&(w=x.getResponseHeader("Last-Modified"),w&&(p.lastModified[d]=w),w=x.getResponseHeader("Etag"),w&&(p.etag[d]=w)),a===304?(y="notmodified",k=!0):(k=cD(l,u),y=k.state,s=k.data,t=k.error,k=!t);else{t=y;if(!y||a)y="error",a<0&&(a=0)}x.status=a,x.statusText=(c||y)+"",k?o.resolveWith(m,[s,y,x]):o.rejectWith(m,[x,y,t]),x.statusCode(r),r=b,j&&n.trigger("ajax"+(k?"Success":"Error"),[x,l,k?s:t]),q.fireWith(m,[x,y]),j&&(n.trigger("ajaxComplete",[x,l]),--p.active||p.event.trigger("ajaxStop"))}typeof a=="object"&&(c=a,a=b),c=c||{};var d,e,f,g,h,i,j,k,l=p.ajaxSetup({},c),m=l.context||l,n=m!==l&&(m.nodeType||m instanceof p)?p(m):p.event,o=p.Deferred(),q=p.Callbacks("once memory"),r=l.statusCode||{},t={},u={},v=0,w="canceled",x={readyState:0,setRequestHeader:function(a,b){if(!v){var c=a.toLowerCase();a=u[c]=u[c]||a,t[a]=b}return this},getAllResponseHeaders:function(){return v===2?e:null},getResponseHeader:function(a){var c;if(v===2){if(!f){f={};while(c=cm.exec(e))f[c[1].toLowerCase()]=c[2]}c=f[a.toLowerCase()]}return c===b?null:c},overrideMimeType:function(a){return v||(l.mimeType=a),this},abort:function(a){return a=a||w,g&&g.abort(a),y(0,a),this}};o.promise(x),x.success=x.done,x.error=x.fail,x.complete=q.add,x.statusCode=function(a){if(a){var b;if(v<2)for(b in a)r[b]=[r[b],a[b]];else b=a[x.status],x.always(b)}return this},l.url=((a||l.url)+"").replace(cl,"").replace(cp,cj[1]+"//"),l.dataTypes=p.trim(l.dataType||"*").toLowerCase().split(s),l.crossDomain==null&&(i=ct.exec(l.url.toLowerCase())||!1,l.crossDomain=i&&i.join(":")+(i[3]?"":i[1]==="http:"?80:443)!==cj.join(":")+(cj[3]?"":cj[1]==="http:"?80:443)),l.data&&l.processData&&typeof l.data!="string"&&(l.data=p.param(l.data,l.traditional)),cA(cv,l,c,x);if(v===2)return x;j=l.global,l.type=l.type.toUpperCase(),l.hasContent=!co.test(l.type),j&&p.active++===0&&p.event.trigger("ajaxStart");if(!l.hasContent){l.data&&(l.url+=(cq.test(l.url)?"&":"?")+l.data,delete l.data),d=l.url;if(l.cache===!1){var z=p.now(),A=l.url.replace(cs,"$1_="+z);l.url=A+(A===l.url?(cq.test(l.url)?"&":"?")+"_="+z:"")}}(l.data&&l.hasContent&&l.contentType!==!1||c.contentType)&&x.setRequestHeader("Content-Type",l.contentType),l.ifModified&&(d=d||l.url,p.lastModified[d]&&x.setRequestHeader("If-Modified-Since",p.lastModified[d]),p.etag[d]&&x.setRequestHeader("If-None-Match",p.etag[d])),x.setRequestHeader("Accept",l.dataTypes[0]&&l.accepts[l.dataTypes[0]]?l.accepts[l.dataTypes[0]]+(l.dataTypes[0]!=="*"?", "+cx+"; q=0.01":""):l.accepts["*"]);for(k in l.headers)x.setRequestHeader(k,l.headers[k]);if(!l.beforeSend||l.beforeSend.call(m,x,l)!==!1&&v!==2){w="abort";for(k in{success:1,error:1,complete:1})x[k](l[k]);g=cA(cw,l,c,x);if(!g)y(-1,"No Transport");else{x.readyState=1,j&&n.trigger("ajaxSend",[x,l]),l.async&&l.timeout>0&&(h=setTimeout(function(){x.abort("timeout")},l.timeout));try{v=1,g.send(t,y)}catch(B){if(v<2)y(-1,B);else throw B}}return x}return x.abort()},active:0,lastModified:{},etag:{}});var cE=[],cF=/\?/,cG=/(=)\?(?=&|$)|\?\?/,cH=p.now();p.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var a=cE.pop()||p.expando+"_"+cH++;return this[a]=!0,a}}),p.ajaxPrefilter("json jsonp",function(c,d,e){var f,g,h,i=c.data,j=c.url,k=c.jsonp!==!1,l=k&&cG.test(j),m=k&&!l&&typeof i=="string"&&!(c.contentType||"").indexOf("application/x-www-form-urlencoded")&&cG.test(i);if(c.dataTypes[0]==="jsonp"||l||m)return f=c.jsonpCallback=p.isFunction(c.jsonpCallback)?c.jsonpCallback():c.jsonpCallback,g=a[f],l?c.url=j.replace(cG,"$1"+f):m?c.data=i.replace(cG,"$1"+f):k&&(c.url+=(cF.test(j)?"&":"?")+c.jsonp+"="+f),c.converters["script json"]=function(){return h||p.error(f+" was not called"),h[0]},c.dataTypes[0]="json",a[f]=function(){h=arguments},e.always(function(){a[f]=g,c[f]&&(c.jsonpCallback=d.jsonpCallback,cE.push(f)),h&&p.isFunction(g)&&g(h[0]),h=g=b}),"script"}),p.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/javascript|ecmascript/},converters:{"text script":function(a){return p.globalEval(a),a}}}),p.ajaxPrefilter("script",function(a){a.cache===b&&(a.cache=!1),a.crossDomain&&(a.type="GET",a.global=!1)}),p.ajaxTransport("script",function(a){if(a.crossDomain){var c,d=e.head||e.getElementsByTagName("head")[0]||e.documentElement;return{send:function(f,g){c=e.createElement("script"),c.async="async",a.scriptCharset&&(c.charset=a.scriptCharset),c.src=a.url,c.onload=c.onreadystatechange=function(a,e){if(e||!c.readyState||/loaded|complete/.test(c.readyState))c.onload=c.onreadystatechange=null,d&&c.parentNode&&d.removeChild(c),c=b,e||g(200,"success")},d.insertBefore(c,d.firstChild)},abort:function(){c&&c.onload(0,1)}}}});var cI,cJ=a.ActiveXObject?function(){for(var a in cI)cI[a](0,1)}:!1,cK=0;p.ajaxSettings.xhr=a.ActiveXObject?function(){return!this.isLocal&&cL()||cM()}:cL,function(a){p.extend(p.support,{ajax:!!a,cors:!!a&&"withCredentials"in a})}(p.ajaxSettings.xhr()),p.support.ajax&&p.ajaxTransport(function(c){if(!c.crossDomain||p.support.cors){var d;return{send:function(e,f){var g,h,i=c.xhr();c.username?i.open(c.type,c.url,c.async,c.username,c.password):i.open(c.type,c.url,c.async);if(c.xhrFields)for(h in c.xhrFields)i[h]=c.xhrFields[h];c.mimeType&&i.overrideMimeType&&i.overrideMimeType(c.mimeType),!c.crossDomain&&!e["X-Requested-With"]&&(e["X-Requested-With"]="XMLHttpRequest");try{for(h in e)i.setRequestHeader(h,e[h])}catch(j){}i.send(c.hasContent&&c.data||null),d=function(a,e){var h,j,k,l,m;try{if(d&&(e||i.readyState===4)){d=b,g&&(i.onreadystatechange=p.noop,cJ&&delete cI[g]);if(e)i.readyState!==4&&i.abort();else{h=i.status,k=i.getAllResponseHeaders(),l={},m=i.responseXML,m&&m.documentElement&&(l.xml=m);try{l.text=i.responseText}catch(a){}try{j=i.statusText}catch(n){j=""}!h&&c.isLocal&&!c.crossDomain?h=l.text?200:404:h===1223&&(h=204)}}}catch(o){e||f(-1,o)}l&&f(h,j,l,k)},c.async?i.readyState===4?setTimeout(d,0):(g=++cK,cJ&&(cI||(cI={},p(a).unload(cJ)),cI[g]=d),i.onreadystatechange=d):d()},abort:function(){d&&d(0,1)}}}});var cN,cO,cP=/^(?:toggle|show|hide)$/,cQ=new RegExp("^(?:([-+])=|)("+q+")([a-z%]*)$","i"),cR=/queueHooks$/,cS=[cY],cT={"*":[function(a,b){var c,d,e=this.createTween(a,b),f=cQ.exec(b),g=e.cur(),h=+g||0,i=1,j=20;if(f){c=+f[2],d=f[3]||(p.cssNumber[a]?"":"px");if(d!=="px"&&h){h=p.css(e.elem,a,!0)||c||1;do i=i||".5",h=h/i,p.style(e.elem,a,h+d);while(i!==(i=e.cur()/g)&&i!==1&&--j)}e.unit=d,e.start=h,e.end=f[1]?h+(f[1]+1)*c:c}return e}]};p.Animation=p.extend(cW,{tweener:function(a,b){p.isFunction(a)?(b=a,a=["*"]):a=a.split(" ");var c,d=0,e=a.length;for(;d<e;d++)c=a[d],cT[c]=cT[c]||[],cT[c].unshift(b)},prefilter:function(a,b){b?cS.unshift(a):cS.push(a)}}),p.Tween=cZ,cZ.prototype={constructor:cZ,init:function(a,b,c,d,e,f){this.elem=a,this.prop=c,this.easing=e||"swing",this.options=b,this.start=this.now=this.cur(),this.end=d,this.unit=f||(p.cssNumber[c]?"":"px")},cur:function(){var a=cZ.propHooks[this.prop];return a&&a.get?a.get(this):cZ.propHooks._default.get(this)},run:function(a){var b,c=cZ.propHooks[this.prop];return this.options.duration?this.pos=b=p.easing[this.easing](a,this.options.duration*a,0,1,this.options.duration):this.pos=b=a,this.now=(this.end-this.start)*b+this.start,this.options.step&&this.options.step.call(this.elem,this.now,this),c&&c.set?c.set(this):cZ.propHooks._default.set(this),this}},cZ.prototype.init.prototype=cZ.prototype,cZ.propHooks={_default:{get:function(a){var b;return a.elem[a.prop]==null||!!a.elem.style&&a.elem.style[a.prop]!=null?(b=p.css(a.elem,a.prop,!1,""),!b||b==="auto"?0:b):a.elem[a.prop]},set:function(a){p.fx.step[a.prop]?p.fx.step[a.prop](a):a.elem.style&&(a.elem.style[p.cssProps[a.prop]]!=null||p.cssHooks[a.prop])?p.style(a.elem,a.prop,a.now+a.unit):a.elem[a.prop]=a.now}}},cZ.propHooks.scrollTop=cZ.propHooks.scrollLeft={set:function(a){a.elem.nodeType&&a.elem.parentNode&&(a.elem[a.prop]=a.now)}},p.each(["toggle","show","hide"],function(a,b){var c=p.fn[b];p.fn[b]=function(d,e,f){return d==null||typeof d=="boolean"||!a&&p.isFunction(d)&&p.isFunction(e)?c.apply(this,arguments):this.animate(c$(b,!0),d,e,f)}}),p.fn.extend({fadeTo:function(a,b,c,d){return this.filter(bZ).css("opacity",0).show().end().animate({opacity:b},a,c,d)},animate:function(a,b,c,d){var e=p.isEmptyObject(a),f=p.speed(b,c,d),g=function(){var b=cW(this,p.extend({},a),f);e&&b.stop(!0)};return e||f.queue===!1?this.each(g):this.queue(f.queue,g)},stop:function(a,c,d){var e=function(a){var b=a.stop;delete a.stop,b(d)};return typeof a!="string"&&(d=c,c=a,a=b),c&&a!==!1&&this.queue(a||"fx",[]),this.each(function(){var b=!0,c=a!=null&&a+"queueHooks",f=p.timers,g=p._data(this);if(c)g[c]&&g[c].stop&&e(g[c]);else for(c in g)g[c]&&g[c].stop&&cR.test(c)&&e(g[c]);for(c=f.length;c--;)f[c].elem===this&&(a==null||f[c].queue===a)&&(f[c].anim.stop(d),b=!1,f.splice(c,1));(b||!d)&&p.dequeue(this,a)})}}),p.each({slideDown:c$("show"),slideUp:c$("hide"),slideToggle:c$("toggle"),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"},fadeToggle:{opacity:"toggle"}},function(a,b){p.fn[a]=function(a,c,d){return this.animate(b,a,c,d)}}),p.speed=function(a,b,c){var d=a&&typeof a=="object"?p.extend({},a):{complete:c||!c&&b||p.isFunction(a)&&a,duration:a,easing:c&&b||b&&!p.isFunction(b)&&b};d.duration=p.fx.off?0:typeof d.duration=="number"?d.duration:d.duration in p.fx.speeds?p.fx.speeds[d.duration]:p.fx.speeds._default;if(d.queue==null||d.queue===!0)d.queue="fx";return d.old=d.complete,d.complete=function(){p.isFunction(d.old)&&d.old.call(this),d.queue&&p.dequeue(this,d.queue)},d},p.easing={linear:function(a){return a},swing:function(a){return.5-Math.cos(a*Math.PI)/2}},p.timers=[],p.fx=cZ.prototype.init,p.fx.tick=function(){var a,b=p.timers,c=0;for(;c<b.length;c++)a=b[c],!a()&&b[c]===a&&b.splice(c--,1);b.length||p.fx.stop()},p.fx.timer=function(a){a()&&p.timers.push(a)&&!cO&&(cO=setInterval(p.fx.tick,p.fx.interval))},p.fx.interval=13,p.fx.stop=function(){clearInterval(cO),cO=null},p.fx.speeds={slow:600,fast:200,_default:400},p.fx.step={},p.expr&&p.expr.filters&&(p.expr.filters.animated=function(a){return p.grep(p.timers,function(b){return a===b.elem}).length});var c_=/^(?:body|html)$/i;p.fn.offset=function(a){if(arguments.length)return a===b?this:this.each(function(b){p.offset.setOffset(this,a,b)});var c,d,e,f,g,h,i,j={top:0,left:0},k=this[0],l=k&&k.ownerDocument;if(!l)return;return(d=l.body)===k?p.offset.bodyOffset(k):(c=l.documentElement,p.contains(c,k)?(typeof k.getBoundingClientRect!="undefined"&&(j=k.getBoundingClientRect()),e=da(l),f=c.clientTop||d.clientTop||0,g=c.clientLeft||d.clientLeft||0,h=e.pageYOffset||c.scrollTop,i=e.pageXOffset||c.scrollLeft,{top:j.top+h-f,left:j.left+i-g}):j)},p.offset={bodyOffset:function(a){var b=a.offsetTop,c=a.offsetLeft;return p.support.doesNotIncludeMarginInBodyOffset&&(b+=parseFloat(p.css(a,"marginTop"))||0,c+=parseFloat(p.css(a,"marginLeft"))||0),{top:b,left:c}},setOffset:function(a,b,c){var d=p.css(a,"position");d==="static"&&(a.style.position="relative");var e=p(a),f=e.offset(),g=p.css(a,"top"),h=p.css(a,"left"),i=(d==="absolute"||d==="fixed")&&p.inArray("auto",[g,h])>-1,j={},k={},l,m;i?(k=e.position(),l=k.top,m=k.left):(l=parseFloat(g)||0,m=parseFloat(h)||0),p.isFunction(b)&&(b=b.call(a,c,f)),b.top!=null&&(j.top=b.top-f.top+l),b.left!=null&&(j.left=b.left-f.left+m),"using"in b?b.using.call(a,j):e.css(j)}},p.fn.extend({position:function(){if(!this[0])return;var a=this[0],b=this.offsetParent(),c=this.offset(),d=c_.test(b[0].nodeName)?{top:0,left:0}:b.offset();return c.top-=parseFloat(p.css(a,"marginTop"))||0,c.left-=parseFloat(p.css(a,"marginLeft"))||0,d.top+=parseFloat(p.css(b[0],"borderTopWidth"))||0,d.left+=parseFloat(p.css(b[0],"borderLeftWidth"))||0,{top:c.top-d.top,left:c.left-d.left}},offsetParent:function(){return this.map(function(){var a=this.offsetParent||e.body;while(a&&!c_.test(a.nodeName)&&p.css(a,"position")==="static")a=a.offsetParent;return a||e.body})}}),p.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(a,c){var d=/Y/.test(c);p.fn[a]=function(e){return p.access(this,function(a,e,f){var g=da(a);if(f===b)return g?c in g?g[c]:g.document.documentElement[e]:a[e];g?g.scrollTo(d?p(g).scrollLeft():f,d?f:p(g).scrollTop()):a[e]=f},a,e,arguments.length,null)}}),p.each({Height:"height",Width:"width"},function(a,c){p.each({padding:"inner"+a,content:c,"":"outer"+a},function(d,e){p.fn[e]=function(e,f){var g=arguments.length&&(d||typeof e!="boolean"),h=d||(e===!0||f===!0?"margin":"border");return p.access(this,function(c,d,e){var f;return p.isWindow(c)?c.document.documentElement["client"+a]:c.nodeType===9?(f=c.documentElement,Math.max(c.body["scroll"+a],f["scroll"+a],c.body["offset"+a],f["offset"+a],f["client"+a])):e===b?p.css(c,d,e,h):p.style(c,d,e,h)},c,g?e:b,g,null)}})}),a.jQuery=a.$=p,typeof define=="function"&&define.amd&&define.amd.jQuery&&define("jquery",[],function(){return p})})(window); |
| Instances | 1 |
| Solution |
Manually confirm that the Base64 data does not leak sensitive information, and that the data cannot be aggregated/used to exploit other vulnerabilities.
|
| Reference | http://projects.webappsec.org/w/page/13246936/Information%20Leakage |
| Tags |
OWASP_2021_A04
OWASP_2017_A03 |
| CWE Id | 200 |
| WASC Id | 13 |
| Plugin Id | 10094 |
|
Informational |
Information Disclosure - Suspicious Comments |
|---|---|
| Description |
The response appears to contain suspicious comments which may help an attacker. Note: Matches made within script blocks or files are against the entire content not only comments.
|
| URL | http://zero.webappsecurity.com/resources/js/bootstrap.min.js |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | query |
| Request Header - size: 284 bytes. |
GET http://zero.webappsecurity.com/resources/js/bootstrap.min.js HTTP/1.1
Host: zero.webappsecurity.com User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0 Pragma: no-cache Cache-Control: no-cache Referer: http://zero.webappsecurity.com |
| Request Body - size: 0 bytes. |
|
| Response Header - size: 361 bytes. |
HTTP/1.1 200 OK
Date: Mon, 14 Mar 2022 07:13:42 GMT Server: Apache-Coyote/1.1 Access-Control-Allow-Origin: * Accept-Ranges: bytes ETag: W/"26898-1358437290000" Last-Modified: Thu, 17 Jan 2013 15:41:30 GMT Cache-Control: max-age=2678400 Expires: Thu, 14 Apr 2022 07:13:43 GMT Content-Type: application/javascript;charset=UTF-8 Content-Length: 26898 |
| Response Body - size: 26,898 bytes. |
/**
* Bootstrap.js by @fat & @mdo * plugins: bootstrap-transition.js, bootstrap-modal.js, bootstrap-dropdown.js, bootstrap-scrollspy.js, bootstrap-tab.js, bootstrap-tooltip.js, bootstrap-popover.js, bootstrap-affix.js, bootstrap-alert.js, bootstrap-button.js, bootstrap-collapse.js, bootstrap-carousel.js, bootstrap-typeahead.js * Copyright 2012 Twitter, Inc. * http://www.apache.org/licenses/LICENSE-2.0.txt */ !function(a){a(function(){a.support.transition=function(){var a=function(){var a=document.createElement("bootstrap"),b={WebkitTransition:"webkitTransitionEnd",MozTransition:"transitionend",OTransition:"oTransitionEnd otransitionend",transition:"transitionend"},c;for(c in b)if(a.style[c]!==undefined)return b[c]}();return a&&{end:a}}()})}(window.jQuery),!function(a){var b=function(b,c){this.options=c,this.$element=a(b).delegate('[data-dismiss="modal"]',"click.dismiss.modal",a.proxy(this.hide,this)),this.options.remote&&this.$element.find(".modal-body").load(this.options.remote)};b.prototype={constructor:b,toggle:function(){return this[this.isShown?"hide":"show"]()},show:function(){var b=this,c=a.Event("show");this.$element.trigger(c);if(this.isShown||c.isDefaultPrevented())return;this.isShown=!0,this.escape(),this.backdrop(function(){var c=a.support.transition&&b.$element.hasClass("fade");b.$element.parent().length||b.$element.appendTo(document.body),b.$element.show(),c&&b.$element[0].offsetWidth,b.$element.addClass("in").attr("aria-hidden",!1),b.enforceFocus(),c?b.$element.one(a.support.transition.end,function(){b.$element.focus().trigger("shown")}):b.$element.focus().trigger("shown")})},hide:function(b){b&&b.preventDefault();var c=this;b=a.Event("hide"),this.$element.trigger(b);if(!this.isShown||b.isDefaultPrevented())return;this.isShown=!1,this.escape(),a(document).off("focusin.modal"),this.$element.removeClass("in").attr("aria-hidden",!0),a.support.transition&&this.$element.hasClass("fade")?this.hideWithTransition():this.hideModal()},enforceFocus:function(){var b=this;a(document).on("focusin.modal",function(a){b.$element[0]!==a.target&&!b.$element.has(a.target).length&&b.$element.focus()})},escape:function(){var a=this;this.isShown&&this.options.keyboard?this.$element.on("keyup.dismiss.modal",function(b){b.which==27&&a.hide()}):this.isShown||this.$element.off("keyup.dismiss.modal")},hideWithTransition:function(){var b=this,c=setTimeout(function(){b.$element.off(a.support.transition.end),b.hideModal()},500);this.$element.one(a.support.transition.end,function(){clearTimeout(c),b.hideModal()})},hideModal:function(a){this.$element.hide().trigger("hidden"),this.backdrop()},removeBackdrop:function(){this.$backdrop.remove(),this.$backdrop=null},backdrop:function(b){var c=this,d=this.$element.hasClass("fade")?"fade":"";if(this.isShown&&this.options.backdrop){var e=a.support.transition&&d;this.$backdrop=a('<div class="modal-backdrop '+d+'" />').appendTo(document.body),this.$backdrop.click(this.options.backdrop=="static"?a.proxy(this.$element[0].focus,this.$element[0]):a.proxy(this.hide,this)),e&&this.$backdrop[0].offsetWidth,this.$backdrop.addClass("in"),e?this.$backdrop.one(a.support.transition.end,b):b()}else!this.isShown&&this.$backdrop?(this.$backdrop.removeClass("in"),a.support.transition&&this.$element.hasClass("fade")?this.$backdrop.one(a.support.transition.end,a.proxy(this.removeBackdrop,this)):this.removeBackdrop()):b&&b()}};var c=a.fn.modal;a.fn.modal=function(c){return this.each(function(){var d=a(this),e=d.data("modal"),f=a.extend({},a.fn.modal.defaults,d.data(),typeof c=="object"&&c);e||d.data("modal",e=new b(this,f)),typeof c=="string"?e[c]():f.show&&e.show()})},a.fn.modal.defaults={backdrop:!0,keyboard:!0,show:!0},a.fn.modal.Constructor=b,a.fn.modal.noConflict=function(){return a.fn.modal=c,this},a(document).on("click.modal.data-api",'[data-toggle="modal"]',function(b){var c=a(this),d=c.attr("href"),e=a(c.attr("data-target")||d&&d.replace(/.*(?=#[^\s]+$)/,"")),f=e.data("modal")?"toggle":a.extend({remote:!/#/.test(d)&&d},e.data(),c.data());b.preventDefault(),e.modal(f).one("hide",function(){c.focus()})})}(window.jQuery),!function(a){function d(){a(b).each(function(){e(a(this)).removeClass("open")})}function e(b){var c=b.attr("data-target"),d;return c||(c=b.attr("href"),c=c&&/#/.test(c)&&c.replace(/.*(?=#[^\s]*$)/,"")),d=a(c),d.length||(d=b.parent()),d}var b="[data-toggle=dropdown]",c=function(b){var c=a(b).on("click.dropdown.data-api",this.toggle);a("html").on("click.dropdown.data-api",function(){c.parent().removeClass("open")})};c.prototype={constructor:c,toggle:function(b){var c=a(this),f,g;if(c.is(".disabled, :disabled"))return;return f=e(c),g=f.hasClass("open"),d(),g||f.toggleClass("open"),c.focus(),!1},keydown:function(b){var c,d,f,g,h,i;if(!/(38|40|27)/.test(b.keyCode))return;c=a(this),b.preventDefault(),b.stopPropagation();if(c.is(".disabled, :disabled"))return;g=e(c),h=g.hasClass("open");if(!h||h&&b.keyCode==27)return c.click();d=a("[role=menu] li:not(.divider):visible a",g);if(!d.length)return;i=d.index(d.filter(":focus")),b.keyCode==38&&i>0&&i--,b.keyCode==40&&i<d.length-1&&i++,~i||(i=0),d.eq(i).focus()}};var f=a.fn.dropdown;a.fn.dropdown=function(b){return this.each(function(){var d=a(this),e=d.data("dropdown");e||d.data("dropdown",e=new c(this)),typeof b=="string"&&e[b].call(d)})},a.fn.dropdown.Constructor=c,a.fn.dropdown.noConflict=function(){return a.fn.dropdown=f,this},a(document).on("click.dropdown.data-api touchstart.dropdown.data-api",d).on("click.dropdown touchstart.dropdown.data-api",".dropdown form",function(a){a.stopPropagation()}).on("touchstart.dropdown.data-api",".dropdown-menu",function(a){a.stopPropagation()}).on("click.dropdown.data-api touchstart.dropdown.data-api",b,c.prototype.toggle).on("keydown.dropdown.data-api touchstart.dropdown.data-api",b+", [role=menu]",c.prototype.keydown)}(window.jQuery),!function(a){function b(b,c){var d=a.proxy(this.process,this),e=a(b).is("body")?a(window):a(b),f;this.options=a.extend({},a.fn.scrollspy.defaults,c),this.$scrollElement=e.on("scroll.scroll-spy.data-api",d),this.selector=(this.options.target||(f=a(b).attr("href"))&&f.replace(/.*(?=#[^\s]+$)/,"")||"")+" .nav li > a",this.$body=a("body"),this.refresh(),this.process()}b.prototype={constructor:b,refresh:function(){var b=this,c;this.offsets=a([]),this.targets=a([]),c=this.$body.find(this.selector).map(function(){var c=a(this),d=c.data("target")||c.attr("href"),e=/^#\w/.test(d)&&a(d);return e&&e.length&&[[e.position().top+b.$scrollElement.scrollTop(),d]]||null}).sort(function(a,b){return a[0]-b[0]}).each(function(){b.offsets.push(this[0]),b.targets.push(this[1])})},process:function(){var a=this.$scrollElement.scrollTop()+this.options.offset,b=this.$scrollElement[0].scrollHeight||this.$body[0].scrollHeight,c=b-this.$scrollElement.height(),d=this.offsets,e=this.targets,f=this.activeTarget,g;if(a>=c)return f!=(g=e.last()[0])&&this.activate(g);for(g=d.length;g--;)f!=e[g]&&a>=d[g]&&(!d[g+1]||a<=d[g+1])&&this.activate(e[g])},activate:function(b){var c,d;this.activeTarget=b,a(this.selector).parent(".active").removeClass("active"),d=this.selector+'[data-target="'+b+'"],'+this.selector+'[href="'+b+'"]',c=a(d).parent("li").addClass("active"),c.parent(".dropdown-menu").length&&(c=c.closest("li.dropdown").addClass("active")),c.trigger("activate")}};var c=a.fn.scrollspy;a.fn.scrollspy=function(c){return this.each(function(){var d=a(this),e=d.data("scrollspy"),f=typeof c=="object"&&c;e||d.data("scrollspy",e=new b(this,f)),typeof c=="string"&&e[c]()})},a.fn.scrollspy.Constructor=b,a.fn.scrollspy.defaults={offset:10},a.fn.scrollspy.noConflict=function(){return a.fn.scrollspy=c,this},a(window).on("load",function(){a('[data-spy="scroll"]').each(function(){var b=a(this);b.scrollspy(b.data())})})}(window.jQuery),!function(a){var b=function(b){this.element=a(b)};b.prototype={constructor:b,show:function(){var b=this.element,c=b.closest("ul:not(.dropdown-menu)"),d=b.attr("data-target"),e,f,g;d||(d=b.attr("href"),d=d&&d.replace(/.*(?=#[^\s]*$)/,""));if(b.parent("li").hasClass("active"))return;e=c.find(".active:last a")[0],g=a.Event("show",{relatedTarget:e}),b.trigger(g);if(g.isDefaultPrevented())return;f=a(d),this.activate(b.parent("li"),c),this.activate(f,f.parent(),function(){b.trigger({type:"shown",relatedTarget:e})})},activate:function(b,c,d){function g(){e.removeClass("active").find("> .dropdown-menu > .active").removeClass("active"),b.addClass("active"),f?(b[0].offsetWidth,b.addClass("in")):b.removeClass("fade"),b.parent(".dropdown-menu")&&b.closest("li.dropdown").addClass("active"),d&&d()}var e=c.find("> .active"),f=d&&a.support.transition&&e.hasClass("fade");f?e.one(a.support.transition.end,g):g(),e.removeClass("in")}};var c=a.fn.tab;a.fn.tab=function(c){return this.each(function(){var d=a(this),e=d.data("tab");e||d.data("tab",e=new b(this)),typeof c=="string"&&e[c]()})},a.fn.tab.Constructor=b,a.fn.tab.noConflict=function(){return a.fn.tab=c,this},a(document).on("click.tab.data-api",'[data-toggle="tab"], [data-toggle="pill"]',function(b){b.preventDefault(),a(this).tab("show")})}(window.jQuery),!function(a){var b=function(a,b){this.init("tooltip",a,b)};b.prototype={constructor:b,init:function(b,c,d){var e,f;this.type=b,this.$element=a(c),this.options=this.getOptions(d),this.enabled=!0,this.options.trigger=="click"?this.$element.on("click."+this.type,this.options.selector,a.proxy(this.toggle,this)):this.options.trigger!="manual"&&(e=this.options.trigger=="hover"?"mouseenter":"focus",f=this.options.trigger=="hover"?"mouseleave":"blur",this.$element.on(e+"."+this.type,this.options.selector,a.proxy(this.enter,this)),this.$element.on(f+"."+this.type,this.options.selector,a.proxy(this.leave,this))),this.options.selector?this._options=a.extend({},this.options,{trigger:"manual",selector:""}):this.fixTitle()},getOptions:function(b){return b=a.extend({},a.fn[this.type].defaults,b,this.$element.data()),b.delay&&typeof b.delay=="number"&&(b.delay={show:b.delay,hide:b.delay}),b},enter:function(b){var c=a(b.currentTarget)[this.type](this._options).data(this.type);if(!c.options.delay||!c.options.delay.show)return c.show();clearTimeout(this.timeout),c.hoverState="in",this.timeout=setTimeout(function(){c.hoverState=="in"&&c.show()},c.options.delay.show)},leave:function(b){var c=a(b.currentTarget)[this.type](this._options).data(this.type);this.timeout&&clearTimeout(this.timeout);if(!c.options.delay||!c.options.delay.hide)return c.hide();c.hoverState="out",this.timeout=setTimeout(function(){c.hoverState=="out"&&c.hide()},c.options.delay.hide)},show:function(){var a,b,c,d,e,f,g;if(this.hasContent()&&this.enabled){a=this.tip(),this.setContent(),this.options.animation&&a.addClass("fade"),f=typeof this.options.placement=="function"?this.options.placement.call(this,a[0],this.$element[0]):this.options.placement,b=/in/.test(f),a.detach().css({top:0,left:0,display:"block"}).insertAfter(this.$element),c=this.getPosition(b),d=a[0].offsetWidth,e=a[0].offsetHeight;switch(b?f.split(" ")[1]:f){case"bottom":g={top:c.top+c.height,left:c.left+c.width/2-d/2};break;case"top":g={top:c.top-e,left:c.left+c.width/2-d/2};break;case"left":g={top:c.top+c.height/2-e/2,left:c.left-d};break;case"right":g={top:c.top+c.height/2-e/2,left:c.left+c.width}}a.offset(g).addClass(f).addClass("in")}},setContent:function(){var a=this.tip(),b=this.getTitle();a.find(".tooltip-inner")[this.options.html?"html":"text"](b),a.removeClass("fade in top bottom left right")},hide:function(){function d(){var b=setTimeout(function(){c.off(a.support.transition.end).detach()},500);c.one(a.support.transition.end,function(){clearTimeout(b),c.detach()})}var b=this,c=this.tip();return c.removeClass("in"),a.support.transition&&this.$tip.hasClass("fade")?d():c.detach(),this},fixTitle:function(){var a=this.$element;(a.attr("title")||typeof a.attr("data-original-title")!="string")&&a.attr("data-original-title",a.attr("title")||"").removeAttr("title")},hasContent:function(){return this.getTitle()},getPosition:function(b){return a.extend({},b?{top:0,left:0}:this.$element.offset(),{width:this.$element[0].offsetWidth,height:this.$element[0].offsetHeight})},getTitle:function(){var a,b=this.$element,c=this.options;return a=b.attr("data-original-title")||(typeof c.title=="function"?c.title.call(b[0]):c.title),a},tip:function(){return this.$tip=this.$tip||a(this.options.template)},validate:function(){this.$element[0].parentNode||(this.hide(),this.$element=null,this.options=null)},enable:function(){this.enabled=!0},disable:function(){this.enabled=!1},toggleEnabled:function(){this.enabled=!this.enabled},toggle:function(b){var c=a(b.currentTarget)[this.type](this._options).data(this.type);c[c.tip().hasClass("in")?"hide":"show"]()},destroy:function(){this.hide().$element.off("."+this.type).removeData(this.type)}};var c=a.fn.tooltip;a.fn.tooltip=function(c){return this.each(function(){var d=a(this),e=d.data("tooltip"),f=typeof c=="object"&&c;e||d.data("tooltip",e=new b(this,f)),typeof c=="string"&&e[c]()})},a.fn.tooltip.Constructor=b,a.fn.tooltip.defaults={animation:!0,placement:"top",selector:!1,template:'<div class="tooltip"><div class="tooltip-arrow"></div><div class="tooltip-inner"></div></div>',trigger:"hover",title:"",delay:0,html:!1},a.fn.tooltip.noConflict=function(){return a.fn.tooltip=c,this}}(window.jQuery),!function(a){var b=function(a,b){this.init("popover",a,b)};b.prototype=a.extend({},a.fn.tooltip.Constructor.prototype,{constructor:b,setContent:function(){var a=this.tip(),b=this.getTitle(),c=this.getContent();a.find(".popover-title")[this.options.html?"html":"text"](b),a.find(".popover-content")[this.options.html?"html":"text"](c),a.removeClass("fade top bottom left right in")},hasContent:function(){return this.getTitle()||this.getContent()},getContent:function(){var a,b=this.$element,c=this.options;return a=b.attr("data-content")||(typeof c.content=="function"?c.content.call(b[0]):c.content),a},tip:function(){return this.$tip||(this.$tip=a(this.options.template)),this.$tip},destroy:function(){this.hide().$element.off("."+this.type).removeData(this.type)}});var c=a.fn.popover;a.fn.popover=function(c){return this.each(function(){var d=a(this),e=d.data("popover"),f=typeof c=="object"&&c;e||d.data("popover",e=new b(this,f)),typeof c=="string"&&e[c]()})},a.fn.popover.Constructor=b,a.fn.popover.defaults=a.extend({},a.fn.tooltip.defaults,{placement:"right",trigger:"click",content:"",template:'<div class="popover"><div class="arrow"></div><div class="popover-inner"><h3 class="popover-title"></h3><div class="popover-content"></div></div></div>'}),a.fn.popover.noConflict=function(){return a.fn.popover=c,this}}(window.jQuery),!function(a){var b=function(b,c){this.options=a.extend({},a.fn.affix.defaults,c),this.$window=a(window).on("scroll.affix.data-api",a.proxy(this.checkPosition,this)).on("click.affix.data-api",a.proxy(function(){setTimeout(a.proxy(this.checkPosition,this),1)},this)),this.$element=a(b),this.checkPosition()};b.prototype.checkPosition=function(){if(!this.$element.is(":visible"))return;var b=a(document).height(),c=this.$window.scrollTop(),d=this.$element.offset(),e=this.options.offset,f=e.bottom,g=e.top,h="affix affix-top affix-bottom",i;typeof e!="object"&&(f=g=e),typeof g=="function"&&(g=e.top()),typeof f=="function"&&(f=e.bottom()),i=this.unpin!=null&&c+this.unpin<=d.top?!1:f!=null&&d.top+this.$element.height()>=b-f?"bottom":g!=null&&c<=g?"top":!1;if(this.affixed===i)return;this.affixed=i,this.unpin=i=="bottom"?d.top-c:null,this.$element.removeClass(h).addClass("affix"+(i?"-"+i:""))};var c=a.fn.affix;a.fn.affix=function(c){return this.each(function(){var d=a(this),e=d.data("affix"),f=typeof c=="object"&&c;e||d.data("affix",e=new b(this,f)),typeof c=="string"&&e[c]()})},a.fn.affix.Constructor=b,a.fn.affix.defaults={offset:0},a.fn.affix.noConflict=function(){return a.fn.affix=c,this},a(window).on("load",function(){a('[data-spy="affix"]').each(function(){var b=a(this),c=b.data();c.offset=c.offset||{},c.offsetBottom&&(c.offset.bottom=c.offsetBottom),c.offsetTop&&(c.offset.top=c.offsetTop),b.affix(c)})})}(window.jQuery),!function(a){var b='[data-dismiss="alert"]',c=function(c){a(c).on("click",b,this.close)};c.prototype.close=function(b){function f(){e.trigger("closed").remove()}var c=a(this),d=c.attr("data-target"),e;d||(d=c.attr("href"),d=d&&d.replace(/.*(?=#[^\s]*$)/,"")),e=a(d),b&&b.preventDefault(),e.length||(e=c.hasClass("alert")?c:c.parent()),e.trigger(b=a.Event("close"));if(b.isDefaultPrevented())return;e.removeClass("in"),a.support.transition&&e.hasClass("fade")?e.on(a.support.transition.end,f):f()};var d=a.fn.alert;a.fn.alert=function(b){return this.each(function(){var d=a(this),e=d.data("alert");e||d.data("alert",e=new c(this)),typeof b=="string"&&e[b].call(d)})},a.fn.alert.Constructor=c,a.fn.alert.noConflict=function(){return a.fn.alert=d,this},a(document).on("click.alert.data-api",b,c.prototype.close)}(window.jQuery),!function(a){var b=function(b,c){this.$element=a(b),this.options=a.extend({},a.fn.button.defaults,c)};b.prototype.setState=function(a){var b="disabled",c=this.$element,d=c.data(),e=c.is("input")?"val":"html";a+="Text",d.resetText||c.data("resetText",c[e]()),c[e](d[a]||this.options[a]),setTimeout(function(){a=="loadingText"?c.addClass(b).attr(b,b):c.removeClass(b).removeAttr(b)},0)},b.prototype.toggle=function(){var a=this.$element.closest('[data-toggle="buttons-radio"]');a&&a.find(".active").removeClass("active"),this.$element.toggleClass("active")};var c=a.fn.button;a.fn.button=function(c){return this.each(function(){var d=a(this),e=d.data("button"),f=typeof c=="object"&&c;e||d.data("button",e=new b(this,f)),c=="toggle"?e.toggle():c&&e.setState(c)})},a.fn.button.defaults={loadingText:"loading..."},a.fn.button.Constructor=b,a.fn.button.noConflict=function(){return a.fn.button=c,this},a(document).on("click.button.data-api","[data-toggle^=button]",function(b){var c=a(b.target);c.hasClass("btn")||(c=c.closest(".btn")),c.button("toggle")})}(window.jQuery),!function(a){var b=function(b,c){this.$element=a(b),this.options=a.extend({},a.fn.collapse.defaults,c),this.options.parent&&(this.$parent=a(this.options.parent)),this.options.toggle&&this.toggle()};b.prototype={constructor:b,dimension:function(){var a=this.$element.hasClass("width");return a?"width":"height"},show:function(){var b,c,d,e;if(this.transitioning)return;b=this.dimension(),c=a.camelCase(["scroll",b].join("-")),d=this.$parent&&this.$parent.find("> .accordion-group > .in");if(d&&d.length){e=d.data("collapse");if(e&&e.transitioning)return;d.collapse("hide"),e||d.data("collapse",null)}this.$element[b](0),this.transition("addClass",a.Event("show"),"shown"),a.support.transition&&this.$element[b](this.$element[0][c])},hide:function(){var b;if(this.transitioning)return;b=this.dimension(),this.reset(this.$element[b]()),this.transition("removeClass",a.Event("hide"),"hidden"),this.$element[b](0)},reset:function(a){var b=this.dimension();return this.$element.removeClass("collapse")[b](a||"auto")[0].offsetWidth,this.$element[a!==null?"addClass":"removeClass"]("collapse"),this},transition:function(b,c,d){var e=this,f=function(){c.type=="show"&&e.reset(),e.transitioning=0,e.$element.trigger(d)};this.$element.trigger(c);if(c.isDefaultPrevented())return;this.transitioning=1,this.$element[b]("in"),a.support.transition&&this.$element.hasClass("collapse")?this.$element.one(a.support.transition.end,f):f()},toggle:function(){this[this.$element.hasClass("in")?"hide":"show"]()}};var c=a.fn.collapse;a.fn.collapse=function(c){return this.each(function(){var d=a(this),e=d.data("collapse"),f=typeof c=="object"&&c;e||d.data("collapse",e=new b(this,f)),typeof c=="string"&&e[c]()})},a.fn.collapse.defaults={toggle:!0},a.fn.collapse.Constructor=b,a.fn.collapse.noConflict=function(){return a.fn.collapse=c,this},a(document).on("click.collapse.data-api","[data-toggle=collapse]",function(b){var c=a(this),d,e=c.attr("data-target")||b.preventDefault()||(d=c.attr("href"))&&d.replace(/.*(?=#[^\s]+$)/,""),f=a(e).data("collapse")?"toggle":c.data();c[a(e).hasClass("in")?"addClass":"removeClass"]("collapsed"),a(e).collapse(f)})}(window.jQuery),!function(a){var b=function(b,c){this.$element=a(b),this.options=c,this.options.pause=="hover"&&this.$element.on("mouseenter",a.proxy(this.pause,this)).on("mouseleave",a.proxy(this.cycle,this))};b.prototype={cycle:function(b){return b||(this.paused=!1),this.options.interval&&!this.paused&&(this.interval=setInterval(a.proxy(this.next,this),this.options.interval)),this},to:function(b){var c=this.$element.find(".item.active"),d=c.parent().children(),e=d.index(c),f=this;if(b>d.length-1||b<0)return;return this.sliding?this.$element.one("slid",function(){f.to(b)}):e==b?this.pause().cycle():this.slide(b>e?"next":"prev",a(d[b]))},pause:function(b){return b||(this.paused=!0),this.$element.find(".next, .prev").length&&a.support.transition.end&&(this.$element.trigger(a.support.transition.end),this.cycle()),clearInterval(this.interval),this.interval=null,this},next:function(){if(this.sliding)return;return this.slide("next")},prev:function(){if(this.sliding)return;return this.slide("prev")},slide:function(b,c){var d=this.$element.find(".item.active"),e=c||d[b](),f=this.interval,g=b=="next"?"left":"right",h=b=="next"?"first":"last",i=this,j;this.sliding=!0,f&&this.pause(),e=e.length?e:this.$element.find(".item")[h](),j=a.Event("slide",{relatedTarget:e[0]});if(e.hasClass("active"))return;if(a.support.transition&&this.$element.hasClass("slide")){this.$element.trigger(j);if(j.isDefaultPrevented())return;e.addClass(b),e[0].offsetWidth,d.addClass(g),e.addClass(g),this.$element.one(a.support.transition.end,function(){e.removeClass([b,g].join(" ")).addClass("active"),d.removeClass(["active",g].join(" ")),i.sliding=!1,setTimeout(function(){i.$element.trigger("slid")},0)})}else{this.$element.trigger(j);if(j.isDefaultPrevented())return;d.removeClass("active"),e.addClass("active"),this.sliding=!1,this.$element.trigger("slid")}return f&&this.cycle(),this}};var c=a.fn.carousel;a.fn.carousel=function(c){return this.each(function(){var d=a(this),e=d.data("carousel"),f=a.extend({},a.fn.carousel.defaults,typeof c=="object"&&c),g=typeof c=="string"?c:f.slide;e||d.data("carousel",e=new b(this,f)),typeof c=="number"?e.to(c):g?e[g]():f.interval&&e.cycle()})},a.fn.carousel.defaults={interval:5e3,pause:"hover"},a.fn.carousel.Constructor=b,a.fn.carousel.noConflict=function(){return a.fn.carousel=c,this},a(document).on("click.carousel.data-api","[data-slide]",function(b){var c=a(this),d,e=a(c.attr("data-target")||(d=c.attr("href"))&&d.replace(/.*(?=#[^\s]+$)/,"")),f=a.extend({},e.data(),c.data());e.carousel(f),b.preventDefault()})}(window.jQuery),!function(a){var b=function(b,c){this.$element=a(b),this.options=a.extend({},a.fn.typeahead.defaults,c),this.matcher=this.options.matcher||this.matcher,this.sorter=this.options.sorter||this.sorter,this.highlighter=this.options.highlighter||this.highlighter,this.updater=this.options.updater||this.updater,this.source=this.options.source,this.$menu=a(this.options.menu),this.shown=!1,this.listen()};b.prototype={constructor:b,select:function(){var a=this.$menu.find(".active").attr("data-value");return this.$element.val(this.updater(a)).change(),this.hide()},updater:function(a){return a},show:function(){var b=a.extend({},this.$element.position(),{height:this.$element[0].offsetHeight});return this.$menu.insertAfter(this.$element).css({top:b.top+b.height,left:b.left}).show(),this.shown=!0,this},hide:function(){return this.$menu.hide(),this.shown=!1,this},lookup:function(b){var c;return this.query=this.$element.val(),!this.query||this.query.length<this.options.minLength?this.shown?this.hide():this:(c=a.isFunction(this.source)?this.source(this.query,a.proxy(this.process,this)):this.source,c?this.process(c):this)},process:function(b){var c=this;return b=a.grep(b,function(a){return c.matcher(a)}),b=this.sorter(b),b.length?this.render(b.slice(0,this.options.items)).show():this.shown?this.hide():this},matcher:function(a){return~a.toLowerCase().indexOf(this.query.toLowerCase())},sorter:function(a){var b=[],c=[],d=[],e;while(e=a.shift())e.toLowerCase().indexOf(this.query.toLowerCase())?~e.indexOf(this.query)?c.push(e):d.push(e):b.push(e);return b.concat(c,d)},highlighter:function(a){var b=this.query.replace(/[\-\[\]{}()*+?.,\\\^$|#\s]/g,"\\$&");return a.replace(new RegExp("("+b+")","ig"),function(a,b){return"<strong>"+b+"</strong>"})},render:function(b){var c=this;return b=a(b).map(function(b,d){return b=a(c.options.item).attr("data-value",d),b.find("a").html(c.highlighter(d)),b[0]}),b.first().addClass("active"),this.$menu.html(b),this},next:function(b){var c=this.$menu.find(".active").removeClass("active"),d=c.next();d.length||(d=a(this.$menu.find("li")[0])),d.addClass("active")},prev:function(a){var b=this.$menu.find(".active").removeClass("active"),c=b.prev();c.length||(c=this.$menu.find("li").last()),c.addClass("active")},listen:function(){this.$element.on("blur",a.proxy(this.blur,this)).on("keypress",a.proxy(this.keypress,this)).on("keyup",a.proxy(this.keyup,this)),this.eventSupported("keydown")&&this.$element.on("keydown",a.proxy(this.keydown,this)),this.$menu.on("click",a.proxy(this.click,this)).on("mouseenter","li",a.proxy(this.mouseenter,this))},eventSupported:function(a){var b=a in this.$element;return b||(this.$element.setAttribute(a,"return;"),b=typeof this.$element[a]=="function"),b},move:function(a){if(!this.shown)return;switch(a.keyCode){case 9:case 13:case 27:a.preventDefault();break;case 38:a.preventDefault(),this.prev();break;case 40:a.preventDefault(),this.next()}a.stopPropagation()},keydown:function(b){this.suppressKeyPressRepeat=~a.inArray(b.keyCode,[40,38,9,13,27]),this.move(b)},keypress:function(a){if(this.suppressKeyPressRepeat)return;this.move(a)},keyup:function(a){switch(a.keyCode){case 40:case 38:case 16:case 17:case 18:break;case 9:case 13:if(!this.shown)return;this.select();break;case 27:if(!this.shown)return;this.hide();break;default:this.lookup()}a.stopPropagation(),a.preventDefault()},blur:function(a){var b=this;setTimeout(function(){b.hide()},150)},click:function(a){a.stopPropagation(),a.preventDefault(),this.select()},mouseenter:function(b){this.$menu.find(".active").removeClass("active"),a(b.currentTarget).addClass("active")}};var c=a.fn.typeahead;a.fn.typeahead=function(c){return this.each(function(){var d=a(this),e=d.data("typeahead"),f=typeof c=="object"&&c;e||d.data("typeahead",e=new b(this,f)),typeof c=="string"&&e[c]()})},a.fn.typeahead.defaults={source:[],items:8,menu:'<ul class="typeahead dropdown-menu"></ul>',item:'<li><a href="#"></a></li>',minLength:1},a.fn.typeahead.Constructor=b,a.fn.typeahead.noConflict=function(){return a.fn.typeahead=c,this},a(document).on("focus.typeahead.data-api",'[data-provide="typeahead"]',function(b){var c=a(this);if(c.data("typeahead"))return;b.preventDefault(),c.typeahead(c.data())})}(window.jQuery) |
| URL | http://zero.webappsecurity.com/resources/js/jquery-1.8.2.min.js |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | username |
| Request Header - size: 287 bytes. |
GET http://zero.webappsecurity.com/resources/js/jquery-1.8.2.min.js HTTP/1.1
Host: zero.webappsecurity.com User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0 Pragma: no-cache Cache-Control: no-cache Referer: http://zero.webappsecurity.com |
| Request Body - size: 0 bytes. |
|
| Response Header - size: 361 bytes. |
HTTP/1.1 200 OK
Date: Mon, 14 Mar 2022 07:13:42 GMT Server: Apache-Coyote/1.1 Access-Control-Allow-Origin: * Accept-Ranges: bytes ETag: W/"93436-1358437290000" Last-Modified: Thu, 17 Jan 2013 15:41:30 GMT Cache-Control: max-age=2678400 Expires: Thu, 14 Apr 2022 07:13:43 GMT Content-Type: application/javascript;charset=UTF-8 Content-Length: 93436 |
| Response Body - size: 93,436 bytes. |
/*! jQuery v1.8.2 jquery.com | jquery.org/license */
(function(a,b){function G(a){var b=F[a]={};return p.each(a.split(s),function(a,c){b[c]=!0}),b}function J(a,c,d){if(d===b&&a.nodeType===1){var e="data-"+c.replace(I,"-$1").toLowerCase();d=a.getAttribute(e);if(typeof d=="string"){try{d=d==="true"?!0:d==="false"?!1:d==="null"?null:+d+""===d?+d:H.test(d)?p.parseJSON(d):d}catch(f){}p.data(a,c,d)}else d=b}return d}function K(a){var b;for(b in a){if(b==="data"&&p.isEmptyObject(a[b]))continue;if(b!=="toJSON")return!1}return!0}function ba(){return!1}function bb(){return!0}function bh(a){return!a||!a.parentNode||a.parentNode.nodeType===11}function bi(a,b){do a=a[b];while(a&&a.nodeType!==1);return a}function bj(a,b,c){b=b||0;if(p.isFunction(b))return p.grep(a,function(a,d){var e=!!b.call(a,d,a);return e===c});if(b.nodeType)return p.grep(a,function(a,d){return a===b===c});if(typeof b=="string"){var d=p.grep(a,function(a){return a.nodeType===1});if(be.test(b))return p.filter(b,d,!c);b=p.filter(b,d)}return p.grep(a,function(a,d){return p.inArray(a,b)>=0===c})}function bk(a){var b=bl.split("|"),c=a.createDocumentFragment();if(c.createElement)while(b.length)c.createElement(b.pop());return c}function bC(a,b){return a.getElementsByTagName(b)[0]||a.appendChild(a.ownerDocument.createElement(b))}function bD(a,b){if(b.nodeType!==1||!p.hasData(a))return;var c,d,e,f=p._data(a),g=p._data(b,f),h=f.events;if(h){delete g.handle,g.events={};for(c in h)for(d=0,e=h[c].length;d<e;d++)p.event.add(b,c,h[c][d])}g.data&&(g.data=p.extend({},g.data))}function bE(a,b){var c;if(b.nodeType!==1)return;b.clearAttributes&&b.clearAttributes(),b.mergeAttributes&&b.mergeAttributes(a),c=b.nodeName.toLowerCase(),c==="object"?(b.parentNode&&(b.outerHTML=a.outerHTML),p.support.html5Clone&&a.innerHTML&&!p.trim(b.innerHTML)&&(b.innerHTML=a.innerHTML)):c==="input"&&bv.test(a.type)?(b.defaultChecked=b.checked=a.checked,b.value!==a.value&&(b.value=a.value)):c==="option"?b.selected=a.defaultSelected:c==="input"||c==="textarea"?b.defaultValue=a.defaultValue:c==="script"&&b.text!==a.text&&(b.text=a.text),b.removeAttribute(p.expando)}function bF(a){return typeof a.getElementsByTagName!="undefined"?a.getElementsByTagName("*"):typeof a.querySelectorAll!="undefined"?a.querySelectorAll("*"):[]}function bG(a){bv.test(a.type)&&(a.defaultChecked=a.checked)}function bY(a,b){if(b in a)return b;var c=b.charAt(0).toUpperCase()+b.slice(1),d=b,e=bW.length;while(e--){b=bW[e]+c;if(b in a)return b}return d}function bZ(a,b){return a=b||a,p.css(a,"display")==="none"||!p.contains(a.ownerDocument,a)}function b$(a,b){var c,d,e=[],f=0,g=a.length;for(;f<g;f++){c=a[f];if(!c.style)continue;e[f]=p._data(c,"olddisplay"),b?(!e[f]&&c.style.display==="none"&&(c.style.display=""),c.style.display===""&&bZ(c)&&(e[f]=p._data(c,"olddisplay",cc(c.nodeName)))):(d=bH(c,"display"),!e[f]&&d!=="none"&&p._data(c,"olddisplay",d))}for(f=0;f<g;f++){c=a[f];if(!c.style)continue;if(!b||c.style.display==="none"||c.style.display==="")c.style.display=b?e[f]||"":"none"}return a}function b_(a,b,c){var d=bP.exec(b);return d?Math.max(0,d[1]-(c||0))+(d[2]||"px"):b}function ca(a,b,c,d){var e=c===(d?"border":"content")?4:b==="width"?1:0,f=0;for(;e<4;e+=2)c==="margin"&&(f+=p.css(a,c+bV[e],!0)),d?(c==="content"&&(f-=parseFloat(bH(a,"padding"+bV[e]))||0),c!=="margin"&&(f-=parseFloat(bH(a,"border"+bV[e]+"Width"))||0)):(f+=parseFloat(bH(a,"padding"+bV[e]))||0,c!=="padding"&&(f+=parseFloat(bH(a,"border"+bV[e]+"Width"))||0));return f}function cb(a,b,c){var d=b==="width"?a.offsetWidth:a.offsetHeight,e=!0,f=p.support.boxSizing&&p.css(a,"boxSizing")==="border-box";if(d<=0||d==null){d=bH(a,b);if(d<0||d==null)d=a.style[b];if(bQ.test(d))return d;e=f&&(p.support.boxSizingReliable||d===a.style[b]),d=parseFloat(d)||0}return d+ca(a,b,c||(f?"border":"content"),e)+"px"}function cc(a){if(bS[a])return bS[a];var b=p("<"+a+">").appendTo(e.body),c=b.css("display");b.remove();if(c==="none"||c===""){bI=e.body.appendChild(bI||p.extend(e.createElement("iframe"),{frameBorder:0,width:0,height:0}));if(!bJ||!bI.createElement)bJ=(bI.contentWindow||bI.contentDocument).document,bJ.write("<!doctype html><html><body>"),bJ.close();b=bJ.body.appendChild(bJ.createElement(a)),c=bH(b,"display"),e.body.removeChild(bI)}return bS[a]=c,c}function ci(a,b,c,d){var e;if(p.isArray(b))p.each(b,function(b,e){c||ce.test(a)?d(a,e):ci(a+"["+(typeof e=="object"?b:"")+"]",e,c,d)});else if(!c&&p.type(b)==="object")for(e in b)ci(a+"["+e+"]",b[e],c,d);else d(a,b)}function cz(a){return function(b,c){typeof b!="string"&&(c=b,b="*");var d,e,f,g=b.toLowerCase().split(s),h=0,i=g.length;if(p.isFunction(c))for(;h<i;h++)d=g[h],f=/^\+/.test(d),f&&(d=d.substr(1)||"*"),e=a[d]=a[d]||[],e[f?"unshift":"push"](c)}}function cA(a,c,d,e,f,g){f=f||c.dataTypes[0],g=g||{},g[f]=!0;var h,i=a[f],j=0,k=i?i.length:0,l=a===cv;for(;j<k&&(l||!h);j++)h=i[j](c,d,e),typeof h=="string"&&(!l||g[h]?h=b:(c.dataTypes.unshift(h),h=cA(a,c,d,e,h,g)));return(l||!h)&&!g["*"]&&(h=cA(a,c,d,e,"*",g)),h}function cB(a,c){var d,e,f=p.ajaxSettings.flatOptions||{};for(d in c)c[d]!==b&&((f[d]?a:e||(e={}))[d]=c[d]);e&&p.extend(!0,a,e)}function cC(a,c,d){var e,f,g,h,i=a.contents,j=a.dataTypes,k=a.responseFields;for(f in k)f in d&&(c[k[f]]=d[f]);while(j[0]==="*")j.shift(),e===b&&(e=a.mimeType||c.getResponseHeader("content-type"));if(e)for(f in i)if(i[f]&&i[f].test(e)){j.unshift(f);break}if(j[0]in d)g=j[0];else{for(f in d){if(!j[0]||a.converters[f+" "+j[0]]){g=f;break}h||(h=f)}g=g||h}if(g)return g!==j[0]&&j.unshift(g),d[g]}function cD(a,b){var c,d,e,f,g=a.dataTypes.slice(),h=g[0],i={},j=0;a.dataFilter&&(b=a.dataFilter(b,a.dataType));if(g[1])for(c in a.converters)i[c.toLowerCase()]=a.converters[c];for(;e=g[++j];)if(e!=="*"){if(h!=="*"&&h!==e){c=i[h+" "+e]||i["* "+e];if(!c)for(d in i){f=d.split(" ");if(f[1]===e){c=i[h+" "+f[0]]||i["* "+f[0]];if(c){c===!0?c=i[d]:i[d]!==!0&&(e=f[0],g.splice(j--,0,e));break}}}if(c!==!0)if(c&&a["throws"])b=c(b);else try{b=c(b)}catch(k){return{state:"parsererror",error:c?k:"No conversion from "+h+" to "+e}}}h=e}return{state:"success",data:b}}function cL(){try{return new a.XMLHttpRequest}catch(b){}}function cM(){try{return new a.ActiveXObject("Microsoft.XMLHTTP")}catch(b){}}function cU(){return setTimeout(function(){cN=b},0),cN=p.now()}function cV(a,b){p.each(b,function(b,c){var d=(cT[b]||[]).concat(cT["*"]),e=0,f=d.length;for(;e<f;e++)if(d[e].call(a,b,c))return})}function cW(a,b,c){var d,e=0,f=0,g=cS.length,h=p.Deferred().always(function(){delete i.elem}),i=function(){var b=cN||cU(),c=Math.max(0,j.startTime+j.duration-b),d=1-(c/j.duration||0),e=0,f=j.tweens.length;for(;e<f;e++)j.tweens[e].run(d);return h.notifyWith(a,[j,d,c]),d<1&&f?c:(h.resolveWith(a,[j]),!1)},j=h.promise({elem:a,props:p.extend({},b),opts:p.extend(!0,{specialEasing:{}},c),originalProperties:b,originalOptions:c,startTime:cN||cU(),duration:c.duration,tweens:[],createTween:function(b,c,d){var e=p.Tween(a,j.opts,b,c,j.opts.specialEasing[b]||j.opts.easing);return j.tweens.push(e),e},stop:function(b){var c=0,d=b?j.tweens.length:0;for(;c<d;c++)j.tweens[c].run(1);return b?h.resolveWith(a,[j,b]):h.rejectWith(a,[j,b]),this}}),k=j.props;cX(k,j.opts.specialEasing);for(;e<g;e++){d=cS[e].call(j,a,k,j.opts);if(d)return d}return cV(j,k),p.isFunction(j.opts.start)&&j.opts.start.call(a,j),p.fx.timer(p.extend(i,{anim:j,queue:j.opts.queue,elem:a})),j.progress(j.opts.progress).done(j.opts.done,j.opts.complete).fail(j.opts.fail).always(j.opts.always)}function cX(a,b){var c,d,e,f,g;for(c in a){d=p.camelCase(c),e=b[d],f=a[c],p.isArray(f)&&(e=f[1],f=a[c]=f[0]),c!==d&&(a[d]=f,delete a[c]),g=p.cssHooks[d];if(g&&"expand"in g){f=g.expand(f),delete a[d];for(c in f)c in a||(a[c]=f[c],b[c]=e)}else b[d]=e}}function cY(a,b,c){var d,e,f,g,h,i,j,k,l=this,m=a.style,n={},o=[],q=a.nodeType&&bZ(a);c.queue||(j=p._queueHooks(a,"fx"),j.unqueued==null&&(j.unqueued=0,k=j.empty.fire,j.empty.fire=function(){j.unqueued||k()}),j.unqueued++,l.always(function(){l.always(function(){j.unqueued--,p.queue(a,"fx").length||j.empty.fire()})})),a.nodeType===1&&("height"in b||"width"in b)&&(c.overflow=[m.overflow,m.overflowX,m.overflowY],p.css(a,"display")==="inline"&&p.css(a,"float")==="none"&&(!p.support.inlineBlockNeedsLayout||cc(a.nodeName)==="inline"?m.display="inline-block":m.zoom=1)),c.overflow&&(m.overflow="hidden",p.support.shrinkWrapBlocks||l.done(function(){m.overflow=c.overflow[0],m.overflowX=c.overflow[1],m.overflowY=c.overflow[2]}));for(d in b){f=b[d];if(cP.exec(f)){delete b[d];if(f===(q?"hide":"show"))continue;o.push(d)}}g=o.length;if(g){h=p._data(a,"fxshow")||p._data(a,"fxshow",{}),q?p(a).show():l.done(function(){p(a).hide()}),l.done(function(){var b;p.removeData(a,"fxshow",!0);for(b in n)p.style(a,b,n[b])});for(d=0;d<g;d++)e=o[d],i=l.createTween(e,q?h[e]:0),n[e]=h[e]||p.style(a,e),e in h||(h[e]=i.start,q&&(i.end=i.start,i.start=e==="width"||e==="height"?1:0))}}function cZ(a,b,c,d,e){return new cZ.prototype.init(a,b,c,d,e)}function c$(a,b){var c,d={height:a},e=0;b=b?1:0;for(;e<4;e+=2-b)c=bV[e],d["margin"+c]=d["padding"+c]=a;return b&&(d.opacity=d.width=a),d}function da(a){return p.isWindow(a)?a:a.nodeType===9?a.defaultView||a.parentWindow:!1}var c,d,e=a.document,f=a.location,g=a.navigator,h=a.jQuery,i=a.$,j=Array.prototype.push,k=Array.prototype.slice,l=Array.prototype.indexOf,m=Object.prototype.toString,n=Object.prototype.hasOwnProperty,o=String.prototype.trim,p=function(a,b){return new p.fn.init(a,b,c)},q=/[\-+]?(?:\d*\.|)\d+(?:[eE][\-+]?\d+|)/.source,r=/\S/,s=/\s+/,t=/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,u=/^(?:[^#<]*(<[\w\W]+>)[^>]*$|#([\w\-]*)$)/,v=/^<(\w+)\s*\/?>(?:<\/\1>|)$/,w=/^[\],:{}\s]*$/,x=/(?:^|:|,)(?:\s*\[)+/g,y=/\\(?:["\\\/bfnrt]|u[\da-fA-F]{4})/g,z=/"[^"\\\r\n]*"|true|false|null|-?(?:\d\d*\.|)\d+(?:[eE][\-+]?\d+|)/g,A=/^-ms-/,B=/-([\da-z])/gi,C=function(a,b){return(b+"").toUpperCase()},D=function(){e.addEventListener?(e.removeEventListener("DOMContentLoaded",D,!1),p.ready()):e.readyState==="complete"&&(e.detachEvent("onreadystatechange",D),p.ready())},E={};p.fn=p.prototype={constructor:p,init:function(a,c,d){var f,g,h,i;if(!a)return this;if(a.nodeType)return this.context=this[0]=a,this.length=1,this;if(typeof a=="string"){a.charAt(0)==="<"&&a.charAt(a.length-1)===">"&&a.length>=3?f=[null,a,null]:f=u.exec(a);if(f&&(f[1]||!c)){if(f[1])return c=c instanceof p?c[0]:c,i=c&&c.nodeType?c.ownerDocument||c:e,a=p.parseHTML(f[1],i,!0),v.test(f[1])&&p.isPlainObject(c)&&this.attr.call(a,c,!0),p.merge(this,a);g=e.getElementById(f[2]);if(g&&g.parentNode){if(g.id!==f[2])return d.find(a);this.length=1,this[0]=g}return this.context=e,this.selector=a,this}return!c||c.jquery?(c||d).find(a):this.constructor(c).find(a)}return p.isFunction(a)?d.ready(a):(a.selector!==b&&(this.selector=a.selector,this.context=a.context),p.makeArray(a,this))},selector:"",jquery:"1.8.2",length:0,size:function(){return this.length},toArray:function(){return k.call(this)},get:function(a){return a==null?this.toArray():a<0?this[this.length+a]:this[a]},pushStack:function(a,b,c){var d=p.merge(this.constructor(),a);return d.prevObject=this,d.context=this.context,b==="find"?d.selector=this.selector+(this.selector?" ":"")+c:b&&(d.selector=this.selector+"."+b+"("+c+")"),d},each:function(a,b){return p.each(this,a,b)},ready:function(a){return p.ready.promise().done(a),this},eq:function(a){return a=+a,a===-1?this.slice(a):this.slice(a,a+1)},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},slice:function(){return this.pushStack(k.apply(this,arguments),"slice",k.call(arguments).join(","))},map:function(a){return this.pushStack(p.map(this,function(b,c){return a.call(b,c,b)}))},end:function(){return this.prevObject||this.constructor(null)},push:j,sort:[].sort,splice:[].splice},p.fn.init.prototype=p.fn,p.extend=p.fn.extend=function(){var a,c,d,e,f,g,h=arguments[0]||{},i=1,j=arguments.length,k=!1;typeof h=="boolean"&&(k=h,h=arguments[1]||{},i=2),typeof h!="object"&&!p.isFunction(h)&&(h={}),j===i&&(h=this,--i);for(;i<j;i++)if((a=arguments[i])!=null)for(c in a){d=h[c],e=a[c];if(h===e)continue;k&&e&&(p.isPlainObject(e)||(f=p.isArray(e)))?(f?(f=!1,g=d&&p.isArray(d)?d:[]):g=d&&p.isPlainObject(d)?d:{},h[c]=p.extend(k,g,e)):e!==b&&(h[c]=e)}return h},p.extend({noConflict:function(b){return a.$===p&&(a.$=i),b&&a.jQuery===p&&(a.jQuery=h),p},isReady:!1,readyWait:1,holdReady:function(a){a?p.readyWait++:p.ready(!0)},ready:function(a){if(a===!0?--p.readyWait:p.isReady)return;if(!e.body)return setTimeout(p.ready,1);p.isReady=!0;if(a!==!0&&--p.readyWait>0)return;d.resolveWith(e,[p]),p.fn.trigger&&p(e).trigger("ready").off("ready")},isFunction:function(a){return p.type(a)==="function"},isArray:Array.isArray||function(a){return p.type(a)==="array"},isWindow:function(a){return a!=null&&a==a.window},isNumeric:function(a){return!isNaN(parseFloat(a))&&isFinite(a)},type:function(a){return a==null?String(a):E[m.call(a)]||"object"},isPlainObject:function(a){if(!a||p.type(a)!=="object"||a.nodeType||p.isWindow(a))return!1;try{if(a.constructor&&!n.call(a,"constructor")&&!n.call(a.constructor.prototype,"isPrototypeOf"))return!1}catch(c){return!1}var d;for(d in a);return d===b||n.call(a,d)},isEmptyObject:function(a){var b;for(b in a)return!1;return!0},error:function(a){throw new Error(a)},parseHTML:function(a,b,c){var d;return!a||typeof a!="string"?null:(typeof b=="boolean"&&(c=b,b=0),b=b||e,(d=v.exec(a))?[b.createElement(d[1])]:(d=p.buildFragment([a],b,c?null:[]),p.merge([],(d.cacheable?p.clone(d.fragment):d.fragment).childNodes)))},parseJSON:function(b){if(!b||typeof b!="string")return null;b=p.trim(b);if(a.JSON&&a.JSON.parse)return a.JSON.parse(b);if(w.test(b.replace(y,"@").replace(z,"]").replace(x,"")))return(new Function("return "+b))();p.error("Invalid JSON: "+b)},parseXML:function(c){var d,e;if(!c||typeof c!="string")return null;try{a.DOMParser?(e=new DOMParser,d=e.parseFromString(c,"text/xml")):(d=new ActiveXObject("Microsoft.XMLDOM"),d.async="false",d.loadXML(c))}catch(f){d=b}return(!d||!d.documentElement||d.getElementsByTagName("parsererror").length)&&p.error("Invalid XML: "+c),d},noop:function(){},globalEval:function(b){b&&r.test(b)&&(a.execScript||function(b){a.eval.call(a,b)})(b)},camelCase:function(a){return a.replace(A,"ms-").replace(B,C)},nodeName:function(a,b){return a.nodeName&&a.nodeName.toLowerCase()===b.toLowerCase()},each:function(a,c,d){var e,f=0,g=a.length,h=g===b||p.isFunction(a);if(d){if(h){for(e in a)if(c.apply(a[e],d)===!1)break}else for(;f<g;)if(c.apply(a[f++],d)===!1)break}else if(h){for(e in a)if(c.call(a[e],e,a[e])===!1)break}else for(;f<g;)if(c.call(a[f],f,a[f++])===!1)break;return a},trim:o&&!o.call(" ")?function(a){return a==null?"":o.call(a)}:function(a){return a==null?"":(a+"").replace(t,"")},makeArray:function(a,b){var c,d=b||[];return a!=null&&(c=p.type(a),a.length==null||c==="string"||c==="function"||c==="regexp"||p.isWindow(a)?j.call(d,a):p.merge(d,a)),d},inArray:function(a,b,c){var d;if(b){if(l)return l.call(b,a,c);d=b.length,c=c?c<0?Math.max(0,d+c):c:0;for(;c<d;c++)if(c in b&&b[c]===a)return c}return-1},merge:function(a,c){var d=c.length,e=a.length,f=0;if(typeof d=="number")for(;f<d;f++)a[e++]=c[f];else while(c[f]!==b)a[e++]=c[f++];return a.length=e,a},grep:function(a,b,c){var d,e=[],f=0,g=a.length;c=!!c;for(;f<g;f++)d=!!b(a[f],f),c!==d&&e.push(a[f]);return e},map:function(a,c,d){var e,f,g=[],h=0,i=a.length,j=a instanceof p||i!==b&&typeof i=="number"&&(i>0&&a[0]&&a[i-1]||i===0||p.isArray(a));if(j)for(;h<i;h++)e=c(a[h],h,d),e!=null&&(g[g.length]=e);else for(f in a)e=c(a[f],f,d),e!=null&&(g[g.length]=e);return g.concat.apply([],g)},guid:1,proxy:function(a,c){var d,e,f;return typeof c=="string"&&(d=a[c],c=a,a=d),p.isFunction(a)?(e=k.call(arguments,2),f=function(){return a.apply(c,e.concat(k.call(arguments)))},f.guid=a.guid=a.guid||p.guid++,f):b},access:function(a,c,d,e,f,g,h){var i,j=d==null,k=0,l=a.length;if(d&&typeof d=="object"){for(k in d)p.access(a,c,k,d[k],1,g,e);f=1}else if(e!==b){i=h===b&&p.isFunction(e),j&&(i?(i=c,c=function(a,b,c){return i.call(p(a),c)}):(c.call(a,e),c=null));if(c)for(;k<l;k++)c(a[k],d,i?e.call(a[k],k,c(a[k],d)):e,h);f=1}return f?a:j?c.call(a):l?c(a[0],d):g},now:function(){return(new Date).getTime()}}),p.ready.promise=function(b){if(!d){d=p.Deferred();if(e.readyState==="complete")setTimeout(p.ready,1);else if(e.addEventListener)e.addEventListener("DOMContentLoaded",D,!1),a.addEventListener("load",p.ready,!1);else{e.attachEvent("onreadystatechange",D),a.attachEvent("onload",p.ready);var c=!1;try{c=a.frameElement==null&&e.documentElement}catch(f){}c&&c.doScroll&&function g(){if(!p.isReady){try{c.doScroll("left")}catch(a){return setTimeout(g,50)}p.ready()}}()}}return d.promise(b)},p.each("Boolean Number String Function Array Date RegExp Object".split(" "),function(a,b){E["[object "+b+"]"]=b.toLowerCase()}),c=p(e);var F={};p.Callbacks=function(a){a=typeof a=="string"?F[a]||G(a):p.extend({},a);var c,d,e,f,g,h,i=[],j=!a.once&&[],k=function(b){c=a.memory&&b,d=!0,h=f||0,f=0,g=i.length,e=!0;for(;i&&h<g;h++)if(i[h].apply(b[0],b[1])===!1&&a.stopOnFalse){c=!1;break}e=!1,i&&(j?j.length&&k(j.shift()):c?i=[]:l.disable())},l={add:function(){if(i){var b=i.length;(function d(b){p.each(b,function(b,c){var e=p.type(c);e==="function"&&(!a.unique||!l.has(c))?i.push(c):c&&c.length&&e!=="string"&&d(c)})})(arguments),e?g=i.length:c&&(f=b,k(c))}return this},remove:function(){return i&&p.each(arguments,function(a,b){var c;while((c=p.inArray(b,i,c))>-1)i.splice(c,1),e&&(c<=g&&g--,c<=h&&h--)}),this},has:function(a){return p.inArray(a,i)>-1},empty:function(){return i=[],this},disable:function(){return i=j=c=b,this},disabled:function(){return!i},lock:function(){return j=b,c||l.disable(),this},locked:function(){return!j},fireWith:function(a,b){return b=b||[],b=[a,b.slice?b.slice():b],i&&(!d||j)&&(e?j.push(b):k(b)),this},fire:function(){return l.fireWith(this,arguments),this},fired:function(){return!!d}};return l},p.extend({Deferred:function(a){var b=[["resolve","done",p.Callbacks("once memory"),"resolved"],["reject","fail",p.Callbacks("once memory"),"rejected"],["notify","progress",p.Callbacks("memory")]],c="pending",d={state:function(){return c},always:function(){return e.done(arguments).fail(arguments),this},then:function(){var a=arguments;return p.Deferred(function(c){p.each(b,function(b,d){var f=d[0],g=a[b];e[d[1]](p.isFunction(g)?function(){var a=g.apply(this,arguments);a&&p.isFunction(a.promise)?a.promise().done(c.resolve).fail(c.reject).progress(c.notify):c[f+"With"](this===e?c:this,[a])}:c[f])}),a=null}).promise()},promise:function(a){return a!=null?p.extend(a,d):d}},e={};return d.pipe=d.then,p.each(b,function(a,f){var g=f[2],h=f[3];d[f[1]]=g.add,h&&g.add(function(){c=h},b[a^1][2].disable,b[2][2].lock),e[f[0]]=g.fire,e[f[0]+"With"]=g.fireWith}),d.promise(e),a&&a.call(e,e),e},when:function(a){var b=0,c=k.call(arguments),d=c.length,e=d!==1||a&&p.isFunction(a.promise)?d:0,f=e===1?a:p.Deferred(),g=function(a,b,c){return function(d){b[a]=this,c[a]=arguments.length>1?k.call(arguments):d,c===h?f.notifyWith(b,c):--e||f.resolveWith(b,c)}},h,i,j;if(d>1){h=new Array(d),i=new Array(d),j=new Array(d);for(;b<d;b++)c[b]&&p.isFunction(c[b].promise)?c[b].promise().done(g(b,j,c)).fail(f.reject).progress(g(b,i,h)):--e}return e||f.resolveWith(j,c),f.promise()}}),p.support=function(){var b,c,d,f,g,h,i,j,k,l,m,n=e.createElement("div");n.setAttribute("className","t"),n.innerHTML=" <link/><table></table><a href='/a'>a</a><input type='checkbox'/>",c=n.getElementsByTagName("*"),d=n.getElementsByTagName("a")[0],d.style.cssText="top:1px;float:left;opacity:.5";if(!c||!c.length)return{};f=e.createElement("select"),g=f.appendChild(e.createElement("option")),h=n.getElementsByTagName("input")[0],b={leadingWhitespace:n.firstChild.nodeType===3,tbody:!n.getElementsByTagName("tbody").length,htmlSerialize:!!n.getElementsByTagName("link").length,style:/top/.test(d.getAttribute("style")),hrefNormalized:d.getAttribute("href")==="/a",opacity:/^0.5/.test(d.style.opacity),cssFloat:!!d.style.cssFloat,checkOn:h.value==="on",optSelected:g.selected,getSetAttribute:n.className!=="t",enctype:!!e.createElement("form").enctype,html5Clone:e.createElement("nav").cloneNode(!0).outerHTML!=="<:nav></:nav>",boxModel:e.compatMode==="CSS1Compat",submitBubbles:!0,changeBubbles:!0,focusinBubbles:!1,deleteExpando:!0,noCloneEvent:!0,inlineBlockNeedsLayout:!1,shrinkWrapBlocks:!1,reliableMarginRight:!0,boxSizingReliable:!0,pixelPosition:!1},h.checked=!0,b.noCloneChecked=h.cloneNode(!0).checked,f.disabled=!0,b.optDisabled=!g.disabled;try{delete n.test}catch(o){b.deleteExpando=!1}!n.addEventListener&&n.attachEvent&&n.fireEvent&&(n.attachEvent("onclick",m=function(){b.noCloneEvent=!1}),n.cloneNode(!0).fireEvent("onclick"),n.detachEvent("onclick",m)),h=e.createElement("input"),h.value="t",h.setAttribute("type","radio"),b.radioValue=h.value==="t",h.setAttribute("checked","checked"),h.setAttribute("name","t"),n.appendChild(h),i=e.createDocumentFragment(),i.appendChild(n.lastChild),b.checkClone=i.cloneNode(!0).cloneNode(!0).lastChild.checked,b.appendChecked=h.checked,i.removeChild(h),i.appendChild(n);if(n.attachEvent)for(k in{submit:!0,change:!0,focusin:!0})j="on"+k,l=j in n,l||(n.setAttribute(j,"return;"),l=typeof n[j]=="function"),b[k+"Bubbles"]=l;return p(function(){var c,d,f,g,h="padding:0;margin:0;border:0;display:block;overflow:hidden;",i=e.getElementsByTagName("body")[0];if(!i)return;c=e.createElement("div"),c.style.cssText="visibility:hidden;border:0;width:0;height:0;position:static;top:0;margin-top:1px",i.insertBefore(c,i.firstChild),d=e.createElement("div"),c.appendChild(d),d.innerHTML="<table><tr><td></td><td>t</td></tr></table>",f=d.getElementsByTagName("td"),f[0].style.cssText="padding:0;margin:0;border:0;display:none",l=f[0].offsetHeight===0,f[0].style.display="",f[1].style.display="none",b.reliableHiddenOffsets=l&&f[0].offsetHeight===0,d.innerHTML="",d.style.cssText="box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;padding:1px;border:1px;display:block;width:4px;margin-top:1%;position:absolute;top:1%;",b.boxSizing=d.offsetWidth===4,b.doesNotIncludeMarginInBodyOffset=i.offsetTop!==1,a.getComputedStyle&&(b.pixelPosition=(a.getComputedStyle(d,null)||{}).top!=="1%",b.boxSizingReliable=(a.getComputedStyle(d,null)||{width:"4px"}).width==="4px",g=e.createElement("div"),g.style.cssText=d.style.cssText=h,g.style.marginRight=g.style.width="0",d.style.width="1px",d.appendChild(g),b.reliableMarginRight=!parseFloat((a.getComputedStyle(g,null)||{}).marginRight)),typeof d.style.zoom!="undefined"&&(d.innerHTML="",d.style.cssText=h+"width:1px;padding:1px;display:inline;zoom:1",b.inlineBlockNeedsLayout=d.offsetWidth===3,d.style.display="block",d.style.overflow="visible",d.innerHTML="<div></div>",d.firstChild.style.width="5px",b.shrinkWrapBlocks=d.offsetWidth!==3,c.style.zoom=1),i.removeChild(c),c=d=f=g=null}),i.removeChild(n),c=d=f=g=h=i=n=null,b}();var H=/(?:\{[\s\S]*\}|\[[\s\S]*\])$/,I=/([A-Z])/g;p.extend({cache:{},deletedIds:[],uuid:0,expando:"jQuery"+(p.fn.jquery+Math.random()).replace(/\D/g,""),noData:{embed:!0,object:"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000",applet:!0},hasData:function(a){return a=a.nodeType?p.cache[a[p.expando]]:a[p.expando],!!a&&!K(a)},data:function(a,c,d,e){if(!p.acceptData(a))return;var f,g,h=p.expando,i=typeof c=="string",j=a.nodeType,k=j?p.cache:a,l=j?a[h]:a[h]&&h;if((!l||!k[l]||!e&&!k[l].data)&&i&&d===b)return;l||(j?a[h]=l=p.deletedIds.pop()||p.guid++:l=h),k[l]||(k[l]={},j||(k[l].toJSON=p.noop));if(typeof c=="object"||typeof c=="function")e?k[l]=p.extend(k[l],c):k[l].data=p.extend(k[l].data,c);return f=k[l],e||(f.data||(f.data={}),f=f.data),d!==b&&(f[p.camelCase(c)]=d),i?(g=f[c],g==null&&(g=f[p.camelCase(c)])):g=f,g},removeData:function(a,b,c){if(!p.acceptData(a))return;var d,e,f,g=a.nodeType,h=g?p.cache:a,i=g?a[p.expando]:p.expando;if(!h[i])return;if(b){d=c?h[i]:h[i].data;if(d){p.isArray(b)||(b in d?b=[b]:(b=p.camelCase(b),b in d?b=[b]:b=b.split(" ")));for(e=0,f=b.length;e<f;e++)delete d[b[e]];if(!(c?K:p.isEmptyObject)(d))return}}if(!c){delete h[i].data;if(!K(h[i]))return}g?p.cleanData([a],!0):p.support.deleteExpando||h!=h.window?delete h[i]:h[i]=null},_data:function(a,b,c){return p.data(a,b,c,!0)},acceptData:function(a){var b=a.nodeName&&p.noData[a.nodeName.toLowerCase()];return!b||b!==!0&&a.getAttribute("classid")===b}}),p.fn.extend({data:function(a,c){var d,e,f,g,h,i=this[0],j=0,k=null;if(a===b){if(this.length){k=p.data(i);if(i.nodeType===1&&!p._data(i,"parsedAttrs")){f=i.attributes;for(h=f.length;j<h;j++)g=f[j].name,g.indexOf("data-")||(g=p.camelCase(g.substring(5)),J(i,g,k[g]));p._data(i,"parsedAttrs",!0)}}return k}return typeof a=="object"?this.each(function(){p.data(this,a)}):(d=a.split(".",2),d[1]=d[1]?"."+d[1]:"",e=d[1]+"!",p.access(this,function(c){if(c===b)return k=this.triggerHandler("getData"+e,[d[0]]),k===b&&i&&(k=p.data(i,a),k=J(i,a,k)),k===b&&d[1]?this.data(d[0]):k;d[1]=c,this.each(function(){var b=p(this);b.triggerHandler("setData"+e,d),p.data(this,a,c),b.triggerHandler("changeData"+e,d)})},null,c,arguments.length>1,null,!1))},removeData:function(a){return this.each(function(){p.removeData(this,a)})}}),p.extend({queue:function(a,b,c){var d;if(a)return b=(b||"fx")+"queue",d=p._data(a,b),c&&(!d||p.isArray(c)?d=p._data(a,b,p.makeArray(c)):d.push(c)),d||[]},dequeue:function(a,b){b=b||"fx";var c=p.queue(a,b),d=c.length,e=c.shift(),f=p._queueHooks(a,b),g=function(){p.dequeue(a,b)};e==="inprogress"&&(e=c.shift(),d--),e&&(b==="fx"&&c.unshift("inprogress"),delete f.stop,e.call(a,g,f)),!d&&f&&f.empty.fire()},_queueHooks:function(a,b){var c=b+"queueHooks";return p._data(a,c)||p._data(a,c,{empty:p.Callbacks("once memory").add(function(){p.removeData(a,b+"queue",!0),p.removeData(a,c,!0)})})}}),p.fn.extend({queue:function(a,c){var d=2;return typeof a!="string"&&(c=a,a="fx",d--),arguments.length<d?p.queue(this[0],a):c===b?this:this.each(function(){var b=p.queue(this,a,c);p._queueHooks(this,a),a==="fx"&&b[0]!=="inprogress"&&p.dequeue(this,a)})},dequeue:function(a){return this.each(function(){p.dequeue(this,a)})},delay:function(a,b){return a=p.fx?p.fx.speeds[a]||a:a,b=b||"fx",this.queue(b,function(b,c){var d=setTimeout(b,a);c.stop=function(){clearTimeout(d)}})},clearQueue:function(a){return this.queue(a||"fx",[])},promise:function(a,c){var d,e=1,f=p.Deferred(),g=this,h=this.length,i=function(){--e||f.resolveWith(g,[g])};typeof a!="string"&&(c=a,a=b),a=a||"fx";while(h--)d=p._data(g[h],a+"queueHooks"),d&&d.empty&&(e++,d.empty.add(i));return i(),f.promise(c)}});var L,M,N,O=/[\t\r\n]/g,P=/\r/g,Q=/^(?:button|input)$/i,R=/^(?:button|input|object|select|textarea)$/i,S=/^a(?:rea|)$/i,T=/^(?:autofocus|autoplay|async|checked|controls|defer|disabled|hidden|loop|multiple|open|readonly|required|scoped|selected)$/i,U=p.support.getSetAttribute;p.fn.extend({attr:function(a,b){return p.access(this,p.attr,a,b,arguments.length>1)},removeAttr:function(a){return this.each(function(){p.removeAttr(this,a)})},prop:function(a,b){return p.access(this,p.prop,a,b,arguments.length>1)},removeProp:function(a){return a=p.propFix[a]||a,this.each(function(){try{this[a]=b,delete this[a]}catch(c){}})},addClass:function(a){var b,c,d,e,f,g,h;if(p.isFunction(a))return this.each(function(b){p(this).addClass(a.call(this,b,this.className))});if(a&&typeof a=="string"){b=a.split(s);for(c=0,d=this.length;c<d;c++){e=this[c];if(e.nodeType===1)if(!e.className&&b.length===1)e.className=a;else{f=" "+e.className+" ";for(g=0,h=b.length;g<h;g++)f.indexOf(" "+b[g]+" ")<0&&(f+=b[g]+" ");e.className=p.trim(f)}}}return this},removeClass:function(a){var c,d,e,f,g,h,i;if(p.isFunction(a))return this.each(function(b){p(this).removeClass(a.call(this,b,this.className))});if(a&&typeof a=="string"||a===b){c=(a||"").split(s);for(h=0,i=this.length;h<i;h++){e=this[h];if(e.nodeType===1&&e.className){d=(" "+e.className+" ").replace(O," ");for(f=0,g=c.length;f<g;f++)while(d.indexOf(" "+c[f]+" ")>=0)d=d.replace(" "+c[f]+" "," ");e.className=a?p.trim(d):""}}}return this},toggleClass:function(a,b){var c=typeof a,d=typeof b=="boolean";return p.isFunction(a)?this.each(function(c){p(this).toggleClass(a.call(this,c,this.className,b),b)}):this.each(function(){if(c==="string"){var e,f=0,g=p(this),h=b,i=a.split(s);while(e=i[f++])h=d?h:!g.hasClass(e),g[h?"addClass":"removeClass"](e)}else if(c==="undefined"||c==="boolean")this.className&&p._data(this,"__className__",this.className),this.className=this.className||a===!1?"":p._data(this,"__className__")||""})},hasClass:function(a){var b=" "+a+" ",c=0,d=this.length;for(;c<d;c++)if(this[c].nodeType===1&&(" "+this[c].className+" ").replace(O," ").indexOf(b)>=0)return!0;return!1},val:function(a){var c,d,e,f=this[0];if(!arguments.length){if(f)return c=p.valHooks[f.type]||p.valHooks[f.nodeName.toLowerCase()],c&&"get"in c&&(d=c.get(f,"value"))!==b?d:(d=f.value,typeof d=="string"?d.replace(P,""):d==null?"":d);return}return e=p.isFunction(a),this.each(function(d){var f,g=p(this);if(this.nodeType!==1)return;e?f=a.call(this,d,g.val()):f=a,f==null?f="":typeof f=="number"?f+="":p.isArray(f)&&(f=p.map(f,function(a){return a==null?"":a+""})),c=p.valHooks[this.type]||p.valHooks[this.nodeName.toLowerCase()];if(!c||!("set"in c)||c.set(this,f,"value")===b)this.value=f})}}),p.extend({valHooks:{option:{get:function(a){var b=a.attributes.value;return!b||b.specified?a.value:a.text}},select:{get:function(a){var b,c,d,e,f=a.selectedIndex,g=[],h=a.options,i=a.type==="select-one";if(f<0)return null;c=i?f:0,d=i?f+1:h.length;for(;c<d;c++){e=h[c];if(e.selected&&(p.support.optDisabled?!e.disabled:e.getAttribute("disabled")===null)&&(!e.parentNode.disabled||!p.nodeName(e.parentNode,"optgroup"))){b=p(e).val();if(i)return b;g.push(b)}}return i&&!g.length&&h.length?p(h[f]).val():g},set:function(a,b){var c=p.makeArray(b);return p(a).find("option").each(function(){this.selected=p.inArray(p(this).val(),c)>=0}),c.length||(a.selectedIndex=-1),c}}},attrFn:{},attr:function(a,c,d,e){var f,g,h,i=a.nodeType;if(!a||i===3||i===8||i===2)return;if(e&&p.isFunction(p.fn[c]))return p(a)[c](d);if(typeof a.getAttribute=="undefined")return p.prop(a,c,d);h=i!==1||!p.isXMLDoc(a),h&&(c=c.toLowerCase(),g=p.attrHooks[c]||(T.test(c)?M:L));if(d!==b){if(d===null){p.removeAttr(a,c);return}return g&&"set"in g&&h&&(f=g.set(a,d,c))!==b?f:(a.setAttribute(c,d+""),d)}return g&&"get"in g&&h&&(f=g.get(a,c))!==null?f:(f=a.getAttribute(c),f===null?b:f)},removeAttr:function(a,b){var c,d,e,f,g=0;if(b&&a.nodeType===1){d=b.split(s);for(;g<d.length;g++)e=d[g],e&&(c=p.propFix[e]||e,f=T.test(e),f||p.attr(a,e,""),a.removeAttribute(U?e:c),f&&c in a&&(a[c]=!1))}},attrHooks:{type:{set:function(a,b){if(Q.test(a.nodeName)&&a.parentNode)p.error("type property can't be changed");else if(!p.support.radioValue&&b==="radio"&&p.nodeName(a,"input")){var c=a.value;return a.setAttribute("type",b),c&&(a.value=c),b}}},value:{get:function(a,b){return L&&p.nodeName(a,"button")?L.get(a,b):b in a?a.value:null},set:function(a,b,c){if(L&&p.nodeName(a,"button"))return L.set(a,b,c);a.value=b}}},propFix:{tabindex:"tabIndex",readonly:"readOnly","for":"htmlFor","class":"className",maxlength:"maxLength",cellspacing:"cellSpacing",cellpadding:"cellPadding",rowspan:"rowSpan",colspan:"colSpan",usemap:"useMap",frameborder:"frameBorder",contenteditable:"contentEditable"},prop:function(a,c,d){var e,f,g,h=a.nodeType;if(!a||h===3||h===8||h===2)return;return g=h!==1||!p.isXMLDoc(a),g&&(c=p.propFix[c]||c,f=p.propHooks[c]),d!==b?f&&"set"in f&&(e=f.set(a,d,c))!==b?e:a[c]=d:f&&"get"in f&&(e=f.get(a,c))!==null?e:a[c]},propHooks:{tabIndex:{get:function(a){var c=a.getAttributeNode("tabindex");return c&&c.specified?parseInt(c.value,10):R.test(a.nodeName)||S.test(a.nodeName)&&a.href?0:b}}}}),M={get:function(a,c){var d,e=p.prop(a,c);return e===!0||typeof e!="boolean"&&(d=a.getAttributeNode(c))&&d.nodeValue!==!1?c.toLowerCase():b},set:function(a,b,c){var d;return b===!1?p.removeAttr(a,c):(d=p.propFix[c]||c,d in a&&(a[d]=!0),a.setAttribute(c,c.toLowerCase())),c}},U||(N={name:!0,id:!0,coords:!0},L=p.valHooks.button={get:function(a,c){var d;return d=a.getAttributeNode(c),d&&(N[c]?d.value!=="":d.specified)?d.value:b},set:function(a,b,c){var d=a.getAttributeNode(c);return d||(d=e.createAttribute(c),a.setAttributeNode(d)),d.value=b+""}},p.each(["width","height"],function(a,b){p.attrHooks[b]=p.extend(p.attrHooks[b],{set:function(a,c){if(c==="")return a.setAttribute(b,"auto"),c}})}),p.attrHooks.contenteditable={get:L.get,set:function(a,b,c){b===""&&(b="false"),L.set(a,b,c)}}),p.support.hrefNormalized||p.each(["href","src","width","height"],function(a,c){p.attrHooks[c]=p.extend(p.attrHooks[c],{get:function(a){var d=a.getAttribute(c,2);return d===null?b:d}})}),p.support.style||(p.attrHooks.style={get:function(a){return a.style.cssText.toLowerCase()||b},set:function(a,b){return a.style.cssText=b+""}}),p.support.optSelected||(p.propHooks.selected=p.extend(p.propHooks.selected,{get:function(a){var b=a.parentNode;return b&&(b.selectedIndex,b.parentNode&&b.parentNode.selectedIndex),null}})),p.support.enctype||(p.propFix.enctype="encoding"),p.support.checkOn||p.each(["radio","checkbox"],function(){p.valHooks[this]={get:function(a){return a.getAttribute("value")===null?"on":a.value}}}),p.each(["radio","checkbox"],function(){p.valHooks[this]=p.extend(p.valHooks[this],{set:function(a,b){if(p.isArray(b))return a.checked=p.inArray(p(a).val(),b)>=0}})});var V=/^(?:textarea|input|select)$/i,W=/^([^\.]*|)(?:\.(.+)|)$/,X=/(?:^|\s)hover(\.\S+|)\b/,Y=/^key/,Z=/^(?:mouse|contextmenu)|click/,$=/^(?:focusinfocus|focusoutblur)$/,_=function(a){return p.event.special.hover?a:a.replace(X,"mouseenter$1 mouseleave$1")};p.event={add:function(a,c,d,e,f){var g,h,i,j,k,l,m,n,o,q,r;if(a.nodeType===3||a.nodeType===8||!c||!d||!(g=p._data(a)))return;d.handler&&(o=d,d=o.handler,f=o.selector),d.guid||(d.guid=p.guid++),i=g.events,i||(g.events=i={}),h=g.handle,h||(g.handle=h=function(a){return typeof p!="undefined"&&(!a||p.event.triggered!==a.type)?p.event.dispatch.apply(h.elem,arguments):b},h.elem=a),c=p.trim(_(c)).split(" ");for(j=0;j<c.length;j++){k=W.exec(c[j])||[],l=k[1],m=(k[2]||"").split(".").sort(),r=p.event.special[l]||{},l=(f?r.delegateType:r.bindType)||l,r=p.event.special[l]||{},n=p.extend({type:l,origType:k[1],data:e,handler:d,guid:d.guid,selector:f,needsContext:f&&p.expr.match.needsContext.test(f),namespace:m.join(".")},o),q=i[l];if(!q){q=i[l]=[],q.delegateCount=0;if(!r.setup||r.setup.call(a,e,m,h)===!1)a.addEventListener?a.addEventListener(l,h,!1):a.attachEvent&&a.attachEvent("on"+l,h)}r.add&&(r.add.call(a,n),n.handler.guid||(n.handler.guid=d.guid)),f?q.splice(q.delegateCount++,0,n):q.push(n),p.event.global[l]=!0}a=null},global:{},remove:function(a,b,c,d,e){var f,g,h,i,j,k,l,m,n,o,q,r=p.hasData(a)&&p._data(a);if(!r||!(m=r.events))return;b=p.trim(_(b||"")).split(" ");for(f=0;f<b.length;f++){g=W.exec(b[f])||[],h=i=g[1],j=g[2];if(!h){for(h in m)p.event.remove(a,h+b[f],c,d,!0);continue}n=p.event.special[h]||{},h=(d?n.delegateType:n.bindType)||h,o=m[h]||[],k=o.length,j=j?new RegExp("(^|\\.)"+j.split(".").sort().join("\\.(?:.*\\.|)")+"(\\.|$)"):null;for(l=0;l<o.length;l++)q=o[l],(e||i===q.origType)&&(!c||c.guid===q.guid)&&(!j||j.test(q.namespace))&&(!d||d===q.selector||d==="**"&&q.selector)&&(o.splice(l--,1),q.selector&&o.delegateCount--,n.remove&&n.remove.call(a,q));o.length===0&&k!==o.length&&((!n.teardown||n.teardown.call(a,j,r.handle)===!1)&&p.removeEvent(a,h,r.handle),delete m[h])}p.isEmptyObject(m)&&(delete r.handle,p.removeData(a,"events",!0))},customEvent:{getData:!0,setData:!0,changeData:!0},trigger:function(c,d,f,g){if(!f||f.nodeType!==3&&f.nodeType!==8){var h,i,j,k,l,m,n,o,q,r,s=c.type||c,t=[];if($.test(s+p.event.triggered))return;s.indexOf("!")>=0&&(s=s.slice(0,-1),i=!0),s.indexOf(".")>=0&&(t=s.split("."),s=t.shift(),t.sort());if((!f||p.event.customEvent[s])&&!p.event.global[s])return;c=typeof c=="object"?c[p.expando]?c:new p.Event(s,c):new p.Event(s),c.type=s,c.isTrigger=!0,c.exclusive=i,c.namespace=t.join("."),c.namespace_re=c.namespace?new RegExp("(^|\\.)"+t.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,m=s.indexOf(":")<0?"on"+s:"";if(!f){h=p.cache;for(j in h)h[j].events&&h[j].events[s]&&p.event.trigger(c,d,h[j].handle.elem,!0);return}c.result=b,c.target||(c.target=f),d=d!=null?p.makeArray(d):[],d.unshift(c),n=p.event.special[s]||{};if(n.trigger&&n.trigger.apply(f,d)===!1)return;q=[[f,n.bindType||s]];if(!g&&!n.noBubble&&!p.isWindow(f)){r=n.delegateType||s,k=$.test(r+s)?f:f.parentNode;for(l=f;k;k=k.parentNode)q.push([k,r]),l=k;l===(f.ownerDocument||e)&&q.push([l.defaultView||l.parentWindow||a,r])}for(j=0;j<q.length&&!c.isPropagationStopped();j++)k=q[j][0],c.type=q[j][1],o=(p._data(k,"events")||{})[c.type]&&p._data(k,"handle"),o&&o.apply(k,d),o=m&&k[m],o&&p.acceptData(k)&&o.apply&&o.apply(k,d)===!1&&c.preventDefault();return c.type=s,!g&&!c.isDefaultPrevented()&&(!n._default||n._default.apply(f.ownerDocument,d)===!1)&&(s!=="click"||!p.nodeName(f,"a"))&&p.acceptData(f)&&m&&f[s]&&(s!=="focus"&&s!=="blur"||c.target.offsetWidth!==0)&&!p.isWindow(f)&&(l=f[m],l&&(f[m]=null),p.event.triggered=s,f[s](),p.event.triggered=b,l&&(f[m]=l)),c.result}return},dispatch:function(c){c=p.event.fix(c||a.event);var d,e,f,g,h,i,j,l,m,n,o=(p._data(this,"events")||{})[c.type]||[],q=o.delegateCount,r=k.call(arguments),s=!c.exclusive&&!c.namespace,t=p.event.special[c.type]||{},u=[];r[0]=c,c.delegateTarget=this;if(t.preDispatch&&t.preDispatch.call(this,c)===!1)return;if(q&&(!c.button||c.type!=="click"))for(f=c.target;f!=this;f=f.parentNode||this)if(f.disabled!==!0||c.type!=="click"){h={},j=[];for(d=0;d<q;d++)l=o[d],m=l.selector,h[m]===b&&(h[m]=l.needsContext?p(m,this).index(f)>=0:p.find(m,this,null,[f]).length),h[m]&&j.push(l);j.length&&u.push({elem:f,matches:j})}o.length>q&&u.push({elem:this,matches:o.slice(q)});for(d=0;d<u.length&&!c.isPropagationStopped();d++){i=u[d],c.currentTarget=i.elem;for(e=0;e<i.matches.length&&!c.isImmediatePropagationStopped();e++){l=i.matches[e];if(s||!c.namespace&&!l.namespace||c.namespace_re&&c.namespace_re.test(l.namespace))c.data=l.data,c.handleObj=l,g=((p.event.special[l.origType]||{}).handle||l.handler).apply(i.elem,r),g!==b&&(c.result=g,g===!1&&(c.preventDefault(),c.stopPropagation()))}}return t.postDispatch&&t.postDispatch.call(this,c),c.result},props:"attrChange attrName relatedNode srcElement altKey bubbles cancelable ctrlKey currentTarget eventPhase metaKey relatedTarget shiftKey target timeStamp view which".split(" "),fixHooks:{},keyHooks:{props:"char charCode key keyCode".split(" "),filter:function(a,b){return a.which==null&&(a.which=b.charCode!=null?b.charCode:b.keyCode),a}},mouseHooks:{props:"button buttons clientX clientY fromElement offsetX offsetY pageX pageY screenX screenY toElement".split(" "),filter:function(a,c){var d,f,g,h=c.button,i=c.fromElement;return a.pageX==null&&c.clientX!=null&&(d=a.target.ownerDocument||e,f=d.documentElement,g=d.body,a.pageX=c.clientX+(f&&f.scrollLeft||g&&g.scrollLeft||0)-(f&&f.clientLeft||g&&g.clientLeft||0),a.pageY=c.clientY+(f&&f.scrollTop||g&&g.scrollTop||0)-(f&&f.clientTop||g&&g.clientTop||0)),!a.relatedTarget&&i&&(a.relatedTarget=i===a.target?c.toElement:i),!a.which&&h!==b&&(a.which=h&1?1:h&2?3:h&4?2:0),a}},fix:function(a){if(a[p.expando])return a;var b,c,d=a,f=p.event.fixHooks[a.type]||{},g=f.props?this.props.concat(f.props):this.props;a=p.Event(d);for(b=g.length;b;)c=g[--b],a[c]=d[c];return a.target||(a.target=d.srcElement||e),a.target.nodeType===3&&(a.target=a.target.parentNode),a.metaKey=!!a.metaKey,f.filter?f.filter(a,d):a},special:{load:{noBubble:!0},focus:{delegateType:"focusin"},blur:{delegateType:"focusout"},beforeunload:{setup:function(a,b,c){p.isWindow(this)&&(this.onbeforeunload=c)},teardown:function(a,b){this.onbeforeunload===b&&(this.onbeforeunload=null)}}},simulate:function(a,b,c,d){var e=p.extend(new p.Event,c,{type:a,isSimulated:!0,originalEvent:{}});d?p.event.trigger(e,null,b):p.event.dispatch.call(b,e),e.isDefaultPrevented()&&c.preventDefault()}},p.event.handle=p.event.dispatch,p.removeEvent=e.removeEventListener?function(a,b,c){a.removeEventListener&&a.removeEventListener(b,c,!1)}:function(a,b,c){var d="on"+b;a.detachEvent&&(typeof a[d]=="undefined"&&(a[d]=null),a.detachEvent(d,c))},p.Event=function(a,b){if(this instanceof p.Event)a&&a.type?(this.originalEvent=a,this.type=a.type,this.isDefaultPrevented=a.defaultPrevented||a.returnValue===!1||a.getPreventDefault&&a.getPreventDefault()?bb:ba):this.type=a,b&&p.extend(this,b),this.timeStamp=a&&a.timeStamp||p.now(),this[p.expando]=!0;else return new p.Event(a,b)},p.Event.prototype={preventDefault:function(){this.isDefaultPrevented=bb;var a=this.originalEvent;if(!a)return;a.preventDefault?a.preventDefault():a.returnValue=!1},stopPropagation:function(){this.isPropagationStopped=bb;var a=this.originalEvent;if(!a)return;a.stopPropagation&&a.stopPropagation(),a.cancelBubble=!0},stopImmediatePropagation:function(){this.isImmediatePropagationStopped=bb,this.stopPropagation()},isDefaultPrevented:ba,isPropagationStopped:ba,isImmediatePropagationStopped:ba},p.each({mouseenter:"mouseover",mouseleave:"mouseout"},function(a,b){p.event.special[a]={delegateType:b,bindType:b,handle:function(a){var c,d=this,e=a.relatedTarget,f=a.handleObj,g=f.selector;if(!e||e!==d&&!p.contains(d,e))a.type=f.origType,c=f.handler.apply(this,arguments),a.type=b;return c}}}),p.support.submitBubbles||(p.event.special.submit={setup:function(){if(p.nodeName(this,"form"))return!1;p.event.add(this,"click._submit keypress._submit",function(a){var c=a.target,d=p.nodeName(c,"input")||p.nodeName(c,"button")?c.form:b;d&&!p._data(d,"_submit_attached")&&(p.event.add(d,"submit._submit",function(a){a._submit_bubble=!0}),p._data(d,"_submit_attached",!0))})},postDispatch:function(a){a._submit_bubble&&(delete a._submit_bubble,this.parentNode&&!a.isTrigger&&p.event.simulate("submit",this.parentNode,a,!0))},teardown:function(){if(p.nodeName(this,"form"))return!1;p.event.remove(this,"._submit")}}),p.support.changeBubbles||(p.event.special.change={setup:function(){if(V.test(this.nodeName)){if(this.type==="checkbox"||this.type==="radio")p.event.add(this,"propertychange._change",function(a){a.originalEvent.propertyName==="checked"&&(this._just_changed=!0)}),p.event.add(this,"click._change",function(a){this._just_changed&&!a.isTrigger&&(this._just_changed=!1),p.event.simulate("change",this,a,!0)});return!1}p.event.add(this,"beforeactivate._change",function(a){var b=a.target;V.test(b.nodeName)&&!p._data(b,"_change_attached")&&(p.event.add(b,"change._change",function(a){this.parentNode&&!a.isSimulated&&!a.isTrigger&&p.event.simulate("change",this.parentNode,a,!0)}),p._data(b,"_change_attached",!0))})},handle:function(a){var b=a.target;if(this!==b||a.isSimulated||a.isTrigger||b.type!=="radio"&&b.type!=="checkbox")return a.handleObj.handler.apply(this,arguments)},teardown:function(){return p.event.remove(this,"._change"),!V.test(this.nodeName)}}),p.support.focusinBubbles||p.each({focus:"focusin",blur:"focusout"},function(a,b){var c=0,d=function(a){p.event.simulate(b,a.target,p.event.fix(a),!0)};p.event.special[b]={setup:function(){c++===0&&e.addEventListener(a,d,!0)},teardown:function(){--c===0&&e.removeEventListener(a,d,!0)}}}),p.fn.extend({on:function(a,c,d,e,f){var g,h;if(typeof a=="object"){typeof c!="string"&&(d=d||c,c=b);for(h in a)this.on(h,c,d,a[h],f);return this}d==null&&e==null?(e=c,d=c=b):e==null&&(typeof c=="string"?(e=d,d=b):(e=d,d=c,c=b));if(e===!1)e=ba;else if(!e)return this;return f===1&&(g=e,e=function(a){return p().off(a),g.apply(this,arguments)},e.guid=g.guid||(g.guid=p.guid++)),this.each(function(){p.event.add(this,a,e,d,c)})},one:function(a,b,c,d){return this.on(a,b,c,d,1)},off:function(a,c,d){var e,f;if(a&&a.preventDefault&&a.handleObj)return e=a.handleObj,p(a.delegateTarget).off(e.namespace?e.origType+"."+e.namespace:e.origType,e.selector,e.handler),this;if(typeof a=="object"){for(f in a)this.off(f,c,a[f]);return this}if(c===!1||typeof c=="function")d=c,c=b;return d===!1&&(d=ba),this.each(function(){p.event.remove(this,a,d,c)})},bind:function(a,b,c){return this.on(a,null,b,c)},unbind:function(a,b){return this.off(a,null,b)},live:function(a,b,c){return p(this.context).on(a,this.selector,b,c),this},die:function(a,b){return p(this.context).off(a,this.selector||"**",b),this},delegate:function(a,b,c,d){return this.on(b,a,c,d)},undelegate:function(a,b,c){return arguments.length===1?this.off(a,"**"):this.off(b,a||"**",c)},trigger:function(a,b){return this.each(function(){p.event.trigger(a,b,this)})},triggerHandler:function(a,b){if(this[0])return p.event.trigger(a,b,this[0],!0)},toggle:function(a){var b=arguments,c=a.guid||p.guid++,d=0,e=function(c){var e=(p._data(this,"lastToggle"+a.guid)||0)%d;return p._data(this,"lastToggle"+a.guid,e+1),c.preventDefault(),b[e].apply(this,arguments)||!1};e.guid=c;while(d<b.length)b[d++].guid=c;return this.click(e)},hover:function(a,b){return this.mouseenter(a).mouseleave(b||a)}}),p.each("blur focus focusin focusout load resize scroll unload click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup error contextmenu".split(" "),function(a,b){p.fn[b]=function(a,c){return c==null&&(c=a,a=null),arguments.length>0?this.on(b,null,a,c):this.trigger(b)},Y.test(b)&&(p.event.fixHooks[b]=p.event.keyHooks),Z.test(b)&&(p.event.fixHooks[b]=p.event.mouseHooks)}),function(a,b){function bc(a,b,c,d){c=c||[],b=b||r;var e,f,i,j,k=b.nodeType;if(!a||typeof a!="string")return c;if(k!==1&&k!==9)return[];i=g(b);if(!i&&!d)if(e=P.exec(a))if(j=e[1]){if(k===9){f=b.getElementById(j);if(!f||!f.parentNode)return c;if(f.id===j)return c.push(f),c}else if(b.ownerDocument&&(f=b.ownerDocument.getElementById(j))&&h(b,f)&&f.id===j)return c.push(f),c}else{if(e[2])return w.apply(c,x.call(b.getElementsByTagName(a),0)),c;if((j=e[3])&&_&&b.getElementsByClassName)return w.apply(c,x.call(b.getElementsByClassName(j),0)),c}return bp(a.replace(L,"$1"),b,c,d,i)}function bd(a){return function(b){var c=b.nodeName.toLowerCase();return c==="input"&&b.type===a}}function be(a){return function(b){var c=b.nodeName.toLowerCase();return(c==="input"||c==="button")&&b.type===a}}function bf(a){return z(function(b){return b=+b,z(function(c,d){var e,f=a([],c.length,b),g=f.length;while(g--)c[e=f[g]]&&(c[e]=!(d[e]=c[e]))})})}function bg(a,b,c){if(a===b)return c;var d=a.nextSibling;while(d){if(d===b)return-1;d=d.nextSibling}return 1}function bh(a,b){var c,d,f,g,h,i,j,k=C[o][a];if(k)return b?0:k.slice(0);h=a,i=[],j=e.preFilter;while(h){if(!c||(d=M.exec(h)))d&&(h=h.slice(d[0].length)),i.push(f=[]);c=!1;if(d=N.exec(h))f.push(c=new q(d.shift())),h=h.slice(c.length),c.type=d[0].replace(L," ");for(g in e.filter)(d=W[g].exec(h))&&(!j[g]||(d=j[g](d,r,!0)))&&(f.push(c=new q(d.shift())),h=h.slice(c.length),c.type=g,c.matches=d);if(!c)break}return b?h.length:h?bc.error(a):C(a,i).slice(0)}function bi(a,b,d){var e=b.dir,f=d&&b.dir==="parentNode",g=u++;return b.first?function(b,c,d){while(b=b[e])if(f||b.nodeType===1)return a(b,c,d)}:function(b,d,h){if(!h){var i,j=t+" "+g+" ",k=j+c;while(b=b[e])if(f||b.nodeType===1){if((i=b[o])===k)return b.sizset;if(typeof i=="string"&&i.indexOf(j)===0){if(b.sizset)return b}else{b[o]=k;if(a(b,d,h))return b.sizset=!0,b;b.sizset=!1}}}else while(b=b[e])if(f||b.nodeType===1)if(a(b,d,h))return b}}function bj(a){return a.length>1?function(b,c,d){var e=a.length;while(e--)if(!a[e](b,c,d))return!1;return!0}:a[0]}function bk(a,b,c,d,e){var f,g=[],h=0,i=a.length,j=b!=null;for(;h<i;h++)if(f=a[h])if(!c||c(f,d,e))g.push(f),j&&b.push(h);return g}function bl(a,b,c,d,e,f){return d&&!d[o]&&(d=bl(d)),e&&!e[o]&&(e=bl(e,f)),z(function(f,g,h,i){if(f&&e)return;var j,k,l,m=[],n=[],o=g.length,p=f||bo(b||"*",h.nodeType?[h]:h,[],f),q=a&&(f||!b)?bk(p,m,a,h,i):p,r=c?e||(f?a:o||d)?[]:g:q;c&&c(q,r,h,i);if(d){l=bk(r,n),d(l,[],h,i),j=l.length;while(j--)if(k=l[j])r[n[j]]=!(q[n[j]]=k)}if(f){j=a&&r.length;while(j--)if(k=r[j])f[m[j]]=!(g[m[j]]=k)}else r=bk(r===g?r.splice(o,r.length):r),e?e(null,g,r,i):w.apply(g,r)})}function bm(a){var b,c,d,f=a.length,g=e.relative[a[0].type],h=g||e.relative[" "],i=g?1:0,j=bi(function(a){return a===b},h,!0),k=bi(function(a){return y.call(b,a)>-1},h,!0),m=[function(a,c,d){return!g&&(d||c!==l)||((b=c).nodeType?j(a,c,d):k(a,c,d))}];for(;i<f;i++)if(c=e.relative[a[i].type])m=[bi(bj(m),c)];else{c=e.filter[a[i].type].apply(null,a[i].matches);if(c[o]){d=++i;for(;d<f;d++)if(e.relative[a[d].type])break;return bl(i>1&&bj(m),i>1&&a.slice(0,i-1).join("").replace(L,"$1"),c,i<d&&bm(a.slice(i,d)),d<f&&bm(a=a.slice(d)),d<f&&a.join(""))}m.push(c)}return bj(m)}function bn(a,b){var d=b.length>0,f=a.length>0,g=function(h,i,j,k,m){var n,o,p,q=[],s=0,u="0",x=h&&[],y=m!=null,z=l,A=h||f&&e.find.TAG("*",m&&i.parentNode||i),B=t+=z==null?1:Math.E;y&&(l=i!==r&&i,c=g.el);for(;(n=A[u])!=null;u++){if(f&&n){for(o=0;p=a[o];o++)if(p(n,i,j)){k.push(n);break}y&&(t=B,c=++g.el)}d&&((n=!p&&n)&&s--,h&&x.push(n))}s+=u;if(d&&u!==s){for(o=0;p=b[o];o++)p(x,q,i,j);if(h){if(s>0)while(u--)!x[u]&&!q[u]&&(q[u]=v.call(k));q=bk(q)}w.apply(k,q),y&&!h&&q.length>0&&s+b.length>1&&bc.uniqueSort(k)}return y&&(t=B,l=z),x};return g.el=0,d?z(g):g}function bo(a,b,c,d){var e=0,f=b.length;for(;e<f;e++)bc(a,b[e],c,d);return c}function bp(a,b,c,d,f){var g,h,j,k,l,m=bh(a),n=m.length;if(!d&&m.length===1){h=m[0]=m[0].slice(0);if(h.length>2&&(j=h[0]).type==="ID"&&b.nodeType===9&&!f&&e.relative[h[1].type]){b=e.find.ID(j.matches[0].replace(V,""),b,f)[0];if(!b)return c;a=a.slice(h.shift().length)}for(g=W.POS.test(a)?-1:h.length-1;g>=0;g--){j=h[g];if(e.relative[k=j.type])break;if(l=e.find[k])if(d=l(j.matches[0].replace(V,""),R.test(h[0].type)&&b.parentNode||b,f)){h.splice(g,1),a=d.length&&h.join("");if(!a)return w.apply(c,x.call(d,0)),c;break}}}return i(a,m)(d,b,f,c,R.test(a)),c}function bq(){}var c,d,e,f,g,h,i,j,k,l,m=!0,n="undefined",o=("sizcache"+Math.random()).replace(".",""),q=String,r=a.document,s=r.documentElement,t=0,u=0,v=[].pop,w=[].push,x=[].slice,y=[].indexOf||function(a){var b=0,c=this.length;for(;b<c;b++)if(this[b]===a)return b;return-1},z=function(a,b){return a[o]=b==null||b,a},A=function(){var a={},b=[];return z(function(c,d){return b.push(c)>e.cacheLength&&delete a[b.shift()],a[c]=d},a)},B=A(),C=A(),D=A(),E="[\\x20\\t\\r\\n\\f]",F="(?:\\\\.|[-\\w]|[^\\x00-\\xa0])+",G=F.replace("w","w#"),H="([*^$|!~]?=)",I="\\["+E+"*("+F+")"+E+"*(?:"+H+E+"*(?:(['\"])((?:\\\\.|[^\\\\])*?)\\3|("+G+")|)|)"+E+"*\\]",J=":("+F+")(?:\\((?:(['\"])((?:\\\\.|[^\\\\])*?)\\2|([^()[\\]]*|(?:(?:"+I+")|[^:]|\\\\.)*|.*))\\)|)",K=":(even|odd|eq|gt|lt|nth|first|last)(?:\\("+E+"*((?:-\\d)?\\d*)"+E+"*\\)|)(?=[^-]|$)",L=new RegExp("^"+E+"+|((?:^|[^\\\\])(?:\\\\.)*)"+E+"+$","g"),M=new RegExp("^"+E+"*,"+E+"*"),N=new RegExp("^"+E+"*([\\x20\\t\\r\\n\\f>+~])"+E+"*"),O=new RegExp(J),P=/^(?:#([\w\-]+)|(\w+)|\.([\w\-]+))$/,Q=/^:not/,R=/[\x20\t\r\n\f]*[+~]/,S=/:not\($/,T=/h\d/i,U=/input|select|textarea|button/i,V=/\\(?!\\)/g,W={ID:new RegExp("^#("+F+")"),CLASS:new RegExp("^\\.("+F+")"),NAME:new RegExp("^\\[name=['\"]?("+F+")['\"]?\\]"),TAG:new RegExp("^("+F.replace("w","w*")+")"),ATTR:new RegExp("^"+I),PSEUDO:new RegExp("^"+J),POS:new RegExp(K,"i"),CHILD:new RegExp("^:(only|nth|first|last)-child(?:\\("+E+"*(even|odd|(([+-]|)(\\d*)n|)"+E+"*(?:([+-]|)"+E+"*(\\d+)|))"+E+"*\\)|)","i"),needsContext:new RegExp("^"+E+"*[>+~]|"+K,"i")},X=function(a){var b=r.createElement("div");try{return a(b)}catch(c){return!1}finally{b=null}},Y=X(function(a){return a.appendChild(r.createComment("")),!a.getElementsByTagName("*").length}),Z=X(function(a){return a.innerHTML="<a href='#'></a>",a.firstChild&&typeof a.firstChild.getAttribute!==n&&a.firstChild.getAttribute("href")==="#"}),$=X(function(a){a.innerHTML="<select></select>";var b=typeof a.lastChild.getAttribute("multiple");return b!=="boolean"&&b!=="string"}),_=X(function(a){return a.innerHTML="<div class='hidden e'></div><div class='hidden'></div>",!a.getElementsByClassName||!a.getElementsByClassName("e").length?!1:(a.lastChild.className="e",a.getElementsByClassName("e").length===2)}),ba=X(function(a){a.id=o+0,a.innerHTML="<a name='"+o+"'></a><div name='"+o+"'></div>",s.insertBefore(a,s.firstChild);var b=r.getElementsByName&&r.getElementsByName(o).length===2+r.getElementsByName(o+0).length;return d=!r.getElementById(o),s.removeChild(a),b});try{x.call(s.childNodes,0)[0].nodeType}catch(bb){x=function(a){var b,c=[];for(;b=this[a];a++)c.push(b);return c}}bc.matches=function(a,b){return bc(a,null,null,b)},bc.matchesSelector=function(a,b){return bc(b,null,null,[a]).length>0},f=bc.getText=function(a){var b,c="",d=0,e=a.nodeType;if(e){if(e===1||e===9||e===11){if(typeof a.textContent=="string")return a.textContent;for(a=a.firstChild;a;a=a.nextSibling)c+=f(a)}else if(e===3||e===4)return a.nodeValue}else for(;b=a[d];d++)c+=f(b);return c},g=bc.isXML=function(a){var b=a&&(a.ownerDocument||a).documentElement;return b?b.nodeName!=="HTML":!1},h=bc.contains=s.contains?function(a,b){var c=a.nodeType===9?a.documentElement:a,d=b&&b.parentNode;return a===d||!!(d&&d.nodeType===1&&c.contains&&c.contains(d))}:s.compareDocumentPosition?function(a,b){return b&&!!(a.compareDocumentPosition(b)&16)}:function(a,b){while(b=b.parentNode)if(b===a)return!0;return!1},bc.attr=function(a,b){var c,d=g(a);return d||(b=b.toLowerCase()),(c=e.attrHandle[b])?c(a):d||$?a.getAttribute(b):(c=a.getAttributeNode(b),c?typeof a[b]=="boolean"?a[b]?b:null:c.specified?c.value:null:null)},e=bc.selectors={cacheLength:50,createPseudo:z,match:W,attrHandle:Z?{}:{href:function(a){return a.getAttribute("href",2)},type:function(a){return a.getAttribute("type")}},find:{ID:d?function(a,b,c){if(typeof b.getElementById!==n&&!c){var d=b.getElementById(a);return d&&d.parentNode?[d]:[]}}:function(a,c,d){if(typeof c.getElementById!==n&&!d){var e=c.getElementById(a);return e?e.id===a||typeof e.getAttributeNode!==n&&e.getAttributeNode("id").value===a?[e]:b:[]}},TAG:Y?function(a,b){if(typeof b.getElementsByTagName!==n)return b.getElementsByTagName(a)}:function(a,b){var c=b.getElementsByTagName(a);if(a==="*"){var d,e=[],f=0;for(;d=c[f];f++)d.nodeType===1&&e.push(d);return e}return c},NAME:ba&&function(a,b){if(typeof b.getElementsByName!==n)return b.getElementsByName(name)},CLASS:_&&function(a,b,c){if(typeof b.getElementsByClassName!==n&&!c)return b.getElementsByClassName(a)}},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(a){return a[1]=a[1].replace(V,""),a[3]=(a[4]||a[5]||"").replace(V,""),a[2]==="~="&&(a[3]=" "+a[3]+" "),a.slice(0,4)},CHILD:function(a){return a[1]=a[1].toLowerCase(),a[1]==="nth"?(a[2]||bc.error(a[0]),a[3]=+(a[3]?a[4]+(a[5]||1):2*(a[2]==="even"||a[2]==="odd")),a[4]=+(a[6]+a[7]||a[2]==="odd")):a[2]&&bc.error(a[0]),a},PSEUDO:function(a){var b,c;if(W.CHILD.test(a[0]))return null;if(a[3])a[2]=a[3];else if(b=a[4])O.test(b)&&(c=bh(b,!0))&&(c=b.indexOf(")",b.length-c)-b.length)&&(b=b.slice(0,c),a[0]=a[0].slice(0,c)),a[2]=b;return a.slice(0,3)}},filter:{ID:d?function(a){return a=a.replace(V,""),function(b){return b.getAttribute("id")===a}}:function(a){return a=a.replace(V,""),function(b){var c=typeof b.getAttributeNode!==n&&b.getAttributeNode("id");return c&&c.value===a}},TAG:function(a){return a==="*"?function(){return!0}:(a=a.replace(V,"").toLowerCase(),function(b){return b.nodeName&&b.nodeName.toLowerCase()===a})},CLASS:function(a){var b=B[o][a];return b||(b=B(a,new RegExp("(^|"+E+")"+a+"("+E+"|$)"))),function(a){return b.test(a.className||typeof a.getAttribute!==n&&a.getAttribute("class")||"")}},ATTR:function(a,b,c){return function(d,e){var f=bc.attr(d,a);return f==null?b==="!=":b?(f+="",b==="="?f===c:b==="!="?f!==c:b==="^="?c&&f.indexOf(c)===0:b==="*="?c&&f.indexOf(c)>-1:b==="$="?c&&f.substr(f.length-c.length)===c:b==="~="?(" "+f+" ").indexOf(c)>-1:b==="|="?f===c||f.substr(0,c.length+1)===c+"-":!1):!0}},CHILD:function(a,b,c,d){return a==="nth"?function(a){var b,e,f=a.parentNode;if(c===1&&d===0)return!0;if(f){e=0;for(b=f.firstChild;b;b=b.nextSibling)if(b.nodeType===1){e++;if(a===b)break}}return e-=d,e===c||e%c===0&&e/c>=0}:function(b){var c=b;switch(a){case"only":case"first":while(c=c.previousSibling)if(c.nodeType===1)return!1;if(a==="first")return!0;c=b;case"last":while(c=c.nextSibling)if(c.nodeType===1)return!1;return!0}}},PSEUDO:function(a,b){var c,d=e.pseudos[a]||e.setFilters[a.toLowerCase()]||bc.error("unsupported pseudo: "+a);return d[o]?d(b):d.length>1?(c=[a,a,"",b],e.setFilters.hasOwnProperty(a.toLowerCase())?z(function(a,c){var e,f=d(a,b),g=f.length;while(g--)e=y.call(a,f[g]),a[e]=!(c[e]=f[g])}):function(a){return d(a,0,c)}):d}},pseudos:{not:z(function(a){var b=[],c=[],d=i(a.replace(L,"$1"));return d[o]?z(function(a,b,c,e){var f,g=d(a,null,e,[]),h=a.length;while(h--)if(f=g[h])a[h]=!(b[h]=f)}):function(a,e,f){return b[0]=a,d(b,null,f,c),!c.pop()}}),has:z(function(a){return function(b){return bc(a,b).length>0}}),contains:z(function(a){return function(b){return(b.textContent||b.innerText||f(b)).indexOf(a)>-1}}),enabled:function(a){return a.disabled===!1},disabled:function(a){return a.disabled===!0},checked:function(a){var b=a.nodeName.toLowerCase();return b==="input"&&!!a.checked||b==="option"&&!!a.selected},selected:function(a){return a.parentNode&&a.parentNode.selectedIndex,a.selected===!0},parent:function(a){return!e.pseudos.empty(a)},empty:function(a){var b;a=a.firstChild;while(a){if(a.nodeName>"@"||(b=a.nodeType)===3||b===4)return!1;a=a.nextSibling}return!0},header:function(a){return T.test(a.nodeName)},text:function(a){var b,c;return a.nodeName.toLowerCase()==="input"&&(b=a.type)==="text"&&((c=a.getAttribute("type"))==null||c.toLowerCase()===b)},radio:bd("radio"),checkbox:bd("checkbox"),file:bd("file"),password:bd("password"),image:bd("image"),submit:be("submit"),reset:be("reset"),button:function(a){var b=a.nodeName.toLowerCase();return b==="input"&&a.type==="button"||b==="button"},input:function(a){return U.test(a.nodeName)},focus:function(a){var b=a.ownerDocument;return a===b.activeElement&&(!b.hasFocus||b.hasFocus())&&(!!a.type||!!a.href)},active:function(a){return a===a.ownerDocument.activeElement},first:bf(function(a,b,c){return[0]}),last:bf(function(a,b,c){return[b-1]}),eq:bf(function(a,b,c){return[c<0?c+b:c]}),even:bf(function(a,b,c){for(var d=0;d<b;d+=2)a.push(d);return a}),odd:bf(function(a,b,c){for(var d=1;d<b;d+=2)a.push(d);return a}),lt:bf(function(a,b,c){for(var d=c<0?c+b:c;--d>=0;)a.push(d);return a}),gt:bf(function(a,b,c){for(var d=c<0?c+b:c;++d<b;)a.push(d);return a})}},j=s.compareDocumentPosition?function(a,b){return a===b?(k=!0,0):(!a.compareDocumentPosition||!b.compareDocumentPosition?a.compareDocumentPosition:a.compareDocumentPosition(b)&4)?-1:1}:function(a,b){if(a===b)return k=!0,0;if(a.sourceIndex&&b.sourceIndex)return a.sourceIndex-b.sourceIndex;var c,d,e=[],f=[],g=a.parentNode,h=b.parentNode,i=g;if(g===h)return bg(a,b);if(!g)return-1;if(!h)return 1;while(i)e.unshift(i),i=i.parentNode;i=h;while(i)f.unshift(i),i=i.parentNode;c=e.length,d=f.length;for(var j=0;j<c&&j<d;j++)if(e[j]!==f[j])return bg(e[j],f[j]);return j===c?bg(a,f[j],-1):bg(e[j],b,1)},[0,0].sort(j),m=!k,bc.uniqueSort=function(a){var b,c=1;k=m,a.sort(j);if(k)for(;b=a[c];c++)b===a[c-1]&&a.splice(c--,1);return a},bc.error=function(a){throw new Error("Syntax error, unrecognized expression: "+a)},i=bc.compile=function(a,b){var c,d=[],e=[],f=D[o][a];if(!f){b||(b=bh(a)),c=b.length;while(c--)f=bm(b[c]),f[o]?d.push(f):e.push(f);f=D(a,bn(e,d))}return f},r.querySelectorAll&&function(){var a,b=bp,c=/'|\\/g,d=/\=[\x20\t\r\n\f]*([^'"\]]*)[\x20\t\r\n\f]*\]/g,e=[":focus"],f=[":active",":focus"],h=s.matchesSelector||s.mozMatchesSelector||s.webkitMatchesSelector||s.oMatchesSelector||s.msMatchesSelector;X(function(a){a.innerHTML="<select><option selected=''></option></select>",a.querySelectorAll("[selected]").length||e.push("\\["+E+"*(?:checked|disabled|ismap|multiple|readonly|selected|value)"),a.querySelectorAll(":checked").length||e.push(":checked")}),X(function(a){a.innerHTML="<p test=''></p>",a.querySelectorAll("[test^='']").length&&e.push("[*^$]="+E+"*(?:\"\"|'')"),a.innerHTML="<input type='hidden'/>",a.querySelectorAll(":enabled").length||e.push(":enabled",":disabled")}),e=new RegExp(e.join("|")),bp=function(a,d,f,g,h){if(!g&&!h&&(!e||!e.test(a))){var i,j,k=!0,l=o,m=d,n=d.nodeType===9&&a;if(d.nodeType===1&&d.nodeName.toLowerCase()!=="object"){i=bh(a),(k=d.getAttribute("id"))?l=k.replace(c,"\\$&"):d.setAttribute("id",l),l="[id='"+l+"'] ",j=i.length;while(j--)i[j]=l+i[j].join("");m=R.test(a)&&d.parentNode||d,n=i.join(",")}if(n)try{return w.apply(f,x.call(m.querySelectorAll(n),0)),f}catch(p){}finally{k||d.removeAttribute("id")}}return b(a,d,f,g,h)},h&&(X(function(b){a=h.call(b,"div");try{h.call(b,"[test!='']:sizzle"),f.push("!=",J)}catch(c){}}),f=new RegExp(f.join("|")),bc.matchesSelector=function(b,c){c=c.replace(d,"='$1']");if(!g(b)&&!f.test(c)&&(!e||!e.test(c)))try{var i=h.call(b,c);if(i||a||b.document&&b.document.nodeType!==11)return i}catch(j){}return bc(c,null,null,[b]).length>0})}(),e.pseudos.nth=e.pseudos.eq,e.filters=bq.prototype=e.pseudos,e.setFilters=new bq,bc.attr=p.attr,p.find=bc,p.expr=bc.selectors,p.expr[":"]=p.expr.pseudos,p.unique=bc.uniqueSort,p.text=bc.getText,p.isXMLDoc=bc.isXML,p.contains=bc.contains}(a);var bc=/Until$/,bd=/^(?:parents|prev(?:Until|All))/,be=/^.[^:#\[\.,]*$/,bf=p.expr.match.needsContext,bg={children:!0,contents:!0,next:!0,prev:!0};p.fn.extend({find:function(a){var b,c,d,e,f,g,h=this;if(typeof a!="string")return p(a).filter(function(){for(b=0,c=h.length;b<c;b++)if(p.contains(h[b],this))return!0});g=this.pushStack("","find",a);for(b=0,c=this.length;b<c;b++){d=g.length,p.find(a,this[b],g);if(b>0)for(e=d;e<g.length;e++)for(f=0;f<d;f++)if(g[f]===g[e]){g.splice(e--,1);break}}return g},has:function(a){var b,c=p(a,this),d=c.length;return this.filter(function(){for(b=0;b<d;b++)if(p.contains(this,c[b]))return!0})},not:function(a){return this.pushStack(bj(this,a,!1),"not",a)},filter:function(a){return this.pushStack(bj(this,a,!0),"filter",a)},is:function(a){return!!a&&(typeof a=="string"?bf.test(a)?p(a,this.context).index(this[0])>=0:p.filter(a,this).length>0:this.filter(a).length>0)},closest:function(a,b){var c,d=0,e=this.length,f=[],g=bf.test(a)||typeof a!="string"?p(a,b||this.context):0;for(;d<e;d++){c=this[d];while(c&&c.ownerDocument&&c!==b&&c.nodeType!==11){if(g?g.index(c)>-1:p.find.matchesSelector(c,a)){f.push(c);break}c=c.parentNode}}return f=f.length>1?p.unique(f):f,this.pushStack(f,"closest",a)},index:function(a){return a?typeof a=="string"?p.inArray(this[0],p(a)):p.inArray(a.jquery?a[0]:a,this):this[0]&&this[0].parentNode?this.prevAll().length:-1},add:function(a,b){var c=typeof a=="string"?p(a,b):p.makeArray(a&&a.nodeType?[a]:a),d=p.merge(this.get(),c);return this.pushStack(bh(c[0])||bh(d[0])?d:p.unique(d))},addBack:function(a){return this.add(a==null?this.prevObject:this.prevObject.filter(a))}}),p.fn.andSelf=p.fn.addBack,p.each({parent:function(a){var b=a.parentNode;return b&&b.nodeType!==11?b:null},parents:function(a){return p.dir(a,"parentNode")},parentsUntil:function(a,b,c){return p.dir(a,"parentNode",c)},next:function(a){return bi(a,"nextSibling")},prev:function(a){return bi(a,"previousSibling")},nextAll:function(a){return p.dir(a,"nextSibling")},prevAll:function(a){return p.dir(a,"previousSibling")},nextUntil:function(a,b,c){return p.dir(a,"nextSibling",c)},prevUntil:function(a,b,c){return p.dir(a,"previousSibling",c)},siblings:function(a){return p.sibling((a.parentNode||{}).firstChild,a)},children:function(a){return p.sibling(a.firstChild)},contents:function(a){return p.nodeName(a,"iframe")?a.contentDocument||a.contentWindow.document:p.merge([],a.childNodes)}},function(a,b){p.fn[a]=function(c,d){var e=p.map(this,b,c);return bc.test(a)||(d=c),d&&typeof d=="string"&&(e=p.filter(d,e)),e=this.length>1&&!bg[a]?p.unique(e):e,this.length>1&&bd.test(a)&&(e=e.reverse()),this.pushStack(e,a,k.call(arguments).join(","))}}),p.extend({filter:function(a,b,c){return c&&(a=":not("+a+")"),b.length===1?p.find.matchesSelector(b[0],a)?[b[0]]:[]:p.find.matches(a,b)},dir:function(a,c,d){var e=[],f=a[c];while(f&&f.nodeType!==9&&(d===b||f.nodeType!==1||!p(f).is(d)))f.nodeType===1&&e.push(f),f=f[c];return e},sibling:function(a,b){var c=[];for(;a;a=a.nextSibling)a.nodeType===1&&a!==b&&c.push(a);return c}});var bl="abbr|article|aside|audio|bdi|canvas|data|datalist|details|figcaption|figure|footer|header|hgroup|mark|meter|nav|output|progress|section|summary|time|video",bm=/ jQuery\d+="(?:null|\d+)"/g,bn=/^\s+/,bo=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/gi,bp=/<([\w:]+)/,bq=/<tbody/i,br=/<|&#?\w+;/,bs=/<(?:script|style|link)/i,bt=/<(?:script|object|embed|option|style)/i,bu=new RegExp("<(?:"+bl+")[\\s/>]","i"),bv=/^(?:checkbox|radio)$/,bw=/checked\s*(?:[^=]|=\s*.checked.)/i,bx=/\/(java|ecma)script/i,by=/^\s*<!(?:\[CDATA\[|\-\-)|[\]\-]{2}>\s*$/g,bz={option:[1,"<select multiple='multiple'>","</select>"],legend:[1,"<fieldset>","</fieldset>"],thead:[1,"<table>","</table>"],tr:[2,"<table><tbody>","</tbody></table>"],td:[3,"<table><tbody><tr>","</tr></tbody></table>"],col:[2,"<table><tbody></tbody><colgroup>","</colgroup></table>"],area:[1,"<map>","</map>"],_default:[0,"",""]},bA=bk(e),bB=bA.appendChild(e.createElement("div"));bz.optgroup=bz.option,bz.tbody=bz.tfoot=bz.colgroup=bz.caption=bz.thead,bz.th=bz.td,p.support.htmlSerialize||(bz._default=[1,"X<div>","</div>"]),p.fn.extend({text:function(a){return p.access(this,function(a){return a===b?p.text(this):this.empty().append((this[0]&&this[0].ownerDocument||e).createTextNode(a))},null,a,arguments.length)},wrapAll:function(a){if(p.isFunction(a))return this.each(function(b){p(this).wrapAll(a.call(this,b))});if(this[0]){var b=p(a,this[0].ownerDocument).eq(0).clone(!0);this[0].parentNode&&b.insertBefore(this[0]),b.map(function(){var a=this;while(a.firstChild&&a.firstChild.nodeType===1)a=a.firstChild;return a}).append(this)}return this},wrapInner:function(a){return p.isFunction(a)?this.each(function(b){p(this).wrapInner(a.call(this,b))}):this.each(function(){var b=p(this),c=b.contents();c.length?c.wrapAll(a):b.append(a)})},wrap:function(a){var b=p.isFunction(a);return this.each(function(c){p(this).wrapAll(b?a.call(this,c):a)})},unwrap:function(){return this.parent().each(function(){p.nodeName(this,"body")||p(this).replaceWith(this.childNodes)}).end()},append:function(){return this.domManip(arguments,!0,function(a){(this.nodeType===1||this.nodeType===11)&&this.appendChild(a)})},prepend:function(){return this.domManip(arguments,!0,function(a){(this.nodeType===1||this.nodeType===11)&&this.insertBefore(a,this.firstChild)})},before:function(){if(!bh(this[0]))return this.domManip(arguments,!1,function(a){this.parentNode.insertBefore(a,this)});if(arguments.length){var a=p.clean(arguments);return this.pushStack(p.merge(a,this),"before",this.selector)}},after:function(){if(!bh(this[0]))return this.domManip(arguments,!1,function(a){this.parentNode.insertBefore(a,this.nextSibling)});if(arguments.length){var a=p.clean(arguments);return this.pushStack(p.merge(this,a),"after",this.selector)}},remove:function(a,b){var c,d=0;for(;(c=this[d])!=null;d++)if(!a||p.filter(a,[c]).length)!b&&c.nodeType===1&&(p.cleanData(c.getElementsByTagName("*")),p.cleanData([c])),c.parentNode&&c.parentNode.removeChild(c);return this},empty:function(){var a,b=0;for(;(a=this[b])!=null;b++){a.nodeType===1&&p.cleanData(a.getElementsByTagName("*"));while(a.firstChild)a.removeChild(a.firstChild)}return this},clone:function(a,b){return a=a==null?!1:a,b=b==null?a:b,this.map(function(){return p.clone(this,a,b)})},html:function(a){return p.access(this,function(a){var c=this[0]||{},d=0,e=this.length;if(a===b)return c.nodeType===1?c.innerHTML.replace(bm,""):b;if(typeof a=="string"&&!bs.test(a)&&(p.support.htmlSerialize||!bu.test(a))&&(p.support.leadingWhitespace||!bn.test(a))&&!bz[(bp.exec(a)||["",""])[1].toLowerCase()]){a=a.replace(bo,"<$1></$2>");try{for(;d<e;d++)c=this[d]||{},c.nodeType===1&&(p.cleanData(c.getElementsByTagName("*")),c.innerHTML=a);c=0}catch(f){}}c&&this.empty().append(a)},null,a,arguments.length)},replaceWith:function(a){return bh(this[0])?this.length?this.pushStack(p(p.isFunction(a)?a():a),"replaceWith",a):this:p.isFunction(a)?this.each(function(b){var c=p(this),d=c.html();c.replaceWith(a.call(this,b,d))}):(typeof a!="string"&&(a=p(a).detach()),this.each(function(){var b=this.nextSibling,c=this.parentNode;p(this).remove(),b?p(b).before(a):p(c).append(a)}))},detach:function(a){return this.remove(a,!0)},domManip:function(a,c,d){a=[].concat.apply([],a);var e,f,g,h,i=0,j=a[0],k=[],l=this.length;if(!p.support.checkClone&&l>1&&typeof j=="string"&&bw.test(j))return this.each(function(){p(this).domManip(a,c,d)});if(p.isFunction(j))return this.each(function(e){var f=p(this);a[0]=j.call(this,e,c?f.html():b),f.domManip(a,c,d)});if(this[0]){e=p.buildFragment(a,this,k),g=e.fragment,f=g.firstChild,g.childNodes.length===1&&(g=f);if(f){c=c&&p.nodeName(f,"tr");for(h=e.cacheable||l-1;i<l;i++)d.call(c&&p.nodeName(this[i],"table")?bC(this[i],"tbody"):this[i],i===h?g:p.clone(g,!0,!0))}g=f=null,k.length&&p.each(k,function(a,b){b.src?p.ajax?p.ajax({url:b.src,type:"GET",dataType:"script",async:!1,global:!1,"throws":!0}):p.error("no ajax"):p.globalEval((b.text||b.textContent||b.innerHTML||"").replace(by,"")),b.parentNode&&b.parentNode.removeChild(b)})}return this}}),p.buildFragment=function(a,c,d){var f,g,h,i=a[0];return c=c||e,c=!c.nodeType&&c[0]||c,c=c.ownerDocument||c,a.length===1&&typeof i=="string"&&i.length<512&&c===e&&i.charAt(0)==="<"&&!bt.test(i)&&(p.support.checkClone||!bw.test(i))&&(p.support.html5Clone||!bu.test(i))&&(g=!0,f=p.fragments[i],h=f!==b),f||(f=c.createDocumentFragment(),p.clean(a,c,f,d),g&&(p.fragments[i]=h&&f)),{fragment:f,cacheable:g}},p.fragments={},p.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(a,b){p.fn[a]=function(c){var d,e=0,f=[],g=p(c),h=g.length,i=this.length===1&&this[0].parentNode;if((i==null||i&&i.nodeType===11&&i.childNodes.length===1)&&h===1)return g[b](this[0]),this;for(;e<h;e++)d=(e>0?this.clone(!0):this).get(),p(g[e])[b](d),f=f.concat(d);return this.pushStack(f,a,g.selector)}}),p.extend({clone:function(a,b,c){var d,e,f,g;p.support.html5Clone||p.isXMLDoc(a)||!bu.test("<"+a.nodeName+">")?g=a.cloneNode(!0):(bB.innerHTML=a.outerHTML,bB.removeChild(g=bB.firstChild));if((!p.support.noCloneEvent||!p.support.noCloneChecked)&&(a.nodeType===1||a.nodeType===11)&&!p.isXMLDoc(a)){bE(a,g),d=bF(a),e=bF(g);for(f=0;d[f];++f)e[f]&&bE(d[f],e[f])}if(b){bD(a,g);if(c){d=bF(a),e=bF(g);for(f=0;d[f];++f)bD(d[f],e[f])}}return d=e=null,g},clean:function(a,b,c,d){var f,g,h,i,j,k,l,m,n,o,q,r,s=b===e&&bA,t=[];if(!b||typeof b.createDocumentFragment=="undefined")b=e;for(f=0;(h=a[f])!=null;f++){typeof h=="number"&&(h+="");if(!h)continue;if(typeof h=="string")if(!br.test(h))h=b.createTextNode(h);else{s=s||bk(b),l=b.createElement("div"),s.appendChild(l),h=h.replace(bo,"<$1></$2>"),i=(bp.exec(h)||["",""])[1].toLowerCase(),j=bz[i]||bz._default,k=j[0],l.innerHTML=j[1]+h+j[2];while(k--)l=l.lastChild;if(!p.support.tbody){m=bq.test(h),n=i==="table"&&!m?l.firstChild&&l.firstChild.childNodes:j[1]==="<table>"&&!m?l.childNodes:[];for(g=n.length-1;g>=0;--g)p.nodeName(n[g],"tbody")&&!n[g].childNodes.length&&n[g].parentNode.removeChild(n[g])}!p.support.leadingWhitespace&&bn.test(h)&&l.insertBefore(b.createTextNode(bn.exec(h)[0]),l.firstChild),h=l.childNodes,l.parentNode.removeChild(l)}h.nodeType?t.push(h):p.merge(t,h)}l&&(h=l=s=null);if(!p.support.appendChecked)for(f=0;(h=t[f])!=null;f++)p.nodeName(h,"input")?bG(h):typeof h.getElementsByTagName!="undefined"&&p.grep(h.getElementsByTagName("input"),bG);if(c){q=function(a){if(!a.type||bx.test(a.type))return d?d.push(a.parentNode?a.parentNode.removeChild(a):a):c.appendChild(a)};for(f=0;(h=t[f])!=null;f++)if(!p.nodeName(h,"script")||!q(h))c.appendChild(h),typeof h.getElementsByTagName!="undefined"&&(r=p.grep(p.merge([],h.getElementsByTagName("script")),q),t.splice.apply(t,[f+1,0].concat(r)),f+=r.length)}return t},cleanData:function(a,b){var c,d,e,f,g=0,h=p.expando,i=p.cache,j=p.support.deleteExpando,k=p.event.special;for(;(e=a[g])!=null;g++)if(b||p.acceptData(e)){d=e[h],c=d&&i[d];if(c){if(c.events)for(f in c.events)k[f]?p.event.remove(e,f):p.removeEvent(e,f,c.handle);i[d]&&(delete i[d],j?delete e[h]:e.removeAttribute?e.removeAttribute(h):e[h]=null,p.deletedIds.push(d))}}}}),function(){var a,b;p.uaMatch=function(a){a=a.toLowerCase();var b=/(chrome)[ \/]([\w.]+)/.exec(a)||/(webkit)[ \/]([\w.]+)/.exec(a)||/(opera)(?:.*version|)[ \/]([\w.]+)/.exec(a)||/(msie) ([\w.]+)/.exec(a)||a.indexOf("compatible")<0&&/(mozilla)(?:.*? rv:([\w.]+)|)/.exec(a)||[];return{browser:b[1]||"",version:b[2]||"0"}},a=p.uaMatch(g.userAgent),b={},a.browser&&(b[a.browser]=!0,b.version=a.version),b.chrome?b.webkit=!0:b.webkit&&(b.safari=!0),p.browser=b,p.sub=function(){function a(b,c){return new a.fn.init(b,c)}p.extend(!0,a,this),a.superclass=this,a.fn=a.prototype=this(),a.fn.constructor=a,a.sub=this.sub,a.fn.init=function c(c,d){return d&&d instanceof p&&!(d instanceof a)&&(d=a(d)),p.fn.init.call(this,c,d,b)},a.fn.init.prototype=a.fn;var b=a(e);return a}}();var bH,bI,bJ,bK=/alpha\([^)]*\)/i,bL=/opacity=([^)]*)/,bM=/^(top|right|bottom|left)$/,bN=/^(none|table(?!-c[ea]).+)/,bO=/^margin/,bP=new RegExp("^("+q+")(.*)$","i"),bQ=new RegExp("^("+q+")(?!px)[a-z%]+$","i"),bR=new RegExp("^([-+])=("+q+")","i"),bS={},bT={position:"absolute",visibility:"hidden",display:"block"},bU={letterSpacing:0,fontWeight:400},bV=["Top","Right","Bottom","Left"],bW=["Webkit","O","Moz","ms"],bX=p.fn.toggle;p.fn.extend({css:function(a,c){return p.access(this,function(a,c,d){return d!==b?p.style(a,c,d):p.css(a,c)},a,c,arguments.length>1)},show:function(){return b$(this,!0)},hide:function(){return b$(this)},toggle:function(a,b){var c=typeof a=="boolean";return p.isFunction(a)&&p.isFunction(b)?bX.apply(this,arguments):this.each(function(){(c?a:bZ(this))?p(this).show():p(this).hide()})}}),p.extend({cssHooks:{opacity:{get:function(a,b){if(b){var c=bH(a,"opacity");return c===""?"1":c}}}},cssNumber:{fillOpacity:!0,fontWeight:!0,lineHeight:!0,opacity:!0,orphans:!0,widows:!0,zIndex:!0,zoom:!0},cssProps:{"float":p.support.cssFloat?"cssFloat":"styleFloat"},style:function(a,c,d,e){if(!a||a.nodeType===3||a.nodeType===8||!a.style)return;var f,g,h,i=p.camelCase(c),j=a.style;c=p.cssProps[i]||(p.cssProps[i]=bY(j,i)),h=p.cssHooks[c]||p.cssHooks[i];if(d===b)return h&&"get"in h&&(f=h.get(a,!1,e))!==b?f:j[c];g=typeof d,g==="string"&&(f=bR.exec(d))&&(d=(f[1]+1)*f[2]+parseFloat(p.css(a,c)),g="number");if(d==null||g==="number"&&isNaN(d))return;g==="number"&&!p.cssNumber[i]&&(d+="px");if(!h||!("set"in h)||(d=h.set(a,d,e))!==b)try{j[c]=d}catch(k){}},css:function(a,c,d,e){var f,g,h,i=p.camelCase(c);return c=p.cssProps[i]||(p.cssProps[i]=bY(a.style,i)),h=p.cssHooks[c]||p.cssHooks[i],h&&"get"in h&&(f=h.get(a,!0,e)),f===b&&(f=bH(a,c)),f==="normal"&&c in bU&&(f=bU[c]),d||e!==b?(g=parseFloat(f),d||p.isNumeric(g)?g||0:f):f},swap:function(a,b,c){var d,e,f={};for(e in b)f[e]=a.style[e],a.style[e]=b[e];d=c.call(a);for(e in b)a.style[e]=f[e];return d}}),a.getComputedStyle?bH=function(b,c){var d,e,f,g,h=a.getComputedStyle(b,null),i=b.style;return h&&(d=h[c],d===""&&!p.contains(b.ownerDocument,b)&&(d=p.style(b,c)),bQ.test(d)&&bO.test(c)&&(e=i.width,f=i.minWidth,g=i.maxWidth,i.minWidth=i.maxWidth=i.width=d,d=h.width,i.width=e,i.minWidth=f,i.maxWidth=g)),d}:e.documentElement.currentStyle&&(bH=function(a,b){var c,d,e=a.currentStyle&&a.currentStyle[b],f=a.style;return e==null&&f&&f[b]&&(e=f[b]),bQ.test(e)&&!bM.test(b)&&(c=f.left,d=a.runtimeStyle&&a.runtimeStyle.left,d&&(a.runtimeStyle.left=a.currentStyle.left),f.left=b==="fontSize"?"1em":e,e=f.pixelLeft+"px",f.left=c,d&&(a.runtimeStyle.left=d)),e===""?"auto":e}),p.each(["height","width"],function(a,b){p.cssHooks[b]={get:function(a,c,d){if(c)return a.offsetWidth===0&&bN.test(bH(a,"display"))?p.swap(a,bT,function(){return cb(a,b,d)}):cb(a,b,d)},set:function(a,c,d){return b_(a,c,d?ca(a,b,d,p.support.boxSizing&&p.css(a,"boxSizing")==="border-box"):0)}}}),p.support.opacity||(p.cssHooks.opacity={get:function(a,b){return bL.test((b&&a.currentStyle?a.currentStyle.filter:a.style.filter)||"")?.01*parseFloat(RegExp.$1)+"":b?"1":""},set:function(a,b){var c=a.style,d=a.currentStyle,e=p.isNumeric(b)?"alpha(opacity="+b*100+")":"",f=d&&d.filter||c.filter||"";c.zoom=1;if(b>=1&&p.trim(f.replace(bK,""))===""&&c.removeAttribute){c.removeAttribute("filter");if(d&&!d.filter)return}c.filter=bK.test(f)?f.replace(bK,e):f+" "+e}}),p(function(){p.support.reliableMarginRight||(p.cssHooks.marginRight={get:function(a,b){return p.swap(a,{display:"inline-block"},function(){if(b)return bH(a,"marginRight")})}}),!p.support.pixelPosition&&p.fn.position&&p.each(["top","left"],function(a,b){p.cssHooks[b]={get:function(a,c){if(c){var d=bH(a,b);return bQ.test(d)?p(a).position()[b]+"px":d}}}})}),p.expr&&p.expr.filters&&(p.expr.filters.hidden=function(a){return a.offsetWidth===0&&a.offsetHeight===0||!p.support.reliableHiddenOffsets&&(a.style&&a.style.display||bH(a,"display"))==="none"},p.expr.filters.visible=function(a){return!p.expr.filters.hidden(a)}),p.each({margin:"",padding:"",border:"Width"},function(a,b){p.cssHooks[a+b]={expand:function(c){var d,e=typeof c=="string"?c.split(" "):[c],f={};for(d=0;d<4;d++)f[a+bV[d]+b]=e[d]||e[d-2]||e[0];return f}},bO.test(a)||(p.cssHooks[a+b].set=b_)});var cd=/%20/g,ce=/\[\]$/,cf=/\r?\n/g,cg=/^(?:color|date|datetime|datetime-local|email|hidden|month|number|password|range|search|tel|text|time|url|week)$/i,ch=/^(?:select|textarea)/i;p.fn.extend({serialize:function(){return p.param(this.serializeArray())},serializeArray:function(){return this.map(function(){return this.elements?p.makeArray(this.elements):this}).filter(function(){return this.name&&!this.disabled&&(this.checked||ch.test(this.nodeName)||cg.test(this.type))}).map(function(a,b){var c=p(this).val();return c==null?null:p.isArray(c)?p.map(c,function(a,c){return{name:b.name,value:a.replace(cf,"\r\n")}}):{name:b.name,value:c.replace(cf,"\r\n")}}).get()}}),p.param=function(a,c){var d,e=[],f=function(a,b){b=p.isFunction(b)?b():b==null?"":b,e[e.length]=encodeURIComponent(a)+"="+encodeURIComponent(b)};c===b&&(c=p.ajaxSettings&&p.ajaxSettings.traditional);if(p.isArray(a)||a.jquery&&!p.isPlainObject(a))p.each(a,function(){f(this.name,this.value)});else for(d in a)ci(d,a[d],c,f);return e.join("&").replace(cd,"+")};var cj,ck,cl=/#.*$/,cm=/^(.*?):[ \t]*([^\r\n]*)\r?$/mg,cn=/^(?:about|app|app\-storage|.+\-extension|file|res|widget):$/,co=/^(?:GET|HEAD)$/,cp=/^\/\//,cq=/\?/,cr=/<script\b[^<]*(?:(?!<\/script>)<[^<]*)*<\/script>/gi,cs=/([?&])_=[^&]*/,ct=/^([\w\+\.\-]+:)(?:\/\/([^\/?#:]*)(?::(\d+)|)|)/,cu=p.fn.load,cv={},cw={},cx=["*/"]+["*"];try{ck=f.href}catch(cy){ck=e.createElement("a"),ck.href="",ck=ck.href}cj=ct.exec(ck.toLowerCase())||[],p.fn.load=function(a,c,d){if(typeof a!="string"&&cu)return cu.apply(this,arguments);if(!this.length)return this;var e,f,g,h=this,i=a.indexOf(" ");return i>=0&&(e=a.slice(i,a.length),a=a.slice(0,i)),p.isFunction(c)?(d=c,c=b):c&&typeof c=="object"&&(f="POST"),p.ajax({url:a,type:f,dataType:"html",data:c,complete:function(a,b){d&&h.each(d,g||[a.responseText,b,a])}}).done(function(a){g=arguments,h.html(e?p("<div>").append(a.replace(cr,"")).find(e):a)}),this},p.each("ajaxStart ajaxStop ajaxComplete ajaxError ajaxSuccess ajaxSend".split(" "),function(a,b){p.fn[b]=function(a){return this.on(b,a)}}),p.each(["get","post"],function(a,c){p[c]=function(a,d,e,f){return p.isFunction(d)&&(f=f||e,e=d,d=b),p.ajax({type:c,url:a,data:d,success:e,dataType:f})}}),p.extend({getScript:function(a,c){return p.get(a,b,c,"script")},getJSON:function(a,b,c){return p.get(a,b,c,"json")},ajaxSetup:function(a,b){return b?cB(a,p.ajaxSettings):(b=a,a=p.ajaxSettings),cB(a,b),a},ajaxSettings:{url:ck,isLocal:cn.test(cj[1]),global:!0,type:"GET",contentType:"application/x-www-form-urlencoded; charset=UTF-8",processData:!0,async:!0,accepts:{xml:"application/xml, text/xml",html:"text/html",text:"text/plain",json:"application/json, text/javascript","*":cx},contents:{xml:/xml/,html:/html/,json:/json/},responseFields:{xml:"responseXML",text:"responseText"},converters:{"* text":a.String,"text html":!0,"text json":p.parseJSON,"text xml":p.parseXML},flatOptions:{context:!0,url:!0}},ajaxPrefilter:cz(cv),ajaxTransport:cz(cw),ajax:function(a,c){function y(a,c,f,i){var k,s,t,u,w,y=c;if(v===2)return;v=2,h&&clearTimeout(h),g=b,e=i||"",x.readyState=a>0?4:0,f&&(u=cC(l,x,f));if(a>=200&&a<300||a===304)l.ifModified&&(w=x.getResponseHeader("Last-Modified"),w&&(p.lastModified[d]=w),w=x.getResponseHeader("Etag"),w&&(p.etag[d]=w)),a===304?(y="notmodified",k=!0):(k=cD(l,u),y=k.state,s=k.data,t=k.error,k=!t);else{t=y;if(!y||a)y="error",a<0&&(a=0)}x.status=a,x.statusText=(c||y)+"",k?o.resolveWith(m,[s,y,x]):o.rejectWith(m,[x,y,t]),x.statusCode(r),r=b,j&&n.trigger("ajax"+(k?"Success":"Error"),[x,l,k?s:t]),q.fireWith(m,[x,y]),j&&(n.trigger("ajaxComplete",[x,l]),--p.active||p.event.trigger("ajaxStop"))}typeof a=="object"&&(c=a,a=b),c=c||{};var d,e,f,g,h,i,j,k,l=p.ajaxSetup({},c),m=l.context||l,n=m!==l&&(m.nodeType||m instanceof p)?p(m):p.event,o=p.Deferred(),q=p.Callbacks("once memory"),r=l.statusCode||{},t={},u={},v=0,w="canceled",x={readyState:0,setRequestHeader:function(a,b){if(!v){var c=a.toLowerCase();a=u[c]=u[c]||a,t[a]=b}return this},getAllResponseHeaders:function(){return v===2?e:null},getResponseHeader:function(a){var c;if(v===2){if(!f){f={};while(c=cm.exec(e))f[c[1].toLowerCase()]=c[2]}c=f[a.toLowerCase()]}return c===b?null:c},overrideMimeType:function(a){return v||(l.mimeType=a),this},abort:function(a){return a=a||w,g&&g.abort(a),y(0,a),this}};o.promise(x),x.success=x.done,x.error=x.fail,x.complete=q.add,x.statusCode=function(a){if(a){var b;if(v<2)for(b in a)r[b]=[r[b],a[b]];else b=a[x.status],x.always(b)}return this},l.url=((a||l.url)+"").replace(cl,"").replace(cp,cj[1]+"//"),l.dataTypes=p.trim(l.dataType||"*").toLowerCase().split(s),l.crossDomain==null&&(i=ct.exec(l.url.toLowerCase())||!1,l.crossDomain=i&&i.join(":")+(i[3]?"":i[1]==="http:"?80:443)!==cj.join(":")+(cj[3]?"":cj[1]==="http:"?80:443)),l.data&&l.processData&&typeof l.data!="string"&&(l.data=p.param(l.data,l.traditional)),cA(cv,l,c,x);if(v===2)return x;j=l.global,l.type=l.type.toUpperCase(),l.hasContent=!co.test(l.type),j&&p.active++===0&&p.event.trigger("ajaxStart");if(!l.hasContent){l.data&&(l.url+=(cq.test(l.url)?"&":"?")+l.data,delete l.data),d=l.url;if(l.cache===!1){var z=p.now(),A=l.url.replace(cs,"$1_="+z);l.url=A+(A===l.url?(cq.test(l.url)?"&":"?")+"_="+z:"")}}(l.data&&l.hasContent&&l.contentType!==!1||c.contentType)&&x.setRequestHeader("Content-Type",l.contentType),l.ifModified&&(d=d||l.url,p.lastModified[d]&&x.setRequestHeader("If-Modified-Since",p.lastModified[d]),p.etag[d]&&x.setRequestHeader("If-None-Match",p.etag[d])),x.setRequestHeader("Accept",l.dataTypes[0]&&l.accepts[l.dataTypes[0]]?l.accepts[l.dataTypes[0]]+(l.dataTypes[0]!=="*"?", "+cx+"; q=0.01":""):l.accepts["*"]);for(k in l.headers)x.setRequestHeader(k,l.headers[k]);if(!l.beforeSend||l.beforeSend.call(m,x,l)!==!1&&v!==2){w="abort";for(k in{success:1,error:1,complete:1})x[k](l[k]);g=cA(cw,l,c,x);if(!g)y(-1,"No Transport");else{x.readyState=1,j&&n.trigger("ajaxSend",[x,l]),l.async&&l.timeout>0&&(h=setTimeout(function(){x.abort("timeout")},l.timeout));try{v=1,g.send(t,y)}catch(B){if(v<2)y(-1,B);else throw B}}return x}return x.abort()},active:0,lastModified:{},etag:{}});var cE=[],cF=/\?/,cG=/(=)\?(?=&|$)|\?\?/,cH=p.now();p.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var a=cE.pop()||p.expando+"_"+cH++;return this[a]=!0,a}}),p.ajaxPrefilter("json jsonp",function(c,d,e){var f,g,h,i=c.data,j=c.url,k=c.jsonp!==!1,l=k&&cG.test(j),m=k&&!l&&typeof i=="string"&&!(c.contentType||"").indexOf("application/x-www-form-urlencoded")&&cG.test(i);if(c.dataTypes[0]==="jsonp"||l||m)return f=c.jsonpCallback=p.isFunction(c.jsonpCallback)?c.jsonpCallback():c.jsonpCallback,g=a[f],l?c.url=j.replace(cG,"$1"+f):m?c.data=i.replace(cG,"$1"+f):k&&(c.url+=(cF.test(j)?"&":"?")+c.jsonp+"="+f),c.converters["script json"]=function(){return h||p.error(f+" was not called"),h[0]},c.dataTypes[0]="json",a[f]=function(){h=arguments},e.always(function(){a[f]=g,c[f]&&(c.jsonpCallback=d.jsonpCallback,cE.push(f)),h&&p.isFunction(g)&&g(h[0]),h=g=b}),"script"}),p.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/javascript|ecmascript/},converters:{"text script":function(a){return p.globalEval(a),a}}}),p.ajaxPrefilter("script",function(a){a.cache===b&&(a.cache=!1),a.crossDomain&&(a.type="GET",a.global=!1)}),p.ajaxTransport("script",function(a){if(a.crossDomain){var c,d=e.head||e.getElementsByTagName("head")[0]||e.documentElement;return{send:function(f,g){c=e.createElement("script"),c.async="async",a.scriptCharset&&(c.charset=a.scriptCharset),c.src=a.url,c.onload=c.onreadystatechange=function(a,e){if(e||!c.readyState||/loaded|complete/.test(c.readyState))c.onload=c.onreadystatechange=null,d&&c.parentNode&&d.removeChild(c),c=b,e||g(200,"success")},d.insertBefore(c,d.firstChild)},abort:function(){c&&c.onload(0,1)}}}});var cI,cJ=a.ActiveXObject?function(){for(var a in cI)cI[a](0,1)}:!1,cK=0;p.ajaxSettings.xhr=a.ActiveXObject?function(){return!this.isLocal&&cL()||cM()}:cL,function(a){p.extend(p.support,{ajax:!!a,cors:!!a&&"withCredentials"in a})}(p.ajaxSettings.xhr()),p.support.ajax&&p.ajaxTransport(function(c){if(!c.crossDomain||p.support.cors){var d;return{send:function(e,f){var g,h,i=c.xhr();c.username?i.open(c.type,c.url,c.async,c.username,c.password):i.open(c.type,c.url,c.async);if(c.xhrFields)for(h in c.xhrFields)i[h]=c.xhrFields[h];c.mimeType&&i.overrideMimeType&&i.overrideMimeType(c.mimeType),!c.crossDomain&&!e["X-Requested-With"]&&(e["X-Requested-With"]="XMLHttpRequest");try{for(h in e)i.setRequestHeader(h,e[h])}catch(j){}i.send(c.hasContent&&c.data||null),d=function(a,e){var h,j,k,l,m;try{if(d&&(e||i.readyState===4)){d=b,g&&(i.onreadystatechange=p.noop,cJ&&delete cI[g]);if(e)i.readyState!==4&&i.abort();else{h=i.status,k=i.getAllResponseHeaders(),l={},m=i.responseXML,m&&m.documentElement&&(l.xml=m);try{l.text=i.responseText}catch(a){}try{j=i.statusText}catch(n){j=""}!h&&c.isLocal&&!c.crossDomain?h=l.text?200:404:h===1223&&(h=204)}}}catch(o){e||f(-1,o)}l&&f(h,j,l,k)},c.async?i.readyState===4?setTimeout(d,0):(g=++cK,cJ&&(cI||(cI={},p(a).unload(cJ)),cI[g]=d),i.onreadystatechange=d):d()},abort:function(){d&&d(0,1)}}}});var cN,cO,cP=/^(?:toggle|show|hide)$/,cQ=new RegExp("^(?:([-+])=|)("+q+")([a-z%]*)$","i"),cR=/queueHooks$/,cS=[cY],cT={"*":[function(a,b){var c,d,e=this.createTween(a,b),f=cQ.exec(b),g=e.cur(),h=+g||0,i=1,j=20;if(f){c=+f[2],d=f[3]||(p.cssNumber[a]?"":"px");if(d!=="px"&&h){h=p.css(e.elem,a,!0)||c||1;do i=i||".5",h=h/i,p.style(e.elem,a,h+d);while(i!==(i=e.cur()/g)&&i!==1&&--j)}e.unit=d,e.start=h,e.end=f[1]?h+(f[1]+1)*c:c}return e}]};p.Animation=p.extend(cW,{tweener:function(a,b){p.isFunction(a)?(b=a,a=["*"]):a=a.split(" ");var c,d=0,e=a.length;for(;d<e;d++)c=a[d],cT[c]=cT[c]||[],cT[c].unshift(b)},prefilter:function(a,b){b?cS.unshift(a):cS.push(a)}}),p.Tween=cZ,cZ.prototype={constructor:cZ,init:function(a,b,c,d,e,f){this.elem=a,this.prop=c,this.easing=e||"swing",this.options=b,this.start=this.now=this.cur(),this.end=d,this.unit=f||(p.cssNumber[c]?"":"px")},cur:function(){var a=cZ.propHooks[this.prop];return a&&a.get?a.get(this):cZ.propHooks._default.get(this)},run:function(a){var b,c=cZ.propHooks[this.prop];return this.options.duration?this.pos=b=p.easing[this.easing](a,this.options.duration*a,0,1,this.options.duration):this.pos=b=a,this.now=(this.end-this.start)*b+this.start,this.options.step&&this.options.step.call(this.elem,this.now,this),c&&c.set?c.set(this):cZ.propHooks._default.set(this),this}},cZ.prototype.init.prototype=cZ.prototype,cZ.propHooks={_default:{get:function(a){var b;return a.elem[a.prop]==null||!!a.elem.style&&a.elem.style[a.prop]!=null?(b=p.css(a.elem,a.prop,!1,""),!b||b==="auto"?0:b):a.elem[a.prop]},set:function(a){p.fx.step[a.prop]?p.fx.step[a.prop](a):a.elem.style&&(a.elem.style[p.cssProps[a.prop]]!=null||p.cssHooks[a.prop])?p.style(a.elem,a.prop,a.now+a.unit):a.elem[a.prop]=a.now}}},cZ.propHooks.scrollTop=cZ.propHooks.scrollLeft={set:function(a){a.elem.nodeType&&a.elem.parentNode&&(a.elem[a.prop]=a.now)}},p.each(["toggle","show","hide"],function(a,b){var c=p.fn[b];p.fn[b]=function(d,e,f){return d==null||typeof d=="boolean"||!a&&p.isFunction(d)&&p.isFunction(e)?c.apply(this,arguments):this.animate(c$(b,!0),d,e,f)}}),p.fn.extend({fadeTo:function(a,b,c,d){return this.filter(bZ).css("opacity",0).show().end().animate({opacity:b},a,c,d)},animate:function(a,b,c,d){var e=p.isEmptyObject(a),f=p.speed(b,c,d),g=function(){var b=cW(this,p.extend({},a),f);e&&b.stop(!0)};return e||f.queue===!1?this.each(g):this.queue(f.queue,g)},stop:function(a,c,d){var e=function(a){var b=a.stop;delete a.stop,b(d)};return typeof a!="string"&&(d=c,c=a,a=b),c&&a!==!1&&this.queue(a||"fx",[]),this.each(function(){var b=!0,c=a!=null&&a+"queueHooks",f=p.timers,g=p._data(this);if(c)g[c]&&g[c].stop&&e(g[c]);else for(c in g)g[c]&&g[c].stop&&cR.test(c)&&e(g[c]);for(c=f.length;c--;)f[c].elem===this&&(a==null||f[c].queue===a)&&(f[c].anim.stop(d),b=!1,f.splice(c,1));(b||!d)&&p.dequeue(this,a)})}}),p.each({slideDown:c$("show"),slideUp:c$("hide"),slideToggle:c$("toggle"),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"},fadeToggle:{opacity:"toggle"}},function(a,b){p.fn[a]=function(a,c,d){return this.animate(b,a,c,d)}}),p.speed=function(a,b,c){var d=a&&typeof a=="object"?p.extend({},a):{complete:c||!c&&b||p.isFunction(a)&&a,duration:a,easing:c&&b||b&&!p.isFunction(b)&&b};d.duration=p.fx.off?0:typeof d.duration=="number"?d.duration:d.duration in p.fx.speeds?p.fx.speeds[d.duration]:p.fx.speeds._default;if(d.queue==null||d.queue===!0)d.queue="fx";return d.old=d.complete,d.complete=function(){p.isFunction(d.old)&&d.old.call(this),d.queue&&p.dequeue(this,d.queue)},d},p.easing={linear:function(a){return a},swing:function(a){return.5-Math.cos(a*Math.PI)/2}},p.timers=[],p.fx=cZ.prototype.init,p.fx.tick=function(){var a,b=p.timers,c=0;for(;c<b.length;c++)a=b[c],!a()&&b[c]===a&&b.splice(c--,1);b.length||p.fx.stop()},p.fx.timer=function(a){a()&&p.timers.push(a)&&!cO&&(cO=setInterval(p.fx.tick,p.fx.interval))},p.fx.interval=13,p.fx.stop=function(){clearInterval(cO),cO=null},p.fx.speeds={slow:600,fast:200,_default:400},p.fx.step={},p.expr&&p.expr.filters&&(p.expr.filters.animated=function(a){return p.grep(p.timers,function(b){return a===b.elem}).length});var c_=/^(?:body|html)$/i;p.fn.offset=function(a){if(arguments.length)return a===b?this:this.each(function(b){p.offset.setOffset(this,a,b)});var c,d,e,f,g,h,i,j={top:0,left:0},k=this[0],l=k&&k.ownerDocument;if(!l)return;return(d=l.body)===k?p.offset.bodyOffset(k):(c=l.documentElement,p.contains(c,k)?(typeof k.getBoundingClientRect!="undefined"&&(j=k.getBoundingClientRect()),e=da(l),f=c.clientTop||d.clientTop||0,g=c.clientLeft||d.clientLeft||0,h=e.pageYOffset||c.scrollTop,i=e.pageXOffset||c.scrollLeft,{top:j.top+h-f,left:j.left+i-g}):j)},p.offset={bodyOffset:function(a){var b=a.offsetTop,c=a.offsetLeft;return p.support.doesNotIncludeMarginInBodyOffset&&(b+=parseFloat(p.css(a,"marginTop"))||0,c+=parseFloat(p.css(a,"marginLeft"))||0),{top:b,left:c}},setOffset:function(a,b,c){var d=p.css(a,"position");d==="static"&&(a.style.position="relative");var e=p(a),f=e.offset(),g=p.css(a,"top"),h=p.css(a,"left"),i=(d==="absolute"||d==="fixed")&&p.inArray("auto",[g,h])>-1,j={},k={},l,m;i?(k=e.position(),l=k.top,m=k.left):(l=parseFloat(g)||0,m=parseFloat(h)||0),p.isFunction(b)&&(b=b.call(a,c,f)),b.top!=null&&(j.top=b.top-f.top+l),b.left!=null&&(j.left=b.left-f.left+m),"using"in b?b.using.call(a,j):e.css(j)}},p.fn.extend({position:function(){if(!this[0])return;var a=this[0],b=this.offsetParent(),c=this.offset(),d=c_.test(b[0].nodeName)?{top:0,left:0}:b.offset();return c.top-=parseFloat(p.css(a,"marginTop"))||0,c.left-=parseFloat(p.css(a,"marginLeft"))||0,d.top+=parseFloat(p.css(b[0],"borderTopWidth"))||0,d.left+=parseFloat(p.css(b[0],"borderLeftWidth"))||0,{top:c.top-d.top,left:c.left-d.left}},offsetParent:function(){return this.map(function(){var a=this.offsetParent||e.body;while(a&&!c_.test(a.nodeName)&&p.css(a,"position")==="static")a=a.offsetParent;return a||e.body})}}),p.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(a,c){var d=/Y/.test(c);p.fn[a]=function(e){return p.access(this,function(a,e,f){var g=da(a);if(f===b)return g?c in g?g[c]:g.document.documentElement[e]:a[e];g?g.scrollTo(d?p(g).scrollLeft():f,d?f:p(g).scrollTop()):a[e]=f},a,e,arguments.length,null)}}),p.each({Height:"height",Width:"width"},function(a,c){p.each({padding:"inner"+a,content:c,"":"outer"+a},function(d,e){p.fn[e]=function(e,f){var g=arguments.length&&(d||typeof e!="boolean"),h=d||(e===!0||f===!0?"margin":"border");return p.access(this,function(c,d,e){var f;return p.isWindow(c)?c.document.documentElement["client"+a]:c.nodeType===9?(f=c.documentElement,Math.max(c.body["scroll"+a],f["scroll"+a],c.body["offset"+a],f["offset"+a],f["client"+a])):e===b?p.css(c,d,e,h):p.style(c,d,e,h)},c,g?e:b,g,null)}})}),a.jQuery=a.$=p,typeof define=="function"&&define.amd&&define.amd.jQuery&&define("jquery",[],function(){return p})})(window); |
| URL | http://zero.webappsecurity.com/resources/js/placeholders.min.js |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | select |
| Request Header - size: 287 bytes. |
GET http://zero.webappsecurity.com/resources/js/placeholders.min.js HTTP/1.1
Host: zero.webappsecurity.com User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0 Pragma: no-cache Cache-Control: no-cache Referer: http://zero.webappsecurity.com |
| Request Body - size: 0 bytes. |
|
| Response Header - size: 359 bytes. |
HTTP/1.1 200 OK
Date: Mon, 14 Mar 2022 07:13:42 GMT Server: Apache-Coyote/1.1 Access-Control-Allow-Origin: * Accept-Ranges: bytes ETag: W/"5615-1360116138000" Last-Modified: Wed, 06 Feb 2013 02:02:18 GMT Cache-Control: max-age=2678400 Expires: Thu, 14 Apr 2022 07:13:43 GMT Content-Type: application/javascript;charset=UTF-8 Content-Length: 5615 |
| Response Body - size: 5,615 bytes. |
var Placeholders=function(){var validTypes=["text","search","url","tel","email","password","number","textarea"],settings={live:false,hideOnFocus:false,className:"placeholderspolyfill",textColor:"#999",styleImportant:true},badKeys=[37,38,39,40],interval,valueKeyDown,classNameRegExp=new RegExp("\\b"+settings.className+"\\b");function cursorToStart(elem){var range;if(elem.createTextRange){range=elem.createTextRange();range.move("character",0);range.select()}else if(elem.selectionStart){elem.focus();
elem.setSelectionRange(0,0)}}function focusHandler(){var type;if(this.value===this.getAttribute("placeholder"))if(!settings.hideOnFocus)cursorToStart(this);else{this.className=this.className.replace(classNameRegExp,"");this.value="";type=this.getAttribute("data-placeholdertype");if(type)this.type=type}}function blurHandler(){var type;if(this.value===""){this.className=this.className+" "+settings.className;this.value=this.getAttribute("placeholder");type=this.getAttribute("data-placeholdertype");if(type)this.type= "text"}}function submitHandler(){var inputs=this.getElementsByTagName("input"),textareas=this.getElementsByTagName("textarea"),numInputs=inputs.length,num=numInputs+textareas.length,element,placeholder,i;for(i=0;i<num;i+=1){element=i<numInputs?inputs[i]:textareas[i-numInputs];placeholder=element.getAttribute("placeholder");if(element.value===placeholder)element.value=""}}function keydownHandler(event){valueKeyDown=this.value;return!(valueKeyDown===this.getAttribute("placeholder")&&badKeys.indexOf(event.keyCode)> -1)}function keyupHandler(){var type;if(this.value!==valueKeyDown){this.className=this.className.replace(classNameRegExp,"");this.value=this.value.replace(this.getAttribute("placeholder"),"");type=this.getAttribute("data-placeholdertype");if(type)this.type=type}if(this.value===""){blurHandler.call(this);cursorToStart(this)}}function addEventListener(element,event,fn){if(element.addEventListener)return element.addEventListener(event,fn.bind(element),false);if(element.attachEvent)return element.attachEvent("on"+ event,fn.bind(element))}function addEventListeners(element){if(!settings.hideOnFocus){addEventListener(element,"keydown",keydownHandler);addEventListener(element,"keyup",keyupHandler)}addEventListener(element,"focus",focusHandler);addEventListener(element,"blur",blurHandler)}function updatePlaceholders(){var inputs=document.getElementsByTagName("input"),textareas=document.getElementsByTagName("textarea"),numInputs=inputs.length,num=numInputs+textareas.length,i,form,element,oldPlaceholder,newPlaceholder; for(i=0;i<num;i+=1){element=i<numInputs?inputs[i]:textareas[i-numInputs];newPlaceholder=element.getAttribute("placeholder");if(validTypes.indexOf(element.type)>-1)if(newPlaceholder){oldPlaceholder=element.getAttribute("data-currentplaceholder");if(newPlaceholder!==oldPlaceholder){if(element.value===oldPlaceholder||element.value===newPlaceholder||!element.value){element.value=newPlaceholder;element.className=element.className+" "+settings.className}if(!oldPlaceholder){if(element.form){form=element.form; if(!form.getAttribute("data-placeholdersubmit")){addEventListener(form,"submit",submitHandler);form.setAttribute("data-placeholdersubmit","true")}}addEventListeners(element)}element.setAttribute("data-currentplaceholder",newPlaceholder)}}}}function createPlaceholders(){var inputs=document.getElementsByTagName("input"),textareas=document.getElementsByTagName("textarea"),numInputs=inputs.length,num=numInputs+textareas.length,i,element,form,placeholder;for(i=0;i<num;i+=1){element=i<numInputs?inputs[i]: textareas[i-numInputs];placeholder=element.getAttribute("placeholder");if(validTypes.indexOf(element.type)>-1)if(placeholder){if(element.type==="password")try{element.type="text";element.setAttribute("data-placeholdertype","password")}catch(e){}element.setAttribute("data-currentplaceholder",placeholder);if(element.value===""||element.value===placeholder){element.className=element.className+" "+settings.className;element.value=placeholder}if(element.form){form=element.form;if(!form.getAttribute("data-placeholdersubmit")){addEventListener(form, "submit",submitHandler);form.setAttribute("data-placeholdersubmit","true")}}addEventListeners(element)}}}function init(opts){var test=document.createElement("input"),opt,styleElem,styleRules,i,j;if(typeof test.placeholder==="undefined"){for(opt in opts)if(opts.hasOwnProperty(opt))settings[opt]=opts[opt];styleElem=document.createElement("style");styleElem.type="text/css";var importantValue=settings.styleImportant?"!important":"";styleRules=document.createTextNode("."+settings.className+" { color:"+ settings.textColor+importantValue+"; }");if(styleElem.styleSheet)styleElem.styleSheet.cssText=styleRules.nodeValue;else styleElem.appendChild(styleRules);document.getElementsByTagName("head")[0].appendChild(styleElem);if(!Array.prototype.indexOf)Array.prototype.indexOf=function(obj,start){for(i=start||0,j=this.length;i<j;i+=1)if(this[i]===obj)return i;return-1};if(!Function.prototype.bind)Function.prototype.bind=function(oThis){if(typeof this!=="function")throw new TypeError("Function.prototype.bind - what is trying to be bound is not callable"); var aArgs=Array.prototype.slice.call(arguments,1),fToBind=this,FNop=function(){},fBound=function(){return fToBind.apply(this instanceof FNop?this:oThis,aArgs.concat(Array.prototype.slice.call(arguments)))};FNop.prototype=this.prototype;fBound.prototype=new FNop;return fBound};createPlaceholders();if(settings.live)interval=setInterval(updatePlaceholders,100);return true}return false}return{init:init,refresh:updatePlaceholders}}(); |
| Instances | 3 |
| Solution |
Remove all comments that return information that may help an attacker and fix any underlying problems they refer to.
|
| Reference | |
| Tags |
OWASP_2021_A01
OWASP_2017_A03 |
| CWE Id | 200 |
| WASC Id | 13 |
| Plugin Id | 10027 |
|
Informational |
Modern Web Application |
|---|---|
| Description |
The application appears to be a modern web application. If you need to explore it automatically then the Ajax Spider may well be more effective than the standard one.
|
| URL | http://zero.webappsecurity.com |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | <a id="online-banking" class="btn btn-small btn-info">More Services</a> |
| Request Header - size: 213 bytes. |
GET http://zero.webappsecurity.com HTTP/1.1
Host: zero.webappsecurity.com User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0 Pragma: no-cache Cache-Control: no-cache |
| Request Body - size: 0 bytes. |
|
| Response Header - size: 242 bytes. |
HTTP/1.1 200 OK
Date: Mon, 14 Mar 2022 07:13:40 GMT Server: Apache-Coyote/1.1 Access-Control-Allow-Origin: * Cache-Control: no-cache, max-age=0, must-revalidate, no-store Content-Type: text/html;charset=UTF-8 Content-Language: en-US |
| Response Body - size: 12,471 bytes. |
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Zero - Personal Banking - Loans - Credit Cards</title> <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"> <meta http-equiv="X-UA-Compatible" content="IE=Edge"> <link type="text/css" rel="stylesheet" href="/resources/css/bootstrap.min.css"/> <link type="text/css" rel="stylesheet" href="/resources/css/font-awesome.css"/> <link type="text/css" rel="stylesheet" href="/resources/css/main.css"/> <script src="/resources/js/jquery-1.8.2.min.js"></script> <script src="/resources/js/bootstrap.min.js"></script> <script src="/resources/js/placeholders.min.js"></script> <script type="text/javascript"> Placeholders.init({ live: true, // Apply to future and modified elements too hideOnFocus: true // Hide the placeholder when the element receives focus }); </script> <script type="text/javascript"> $(document).ajaxError(function errorHandler(event, xhr, ajaxOptions, thrownError) { if (xhr.status == 403) { window.location.reload(); } }); </script> </head> <body> <div class="wrapper"> <div class="navbar navbar-fixed-top"> <div class="navbar-inner"> <div class="container"> <a href="/index.html" class="brand">Zero Bank</a> <div> <ul class="nav float-right"> <li> <form action="/search.html" class="navbar-search pull-right" style="padding-right: 20px"> <input type="text" id="searchTerm" name="searchTerm" class="search-query" placeholder="Search"/> </form> </li> <li> <button id="signin_button" type="button" class="signin btn btn-info"> <i class="icon-signin"></i>Signin </button> </li> </ul> </div> </div> </div> </div> <script type="text/javascript"> $(function() { var path = "/"; $("#signin_button").click(function(event) { event.preventDefault(); window.location.href = path + "login" + ".html"; }); }); </script> <div class="container"> <div class="top_offset"> <div class="row"> <div class="span12"> <div id="nav" class="clearfix"> <ul id="pages-nav"> <li id="homeMenu"><div><strong>Home</strong></div></li> <li id="onlineBankingMenu"><div><strong>Online Banking</strong></div></li> <li id="feedback"><div><strong>Feedback</strong></div></li> </ul> </div> </div> <script type="text/javascript"> $(function () { var path = "/"; var featureIdToName = { "index": "homeMenu", "online-banking": "onlineBankingMenu", "feedback": "feedback" }; if (document.location.href.match(".*" + path + "$") != null) { $("#homeMenu").addClass("active"); } else { $.each(featureIdToName, function(featureId, featureName) { if (document.location.href.indexOf(featureId + ".html") >= 0) { $("#" + featureName).addClass("active"); } }); } $.each(featureIdToName, function(featureId, featureName) { $("#nav").on("click", "li[id='" + featureName + "']", function(event) { event.preventDefault(); window.location.href = path + featureId + ".html"; }); }); }); </script> </div> <div class="row"> <div class="span12"> <div id="carousel" class="carousel slide"> <div class="carousel-inner"> <div class="active item"> <img src="/resources/img/main_carousel_1.jpg" width="940" height="401" alt=""/> <div class="custom carousel-caption"> <h4>Online Banking</h4> <p>Welcome to Zero Online Banking. Zero provides a greener and more convenient way to manage your money. Zero enables you to check your account balances, pay your bills, transfer money, and keep detailed records of your transactions, wherever there is an internet connection.</p> </div> </div> <div class="item"> <img src="/resources/img/main_carousel_2.jpg" width="940" height="401" alt=""/> <div class="custom carousel-caption"> <h4>Online Banking</h4> <p>Welcome to Zero Online Banking. Zero provides a greener and more convenient way to manage your money. Zero enables you to check your account balances, pay your bills, transfer money, and keep detailed records of your transactions, wherever there is an internet connection.</p> </div> </div> <div class="item"> <img src="/resources/img/main_carousel_3.jpg" width="940" height="401" alt=""/> <div class="custom carousel-caption"> <h4>Online Banking</h4> <p>Welcome to Zero Online Banking. Zero provides a greener and more convenient way to manage your money. Zero enables you to check your account balances, pay your bills, transfer money, and keep detailed records of your transactions, wherever there is an internet connection.</p> </div> </div> </div> <a class="carousel-control custom left" href="#carousel" data-slide="prev">‹</a> <a class="carousel-control custom right" href="#carousel" data-slide="next">›</a> </div> </div> </div> <hr class="row-divider"/> <div id="online_banking_features" class="row divider"> <div class="span3"> <h4><i class="icon icon-bookmark"></i> Online Banking</h4> <p>Click the button below to view online banking features.</p> <a id="online-banking" class="btn btn-small btn-info">More Services</a> </div> <div class="span3"> <div> <h4><span class="headers" id="account_activity_link"><i class="icon icon-user"></i>Checking Account Activity</span></h4> <p>Use Zero to view the most up-to-date listings of your deposits, withdrawals, interest payments, and a number of other useful transactions. </p> </div> </div> <div class="span3"> <div> <h4><span class="headers" id="transfer_funds_link"><i class="icon icon-random"></i>Transfer Funds</span></h4> <p>Use Zero to safely and securely transfer funds between accounts. There is no hold placed on online money transfers, so your funds are available when you need them. </p> </div> </div> <div class="span3"> <div> <h4><span class="headers" id="money_map_link"><i class="icon icon-list-alt"></i>My Money Map</span></h4> <p>Use Zero to set up and monitor your personalized money map. A money map is an easy-to-use online tool that helps you manage your finances efficiently. With Money Map, you can create a budget, sort your finances into spending and savings categories, check the interest your accounts are earning, and gain new understanding of your patterns with the help of Zero’s clear charts and graphs. </p> </div> </div> </div> <script type="text/javascript"> $(function() { $("#carousel").carousel({ interval: false }); $("div").on("click", "a[id='online-banking']", function(event){ event.preventDefault(); window.location.href = "/" + "online-banking" + ".html"; }); var path = "/bank/"; var featureIdToName = { "account_activity_link": "account-activity", "transfer_funds_link": "transfer-funds", "money_map_link": "money-map" } $.each(featureIdToName, function(featureId, featureName) { $("#online_banking_features").on("click", "span[id='" + featureId + "']", function(event) { event.preventDefault(); window.location.href = path + featureName +".html"; }); }); }); </script> </div> </div> <div class="clearfix push"></div> </div> <div class="extra"> <div class="extra-inner"> <div class="container"> <div class="row"> <div class="span4"> <ul> <li><span id="download_webinspect_link">Download WebInspect</span></li> </ul> </div> <div class="span4"> <ul> <li><span id="terms_of_use_link">Terms of Use</span></li> </ul> </div> <div class="span4"> <ul> <li><span id="contact_hp_link">Contact Micro Focus</span></li> <li><span id="privacy_statement_link">Privacy Statement</span></li> </ul> </div> </div> <div class="row"> <div class="disclaimer span12"> The Free Online Bank Web site is published by Micro Focus Fortify for the sole purpose of demonstrating the functionality and effectiveness of Micro Focus Fortify’s WebInspect products in detecting and reporting Web application vulnerabilities. This site is not a real banking site and any similarities to third party products and/or Web sites are purely coincidental. This site is provided "as is" without warranty of any kind, either express or implied. Micro Focus Fortify does not assume any risk in relation to your use of this Web site. Use of this Web site indicates that you have read and agree to Micro Focus Fortify’s Terms of Use found at <a href="https://www.microfocus.com/about/legal/#privacy" target="_blank">https://www.microfocus.com/about/legal/#privacy</a> and Micro Focus Fortify’s Online Privacy Statement found at <a href="https://www.microfocus.com/about/legal/#privacy" target="_blank">https://www.microfocus.com/about/legal/#privacy</a>. <br/><br/> Copyright © 2012-2018, Micro Focus Development Company. All rights reserved. </div> </div> </div> </div> </div> <script type="text/javascript"> $(function () { var path = "/"; var attachClickHandler = function(selector, handler) { $(".extra").on('click', selector, handler); } var footerLinks = { "download_webinspect_link": { absolute: true, page: "https://software.microfocus.com/en-us/products/webinspect-dynamic-analysis-dast/overview" }, "contact_hp_link" : { absolute: true, page: "https://support.fortify.com" }, "privacy_statement_link": { absolute: true, page: "https://www.microfocus.com/about/legal/#privacy" }, "terms_of_use_link": { absolute: true, page: "https://www.microfocus.com/about/legal/" } }; $.each(footerLinks, function(linkId, link) { attachClickHandler('span[id="' + linkId + '"]', function(event) { event.preventDefault(); if (link.absolute) { window.location.href = link.page; } else { window.location.href = path + link.page + ".html"; } }); }); }); </script> </body> </html> |
| URL | http://zero.webappsecurity.com/ |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | <a id="online-banking" class="btn btn-small btn-info">More Services</a> |
| Request Header - size: 214 bytes. |
GET http://zero.webappsecurity.com/ HTTP/1.1
Host: zero.webappsecurity.com User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0 Pragma: no-cache Cache-Control: no-cache |
| Request Body - size: 0 bytes. |
|
| Response Header - size: 242 bytes. |
HTTP/1.1 200 OK
Date: Mon, 14 Mar 2022 07:13:39 GMT Server: Apache-Coyote/1.1 Access-Control-Allow-Origin: * Cache-Control: no-cache, max-age=0, must-revalidate, no-store Content-Type: text/html;charset=UTF-8 Content-Language: en-US |
| Response Body - size: 12,471 bytes. |
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Zero - Personal Banking - Loans - Credit Cards</title> <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"> <meta http-equiv="X-UA-Compatible" content="IE=Edge"> <link type="text/css" rel="stylesheet" href="/resources/css/bootstrap.min.css"/> <link type="text/css" rel="stylesheet" href="/resources/css/font-awesome.css"/> <link type="text/css" rel="stylesheet" href="/resources/css/main.css"/> <script src="/resources/js/jquery-1.8.2.min.js"></script> <script src="/resources/js/bootstrap.min.js"></script> <script src="/resources/js/placeholders.min.js"></script> <script type="text/javascript"> Placeholders.init({ live: true, // Apply to future and modified elements too hideOnFocus: true // Hide the placeholder when the element receives focus }); </script> <script type="text/javascript"> $(document).ajaxError(function errorHandler(event, xhr, ajaxOptions, thrownError) { if (xhr.status == 403) { window.location.reload(); } }); </script> </head> <body> <div class="wrapper"> <div class="navbar navbar-fixed-top"> <div class="navbar-inner"> <div class="container"> <a href="/index.html" class="brand">Zero Bank</a> <div> <ul class="nav float-right"> <li> <form action="/search.html" class="navbar-search pull-right" style="padding-right: 20px"> <input type="text" id="searchTerm" name="searchTerm" class="search-query" placeholder="Search"/> </form> </li> <li> <button id="signin_button" type="button" class="signin btn btn-info"> <i class="icon-signin"></i>Signin </button> </li> </ul> </div> </div> </div> </div> <script type="text/javascript"> $(function() { var path = "/"; $("#signin_button").click(function(event) { event.preventDefault(); window.location.href = path + "login" + ".html"; }); }); </script> <div class="container"> <div class="top_offset"> <div class="row"> <div class="span12"> <div id="nav" class="clearfix"> <ul id="pages-nav"> <li id="homeMenu"><div><strong>Home</strong></div></li> <li id="onlineBankingMenu"><div><strong>Online Banking</strong></div></li> <li id="feedback"><div><strong>Feedback</strong></div></li> </ul> </div> </div> <script type="text/javascript"> $(function () { var path = "/"; var featureIdToName = { "index": "homeMenu", "online-banking": "onlineBankingMenu", "feedback": "feedback" }; if (document.location.href.match(".*" + path + "$") != null) { $("#homeMenu").addClass("active"); } else { $.each(featureIdToName, function(featureId, featureName) { if (document.location.href.indexOf(featureId + ".html") >= 0) { $("#" + featureName).addClass("active"); } }); } $.each(featureIdToName, function(featureId, featureName) { $("#nav").on("click", "li[id='" + featureName + "']", function(event) { event.preventDefault(); window.location.href = path + featureId + ".html"; }); }); }); </script> </div> <div class="row"> <div class="span12"> <div id="carousel" class="carousel slide"> <div class="carousel-inner"> <div class="active item"> <img src="/resources/img/main_carousel_1.jpg" width="940" height="401" alt=""/> <div class="custom carousel-caption"> <h4>Online Banking</h4> <p>Welcome to Zero Online Banking. Zero provides a greener and more convenient way to manage your money. Zero enables you to check your account balances, pay your bills, transfer money, and keep detailed records of your transactions, wherever there is an internet connection.</p> </div> </div> <div class="item"> <img src="/resources/img/main_carousel_2.jpg" width="940" height="401" alt=""/> <div class="custom carousel-caption"> <h4>Online Banking</h4> <p>Welcome to Zero Online Banking. Zero provides a greener and more convenient way to manage your money. Zero enables you to check your account balances, pay your bills, transfer money, and keep detailed records of your transactions, wherever there is an internet connection.</p> </div> </div> <div class="item"> <img src="/resources/img/main_carousel_3.jpg" width="940" height="401" alt=""/> <div class="custom carousel-caption"> <h4>Online Banking</h4> <p>Welcome to Zero Online Banking. Zero provides a greener and more convenient way to manage your money. Zero enables you to check your account balances, pay your bills, transfer money, and keep detailed records of your transactions, wherever there is an internet connection.</p> </div> </div> </div> <a class="carousel-control custom left" href="#carousel" data-slide="prev">‹</a> <a class="carousel-control custom right" href="#carousel" data-slide="next">›</a> </div> </div> </div> <hr class="row-divider"/> <div id="online_banking_features" class="row divider"> <div class="span3"> <h4><i class="icon icon-bookmark"></i> Online Banking</h4> <p>Click the button below to view online banking features.</p> <a id="online-banking" class="btn btn-small btn-info">More Services</a> </div> <div class="span3"> <div> <h4><span class="headers" id="account_activity_link"><i class="icon icon-user"></i>Checking Account Activity</span></h4> <p>Use Zero to view the most up-to-date listings of your deposits, withdrawals, interest payments, and a number of other useful transactions. </p> </div> </div> <div class="span3"> <div> <h4><span class="headers" id="transfer_funds_link"><i class="icon icon-random"></i>Transfer Funds</span></h4> <p>Use Zero to safely and securely transfer funds between accounts. There is no hold placed on online money transfers, so your funds are available when you need them. </p> </div> </div> <div class="span3"> <div> <h4><span class="headers" id="money_map_link"><i class="icon icon-list-alt"></i>My Money Map</span></h4> <p>Use Zero to set up and monitor your personalized money map. A money map is an easy-to-use online tool that helps you manage your finances efficiently. With Money Map, you can create a budget, sort your finances into spending and savings categories, check the interest your accounts are earning, and gain new understanding of your patterns with the help of Zero’s clear charts and graphs. </p> </div> </div> </div> <script type="text/javascript"> $(function() { $("#carousel").carousel({ interval: false }); $("div").on("click", "a[id='online-banking']", function(event){ event.preventDefault(); window.location.href = "/" + "online-banking" + ".html"; }); var path = "/bank/"; var featureIdToName = { "account_activity_link": "account-activity", "transfer_funds_link": "transfer-funds", "money_map_link": "money-map" } $.each(featureIdToName, function(featureId, featureName) { $("#online_banking_features").on("click", "span[id='" + featureId + "']", function(event) { event.preventDefault(); window.location.href = path + featureName +".html"; }); }); }); </script> </div> </div> <div class="clearfix push"></div> </div> <div class="extra"> <div class="extra-inner"> <div class="container"> <div class="row"> <div class="span4"> <ul> <li><span id="download_webinspect_link">Download WebInspect</span></li> </ul> </div> <div class="span4"> <ul> <li><span id="terms_of_use_link">Terms of Use</span></li> </ul> </div> <div class="span4"> <ul> <li><span id="contact_hp_link">Contact Micro Focus</span></li> <li><span id="privacy_statement_link">Privacy Statement</span></li> </ul> </div> </div> <div class="row"> <div class="disclaimer span12"> The Free Online Bank Web site is published by Micro Focus Fortify for the sole purpose of demonstrating the functionality and effectiveness of Micro Focus Fortify’s WebInspect products in detecting and reporting Web application vulnerabilities. This site is not a real banking site and any similarities to third party products and/or Web sites are purely coincidental. This site is provided "as is" without warranty of any kind, either express or implied. Micro Focus Fortify does not assume any risk in relation to your use of this Web site. Use of this Web site indicates that you have read and agree to Micro Focus Fortify’s Terms of Use found at <a href="https://www.microfocus.com/about/legal/#privacy" target="_blank">https://www.microfocus.com/about/legal/#privacy</a> and Micro Focus Fortify’s Online Privacy Statement found at <a href="https://www.microfocus.com/about/legal/#privacy" target="_blank">https://www.microfocus.com/about/legal/#privacy</a>. <br/><br/> Copyright © 2012-2018, Micro Focus Development Company. All rights reserved. </div> </div> </div> </div> </div> <script type="text/javascript"> $(function () { var path = "/"; var attachClickHandler = function(selector, handler) { $(".extra").on('click', selector, handler); } var footerLinks = { "download_webinspect_link": { absolute: true, page: "https://software.microfocus.com/en-us/products/webinspect-dynamic-analysis-dast/overview" }, "contact_hp_link" : { absolute: true, page: "https://support.fortify.com" }, "privacy_statement_link": { absolute: true, page: "https://www.microfocus.com/about/legal/#privacy" }, "terms_of_use_link": { absolute: true, page: "https://www.microfocus.com/about/legal/" } }; $.each(footerLinks, function(linkId, link) { attachClickHandler('span[id="' + linkId + '"]', function(event) { event.preventDefault(); if (link.absolute) { window.location.href = link.page; } else { window.location.href = path + link.page + ".html"; } }); }); }); </script> </body> </html> |
| URL | http://zero.webappsecurity.com/index.html |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | <a id="online-banking" class="btn btn-small btn-info">More Services</a> |
| Request Header - size: 265 bytes. |
GET http://zero.webappsecurity.com/index.html HTTP/1.1
Host: zero.webappsecurity.com User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0 Pragma: no-cache Cache-Control: no-cache Referer: http://zero.webappsecurity.com |
| Request Body - size: 0 bytes. |
|
| Response Header - size: 242 bytes. |
HTTP/1.1 200 OK
Date: Mon, 14 Mar 2022 07:13:41 GMT Server: Apache-Coyote/1.1 Access-Control-Allow-Origin: * Cache-Control: no-cache, max-age=0, must-revalidate, no-store Content-Type: text/html;charset=UTF-8 Content-Language: en-US |
| Response Body - size: 12,471 bytes. |
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Zero - Personal Banking - Loans - Credit Cards</title> <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"> <meta http-equiv="X-UA-Compatible" content="IE=Edge"> <link type="text/css" rel="stylesheet" href="/resources/css/bootstrap.min.css"/> <link type="text/css" rel="stylesheet" href="/resources/css/font-awesome.css"/> <link type="text/css" rel="stylesheet" href="/resources/css/main.css"/> <script src="/resources/js/jquery-1.8.2.min.js"></script> <script src="/resources/js/bootstrap.min.js"></script> <script src="/resources/js/placeholders.min.js"></script> <script type="text/javascript"> Placeholders.init({ live: true, // Apply to future and modified elements too hideOnFocus: true // Hide the placeholder when the element receives focus }); </script> <script type="text/javascript"> $(document).ajaxError(function errorHandler(event, xhr, ajaxOptions, thrownError) { if (xhr.status == 403) { window.location.reload(); } }); </script> </head> <body> <div class="wrapper"> <div class="navbar navbar-fixed-top"> <div class="navbar-inner"> <div class="container"> <a href="/index.html" class="brand">Zero Bank</a> <div> <ul class="nav float-right"> <li> <form action="/search.html" class="navbar-search pull-right" style="padding-right: 20px"> <input type="text" id="searchTerm" name="searchTerm" class="search-query" placeholder="Search"/> </form> </li> <li> <button id="signin_button" type="button" class="signin btn btn-info"> <i class="icon-signin"></i>Signin </button> </li> </ul> </div> </div> </div> </div> <script type="text/javascript"> $(function() { var path = "/"; $("#signin_button").click(function(event) { event.preventDefault(); window.location.href = path + "login" + ".html"; }); }); </script> <div class="container"> <div class="top_offset"> <div class="row"> <div class="span12"> <div id="nav" class="clearfix"> <ul id="pages-nav"> <li id="homeMenu"><div><strong>Home</strong></div></li> <li id="onlineBankingMenu"><div><strong>Online Banking</strong></div></li> <li id="feedback"><div><strong>Feedback</strong></div></li> </ul> </div> </div> <script type="text/javascript"> $(function () { var path = "/"; var featureIdToName = { "index": "homeMenu", "online-banking": "onlineBankingMenu", "feedback": "feedback" }; if (document.location.href.match(".*" + path + "$") != null) { $("#homeMenu").addClass("active"); } else { $.each(featureIdToName, function(featureId, featureName) { if (document.location.href.indexOf(featureId + ".html") >= 0) { $("#" + featureName).addClass("active"); } }); } $.each(featureIdToName, function(featureId, featureName) { $("#nav").on("click", "li[id='" + featureName + "']", function(event) { event.preventDefault(); window.location.href = path + featureId + ".html"; }); }); }); </script> </div> <div class="row"> <div class="span12"> <div id="carousel" class="carousel slide"> <div class="carousel-inner"> <div class="active item"> <img src="/resources/img/main_carousel_1.jpg" width="940" height="401" alt=""/> <div class="custom carousel-caption"> <h4>Online Banking</h4> <p>Welcome to Zero Online Banking. Zero provides a greener and more convenient way to manage your money. Zero enables you to check your account balances, pay your bills, transfer money, and keep detailed records of your transactions, wherever there is an internet connection.</p> </div> </div> <div class="item"> <img src="/resources/img/main_carousel_2.jpg" width="940" height="401" alt=""/> <div class="custom carousel-caption"> <h4>Online Banking</h4> <p>Welcome to Zero Online Banking. Zero provides a greener and more convenient way to manage your money. Zero enables you to check your account balances, pay your bills, transfer money, and keep detailed records of your transactions, wherever there is an internet connection.</p> </div> </div> <div class="item"> <img src="/resources/img/main_carousel_3.jpg" width="940" height="401" alt=""/> <div class="custom carousel-caption"> <h4>Online Banking</h4> <p>Welcome to Zero Online Banking. Zero provides a greener and more convenient way to manage your money. Zero enables you to check your account balances, pay your bills, transfer money, and keep detailed records of your transactions, wherever there is an internet connection.</p> </div> </div> </div> <a class="carousel-control custom left" href="#carousel" data-slide="prev">‹</a> <a class="carousel-control custom right" href="#carousel" data-slide="next">›</a> </div> </div> </div> <hr class="row-divider"/> <div id="online_banking_features" class="row divider"> <div class="span3"> <h4><i class="icon icon-bookmark"></i> Online Banking</h4> <p>Click the button below to view online banking features.</p> <a id="online-banking" class="btn btn-small btn-info">More Services</a> </div> <div class="span3"> <div> <h4><span class="headers" id="account_activity_link"><i class="icon icon-user"></i>Checking Account Activity</span></h4> <p>Use Zero to view the most up-to-date listings of your deposits, withdrawals, interest payments, and a number of other useful transactions. </p> </div> </div> <div class="span3"> <div> <h4><span class="headers" id="transfer_funds_link"><i class="icon icon-random"></i>Transfer Funds</span></h4> <p>Use Zero to safely and securely transfer funds between accounts. There is no hold placed on online money transfers, so your funds are available when you need them. </p> </div> </div> <div class="span3"> <div> <h4><span class="headers" id="money_map_link"><i class="icon icon-list-alt"></i>My Money Map</span></h4> <p>Use Zero to set up and monitor your personalized money map. A money map is an easy-to-use online tool that helps you manage your finances efficiently. With Money Map, you can create a budget, sort your finances into spending and savings categories, check the interest your accounts are earning, and gain new understanding of your patterns with the help of Zero’s clear charts and graphs. </p> </div> </div> </div> <script type="text/javascript"> $(function() { $("#carousel").carousel({ interval: false }); $("div").on("click", "a[id='online-banking']", function(event){ event.preventDefault(); window.location.href = "/" + "online-banking" + ".html"; }); var path = "/bank/"; var featureIdToName = { "account_activity_link": "account-activity", "transfer_funds_link": "transfer-funds", "money_map_link": "money-map" } $.each(featureIdToName, function(featureId, featureName) { $("#online_banking_features").on("click", "span[id='" + featureId + "']", function(event) { event.preventDefault(); window.location.href = path + featureName +".html"; }); }); }); </script> </div> </div> <div class="clearfix push"></div> </div> <div class="extra"> <div class="extra-inner"> <div class="container"> <div class="row"> <div class="span4"> <ul> <li><span id="download_webinspect_link">Download WebInspect</span></li> </ul> </div> <div class="span4"> <ul> <li><span id="terms_of_use_link">Terms of Use</span></li> </ul> </div> <div class="span4"> <ul> <li><span id="contact_hp_link">Contact Micro Focus</span></li> <li><span id="privacy_statement_link">Privacy Statement</span></li> </ul> </div> </div> <div class="row"> <div class="disclaimer span12"> The Free Online Bank Web site is published by Micro Focus Fortify for the sole purpose of demonstrating the functionality and effectiveness of Micro Focus Fortify’s WebInspect products in detecting and reporting Web application vulnerabilities. This site is not a real banking site and any similarities to third party products and/or Web sites are purely coincidental. This site is provided "as is" without warranty of any kind, either express or implied. Micro Focus Fortify does not assume any risk in relation to your use of this Web site. Use of this Web site indicates that you have read and agree to Micro Focus Fortify’s Terms of Use found at <a href="https://www.microfocus.com/about/legal/#privacy" target="_blank">https://www.microfocus.com/about/legal/#privacy</a> and Micro Focus Fortify’s Online Privacy Statement found at <a href="https://www.microfocus.com/about/legal/#privacy" target="_blank">https://www.microfocus.com/about/legal/#privacy</a>. <br/><br/> Copyright © 2012-2018, Micro Focus Development Company. All rights reserved. </div> </div> </div> </div> </div> <script type="text/javascript"> $(function () { var path = "/"; var attachClickHandler = function(selector, handler) { $(".extra").on('click', selector, handler); } var footerLinks = { "download_webinspect_link": { absolute: true, page: "https://software.microfocus.com/en-us/products/webinspect-dynamic-analysis-dast/overview" }, "contact_hp_link" : { absolute: true, page: "https://support.fortify.com" }, "privacy_statement_link": { absolute: true, page: "https://www.microfocus.com/about/legal/#privacy" }, "terms_of_use_link": { absolute: true, page: "https://www.microfocus.com/about/legal/" } }; $.each(footerLinks, function(linkId, link) { attachClickHandler('span[id="' + linkId + '"]', function(event) { event.preventDefault(); if (link.absolute) { window.location.href = link.page; } else { window.location.href = path + link.page + ".html"; } }); }); }); </script> </body> </html> |
| URL | http://zero.webappsecurity.com/resources/js/bootstrap.min.js |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | <a href="#"></a> |
| Request Header - size: 284 bytes. |
GET http://zero.webappsecurity.com/resources/js/bootstrap.min.js HTTP/1.1
Host: zero.webappsecurity.com User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0 Pragma: no-cache Cache-Control: no-cache Referer: http://zero.webappsecurity.com |
| Request Body - size: 0 bytes. |
|
| Response Header - size: 361 bytes. |
HTTP/1.1 200 OK
Date: Mon, 14 Mar 2022 07:13:42 GMT Server: Apache-Coyote/1.1 Access-Control-Allow-Origin: * Accept-Ranges: bytes ETag: W/"26898-1358437290000" Last-Modified: Thu, 17 Jan 2013 15:41:30 GMT Cache-Control: max-age=2678400 Expires: Thu, 14 Apr 2022 07:13:43 GMT Content-Type: application/javascript;charset=UTF-8 Content-Length: 26898 |
| Response Body - size: 26,898 bytes. |
/**
* Bootstrap.js by @fat & @mdo * plugins: bootstrap-transition.js, bootstrap-modal.js, bootstrap-dropdown.js, bootstrap-scrollspy.js, bootstrap-tab.js, bootstrap-tooltip.js, bootstrap-popover.js, bootstrap-affix.js, bootstrap-alert.js, bootstrap-button.js, bootstrap-collapse.js, bootstrap-carousel.js, bootstrap-typeahead.js * Copyright 2012 Twitter, Inc. * http://www.apache.org/licenses/LICENSE-2.0.txt */ !function(a){a(function(){a.support.transition=function(){var a=function(){var a=document.createElement("bootstrap"),b={WebkitTransition:"webkitTransitionEnd",MozTransition:"transitionend",OTransition:"oTransitionEnd otransitionend",transition:"transitionend"},c;for(c in b)if(a.style[c]!==undefined)return b[c]}();return a&&{end:a}}()})}(window.jQuery),!function(a){var b=function(b,c){this.options=c,this.$element=a(b).delegate('[data-dismiss="modal"]',"click.dismiss.modal",a.proxy(this.hide,this)),this.options.remote&&this.$element.find(".modal-body").load(this.options.remote)};b.prototype={constructor:b,toggle:function(){return this[this.isShown?"hide":"show"]()},show:function(){var b=this,c=a.Event("show");this.$element.trigger(c);if(this.isShown||c.isDefaultPrevented())return;this.isShown=!0,this.escape(),this.backdrop(function(){var c=a.support.transition&&b.$element.hasClass("fade");b.$element.parent().length||b.$element.appendTo(document.body),b.$element.show(),c&&b.$element[0].offsetWidth,b.$element.addClass("in").attr("aria-hidden",!1),b.enforceFocus(),c?b.$element.one(a.support.transition.end,function(){b.$element.focus().trigger("shown")}):b.$element.focus().trigger("shown")})},hide:function(b){b&&b.preventDefault();var c=this;b=a.Event("hide"),this.$element.trigger(b);if(!this.isShown||b.isDefaultPrevented())return;this.isShown=!1,this.escape(),a(document).off("focusin.modal"),this.$element.removeClass("in").attr("aria-hidden",!0),a.support.transition&&this.$element.hasClass("fade")?this.hideWithTransition():this.hideModal()},enforceFocus:function(){var b=this;a(document).on("focusin.modal",function(a){b.$element[0]!==a.target&&!b.$element.has(a.target).length&&b.$element.focus()})},escape:function(){var a=this;this.isShown&&this.options.keyboard?this.$element.on("keyup.dismiss.modal",function(b){b.which==27&&a.hide()}):this.isShown||this.$element.off("keyup.dismiss.modal")},hideWithTransition:function(){var b=this,c=setTimeout(function(){b.$element.off(a.support.transition.end),b.hideModal()},500);this.$element.one(a.support.transition.end,function(){clearTimeout(c),b.hideModal()})},hideModal:function(a){this.$element.hide().trigger("hidden"),this.backdrop()},removeBackdrop:function(){this.$backdrop.remove(),this.$backdrop=null},backdrop:function(b){var c=this,d=this.$element.hasClass("fade")?"fade":"";if(this.isShown&&this.options.backdrop){var e=a.support.transition&&d;this.$backdrop=a('<div class="modal-backdrop '+d+'" />').appendTo(document.body),this.$backdrop.click(this.options.backdrop=="static"?a.proxy(this.$element[0].focus,this.$element[0]):a.proxy(this.hide,this)),e&&this.$backdrop[0].offsetWidth,this.$backdrop.addClass("in"),e?this.$backdrop.one(a.support.transition.end,b):b()}else!this.isShown&&this.$backdrop?(this.$backdrop.removeClass("in"),a.support.transition&&this.$element.hasClass("fade")?this.$backdrop.one(a.support.transition.end,a.proxy(this.removeBackdrop,this)):this.removeBackdrop()):b&&b()}};var c=a.fn.modal;a.fn.modal=function(c){return this.each(function(){var d=a(this),e=d.data("modal"),f=a.extend({},a.fn.modal.defaults,d.data(),typeof c=="object"&&c);e||d.data("modal",e=new b(this,f)),typeof c=="string"?e[c]():f.show&&e.show()})},a.fn.modal.defaults={backdrop:!0,keyboard:!0,show:!0},a.fn.modal.Constructor=b,a.fn.modal.noConflict=function(){return a.fn.modal=c,this},a(document).on("click.modal.data-api",'[data-toggle="modal"]',function(b){var c=a(this),d=c.attr("href"),e=a(c.attr("data-target")||d&&d.replace(/.*(?=#[^\s]+$)/,"")),f=e.data("modal")?"toggle":a.extend({remote:!/#/.test(d)&&d},e.data(),c.data());b.preventDefault(),e.modal(f).one("hide",function(){c.focus()})})}(window.jQuery),!function(a){function d(){a(b).each(function(){e(a(this)).removeClass("open")})}function e(b){var c=b.attr("data-target"),d;return c||(c=b.attr("href"),c=c&&/#/.test(c)&&c.replace(/.*(?=#[^\s]*$)/,"")),d=a(c),d.length||(d=b.parent()),d}var b="[data-toggle=dropdown]",c=function(b){var c=a(b).on("click.dropdown.data-api",this.toggle);a("html").on("click.dropdown.data-api",function(){c.parent().removeClass("open")})};c.prototype={constructor:c,toggle:function(b){var c=a(this),f,g;if(c.is(".disabled, :disabled"))return;return f=e(c),g=f.hasClass("open"),d(),g||f.toggleClass("open"),c.focus(),!1},keydown:function(b){var c,d,f,g,h,i;if(!/(38|40|27)/.test(b.keyCode))return;c=a(this),b.preventDefault(),b.stopPropagation();if(c.is(".disabled, :disabled"))return;g=e(c),h=g.hasClass("open");if(!h||h&&b.keyCode==27)return c.click();d=a("[role=menu] li:not(.divider):visible a",g);if(!d.length)return;i=d.index(d.filter(":focus")),b.keyCode==38&&i>0&&i--,b.keyCode==40&&i<d.length-1&&i++,~i||(i=0),d.eq(i).focus()}};var f=a.fn.dropdown;a.fn.dropdown=function(b){return this.each(function(){var d=a(this),e=d.data("dropdown");e||d.data("dropdown",e=new c(this)),typeof b=="string"&&e[b].call(d)})},a.fn.dropdown.Constructor=c,a.fn.dropdown.noConflict=function(){return a.fn.dropdown=f,this},a(document).on("click.dropdown.data-api touchstart.dropdown.data-api",d).on("click.dropdown touchstart.dropdown.data-api",".dropdown form",function(a){a.stopPropagation()}).on("touchstart.dropdown.data-api",".dropdown-menu",function(a){a.stopPropagation()}).on("click.dropdown.data-api touchstart.dropdown.data-api",b,c.prototype.toggle).on("keydown.dropdown.data-api touchstart.dropdown.data-api",b+", [role=menu]",c.prototype.keydown)}(window.jQuery),!function(a){function b(b,c){var d=a.proxy(this.process,this),e=a(b).is("body")?a(window):a(b),f;this.options=a.extend({},a.fn.scrollspy.defaults,c),this.$scrollElement=e.on("scroll.scroll-spy.data-api",d),this.selector=(this.options.target||(f=a(b).attr("href"))&&f.replace(/.*(?=#[^\s]+$)/,"")||"")+" .nav li > a",this.$body=a("body"),this.refresh(),this.process()}b.prototype={constructor:b,refresh:function(){var b=this,c;this.offsets=a([]),this.targets=a([]),c=this.$body.find(this.selector).map(function(){var c=a(this),d=c.data("target")||c.attr("href"),e=/^#\w/.test(d)&&a(d);return e&&e.length&&[[e.position().top+b.$scrollElement.scrollTop(),d]]||null}).sort(function(a,b){return a[0]-b[0]}).each(function(){b.offsets.push(this[0]),b.targets.push(this[1])})},process:function(){var a=this.$scrollElement.scrollTop()+this.options.offset,b=this.$scrollElement[0].scrollHeight||this.$body[0].scrollHeight,c=b-this.$scrollElement.height(),d=this.offsets,e=this.targets,f=this.activeTarget,g;if(a>=c)return f!=(g=e.last()[0])&&this.activate(g);for(g=d.length;g--;)f!=e[g]&&a>=d[g]&&(!d[g+1]||a<=d[g+1])&&this.activate(e[g])},activate:function(b){var c,d;this.activeTarget=b,a(this.selector).parent(".active").removeClass("active"),d=this.selector+'[data-target="'+b+'"],'+this.selector+'[href="'+b+'"]',c=a(d).parent("li").addClass("active"),c.parent(".dropdown-menu").length&&(c=c.closest("li.dropdown").addClass("active")),c.trigger("activate")}};var c=a.fn.scrollspy;a.fn.scrollspy=function(c){return this.each(function(){var d=a(this),e=d.data("scrollspy"),f=typeof c=="object"&&c;e||d.data("scrollspy",e=new b(this,f)),typeof c=="string"&&e[c]()})},a.fn.scrollspy.Constructor=b,a.fn.scrollspy.defaults={offset:10},a.fn.scrollspy.noConflict=function(){return a.fn.scrollspy=c,this},a(window).on("load",function(){a('[data-spy="scroll"]').each(function(){var b=a(this);b.scrollspy(b.data())})})}(window.jQuery),!function(a){var b=function(b){this.element=a(b)};b.prototype={constructor:b,show:function(){var b=this.element,c=b.closest("ul:not(.dropdown-menu)"),d=b.attr("data-target"),e,f,g;d||(d=b.attr("href"),d=d&&d.replace(/.*(?=#[^\s]*$)/,""));if(b.parent("li").hasClass("active"))return;e=c.find(".active:last a")[0],g=a.Event("show",{relatedTarget:e}),b.trigger(g);if(g.isDefaultPrevented())return;f=a(d),this.activate(b.parent("li"),c),this.activate(f,f.parent(),function(){b.trigger({type:"shown",relatedTarget:e})})},activate:function(b,c,d){function g(){e.removeClass("active").find("> .dropdown-menu > .active").removeClass("active"),b.addClass("active"),f?(b[0].offsetWidth,b.addClass("in")):b.removeClass("fade"),b.parent(".dropdown-menu")&&b.closest("li.dropdown").addClass("active"),d&&d()}var e=c.find("> .active"),f=d&&a.support.transition&&e.hasClass("fade");f?e.one(a.support.transition.end,g):g(),e.removeClass("in")}};var c=a.fn.tab;a.fn.tab=function(c){return this.each(function(){var d=a(this),e=d.data("tab");e||d.data("tab",e=new b(this)),typeof c=="string"&&e[c]()})},a.fn.tab.Constructor=b,a.fn.tab.noConflict=function(){return a.fn.tab=c,this},a(document).on("click.tab.data-api",'[data-toggle="tab"], [data-toggle="pill"]',function(b){b.preventDefault(),a(this).tab("show")})}(window.jQuery),!function(a){var b=function(a,b){this.init("tooltip",a,b)};b.prototype={constructor:b,init:function(b,c,d){var e,f;this.type=b,this.$element=a(c),this.options=this.getOptions(d),this.enabled=!0,this.options.trigger=="click"?this.$element.on("click."+this.type,this.options.selector,a.proxy(this.toggle,this)):this.options.trigger!="manual"&&(e=this.options.trigger=="hover"?"mouseenter":"focus",f=this.options.trigger=="hover"?"mouseleave":"blur",this.$element.on(e+"."+this.type,this.options.selector,a.proxy(this.enter,this)),this.$element.on(f+"."+this.type,this.options.selector,a.proxy(this.leave,this))),this.options.selector?this._options=a.extend({},this.options,{trigger:"manual",selector:""}):this.fixTitle()},getOptions:function(b){return b=a.extend({},a.fn[this.type].defaults,b,this.$element.data()),b.delay&&typeof b.delay=="number"&&(b.delay={show:b.delay,hide:b.delay}),b},enter:function(b){var c=a(b.currentTarget)[this.type](this._options).data(this.type);if(!c.options.delay||!c.options.delay.show)return c.show();clearTimeout(this.timeout),c.hoverState="in",this.timeout=setTimeout(function(){c.hoverState=="in"&&c.show()},c.options.delay.show)},leave:function(b){var c=a(b.currentTarget)[this.type](this._options).data(this.type);this.timeout&&clearTimeout(this.timeout);if(!c.options.delay||!c.options.delay.hide)return c.hide();c.hoverState="out",this.timeout=setTimeout(function(){c.hoverState=="out"&&c.hide()},c.options.delay.hide)},show:function(){var a,b,c,d,e,f,g;if(this.hasContent()&&this.enabled){a=this.tip(),this.setContent(),this.options.animation&&a.addClass("fade"),f=typeof this.options.placement=="function"?this.options.placement.call(this,a[0],this.$element[0]):this.options.placement,b=/in/.test(f),a.detach().css({top:0,left:0,display:"block"}).insertAfter(this.$element),c=this.getPosition(b),d=a[0].offsetWidth,e=a[0].offsetHeight;switch(b?f.split(" ")[1]:f){case"bottom":g={top:c.top+c.height,left:c.left+c.width/2-d/2};break;case"top":g={top:c.top-e,left:c.left+c.width/2-d/2};break;case"left":g={top:c.top+c.height/2-e/2,left:c.left-d};break;case"right":g={top:c.top+c.height/2-e/2,left:c.left+c.width}}a.offset(g).addClass(f).addClass("in")}},setContent:function(){var a=this.tip(),b=this.getTitle();a.find(".tooltip-inner")[this.options.html?"html":"text"](b),a.removeClass("fade in top bottom left right")},hide:function(){function d(){var b=setTimeout(function(){c.off(a.support.transition.end).detach()},500);c.one(a.support.transition.end,function(){clearTimeout(b),c.detach()})}var b=this,c=this.tip();return c.removeClass("in"),a.support.transition&&this.$tip.hasClass("fade")?d():c.detach(),this},fixTitle:function(){var a=this.$element;(a.attr("title")||typeof a.attr("data-original-title")!="string")&&a.attr("data-original-title",a.attr("title")||"").removeAttr("title")},hasContent:function(){return this.getTitle()},getPosition:function(b){return a.extend({},b?{top:0,left:0}:this.$element.offset(),{width:this.$element[0].offsetWidth,height:this.$element[0].offsetHeight})},getTitle:function(){var a,b=this.$element,c=this.options;return a=b.attr("data-original-title")||(typeof c.title=="function"?c.title.call(b[0]):c.title),a},tip:function(){return this.$tip=this.$tip||a(this.options.template)},validate:function(){this.$element[0].parentNode||(this.hide(),this.$element=null,this.options=null)},enable:function(){this.enabled=!0},disable:function(){this.enabled=!1},toggleEnabled:function(){this.enabled=!this.enabled},toggle:function(b){var c=a(b.currentTarget)[this.type](this._options).data(this.type);c[c.tip().hasClass("in")?"hide":"show"]()},destroy:function(){this.hide().$element.off("."+this.type).removeData(this.type)}};var c=a.fn.tooltip;a.fn.tooltip=function(c){return this.each(function(){var d=a(this),e=d.data("tooltip"),f=typeof c=="object"&&c;e||d.data("tooltip",e=new b(this,f)),typeof c=="string"&&e[c]()})},a.fn.tooltip.Constructor=b,a.fn.tooltip.defaults={animation:!0,placement:"top",selector:!1,template:'<div class="tooltip"><div class="tooltip-arrow"></div><div class="tooltip-inner"></div></div>',trigger:"hover",title:"",delay:0,html:!1},a.fn.tooltip.noConflict=function(){return a.fn.tooltip=c,this}}(window.jQuery),!function(a){var b=function(a,b){this.init("popover",a,b)};b.prototype=a.extend({},a.fn.tooltip.Constructor.prototype,{constructor:b,setContent:function(){var a=this.tip(),b=this.getTitle(),c=this.getContent();a.find(".popover-title")[this.options.html?"html":"text"](b),a.find(".popover-content")[this.options.html?"html":"text"](c),a.removeClass("fade top bottom left right in")},hasContent:function(){return this.getTitle()||this.getContent()},getContent:function(){var a,b=this.$element,c=this.options;return a=b.attr("data-content")||(typeof c.content=="function"?c.content.call(b[0]):c.content),a},tip:function(){return this.$tip||(this.$tip=a(this.options.template)),this.$tip},destroy:function(){this.hide().$element.off("."+this.type).removeData(this.type)}});var c=a.fn.popover;a.fn.popover=function(c){return this.each(function(){var d=a(this),e=d.data("popover"),f=typeof c=="object"&&c;e||d.data("popover",e=new b(this,f)),typeof c=="string"&&e[c]()})},a.fn.popover.Constructor=b,a.fn.popover.defaults=a.extend({},a.fn.tooltip.defaults,{placement:"right",trigger:"click",content:"",template:'<div class="popover"><div class="arrow"></div><div class="popover-inner"><h3 class="popover-title"></h3><div class="popover-content"></div></div></div>'}),a.fn.popover.noConflict=function(){return a.fn.popover=c,this}}(window.jQuery),!function(a){var b=function(b,c){this.options=a.extend({},a.fn.affix.defaults,c),this.$window=a(window).on("scroll.affix.data-api",a.proxy(this.checkPosition,this)).on("click.affix.data-api",a.proxy(function(){setTimeout(a.proxy(this.checkPosition,this),1)},this)),this.$element=a(b),this.checkPosition()};b.prototype.checkPosition=function(){if(!this.$element.is(":visible"))return;var b=a(document).height(),c=this.$window.scrollTop(),d=this.$element.offset(),e=this.options.offset,f=e.bottom,g=e.top,h="affix affix-top affix-bottom",i;typeof e!="object"&&(f=g=e),typeof g=="function"&&(g=e.top()),typeof f=="function"&&(f=e.bottom()),i=this.unpin!=null&&c+this.unpin<=d.top?!1:f!=null&&d.top+this.$element.height()>=b-f?"bottom":g!=null&&c<=g?"top":!1;if(this.affixed===i)return;this.affixed=i,this.unpin=i=="bottom"?d.top-c:null,this.$element.removeClass(h).addClass("affix"+(i?"-"+i:""))};var c=a.fn.affix;a.fn.affix=function(c){return this.each(function(){var d=a(this),e=d.data("affix"),f=typeof c=="object"&&c;e||d.data("affix",e=new b(this,f)),typeof c=="string"&&e[c]()})},a.fn.affix.Constructor=b,a.fn.affix.defaults={offset:0},a.fn.affix.noConflict=function(){return a.fn.affix=c,this},a(window).on("load",function(){a('[data-spy="affix"]').each(function(){var b=a(this),c=b.data();c.offset=c.offset||{},c.offsetBottom&&(c.offset.bottom=c.offsetBottom),c.offsetTop&&(c.offset.top=c.offsetTop),b.affix(c)})})}(window.jQuery),!function(a){var b='[data-dismiss="alert"]',c=function(c){a(c).on("click",b,this.close)};c.prototype.close=function(b){function f(){e.trigger("closed").remove()}var c=a(this),d=c.attr("data-target"),e;d||(d=c.attr("href"),d=d&&d.replace(/.*(?=#[^\s]*$)/,"")),e=a(d),b&&b.preventDefault(),e.length||(e=c.hasClass("alert")?c:c.parent()),e.trigger(b=a.Event("close"));if(b.isDefaultPrevented())return;e.removeClass("in"),a.support.transition&&e.hasClass("fade")?e.on(a.support.transition.end,f):f()};var d=a.fn.alert;a.fn.alert=function(b){return this.each(function(){var d=a(this),e=d.data("alert");e||d.data("alert",e=new c(this)),typeof b=="string"&&e[b].call(d)})},a.fn.alert.Constructor=c,a.fn.alert.noConflict=function(){return a.fn.alert=d,this},a(document).on("click.alert.data-api",b,c.prototype.close)}(window.jQuery),!function(a){var b=function(b,c){this.$element=a(b),this.options=a.extend({},a.fn.button.defaults,c)};b.prototype.setState=function(a){var b="disabled",c=this.$element,d=c.data(),e=c.is("input")?"val":"html";a+="Text",d.resetText||c.data("resetText",c[e]()),c[e](d[a]||this.options[a]),setTimeout(function(){a=="loadingText"?c.addClass(b).attr(b,b):c.removeClass(b).removeAttr(b)},0)},b.prototype.toggle=function(){var a=this.$element.closest('[data-toggle="buttons-radio"]');a&&a.find(".active").removeClass("active"),this.$element.toggleClass("active")};var c=a.fn.button;a.fn.button=function(c){return this.each(function(){var d=a(this),e=d.data("button"),f=typeof c=="object"&&c;e||d.data("button",e=new b(this,f)),c=="toggle"?e.toggle():c&&e.setState(c)})},a.fn.button.defaults={loadingText:"loading..."},a.fn.button.Constructor=b,a.fn.button.noConflict=function(){return a.fn.button=c,this},a(document).on("click.button.data-api","[data-toggle^=button]",function(b){var c=a(b.target);c.hasClass("btn")||(c=c.closest(".btn")),c.button("toggle")})}(window.jQuery),!function(a){var b=function(b,c){this.$element=a(b),this.options=a.extend({},a.fn.collapse.defaults,c),this.options.parent&&(this.$parent=a(this.options.parent)),this.options.toggle&&this.toggle()};b.prototype={constructor:b,dimension:function(){var a=this.$element.hasClass("width");return a?"width":"height"},show:function(){var b,c,d,e;if(this.transitioning)return;b=this.dimension(),c=a.camelCase(["scroll",b].join("-")),d=this.$parent&&this.$parent.find("> .accordion-group > .in");if(d&&d.length){e=d.data("collapse");if(e&&e.transitioning)return;d.collapse("hide"),e||d.data("collapse",null)}this.$element[b](0),this.transition("addClass",a.Event("show"),"shown"),a.support.transition&&this.$element[b](this.$element[0][c])},hide:function(){var b;if(this.transitioning)return;b=this.dimension(),this.reset(this.$element[b]()),this.transition("removeClass",a.Event("hide"),"hidden"),this.$element[b](0)},reset:function(a){var b=this.dimension();return this.$element.removeClass("collapse")[b](a||"auto")[0].offsetWidth,this.$element[a!==null?"addClass":"removeClass"]("collapse"),this},transition:function(b,c,d){var e=this,f=function(){c.type=="show"&&e.reset(),e.transitioning=0,e.$element.trigger(d)};this.$element.trigger(c);if(c.isDefaultPrevented())return;this.transitioning=1,this.$element[b]("in"),a.support.transition&&this.$element.hasClass("collapse")?this.$element.one(a.support.transition.end,f):f()},toggle:function(){this[this.$element.hasClass("in")?"hide":"show"]()}};var c=a.fn.collapse;a.fn.collapse=function(c){return this.each(function(){var d=a(this),e=d.data("collapse"),f=typeof c=="object"&&c;e||d.data("collapse",e=new b(this,f)),typeof c=="string"&&e[c]()})},a.fn.collapse.defaults={toggle:!0},a.fn.collapse.Constructor=b,a.fn.collapse.noConflict=function(){return a.fn.collapse=c,this},a(document).on("click.collapse.data-api","[data-toggle=collapse]",function(b){var c=a(this),d,e=c.attr("data-target")||b.preventDefault()||(d=c.attr("href"))&&d.replace(/.*(?=#[^\s]+$)/,""),f=a(e).data("collapse")?"toggle":c.data();c[a(e).hasClass("in")?"addClass":"removeClass"]("collapsed"),a(e).collapse(f)})}(window.jQuery),!function(a){var b=function(b,c){this.$element=a(b),this.options=c,this.options.pause=="hover"&&this.$element.on("mouseenter",a.proxy(this.pause,this)).on("mouseleave",a.proxy(this.cycle,this))};b.prototype={cycle:function(b){return b||(this.paused=!1),this.options.interval&&!this.paused&&(this.interval=setInterval(a.proxy(this.next,this),this.options.interval)),this},to:function(b){var c=this.$element.find(".item.active"),d=c.parent().children(),e=d.index(c),f=this;if(b>d.length-1||b<0)return;return this.sliding?this.$element.one("slid",function(){f.to(b)}):e==b?this.pause().cycle():this.slide(b>e?"next":"prev",a(d[b]))},pause:function(b){return b||(this.paused=!0),this.$element.find(".next, .prev").length&&a.support.transition.end&&(this.$element.trigger(a.support.transition.end),this.cycle()),clearInterval(this.interval),this.interval=null,this},next:function(){if(this.sliding)return;return this.slide("next")},prev:function(){if(this.sliding)return;return this.slide("prev")},slide:function(b,c){var d=this.$element.find(".item.active"),e=c||d[b](),f=this.interval,g=b=="next"?"left":"right",h=b=="next"?"first":"last",i=this,j;this.sliding=!0,f&&this.pause(),e=e.length?e:this.$element.find(".item")[h](),j=a.Event("slide",{relatedTarget:e[0]});if(e.hasClass("active"))return;if(a.support.transition&&this.$element.hasClass("slide")){this.$element.trigger(j);if(j.isDefaultPrevented())return;e.addClass(b),e[0].offsetWidth,d.addClass(g),e.addClass(g),this.$element.one(a.support.transition.end,function(){e.removeClass([b,g].join(" ")).addClass("active"),d.removeClass(["active",g].join(" ")),i.sliding=!1,setTimeout(function(){i.$element.trigger("slid")},0)})}else{this.$element.trigger(j);if(j.isDefaultPrevented())return;d.removeClass("active"),e.addClass("active"),this.sliding=!1,this.$element.trigger("slid")}return f&&this.cycle(),this}};var c=a.fn.carousel;a.fn.carousel=function(c){return this.each(function(){var d=a(this),e=d.data("carousel"),f=a.extend({},a.fn.carousel.defaults,typeof c=="object"&&c),g=typeof c=="string"?c:f.slide;e||d.data("carousel",e=new b(this,f)),typeof c=="number"?e.to(c):g?e[g]():f.interval&&e.cycle()})},a.fn.carousel.defaults={interval:5e3,pause:"hover"},a.fn.carousel.Constructor=b,a.fn.carousel.noConflict=function(){return a.fn.carousel=c,this},a(document).on("click.carousel.data-api","[data-slide]",function(b){var c=a(this),d,e=a(c.attr("data-target")||(d=c.attr("href"))&&d.replace(/.*(?=#[^\s]+$)/,"")),f=a.extend({},e.data(),c.data());e.carousel(f),b.preventDefault()})}(window.jQuery),!function(a){var b=function(b,c){this.$element=a(b),this.options=a.extend({},a.fn.typeahead.defaults,c),this.matcher=this.options.matcher||this.matcher,this.sorter=this.options.sorter||this.sorter,this.highlighter=this.options.highlighter||this.highlighter,this.updater=this.options.updater||this.updater,this.source=this.options.source,this.$menu=a(this.options.menu),this.shown=!1,this.listen()};b.prototype={constructor:b,select:function(){var a=this.$menu.find(".active").attr("data-value");return this.$element.val(this.updater(a)).change(),this.hide()},updater:function(a){return a},show:function(){var b=a.extend({},this.$element.position(),{height:this.$element[0].offsetHeight});return this.$menu.insertAfter(this.$element).css({top:b.top+b.height,left:b.left}).show(),this.shown=!0,this},hide:function(){return this.$menu.hide(),this.shown=!1,this},lookup:function(b){var c;return this.query=this.$element.val(),!this.query||this.query.length<this.options.minLength?this.shown?this.hide():this:(c=a.isFunction(this.source)?this.source(this.query,a.proxy(this.process,this)):this.source,c?this.process(c):this)},process:function(b){var c=this;return b=a.grep(b,function(a){return c.matcher(a)}),b=this.sorter(b),b.length?this.render(b.slice(0,this.options.items)).show():this.shown?this.hide():this},matcher:function(a){return~a.toLowerCase().indexOf(this.query.toLowerCase())},sorter:function(a){var b=[],c=[],d=[],e;while(e=a.shift())e.toLowerCase().indexOf(this.query.toLowerCase())?~e.indexOf(this.query)?c.push(e):d.push(e):b.push(e);return b.concat(c,d)},highlighter:function(a){var b=this.query.replace(/[\-\[\]{}()*+?.,\\\^$|#\s]/g,"\\$&");return a.replace(new RegExp("("+b+")","ig"),function(a,b){return"<strong>"+b+"</strong>"})},render:function(b){var c=this;return b=a(b).map(function(b,d){return b=a(c.options.item).attr("data-value",d),b.find("a").html(c.highlighter(d)),b[0]}),b.first().addClass("active"),this.$menu.html(b),this},next:function(b){var c=this.$menu.find(".active").removeClass("active"),d=c.next();d.length||(d=a(this.$menu.find("li")[0])),d.addClass("active")},prev:function(a){var b=this.$menu.find(".active").removeClass("active"),c=b.prev();c.length||(c=this.$menu.find("li").last()),c.addClass("active")},listen:function(){this.$element.on("blur",a.proxy(this.blur,this)).on("keypress",a.proxy(this.keypress,this)).on("keyup",a.proxy(this.keyup,this)),this.eventSupported("keydown")&&this.$element.on("keydown",a.proxy(this.keydown,this)),this.$menu.on("click",a.proxy(this.click,this)).on("mouseenter","li",a.proxy(this.mouseenter,this))},eventSupported:function(a){var b=a in this.$element;return b||(this.$element.setAttribute(a,"return;"),b=typeof this.$element[a]=="function"),b},move:function(a){if(!this.shown)return;switch(a.keyCode){case 9:case 13:case 27:a.preventDefault();break;case 38:a.preventDefault(),this.prev();break;case 40:a.preventDefault(),this.next()}a.stopPropagation()},keydown:function(b){this.suppressKeyPressRepeat=~a.inArray(b.keyCode,[40,38,9,13,27]),this.move(b)},keypress:function(a){if(this.suppressKeyPressRepeat)return;this.move(a)},keyup:function(a){switch(a.keyCode){case 40:case 38:case 16:case 17:case 18:break;case 9:case 13:if(!this.shown)return;this.select();break;case 27:if(!this.shown)return;this.hide();break;default:this.lookup()}a.stopPropagation(),a.preventDefault()},blur:function(a){var b=this;setTimeout(function(){b.hide()},150)},click:function(a){a.stopPropagation(),a.preventDefault(),this.select()},mouseenter:function(b){this.$menu.find(".active").removeClass("active"),a(b.currentTarget).addClass("active")}};var c=a.fn.typeahead;a.fn.typeahead=function(c){return this.each(function(){var d=a(this),e=d.data("typeahead"),f=typeof c=="object"&&c;e||d.data("typeahead",e=new b(this,f)),typeof c=="string"&&e[c]()})},a.fn.typeahead.defaults={source:[],items:8,menu:'<ul class="typeahead dropdown-menu"></ul>',item:'<li><a href="#"></a></li>',minLength:1},a.fn.typeahead.Constructor=b,a.fn.typeahead.noConflict=function(){return a.fn.typeahead=c,this},a(document).on("focus.typeahead.data-api",'[data-provide="typeahead"]',function(b){var c=a(this);if(c.data("typeahead"))return;b.preventDefault(),c.typeahead(c.data())})}(window.jQuery) |
| URL | http://zero.webappsecurity.com/resources/js/jquery-1.8.2.min.js |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | <a href='#'></a> |
| Request Header - size: 287 bytes. |
GET http://zero.webappsecurity.com/resources/js/jquery-1.8.2.min.js HTTP/1.1
Host: zero.webappsecurity.com User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0 Pragma: no-cache Cache-Control: no-cache Referer: http://zero.webappsecurity.com |
| Request Body - size: 0 bytes. |
|
| Response Header - size: 361 bytes. |
HTTP/1.1 200 OK
Date: Mon, 14 Mar 2022 07:13:42 GMT Server: Apache-Coyote/1.1 Access-Control-Allow-Origin: * Accept-Ranges: bytes ETag: W/"93436-1358437290000" Last-Modified: Thu, 17 Jan 2013 15:41:30 GMT Cache-Control: max-age=2678400 Expires: Thu, 14 Apr 2022 07:13:43 GMT Content-Type: application/javascript;charset=UTF-8 Content-Length: 93436 |
| Response Body - size: 93,436 bytes. |
/*! jQuery v1.8.2 jquery.com | jquery.org/license */
(function(a,b){function G(a){var b=F[a]={};return p.each(a.split(s),function(a,c){b[c]=!0}),b}function J(a,c,d){if(d===b&&a.nodeType===1){var e="data-"+c.replace(I,"-$1").toLowerCase();d=a.getAttribute(e);if(typeof d=="string"){try{d=d==="true"?!0:d==="false"?!1:d==="null"?null:+d+""===d?+d:H.test(d)?p.parseJSON(d):d}catch(f){}p.data(a,c,d)}else d=b}return d}function K(a){var b;for(b in a){if(b==="data"&&p.isEmptyObject(a[b]))continue;if(b!=="toJSON")return!1}return!0}function ba(){return!1}function bb(){return!0}function bh(a){return!a||!a.parentNode||a.parentNode.nodeType===11}function bi(a,b){do a=a[b];while(a&&a.nodeType!==1);return a}function bj(a,b,c){b=b||0;if(p.isFunction(b))return p.grep(a,function(a,d){var e=!!b.call(a,d,a);return e===c});if(b.nodeType)return p.grep(a,function(a,d){return a===b===c});if(typeof b=="string"){var d=p.grep(a,function(a){return a.nodeType===1});if(be.test(b))return p.filter(b,d,!c);b=p.filter(b,d)}return p.grep(a,function(a,d){return p.inArray(a,b)>=0===c})}function bk(a){var b=bl.split("|"),c=a.createDocumentFragment();if(c.createElement)while(b.length)c.createElement(b.pop());return c}function bC(a,b){return a.getElementsByTagName(b)[0]||a.appendChild(a.ownerDocument.createElement(b))}function bD(a,b){if(b.nodeType!==1||!p.hasData(a))return;var c,d,e,f=p._data(a),g=p._data(b,f),h=f.events;if(h){delete g.handle,g.events={};for(c in h)for(d=0,e=h[c].length;d<e;d++)p.event.add(b,c,h[c][d])}g.data&&(g.data=p.extend({},g.data))}function bE(a,b){var c;if(b.nodeType!==1)return;b.clearAttributes&&b.clearAttributes(),b.mergeAttributes&&b.mergeAttributes(a),c=b.nodeName.toLowerCase(),c==="object"?(b.parentNode&&(b.outerHTML=a.outerHTML),p.support.html5Clone&&a.innerHTML&&!p.trim(b.innerHTML)&&(b.innerHTML=a.innerHTML)):c==="input"&&bv.test(a.type)?(b.defaultChecked=b.checked=a.checked,b.value!==a.value&&(b.value=a.value)):c==="option"?b.selected=a.defaultSelected:c==="input"||c==="textarea"?b.defaultValue=a.defaultValue:c==="script"&&b.text!==a.text&&(b.text=a.text),b.removeAttribute(p.expando)}function bF(a){return typeof a.getElementsByTagName!="undefined"?a.getElementsByTagName("*"):typeof a.querySelectorAll!="undefined"?a.querySelectorAll("*"):[]}function bG(a){bv.test(a.type)&&(a.defaultChecked=a.checked)}function bY(a,b){if(b in a)return b;var c=b.charAt(0).toUpperCase()+b.slice(1),d=b,e=bW.length;while(e--){b=bW[e]+c;if(b in a)return b}return d}function bZ(a,b){return a=b||a,p.css(a,"display")==="none"||!p.contains(a.ownerDocument,a)}function b$(a,b){var c,d,e=[],f=0,g=a.length;for(;f<g;f++){c=a[f];if(!c.style)continue;e[f]=p._data(c,"olddisplay"),b?(!e[f]&&c.style.display==="none"&&(c.style.display=""),c.style.display===""&&bZ(c)&&(e[f]=p._data(c,"olddisplay",cc(c.nodeName)))):(d=bH(c,"display"),!e[f]&&d!=="none"&&p._data(c,"olddisplay",d))}for(f=0;f<g;f++){c=a[f];if(!c.style)continue;if(!b||c.style.display==="none"||c.style.display==="")c.style.display=b?e[f]||"":"none"}return a}function b_(a,b,c){var d=bP.exec(b);return d?Math.max(0,d[1]-(c||0))+(d[2]||"px"):b}function ca(a,b,c,d){var e=c===(d?"border":"content")?4:b==="width"?1:0,f=0;for(;e<4;e+=2)c==="margin"&&(f+=p.css(a,c+bV[e],!0)),d?(c==="content"&&(f-=parseFloat(bH(a,"padding"+bV[e]))||0),c!=="margin"&&(f-=parseFloat(bH(a,"border"+bV[e]+"Width"))||0)):(f+=parseFloat(bH(a,"padding"+bV[e]))||0,c!=="padding"&&(f+=parseFloat(bH(a,"border"+bV[e]+"Width"))||0));return f}function cb(a,b,c){var d=b==="width"?a.offsetWidth:a.offsetHeight,e=!0,f=p.support.boxSizing&&p.css(a,"boxSizing")==="border-box";if(d<=0||d==null){d=bH(a,b);if(d<0||d==null)d=a.style[b];if(bQ.test(d))return d;e=f&&(p.support.boxSizingReliable||d===a.style[b]),d=parseFloat(d)||0}return d+ca(a,b,c||(f?"border":"content"),e)+"px"}function cc(a){if(bS[a])return bS[a];var b=p("<"+a+">").appendTo(e.body),c=b.css("display");b.remove();if(c==="none"||c===""){bI=e.body.appendChild(bI||p.extend(e.createElement("iframe"),{frameBorder:0,width:0,height:0}));if(!bJ||!bI.createElement)bJ=(bI.contentWindow||bI.contentDocument).document,bJ.write("<!doctype html><html><body>"),bJ.close();b=bJ.body.appendChild(bJ.createElement(a)),c=bH(b,"display"),e.body.removeChild(bI)}return bS[a]=c,c}function ci(a,b,c,d){var e;if(p.isArray(b))p.each(b,function(b,e){c||ce.test(a)?d(a,e):ci(a+"["+(typeof e=="object"?b:"")+"]",e,c,d)});else if(!c&&p.type(b)==="object")for(e in b)ci(a+"["+e+"]",b[e],c,d);else d(a,b)}function cz(a){return function(b,c){typeof b!="string"&&(c=b,b="*");var d,e,f,g=b.toLowerCase().split(s),h=0,i=g.length;if(p.isFunction(c))for(;h<i;h++)d=g[h],f=/^\+/.test(d),f&&(d=d.substr(1)||"*"),e=a[d]=a[d]||[],e[f?"unshift":"push"](c)}}function cA(a,c,d,e,f,g){f=f||c.dataTypes[0],g=g||{},g[f]=!0;var h,i=a[f],j=0,k=i?i.length:0,l=a===cv;for(;j<k&&(l||!h);j++)h=i[j](c,d,e),typeof h=="string"&&(!l||g[h]?h=b:(c.dataTypes.unshift(h),h=cA(a,c,d,e,h,g)));return(l||!h)&&!g["*"]&&(h=cA(a,c,d,e,"*",g)),h}function cB(a,c){var d,e,f=p.ajaxSettings.flatOptions||{};for(d in c)c[d]!==b&&((f[d]?a:e||(e={}))[d]=c[d]);e&&p.extend(!0,a,e)}function cC(a,c,d){var e,f,g,h,i=a.contents,j=a.dataTypes,k=a.responseFields;for(f in k)f in d&&(c[k[f]]=d[f]);while(j[0]==="*")j.shift(),e===b&&(e=a.mimeType||c.getResponseHeader("content-type"));if(e)for(f in i)if(i[f]&&i[f].test(e)){j.unshift(f);break}if(j[0]in d)g=j[0];else{for(f in d){if(!j[0]||a.converters[f+" "+j[0]]){g=f;break}h||(h=f)}g=g||h}if(g)return g!==j[0]&&j.unshift(g),d[g]}function cD(a,b){var c,d,e,f,g=a.dataTypes.slice(),h=g[0],i={},j=0;a.dataFilter&&(b=a.dataFilter(b,a.dataType));if(g[1])for(c in a.converters)i[c.toLowerCase()]=a.converters[c];for(;e=g[++j];)if(e!=="*"){if(h!=="*"&&h!==e){c=i[h+" "+e]||i["* "+e];if(!c)for(d in i){f=d.split(" ");if(f[1]===e){c=i[h+" "+f[0]]||i["* "+f[0]];if(c){c===!0?c=i[d]:i[d]!==!0&&(e=f[0],g.splice(j--,0,e));break}}}if(c!==!0)if(c&&a["throws"])b=c(b);else try{b=c(b)}catch(k){return{state:"parsererror",error:c?k:"No conversion from "+h+" to "+e}}}h=e}return{state:"success",data:b}}function cL(){try{return new a.XMLHttpRequest}catch(b){}}function cM(){try{return new a.ActiveXObject("Microsoft.XMLHTTP")}catch(b){}}function cU(){return setTimeout(function(){cN=b},0),cN=p.now()}function cV(a,b){p.each(b,function(b,c){var d=(cT[b]||[]).concat(cT["*"]),e=0,f=d.length;for(;e<f;e++)if(d[e].call(a,b,c))return})}function cW(a,b,c){var d,e=0,f=0,g=cS.length,h=p.Deferred().always(function(){delete i.elem}),i=function(){var b=cN||cU(),c=Math.max(0,j.startTime+j.duration-b),d=1-(c/j.duration||0),e=0,f=j.tweens.length;for(;e<f;e++)j.tweens[e].run(d);return h.notifyWith(a,[j,d,c]),d<1&&f?c:(h.resolveWith(a,[j]),!1)},j=h.promise({elem:a,props:p.extend({},b),opts:p.extend(!0,{specialEasing:{}},c),originalProperties:b,originalOptions:c,startTime:cN||cU(),duration:c.duration,tweens:[],createTween:function(b,c,d){var e=p.Tween(a,j.opts,b,c,j.opts.specialEasing[b]||j.opts.easing);return j.tweens.push(e),e},stop:function(b){var c=0,d=b?j.tweens.length:0;for(;c<d;c++)j.tweens[c].run(1);return b?h.resolveWith(a,[j,b]):h.rejectWith(a,[j,b]),this}}),k=j.props;cX(k,j.opts.specialEasing);for(;e<g;e++){d=cS[e].call(j,a,k,j.opts);if(d)return d}return cV(j,k),p.isFunction(j.opts.start)&&j.opts.start.call(a,j),p.fx.timer(p.extend(i,{anim:j,queue:j.opts.queue,elem:a})),j.progress(j.opts.progress).done(j.opts.done,j.opts.complete).fail(j.opts.fail).always(j.opts.always)}function cX(a,b){var c,d,e,f,g;for(c in a){d=p.camelCase(c),e=b[d],f=a[c],p.isArray(f)&&(e=f[1],f=a[c]=f[0]),c!==d&&(a[d]=f,delete a[c]),g=p.cssHooks[d];if(g&&"expand"in g){f=g.expand(f),delete a[d];for(c in f)c in a||(a[c]=f[c],b[c]=e)}else b[d]=e}}function cY(a,b,c){var d,e,f,g,h,i,j,k,l=this,m=a.style,n={},o=[],q=a.nodeType&&bZ(a);c.queue||(j=p._queueHooks(a,"fx"),j.unqueued==null&&(j.unqueued=0,k=j.empty.fire,j.empty.fire=function(){j.unqueued||k()}),j.unqueued++,l.always(function(){l.always(function(){j.unqueued--,p.queue(a,"fx").length||j.empty.fire()})})),a.nodeType===1&&("height"in b||"width"in b)&&(c.overflow=[m.overflow,m.overflowX,m.overflowY],p.css(a,"display")==="inline"&&p.css(a,"float")==="none"&&(!p.support.inlineBlockNeedsLayout||cc(a.nodeName)==="inline"?m.display="inline-block":m.zoom=1)),c.overflow&&(m.overflow="hidden",p.support.shrinkWrapBlocks||l.done(function(){m.overflow=c.overflow[0],m.overflowX=c.overflow[1],m.overflowY=c.overflow[2]}));for(d in b){f=b[d];if(cP.exec(f)){delete b[d];if(f===(q?"hide":"show"))continue;o.push(d)}}g=o.length;if(g){h=p._data(a,"fxshow")||p._data(a,"fxshow",{}),q?p(a).show():l.done(function(){p(a).hide()}),l.done(function(){var b;p.removeData(a,"fxshow",!0);for(b in n)p.style(a,b,n[b])});for(d=0;d<g;d++)e=o[d],i=l.createTween(e,q?h[e]:0),n[e]=h[e]||p.style(a,e),e in h||(h[e]=i.start,q&&(i.end=i.start,i.start=e==="width"||e==="height"?1:0))}}function cZ(a,b,c,d,e){return new cZ.prototype.init(a,b,c,d,e)}function c$(a,b){var c,d={height:a},e=0;b=b?1:0;for(;e<4;e+=2-b)c=bV[e],d["margin"+c]=d["padding"+c]=a;return b&&(d.opacity=d.width=a),d}function da(a){return p.isWindow(a)?a:a.nodeType===9?a.defaultView||a.parentWindow:!1}var c,d,e=a.document,f=a.location,g=a.navigator,h=a.jQuery,i=a.$,j=Array.prototype.push,k=Array.prototype.slice,l=Array.prototype.indexOf,m=Object.prototype.toString,n=Object.prototype.hasOwnProperty,o=String.prototype.trim,p=function(a,b){return new p.fn.init(a,b,c)},q=/[\-+]?(?:\d*\.|)\d+(?:[eE][\-+]?\d+|)/.source,r=/\S/,s=/\s+/,t=/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,u=/^(?:[^#<]*(<[\w\W]+>)[^>]*$|#([\w\-]*)$)/,v=/^<(\w+)\s*\/?>(?:<\/\1>|)$/,w=/^[\],:{}\s]*$/,x=/(?:^|:|,)(?:\s*\[)+/g,y=/\\(?:["\\\/bfnrt]|u[\da-fA-F]{4})/g,z=/"[^"\\\r\n]*"|true|false|null|-?(?:\d\d*\.|)\d+(?:[eE][\-+]?\d+|)/g,A=/^-ms-/,B=/-([\da-z])/gi,C=function(a,b){return(b+"").toUpperCase()},D=function(){e.addEventListener?(e.removeEventListener("DOMContentLoaded",D,!1),p.ready()):e.readyState==="complete"&&(e.detachEvent("onreadystatechange",D),p.ready())},E={};p.fn=p.prototype={constructor:p,init:function(a,c,d){var f,g,h,i;if(!a)return this;if(a.nodeType)return this.context=this[0]=a,this.length=1,this;if(typeof a=="string"){a.charAt(0)==="<"&&a.charAt(a.length-1)===">"&&a.length>=3?f=[null,a,null]:f=u.exec(a);if(f&&(f[1]||!c)){if(f[1])return c=c instanceof p?c[0]:c,i=c&&c.nodeType?c.ownerDocument||c:e,a=p.parseHTML(f[1],i,!0),v.test(f[1])&&p.isPlainObject(c)&&this.attr.call(a,c,!0),p.merge(this,a);g=e.getElementById(f[2]);if(g&&g.parentNode){if(g.id!==f[2])return d.find(a);this.length=1,this[0]=g}return this.context=e,this.selector=a,this}return!c||c.jquery?(c||d).find(a):this.constructor(c).find(a)}return p.isFunction(a)?d.ready(a):(a.selector!==b&&(this.selector=a.selector,this.context=a.context),p.makeArray(a,this))},selector:"",jquery:"1.8.2",length:0,size:function(){return this.length},toArray:function(){return k.call(this)},get:function(a){return a==null?this.toArray():a<0?this[this.length+a]:this[a]},pushStack:function(a,b,c){var d=p.merge(this.constructor(),a);return d.prevObject=this,d.context=this.context,b==="find"?d.selector=this.selector+(this.selector?" ":"")+c:b&&(d.selector=this.selector+"."+b+"("+c+")"),d},each:function(a,b){return p.each(this,a,b)},ready:function(a){return p.ready.promise().done(a),this},eq:function(a){return a=+a,a===-1?this.slice(a):this.slice(a,a+1)},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},slice:function(){return this.pushStack(k.apply(this,arguments),"slice",k.call(arguments).join(","))},map:function(a){return this.pushStack(p.map(this,function(b,c){return a.call(b,c,b)}))},end:function(){return this.prevObject||this.constructor(null)},push:j,sort:[].sort,splice:[].splice},p.fn.init.prototype=p.fn,p.extend=p.fn.extend=function(){var a,c,d,e,f,g,h=arguments[0]||{},i=1,j=arguments.length,k=!1;typeof h=="boolean"&&(k=h,h=arguments[1]||{},i=2),typeof h!="object"&&!p.isFunction(h)&&(h={}),j===i&&(h=this,--i);for(;i<j;i++)if((a=arguments[i])!=null)for(c in a){d=h[c],e=a[c];if(h===e)continue;k&&e&&(p.isPlainObject(e)||(f=p.isArray(e)))?(f?(f=!1,g=d&&p.isArray(d)?d:[]):g=d&&p.isPlainObject(d)?d:{},h[c]=p.extend(k,g,e)):e!==b&&(h[c]=e)}return h},p.extend({noConflict:function(b){return a.$===p&&(a.$=i),b&&a.jQuery===p&&(a.jQuery=h),p},isReady:!1,readyWait:1,holdReady:function(a){a?p.readyWait++:p.ready(!0)},ready:function(a){if(a===!0?--p.readyWait:p.isReady)return;if(!e.body)return setTimeout(p.ready,1);p.isReady=!0;if(a!==!0&&--p.readyWait>0)return;d.resolveWith(e,[p]),p.fn.trigger&&p(e).trigger("ready").off("ready")},isFunction:function(a){return p.type(a)==="function"},isArray:Array.isArray||function(a){return p.type(a)==="array"},isWindow:function(a){return a!=null&&a==a.window},isNumeric:function(a){return!isNaN(parseFloat(a))&&isFinite(a)},type:function(a){return a==null?String(a):E[m.call(a)]||"object"},isPlainObject:function(a){if(!a||p.type(a)!=="object"||a.nodeType||p.isWindow(a))return!1;try{if(a.constructor&&!n.call(a,"constructor")&&!n.call(a.constructor.prototype,"isPrototypeOf"))return!1}catch(c){return!1}var d;for(d in a);return d===b||n.call(a,d)},isEmptyObject:function(a){var b;for(b in a)return!1;return!0},error:function(a){throw new Error(a)},parseHTML:function(a,b,c){var d;return!a||typeof a!="string"?null:(typeof b=="boolean"&&(c=b,b=0),b=b||e,(d=v.exec(a))?[b.createElement(d[1])]:(d=p.buildFragment([a],b,c?null:[]),p.merge([],(d.cacheable?p.clone(d.fragment):d.fragment).childNodes)))},parseJSON:function(b){if(!b||typeof b!="string")return null;b=p.trim(b);if(a.JSON&&a.JSON.parse)return a.JSON.parse(b);if(w.test(b.replace(y,"@").replace(z,"]").replace(x,"")))return(new Function("return "+b))();p.error("Invalid JSON: "+b)},parseXML:function(c){var d,e;if(!c||typeof c!="string")return null;try{a.DOMParser?(e=new DOMParser,d=e.parseFromString(c,"text/xml")):(d=new ActiveXObject("Microsoft.XMLDOM"),d.async="false",d.loadXML(c))}catch(f){d=b}return(!d||!d.documentElement||d.getElementsByTagName("parsererror").length)&&p.error("Invalid XML: "+c),d},noop:function(){},globalEval:function(b){b&&r.test(b)&&(a.execScript||function(b){a.eval.call(a,b)})(b)},camelCase:function(a){return a.replace(A,"ms-").replace(B,C)},nodeName:function(a,b){return a.nodeName&&a.nodeName.toLowerCase()===b.toLowerCase()},each:function(a,c,d){var e,f=0,g=a.length,h=g===b||p.isFunction(a);if(d){if(h){for(e in a)if(c.apply(a[e],d)===!1)break}else for(;f<g;)if(c.apply(a[f++],d)===!1)break}else if(h){for(e in a)if(c.call(a[e],e,a[e])===!1)break}else for(;f<g;)if(c.call(a[f],f,a[f++])===!1)break;return a},trim:o&&!o.call(" ")?function(a){return a==null?"":o.call(a)}:function(a){return a==null?"":(a+"").replace(t,"")},makeArray:function(a,b){var c,d=b||[];return a!=null&&(c=p.type(a),a.length==null||c==="string"||c==="function"||c==="regexp"||p.isWindow(a)?j.call(d,a):p.merge(d,a)),d},inArray:function(a,b,c){var d;if(b){if(l)return l.call(b,a,c);d=b.length,c=c?c<0?Math.max(0,d+c):c:0;for(;c<d;c++)if(c in b&&b[c]===a)return c}return-1},merge:function(a,c){var d=c.length,e=a.length,f=0;if(typeof d=="number")for(;f<d;f++)a[e++]=c[f];else while(c[f]!==b)a[e++]=c[f++];return a.length=e,a},grep:function(a,b,c){var d,e=[],f=0,g=a.length;c=!!c;for(;f<g;f++)d=!!b(a[f],f),c!==d&&e.push(a[f]);return e},map:function(a,c,d){var e,f,g=[],h=0,i=a.length,j=a instanceof p||i!==b&&typeof i=="number"&&(i>0&&a[0]&&a[i-1]||i===0||p.isArray(a));if(j)for(;h<i;h++)e=c(a[h],h,d),e!=null&&(g[g.length]=e);else for(f in a)e=c(a[f],f,d),e!=null&&(g[g.length]=e);return g.concat.apply([],g)},guid:1,proxy:function(a,c){var d,e,f;return typeof c=="string"&&(d=a[c],c=a,a=d),p.isFunction(a)?(e=k.call(arguments,2),f=function(){return a.apply(c,e.concat(k.call(arguments)))},f.guid=a.guid=a.guid||p.guid++,f):b},access:function(a,c,d,e,f,g,h){var i,j=d==null,k=0,l=a.length;if(d&&typeof d=="object"){for(k in d)p.access(a,c,k,d[k],1,g,e);f=1}else if(e!==b){i=h===b&&p.isFunction(e),j&&(i?(i=c,c=function(a,b,c){return i.call(p(a),c)}):(c.call(a,e),c=null));if(c)for(;k<l;k++)c(a[k],d,i?e.call(a[k],k,c(a[k],d)):e,h);f=1}return f?a:j?c.call(a):l?c(a[0],d):g},now:function(){return(new Date).getTime()}}),p.ready.promise=function(b){if(!d){d=p.Deferred();if(e.readyState==="complete")setTimeout(p.ready,1);else if(e.addEventListener)e.addEventListener("DOMContentLoaded",D,!1),a.addEventListener("load",p.ready,!1);else{e.attachEvent("onreadystatechange",D),a.attachEvent("onload",p.ready);var c=!1;try{c=a.frameElement==null&&e.documentElement}catch(f){}c&&c.doScroll&&function g(){if(!p.isReady){try{c.doScroll("left")}catch(a){return setTimeout(g,50)}p.ready()}}()}}return d.promise(b)},p.each("Boolean Number String Function Array Date RegExp Object".split(" "),function(a,b){E["[object "+b+"]"]=b.toLowerCase()}),c=p(e);var F={};p.Callbacks=function(a){a=typeof a=="string"?F[a]||G(a):p.extend({},a);var c,d,e,f,g,h,i=[],j=!a.once&&[],k=function(b){c=a.memory&&b,d=!0,h=f||0,f=0,g=i.length,e=!0;for(;i&&h<g;h++)if(i[h].apply(b[0],b[1])===!1&&a.stopOnFalse){c=!1;break}e=!1,i&&(j?j.length&&k(j.shift()):c?i=[]:l.disable())},l={add:function(){if(i){var b=i.length;(function d(b){p.each(b,function(b,c){var e=p.type(c);e==="function"&&(!a.unique||!l.has(c))?i.push(c):c&&c.length&&e!=="string"&&d(c)})})(arguments),e?g=i.length:c&&(f=b,k(c))}return this},remove:function(){return i&&p.each(arguments,function(a,b){var c;while((c=p.inArray(b,i,c))>-1)i.splice(c,1),e&&(c<=g&&g--,c<=h&&h--)}),this},has:function(a){return p.inArray(a,i)>-1},empty:function(){return i=[],this},disable:function(){return i=j=c=b,this},disabled:function(){return!i},lock:function(){return j=b,c||l.disable(),this},locked:function(){return!j},fireWith:function(a,b){return b=b||[],b=[a,b.slice?b.slice():b],i&&(!d||j)&&(e?j.push(b):k(b)),this},fire:function(){return l.fireWith(this,arguments),this},fired:function(){return!!d}};return l},p.extend({Deferred:function(a){var b=[["resolve","done",p.Callbacks("once memory"),"resolved"],["reject","fail",p.Callbacks("once memory"),"rejected"],["notify","progress",p.Callbacks("memory")]],c="pending",d={state:function(){return c},always:function(){return e.done(arguments).fail(arguments),this},then:function(){var a=arguments;return p.Deferred(function(c){p.each(b,function(b,d){var f=d[0],g=a[b];e[d[1]](p.isFunction(g)?function(){var a=g.apply(this,arguments);a&&p.isFunction(a.promise)?a.promise().done(c.resolve).fail(c.reject).progress(c.notify):c[f+"With"](this===e?c:this,[a])}:c[f])}),a=null}).promise()},promise:function(a){return a!=null?p.extend(a,d):d}},e={};return d.pipe=d.then,p.each(b,function(a,f){var g=f[2],h=f[3];d[f[1]]=g.add,h&&g.add(function(){c=h},b[a^1][2].disable,b[2][2].lock),e[f[0]]=g.fire,e[f[0]+"With"]=g.fireWith}),d.promise(e),a&&a.call(e,e),e},when:function(a){var b=0,c=k.call(arguments),d=c.length,e=d!==1||a&&p.isFunction(a.promise)?d:0,f=e===1?a:p.Deferred(),g=function(a,b,c){return function(d){b[a]=this,c[a]=arguments.length>1?k.call(arguments):d,c===h?f.notifyWith(b,c):--e||f.resolveWith(b,c)}},h,i,j;if(d>1){h=new Array(d),i=new Array(d),j=new Array(d);for(;b<d;b++)c[b]&&p.isFunction(c[b].promise)?c[b].promise().done(g(b,j,c)).fail(f.reject).progress(g(b,i,h)):--e}return e||f.resolveWith(j,c),f.promise()}}),p.support=function(){var b,c,d,f,g,h,i,j,k,l,m,n=e.createElement("div");n.setAttribute("className","t"),n.innerHTML=" <link/><table></table><a href='/a'>a</a><input type='checkbox'/>",c=n.getElementsByTagName("*"),d=n.getElementsByTagName("a")[0],d.style.cssText="top:1px;float:left;opacity:.5";if(!c||!c.length)return{};f=e.createElement("select"),g=f.appendChild(e.createElement("option")),h=n.getElementsByTagName("input")[0],b={leadingWhitespace:n.firstChild.nodeType===3,tbody:!n.getElementsByTagName("tbody").length,htmlSerialize:!!n.getElementsByTagName("link").length,style:/top/.test(d.getAttribute("style")),hrefNormalized:d.getAttribute("href")==="/a",opacity:/^0.5/.test(d.style.opacity),cssFloat:!!d.style.cssFloat,checkOn:h.value==="on",optSelected:g.selected,getSetAttribute:n.className!=="t",enctype:!!e.createElement("form").enctype,html5Clone:e.createElement("nav").cloneNode(!0).outerHTML!=="<:nav></:nav>",boxModel:e.compatMode==="CSS1Compat",submitBubbles:!0,changeBubbles:!0,focusinBubbles:!1,deleteExpando:!0,noCloneEvent:!0,inlineBlockNeedsLayout:!1,shrinkWrapBlocks:!1,reliableMarginRight:!0,boxSizingReliable:!0,pixelPosition:!1},h.checked=!0,b.noCloneChecked=h.cloneNode(!0).checked,f.disabled=!0,b.optDisabled=!g.disabled;try{delete n.test}catch(o){b.deleteExpando=!1}!n.addEventListener&&n.attachEvent&&n.fireEvent&&(n.attachEvent("onclick",m=function(){b.noCloneEvent=!1}),n.cloneNode(!0).fireEvent("onclick"),n.detachEvent("onclick",m)),h=e.createElement("input"),h.value="t",h.setAttribute("type","radio"),b.radioValue=h.value==="t",h.setAttribute("checked","checked"),h.setAttribute("name","t"),n.appendChild(h),i=e.createDocumentFragment(),i.appendChild(n.lastChild),b.checkClone=i.cloneNode(!0).cloneNode(!0).lastChild.checked,b.appendChecked=h.checked,i.removeChild(h),i.appendChild(n);if(n.attachEvent)for(k in{submit:!0,change:!0,focusin:!0})j="on"+k,l=j in n,l||(n.setAttribute(j,"return;"),l=typeof n[j]=="function"),b[k+"Bubbles"]=l;return p(function(){var c,d,f,g,h="padding:0;margin:0;border:0;display:block;overflow:hidden;",i=e.getElementsByTagName("body")[0];if(!i)return;c=e.createElement("div"),c.style.cssText="visibility:hidden;border:0;width:0;height:0;position:static;top:0;margin-top:1px",i.insertBefore(c,i.firstChild),d=e.createElement("div"),c.appendChild(d),d.innerHTML="<table><tr><td></td><td>t</td></tr></table>",f=d.getElementsByTagName("td"),f[0].style.cssText="padding:0;margin:0;border:0;display:none",l=f[0].offsetHeight===0,f[0].style.display="",f[1].style.display="none",b.reliableHiddenOffsets=l&&f[0].offsetHeight===0,d.innerHTML="",d.style.cssText="box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;padding:1px;border:1px;display:block;width:4px;margin-top:1%;position:absolute;top:1%;",b.boxSizing=d.offsetWidth===4,b.doesNotIncludeMarginInBodyOffset=i.offsetTop!==1,a.getComputedStyle&&(b.pixelPosition=(a.getComputedStyle(d,null)||{}).top!=="1%",b.boxSizingReliable=(a.getComputedStyle(d,null)||{width:"4px"}).width==="4px",g=e.createElement("div"),g.style.cssText=d.style.cssText=h,g.style.marginRight=g.style.width="0",d.style.width="1px",d.appendChild(g),b.reliableMarginRight=!parseFloat((a.getComputedStyle(g,null)||{}).marginRight)),typeof d.style.zoom!="undefined"&&(d.innerHTML="",d.style.cssText=h+"width:1px;padding:1px;display:inline;zoom:1",b.inlineBlockNeedsLayout=d.offsetWidth===3,d.style.display="block",d.style.overflow="visible",d.innerHTML="<div></div>",d.firstChild.style.width="5px",b.shrinkWrapBlocks=d.offsetWidth!==3,c.style.zoom=1),i.removeChild(c),c=d=f=g=null}),i.removeChild(n),c=d=f=g=h=i=n=null,b}();var H=/(?:\{[\s\S]*\}|\[[\s\S]*\])$/,I=/([A-Z])/g;p.extend({cache:{},deletedIds:[],uuid:0,expando:"jQuery"+(p.fn.jquery+Math.random()).replace(/\D/g,""),noData:{embed:!0,object:"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000",applet:!0},hasData:function(a){return a=a.nodeType?p.cache[a[p.expando]]:a[p.expando],!!a&&!K(a)},data:function(a,c,d,e){if(!p.acceptData(a))return;var f,g,h=p.expando,i=typeof c=="string",j=a.nodeType,k=j?p.cache:a,l=j?a[h]:a[h]&&h;if((!l||!k[l]||!e&&!k[l].data)&&i&&d===b)return;l||(j?a[h]=l=p.deletedIds.pop()||p.guid++:l=h),k[l]||(k[l]={},j||(k[l].toJSON=p.noop));if(typeof c=="object"||typeof c=="function")e?k[l]=p.extend(k[l],c):k[l].data=p.extend(k[l].data,c);return f=k[l],e||(f.data||(f.data={}),f=f.data),d!==b&&(f[p.camelCase(c)]=d),i?(g=f[c],g==null&&(g=f[p.camelCase(c)])):g=f,g},removeData:function(a,b,c){if(!p.acceptData(a))return;var d,e,f,g=a.nodeType,h=g?p.cache:a,i=g?a[p.expando]:p.expando;if(!h[i])return;if(b){d=c?h[i]:h[i].data;if(d){p.isArray(b)||(b in d?b=[b]:(b=p.camelCase(b),b in d?b=[b]:b=b.split(" ")));for(e=0,f=b.length;e<f;e++)delete d[b[e]];if(!(c?K:p.isEmptyObject)(d))return}}if(!c){delete h[i].data;if(!K(h[i]))return}g?p.cleanData([a],!0):p.support.deleteExpando||h!=h.window?delete h[i]:h[i]=null},_data:function(a,b,c){return p.data(a,b,c,!0)},acceptData:function(a){var b=a.nodeName&&p.noData[a.nodeName.toLowerCase()];return!b||b!==!0&&a.getAttribute("classid")===b}}),p.fn.extend({data:function(a,c){var d,e,f,g,h,i=this[0],j=0,k=null;if(a===b){if(this.length){k=p.data(i);if(i.nodeType===1&&!p._data(i,"parsedAttrs")){f=i.attributes;for(h=f.length;j<h;j++)g=f[j].name,g.indexOf("data-")||(g=p.camelCase(g.substring(5)),J(i,g,k[g]));p._data(i,"parsedAttrs",!0)}}return k}return typeof a=="object"?this.each(function(){p.data(this,a)}):(d=a.split(".",2),d[1]=d[1]?"."+d[1]:"",e=d[1]+"!",p.access(this,function(c){if(c===b)return k=this.triggerHandler("getData"+e,[d[0]]),k===b&&i&&(k=p.data(i,a),k=J(i,a,k)),k===b&&d[1]?this.data(d[0]):k;d[1]=c,this.each(function(){var b=p(this);b.triggerHandler("setData"+e,d),p.data(this,a,c),b.triggerHandler("changeData"+e,d)})},null,c,arguments.length>1,null,!1))},removeData:function(a){return this.each(function(){p.removeData(this,a)})}}),p.extend({queue:function(a,b,c){var d;if(a)return b=(b||"fx")+"queue",d=p._data(a,b),c&&(!d||p.isArray(c)?d=p._data(a,b,p.makeArray(c)):d.push(c)),d||[]},dequeue:function(a,b){b=b||"fx";var c=p.queue(a,b),d=c.length,e=c.shift(),f=p._queueHooks(a,b),g=function(){p.dequeue(a,b)};e==="inprogress"&&(e=c.shift(),d--),e&&(b==="fx"&&c.unshift("inprogress"),delete f.stop,e.call(a,g,f)),!d&&f&&f.empty.fire()},_queueHooks:function(a,b){var c=b+"queueHooks";return p._data(a,c)||p._data(a,c,{empty:p.Callbacks("once memory").add(function(){p.removeData(a,b+"queue",!0),p.removeData(a,c,!0)})})}}),p.fn.extend({queue:function(a,c){var d=2;return typeof a!="string"&&(c=a,a="fx",d--),arguments.length<d?p.queue(this[0],a):c===b?this:this.each(function(){var b=p.queue(this,a,c);p._queueHooks(this,a),a==="fx"&&b[0]!=="inprogress"&&p.dequeue(this,a)})},dequeue:function(a){return this.each(function(){p.dequeue(this,a)})},delay:function(a,b){return a=p.fx?p.fx.speeds[a]||a:a,b=b||"fx",this.queue(b,function(b,c){var d=setTimeout(b,a);c.stop=function(){clearTimeout(d)}})},clearQueue:function(a){return this.queue(a||"fx",[])},promise:function(a,c){var d,e=1,f=p.Deferred(),g=this,h=this.length,i=function(){--e||f.resolveWith(g,[g])};typeof a!="string"&&(c=a,a=b),a=a||"fx";while(h--)d=p._data(g[h],a+"queueHooks"),d&&d.empty&&(e++,d.empty.add(i));return i(),f.promise(c)}});var L,M,N,O=/[\t\r\n]/g,P=/\r/g,Q=/^(?:button|input)$/i,R=/^(?:button|input|object|select|textarea)$/i,S=/^a(?:rea|)$/i,T=/^(?:autofocus|autoplay|async|checked|controls|defer|disabled|hidden|loop|multiple|open|readonly|required|scoped|selected)$/i,U=p.support.getSetAttribute;p.fn.extend({attr:function(a,b){return p.access(this,p.attr,a,b,arguments.length>1)},removeAttr:function(a){return this.each(function(){p.removeAttr(this,a)})},prop:function(a,b){return p.access(this,p.prop,a,b,arguments.length>1)},removeProp:function(a){return a=p.propFix[a]||a,this.each(function(){try{this[a]=b,delete this[a]}catch(c){}})},addClass:function(a){var b,c,d,e,f,g,h;if(p.isFunction(a))return this.each(function(b){p(this).addClass(a.call(this,b,this.className))});if(a&&typeof a=="string"){b=a.split(s);for(c=0,d=this.length;c<d;c++){e=this[c];if(e.nodeType===1)if(!e.className&&b.length===1)e.className=a;else{f=" "+e.className+" ";for(g=0,h=b.length;g<h;g++)f.indexOf(" "+b[g]+" ")<0&&(f+=b[g]+" ");e.className=p.trim(f)}}}return this},removeClass:function(a){var c,d,e,f,g,h,i;if(p.isFunction(a))return this.each(function(b){p(this).removeClass(a.call(this,b,this.className))});if(a&&typeof a=="string"||a===b){c=(a||"").split(s);for(h=0,i=this.length;h<i;h++){e=this[h];if(e.nodeType===1&&e.className){d=(" "+e.className+" ").replace(O," ");for(f=0,g=c.length;f<g;f++)while(d.indexOf(" "+c[f]+" ")>=0)d=d.replace(" "+c[f]+" "," ");e.className=a?p.trim(d):""}}}return this},toggleClass:function(a,b){var c=typeof a,d=typeof b=="boolean";return p.isFunction(a)?this.each(function(c){p(this).toggleClass(a.call(this,c,this.className,b),b)}):this.each(function(){if(c==="string"){var e,f=0,g=p(this),h=b,i=a.split(s);while(e=i[f++])h=d?h:!g.hasClass(e),g[h?"addClass":"removeClass"](e)}else if(c==="undefined"||c==="boolean")this.className&&p._data(this,"__className__",this.className),this.className=this.className||a===!1?"":p._data(this,"__className__")||""})},hasClass:function(a){var b=" "+a+" ",c=0,d=this.length;for(;c<d;c++)if(this[c].nodeType===1&&(" "+this[c].className+" ").replace(O," ").indexOf(b)>=0)return!0;return!1},val:function(a){var c,d,e,f=this[0];if(!arguments.length){if(f)return c=p.valHooks[f.type]||p.valHooks[f.nodeName.toLowerCase()],c&&"get"in c&&(d=c.get(f,"value"))!==b?d:(d=f.value,typeof d=="string"?d.replace(P,""):d==null?"":d);return}return e=p.isFunction(a),this.each(function(d){var f,g=p(this);if(this.nodeType!==1)return;e?f=a.call(this,d,g.val()):f=a,f==null?f="":typeof f=="number"?f+="":p.isArray(f)&&(f=p.map(f,function(a){return a==null?"":a+""})),c=p.valHooks[this.type]||p.valHooks[this.nodeName.toLowerCase()];if(!c||!("set"in c)||c.set(this,f,"value")===b)this.value=f})}}),p.extend({valHooks:{option:{get:function(a){var b=a.attributes.value;return!b||b.specified?a.value:a.text}},select:{get:function(a){var b,c,d,e,f=a.selectedIndex,g=[],h=a.options,i=a.type==="select-one";if(f<0)return null;c=i?f:0,d=i?f+1:h.length;for(;c<d;c++){e=h[c];if(e.selected&&(p.support.optDisabled?!e.disabled:e.getAttribute("disabled")===null)&&(!e.parentNode.disabled||!p.nodeName(e.parentNode,"optgroup"))){b=p(e).val();if(i)return b;g.push(b)}}return i&&!g.length&&h.length?p(h[f]).val():g},set:function(a,b){var c=p.makeArray(b);return p(a).find("option").each(function(){this.selected=p.inArray(p(this).val(),c)>=0}),c.length||(a.selectedIndex=-1),c}}},attrFn:{},attr:function(a,c,d,e){var f,g,h,i=a.nodeType;if(!a||i===3||i===8||i===2)return;if(e&&p.isFunction(p.fn[c]))return p(a)[c](d);if(typeof a.getAttribute=="undefined")return p.prop(a,c,d);h=i!==1||!p.isXMLDoc(a),h&&(c=c.toLowerCase(),g=p.attrHooks[c]||(T.test(c)?M:L));if(d!==b){if(d===null){p.removeAttr(a,c);return}return g&&"set"in g&&h&&(f=g.set(a,d,c))!==b?f:(a.setAttribute(c,d+""),d)}return g&&"get"in g&&h&&(f=g.get(a,c))!==null?f:(f=a.getAttribute(c),f===null?b:f)},removeAttr:function(a,b){var c,d,e,f,g=0;if(b&&a.nodeType===1){d=b.split(s);for(;g<d.length;g++)e=d[g],e&&(c=p.propFix[e]||e,f=T.test(e),f||p.attr(a,e,""),a.removeAttribute(U?e:c),f&&c in a&&(a[c]=!1))}},attrHooks:{type:{set:function(a,b){if(Q.test(a.nodeName)&&a.parentNode)p.error("type property can't be changed");else if(!p.support.radioValue&&b==="radio"&&p.nodeName(a,"input")){var c=a.value;return a.setAttribute("type",b),c&&(a.value=c),b}}},value:{get:function(a,b){return L&&p.nodeName(a,"button")?L.get(a,b):b in a?a.value:null},set:function(a,b,c){if(L&&p.nodeName(a,"button"))return L.set(a,b,c);a.value=b}}},propFix:{tabindex:"tabIndex",readonly:"readOnly","for":"htmlFor","class":"className",maxlength:"maxLength",cellspacing:"cellSpacing",cellpadding:"cellPadding",rowspan:"rowSpan",colspan:"colSpan",usemap:"useMap",frameborder:"frameBorder",contenteditable:"contentEditable"},prop:function(a,c,d){var e,f,g,h=a.nodeType;if(!a||h===3||h===8||h===2)return;return g=h!==1||!p.isXMLDoc(a),g&&(c=p.propFix[c]||c,f=p.propHooks[c]),d!==b?f&&"set"in f&&(e=f.set(a,d,c))!==b?e:a[c]=d:f&&"get"in f&&(e=f.get(a,c))!==null?e:a[c]},propHooks:{tabIndex:{get:function(a){var c=a.getAttributeNode("tabindex");return c&&c.specified?parseInt(c.value,10):R.test(a.nodeName)||S.test(a.nodeName)&&a.href?0:b}}}}),M={get:function(a,c){var d,e=p.prop(a,c);return e===!0||typeof e!="boolean"&&(d=a.getAttributeNode(c))&&d.nodeValue!==!1?c.toLowerCase():b},set:function(a,b,c){var d;return b===!1?p.removeAttr(a,c):(d=p.propFix[c]||c,d in a&&(a[d]=!0),a.setAttribute(c,c.toLowerCase())),c}},U||(N={name:!0,id:!0,coords:!0},L=p.valHooks.button={get:function(a,c){var d;return d=a.getAttributeNode(c),d&&(N[c]?d.value!=="":d.specified)?d.value:b},set:function(a,b,c){var d=a.getAttributeNode(c);return d||(d=e.createAttribute(c),a.setAttributeNode(d)),d.value=b+""}},p.each(["width","height"],function(a,b){p.attrHooks[b]=p.extend(p.attrHooks[b],{set:function(a,c){if(c==="")return a.setAttribute(b,"auto"),c}})}),p.attrHooks.contenteditable={get:L.get,set:function(a,b,c){b===""&&(b="false"),L.set(a,b,c)}}),p.support.hrefNormalized||p.each(["href","src","width","height"],function(a,c){p.attrHooks[c]=p.extend(p.attrHooks[c],{get:function(a){var d=a.getAttribute(c,2);return d===null?b:d}})}),p.support.style||(p.attrHooks.style={get:function(a){return a.style.cssText.toLowerCase()||b},set:function(a,b){return a.style.cssText=b+""}}),p.support.optSelected||(p.propHooks.selected=p.extend(p.propHooks.selected,{get:function(a){var b=a.parentNode;return b&&(b.selectedIndex,b.parentNode&&b.parentNode.selectedIndex),null}})),p.support.enctype||(p.propFix.enctype="encoding"),p.support.checkOn||p.each(["radio","checkbox"],function(){p.valHooks[this]={get:function(a){return a.getAttribute("value")===null?"on":a.value}}}),p.each(["radio","checkbox"],function(){p.valHooks[this]=p.extend(p.valHooks[this],{set:function(a,b){if(p.isArray(b))return a.checked=p.inArray(p(a).val(),b)>=0}})});var V=/^(?:textarea|input|select)$/i,W=/^([^\.]*|)(?:\.(.+)|)$/,X=/(?:^|\s)hover(\.\S+|)\b/,Y=/^key/,Z=/^(?:mouse|contextmenu)|click/,$=/^(?:focusinfocus|focusoutblur)$/,_=function(a){return p.event.special.hover?a:a.replace(X,"mouseenter$1 mouseleave$1")};p.event={add:function(a,c,d,e,f){var g,h,i,j,k,l,m,n,o,q,r;if(a.nodeType===3||a.nodeType===8||!c||!d||!(g=p._data(a)))return;d.handler&&(o=d,d=o.handler,f=o.selector),d.guid||(d.guid=p.guid++),i=g.events,i||(g.events=i={}),h=g.handle,h||(g.handle=h=function(a){return typeof p!="undefined"&&(!a||p.event.triggered!==a.type)?p.event.dispatch.apply(h.elem,arguments):b},h.elem=a),c=p.trim(_(c)).split(" ");for(j=0;j<c.length;j++){k=W.exec(c[j])||[],l=k[1],m=(k[2]||"").split(".").sort(),r=p.event.special[l]||{},l=(f?r.delegateType:r.bindType)||l,r=p.event.special[l]||{},n=p.extend({type:l,origType:k[1],data:e,handler:d,guid:d.guid,selector:f,needsContext:f&&p.expr.match.needsContext.test(f),namespace:m.join(".")},o),q=i[l];if(!q){q=i[l]=[],q.delegateCount=0;if(!r.setup||r.setup.call(a,e,m,h)===!1)a.addEventListener?a.addEventListener(l,h,!1):a.attachEvent&&a.attachEvent("on"+l,h)}r.add&&(r.add.call(a,n),n.handler.guid||(n.handler.guid=d.guid)),f?q.splice(q.delegateCount++,0,n):q.push(n),p.event.global[l]=!0}a=null},global:{},remove:function(a,b,c,d,e){var f,g,h,i,j,k,l,m,n,o,q,r=p.hasData(a)&&p._data(a);if(!r||!(m=r.events))return;b=p.trim(_(b||"")).split(" ");for(f=0;f<b.length;f++){g=W.exec(b[f])||[],h=i=g[1],j=g[2];if(!h){for(h in m)p.event.remove(a,h+b[f],c,d,!0);continue}n=p.event.special[h]||{},h=(d?n.delegateType:n.bindType)||h,o=m[h]||[],k=o.length,j=j?new RegExp("(^|\\.)"+j.split(".").sort().join("\\.(?:.*\\.|)")+"(\\.|$)"):null;for(l=0;l<o.length;l++)q=o[l],(e||i===q.origType)&&(!c||c.guid===q.guid)&&(!j||j.test(q.namespace))&&(!d||d===q.selector||d==="**"&&q.selector)&&(o.splice(l--,1),q.selector&&o.delegateCount--,n.remove&&n.remove.call(a,q));o.length===0&&k!==o.length&&((!n.teardown||n.teardown.call(a,j,r.handle)===!1)&&p.removeEvent(a,h,r.handle),delete m[h])}p.isEmptyObject(m)&&(delete r.handle,p.removeData(a,"events",!0))},customEvent:{getData:!0,setData:!0,changeData:!0},trigger:function(c,d,f,g){if(!f||f.nodeType!==3&&f.nodeType!==8){var h,i,j,k,l,m,n,o,q,r,s=c.type||c,t=[];if($.test(s+p.event.triggered))return;s.indexOf("!")>=0&&(s=s.slice(0,-1),i=!0),s.indexOf(".")>=0&&(t=s.split("."),s=t.shift(),t.sort());if((!f||p.event.customEvent[s])&&!p.event.global[s])return;c=typeof c=="object"?c[p.expando]?c:new p.Event(s,c):new p.Event(s),c.type=s,c.isTrigger=!0,c.exclusive=i,c.namespace=t.join("."),c.namespace_re=c.namespace?new RegExp("(^|\\.)"+t.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,m=s.indexOf(":")<0?"on"+s:"";if(!f){h=p.cache;for(j in h)h[j].events&&h[j].events[s]&&p.event.trigger(c,d,h[j].handle.elem,!0);return}c.result=b,c.target||(c.target=f),d=d!=null?p.makeArray(d):[],d.unshift(c),n=p.event.special[s]||{};if(n.trigger&&n.trigger.apply(f,d)===!1)return;q=[[f,n.bindType||s]];if(!g&&!n.noBubble&&!p.isWindow(f)){r=n.delegateType||s,k=$.test(r+s)?f:f.parentNode;for(l=f;k;k=k.parentNode)q.push([k,r]),l=k;l===(f.ownerDocument||e)&&q.push([l.defaultView||l.parentWindow||a,r])}for(j=0;j<q.length&&!c.isPropagationStopped();j++)k=q[j][0],c.type=q[j][1],o=(p._data(k,"events")||{})[c.type]&&p._data(k,"handle"),o&&o.apply(k,d),o=m&&k[m],o&&p.acceptData(k)&&o.apply&&o.apply(k,d)===!1&&c.preventDefault();return c.type=s,!g&&!c.isDefaultPrevented()&&(!n._default||n._default.apply(f.ownerDocument,d)===!1)&&(s!=="click"||!p.nodeName(f,"a"))&&p.acceptData(f)&&m&&f[s]&&(s!=="focus"&&s!=="blur"||c.target.offsetWidth!==0)&&!p.isWindow(f)&&(l=f[m],l&&(f[m]=null),p.event.triggered=s,f[s](),p.event.triggered=b,l&&(f[m]=l)),c.result}return},dispatch:function(c){c=p.event.fix(c||a.event);var d,e,f,g,h,i,j,l,m,n,o=(p._data(this,"events")||{})[c.type]||[],q=o.delegateCount,r=k.call(arguments),s=!c.exclusive&&!c.namespace,t=p.event.special[c.type]||{},u=[];r[0]=c,c.delegateTarget=this;if(t.preDispatch&&t.preDispatch.call(this,c)===!1)return;if(q&&(!c.button||c.type!=="click"))for(f=c.target;f!=this;f=f.parentNode||this)if(f.disabled!==!0||c.type!=="click"){h={},j=[];for(d=0;d<q;d++)l=o[d],m=l.selector,h[m]===b&&(h[m]=l.needsContext?p(m,this).index(f)>=0:p.find(m,this,null,[f]).length),h[m]&&j.push(l);j.length&&u.push({elem:f,matches:j})}o.length>q&&u.push({elem:this,matches:o.slice(q)});for(d=0;d<u.length&&!c.isPropagationStopped();d++){i=u[d],c.currentTarget=i.elem;for(e=0;e<i.matches.length&&!c.isImmediatePropagationStopped();e++){l=i.matches[e];if(s||!c.namespace&&!l.namespace||c.namespace_re&&c.namespace_re.test(l.namespace))c.data=l.data,c.handleObj=l,g=((p.event.special[l.origType]||{}).handle||l.handler).apply(i.elem,r),g!==b&&(c.result=g,g===!1&&(c.preventDefault(),c.stopPropagation()))}}return t.postDispatch&&t.postDispatch.call(this,c),c.result},props:"attrChange attrName relatedNode srcElement altKey bubbles cancelable ctrlKey currentTarget eventPhase metaKey relatedTarget shiftKey target timeStamp view which".split(" "),fixHooks:{},keyHooks:{props:"char charCode key keyCode".split(" "),filter:function(a,b){return a.which==null&&(a.which=b.charCode!=null?b.charCode:b.keyCode),a}},mouseHooks:{props:"button buttons clientX clientY fromElement offsetX offsetY pageX pageY screenX screenY toElement".split(" "),filter:function(a,c){var d,f,g,h=c.button,i=c.fromElement;return a.pageX==null&&c.clientX!=null&&(d=a.target.ownerDocument||e,f=d.documentElement,g=d.body,a.pageX=c.clientX+(f&&f.scrollLeft||g&&g.scrollLeft||0)-(f&&f.clientLeft||g&&g.clientLeft||0),a.pageY=c.clientY+(f&&f.scrollTop||g&&g.scrollTop||0)-(f&&f.clientTop||g&&g.clientTop||0)),!a.relatedTarget&&i&&(a.relatedTarget=i===a.target?c.toElement:i),!a.which&&h!==b&&(a.which=h&1?1:h&2?3:h&4?2:0),a}},fix:function(a){if(a[p.expando])return a;var b,c,d=a,f=p.event.fixHooks[a.type]||{},g=f.props?this.props.concat(f.props):this.props;a=p.Event(d);for(b=g.length;b;)c=g[--b],a[c]=d[c];return a.target||(a.target=d.srcElement||e),a.target.nodeType===3&&(a.target=a.target.parentNode),a.metaKey=!!a.metaKey,f.filter?f.filter(a,d):a},special:{load:{noBubble:!0},focus:{delegateType:"focusin"},blur:{delegateType:"focusout"},beforeunload:{setup:function(a,b,c){p.isWindow(this)&&(this.onbeforeunload=c)},teardown:function(a,b){this.onbeforeunload===b&&(this.onbeforeunload=null)}}},simulate:function(a,b,c,d){var e=p.extend(new p.Event,c,{type:a,isSimulated:!0,originalEvent:{}});d?p.event.trigger(e,null,b):p.event.dispatch.call(b,e),e.isDefaultPrevented()&&c.preventDefault()}},p.event.handle=p.event.dispatch,p.removeEvent=e.removeEventListener?function(a,b,c){a.removeEventListener&&a.removeEventListener(b,c,!1)}:function(a,b,c){var d="on"+b;a.detachEvent&&(typeof a[d]=="undefined"&&(a[d]=null),a.detachEvent(d,c))},p.Event=function(a,b){if(this instanceof p.Event)a&&a.type?(this.originalEvent=a,this.type=a.type,this.isDefaultPrevented=a.defaultPrevented||a.returnValue===!1||a.getPreventDefault&&a.getPreventDefault()?bb:ba):this.type=a,b&&p.extend(this,b),this.timeStamp=a&&a.timeStamp||p.now(),this[p.expando]=!0;else return new p.Event(a,b)},p.Event.prototype={preventDefault:function(){this.isDefaultPrevented=bb;var a=this.originalEvent;if(!a)return;a.preventDefault?a.preventDefault():a.returnValue=!1},stopPropagation:function(){this.isPropagationStopped=bb;var a=this.originalEvent;if(!a)return;a.stopPropagation&&a.stopPropagation(),a.cancelBubble=!0},stopImmediatePropagation:function(){this.isImmediatePropagationStopped=bb,this.stopPropagation()},isDefaultPrevented:ba,isPropagationStopped:ba,isImmediatePropagationStopped:ba},p.each({mouseenter:"mouseover",mouseleave:"mouseout"},function(a,b){p.event.special[a]={delegateType:b,bindType:b,handle:function(a){var c,d=this,e=a.relatedTarget,f=a.handleObj,g=f.selector;if(!e||e!==d&&!p.contains(d,e))a.type=f.origType,c=f.handler.apply(this,arguments),a.type=b;return c}}}),p.support.submitBubbles||(p.event.special.submit={setup:function(){if(p.nodeName(this,"form"))return!1;p.event.add(this,"click._submit keypress._submit",function(a){var c=a.target,d=p.nodeName(c,"input")||p.nodeName(c,"button")?c.form:b;d&&!p._data(d,"_submit_attached")&&(p.event.add(d,"submit._submit",function(a){a._submit_bubble=!0}),p._data(d,"_submit_attached",!0))})},postDispatch:function(a){a._submit_bubble&&(delete a._submit_bubble,this.parentNode&&!a.isTrigger&&p.event.simulate("submit",this.parentNode,a,!0))},teardown:function(){if(p.nodeName(this,"form"))return!1;p.event.remove(this,"._submit")}}),p.support.changeBubbles||(p.event.special.change={setup:function(){if(V.test(this.nodeName)){if(this.type==="checkbox"||this.type==="radio")p.event.add(this,"propertychange._change",function(a){a.originalEvent.propertyName==="checked"&&(this._just_changed=!0)}),p.event.add(this,"click._change",function(a){this._just_changed&&!a.isTrigger&&(this._just_changed=!1),p.event.simulate("change",this,a,!0)});return!1}p.event.add(this,"beforeactivate._change",function(a){var b=a.target;V.test(b.nodeName)&&!p._data(b,"_change_attached")&&(p.event.add(b,"change._change",function(a){this.parentNode&&!a.isSimulated&&!a.isTrigger&&p.event.simulate("change",this.parentNode,a,!0)}),p._data(b,"_change_attached",!0))})},handle:function(a){var b=a.target;if(this!==b||a.isSimulated||a.isTrigger||b.type!=="radio"&&b.type!=="checkbox")return a.handleObj.handler.apply(this,arguments)},teardown:function(){return p.event.remove(this,"._change"),!V.test(this.nodeName)}}),p.support.focusinBubbles||p.each({focus:"focusin",blur:"focusout"},function(a,b){var c=0,d=function(a){p.event.simulate(b,a.target,p.event.fix(a),!0)};p.event.special[b]={setup:function(){c++===0&&e.addEventListener(a,d,!0)},teardown:function(){--c===0&&e.removeEventListener(a,d,!0)}}}),p.fn.extend({on:function(a,c,d,e,f){var g,h;if(typeof a=="object"){typeof c!="string"&&(d=d||c,c=b);for(h in a)this.on(h,c,d,a[h],f);return this}d==null&&e==null?(e=c,d=c=b):e==null&&(typeof c=="string"?(e=d,d=b):(e=d,d=c,c=b));if(e===!1)e=ba;else if(!e)return this;return f===1&&(g=e,e=function(a){return p().off(a),g.apply(this,arguments)},e.guid=g.guid||(g.guid=p.guid++)),this.each(function(){p.event.add(this,a,e,d,c)})},one:function(a,b,c,d){return this.on(a,b,c,d,1)},off:function(a,c,d){var e,f;if(a&&a.preventDefault&&a.handleObj)return e=a.handleObj,p(a.delegateTarget).off(e.namespace?e.origType+"."+e.namespace:e.origType,e.selector,e.handler),this;if(typeof a=="object"){for(f in a)this.off(f,c,a[f]);return this}if(c===!1||typeof c=="function")d=c,c=b;return d===!1&&(d=ba),this.each(function(){p.event.remove(this,a,d,c)})},bind:function(a,b,c){return this.on(a,null,b,c)},unbind:function(a,b){return this.off(a,null,b)},live:function(a,b,c){return p(this.context).on(a,this.selector,b,c),this},die:function(a,b){return p(this.context).off(a,this.selector||"**",b),this},delegate:function(a,b,c,d){return this.on(b,a,c,d)},undelegate:function(a,b,c){return arguments.length===1?this.off(a,"**"):this.off(b,a||"**",c)},trigger:function(a,b){return this.each(function(){p.event.trigger(a,b,this)})},triggerHandler:function(a,b){if(this[0])return p.event.trigger(a,b,this[0],!0)},toggle:function(a){var b=arguments,c=a.guid||p.guid++,d=0,e=function(c){var e=(p._data(this,"lastToggle"+a.guid)||0)%d;return p._data(this,"lastToggle"+a.guid,e+1),c.preventDefault(),b[e].apply(this,arguments)||!1};e.guid=c;while(d<b.length)b[d++].guid=c;return this.click(e)},hover:function(a,b){return this.mouseenter(a).mouseleave(b||a)}}),p.each("blur focus focusin focusout load resize scroll unload click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup error contextmenu".split(" "),function(a,b){p.fn[b]=function(a,c){return c==null&&(c=a,a=null),arguments.length>0?this.on(b,null,a,c):this.trigger(b)},Y.test(b)&&(p.event.fixHooks[b]=p.event.keyHooks),Z.test(b)&&(p.event.fixHooks[b]=p.event.mouseHooks)}),function(a,b){function bc(a,b,c,d){c=c||[],b=b||r;var e,f,i,j,k=b.nodeType;if(!a||typeof a!="string")return c;if(k!==1&&k!==9)return[];i=g(b);if(!i&&!d)if(e=P.exec(a))if(j=e[1]){if(k===9){f=b.getElementById(j);if(!f||!f.parentNode)return c;if(f.id===j)return c.push(f),c}else if(b.ownerDocument&&(f=b.ownerDocument.getElementById(j))&&h(b,f)&&f.id===j)return c.push(f),c}else{if(e[2])return w.apply(c,x.call(b.getElementsByTagName(a),0)),c;if((j=e[3])&&_&&b.getElementsByClassName)return w.apply(c,x.call(b.getElementsByClassName(j),0)),c}return bp(a.replace(L,"$1"),b,c,d,i)}function bd(a){return function(b){var c=b.nodeName.toLowerCase();return c==="input"&&b.type===a}}function be(a){return function(b){var c=b.nodeName.toLowerCase();return(c==="input"||c==="button")&&b.type===a}}function bf(a){return z(function(b){return b=+b,z(function(c,d){var e,f=a([],c.length,b),g=f.length;while(g--)c[e=f[g]]&&(c[e]=!(d[e]=c[e]))})})}function bg(a,b,c){if(a===b)return c;var d=a.nextSibling;while(d){if(d===b)return-1;d=d.nextSibling}return 1}function bh(a,b){var c,d,f,g,h,i,j,k=C[o][a];if(k)return b?0:k.slice(0);h=a,i=[],j=e.preFilter;while(h){if(!c||(d=M.exec(h)))d&&(h=h.slice(d[0].length)),i.push(f=[]);c=!1;if(d=N.exec(h))f.push(c=new q(d.shift())),h=h.slice(c.length),c.type=d[0].replace(L," ");for(g in e.filter)(d=W[g].exec(h))&&(!j[g]||(d=j[g](d,r,!0)))&&(f.push(c=new q(d.shift())),h=h.slice(c.length),c.type=g,c.matches=d);if(!c)break}return b?h.length:h?bc.error(a):C(a,i).slice(0)}function bi(a,b,d){var e=b.dir,f=d&&b.dir==="parentNode",g=u++;return b.first?function(b,c,d){while(b=b[e])if(f||b.nodeType===1)return a(b,c,d)}:function(b,d,h){if(!h){var i,j=t+" "+g+" ",k=j+c;while(b=b[e])if(f||b.nodeType===1){if((i=b[o])===k)return b.sizset;if(typeof i=="string"&&i.indexOf(j)===0){if(b.sizset)return b}else{b[o]=k;if(a(b,d,h))return b.sizset=!0,b;b.sizset=!1}}}else while(b=b[e])if(f||b.nodeType===1)if(a(b,d,h))return b}}function bj(a){return a.length>1?function(b,c,d){var e=a.length;while(e--)if(!a[e](b,c,d))return!1;return!0}:a[0]}function bk(a,b,c,d,e){var f,g=[],h=0,i=a.length,j=b!=null;for(;h<i;h++)if(f=a[h])if(!c||c(f,d,e))g.push(f),j&&b.push(h);return g}function bl(a,b,c,d,e,f){return d&&!d[o]&&(d=bl(d)),e&&!e[o]&&(e=bl(e,f)),z(function(f,g,h,i){if(f&&e)return;var j,k,l,m=[],n=[],o=g.length,p=f||bo(b||"*",h.nodeType?[h]:h,[],f),q=a&&(f||!b)?bk(p,m,a,h,i):p,r=c?e||(f?a:o||d)?[]:g:q;c&&c(q,r,h,i);if(d){l=bk(r,n),d(l,[],h,i),j=l.length;while(j--)if(k=l[j])r[n[j]]=!(q[n[j]]=k)}if(f){j=a&&r.length;while(j--)if(k=r[j])f[m[j]]=!(g[m[j]]=k)}else r=bk(r===g?r.splice(o,r.length):r),e?e(null,g,r,i):w.apply(g,r)})}function bm(a){var b,c,d,f=a.length,g=e.relative[a[0].type],h=g||e.relative[" "],i=g?1:0,j=bi(function(a){return a===b},h,!0),k=bi(function(a){return y.call(b,a)>-1},h,!0),m=[function(a,c,d){return!g&&(d||c!==l)||((b=c).nodeType?j(a,c,d):k(a,c,d))}];for(;i<f;i++)if(c=e.relative[a[i].type])m=[bi(bj(m),c)];else{c=e.filter[a[i].type].apply(null,a[i].matches);if(c[o]){d=++i;for(;d<f;d++)if(e.relative[a[d].type])break;return bl(i>1&&bj(m),i>1&&a.slice(0,i-1).join("").replace(L,"$1"),c,i<d&&bm(a.slice(i,d)),d<f&&bm(a=a.slice(d)),d<f&&a.join(""))}m.push(c)}return bj(m)}function bn(a,b){var d=b.length>0,f=a.length>0,g=function(h,i,j,k,m){var n,o,p,q=[],s=0,u="0",x=h&&[],y=m!=null,z=l,A=h||f&&e.find.TAG("*",m&&i.parentNode||i),B=t+=z==null?1:Math.E;y&&(l=i!==r&&i,c=g.el);for(;(n=A[u])!=null;u++){if(f&&n){for(o=0;p=a[o];o++)if(p(n,i,j)){k.push(n);break}y&&(t=B,c=++g.el)}d&&((n=!p&&n)&&s--,h&&x.push(n))}s+=u;if(d&&u!==s){for(o=0;p=b[o];o++)p(x,q,i,j);if(h){if(s>0)while(u--)!x[u]&&!q[u]&&(q[u]=v.call(k));q=bk(q)}w.apply(k,q),y&&!h&&q.length>0&&s+b.length>1&&bc.uniqueSort(k)}return y&&(t=B,l=z),x};return g.el=0,d?z(g):g}function bo(a,b,c,d){var e=0,f=b.length;for(;e<f;e++)bc(a,b[e],c,d);return c}function bp(a,b,c,d,f){var g,h,j,k,l,m=bh(a),n=m.length;if(!d&&m.length===1){h=m[0]=m[0].slice(0);if(h.length>2&&(j=h[0]).type==="ID"&&b.nodeType===9&&!f&&e.relative[h[1].type]){b=e.find.ID(j.matches[0].replace(V,""),b,f)[0];if(!b)return c;a=a.slice(h.shift().length)}for(g=W.POS.test(a)?-1:h.length-1;g>=0;g--){j=h[g];if(e.relative[k=j.type])break;if(l=e.find[k])if(d=l(j.matches[0].replace(V,""),R.test(h[0].type)&&b.parentNode||b,f)){h.splice(g,1),a=d.length&&h.join("");if(!a)return w.apply(c,x.call(d,0)),c;break}}}return i(a,m)(d,b,f,c,R.test(a)),c}function bq(){}var c,d,e,f,g,h,i,j,k,l,m=!0,n="undefined",o=("sizcache"+Math.random()).replace(".",""),q=String,r=a.document,s=r.documentElement,t=0,u=0,v=[].pop,w=[].push,x=[].slice,y=[].indexOf||function(a){var b=0,c=this.length;for(;b<c;b++)if(this[b]===a)return b;return-1},z=function(a,b){return a[o]=b==null||b,a},A=function(){var a={},b=[];return z(function(c,d){return b.push(c)>e.cacheLength&&delete a[b.shift()],a[c]=d},a)},B=A(),C=A(),D=A(),E="[\\x20\\t\\r\\n\\f]",F="(?:\\\\.|[-\\w]|[^\\x00-\\xa0])+",G=F.replace("w","w#"),H="([*^$|!~]?=)",I="\\["+E+"*("+F+")"+E+"*(?:"+H+E+"*(?:(['\"])((?:\\\\.|[^\\\\])*?)\\3|("+G+")|)|)"+E+"*\\]",J=":("+F+")(?:\\((?:(['\"])((?:\\\\.|[^\\\\])*?)\\2|([^()[\\]]*|(?:(?:"+I+")|[^:]|\\\\.)*|.*))\\)|)",K=":(even|odd|eq|gt|lt|nth|first|last)(?:\\("+E+"*((?:-\\d)?\\d*)"+E+"*\\)|)(?=[^-]|$)",L=new RegExp("^"+E+"+|((?:^|[^\\\\])(?:\\\\.)*)"+E+"+$","g"),M=new RegExp("^"+E+"*,"+E+"*"),N=new RegExp("^"+E+"*([\\x20\\t\\r\\n\\f>+~])"+E+"*"),O=new RegExp(J),P=/^(?:#([\w\-]+)|(\w+)|\.([\w\-]+))$/,Q=/^:not/,R=/[\x20\t\r\n\f]*[+~]/,S=/:not\($/,T=/h\d/i,U=/input|select|textarea|button/i,V=/\\(?!\\)/g,W={ID:new RegExp("^#("+F+")"),CLASS:new RegExp("^\\.("+F+")"),NAME:new RegExp("^\\[name=['\"]?("+F+")['\"]?\\]"),TAG:new RegExp("^("+F.replace("w","w*")+")"),ATTR:new RegExp("^"+I),PSEUDO:new RegExp("^"+J),POS:new RegExp(K,"i"),CHILD:new RegExp("^:(only|nth|first|last)-child(?:\\("+E+"*(even|odd|(([+-]|)(\\d*)n|)"+E+"*(?:([+-]|)"+E+"*(\\d+)|))"+E+"*\\)|)","i"),needsContext:new RegExp("^"+E+"*[>+~]|"+K,"i")},X=function(a){var b=r.createElement("div");try{return a(b)}catch(c){return!1}finally{b=null}},Y=X(function(a){return a.appendChild(r.createComment("")),!a.getElementsByTagName("*").length}),Z=X(function(a){return a.innerHTML="<a href='#'></a>",a.firstChild&&typeof a.firstChild.getAttribute!==n&&a.firstChild.getAttribute("href")==="#"}),$=X(function(a){a.innerHTML="<select></select>";var b=typeof a.lastChild.getAttribute("multiple");return b!=="boolean"&&b!=="string"}),_=X(function(a){return a.innerHTML="<div class='hidden e'></div><div class='hidden'></div>",!a.getElementsByClassName||!a.getElementsByClassName("e").length?!1:(a.lastChild.className="e",a.getElementsByClassName("e").length===2)}),ba=X(function(a){a.id=o+0,a.innerHTML="<a name='"+o+"'></a><div name='"+o+"'></div>",s.insertBefore(a,s.firstChild);var b=r.getElementsByName&&r.getElementsByName(o).length===2+r.getElementsByName(o+0).length;return d=!r.getElementById(o),s.removeChild(a),b});try{x.call(s.childNodes,0)[0].nodeType}catch(bb){x=function(a){var b,c=[];for(;b=this[a];a++)c.push(b);return c}}bc.matches=function(a,b){return bc(a,null,null,b)},bc.matchesSelector=function(a,b){return bc(b,null,null,[a]).length>0},f=bc.getText=function(a){var b,c="",d=0,e=a.nodeType;if(e){if(e===1||e===9||e===11){if(typeof a.textContent=="string")return a.textContent;for(a=a.firstChild;a;a=a.nextSibling)c+=f(a)}else if(e===3||e===4)return a.nodeValue}else for(;b=a[d];d++)c+=f(b);return c},g=bc.isXML=function(a){var b=a&&(a.ownerDocument||a).documentElement;return b?b.nodeName!=="HTML":!1},h=bc.contains=s.contains?function(a,b){var c=a.nodeType===9?a.documentElement:a,d=b&&b.parentNode;return a===d||!!(d&&d.nodeType===1&&c.contains&&c.contains(d))}:s.compareDocumentPosition?function(a,b){return b&&!!(a.compareDocumentPosition(b)&16)}:function(a,b){while(b=b.parentNode)if(b===a)return!0;return!1},bc.attr=function(a,b){var c,d=g(a);return d||(b=b.toLowerCase()),(c=e.attrHandle[b])?c(a):d||$?a.getAttribute(b):(c=a.getAttributeNode(b),c?typeof a[b]=="boolean"?a[b]?b:null:c.specified?c.value:null:null)},e=bc.selectors={cacheLength:50,createPseudo:z,match:W,attrHandle:Z?{}:{href:function(a){return a.getAttribute("href",2)},type:function(a){return a.getAttribute("type")}},find:{ID:d?function(a,b,c){if(typeof b.getElementById!==n&&!c){var d=b.getElementById(a);return d&&d.parentNode?[d]:[]}}:function(a,c,d){if(typeof c.getElementById!==n&&!d){var e=c.getElementById(a);return e?e.id===a||typeof e.getAttributeNode!==n&&e.getAttributeNode("id").value===a?[e]:b:[]}},TAG:Y?function(a,b){if(typeof b.getElementsByTagName!==n)return b.getElementsByTagName(a)}:function(a,b){var c=b.getElementsByTagName(a);if(a==="*"){var d,e=[],f=0;for(;d=c[f];f++)d.nodeType===1&&e.push(d);return e}return c},NAME:ba&&function(a,b){if(typeof b.getElementsByName!==n)return b.getElementsByName(name)},CLASS:_&&function(a,b,c){if(typeof b.getElementsByClassName!==n&&!c)return b.getElementsByClassName(a)}},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(a){return a[1]=a[1].replace(V,""),a[3]=(a[4]||a[5]||"").replace(V,""),a[2]==="~="&&(a[3]=" "+a[3]+" "),a.slice(0,4)},CHILD:function(a){return a[1]=a[1].toLowerCase(),a[1]==="nth"?(a[2]||bc.error(a[0]),a[3]=+(a[3]?a[4]+(a[5]||1):2*(a[2]==="even"||a[2]==="odd")),a[4]=+(a[6]+a[7]||a[2]==="odd")):a[2]&&bc.error(a[0]),a},PSEUDO:function(a){var b,c;if(W.CHILD.test(a[0]))return null;if(a[3])a[2]=a[3];else if(b=a[4])O.test(b)&&(c=bh(b,!0))&&(c=b.indexOf(")",b.length-c)-b.length)&&(b=b.slice(0,c),a[0]=a[0].slice(0,c)),a[2]=b;return a.slice(0,3)}},filter:{ID:d?function(a){return a=a.replace(V,""),function(b){return b.getAttribute("id")===a}}:function(a){return a=a.replace(V,""),function(b){var c=typeof b.getAttributeNode!==n&&b.getAttributeNode("id");return c&&c.value===a}},TAG:function(a){return a==="*"?function(){return!0}:(a=a.replace(V,"").toLowerCase(),function(b){return b.nodeName&&b.nodeName.toLowerCase()===a})},CLASS:function(a){var b=B[o][a];return b||(b=B(a,new RegExp("(^|"+E+")"+a+"("+E+"|$)"))),function(a){return b.test(a.className||typeof a.getAttribute!==n&&a.getAttribute("class")||"")}},ATTR:function(a,b,c){return function(d,e){var f=bc.attr(d,a);return f==null?b==="!=":b?(f+="",b==="="?f===c:b==="!="?f!==c:b==="^="?c&&f.indexOf(c)===0:b==="*="?c&&f.indexOf(c)>-1:b==="$="?c&&f.substr(f.length-c.length)===c:b==="~="?(" "+f+" ").indexOf(c)>-1:b==="|="?f===c||f.substr(0,c.length+1)===c+"-":!1):!0}},CHILD:function(a,b,c,d){return a==="nth"?function(a){var b,e,f=a.parentNode;if(c===1&&d===0)return!0;if(f){e=0;for(b=f.firstChild;b;b=b.nextSibling)if(b.nodeType===1){e++;if(a===b)break}}return e-=d,e===c||e%c===0&&e/c>=0}:function(b){var c=b;switch(a){case"only":case"first":while(c=c.previousSibling)if(c.nodeType===1)return!1;if(a==="first")return!0;c=b;case"last":while(c=c.nextSibling)if(c.nodeType===1)return!1;return!0}}},PSEUDO:function(a,b){var c,d=e.pseudos[a]||e.setFilters[a.toLowerCase()]||bc.error("unsupported pseudo: "+a);return d[o]?d(b):d.length>1?(c=[a,a,"",b],e.setFilters.hasOwnProperty(a.toLowerCase())?z(function(a,c){var e,f=d(a,b),g=f.length;while(g--)e=y.call(a,f[g]),a[e]=!(c[e]=f[g])}):function(a){return d(a,0,c)}):d}},pseudos:{not:z(function(a){var b=[],c=[],d=i(a.replace(L,"$1"));return d[o]?z(function(a,b,c,e){var f,g=d(a,null,e,[]),h=a.length;while(h--)if(f=g[h])a[h]=!(b[h]=f)}):function(a,e,f){return b[0]=a,d(b,null,f,c),!c.pop()}}),has:z(function(a){return function(b){return bc(a,b).length>0}}),contains:z(function(a){return function(b){return(b.textContent||b.innerText||f(b)).indexOf(a)>-1}}),enabled:function(a){return a.disabled===!1},disabled:function(a){return a.disabled===!0},checked:function(a){var b=a.nodeName.toLowerCase();return b==="input"&&!!a.checked||b==="option"&&!!a.selected},selected:function(a){return a.parentNode&&a.parentNode.selectedIndex,a.selected===!0},parent:function(a){return!e.pseudos.empty(a)},empty:function(a){var b;a=a.firstChild;while(a){if(a.nodeName>"@"||(b=a.nodeType)===3||b===4)return!1;a=a.nextSibling}return!0},header:function(a){return T.test(a.nodeName)},text:function(a){var b,c;return a.nodeName.toLowerCase()==="input"&&(b=a.type)==="text"&&((c=a.getAttribute("type"))==null||c.toLowerCase()===b)},radio:bd("radio"),checkbox:bd("checkbox"),file:bd("file"),password:bd("password"),image:bd("image"),submit:be("submit"),reset:be("reset"),button:function(a){var b=a.nodeName.toLowerCase();return b==="input"&&a.type==="button"||b==="button"},input:function(a){return U.test(a.nodeName)},focus:function(a){var b=a.ownerDocument;return a===b.activeElement&&(!b.hasFocus||b.hasFocus())&&(!!a.type||!!a.href)},active:function(a){return a===a.ownerDocument.activeElement},first:bf(function(a,b,c){return[0]}),last:bf(function(a,b,c){return[b-1]}),eq:bf(function(a,b,c){return[c<0?c+b:c]}),even:bf(function(a,b,c){for(var d=0;d<b;d+=2)a.push(d);return a}),odd:bf(function(a,b,c){for(var d=1;d<b;d+=2)a.push(d);return a}),lt:bf(function(a,b,c){for(var d=c<0?c+b:c;--d>=0;)a.push(d);return a}),gt:bf(function(a,b,c){for(var d=c<0?c+b:c;++d<b;)a.push(d);return a})}},j=s.compareDocumentPosition?function(a,b){return a===b?(k=!0,0):(!a.compareDocumentPosition||!b.compareDocumentPosition?a.compareDocumentPosition:a.compareDocumentPosition(b)&4)?-1:1}:function(a,b){if(a===b)return k=!0,0;if(a.sourceIndex&&b.sourceIndex)return a.sourceIndex-b.sourceIndex;var c,d,e=[],f=[],g=a.parentNode,h=b.parentNode,i=g;if(g===h)return bg(a,b);if(!g)return-1;if(!h)return 1;while(i)e.unshift(i),i=i.parentNode;i=h;while(i)f.unshift(i),i=i.parentNode;c=e.length,d=f.length;for(var j=0;j<c&&j<d;j++)if(e[j]!==f[j])return bg(e[j],f[j]);return j===c?bg(a,f[j],-1):bg(e[j],b,1)},[0,0].sort(j),m=!k,bc.uniqueSort=function(a){var b,c=1;k=m,a.sort(j);if(k)for(;b=a[c];c++)b===a[c-1]&&a.splice(c--,1);return a},bc.error=function(a){throw new Error("Syntax error, unrecognized expression: "+a)},i=bc.compile=function(a,b){var c,d=[],e=[],f=D[o][a];if(!f){b||(b=bh(a)),c=b.length;while(c--)f=bm(b[c]),f[o]?d.push(f):e.push(f);f=D(a,bn(e,d))}return f},r.querySelectorAll&&function(){var a,b=bp,c=/'|\\/g,d=/\=[\x20\t\r\n\f]*([^'"\]]*)[\x20\t\r\n\f]*\]/g,e=[":focus"],f=[":active",":focus"],h=s.matchesSelector||s.mozMatchesSelector||s.webkitMatchesSelector||s.oMatchesSelector||s.msMatchesSelector;X(function(a){a.innerHTML="<select><option selected=''></option></select>",a.querySelectorAll("[selected]").length||e.push("\\["+E+"*(?:checked|disabled|ismap|multiple|readonly|selected|value)"),a.querySelectorAll(":checked").length||e.push(":checked")}),X(function(a){a.innerHTML="<p test=''></p>",a.querySelectorAll("[test^='']").length&&e.push("[*^$]="+E+"*(?:\"\"|'')"),a.innerHTML="<input type='hidden'/>",a.querySelectorAll(":enabled").length||e.push(":enabled",":disabled")}),e=new RegExp(e.join("|")),bp=function(a,d,f,g,h){if(!g&&!h&&(!e||!e.test(a))){var i,j,k=!0,l=o,m=d,n=d.nodeType===9&&a;if(d.nodeType===1&&d.nodeName.toLowerCase()!=="object"){i=bh(a),(k=d.getAttribute("id"))?l=k.replace(c,"\\$&"):d.setAttribute("id",l),l="[id='"+l+"'] ",j=i.length;while(j--)i[j]=l+i[j].join("");m=R.test(a)&&d.parentNode||d,n=i.join(",")}if(n)try{return w.apply(f,x.call(m.querySelectorAll(n),0)),f}catch(p){}finally{k||d.removeAttribute("id")}}return b(a,d,f,g,h)},h&&(X(function(b){a=h.call(b,"div");try{h.call(b,"[test!='']:sizzle"),f.push("!=",J)}catch(c){}}),f=new RegExp(f.join("|")),bc.matchesSelector=function(b,c){c=c.replace(d,"='$1']");if(!g(b)&&!f.test(c)&&(!e||!e.test(c)))try{var i=h.call(b,c);if(i||a||b.document&&b.document.nodeType!==11)return i}catch(j){}return bc(c,null,null,[b]).length>0})}(),e.pseudos.nth=e.pseudos.eq,e.filters=bq.prototype=e.pseudos,e.setFilters=new bq,bc.attr=p.attr,p.find=bc,p.expr=bc.selectors,p.expr[":"]=p.expr.pseudos,p.unique=bc.uniqueSort,p.text=bc.getText,p.isXMLDoc=bc.isXML,p.contains=bc.contains}(a);var bc=/Until$/,bd=/^(?:parents|prev(?:Until|All))/,be=/^.[^:#\[\.,]*$/,bf=p.expr.match.needsContext,bg={children:!0,contents:!0,next:!0,prev:!0};p.fn.extend({find:function(a){var b,c,d,e,f,g,h=this;if(typeof a!="string")return p(a).filter(function(){for(b=0,c=h.length;b<c;b++)if(p.contains(h[b],this))return!0});g=this.pushStack("","find",a);for(b=0,c=this.length;b<c;b++){d=g.length,p.find(a,this[b],g);if(b>0)for(e=d;e<g.length;e++)for(f=0;f<d;f++)if(g[f]===g[e]){g.splice(e--,1);break}}return g},has:function(a){var b,c=p(a,this),d=c.length;return this.filter(function(){for(b=0;b<d;b++)if(p.contains(this,c[b]))return!0})},not:function(a){return this.pushStack(bj(this,a,!1),"not",a)},filter:function(a){return this.pushStack(bj(this,a,!0),"filter",a)},is:function(a){return!!a&&(typeof a=="string"?bf.test(a)?p(a,this.context).index(this[0])>=0:p.filter(a,this).length>0:this.filter(a).length>0)},closest:function(a,b){var c,d=0,e=this.length,f=[],g=bf.test(a)||typeof a!="string"?p(a,b||this.context):0;for(;d<e;d++){c=this[d];while(c&&c.ownerDocument&&c!==b&&c.nodeType!==11){if(g?g.index(c)>-1:p.find.matchesSelector(c,a)){f.push(c);break}c=c.parentNode}}return f=f.length>1?p.unique(f):f,this.pushStack(f,"closest",a)},index:function(a){return a?typeof a=="string"?p.inArray(this[0],p(a)):p.inArray(a.jquery?a[0]:a,this):this[0]&&this[0].parentNode?this.prevAll().length:-1},add:function(a,b){var c=typeof a=="string"?p(a,b):p.makeArray(a&&a.nodeType?[a]:a),d=p.merge(this.get(),c);return this.pushStack(bh(c[0])||bh(d[0])?d:p.unique(d))},addBack:function(a){return this.add(a==null?this.prevObject:this.prevObject.filter(a))}}),p.fn.andSelf=p.fn.addBack,p.each({parent:function(a){var b=a.parentNode;return b&&b.nodeType!==11?b:null},parents:function(a){return p.dir(a,"parentNode")},parentsUntil:function(a,b,c){return p.dir(a,"parentNode",c)},next:function(a){return bi(a,"nextSibling")},prev:function(a){return bi(a,"previousSibling")},nextAll:function(a){return p.dir(a,"nextSibling")},prevAll:function(a){return p.dir(a,"previousSibling")},nextUntil:function(a,b,c){return p.dir(a,"nextSibling",c)},prevUntil:function(a,b,c){return p.dir(a,"previousSibling",c)},siblings:function(a){return p.sibling((a.parentNode||{}).firstChild,a)},children:function(a){return p.sibling(a.firstChild)},contents:function(a){return p.nodeName(a,"iframe")?a.contentDocument||a.contentWindow.document:p.merge([],a.childNodes)}},function(a,b){p.fn[a]=function(c,d){var e=p.map(this,b,c);return bc.test(a)||(d=c),d&&typeof d=="string"&&(e=p.filter(d,e)),e=this.length>1&&!bg[a]?p.unique(e):e,this.length>1&&bd.test(a)&&(e=e.reverse()),this.pushStack(e,a,k.call(arguments).join(","))}}),p.extend({filter:function(a,b,c){return c&&(a=":not("+a+")"),b.length===1?p.find.matchesSelector(b[0],a)?[b[0]]:[]:p.find.matches(a,b)},dir:function(a,c,d){var e=[],f=a[c];while(f&&f.nodeType!==9&&(d===b||f.nodeType!==1||!p(f).is(d)))f.nodeType===1&&e.push(f),f=f[c];return e},sibling:function(a,b){var c=[];for(;a;a=a.nextSibling)a.nodeType===1&&a!==b&&c.push(a);return c}});var bl="abbr|article|aside|audio|bdi|canvas|data|datalist|details|figcaption|figure|footer|header|hgroup|mark|meter|nav|output|progress|section|summary|time|video",bm=/ jQuery\d+="(?:null|\d+)"/g,bn=/^\s+/,bo=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/gi,bp=/<([\w:]+)/,bq=/<tbody/i,br=/<|&#?\w+;/,bs=/<(?:script|style|link)/i,bt=/<(?:script|object|embed|option|style)/i,bu=new RegExp("<(?:"+bl+")[\\s/>]","i"),bv=/^(?:checkbox|radio)$/,bw=/checked\s*(?:[^=]|=\s*.checked.)/i,bx=/\/(java|ecma)script/i,by=/^\s*<!(?:\[CDATA\[|\-\-)|[\]\-]{2}>\s*$/g,bz={option:[1,"<select multiple='multiple'>","</select>"],legend:[1,"<fieldset>","</fieldset>"],thead:[1,"<table>","</table>"],tr:[2,"<table><tbody>","</tbody></table>"],td:[3,"<table><tbody><tr>","</tr></tbody></table>"],col:[2,"<table><tbody></tbody><colgroup>","</colgroup></table>"],area:[1,"<map>","</map>"],_default:[0,"",""]},bA=bk(e),bB=bA.appendChild(e.createElement("div"));bz.optgroup=bz.option,bz.tbody=bz.tfoot=bz.colgroup=bz.caption=bz.thead,bz.th=bz.td,p.support.htmlSerialize||(bz._default=[1,"X<div>","</div>"]),p.fn.extend({text:function(a){return p.access(this,function(a){return a===b?p.text(this):this.empty().append((this[0]&&this[0].ownerDocument||e).createTextNode(a))},null,a,arguments.length)},wrapAll:function(a){if(p.isFunction(a))return this.each(function(b){p(this).wrapAll(a.call(this,b))});if(this[0]){var b=p(a,this[0].ownerDocument).eq(0).clone(!0);this[0].parentNode&&b.insertBefore(this[0]),b.map(function(){var a=this;while(a.firstChild&&a.firstChild.nodeType===1)a=a.firstChild;return a}).append(this)}return this},wrapInner:function(a){return p.isFunction(a)?this.each(function(b){p(this).wrapInner(a.call(this,b))}):this.each(function(){var b=p(this),c=b.contents();c.length?c.wrapAll(a):b.append(a)})},wrap:function(a){var b=p.isFunction(a);return this.each(function(c){p(this).wrapAll(b?a.call(this,c):a)})},unwrap:function(){return this.parent().each(function(){p.nodeName(this,"body")||p(this).replaceWith(this.childNodes)}).end()},append:function(){return this.domManip(arguments,!0,function(a){(this.nodeType===1||this.nodeType===11)&&this.appendChild(a)})},prepend:function(){return this.domManip(arguments,!0,function(a){(this.nodeType===1||this.nodeType===11)&&this.insertBefore(a,this.firstChild)})},before:function(){if(!bh(this[0]))return this.domManip(arguments,!1,function(a){this.parentNode.insertBefore(a,this)});if(arguments.length){var a=p.clean(arguments);return this.pushStack(p.merge(a,this),"before",this.selector)}},after:function(){if(!bh(this[0]))return this.domManip(arguments,!1,function(a){this.parentNode.insertBefore(a,this.nextSibling)});if(arguments.length){var a=p.clean(arguments);return this.pushStack(p.merge(this,a),"after",this.selector)}},remove:function(a,b){var c,d=0;for(;(c=this[d])!=null;d++)if(!a||p.filter(a,[c]).length)!b&&c.nodeType===1&&(p.cleanData(c.getElementsByTagName("*")),p.cleanData([c])),c.parentNode&&c.parentNode.removeChild(c);return this},empty:function(){var a,b=0;for(;(a=this[b])!=null;b++){a.nodeType===1&&p.cleanData(a.getElementsByTagName("*"));while(a.firstChild)a.removeChild(a.firstChild)}return this},clone:function(a,b){return a=a==null?!1:a,b=b==null?a:b,this.map(function(){return p.clone(this,a,b)})},html:function(a){return p.access(this,function(a){var c=this[0]||{},d=0,e=this.length;if(a===b)return c.nodeType===1?c.innerHTML.replace(bm,""):b;if(typeof a=="string"&&!bs.test(a)&&(p.support.htmlSerialize||!bu.test(a))&&(p.support.leadingWhitespace||!bn.test(a))&&!bz[(bp.exec(a)||["",""])[1].toLowerCase()]){a=a.replace(bo,"<$1></$2>");try{for(;d<e;d++)c=this[d]||{},c.nodeType===1&&(p.cleanData(c.getElementsByTagName("*")),c.innerHTML=a);c=0}catch(f){}}c&&this.empty().append(a)},null,a,arguments.length)},replaceWith:function(a){return bh(this[0])?this.length?this.pushStack(p(p.isFunction(a)?a():a),"replaceWith",a):this:p.isFunction(a)?this.each(function(b){var c=p(this),d=c.html();c.replaceWith(a.call(this,b,d))}):(typeof a!="string"&&(a=p(a).detach()),this.each(function(){var b=this.nextSibling,c=this.parentNode;p(this).remove(),b?p(b).before(a):p(c).append(a)}))},detach:function(a){return this.remove(a,!0)},domManip:function(a,c,d){a=[].concat.apply([],a);var e,f,g,h,i=0,j=a[0],k=[],l=this.length;if(!p.support.checkClone&&l>1&&typeof j=="string"&&bw.test(j))return this.each(function(){p(this).domManip(a,c,d)});if(p.isFunction(j))return this.each(function(e){var f=p(this);a[0]=j.call(this,e,c?f.html():b),f.domManip(a,c,d)});if(this[0]){e=p.buildFragment(a,this,k),g=e.fragment,f=g.firstChild,g.childNodes.length===1&&(g=f);if(f){c=c&&p.nodeName(f,"tr");for(h=e.cacheable||l-1;i<l;i++)d.call(c&&p.nodeName(this[i],"table")?bC(this[i],"tbody"):this[i],i===h?g:p.clone(g,!0,!0))}g=f=null,k.length&&p.each(k,function(a,b){b.src?p.ajax?p.ajax({url:b.src,type:"GET",dataType:"script",async:!1,global:!1,"throws":!0}):p.error("no ajax"):p.globalEval((b.text||b.textContent||b.innerHTML||"").replace(by,"")),b.parentNode&&b.parentNode.removeChild(b)})}return this}}),p.buildFragment=function(a,c,d){var f,g,h,i=a[0];return c=c||e,c=!c.nodeType&&c[0]||c,c=c.ownerDocument||c,a.length===1&&typeof i=="string"&&i.length<512&&c===e&&i.charAt(0)==="<"&&!bt.test(i)&&(p.support.checkClone||!bw.test(i))&&(p.support.html5Clone||!bu.test(i))&&(g=!0,f=p.fragments[i],h=f!==b),f||(f=c.createDocumentFragment(),p.clean(a,c,f,d),g&&(p.fragments[i]=h&&f)),{fragment:f,cacheable:g}},p.fragments={},p.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(a,b){p.fn[a]=function(c){var d,e=0,f=[],g=p(c),h=g.length,i=this.length===1&&this[0].parentNode;if((i==null||i&&i.nodeType===11&&i.childNodes.length===1)&&h===1)return g[b](this[0]),this;for(;e<h;e++)d=(e>0?this.clone(!0):this).get(),p(g[e])[b](d),f=f.concat(d);return this.pushStack(f,a,g.selector)}}),p.extend({clone:function(a,b,c){var d,e,f,g;p.support.html5Clone||p.isXMLDoc(a)||!bu.test("<"+a.nodeName+">")?g=a.cloneNode(!0):(bB.innerHTML=a.outerHTML,bB.removeChild(g=bB.firstChild));if((!p.support.noCloneEvent||!p.support.noCloneChecked)&&(a.nodeType===1||a.nodeType===11)&&!p.isXMLDoc(a)){bE(a,g),d=bF(a),e=bF(g);for(f=0;d[f];++f)e[f]&&bE(d[f],e[f])}if(b){bD(a,g);if(c){d=bF(a),e=bF(g);for(f=0;d[f];++f)bD(d[f],e[f])}}return d=e=null,g},clean:function(a,b,c,d){var f,g,h,i,j,k,l,m,n,o,q,r,s=b===e&&bA,t=[];if(!b||typeof b.createDocumentFragment=="undefined")b=e;for(f=0;(h=a[f])!=null;f++){typeof h=="number"&&(h+="");if(!h)continue;if(typeof h=="string")if(!br.test(h))h=b.createTextNode(h);else{s=s||bk(b),l=b.createElement("div"),s.appendChild(l),h=h.replace(bo,"<$1></$2>"),i=(bp.exec(h)||["",""])[1].toLowerCase(),j=bz[i]||bz._default,k=j[0],l.innerHTML=j[1]+h+j[2];while(k--)l=l.lastChild;if(!p.support.tbody){m=bq.test(h),n=i==="table"&&!m?l.firstChild&&l.firstChild.childNodes:j[1]==="<table>"&&!m?l.childNodes:[];for(g=n.length-1;g>=0;--g)p.nodeName(n[g],"tbody")&&!n[g].childNodes.length&&n[g].parentNode.removeChild(n[g])}!p.support.leadingWhitespace&&bn.test(h)&&l.insertBefore(b.createTextNode(bn.exec(h)[0]),l.firstChild),h=l.childNodes,l.parentNode.removeChild(l)}h.nodeType?t.push(h):p.merge(t,h)}l&&(h=l=s=null);if(!p.support.appendChecked)for(f=0;(h=t[f])!=null;f++)p.nodeName(h,"input")?bG(h):typeof h.getElementsByTagName!="undefined"&&p.grep(h.getElementsByTagName("input"),bG);if(c){q=function(a){if(!a.type||bx.test(a.type))return d?d.push(a.parentNode?a.parentNode.removeChild(a):a):c.appendChild(a)};for(f=0;(h=t[f])!=null;f++)if(!p.nodeName(h,"script")||!q(h))c.appendChild(h),typeof h.getElementsByTagName!="undefined"&&(r=p.grep(p.merge([],h.getElementsByTagName("script")),q),t.splice.apply(t,[f+1,0].concat(r)),f+=r.length)}return t},cleanData:function(a,b){var c,d,e,f,g=0,h=p.expando,i=p.cache,j=p.support.deleteExpando,k=p.event.special;for(;(e=a[g])!=null;g++)if(b||p.acceptData(e)){d=e[h],c=d&&i[d];if(c){if(c.events)for(f in c.events)k[f]?p.event.remove(e,f):p.removeEvent(e,f,c.handle);i[d]&&(delete i[d],j?delete e[h]:e.removeAttribute?e.removeAttribute(h):e[h]=null,p.deletedIds.push(d))}}}}),function(){var a,b;p.uaMatch=function(a){a=a.toLowerCase();var b=/(chrome)[ \/]([\w.]+)/.exec(a)||/(webkit)[ \/]([\w.]+)/.exec(a)||/(opera)(?:.*version|)[ \/]([\w.]+)/.exec(a)||/(msie) ([\w.]+)/.exec(a)||a.indexOf("compatible")<0&&/(mozilla)(?:.*? rv:([\w.]+)|)/.exec(a)||[];return{browser:b[1]||"",version:b[2]||"0"}},a=p.uaMatch(g.userAgent),b={},a.browser&&(b[a.browser]=!0,b.version=a.version),b.chrome?b.webkit=!0:b.webkit&&(b.safari=!0),p.browser=b,p.sub=function(){function a(b,c){return new a.fn.init(b,c)}p.extend(!0,a,this),a.superclass=this,a.fn=a.prototype=this(),a.fn.constructor=a,a.sub=this.sub,a.fn.init=function c(c,d){return d&&d instanceof p&&!(d instanceof a)&&(d=a(d)),p.fn.init.call(this,c,d,b)},a.fn.init.prototype=a.fn;var b=a(e);return a}}();var bH,bI,bJ,bK=/alpha\([^)]*\)/i,bL=/opacity=([^)]*)/,bM=/^(top|right|bottom|left)$/,bN=/^(none|table(?!-c[ea]).+)/,bO=/^margin/,bP=new RegExp("^("+q+")(.*)$","i"),bQ=new RegExp("^("+q+")(?!px)[a-z%]+$","i"),bR=new RegExp("^([-+])=("+q+")","i"),bS={},bT={position:"absolute",visibility:"hidden",display:"block"},bU={letterSpacing:0,fontWeight:400},bV=["Top","Right","Bottom","Left"],bW=["Webkit","O","Moz","ms"],bX=p.fn.toggle;p.fn.extend({css:function(a,c){return p.access(this,function(a,c,d){return d!==b?p.style(a,c,d):p.css(a,c)},a,c,arguments.length>1)},show:function(){return b$(this,!0)},hide:function(){return b$(this)},toggle:function(a,b){var c=typeof a=="boolean";return p.isFunction(a)&&p.isFunction(b)?bX.apply(this,arguments):this.each(function(){(c?a:bZ(this))?p(this).show():p(this).hide()})}}),p.extend({cssHooks:{opacity:{get:function(a,b){if(b){var c=bH(a,"opacity");return c===""?"1":c}}}},cssNumber:{fillOpacity:!0,fontWeight:!0,lineHeight:!0,opacity:!0,orphans:!0,widows:!0,zIndex:!0,zoom:!0},cssProps:{"float":p.support.cssFloat?"cssFloat":"styleFloat"},style:function(a,c,d,e){if(!a||a.nodeType===3||a.nodeType===8||!a.style)return;var f,g,h,i=p.camelCase(c),j=a.style;c=p.cssProps[i]||(p.cssProps[i]=bY(j,i)),h=p.cssHooks[c]||p.cssHooks[i];if(d===b)return h&&"get"in h&&(f=h.get(a,!1,e))!==b?f:j[c];g=typeof d,g==="string"&&(f=bR.exec(d))&&(d=(f[1]+1)*f[2]+parseFloat(p.css(a,c)),g="number");if(d==null||g==="number"&&isNaN(d))return;g==="number"&&!p.cssNumber[i]&&(d+="px");if(!h||!("set"in h)||(d=h.set(a,d,e))!==b)try{j[c]=d}catch(k){}},css:function(a,c,d,e){var f,g,h,i=p.camelCase(c);return c=p.cssProps[i]||(p.cssProps[i]=bY(a.style,i)),h=p.cssHooks[c]||p.cssHooks[i],h&&"get"in h&&(f=h.get(a,!0,e)),f===b&&(f=bH(a,c)),f==="normal"&&c in bU&&(f=bU[c]),d||e!==b?(g=parseFloat(f),d||p.isNumeric(g)?g||0:f):f},swap:function(a,b,c){var d,e,f={};for(e in b)f[e]=a.style[e],a.style[e]=b[e];d=c.call(a);for(e in b)a.style[e]=f[e];return d}}),a.getComputedStyle?bH=function(b,c){var d,e,f,g,h=a.getComputedStyle(b,null),i=b.style;return h&&(d=h[c],d===""&&!p.contains(b.ownerDocument,b)&&(d=p.style(b,c)),bQ.test(d)&&bO.test(c)&&(e=i.width,f=i.minWidth,g=i.maxWidth,i.minWidth=i.maxWidth=i.width=d,d=h.width,i.width=e,i.minWidth=f,i.maxWidth=g)),d}:e.documentElement.currentStyle&&(bH=function(a,b){var c,d,e=a.currentStyle&&a.currentStyle[b],f=a.style;return e==null&&f&&f[b]&&(e=f[b]),bQ.test(e)&&!bM.test(b)&&(c=f.left,d=a.runtimeStyle&&a.runtimeStyle.left,d&&(a.runtimeStyle.left=a.currentStyle.left),f.left=b==="fontSize"?"1em":e,e=f.pixelLeft+"px",f.left=c,d&&(a.runtimeStyle.left=d)),e===""?"auto":e}),p.each(["height","width"],function(a,b){p.cssHooks[b]={get:function(a,c,d){if(c)return a.offsetWidth===0&&bN.test(bH(a,"display"))?p.swap(a,bT,function(){return cb(a,b,d)}):cb(a,b,d)},set:function(a,c,d){return b_(a,c,d?ca(a,b,d,p.support.boxSizing&&p.css(a,"boxSizing")==="border-box"):0)}}}),p.support.opacity||(p.cssHooks.opacity={get:function(a,b){return bL.test((b&&a.currentStyle?a.currentStyle.filter:a.style.filter)||"")?.01*parseFloat(RegExp.$1)+"":b?"1":""},set:function(a,b){var c=a.style,d=a.currentStyle,e=p.isNumeric(b)?"alpha(opacity="+b*100+")":"",f=d&&d.filter||c.filter||"";c.zoom=1;if(b>=1&&p.trim(f.replace(bK,""))===""&&c.removeAttribute){c.removeAttribute("filter");if(d&&!d.filter)return}c.filter=bK.test(f)?f.replace(bK,e):f+" "+e}}),p(function(){p.support.reliableMarginRight||(p.cssHooks.marginRight={get:function(a,b){return p.swap(a,{display:"inline-block"},function(){if(b)return bH(a,"marginRight")})}}),!p.support.pixelPosition&&p.fn.position&&p.each(["top","left"],function(a,b){p.cssHooks[b]={get:function(a,c){if(c){var d=bH(a,b);return bQ.test(d)?p(a).position()[b]+"px":d}}}})}),p.expr&&p.expr.filters&&(p.expr.filters.hidden=function(a){return a.offsetWidth===0&&a.offsetHeight===0||!p.support.reliableHiddenOffsets&&(a.style&&a.style.display||bH(a,"display"))==="none"},p.expr.filters.visible=function(a){return!p.expr.filters.hidden(a)}),p.each({margin:"",padding:"",border:"Width"},function(a,b){p.cssHooks[a+b]={expand:function(c){var d,e=typeof c=="string"?c.split(" "):[c],f={};for(d=0;d<4;d++)f[a+bV[d]+b]=e[d]||e[d-2]||e[0];return f}},bO.test(a)||(p.cssHooks[a+b].set=b_)});var cd=/%20/g,ce=/\[\]$/,cf=/\r?\n/g,cg=/^(?:color|date|datetime|datetime-local|email|hidden|month|number|password|range|search|tel|text|time|url|week)$/i,ch=/^(?:select|textarea)/i;p.fn.extend({serialize:function(){return p.param(this.serializeArray())},serializeArray:function(){return this.map(function(){return this.elements?p.makeArray(this.elements):this}).filter(function(){return this.name&&!this.disabled&&(this.checked||ch.test(this.nodeName)||cg.test(this.type))}).map(function(a,b){var c=p(this).val();return c==null?null:p.isArray(c)?p.map(c,function(a,c){return{name:b.name,value:a.replace(cf,"\r\n")}}):{name:b.name,value:c.replace(cf,"\r\n")}}).get()}}),p.param=function(a,c){var d,e=[],f=function(a,b){b=p.isFunction(b)?b():b==null?"":b,e[e.length]=encodeURIComponent(a)+"="+encodeURIComponent(b)};c===b&&(c=p.ajaxSettings&&p.ajaxSettings.traditional);if(p.isArray(a)||a.jquery&&!p.isPlainObject(a))p.each(a,function(){f(this.name,this.value)});else for(d in a)ci(d,a[d],c,f);return e.join("&").replace(cd,"+")};var cj,ck,cl=/#.*$/,cm=/^(.*?):[ \t]*([^\r\n]*)\r?$/mg,cn=/^(?:about|app|app\-storage|.+\-extension|file|res|widget):$/,co=/^(?:GET|HEAD)$/,cp=/^\/\//,cq=/\?/,cr=/<script\b[^<]*(?:(?!<\/script>)<[^<]*)*<\/script>/gi,cs=/([?&])_=[^&]*/,ct=/^([\w\+\.\-]+:)(?:\/\/([^\/?#:]*)(?::(\d+)|)|)/,cu=p.fn.load,cv={},cw={},cx=["*/"]+["*"];try{ck=f.href}catch(cy){ck=e.createElement("a"),ck.href="",ck=ck.href}cj=ct.exec(ck.toLowerCase())||[],p.fn.load=function(a,c,d){if(typeof a!="string"&&cu)return cu.apply(this,arguments);if(!this.length)return this;var e,f,g,h=this,i=a.indexOf(" ");return i>=0&&(e=a.slice(i,a.length),a=a.slice(0,i)),p.isFunction(c)?(d=c,c=b):c&&typeof c=="object"&&(f="POST"),p.ajax({url:a,type:f,dataType:"html",data:c,complete:function(a,b){d&&h.each(d,g||[a.responseText,b,a])}}).done(function(a){g=arguments,h.html(e?p("<div>").append(a.replace(cr,"")).find(e):a)}),this},p.each("ajaxStart ajaxStop ajaxComplete ajaxError ajaxSuccess ajaxSend".split(" "),function(a,b){p.fn[b]=function(a){return this.on(b,a)}}),p.each(["get","post"],function(a,c){p[c]=function(a,d,e,f){return p.isFunction(d)&&(f=f||e,e=d,d=b),p.ajax({type:c,url:a,data:d,success:e,dataType:f})}}),p.extend({getScript:function(a,c){return p.get(a,b,c,"script")},getJSON:function(a,b,c){return p.get(a,b,c,"json")},ajaxSetup:function(a,b){return b?cB(a,p.ajaxSettings):(b=a,a=p.ajaxSettings),cB(a,b),a},ajaxSettings:{url:ck,isLocal:cn.test(cj[1]),global:!0,type:"GET",contentType:"application/x-www-form-urlencoded; charset=UTF-8",processData:!0,async:!0,accepts:{xml:"application/xml, text/xml",html:"text/html",text:"text/plain",json:"application/json, text/javascript","*":cx},contents:{xml:/xml/,html:/html/,json:/json/},responseFields:{xml:"responseXML",text:"responseText"},converters:{"* text":a.String,"text html":!0,"text json":p.parseJSON,"text xml":p.parseXML},flatOptions:{context:!0,url:!0}},ajaxPrefilter:cz(cv),ajaxTransport:cz(cw),ajax:function(a,c){function y(a,c,f,i){var k,s,t,u,w,y=c;if(v===2)return;v=2,h&&clearTimeout(h),g=b,e=i||"",x.readyState=a>0?4:0,f&&(u=cC(l,x,f));if(a>=200&&a<300||a===304)l.ifModified&&(w=x.getResponseHeader("Last-Modified"),w&&(p.lastModified[d]=w),w=x.getResponseHeader("Etag"),w&&(p.etag[d]=w)),a===304?(y="notmodified",k=!0):(k=cD(l,u),y=k.state,s=k.data,t=k.error,k=!t);else{t=y;if(!y||a)y="error",a<0&&(a=0)}x.status=a,x.statusText=(c||y)+"",k?o.resolveWith(m,[s,y,x]):o.rejectWith(m,[x,y,t]),x.statusCode(r),r=b,j&&n.trigger("ajax"+(k?"Success":"Error"),[x,l,k?s:t]),q.fireWith(m,[x,y]),j&&(n.trigger("ajaxComplete",[x,l]),--p.active||p.event.trigger("ajaxStop"))}typeof a=="object"&&(c=a,a=b),c=c||{};var d,e,f,g,h,i,j,k,l=p.ajaxSetup({},c),m=l.context||l,n=m!==l&&(m.nodeType||m instanceof p)?p(m):p.event,o=p.Deferred(),q=p.Callbacks("once memory"),r=l.statusCode||{},t={},u={},v=0,w="canceled",x={readyState:0,setRequestHeader:function(a,b){if(!v){var c=a.toLowerCase();a=u[c]=u[c]||a,t[a]=b}return this},getAllResponseHeaders:function(){return v===2?e:null},getResponseHeader:function(a){var c;if(v===2){if(!f){f={};while(c=cm.exec(e))f[c[1].toLowerCase()]=c[2]}c=f[a.toLowerCase()]}return c===b?null:c},overrideMimeType:function(a){return v||(l.mimeType=a),this},abort:function(a){return a=a||w,g&&g.abort(a),y(0,a),this}};o.promise(x),x.success=x.done,x.error=x.fail,x.complete=q.add,x.statusCode=function(a){if(a){var b;if(v<2)for(b in a)r[b]=[r[b],a[b]];else b=a[x.status],x.always(b)}return this},l.url=((a||l.url)+"").replace(cl,"").replace(cp,cj[1]+"//"),l.dataTypes=p.trim(l.dataType||"*").toLowerCase().split(s),l.crossDomain==null&&(i=ct.exec(l.url.toLowerCase())||!1,l.crossDomain=i&&i.join(":")+(i[3]?"":i[1]==="http:"?80:443)!==cj.join(":")+(cj[3]?"":cj[1]==="http:"?80:443)),l.data&&l.processData&&typeof l.data!="string"&&(l.data=p.param(l.data,l.traditional)),cA(cv,l,c,x);if(v===2)return x;j=l.global,l.type=l.type.toUpperCase(),l.hasContent=!co.test(l.type),j&&p.active++===0&&p.event.trigger("ajaxStart");if(!l.hasContent){l.data&&(l.url+=(cq.test(l.url)?"&":"?")+l.data,delete l.data),d=l.url;if(l.cache===!1){var z=p.now(),A=l.url.replace(cs,"$1_="+z);l.url=A+(A===l.url?(cq.test(l.url)?"&":"?")+"_="+z:"")}}(l.data&&l.hasContent&&l.contentType!==!1||c.contentType)&&x.setRequestHeader("Content-Type",l.contentType),l.ifModified&&(d=d||l.url,p.lastModified[d]&&x.setRequestHeader("If-Modified-Since",p.lastModified[d]),p.etag[d]&&x.setRequestHeader("If-None-Match",p.etag[d])),x.setRequestHeader("Accept",l.dataTypes[0]&&l.accepts[l.dataTypes[0]]?l.accepts[l.dataTypes[0]]+(l.dataTypes[0]!=="*"?", "+cx+"; q=0.01":""):l.accepts["*"]);for(k in l.headers)x.setRequestHeader(k,l.headers[k]);if(!l.beforeSend||l.beforeSend.call(m,x,l)!==!1&&v!==2){w="abort";for(k in{success:1,error:1,complete:1})x[k](l[k]);g=cA(cw,l,c,x);if(!g)y(-1,"No Transport");else{x.readyState=1,j&&n.trigger("ajaxSend",[x,l]),l.async&&l.timeout>0&&(h=setTimeout(function(){x.abort("timeout")},l.timeout));try{v=1,g.send(t,y)}catch(B){if(v<2)y(-1,B);else throw B}}return x}return x.abort()},active:0,lastModified:{},etag:{}});var cE=[],cF=/\?/,cG=/(=)\?(?=&|$)|\?\?/,cH=p.now();p.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var a=cE.pop()||p.expando+"_"+cH++;return this[a]=!0,a}}),p.ajaxPrefilter("json jsonp",function(c,d,e){var f,g,h,i=c.data,j=c.url,k=c.jsonp!==!1,l=k&&cG.test(j),m=k&&!l&&typeof i=="string"&&!(c.contentType||"").indexOf("application/x-www-form-urlencoded")&&cG.test(i);if(c.dataTypes[0]==="jsonp"||l||m)return f=c.jsonpCallback=p.isFunction(c.jsonpCallback)?c.jsonpCallback():c.jsonpCallback,g=a[f],l?c.url=j.replace(cG,"$1"+f):m?c.data=i.replace(cG,"$1"+f):k&&(c.url+=(cF.test(j)?"&":"?")+c.jsonp+"="+f),c.converters["script json"]=function(){return h||p.error(f+" was not called"),h[0]},c.dataTypes[0]="json",a[f]=function(){h=arguments},e.always(function(){a[f]=g,c[f]&&(c.jsonpCallback=d.jsonpCallback,cE.push(f)),h&&p.isFunction(g)&&g(h[0]),h=g=b}),"script"}),p.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/javascript|ecmascript/},converters:{"text script":function(a){return p.globalEval(a),a}}}),p.ajaxPrefilter("script",function(a){a.cache===b&&(a.cache=!1),a.crossDomain&&(a.type="GET",a.global=!1)}),p.ajaxTransport("script",function(a){if(a.crossDomain){var c,d=e.head||e.getElementsByTagName("head")[0]||e.documentElement;return{send:function(f,g){c=e.createElement("script"),c.async="async",a.scriptCharset&&(c.charset=a.scriptCharset),c.src=a.url,c.onload=c.onreadystatechange=function(a,e){if(e||!c.readyState||/loaded|complete/.test(c.readyState))c.onload=c.onreadystatechange=null,d&&c.parentNode&&d.removeChild(c),c=b,e||g(200,"success")},d.insertBefore(c,d.firstChild)},abort:function(){c&&c.onload(0,1)}}}});var cI,cJ=a.ActiveXObject?function(){for(var a in cI)cI[a](0,1)}:!1,cK=0;p.ajaxSettings.xhr=a.ActiveXObject?function(){return!this.isLocal&&cL()||cM()}:cL,function(a){p.extend(p.support,{ajax:!!a,cors:!!a&&"withCredentials"in a})}(p.ajaxSettings.xhr()),p.support.ajax&&p.ajaxTransport(function(c){if(!c.crossDomain||p.support.cors){var d;return{send:function(e,f){var g,h,i=c.xhr();c.username?i.open(c.type,c.url,c.async,c.username,c.password):i.open(c.type,c.url,c.async);if(c.xhrFields)for(h in c.xhrFields)i[h]=c.xhrFields[h];c.mimeType&&i.overrideMimeType&&i.overrideMimeType(c.mimeType),!c.crossDomain&&!e["X-Requested-With"]&&(e["X-Requested-With"]="XMLHttpRequest");try{for(h in e)i.setRequestHeader(h,e[h])}catch(j){}i.send(c.hasContent&&c.data||null),d=function(a,e){var h,j,k,l,m;try{if(d&&(e||i.readyState===4)){d=b,g&&(i.onreadystatechange=p.noop,cJ&&delete cI[g]);if(e)i.readyState!==4&&i.abort();else{h=i.status,k=i.getAllResponseHeaders(),l={},m=i.responseXML,m&&m.documentElement&&(l.xml=m);try{l.text=i.responseText}catch(a){}try{j=i.statusText}catch(n){j=""}!h&&c.isLocal&&!c.crossDomain?h=l.text?200:404:h===1223&&(h=204)}}}catch(o){e||f(-1,o)}l&&f(h,j,l,k)},c.async?i.readyState===4?setTimeout(d,0):(g=++cK,cJ&&(cI||(cI={},p(a).unload(cJ)),cI[g]=d),i.onreadystatechange=d):d()},abort:function(){d&&d(0,1)}}}});var cN,cO,cP=/^(?:toggle|show|hide)$/,cQ=new RegExp("^(?:([-+])=|)("+q+")([a-z%]*)$","i"),cR=/queueHooks$/,cS=[cY],cT={"*":[function(a,b){var c,d,e=this.createTween(a,b),f=cQ.exec(b),g=e.cur(),h=+g||0,i=1,j=20;if(f){c=+f[2],d=f[3]||(p.cssNumber[a]?"":"px");if(d!=="px"&&h){h=p.css(e.elem,a,!0)||c||1;do i=i||".5",h=h/i,p.style(e.elem,a,h+d);while(i!==(i=e.cur()/g)&&i!==1&&--j)}e.unit=d,e.start=h,e.end=f[1]?h+(f[1]+1)*c:c}return e}]};p.Animation=p.extend(cW,{tweener:function(a,b){p.isFunction(a)?(b=a,a=["*"]):a=a.split(" ");var c,d=0,e=a.length;for(;d<e;d++)c=a[d],cT[c]=cT[c]||[],cT[c].unshift(b)},prefilter:function(a,b){b?cS.unshift(a):cS.push(a)}}),p.Tween=cZ,cZ.prototype={constructor:cZ,init:function(a,b,c,d,e,f){this.elem=a,this.prop=c,this.easing=e||"swing",this.options=b,this.start=this.now=this.cur(),this.end=d,this.unit=f||(p.cssNumber[c]?"":"px")},cur:function(){var a=cZ.propHooks[this.prop];return a&&a.get?a.get(this):cZ.propHooks._default.get(this)},run:function(a){var b,c=cZ.propHooks[this.prop];return this.options.duration?this.pos=b=p.easing[this.easing](a,this.options.duration*a,0,1,this.options.duration):this.pos=b=a,this.now=(this.end-this.start)*b+this.start,this.options.step&&this.options.step.call(this.elem,this.now,this),c&&c.set?c.set(this):cZ.propHooks._default.set(this),this}},cZ.prototype.init.prototype=cZ.prototype,cZ.propHooks={_default:{get:function(a){var b;return a.elem[a.prop]==null||!!a.elem.style&&a.elem.style[a.prop]!=null?(b=p.css(a.elem,a.prop,!1,""),!b||b==="auto"?0:b):a.elem[a.prop]},set:function(a){p.fx.step[a.prop]?p.fx.step[a.prop](a):a.elem.style&&(a.elem.style[p.cssProps[a.prop]]!=null||p.cssHooks[a.prop])?p.style(a.elem,a.prop,a.now+a.unit):a.elem[a.prop]=a.now}}},cZ.propHooks.scrollTop=cZ.propHooks.scrollLeft={set:function(a){a.elem.nodeType&&a.elem.parentNode&&(a.elem[a.prop]=a.now)}},p.each(["toggle","show","hide"],function(a,b){var c=p.fn[b];p.fn[b]=function(d,e,f){return d==null||typeof d=="boolean"||!a&&p.isFunction(d)&&p.isFunction(e)?c.apply(this,arguments):this.animate(c$(b,!0),d,e,f)}}),p.fn.extend({fadeTo:function(a,b,c,d){return this.filter(bZ).css("opacity",0).show().end().animate({opacity:b},a,c,d)},animate:function(a,b,c,d){var e=p.isEmptyObject(a),f=p.speed(b,c,d),g=function(){var b=cW(this,p.extend({},a),f);e&&b.stop(!0)};return e||f.queue===!1?this.each(g):this.queue(f.queue,g)},stop:function(a,c,d){var e=function(a){var b=a.stop;delete a.stop,b(d)};return typeof a!="string"&&(d=c,c=a,a=b),c&&a!==!1&&this.queue(a||"fx",[]),this.each(function(){var b=!0,c=a!=null&&a+"queueHooks",f=p.timers,g=p._data(this);if(c)g[c]&&g[c].stop&&e(g[c]);else for(c in g)g[c]&&g[c].stop&&cR.test(c)&&e(g[c]);for(c=f.length;c--;)f[c].elem===this&&(a==null||f[c].queue===a)&&(f[c].anim.stop(d),b=!1,f.splice(c,1));(b||!d)&&p.dequeue(this,a)})}}),p.each({slideDown:c$("show"),slideUp:c$("hide"),slideToggle:c$("toggle"),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"},fadeToggle:{opacity:"toggle"}},function(a,b){p.fn[a]=function(a,c,d){return this.animate(b,a,c,d)}}),p.speed=function(a,b,c){var d=a&&typeof a=="object"?p.extend({},a):{complete:c||!c&&b||p.isFunction(a)&&a,duration:a,easing:c&&b||b&&!p.isFunction(b)&&b};d.duration=p.fx.off?0:typeof d.duration=="number"?d.duration:d.duration in p.fx.speeds?p.fx.speeds[d.duration]:p.fx.speeds._default;if(d.queue==null||d.queue===!0)d.queue="fx";return d.old=d.complete,d.complete=function(){p.isFunction(d.old)&&d.old.call(this),d.queue&&p.dequeue(this,d.queue)},d},p.easing={linear:function(a){return a},swing:function(a){return.5-Math.cos(a*Math.PI)/2}},p.timers=[],p.fx=cZ.prototype.init,p.fx.tick=function(){var a,b=p.timers,c=0;for(;c<b.length;c++)a=b[c],!a()&&b[c]===a&&b.splice(c--,1);b.length||p.fx.stop()},p.fx.timer=function(a){a()&&p.timers.push(a)&&!cO&&(cO=setInterval(p.fx.tick,p.fx.interval))},p.fx.interval=13,p.fx.stop=function(){clearInterval(cO),cO=null},p.fx.speeds={slow:600,fast:200,_default:400},p.fx.step={},p.expr&&p.expr.filters&&(p.expr.filters.animated=function(a){return p.grep(p.timers,function(b){return a===b.elem}).length});var c_=/^(?:body|html)$/i;p.fn.offset=function(a){if(arguments.length)return a===b?this:this.each(function(b){p.offset.setOffset(this,a,b)});var c,d,e,f,g,h,i,j={top:0,left:0},k=this[0],l=k&&k.ownerDocument;if(!l)return;return(d=l.body)===k?p.offset.bodyOffset(k):(c=l.documentElement,p.contains(c,k)?(typeof k.getBoundingClientRect!="undefined"&&(j=k.getBoundingClientRect()),e=da(l),f=c.clientTop||d.clientTop||0,g=c.clientLeft||d.clientLeft||0,h=e.pageYOffset||c.scrollTop,i=e.pageXOffset||c.scrollLeft,{top:j.top+h-f,left:j.left+i-g}):j)},p.offset={bodyOffset:function(a){var b=a.offsetTop,c=a.offsetLeft;return p.support.doesNotIncludeMarginInBodyOffset&&(b+=parseFloat(p.css(a,"marginTop"))||0,c+=parseFloat(p.css(a,"marginLeft"))||0),{top:b,left:c}},setOffset:function(a,b,c){var d=p.css(a,"position");d==="static"&&(a.style.position="relative");var e=p(a),f=e.offset(),g=p.css(a,"top"),h=p.css(a,"left"),i=(d==="absolute"||d==="fixed")&&p.inArray("auto",[g,h])>-1,j={},k={},l,m;i?(k=e.position(),l=k.top,m=k.left):(l=parseFloat(g)||0,m=parseFloat(h)||0),p.isFunction(b)&&(b=b.call(a,c,f)),b.top!=null&&(j.top=b.top-f.top+l),b.left!=null&&(j.left=b.left-f.left+m),"using"in b?b.using.call(a,j):e.css(j)}},p.fn.extend({position:function(){if(!this[0])return;var a=this[0],b=this.offsetParent(),c=this.offset(),d=c_.test(b[0].nodeName)?{top:0,left:0}:b.offset();return c.top-=parseFloat(p.css(a,"marginTop"))||0,c.left-=parseFloat(p.css(a,"marginLeft"))||0,d.top+=parseFloat(p.css(b[0],"borderTopWidth"))||0,d.left+=parseFloat(p.css(b[0],"borderLeftWidth"))||0,{top:c.top-d.top,left:c.left-d.left}},offsetParent:function(){return this.map(function(){var a=this.offsetParent||e.body;while(a&&!c_.test(a.nodeName)&&p.css(a,"position")==="static")a=a.offsetParent;return a||e.body})}}),p.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(a,c){var d=/Y/.test(c);p.fn[a]=function(e){return p.access(this,function(a,e,f){var g=da(a);if(f===b)return g?c in g?g[c]:g.document.documentElement[e]:a[e];g?g.scrollTo(d?p(g).scrollLeft():f,d?f:p(g).scrollTop()):a[e]=f},a,e,arguments.length,null)}}),p.each({Height:"height",Width:"width"},function(a,c){p.each({padding:"inner"+a,content:c,"":"outer"+a},function(d,e){p.fn[e]=function(e,f){var g=arguments.length&&(d||typeof e!="boolean"),h=d||(e===!0||f===!0?"margin":"border");return p.access(this,function(c,d,e){var f;return p.isWindow(c)?c.document.documentElement["client"+a]:c.nodeType===9?(f=c.documentElement,Math.max(c.body["scroll"+a],f["scroll"+a],c.body["offset"+a],f["offset"+a],f["client"+a])):e===b?p.css(c,d,e,h):p.style(c,d,e,h)},c,g?e:b,g,null)}})}),a.jQuery=a.$=p,typeof define=="function"&&define.amd&&define.amd.jQuery&&define("jquery",[],function(){return p})})(window); |
| Instances | 5 |
| Solution |
This is an informational alert and so no changes are required.
|
| Reference | |
| Tags | |
| CWE Id | |
| WASC Id | |
| Plugin Id | 10109 |
|
Informational |
Non-Storable Content |
|---|---|
| Description |
The response contents are not storable by caching components such as proxy servers. If the response does not contain sensitive, personal or user-specific information, it may benefit from being stored and cached, to improve performance.
|
| URL | http://zero.webappsecurity.com |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | no-store |
| Request Header - size: 213 bytes. |
GET http://zero.webappsecurity.com HTTP/1.1
Host: zero.webappsecurity.com User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0 Pragma: no-cache Cache-Control: no-cache |
| Request Body - size: 0 bytes. |
|
| Response Header - size: 242 bytes. |
HTTP/1.1 200 OK
Date: Mon, 14 Mar 2022 07:13:40 GMT Server: Apache-Coyote/1.1 Access-Control-Allow-Origin: * Cache-Control: no-cache, max-age=0, must-revalidate, no-store Content-Type: text/html;charset=UTF-8 Content-Language: en-US |
| Response Body - size: 12,471 bytes. |
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Zero - Personal Banking - Loans - Credit Cards</title> <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"> <meta http-equiv="X-UA-Compatible" content="IE=Edge"> <link type="text/css" rel="stylesheet" href="/resources/css/bootstrap.min.css"/> <link type="text/css" rel="stylesheet" href="/resources/css/font-awesome.css"/> <link type="text/css" rel="stylesheet" href="/resources/css/main.css"/> <script src="/resources/js/jquery-1.8.2.min.js"></script> <script src="/resources/js/bootstrap.min.js"></script> <script src="/resources/js/placeholders.min.js"></script> <script type="text/javascript"> Placeholders.init({ live: true, // Apply to future and modified elements too hideOnFocus: true // Hide the placeholder when the element receives focus }); </script> <script type="text/javascript"> $(document).ajaxError(function errorHandler(event, xhr, ajaxOptions, thrownError) { if (xhr.status == 403) { window.location.reload(); } }); </script> </head> <body> <div class="wrapper"> <div class="navbar navbar-fixed-top"> <div class="navbar-inner"> <div class="container"> <a href="/index.html" class="brand">Zero Bank</a> <div> <ul class="nav float-right"> <li> <form action="/search.html" class="navbar-search pull-right" style="padding-right: 20px"> <input type="text" id="searchTerm" name="searchTerm" class="search-query" placeholder="Search"/> </form> </li> <li> <button id="signin_button" type="button" class="signin btn btn-info"> <i class="icon-signin"></i>Signin </button> </li> </ul> </div> </div> </div> </div> <script type="text/javascript"> $(function() { var path = "/"; $("#signin_button").click(function(event) { event.preventDefault(); window.location.href = path + "login" + ".html"; }); }); </script> <div class="container"> <div class="top_offset"> <div class="row"> <div class="span12"> <div id="nav" class="clearfix"> <ul id="pages-nav"> <li id="homeMenu"><div><strong>Home</strong></div></li> <li id="onlineBankingMenu"><div><strong>Online Banking</strong></div></li> <li id="feedback"><div><strong>Feedback</strong></div></li> </ul> </div> </div> <script type="text/javascript"> $(function () { var path = "/"; var featureIdToName = { "index": "homeMenu", "online-banking": "onlineBankingMenu", "feedback": "feedback" }; if (document.location.href.match(".*" + path + "$") != null) { $("#homeMenu").addClass("active"); } else { $.each(featureIdToName, function(featureId, featureName) { if (document.location.href.indexOf(featureId + ".html") >= 0) { $("#" + featureName).addClass("active"); } }); } $.each(featureIdToName, function(featureId, featureName) { $("#nav").on("click", "li[id='" + featureName + "']", function(event) { event.preventDefault(); window.location.href = path + featureId + ".html"; }); }); }); </script> </div> <div class="row"> <div class="span12"> <div id="carousel" class="carousel slide"> <div class="carousel-inner"> <div class="active item"> <img src="/resources/img/main_carousel_1.jpg" width="940" height="401" alt=""/> <div class="custom carousel-caption"> <h4>Online Banking</h4> <p>Welcome to Zero Online Banking. Zero provides a greener and more convenient way to manage your money. Zero enables you to check your account balances, pay your bills, transfer money, and keep detailed records of your transactions, wherever there is an internet connection.</p> </div> </div> <div class="item"> <img src="/resources/img/main_carousel_2.jpg" width="940" height="401" alt=""/> <div class="custom carousel-caption"> <h4>Online Banking</h4> <p>Welcome to Zero Online Banking. Zero provides a greener and more convenient way to manage your money. Zero enables you to check your account balances, pay your bills, transfer money, and keep detailed records of your transactions, wherever there is an internet connection.</p> </div> </div> <div class="item"> <img src="/resources/img/main_carousel_3.jpg" width="940" height="401" alt=""/> <div class="custom carousel-caption"> <h4>Online Banking</h4> <p>Welcome to Zero Online Banking. Zero provides a greener and more convenient way to manage your money. Zero enables you to check your account balances, pay your bills, transfer money, and keep detailed records of your transactions, wherever there is an internet connection.</p> </div> </div> </div> <a class="carousel-control custom left" href="#carousel" data-slide="prev">‹</a> <a class="carousel-control custom right" href="#carousel" data-slide="next">›</a> </div> </div> </div> <hr class="row-divider"/> <div id="online_banking_features" class="row divider"> <div class="span3"> <h4><i class="icon icon-bookmark"></i> Online Banking</h4> <p>Click the button below to view online banking features.</p> <a id="online-banking" class="btn btn-small btn-info">More Services</a> </div> <div class="span3"> <div> <h4><span class="headers" id="account_activity_link"><i class="icon icon-user"></i>Checking Account Activity</span></h4> <p>Use Zero to view the most up-to-date listings of your deposits, withdrawals, interest payments, and a number of other useful transactions. </p> </div> </div> <div class="span3"> <div> <h4><span class="headers" id="transfer_funds_link"><i class="icon icon-random"></i>Transfer Funds</span></h4> <p>Use Zero to safely and securely transfer funds between accounts. There is no hold placed on online money transfers, so your funds are available when you need them. </p> </div> </div> <div class="span3"> <div> <h4><span class="headers" id="money_map_link"><i class="icon icon-list-alt"></i>My Money Map</span></h4> <p>Use Zero to set up and monitor your personalized money map. A money map is an easy-to-use online tool that helps you manage your finances efficiently. With Money Map, you can create a budget, sort your finances into spending and savings categories, check the interest your accounts are earning, and gain new understanding of your patterns with the help of Zero’s clear charts and graphs. </p> </div> </div> </div> <script type="text/javascript"> $(function() { $("#carousel").carousel({ interval: false }); $("div").on("click", "a[id='online-banking']", function(event){ event.preventDefault(); window.location.href = "/" + "online-banking" + ".html"; }); var path = "/bank/"; var featureIdToName = { "account_activity_link": "account-activity", "transfer_funds_link": "transfer-funds", "money_map_link": "money-map" } $.each(featureIdToName, function(featureId, featureName) { $("#online_banking_features").on("click", "span[id='" + featureId + "']", function(event) { event.preventDefault(); window.location.href = path + featureName +".html"; }); }); }); </script> </div> </div> <div class="clearfix push"></div> </div> <div class="extra"> <div class="extra-inner"> <div class="container"> <div class="row"> <div class="span4"> <ul> <li><span id="download_webinspect_link">Download WebInspect</span></li> </ul> </div> <div class="span4"> <ul> <li><span id="terms_of_use_link">Terms of Use</span></li> </ul> </div> <div class="span4"> <ul> <li><span id="contact_hp_link">Contact Micro Focus</span></li> <li><span id="privacy_statement_link">Privacy Statement</span></li> </ul> </div> </div> <div class="row"> <div class="disclaimer span12"> The Free Online Bank Web site is published by Micro Focus Fortify for the sole purpose of demonstrating the functionality and effectiveness of Micro Focus Fortify’s WebInspect products in detecting and reporting Web application vulnerabilities. This site is not a real banking site and any similarities to third party products and/or Web sites are purely coincidental. This site is provided "as is" without warranty of any kind, either express or implied. Micro Focus Fortify does not assume any risk in relation to your use of this Web site. Use of this Web site indicates that you have read and agree to Micro Focus Fortify’s Terms of Use found at <a href="https://www.microfocus.com/about/legal/#privacy" target="_blank">https://www.microfocus.com/about/legal/#privacy</a> and Micro Focus Fortify’s Online Privacy Statement found at <a href="https://www.microfocus.com/about/legal/#privacy" target="_blank">https://www.microfocus.com/about/legal/#privacy</a>. <br/><br/> Copyright © 2012-2018, Micro Focus Development Company. All rights reserved. </div> </div> </div> </div> </div> <script type="text/javascript"> $(function () { var path = "/"; var attachClickHandler = function(selector, handler) { $(".extra").on('click', selector, handler); } var footerLinks = { "download_webinspect_link": { absolute: true, page: "https://software.microfocus.com/en-us/products/webinspect-dynamic-analysis-dast/overview" }, "contact_hp_link" : { absolute: true, page: "https://support.fortify.com" }, "privacy_statement_link": { absolute: true, page: "https://www.microfocus.com/about/legal/#privacy" }, "terms_of_use_link": { absolute: true, page: "https://www.microfocus.com/about/legal/" } }; $.each(footerLinks, function(linkId, link) { attachClickHandler('span[id="' + linkId + '"]', function(event) { event.preventDefault(); if (link.absolute) { window.location.href = link.page; } else { window.location.href = path + link.page + ".html"; } }); }); }); </script> </body> </html> |
| URL | http://zero.webappsecurity.com/ |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | no-store |
| Request Header - size: 214 bytes. |
GET http://zero.webappsecurity.com/ HTTP/1.1
Host: zero.webappsecurity.com User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0 Pragma: no-cache Cache-Control: no-cache |
| Request Body - size: 0 bytes. |
|
| Response Header - size: 242 bytes. |
HTTP/1.1 200 OK
Date: Mon, 14 Mar 2022 07:13:39 GMT Server: Apache-Coyote/1.1 Access-Control-Allow-Origin: * Cache-Control: no-cache, max-age=0, must-revalidate, no-store Content-Type: text/html;charset=UTF-8 Content-Language: en-US |
| Response Body - size: 12,471 bytes. |
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Zero - Personal Banking - Loans - Credit Cards</title> <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"> <meta http-equiv="X-UA-Compatible" content="IE=Edge"> <link type="text/css" rel="stylesheet" href="/resources/css/bootstrap.min.css"/> <link type="text/css" rel="stylesheet" href="/resources/css/font-awesome.css"/> <link type="text/css" rel="stylesheet" href="/resources/css/main.css"/> <script src="/resources/js/jquery-1.8.2.min.js"></script> <script src="/resources/js/bootstrap.min.js"></script> <script src="/resources/js/placeholders.min.js"></script> <script type="text/javascript"> Placeholders.init({ live: true, // Apply to future and modified elements too hideOnFocus: true // Hide the placeholder when the element receives focus }); </script> <script type="text/javascript"> $(document).ajaxError(function errorHandler(event, xhr, ajaxOptions, thrownError) { if (xhr.status == 403) { window.location.reload(); } }); </script> </head> <body> <div class="wrapper"> <div class="navbar navbar-fixed-top"> <div class="navbar-inner"> <div class="container"> <a href="/index.html" class="brand">Zero Bank</a> <div> <ul class="nav float-right"> <li> <form action="/search.html" class="navbar-search pull-right" style="padding-right: 20px"> <input type="text" id="searchTerm" name="searchTerm" class="search-query" placeholder="Search"/> </form> </li> <li> <button id="signin_button" type="button" class="signin btn btn-info"> <i class="icon-signin"></i>Signin </button> </li> </ul> </div> </div> </div> </div> <script type="text/javascript"> $(function() { var path = "/"; $("#signin_button").click(function(event) { event.preventDefault(); window.location.href = path + "login" + ".html"; }); }); </script> <div class="container"> <div class="top_offset"> <div class="row"> <div class="span12"> <div id="nav" class="clearfix"> <ul id="pages-nav"> <li id="homeMenu"><div><strong>Home</strong></div></li> <li id="onlineBankingMenu"><div><strong>Online Banking</strong></div></li> <li id="feedback"><div><strong>Feedback</strong></div></li> </ul> </div> </div> <script type="text/javascript"> $(function () { var path = "/"; var featureIdToName = { "index": "homeMenu", "online-banking": "onlineBankingMenu", "feedback": "feedback" }; if (document.location.href.match(".*" + path + "$") != null) { $("#homeMenu").addClass("active"); } else { $.each(featureIdToName, function(featureId, featureName) { if (document.location.href.indexOf(featureId + ".html") >= 0) { $("#" + featureName).addClass("active"); } }); } $.each(featureIdToName, function(featureId, featureName) { $("#nav").on("click", "li[id='" + featureName + "']", function(event) { event.preventDefault(); window.location.href = path + featureId + ".html"; }); }); }); </script> </div> <div class="row"> <div class="span12"> <div id="carousel" class="carousel slide"> <div class="carousel-inner"> <div class="active item"> <img src="/resources/img/main_carousel_1.jpg" width="940" height="401" alt=""/> <div class="custom carousel-caption"> <h4>Online Banking</h4> <p>Welcome to Zero Online Banking. Zero provides a greener and more convenient way to manage your money. Zero enables you to check your account balances, pay your bills, transfer money, and keep detailed records of your transactions, wherever there is an internet connection.</p> </div> </div> <div class="item"> <img src="/resources/img/main_carousel_2.jpg" width="940" height="401" alt=""/> <div class="custom carousel-caption"> <h4>Online Banking</h4> <p>Welcome to Zero Online Banking. Zero provides a greener and more convenient way to manage your money. Zero enables you to check your account balances, pay your bills, transfer money, and keep detailed records of your transactions, wherever there is an internet connection.</p> </div> </div> <div class="item"> <img src="/resources/img/main_carousel_3.jpg" width="940" height="401" alt=""/> <div class="custom carousel-caption"> <h4>Online Banking</h4> <p>Welcome to Zero Online Banking. Zero provides a greener and more convenient way to manage your money. Zero enables you to check your account balances, pay your bills, transfer money, and keep detailed records of your transactions, wherever there is an internet connection.</p> </div> </div> </div> <a class="carousel-control custom left" href="#carousel" data-slide="prev">‹</a> <a class="carousel-control custom right" href="#carousel" data-slide="next">›</a> </div> </div> </div> <hr class="row-divider"/> <div id="online_banking_features" class="row divider"> <div class="span3"> <h4><i class="icon icon-bookmark"></i> Online Banking</h4> <p>Click the button below to view online banking features.</p> <a id="online-banking" class="btn btn-small btn-info">More Services</a> </div> <div class="span3"> <div> <h4><span class="headers" id="account_activity_link"><i class="icon icon-user"></i>Checking Account Activity</span></h4> <p>Use Zero to view the most up-to-date listings of your deposits, withdrawals, interest payments, and a number of other useful transactions. </p> </div> </div> <div class="span3"> <div> <h4><span class="headers" id="transfer_funds_link"><i class="icon icon-random"></i>Transfer Funds</span></h4> <p>Use Zero to safely and securely transfer funds between accounts. There is no hold placed on online money transfers, so your funds are available when you need them. </p> </div> </div> <div class="span3"> <div> <h4><span class="headers" id="money_map_link"><i class="icon icon-list-alt"></i>My Money Map</span></h4> <p>Use Zero to set up and monitor your personalized money map. A money map is an easy-to-use online tool that helps you manage your finances efficiently. With Money Map, you can create a budget, sort your finances into spending and savings categories, check the interest your accounts are earning, and gain new understanding of your patterns with the help of Zero’s clear charts and graphs. </p> </div> </div> </div> <script type="text/javascript"> $(function() { $("#carousel").carousel({ interval: false }); $("div").on("click", "a[id='online-banking']", function(event){ event.preventDefault(); window.location.href = "/" + "online-banking" + ".html"; }); var path = "/bank/"; var featureIdToName = { "account_activity_link": "account-activity", "transfer_funds_link": "transfer-funds", "money_map_link": "money-map" } $.each(featureIdToName, function(featureId, featureName) { $("#online_banking_features").on("click", "span[id='" + featureId + "']", function(event) { event.preventDefault(); window.location.href = path + featureName +".html"; }); }); }); </script> </div> </div> <div class="clearfix push"></div> </div> <div class="extra"> <div class="extra-inner"> <div class="container"> <div class="row"> <div class="span4"> <ul> <li><span id="download_webinspect_link">Download WebInspect</span></li> </ul> </div> <div class="span4"> <ul> <li><span id="terms_of_use_link">Terms of Use</span></li> </ul> </div> <div class="span4"> <ul> <li><span id="contact_hp_link">Contact Micro Focus</span></li> <li><span id="privacy_statement_link">Privacy Statement</span></li> </ul> </div> </div> <div class="row"> <div class="disclaimer span12"> The Free Online Bank Web site is published by Micro Focus Fortify for the sole purpose of demonstrating the functionality and effectiveness of Micro Focus Fortify’s WebInspect products in detecting and reporting Web application vulnerabilities. This site is not a real banking site and any similarities to third party products and/or Web sites are purely coincidental. This site is provided "as is" without warranty of any kind, either express or implied. Micro Focus Fortify does not assume any risk in relation to your use of this Web site. Use of this Web site indicates that you have read and agree to Micro Focus Fortify’s Terms of Use found at <a href="https://www.microfocus.com/about/legal/#privacy" target="_blank">https://www.microfocus.com/about/legal/#privacy</a> and Micro Focus Fortify’s Online Privacy Statement found at <a href="https://www.microfocus.com/about/legal/#privacy" target="_blank">https://www.microfocus.com/about/legal/#privacy</a>. <br/><br/> Copyright © 2012-2018, Micro Focus Development Company. All rights reserved. </div> </div> </div> </div> </div> <script type="text/javascript"> $(function () { var path = "/"; var attachClickHandler = function(selector, handler) { $(".extra").on('click', selector, handler); } var footerLinks = { "download_webinspect_link": { absolute: true, page: "https://software.microfocus.com/en-us/products/webinspect-dynamic-analysis-dast/overview" }, "contact_hp_link" : { absolute: true, page: "https://support.fortify.com" }, "privacy_statement_link": { absolute: true, page: "https://www.microfocus.com/about/legal/#privacy" }, "terms_of_use_link": { absolute: true, page: "https://www.microfocus.com/about/legal/" } }; $.each(footerLinks, function(linkId, link) { attachClickHandler('span[id="' + linkId + '"]', function(event) { event.preventDefault(); if (link.absolute) { window.location.href = link.page; } else { window.location.href = path + link.page + ".html"; } }); }); }); </script> </body> </html> |
| URL | http://zero.webappsecurity.com/index.html |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | no-store |
| Request Header - size: 265 bytes. |
GET http://zero.webappsecurity.com/index.html HTTP/1.1
Host: zero.webappsecurity.com User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0 Pragma: no-cache Cache-Control: no-cache Referer: http://zero.webappsecurity.com |
| Request Body - size: 0 bytes. |
|
| Response Header - size: 242 bytes. |
HTTP/1.1 200 OK
Date: Mon, 14 Mar 2022 07:13:41 GMT Server: Apache-Coyote/1.1 Access-Control-Allow-Origin: * Cache-Control: no-cache, max-age=0, must-revalidate, no-store Content-Type: text/html;charset=UTF-8 Content-Language: en-US |
| Response Body - size: 12,471 bytes. |
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Zero - Personal Banking - Loans - Credit Cards</title> <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"> <meta http-equiv="X-UA-Compatible" content="IE=Edge"> <link type="text/css" rel="stylesheet" href="/resources/css/bootstrap.min.css"/> <link type="text/css" rel="stylesheet" href="/resources/css/font-awesome.css"/> <link type="text/css" rel="stylesheet" href="/resources/css/main.css"/> <script src="/resources/js/jquery-1.8.2.min.js"></script> <script src="/resources/js/bootstrap.min.js"></script> <script src="/resources/js/placeholders.min.js"></script> <script type="text/javascript"> Placeholders.init({ live: true, // Apply to future and modified elements too hideOnFocus: true // Hide the placeholder when the element receives focus }); </script> <script type="text/javascript"> $(document).ajaxError(function errorHandler(event, xhr, ajaxOptions, thrownError) { if (xhr.status == 403) { window.location.reload(); } }); </script> </head> <body> <div class="wrapper"> <div class="navbar navbar-fixed-top"> <div class="navbar-inner"> <div class="container"> <a href="/index.html" class="brand">Zero Bank</a> <div> <ul class="nav float-right"> <li> <form action="/search.html" class="navbar-search pull-right" style="padding-right: 20px"> <input type="text" id="searchTerm" name="searchTerm" class="search-query" placeholder="Search"/> </form> </li> <li> <button id="signin_button" type="button" class="signin btn btn-info"> <i class="icon-signin"></i>Signin </button> </li> </ul> </div> </div> </div> </div> <script type="text/javascript"> $(function() { var path = "/"; $("#signin_button").click(function(event) { event.preventDefault(); window.location.href = path + "login" + ".html"; }); }); </script> <div class="container"> <div class="top_offset"> <div class="row"> <div class="span12"> <div id="nav" class="clearfix"> <ul id="pages-nav"> <li id="homeMenu"><div><strong>Home</strong></div></li> <li id="onlineBankingMenu"><div><strong>Online Banking</strong></div></li> <li id="feedback"><div><strong>Feedback</strong></div></li> </ul> </div> </div> <script type="text/javascript"> $(function () { var path = "/"; var featureIdToName = { "index": "homeMenu", "online-banking": "onlineBankingMenu", "feedback": "feedback" }; if (document.location.href.match(".*" + path + "$") != null) { $("#homeMenu").addClass("active"); } else { $.each(featureIdToName, function(featureId, featureName) { if (document.location.href.indexOf(featureId + ".html") >= 0) { $("#" + featureName).addClass("active"); } }); } $.each(featureIdToName, function(featureId, featureName) { $("#nav").on("click", "li[id='" + featureName + "']", function(event) { event.preventDefault(); window.location.href = path + featureId + ".html"; }); }); }); </script> </div> <div class="row"> <div class="span12"> <div id="carousel" class="carousel slide"> <div class="carousel-inner"> <div class="active item"> <img src="/resources/img/main_carousel_1.jpg" width="940" height="401" alt=""/> <div class="custom carousel-caption"> <h4>Online Banking</h4> <p>Welcome to Zero Online Banking. Zero provides a greener and more convenient way to manage your money. Zero enables you to check your account balances, pay your bills, transfer money, and keep detailed records of your transactions, wherever there is an internet connection.</p> </div> </div> <div class="item"> <img src="/resources/img/main_carousel_2.jpg" width="940" height="401" alt=""/> <div class="custom carousel-caption"> <h4>Online Banking</h4> <p>Welcome to Zero Online Banking. Zero provides a greener and more convenient way to manage your money. Zero enables you to check your account balances, pay your bills, transfer money, and keep detailed records of your transactions, wherever there is an internet connection.</p> </div> </div> <div class="item"> <img src="/resources/img/main_carousel_3.jpg" width="940" height="401" alt=""/> <div class="custom carousel-caption"> <h4>Online Banking</h4> <p>Welcome to Zero Online Banking. Zero provides a greener and more convenient way to manage your money. Zero enables you to check your account balances, pay your bills, transfer money, and keep detailed records of your transactions, wherever there is an internet connection.</p> </div> </div> </div> <a class="carousel-control custom left" href="#carousel" data-slide="prev">‹</a> <a class="carousel-control custom right" href="#carousel" data-slide="next">›</a> </div> </div> </div> <hr class="row-divider"/> <div id="online_banking_features" class="row divider"> <div class="span3"> <h4><i class="icon icon-bookmark"></i> Online Banking</h4> <p>Click the button below to view online banking features.</p> <a id="online-banking" class="btn btn-small btn-info">More Services</a> </div> <div class="span3"> <div> <h4><span class="headers" id="account_activity_link"><i class="icon icon-user"></i>Checking Account Activity</span></h4> <p>Use Zero to view the most up-to-date listings of your deposits, withdrawals, interest payments, and a number of other useful transactions. </p> </div> </div> <div class="span3"> <div> <h4><span class="headers" id="transfer_funds_link"><i class="icon icon-random"></i>Transfer Funds</span></h4> <p>Use Zero to safely and securely transfer funds between accounts. There is no hold placed on online money transfers, so your funds are available when you need them. </p> </div> </div> <div class="span3"> <div> <h4><span class="headers" id="money_map_link"><i class="icon icon-list-alt"></i>My Money Map</span></h4> <p>Use Zero to set up and monitor your personalized money map. A money map is an easy-to-use online tool that helps you manage your finances efficiently. With Money Map, you can create a budget, sort your finances into spending and savings categories, check the interest your accounts are earning, and gain new understanding of your patterns with the help of Zero’s clear charts and graphs. </p> </div> </div> </div> <script type="text/javascript"> $(function() { $("#carousel").carousel({ interval: false }); $("div").on("click", "a[id='online-banking']", function(event){ event.preventDefault(); window.location.href = "/" + "online-banking" + ".html"; }); var path = "/bank/"; var featureIdToName = { "account_activity_link": "account-activity", "transfer_funds_link": "transfer-funds", "money_map_link": "money-map" } $.each(featureIdToName, function(featureId, featureName) { $("#online_banking_features").on("click", "span[id='" + featureId + "']", function(event) { event.preventDefault(); window.location.href = path + featureName +".html"; }); }); }); </script> </div> </div> <div class="clearfix push"></div> </div> <div class="extra"> <div class="extra-inner"> <div class="container"> <div class="row"> <div class="span4"> <ul> <li><span id="download_webinspect_link">Download WebInspect</span></li> </ul> </div> <div class="span4"> <ul> <li><span id="terms_of_use_link">Terms of Use</span></li> </ul> </div> <div class="span4"> <ul> <li><span id="contact_hp_link">Contact Micro Focus</span></li> <li><span id="privacy_statement_link">Privacy Statement</span></li> </ul> </div> </div> <div class="row"> <div class="disclaimer span12"> The Free Online Bank Web site is published by Micro Focus Fortify for the sole purpose of demonstrating the functionality and effectiveness of Micro Focus Fortify’s WebInspect products in detecting and reporting Web application vulnerabilities. This site is not a real banking site and any similarities to third party products and/or Web sites are purely coincidental. This site is provided "as is" without warranty of any kind, either express or implied. Micro Focus Fortify does not assume any risk in relation to your use of this Web site. Use of this Web site indicates that you have read and agree to Micro Focus Fortify’s Terms of Use found at <a href="https://www.microfocus.com/about/legal/#privacy" target="_blank">https://www.microfocus.com/about/legal/#privacy</a> and Micro Focus Fortify’s Online Privacy Statement found at <a href="https://www.microfocus.com/about/legal/#privacy" target="_blank">https://www.microfocus.com/about/legal/#privacy</a>. <br/><br/> Copyright © 2012-2018, Micro Focus Development Company. All rights reserved. </div> </div> </div> </div> </div> <script type="text/javascript"> $(function () { var path = "/"; var attachClickHandler = function(selector, handler) { $(".extra").on('click', selector, handler); } var footerLinks = { "download_webinspect_link": { absolute: true, page: "https://software.microfocus.com/en-us/products/webinspect-dynamic-analysis-dast/overview" }, "contact_hp_link" : { absolute: true, page: "https://support.fortify.com" }, "privacy_statement_link": { absolute: true, page: "https://www.microfocus.com/about/legal/#privacy" }, "terms_of_use_link": { absolute: true, page: "https://www.microfocus.com/about/legal/" } }; $.each(footerLinks, function(linkId, link) { attachClickHandler('span[id="' + linkId + '"]', function(event) { event.preventDefault(); if (link.absolute) { window.location.href = link.page; } else { window.location.href = path + link.page + ".html"; } }); }); }); </script> </body> </html> |
| URL | http://zero.webappsecurity.com/search.html?searchTerm=ZAP |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | no-store |
| Request Header - size: 281 bytes. |
GET http://zero.webappsecurity.com/search.html?searchTerm=ZAP HTTP/1.1
Host: zero.webappsecurity.com User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0 Pragma: no-cache Cache-Control: no-cache Referer: http://zero.webappsecurity.com |
| Request Body - size: 0 bytes. |
|
| Response Header - size: 242 bytes. |
HTTP/1.1 200 OK
Date: Mon, 14 Mar 2022 07:13:43 GMT Server: Apache-Coyote/1.1 Access-Control-Allow-Origin: * Cache-Control: no-cache, max-age=0, must-revalidate, no-store Content-Type: text/html;charset=UTF-8 Content-Language: en-US |
| Response Body - size: 7,723 bytes. |
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Zero - Search Tips</title> <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"> <meta http-equiv="X-UA-Compatible" content="IE=Edge"> <link type="text/css" rel="stylesheet" href="/resources/css/bootstrap.min.css"/> <link type="text/css" rel="stylesheet" href="/resources/css/font-awesome.css"/> <link type="text/css" rel="stylesheet" href="/resources/css/main.css"/> <script src="/resources/js/jquery-1.8.2.min.js"></script> <script src="/resources/js/bootstrap.min.js"></script> <script src="/resources/js/placeholders.min.js"></script> <script type="text/javascript"> Placeholders.init({ live: true, // Apply to future and modified elements too hideOnFocus: true // Hide the placeholder when the element receives focus }); </script> <script type="text/javascript"> $(document).ajaxError(function errorHandler(event, xhr, ajaxOptions, thrownError) { if (xhr.status == 403) { window.location.reload(); } }); </script> </head> <body> <div class="wrapper"> <div class="navbar navbar-fixed-top"> <div class="navbar-inner"> <div class="container"> <a href="/index.html" class="brand">Zero Bank</a> <div> <ul class="nav float-right"> <li> <form action="/search.html" class="navbar-search pull-right" style="padding-right: 20px"> <input type="text" id="searchTerm" name="searchTerm" class="search-query" placeholder="Search"/> </form> </li> <li> <button id="signin_button" type="button" class="signin btn btn-info"> <i class="icon-signin"></i>Signin </button> </li> </ul> </div> </div> </div> </div> <script type="text/javascript"> $(function() { var path = "/"; $("#signin_button").click(function(event) { event.preventDefault(); window.location.href = path + "login" + ".html"; }); }); </script> <div class="container"> <div class="top_offset"> <div class="row"> <div class="span12"> <div id="nav" class="clearfix"> <ul id="pages-nav"> <li id="homeMenu"><div><strong>Home</strong></div></li> <li id="onlineBankingMenu"><div><strong>Online Banking</strong></div></li> <li id="feedback"><div><strong>Feedback</strong></div></li> </ul> </div> </div> <script type="text/javascript"> $(function () { var path = "/"; var featureIdToName = { "index": "homeMenu", "online-banking": "onlineBankingMenu", "feedback": "feedback" }; if (document.location.href.match(".*" + path + "$") != null) { $("#homeMenu").addClass("active"); } else { $.each(featureIdToName, function(featureId, featureName) { if (document.location.href.indexOf(featureId + ".html") >= 0) { $("#" + featureName).addClass("active"); } }); } $.each(featureIdToName, function(featureId, featureName) { $("#nav").on("click", "li[id='" + featureName + "']", function(event) { event.preventDefault(); window.location.href = path + featureId + ".html"; }); }); }); </script> </div> <hr class="row-divider"/> <h2>Search Results:</h2> No results were found for the query: ZAP </div> </div> <div class="clearfix push"></div> </div> <div class="extra"> <div class="extra-inner"> <div class="container"> <div class="row"> <div class="span4"> <ul> <li><span id="download_webinspect_link">Download WebInspect</span></li> </ul> </div> <div class="span4"> <ul> <li><span id="terms_of_use_link">Terms of Use</span></li> </ul> </div> <div class="span4"> <ul> <li><span id="contact_hp_link">Contact Micro Focus</span></li> <li><span id="privacy_statement_link">Privacy Statement</span></li> </ul> </div> </div> <div class="row"> <div class="disclaimer span12"> The Free Online Bank Web site is published by Micro Focus Fortify for the sole purpose of demonstrating the functionality and effectiveness of Micro Focus Fortify’s WebInspect products in detecting and reporting Web application vulnerabilities. This site is not a real banking site and any similarities to third party products and/or Web sites are purely coincidental. This site is provided "as is" without warranty of any kind, either express or implied. Micro Focus Fortify does not assume any risk in relation to your use of this Web site. Use of this Web site indicates that you have read and agree to Micro Focus Fortify’s Terms of Use found at <a href="https://www.microfocus.com/about/legal/#privacy" target="_blank">https://www.microfocus.com/about/legal/#privacy</a> and Micro Focus Fortify’s Online Privacy Statement found at <a href="https://www.microfocus.com/about/legal/#privacy" target="_blank">https://www.microfocus.com/about/legal/#privacy</a>. <br/><br/> Copyright © 2012-2018, Micro Focus Development Company. All rights reserved. </div> </div> </div> </div> </div> <script type="text/javascript"> $(function () { var path = "/"; var attachClickHandler = function(selector, handler) { $(".extra").on('click', selector, handler); } var footerLinks = { "download_webinspect_link": { absolute: true, page: "https://software.microfocus.com/en-us/products/webinspect-dynamic-analysis-dast/overview" }, "contact_hp_link" : { absolute: true, page: "https://support.fortify.com" }, "privacy_statement_link": { absolute: true, page: "https://www.microfocus.com/about/legal/#privacy" }, "terms_of_use_link": { absolute: true, page: "https://www.microfocus.com/about/legal/" } }; $.each(footerLinks, function(linkId, link) { attachClickHandler('span[id="' + linkId + '"]', function(event) { event.preventDefault(); if (link.absolute) { window.location.href = link.page; } else { window.location.href = path + link.page + ".html"; } }); }); }); </script> </body> </html> |
| Instances | 4 |
| Solution |
The content may be marked as storable by ensuring that the following conditions are satisfied:
The request method must be understood by the cache and defined as being cacheable ("GET", "HEAD", and "POST" are currently defined as cacheable)
The response status code must be understood by the cache (one of the 1XX, 2XX, 3XX, 4XX, or 5XX response classes are generally understood)
The "no-store" cache directive must not appear in the request or response header fields
For caching by "shared" caches such as "proxy" caches, the "private" response directive must not appear in the response
For caching by "shared" caches such as "proxy" caches, the "Authorization" header field must not appear in the request, unless the response explicitly allows it (using one of the "must-revalidate", "public", or "s-maxage" Cache-Control response directives)
In addition to the conditions above, at least one of the following conditions must also be satisfied by the response:
It must contain an "Expires" header field
It must contain a "max-age" response directive
For "shared" caches such as "proxy" caches, it must contain a "s-maxage" response directive
It must contain a "Cache Control Extension" that allows it to be cached
It must have a status code that is defined as cacheable by default (200, 203, 204, 206, 300, 301, 404, 405, 410, 414, 501).
|
| Reference |
https://tools.ietf.org/html/rfc7234
https://tools.ietf.org/html/rfc7231 http://www.w3.org/Protocols/rfc2616/rfc2616-sec13.html (obsoleted by rfc7234) |
| Tags | WSTG-v42-ATHN-06 |
| CWE Id | 524 |
| WASC Id | 13 |
| Plugin Id | 10049 |
|
Informational |
Storable and Cacheable Content |
|---|---|
| Description |
The response contents are storable by caching components such as proxy servers, and may be retrieved directly from the cache, rather than from the origin server by the caching servers, in response to similar requests from other users. If the response data is sensitive, personal or user-specific, this may result in sensitive information being leaked. In some cases, this may even result in a user gaining complete control of the session of another user, depending on the configuration of the caching components in use in their environment. This is primarily an issue where "shared" caching servers such as "proxy" caches are configured on the local network. This configuration is typically found in corporate or educational environments, for instance.
|
| URL | http://zero.webappsecurity.com/resources/css/bootstrap.min.css |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | max-age=2678400 |
| Request Header - size: 286 bytes. |
GET http://zero.webappsecurity.com/resources/css/bootstrap.min.css HTTP/1.1
Host: zero.webappsecurity.com User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0 Pragma: no-cache Cache-Control: no-cache Referer: http://zero.webappsecurity.com |
| Request Body - size: 0 bytes. |
|
| Response Header - size: 349 bytes. |
HTTP/1.1 200 OK
Date: Mon, 14 Mar 2022 07:13:41 GMT Server: Apache-Coyote/1.1 Access-Control-Allow-Origin: * Accept-Ranges: bytes ETag: W/"115795-1358437290000" Last-Modified: Thu, 17 Jan 2013 15:41:30 GMT Cache-Control: max-age=2678400 Expires: Thu, 14 Apr 2022 07:13:42 GMT Content-Type: text/css;charset=UTF-8 Content-Length: 115795 |
| Response Body - size: 115,795 bytes. |
/*!
* Bootstrap v2.2.2 * * Copyright 2012 Twitter, Inc * Licensed under the Apache License v2.0 * http://www.apache.org/licenses/LICENSE-2.0 * * Designed and built with all the love in the world @twitter by @mdo and @fat. */ .clearfix{*zoom:1;}.clearfix:before,.clearfix:after{display:table;content:"";line-height:0;} .clearfix:after{clear:both;} .hide-text{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0;} .input-block-level{display:block;width:100%;min-height:30px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;} article,aside,details,figcaption,figure,footer,header,hgroup,nav,section{display:block;} audio,canvas,video{display:inline-block;*display:inline;*zoom:1;} audio:not([controls]){display:none;} html{font-size:100%;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%;} a:focus{outline:thin dotted #333;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px;} a:hover,a:active{outline:0;} sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline;} sup{top:-0.5em;} sub{bottom:-0.25em;} img{max-width:100%;width:auto\9;height:auto;vertical-align:middle;border:0;-ms-interpolation-mode:bicubic;} #map_canvas img,.google-maps img{max-width:none;} button,input,select,textarea{margin:0;font-size:100%;vertical-align:middle;} button,input{*overflow:visible;line-height:normal;} button::-moz-focus-inner,input::-moz-focus-inner{padding:0;border:0;} button,html input[type="button"],input[type="reset"],input[type="submit"]{-webkit-appearance:button;cursor:pointer;} label,select,button,input[type="button"],input[type="reset"],input[type="submit"],input[type="radio"],input[type="checkbox"]{cursor:pointer;} input[type="search"]{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;-webkit-appearance:textfield;} input[type="search"]::-webkit-search-decoration,input[type="search"]::-webkit-search-cancel-button{-webkit-appearance:none;} textarea{overflow:auto;vertical-align:top;} @media print{*{text-shadow:none !important;color:#000 !important;background:transparent !important;box-shadow:none !important;} a,a:visited{text-decoration:underline;} a[href]:after{content:" (" attr(href) ")";} abbr[title]:after{content:" (" attr(title) ")";} .ir a:after,a[href^="javascript:"]:after,a[href^="#"]:after{content:"";} pre,blockquote{border:1px solid #999;page-break-inside:avoid;} thead{display:table-header-group;} tr,img{page-break-inside:avoid;} img{max-width:100% !important;} @page {margin:0.5cm;}p,h2,h3{orphans:3;widows:3;} h2,h3{page-break-after:avoid;}}body{margin:0;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;line-height:20px;color:#333333;background-color:#ffffff;} a{color:#0088cc;text-decoration:none;} a:hover{color:#005580;text-decoration:underline;} .img-rounded{-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;} .img-polaroid{padding:4px;background-color:#fff;border:1px solid #ccc;border:1px solid rgba(0, 0, 0, 0.2);-webkit-box-shadow:0 1px 3px rgba(0, 0, 0, 0.1);-moz-box-shadow:0 1px 3px rgba(0, 0, 0, 0.1);box-shadow:0 1px 3px rgba(0, 0, 0, 0.1);} .img-circle{-webkit-border-radius:500px;-moz-border-radius:500px;border-radius:500px;} .row{margin-left:-20px;*zoom:1;}.row:before,.row:after{display:table;content:"";line-height:0;} .row:after{clear:both;} [class*="span"]{float:left;min-height:1px;margin-left:20px;} .container,.navbar-static-top .container,.navbar-fixed-top .container,.navbar-fixed-bottom .container{width:940px;} .span12{width:940px;} .span11{width:860px;} .span10{width:780px;} .span9{width:700px;} .span8{width:620px;} .span7{width:540px;} .span6{width:460px;} .span5{width:380px;} .span4{width:300px;} .span3{width:220px;} .span2{width:140px;} .span1{width:60px;} .offset12{margin-left:980px;} .offset11{margin-left:900px;} .offset10{margin-left:820px;} .offset9{margin-left:740px;} .offset8{margin-left:660px;} .offset7{margin-left:580px;} .offset6{margin-left:500px;} .offset5{margin-left:420px;} .offset4{margin-left:340px;} .offset3{margin-left:260px;} .offset2{margin-left:180px;} .offset1{margin-left:100px;} .row-fluid{width:100%;*zoom:1;}.row-fluid:before,.row-fluid:after{display:table;content:"";line-height:0;} .row-fluid:after{clear:both;} .row-fluid [class*="span"]{display:block;width:100%;min-height:30px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;float:left;margin-left:2.127659574468085%;*margin-left:2.074468085106383%;} .row-fluid [class*="span"]:first-child{margin-left:0;} .row-fluid .controls-row [class*="span"]+[class*="span"]{margin-left:2.127659574468085%;} .row-fluid .span12{width:100%;*width:99.94680851063829%;} .row-fluid .span11{width:91.48936170212765%;*width:91.43617021276594%;} .row-fluid .span10{width:82.97872340425532%;*width:82.92553191489361%;} .row-fluid .span9{width:74.46808510638297%;*width:74.41489361702126%;} .row-fluid .span8{width:65.95744680851064%;*width:65.90425531914893%;} .row-fluid .span7{width:57.44680851063829%;*width:57.39361702127659%;} .row-fluid .span6{width:48.93617021276595%;*width:48.88297872340425%;} .row-fluid .span5{width:40.42553191489362%;*width:40.37234042553192%;} .row-fluid .span4{width:31.914893617021278%;*width:31.861702127659576%;} .row-fluid .span3{width:23.404255319148934%;*width:23.351063829787233%;} .row-fluid .span2{width:14.893617021276595%;*width:14.840425531914894%;} .row-fluid .span1{width:6.382978723404255%;*width:6.329787234042553%;} .row-fluid .offset12{margin-left:104.25531914893617%;*margin-left:104.14893617021275%;} .row-fluid .offset12:first-child{margin-left:102.12765957446808%;*margin-left:102.02127659574467%;} .row-fluid .offset11{margin-left:95.74468085106382%;*margin-left:95.6382978723404%;} .row-fluid .offset11:first-child{margin-left:93.61702127659574%;*margin-left:93.51063829787232%;} .row-fluid .offset10{margin-left:87.23404255319149%;*margin-left:87.12765957446807%;} .row-fluid .offset10:first-child{margin-left:85.1063829787234%;*margin-left:84.99999999999999%;} .row-fluid .offset9{margin-left:78.72340425531914%;*margin-left:78.61702127659572%;} .row-fluid .offset9:first-child{margin-left:76.59574468085106%;*margin-left:76.48936170212764%;} .row-fluid .offset8{margin-left:70.2127659574468%;*margin-left:70.10638297872339%;} .row-fluid .offset8:first-child{margin-left:68.08510638297872%;*margin-left:67.9787234042553%;} .row-fluid .offset7{margin-left:61.70212765957446%;*margin-left:61.59574468085106%;} .row-fluid .offset7:first-child{margin-left:59.574468085106375%;*margin-left:59.46808510638297%;} .row-fluid .offset6{margin-left:53.191489361702125%;*margin-left:53.085106382978715%;} .row-fluid .offset6:first-child{margin-left:51.063829787234035%;*margin-left:50.95744680851063%;} .row-fluid .offset5{margin-left:44.68085106382979%;*margin-left:44.57446808510638%;} .row-fluid .offset5:first-child{margin-left:42.5531914893617%;*margin-left:42.4468085106383%;} .row-fluid .offset4{margin-left:36.170212765957444%;*margin-left:36.06382978723405%;} .row-fluid .offset4:first-child{margin-left:34.04255319148936%;*margin-left:33.93617021276596%;} .row-fluid .offset3{margin-left:27.659574468085104%;*margin-left:27.5531914893617%;} .row-fluid .offset3:first-child{margin-left:25.53191489361702%;*margin-left:25.425531914893618%;} .row-fluid .offset2{margin-left:19.148936170212764%;*margin-left:19.04255319148936%;} .row-fluid .offset2:first-child{margin-left:17.02127659574468%;*margin-left:16.914893617021278%;} .row-fluid .offset1{margin-left:10.638297872340425%;*margin-left:10.53191489361702%;} .row-fluid .offset1:first-child{margin-left:8.51063829787234%;*margin-left:8.404255319148938%;} [class*="span"].hide,.row-fluid [class*="span"].hide{display:none;} [class*="span"].pull-right,.row-fluid [class*="span"].pull-right{float:right;} .container{margin-right:auto;margin-left:auto;*zoom:1;}.container:before,.container:after{display:table;content:"";line-height:0;} .container:after{clear:both;} .container-fluid{padding-right:20px;padding-left:20px;*zoom:1;}.container-fluid:before,.container-fluid:after{display:table;content:"";line-height:0;} .container-fluid:after{clear:both;} p{margin:0 0 10px;} .lead{margin-bottom:20px;font-size:21px;font-weight:200;line-height:30px;} small{font-size:85%;} strong{font-weight:bold;} em{font-style:italic;} cite{font-style:normal;} .muted{color:#999999;} a.muted:hover{color:#808080;} .text-warning{color:#c09853;} a.text-warning:hover{color:#a47e3c;} .text-error{color:#b94a48;} a.text-error:hover{color:#953b39;} .text-info{color:#3a87ad;} a.text-info:hover{color:#2d6987;} .text-success{color:#468847;} a.text-success:hover{color:#356635;} h1,h2,h3,h4,h5,h6{margin:10px 0;font-family:inherit;font-weight:bold;line-height:20px;color:inherit;text-rendering:optimizelegibility;}h1 small,h2 small,h3 small,h4 small,h5 small,h6 small{font-weight:normal;line-height:1;color:#999999;} h1,h2,h3{line-height:40px;} h1{font-size:38.5px;} h2{font-size:31.5px;} h3{font-size:24.5px;} h4{font-size:17.5px;} h5{font-size:14px;} h6{font-size:11.9px;} h1 small{font-size:24.5px;} h2 small{font-size:17.5px;} h3 small{font-size:14px;} h4 small{font-size:14px;} .page-header{padding-bottom:9px;margin:20px 0 30px;border-bottom:1px solid #eeeeee;} ul,ol{padding:0;margin:0 0 10px 25px;} ul ul,ul ol,ol ol,ol ul{margin-bottom:0;} li{line-height:20px;} ul.unstyled,ol.unstyled{margin-left:0;list-style:none;} ul.inline,ol.inline{margin-left:0;list-style:none;}ul.inline >li,ol.inline >li{display:inline-block;padding-left:5px;padding-right:5px;} dl{margin-bottom:20px;} dt,dd{line-height:20px;} dt{font-weight:bold;} dd{margin-left:10px;} .dl-horizontal{*zoom:1;}.dl-horizontal:before,.dl-horizontal:after{display:table;content:"";line-height:0;} .dl-horizontal:after{clear:both;} .dl-horizontal dt{float:left;width:160px;clear:left;text-align:right;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;} .dl-horizontal dd{margin-left:180px;} hr{margin:20px 0;border:0;border-top:1px solid #eeeeee;border-bottom:1px solid #ffffff;} abbr[title],abbr[data-original-title]{cursor:help;border-bottom:1px dotted #999999;} abbr.initialism{font-size:90%;text-transform:uppercase;} blockquote{padding:0 0 0 15px;margin:0 0 20px;border-left:5px solid #eeeeee;}blockquote p{margin-bottom:0;font-size:16px;font-weight:300;line-height:25px;} blockquote small{display:block;line-height:20px;color:#999999;}blockquote small:before{content:'\2014 \00A0';} blockquote.pull-right{float:right;padding-right:15px;padding-left:0;border-right:5px solid #eeeeee;border-left:0;}blockquote.pull-right p,blockquote.pull-right small{text-align:right;} blockquote.pull-right small:before{content:'';} blockquote.pull-right small:after{content:'\00A0 \2014';} q:before,q:after,blockquote:before,blockquote:after{content:"";} address{display:block;margin-bottom:20px;font-style:normal;line-height:20px;} code,pre{padding:0 3px 2px;font-family:Monaco,Menlo,Consolas,"Courier New",monospace;font-size:12px;color:#333333;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;} code{padding:2px 4px;color:#d14;background-color:#f7f7f9;border:1px solid #e1e1e8;white-space:nowrap;} pre{display:block;padding:9.5px;margin:0 0 10px;font-size:13px;line-height:20px;word-break:break-all;word-wrap:break-word;white-space:pre;white-space:pre-wrap;background-color:#f5f5f5;border:1px solid #ccc;border:1px solid rgba(0, 0, 0, 0.15);-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;}pre.prettyprint{margin-bottom:20px;} pre code{padding:0;color:inherit;white-space:pre;white-space:pre-wrap;background-color:transparent;border:0;} .pre-scrollable{max-height:340px;overflow-y:scroll;} .label,.badge{display:inline-block;padding:2px 4px;font-size:11.844px;font-weight:bold;line-height:14px;color:#ffffff;vertical-align:baseline;white-space:nowrap;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);background-color:#999999;} .label{-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;} .badge{padding-left:9px;padding-right:9px;-webkit-border-radius:9px;-moz-border-radius:9px;border-radius:9px;} .label:empty,.badge:empty{display:none;} a.label:hover,a.badge:hover{color:#ffffff;text-decoration:none;cursor:pointer;} .label-important,.badge-important{background-color:#b94a48;} .label-important[href],.badge-important[href]{background-color:#953b39;} .label-warning,.badge-warning{background-color:#f89406;} .label-warning[href],.badge-warning[href]{background-color:#c67605;} .label-success,.badge-success{background-color:#468847;} .label-success[href],.badge-success[href]{background-color:#356635;} .label-info,.badge-info{background-color:#3a87ad;} .label-info[href],.badge-info[href]{background-color:#2d6987;} .label-inverse,.badge-inverse{background-color:#333333;} .label-inverse[href],.badge-inverse[href]{background-color:#1a1a1a;} .btn .label,.btn .badge{position:relative;top:-1px;} .btn-mini .label,.btn-mini .badge{top:0;} table{max-width:100%;background-color:transparent;border-collapse:collapse;border-spacing:0;} .table{width:100%;margin-bottom:20px;}.table th,.table td{padding:8px;line-height:20px;text-align:left;vertical-align:top;border-top:1px solid #dddddd;} .table th{font-weight:bold;} .table thead th{vertical-align:bottom;} .table caption+thead tr:first-child th,.table caption+thead tr:first-child td,.table colgroup+thead tr:first-child th,.table colgroup+thead tr:first-child td,.table thead:first-child tr:first-child th,.table thead:first-child tr:first-child td{border-top:0;} .table tbody+tbody{border-top:2px solid #dddddd;} .table .table{background-color:#ffffff;} .table-condensed th,.table-condensed td{padding:4px 5px;} .table-bordered{border:1px solid #dddddd;border-collapse:separate;*border-collapse:collapse;border-left:0;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;}.table-bordered th,.table-bordered td{border-left:1px solid #dddddd;} .table-bordered caption+thead tr:first-child th,.table-bordered caption+tbody tr:first-child th,.table-bordered caption+tbody tr:first-child td,.table-bordered colgroup+thead tr:first-child th,.table-bordered colgroup+tbody tr:first-child th,.table-bordered colgroup+tbody tr:first-child td,.table-bordered thead:first-child tr:first-child th,.table-bordered tbody:first-child tr:first-child th,.table-bordered tbody:first-child tr:first-child td{border-top:0;} .table-bordered thead:first-child tr:first-child>th:first-child,.table-bordered tbody:first-child tr:first-child>td:first-child{-webkit-border-top-left-radius:4px;-moz-border-radius-topleft:4px;border-top-left-radius:4px;} .table-bordered thead:first-child tr:first-child>th:last-child,.table-bordered tbody:first-child tr:first-child>td:last-child{-webkit-border-top-right-radius:4px;-moz-border-radius-topright:4px;border-top-right-radius:4px;} .table-bordered thead:last-child tr:last-child>th:first-child,.table-bordered tbody:last-child tr:last-child>td:first-child,.table-bordered tfoot:last-child tr:last-child>td:first-child{-webkit-border-bottom-left-radius:4px;-moz-border-radius-bottomleft:4px;border-bottom-left-radius:4px;} .table-bordered thead:last-child tr:last-child>th:last-child,.table-bordered tbody:last-child tr:last-child>td:last-child,.table-bordered tfoot:last-child tr:last-child>td:last-child{-webkit-border-bottom-right-radius:4px;-moz-border-radius-bottomright:4px;border-bottom-right-radius:4px;} .table-bordered tfoot+tbody:last-child tr:last-child td:first-child{-webkit-border-bottom-left-radius:0;-moz-border-radius-bottomleft:0;border-bottom-left-radius:0;} .table-bordered tfoot+tbody:last-child tr:last-child td:last-child{-webkit-border-bottom-right-radius:0;-moz-border-radius-bottomright:0;border-bottom-right-radius:0;} .table-bordered caption+thead tr:first-child th:first-child,.table-bordered caption+tbody tr:first-child td:first-child,.table-bordered colgroup+thead tr:first-child th:first-child,.table-bordered colgroup+tbody tr:first-child td:first-child{-webkit-border-top-left-radius:4px;-moz-border-radius-topleft:4px;border-top-left-radius:4px;} .table-bordered caption+thead tr:first-child th:last-child,.table-bordered caption+tbody tr:first-child td:last-child,.table-bordered colgroup+thead tr:first-child th:last-child,.table-bordered colgroup+tbody tr:first-child td:last-child{-webkit-border-top-right-radius:4px;-moz-border-radius-topright:4px;border-top-right-radius:4px;} .table-striped tbody>tr:nth-child(odd)>td,.table-striped tbody>tr:nth-child(odd)>th{background-color:#f9f9f9;} .table-hover tbody tr:hover td,.table-hover tbody tr:hover th{background-color:#f5f5f5;} table td[class*="span"],table th[class*="span"],.row-fluid table td[class*="span"],.row-fluid table th[class*="span"]{display:table-cell;float:none;margin-left:0;} .table td.span1,.table th.span1{float:none;width:44px;margin-left:0;} .table td.span2,.table th.span2{float:none;width:124px;margin-left:0;} .table td.span3,.table th.span3{float:none;width:204px;margin-left:0;} .table td.span4,.table th.span4{float:none;width:284px;margin-left:0;} .table td.span5,.table th.span5{float:none;width:364px;margin-left:0;} .table td.span6,.table th.span6{float:none;width:444px;margin-left:0;} .table td.span7,.table th.span7{float:none;width:524px;margin-left:0;} .table td.span8,.table th.span8{float:none;width:604px;margin-left:0;} .table td.span9,.table th.span9{float:none;width:684px;margin-left:0;} .table td.span10,.table th.span10{float:none;width:764px;margin-left:0;} .table td.span11,.table th.span11{float:none;width:844px;margin-left:0;} .table td.span12,.table th.span12{float:none;width:924px;margin-left:0;} .table tbody tr.success td{background-color:#dff0d8;} .table tbody tr.error td{background-color:#f2dede;} .table tbody tr.warning td{background-color:#fcf8e3;} .table tbody tr.info td{background-color:#d9edf7;} .table-hover tbody tr.success:hover td{background-color:#d0e9c6;} .table-hover tbody tr.error:hover td{background-color:#ebcccc;} .table-hover tbody tr.warning:hover td{background-color:#faf2cc;} .table-hover tbody tr.info:hover td{background-color:#c4e3f3;} form{margin:0 0 20px;} fieldset{padding:0;margin:0;border:0;} legend{display:block;width:100%;padding:0;margin-bottom:20px;font-size:21px;line-height:40px;color:#333333;border:0;border-bottom:1px solid #e5e5e5;}legend small{font-size:15px;color:#999999;} label,input,button,select,textarea{font-size:14px;font-weight:normal;line-height:20px;} input,button,select,textarea{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;} label{display:block;margin-bottom:5px;} select,textarea,input[type="text"],input[type="password"],input[type="datetime"],input[type="datetime-local"],input[type="date"],input[type="month"],input[type="time"],input[type="week"],input[type="number"],input[type="email"],input[type="url"],input[type="search"],input[type="tel"],input[type="color"],.uneditable-input{display:inline-block;height:20px;padding:4px 6px;margin-bottom:10px;font-size:14px;line-height:20px;color:#555555;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;vertical-align:middle;} input,textarea,.uneditable-input{width:206px;} textarea{height:auto;} textarea,input[type="text"],input[type="password"],input[type="datetime"],input[type="datetime-local"],input[type="date"],input[type="month"],input[type="time"],input[type="week"],input[type="number"],input[type="email"],input[type="url"],input[type="search"],input[type="tel"],input[type="color"],.uneditable-input{background-color:#ffffff;border:1px solid #cccccc;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);-moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);-webkit-transition:border linear .2s, box-shadow linear .2s;-moz-transition:border linear .2s, box-shadow linear .2s;-o-transition:border linear .2s, box-shadow linear .2s;transition:border linear .2s, box-shadow linear .2s;}textarea:focus,input[type="text"]:focus,input[type="password"]:focus,input[type="datetime"]:focus,input[type="datetime-local"]:focus,input[type="date"]:focus,input[type="month"]:focus,input[type="time"]:focus,input[type="week"]:focus,input[type="number"]:focus,input[type="email"]:focus,input[type="url"]:focus,input[type="search"]:focus,input[type="tel"]:focus,input[type="color"]:focus,.uneditable-input:focus{border-color:rgba(82, 168, 236, 0.8);outline:0;outline:thin dotted \9;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(82,168,236,.6);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(82,168,236,.6);box-shadow:inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(82,168,236,.6);} input[type="radio"],input[type="checkbox"]{margin:4px 0 0;*margin-top:0;margin-top:1px \9;line-height:normal;} input[type="file"],input[type="image"],input[type="submit"],input[type="reset"],input[type="button"],input[type="radio"],input[type="checkbox"]{width:auto;} select,input[type="file"]{height:30px;*margin-top:4px;line-height:30px;} select{width:220px;border:1px solid #cccccc;background-color:#ffffff;} select[multiple],select[size]{height:auto;} select:focus,input[type="file"]:focus,input[type="radio"]:focus,input[type="checkbox"]:focus{outline:thin dotted #333;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px;} .uneditable-input,.uneditable-textarea{color:#999999;background-color:#fcfcfc;border-color:#cccccc;-webkit-box-shadow:inset 0 1px 2px rgba(0, 0, 0, 0.025);-moz-box-shadow:inset 0 1px 2px rgba(0, 0, 0, 0.025);box-shadow:inset 0 1px 2px rgba(0, 0, 0, 0.025);cursor:not-allowed;} .uneditable-input{overflow:hidden;white-space:nowrap;} .uneditable-textarea{width:auto;height:auto;} input:-moz-placeholder,textarea:-moz-placeholder{color:#999999;} input:-ms-input-placeholder,textarea:-ms-input-placeholder{color:#999999;} input::-webkit-input-placeholder,textarea::-webkit-input-placeholder{color:#999999;} .radio,.checkbox{min-height:20px;padding-left:20px;} .radio input[type="radio"],.checkbox input[type="checkbox"]{float:left;margin-left:-20px;} .controls>.radio:first-child,.controls>.checkbox:first-child{padding-top:5px;} .radio.inline,.checkbox.inline{display:inline-block;padding-top:5px;margin-bottom:0;vertical-align:middle;} .radio.inline+.radio.inline,.checkbox.inline+.checkbox.inline{margin-left:10px;} .input-mini{width:60px;} .input-small{width:90px;} .input-medium{width:150px;} .input-large{width:210px;} .input-xlarge{width:270px;} .input-xxlarge{width:530px;} input[class*="span"],select[class*="span"],textarea[class*="span"],.uneditable-input[class*="span"],.row-fluid input[class*="span"],.row-fluid select[class*="span"],.row-fluid textarea[class*="span"],.row-fluid .uneditable-input[class*="span"]{float:none;margin-left:0;} .input-append input[class*="span"],.input-append .uneditable-input[class*="span"],.input-prepend input[class*="span"],.input-prepend .uneditable-input[class*="span"],.row-fluid input[class*="span"],.row-fluid select[class*="span"],.row-fluid textarea[class*="span"],.row-fluid .uneditable-input[class*="span"],.row-fluid .input-prepend [class*="span"],.row-fluid .input-append [class*="span"]{display:inline-block;} input,textarea,.uneditable-input{margin-left:0;} .controls-row [class*="span"]+[class*="span"]{margin-left:20px;} input.span12, textarea.span12, .uneditable-input.span12{width:926px;} input.span11, textarea.span11, .uneditable-input.span11{width:846px;} input.span10, textarea.span10, .uneditable-input.span10{width:766px;} input.span9, textarea.span9, .uneditable-input.span9{width:686px;} input.span8, textarea.span8, .uneditable-input.span8{width:606px;} input.span7, textarea.span7, .uneditable-input.span7{width:526px;} input.span6, textarea.span6, .uneditable-input.span6{width:446px;} input.span5, textarea.span5, .uneditable-input.span5{width:366px;} input.span4, textarea.span4, .uneditable-input.span4{width:286px;} input.span3, textarea.span3, .uneditable-input.span3{width:206px;} input.span2, textarea.span2, .uneditable-input.span2{width:126px;} input.span1, textarea.span1, .uneditable-input.span1{width:46px;} .controls-row{*zoom:1;}.controls-row:before,.controls-row:after{display:table;content:"";line-height:0;} .controls-row:after{clear:both;} .controls-row [class*="span"],.row-fluid .controls-row [class*="span"]{float:left;} .controls-row .checkbox[class*="span"],.controls-row .radio[class*="span"]{padding-top:5px;} input[disabled],select[disabled],textarea[disabled],input[readonly],select[readonly],textarea[readonly]{cursor:not-allowed;background-color:#eeeeee;} input[type="radio"][disabled],input[type="checkbox"][disabled],input[type="radio"][readonly],input[type="checkbox"][readonly]{background-color:transparent;} .control-group.warning .control-label,.control-group.warning .help-block,.control-group.warning .help-inline{color:#c09853;} .control-group.warning .checkbox,.control-group.warning .radio,.control-group.warning input,.control-group.warning select,.control-group.warning textarea{color:#c09853;} .control-group.warning input,.control-group.warning select,.control-group.warning textarea{border-color:#c09853;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);-moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);}.control-group.warning input:focus,.control-group.warning select:focus,.control-group.warning textarea:focus{border-color:#a47e3c;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 6px #dbc59e;-moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 6px #dbc59e;box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 6px #dbc59e;} .control-group.warning .input-prepend .add-on,.control-group.warning .input-append .add-on{color:#c09853;background-color:#fcf8e3;border-color:#c09853;} .control-group.error .control-label,.control-group.error .help-block,.control-group.error .help-inline{color:#b94a48;} .control-group.error .checkbox,.control-group.error .radio,.control-group.error input,.control-group.error select,.control-group.error textarea{color:#b94a48;} .control-group.error input,.control-group.error select,.control-group.error textarea{border-color:#b94a48;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);-moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);}.control-group.error input:focus,.control-group.error select:focus,.control-group.error textarea:focus{border-color:#953b39;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 6px #d59392;-moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 6px #d59392;box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 6px #d59392;} .control-group.error .input-prepend .add-on,.control-group.error .input-append .add-on{color:#b94a48;background-color:#f2dede;border-color:#b94a48;} .control-group.success .control-label,.control-group.success .help-block,.control-group.success .help-inline{color:#468847;} .control-group.success .checkbox,.control-group.success .radio,.control-group.success input,.control-group.success select,.control-group.success textarea{color:#468847;} .control-group.success input,.control-group.success select,.control-group.success textarea{border-color:#468847;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);-moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);}.control-group.success input:focus,.control-group.success select:focus,.control-group.success textarea:focus{border-color:#356635;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 6px #7aba7b;-moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 6px #7aba7b;box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 6px #7aba7b;} .control-group.success .input-prepend .add-on,.control-group.success .input-append .add-on{color:#468847;background-color:#dff0d8;border-color:#468847;} .control-group.info .control-label,.control-group.info .help-block,.control-group.info .help-inline{color:#3a87ad;} .control-group.info .checkbox,.control-group.info .radio,.control-group.info input,.control-group.info select,.control-group.info textarea{color:#3a87ad;} .control-group.info input,.control-group.info select,.control-group.info textarea{border-color:#3a87ad;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);-moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);}.control-group.info input:focus,.control-group.info select:focus,.control-group.info textarea:focus{border-color:#2d6987;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 6px #7ab5d3;-moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 6px #7ab5d3;box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 6px #7ab5d3;} .control-group.info .input-prepend .add-on,.control-group.info .input-append .add-on{color:#3a87ad;background-color:#d9edf7;border-color:#3a87ad;} input:focus:invalid,textarea:focus:invalid,select:focus:invalid{color:#b94a48;border-color:#ee5f5b;}input:focus:invalid:focus,textarea:focus:invalid:focus,select:focus:invalid:focus{border-color:#e9322d;-webkit-box-shadow:0 0 6px #f8b9b7;-moz-box-shadow:0 0 6px #f8b9b7;box-shadow:0 0 6px #f8b9b7;} .form-actions{padding:19px 20px 20px;margin-top:20px;margin-bottom:20px;background-color:#f5f5f5;border-top:1px solid #e5e5e5;*zoom:1;}.form-actions:before,.form-actions:after{display:table;content:"";line-height:0;} .form-actions:after{clear:both;} .help-block,.help-inline{color:#595959;} .help-block{display:block;margin-bottom:10px;} .help-inline{display:inline-block;*display:inline;*zoom:1;vertical-align:middle;padding-left:5px;} .input-append,.input-prepend{margin-bottom:5px;font-size:0;white-space:nowrap;}.input-append input,.input-prepend input,.input-append select,.input-prepend select,.input-append .uneditable-input,.input-prepend .uneditable-input,.input-append .dropdown-menu,.input-prepend .dropdown-menu{font-size:14px;} .input-append input,.input-prepend input,.input-append select,.input-prepend select,.input-append .uneditable-input,.input-prepend .uneditable-input{position:relative;margin-bottom:0;*margin-left:0;vertical-align:top;-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0;}.input-append input:focus,.input-prepend input:focus,.input-append select:focus,.input-prepend select:focus,.input-append .uneditable-input:focus,.input-prepend .uneditable-input:focus{z-index:2;} .input-append .add-on,.input-prepend .add-on{display:inline-block;width:auto;height:20px;min-width:16px;padding:4px 5px;font-size:14px;font-weight:normal;line-height:20px;text-align:center;text-shadow:0 1px 0 #ffffff;background-color:#eeeeee;border:1px solid #ccc;} .input-append .add-on,.input-prepend .add-on,.input-append .btn,.input-prepend .btn,.input-append .btn-group>.dropdown-toggle,.input-prepend .btn-group>.dropdown-toggle{vertical-align:top;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;} .input-append .active,.input-prepend .active{background-color:#a9dba9;border-color:#46a546;} .input-prepend .add-on,.input-prepend .btn{margin-right:-1px;} .input-prepend .add-on:first-child,.input-prepend .btn:first-child{-webkit-border-radius:4px 0 0 4px;-moz-border-radius:4px 0 0 4px;border-radius:4px 0 0 4px;} .input-append input,.input-append select,.input-append .uneditable-input{-webkit-border-radius:4px 0 0 4px;-moz-border-radius:4px 0 0 4px;border-radius:4px 0 0 4px;}.input-append input+.btn-group .btn:last-child,.input-append select+.btn-group .btn:last-child,.input-append .uneditable-input+.btn-group .btn:last-child{-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0;} .input-append .add-on,.input-append .btn,.input-append .btn-group{margin-left:-1px;} .input-append .add-on:last-child,.input-append .btn:last-child,.input-append .btn-group:last-child>.dropdown-toggle{-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0;} .input-prepend.input-append input,.input-prepend.input-append select,.input-prepend.input-append .uneditable-input{-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;}.input-prepend.input-append input+.btn-group .btn,.input-prepend.input-append select+.btn-group .btn,.input-prepend.input-append .uneditable-input+.btn-group .btn{-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0;} .input-prepend.input-append .add-on:first-child,.input-prepend.input-append .btn:first-child{margin-right:-1px;-webkit-border-radius:4px 0 0 4px;-moz-border-radius:4px 0 0 4px;border-radius:4px 0 0 4px;} .input-prepend.input-append .add-on:last-child,.input-prepend.input-append .btn:last-child{margin-left:-1px;-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0;} .input-prepend.input-append .btn-group:first-child{margin-left:0;} input.search-query{padding-right:14px;padding-right:4px \9;padding-left:14px;padding-left:4px \9;margin-bottom:0;-webkit-border-radius:15px;-moz-border-radius:15px;border-radius:15px;} .form-search .input-append .search-query,.form-search .input-prepend .search-query{-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;} .form-search .input-append .search-query{-webkit-border-radius:14px 0 0 14px;-moz-border-radius:14px 0 0 14px;border-radius:14px 0 0 14px;} .form-search .input-append .btn{-webkit-border-radius:0 14px 14px 0;-moz-border-radius:0 14px 14px 0;border-radius:0 14px 14px 0;} .form-search .input-prepend .search-query{-webkit-border-radius:0 14px 14px 0;-moz-border-radius:0 14px 14px 0;border-radius:0 14px 14px 0;} .form-search .input-prepend .btn{-webkit-border-radius:14px 0 0 14px;-moz-border-radius:14px 0 0 14px;border-radius:14px 0 0 14px;} .form-search input,.form-inline input,.form-horizontal input,.form-search textarea,.form-inline textarea,.form-horizontal textarea,.form-search select,.form-inline select,.form-horizontal select,.form-search .help-inline,.form-inline .help-inline,.form-horizontal .help-inline,.form-search .uneditable-input,.form-inline .uneditable-input,.form-horizontal .uneditable-input,.form-search .input-prepend,.form-inline .input-prepend,.form-horizontal .input-prepend,.form-search .input-append,.form-inline .input-append,.form-horizontal .input-append{display:inline-block;*display:inline;*zoom:1;margin-bottom:0;vertical-align:middle;} .form-search .hide,.form-inline .hide,.form-horizontal .hide{display:none;} .form-search label,.form-inline label,.form-search .btn-group,.form-inline .btn-group{display:inline-block;} .form-search .input-append,.form-inline .input-append,.form-search .input-prepend,.form-inline .input-prepend{margin-bottom:0;} .form-search .radio,.form-search .checkbox,.form-inline .radio,.form-inline .checkbox{padding-left:0;margin-bottom:0;vertical-align:middle;} .form-search .radio input[type="radio"],.form-search .checkbox input[type="checkbox"],.form-inline .radio input[type="radio"],.form-inline .checkbox input[type="checkbox"]{float:left;margin-right:3px;margin-left:0;} .control-group{margin-bottom:10px;} legend+.control-group{margin-top:20px;-webkit-margin-top-collapse:separate;} .form-horizontal .control-group{margin-bottom:20px;*zoom:1;}.form-horizontal .control-group:before,.form-horizontal .control-group:after{display:table;content:"";line-height:0;} .form-horizontal .control-group:after{clear:both;} .form-horizontal .control-label{float:left;width:160px;padding-top:5px;text-align:right;} .form-horizontal .controls{*display:inline-block;*padding-left:20px;margin-left:180px;*margin-left:0;}.form-horizontal .controls:first-child{*padding-left:180px;} .form-horizontal .help-block{margin-bottom:0;} .form-horizontal input+.help-block,.form-horizontal select+.help-block,.form-horizontal textarea+.help-block,.form-horizontal .uneditable-input+.help-block,.form-horizontal .input-prepend+.help-block,.form-horizontal .input-append+.help-block{margin-top:10px;} .form-horizontal .form-actions{padding-left:180px;} .btn{display:inline-block;*display:inline;*zoom:1;padding:4px 12px;margin-bottom:0;font-size:14px;line-height:20px;text-align:center;vertical-align:middle;cursor:pointer;color:#333333;text-shadow:0 1px 1px rgba(255, 255, 255, 0.75);background-color:#f5f5f5;background-image:-moz-linear-gradient(top, #ffffff, #e6e6e6);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#e6e6e6));background-image:-webkit-linear-gradient(top, #ffffff, #e6e6e6);background-image:-o-linear-gradient(top, #ffffff, #e6e6e6);background-image:linear-gradient(to bottom, #ffffff, #e6e6e6);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe6e6e6', GradientType=0);border-color:#e6e6e6 #e6e6e6 #bfbfbf;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);*background-color:#e6e6e6;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);border:1px solid #bbbbbb;*border:0;border-bottom-color:#a2a2a2;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;*margin-left:.3em;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);-moz-box-shadow:inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);box-shadow:inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);}.btn:hover,.btn:active,.btn.active,.btn.disabled,.btn[disabled]{color:#333333;background-color:#e6e6e6;*background-color:#d9d9d9;} .btn:active,.btn.active{background-color:#cccccc \9;} .btn:first-child{*margin-left:0;} .btn:hover{color:#333333;text-decoration:none;background-position:0 -15px;-webkit-transition:background-position 0.1s linear;-moz-transition:background-position 0.1s linear;-o-transition:background-position 0.1s linear;transition:background-position 0.1s linear;} .btn:focus{outline:thin dotted #333;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px;} .btn.active,.btn:active{background-image:none;outline:0;-webkit-box-shadow:inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);-moz-box-shadow:inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);box-shadow:inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);} .btn.disabled,.btn[disabled]{cursor:default;background-image:none;opacity:0.65;filter:alpha(opacity=65);-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;} .btn-large{padding:11px 19px;font-size:17.5px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;} .btn-large [class^="icon-"],.btn-large [class*=" icon-"]{margin-top:4px;} .btn-small{padding:2px 10px;font-size:11.9px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;} .btn-small [class^="icon-"],.btn-small [class*=" icon-"]{margin-top:0;} .btn-mini [class^="icon-"],.btn-mini [class*=" icon-"]{margin-top:-1px;} .btn-mini{padding:0 6px;font-size:10.5px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;} .btn-block{display:block;width:100%;padding-left:0;padding-right:0;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;} .btn-block+.btn-block{margin-top:5px;} input[type="submit"].btn-block,input[type="reset"].btn-block,input[type="button"].btn-block{width:100%;} .btn-primary.active,.btn-warning.active,.btn-danger.active,.btn-success.active,.btn-info.active,.btn-inverse.active{color:rgba(255, 255, 255, 0.75);} .btn{border-color:#c5c5c5;border-color:rgba(0, 0, 0, 0.15) rgba(0, 0, 0, 0.15) rgba(0, 0, 0, 0.25);} .btn-primary{color:#ffffff;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);background-color:#006dcc;background-image:-moz-linear-gradient(top, #0088cc, #0044cc);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0044cc));background-image:-webkit-linear-gradient(top, #0088cc, #0044cc);background-image:-o-linear-gradient(top, #0088cc, #0044cc);background-image:linear-gradient(to bottom, #0088cc, #0044cc);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff0044cc', GradientType=0);border-color:#0044cc #0044cc #002a80;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);*background-color:#0044cc;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);}.btn-primary:hover,.btn-primary:active,.btn-primary.active,.btn-primary.disabled,.btn-primary[disabled]{color:#ffffff;background-color:#0044cc;*background-color:#003bb3;} .btn-primary:active,.btn-primary.active{background-color:#003399 \9;} .btn-warning{color:#ffffff;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);background-color:#faa732;background-image:-moz-linear-gradient(top, #fbb450, #f89406);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#fbb450), to(#f89406));background-image:-webkit-linear-gradient(top, #fbb450, #f89406);background-image:-o-linear-gradient(top, #fbb450, #f89406);background-image:linear-gradient(to bottom, #fbb450, #f89406);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffbb450', endColorstr='#fff89406', GradientType=0);border-color:#f89406 #f89406 #ad6704;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);*background-color:#f89406;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);}.btn-warning:hover,.btn-warning:active,.btn-warning.active,.btn-warning.disabled,.btn-warning[disabled]{color:#ffffff;background-color:#f89406;*background-color:#df8505;} .btn-warning:active,.btn-warning.active{background-color:#c67605 \9;} .btn-danger{color:#ffffff;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);background-color:#da4f49;background-image:-moz-linear-gradient(top, #ee5f5b, #bd362f);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#ee5f5b), to(#bd362f));background-image:-webkit-linear-gradient(top, #ee5f5b, #bd362f);background-image:-o-linear-gradient(top, #ee5f5b, #bd362f);background-image:linear-gradient(to bottom, #ee5f5b, #bd362f);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffee5f5b', endColorstr='#ffbd362f', GradientType=0);border-color:#bd362f #bd362f #802420;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);*background-color:#bd362f;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);}.btn-danger:hover,.btn-danger:active,.btn-danger.active,.btn-danger.disabled,.btn-danger[disabled]{color:#ffffff;background-color:#bd362f;*background-color:#a9302a;} .btn-danger:active,.btn-danger.active{background-color:#942a25 \9;} .btn-success{color:#ffffff;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);background-color:#5bb75b;background-image:-moz-linear-gradient(top, #62c462, #51a351);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#62c462), to(#51a351));background-image:-webkit-linear-gradient(top, #62c462, #51a351);background-image:-o-linear-gradient(top, #62c462, #51a351);background-image:linear-gradient(to bottom, #62c462, #51a351);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff62c462', endColorstr='#ff51a351', GradientType=0);border-color:#51a351 #51a351 #387038;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);*background-color:#51a351;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);}.btn-success:hover,.btn-success:active,.btn-success.active,.btn-success.disabled,.btn-success[disabled]{color:#ffffff;background-color:#51a351;*background-color:#499249;} .btn-success:active,.btn-success.active{background-color:#408140 \9;} .btn-info{color:#ffffff;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);background-color:#49afcd;background-image:-moz-linear-gradient(top, #5bc0de, #2f96b4);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#5bc0de), to(#2f96b4));background-image:-webkit-linear-gradient(top, #5bc0de, #2f96b4);background-image:-o-linear-gradient(top, #5bc0de, #2f96b4);background-image:linear-gradient(to bottom, #5bc0de, #2f96b4);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff2f96b4', GradientType=0);border-color:#2f96b4 #2f96b4 #1f6377;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);*background-color:#2f96b4;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);}.btn-info:hover,.btn-info:active,.btn-info.active,.btn-info.disabled,.btn-info[disabled]{color:#ffffff;background-color:#2f96b4;*background-color:#2a85a0;} .btn-info:active,.btn-info.active{background-color:#24748c \9;} .btn-inverse{color:#ffffff;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);background-color:#363636;background-image:-moz-linear-gradient(top, #444444, #222222);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#444444), to(#222222));background-image:-webkit-linear-gradient(top, #444444, #222222);background-image:-o-linear-gradient(top, #444444, #222222);background-image:linear-gradient(to bottom, #444444, #222222);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff444444', endColorstr='#ff222222', GradientType=0);border-color:#222222 #222222 #000000;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);*background-color:#222222;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);}.btn-inverse:hover,.btn-inverse:active,.btn-inverse.active,.btn-inverse.disabled,.btn-inverse[disabled]{color:#ffffff;background-color:#222222;*background-color:#151515;} .btn-inverse:active,.btn-inverse.active{background-color:#080808 \9;} button.btn,input[type="submit"].btn{*padding-top:3px;*padding-bottom:3px;}button.btn::-moz-focus-inner,input[type="submit"].btn::-moz-focus-inner{padding:0;border:0;} button.btn.btn-large,input[type="submit"].btn.btn-large{*padding-top:7px;*padding-bottom:7px;} button.btn.btn-small,input[type="submit"].btn.btn-small{*padding-top:3px;*padding-bottom:3px;} button.btn.btn-mini,input[type="submit"].btn.btn-mini{*padding-top:1px;*padding-bottom:1px;} .btn-link,.btn-link:active,.btn-link[disabled]{background-color:transparent;background-image:none;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;} .btn-link{border-color:transparent;cursor:pointer;color:#0088cc;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;} .btn-link:hover{color:#005580;text-decoration:underline;background-color:transparent;} .btn-link[disabled]:hover{color:#333333;text-decoration:none;} .btn-group{position:relative;display:inline-block;*display:inline;*zoom:1;font-size:0;vertical-align:middle;white-space:nowrap;*margin-left:.3em;}.btn-group:first-child{*margin-left:0;} .btn-group+.btn-group{margin-left:5px;} .btn-toolbar{font-size:0;margin-top:10px;margin-bottom:10px;}.btn-toolbar>.btn+.btn,.btn-toolbar>.btn-group+.btn,.btn-toolbar>.btn+.btn-group{margin-left:5px;} .btn-group>.btn{position:relative;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;} .btn-group>.btn+.btn{margin-left:-1px;} .btn-group>.btn,.btn-group>.dropdown-menu,.btn-group>.popover{font-size:14px;} .btn-group>.btn-mini{font-size:10.5px;} .btn-group>.btn-small{font-size:11.9px;} .btn-group>.btn-large{font-size:17.5px;} .btn-group>.btn:first-child{margin-left:0;-webkit-border-top-left-radius:4px;-moz-border-radius-topleft:4px;border-top-left-radius:4px;-webkit-border-bottom-left-radius:4px;-moz-border-radius-bottomleft:4px;border-bottom-left-radius:4px;} .btn-group>.btn:last-child,.btn-group>.dropdown-toggle{-webkit-border-top-right-radius:4px;-moz-border-radius-topright:4px;border-top-right-radius:4px;-webkit-border-bottom-right-radius:4px;-moz-border-radius-bottomright:4px;border-bottom-right-radius:4px;} .btn-group>.btn.large:first-child{margin-left:0;-webkit-border-top-left-radius:6px;-moz-border-radius-topleft:6px;border-top-left-radius:6px;-webkit-border-bottom-left-radius:6px;-moz-border-radius-bottomleft:6px;border-bottom-left-radius:6px;} .btn-group>.btn.large:last-child,.btn-group>.large.dropdown-toggle{-webkit-border-top-right-radius:6px;-moz-border-radius-topright:6px;border-top-right-radius:6px;-webkit-border-bottom-right-radius:6px;-moz-border-radius-bottomright:6px;border-bottom-right-radius:6px;} .btn-group>.btn:hover,.btn-group>.btn:focus,.btn-group>.btn:active,.btn-group>.btn.active{z-index:2;} .btn-group .dropdown-toggle:active,.btn-group.open .dropdown-toggle{outline:0;} .btn-group>.btn+.dropdown-toggle{padding-left:8px;padding-right:8px;-webkit-box-shadow:inset 1px 0 0 rgba(255,255,255,.125), inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);-moz-box-shadow:inset 1px 0 0 rgba(255,255,255,.125), inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);box-shadow:inset 1px 0 0 rgba(255,255,255,.125), inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);*padding-top:5px;*padding-bottom:5px;} .btn-group>.btn-mini+.dropdown-toggle{padding-left:5px;padding-right:5px;*padding-top:2px;*padding-bottom:2px;} .btn-group>.btn-small+.dropdown-toggle{*padding-top:5px;*padding-bottom:4px;} .btn-group>.btn-large+.dropdown-toggle{padding-left:12px;padding-right:12px;*padding-top:7px;*padding-bottom:7px;} .btn-group.open .dropdown-toggle{background-image:none;-webkit-box-shadow:inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);-moz-box-shadow:inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);box-shadow:inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);} .btn-group.open .btn.dropdown-toggle{background-color:#e6e6e6;} .btn-group.open .btn-primary.dropdown-toggle{background-color:#0044cc;} .btn-group.open .btn-warning.dropdown-toggle{background-color:#f89406;} .btn-group.open .btn-danger.dropdown-toggle{background-color:#bd362f;} .btn-group.open .btn-success.dropdown-toggle{background-color:#51a351;} .btn-group.open .btn-info.dropdown-toggle{background-color:#2f96b4;} .btn-group.open .btn-inverse.dropdown-toggle{background-color:#222222;} .btn .caret{margin-top:8px;margin-left:0;} .btn-mini .caret,.btn-small .caret,.btn-large .caret{margin-top:6px;} .btn-large .caret{border-left-width:5px;border-right-width:5px;border-top-width:5px;} .dropup .btn-large .caret{border-bottom-width:5px;} .btn-primary .caret,.btn-warning .caret,.btn-danger .caret,.btn-info .caret,.btn-success .caret,.btn-inverse .caret{border-top-color:#ffffff;border-bottom-color:#ffffff;} .btn-group-vertical{display:inline-block;*display:inline;*zoom:1;} .btn-group-vertical>.btn{display:block;float:none;max-width:100%;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;} .btn-group-vertical>.btn+.btn{margin-left:0;margin-top:-1px;} .btn-group-vertical>.btn:first-child{-webkit-border-radius:4px 4px 0 0;-moz-border-radius:4px 4px 0 0;border-radius:4px 4px 0 0;} .btn-group-vertical>.btn:last-child{-webkit-border-radius:0 0 4px 4px;-moz-border-radius:0 0 4px 4px;border-radius:0 0 4px 4px;} .btn-group-vertical>.btn-large:first-child{-webkit-border-radius:6px 6px 0 0;-moz-border-radius:6px 6px 0 0;border-radius:6px 6px 0 0;} .btn-group-vertical>.btn-large:last-child{-webkit-border-radius:0 0 6px 6px;-moz-border-radius:0 0 6px 6px;border-radius:0 0 6px 6px;} .nav{margin-left:0;margin-bottom:20px;list-style:none;} .nav>li>a{display:block;} .nav>li>a:hover{text-decoration:none;background-color:#eeeeee;} .nav>li>a>img{max-width:none;} .nav>.pull-right{float:right;} .nav-header{display:block;padding:3px 15px;font-size:11px;font-weight:bold;line-height:20px;color:#999999;text-shadow:0 1px 0 rgba(255, 255, 255, 0.5);text-transform:uppercase;} .nav li+.nav-header{margin-top:9px;} .nav-list{padding-left:15px;padding-right:15px;margin-bottom:0;} .nav-list>li>a,.nav-list .nav-header{margin-left:-15px;margin-right:-15px;text-shadow:0 1px 0 rgba(255, 255, 255, 0.5);} .nav-list>li>a{padding:3px 15px;} .nav-list>.active>a,.nav-list>.active>a:hover{color:#ffffff;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.2);background-color:#0088cc;} .nav-list [class^="icon-"],.nav-list [class*=" icon-"]{margin-right:2px;} .nav-list .divider{*width:100%;height:1px;margin:9px 1px;*margin:-5px 0 5px;overflow:hidden;background-color:#e5e5e5;border-bottom:1px solid #ffffff;} .nav-tabs,.nav-pills{*zoom:1;}.nav-tabs:before,.nav-pills:before,.nav-tabs:after,.nav-pills:after{display:table;content:"";line-height:0;} .nav-tabs:after,.nav-pills:after{clear:both;} .nav-tabs>li,.nav-pills>li{float:left;} .nav-tabs>li>a,.nav-pills>li>a{padding-right:12px;padding-left:12px;margin-right:2px;line-height:14px;} .nav-tabs{border-bottom:1px solid #ddd;} .nav-tabs>li{margin-bottom:-1px;} .nav-tabs>li>a{padding-top:8px;padding-bottom:8px;line-height:20px;border:1px solid transparent;-webkit-border-radius:4px 4px 0 0;-moz-border-radius:4px 4px 0 0;border-radius:4px 4px 0 0;}.nav-tabs>li>a:hover{border-color:#eeeeee #eeeeee #dddddd;} .nav-tabs>.active>a,.nav-tabs>.active>a:hover{color:#555555;background-color:#ffffff;border:1px solid #ddd;border-bottom-color:transparent;cursor:default;} .nav-pills>li>a{padding-top:8px;padding-bottom:8px;margin-top:2px;margin-bottom:2px;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;} .nav-pills>.active>a,.nav-pills>.active>a:hover{color:#ffffff;background-color:#0088cc;} .nav-stacked>li{float:none;} .nav-stacked>li>a{margin-right:0;} .nav-tabs.nav-stacked{border-bottom:0;} .nav-tabs.nav-stacked>li>a{border:1px solid #ddd;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;} .nav-tabs.nav-stacked>li:first-child>a{-webkit-border-top-right-radius:4px;-moz-border-radius-topright:4px;border-top-right-radius:4px;-webkit-border-top-left-radius:4px;-moz-border-radius-topleft:4px;border-top-left-radius:4px;} .nav-tabs.nav-stacked>li:last-child>a{-webkit-border-bottom-right-radius:4px;-moz-border-radius-bottomright:4px;border-bottom-right-radius:4px;-webkit-border-bottom-left-radius:4px;-moz-border-radius-bottomleft:4px;border-bottom-left-radius:4px;} .nav-tabs.nav-stacked>li>a:hover{border-color:#ddd;z-index:2;} .nav-pills.nav-stacked>li>a{margin-bottom:3px;} .nav-pills.nav-stacked>li:last-child>a{margin-bottom:1px;} .nav-tabs .dropdown-menu{-webkit-border-radius:0 0 6px 6px;-moz-border-radius:0 0 6px 6px;border-radius:0 0 6px 6px;} .nav-pills .dropdown-menu{-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;} .nav .dropdown-toggle .caret{border-top-color:#0088cc;border-bottom-color:#0088cc;margin-top:6px;} .nav .dropdown-toggle:hover .caret{border-top-color:#005580;border-bottom-color:#005580;} .nav-tabs .dropdown-toggle .caret{margin-top:8px;} .nav .active .dropdown-toggle .caret{border-top-color:#fff;border-bottom-color:#fff;} .nav-tabs .active .dropdown-toggle .caret{border-top-color:#555555;border-bottom-color:#555555;} .nav>.dropdown.active>a:hover{cursor:pointer;} .nav-tabs .open .dropdown-toggle,.nav-pills .open .dropdown-toggle,.nav>li.dropdown.open.active>a:hover{color:#ffffff;background-color:#999999;border-color:#999999;} .nav li.dropdown.open .caret,.nav li.dropdown.open.active .caret,.nav li.dropdown.open a:hover .caret{border-top-color:#ffffff;border-bottom-color:#ffffff;opacity:1;filter:alpha(opacity=100);} .tabs-stacked .open>a:hover{border-color:#999999;} .tabbable{*zoom:1;}.tabbable:before,.tabbable:after{display:table;content:"";line-height:0;} .tabbable:after{clear:both;} .tab-content{overflow:auto;} .tabs-below>.nav-tabs,.tabs-right>.nav-tabs,.tabs-left>.nav-tabs{border-bottom:0;} .tab-content>.tab-pane,.pill-content>.pill-pane{display:none;} .tab-content>.active,.pill-content>.active{display:block;} .tabs-below>.nav-tabs{border-top:1px solid #ddd;} .tabs-below>.nav-tabs>li{margin-top:-1px;margin-bottom:0;} .tabs-below>.nav-tabs>li>a{-webkit-border-radius:0 0 4px 4px;-moz-border-radius:0 0 4px 4px;border-radius:0 0 4px 4px;}.tabs-below>.nav-tabs>li>a:hover{border-bottom-color:transparent;border-top-color:#ddd;} .tabs-below>.nav-tabs>.active>a,.tabs-below>.nav-tabs>.active>a:hover{border-color:transparent #ddd #ddd #ddd;} .tabs-left>.nav-tabs>li,.tabs-right>.nav-tabs>li{float:none;} .tabs-left>.nav-tabs>li>a,.tabs-right>.nav-tabs>li>a{min-width:74px;margin-right:0;margin-bottom:3px;} .tabs-left>.nav-tabs{float:left;margin-right:19px;border-right:1px solid #ddd;} .tabs-left>.nav-tabs>li>a{margin-right:-1px;-webkit-border-radius:4px 0 0 4px;-moz-border-radius:4px 0 0 4px;border-radius:4px 0 0 4px;} .tabs-left>.nav-tabs>li>a:hover{border-color:#eeeeee #dddddd #eeeeee #eeeeee;} .tabs-left>.nav-tabs .active>a,.tabs-left>.nav-tabs .active>a:hover{border-color:#ddd transparent #ddd #ddd;*border-right-color:#ffffff;} .tabs-right>.nav-tabs{float:right;margin-left:19px;border-left:1px solid #ddd;} .tabs-right>.nav-tabs>li>a{margin-left:-1px;-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0;} .tabs-right>.nav-tabs>li>a:hover{border-color:#eeeeee #eeeeee #eeeeee #dddddd;} .tabs-right>.nav-tabs .active>a,.tabs-right>.nav-tabs .active>a:hover{border-color:#ddd #ddd #ddd transparent;*border-left-color:#ffffff;} .nav>.disabled>a{color:#999999;} .nav>.disabled>a:hover{text-decoration:none;background-color:transparent;cursor:default;} .navbar{overflow:visible;margin-bottom:20px;*position:relative;*z-index:2;} .navbar-inner{min-height:50px;padding-left:20px;padding-right:20px;background-color:#fafafa;background-image:-moz-linear-gradient(top, #ffffff, #f2f2f2);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#f2f2f2));background-image:-webkit-linear-gradient(top, #ffffff, #f2f2f2);background-image:-o-linear-gradient(top, #ffffff, #f2f2f2);background-image:linear-gradient(to bottom, #ffffff, #f2f2f2);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#fff2f2f2', GradientType=0);border:1px solid #d4d4d4;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:0 1px 4px rgba(0, 0, 0, 0.065);-moz-box-shadow:0 1px 4px rgba(0, 0, 0, 0.065);box-shadow:0 1px 4px rgba(0, 0, 0, 0.065);*zoom:1;}.navbar-inner:before,.navbar-inner:after{display:table;content:"";line-height:0;} .navbar-inner:after{clear:both;} .navbar .container{width:auto;} .nav-collapse.collapse{height:auto;overflow:visible;} .navbar .brand{float:left;display:block;padding:15px 20px 15px;margin-left:-20px;font-size:20px;font-weight:200;color:#777777;text-shadow:0 1px 0 #ffffff;}.navbar .brand:hover{text-decoration:none;} .navbar-text{margin-bottom:0;line-height:50px;color:#777777;} .navbar-link{color:#777777;}.navbar-link:hover{color:#333333;} .navbar .divider-vertical{height:50px;margin:0 9px;border-left:1px solid #f2f2f2;border-right:1px solid #ffffff;} .navbar .btn,.navbar .btn-group{margin-top:10px;} .navbar .btn-group .btn,.navbar .input-prepend .btn,.navbar .input-append .btn{margin-top:0;} .navbar-form{margin-bottom:0;*zoom:1;}.navbar-form:before,.navbar-form:after{display:table;content:"";line-height:0;} .navbar-form:after{clear:both;} .navbar-form input,.navbar-form select,.navbar-form .radio,.navbar-form .checkbox{margin-top:10px;} .navbar-form input,.navbar-form select,.navbar-form .btn{display:inline-block;margin-bottom:0;} .navbar-form input[type="image"],.navbar-form input[type="checkbox"],.navbar-form input[type="radio"]{margin-top:3px;} .navbar-form .input-append,.navbar-form .input-prepend{margin-top:5px;white-space:nowrap;}.navbar-form .input-append input,.navbar-form .input-prepend input{margin-top:0;} .navbar-search{position:relative;float:left;margin-top:10px;margin-bottom:0;}.navbar-search .search-query{margin-bottom:0;padding:4px 14px;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:13px;font-weight:normal;line-height:1;-webkit-border-radius:15px;-moz-border-radius:15px;border-radius:15px;} .navbar-static-top{position:static;margin-bottom:0;}.navbar-static-top .navbar-inner{-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;} .navbar-fixed-top,.navbar-fixed-bottom{position:fixed;right:0;left:0;z-index:1030;margin-bottom:0;} .navbar-fixed-top .navbar-inner,.navbar-static-top .navbar-inner{border-width:0 0 1px;} .navbar-fixed-bottom .navbar-inner{border-width:1px 0 0;} .navbar-fixed-top .navbar-inner,.navbar-fixed-bottom .navbar-inner{padding-left:0;padding-right:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;} .navbar-static-top .container,.navbar-fixed-top .container,.navbar-fixed-bottom .container{width:940px;} .navbar-fixed-top{top:0;} .navbar-fixed-top .navbar-inner,.navbar-static-top .navbar-inner{-webkit-box-shadow:0 1px 10px rgba(0,0,0,.1);-moz-box-shadow:0 1px 10px rgba(0,0,0,.1);box-shadow:0 1px 10px rgba(0,0,0,.1);} .navbar-fixed-bottom{bottom:0;}.navbar-fixed-bottom .navbar-inner{-webkit-box-shadow:0 -1px 10px rgba(0,0,0,.1);-moz-box-shadow:0 -1px 10px rgba(0,0,0,.1);box-shadow:0 -1px 10px rgba(0,0,0,.1);} .navbar .nav{position:relative;left:0;display:block;float:left;margin:0 10px 0 0;} .navbar .nav.pull-right{float:right;margin-right:0;} .navbar .nav>li{float:left;} .navbar .nav>li>a{float:none;padding:15px 15px 15px;color:#777777;text-decoration:none;text-shadow:0 1px 0 #ffffff;} .navbar .nav .dropdown-toggle .caret{margin-top:8px;} .navbar .nav>li>a:focus,.navbar .nav>li>a:hover{background-color:transparent;color:#333333;text-decoration:none;} .navbar .nav>.active>a,.navbar .nav>.active>a:hover,.navbar .nav>.active>a:focus{color:#555555;text-decoration:none;background-color:#e5e5e5;-webkit-box-shadow:inset 0 3px 8px rgba(0, 0, 0, 0.125);-moz-box-shadow:inset 0 3px 8px rgba(0, 0, 0, 0.125);box-shadow:inset 0 3px 8px rgba(0, 0, 0, 0.125);} .navbar .btn-navbar{display:none;float:right;padding:7px 10px;margin-left:5px;margin-right:5px;color:#ffffff;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);background-color:#ededed;background-image:-moz-linear-gradient(top, #f2f2f2, #e5e5e5);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#f2f2f2), to(#e5e5e5));background-image:-webkit-linear-gradient(top, #f2f2f2, #e5e5e5);background-image:-o-linear-gradient(top, #f2f2f2, #e5e5e5);background-image:linear-gradient(to bottom, #f2f2f2, #e5e5e5);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2f2f2', endColorstr='#ffe5e5e5', GradientType=0);border-color:#e5e5e5 #e5e5e5 #bfbfbf;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);*background-color:#e5e5e5;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.075);-moz-box-shadow:inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.075);box-shadow:inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.075);}.navbar .btn-navbar:hover,.navbar .btn-navbar:active,.navbar .btn-navbar.active,.navbar .btn-navbar.disabled,.navbar .btn-navbar[disabled]{color:#ffffff;background-color:#e5e5e5;*background-color:#d9d9d9;} .navbar .btn-navbar:active,.navbar .btn-navbar.active{background-color:#cccccc \9;} .navbar .btn-navbar .icon-bar{display:block;width:18px;height:2px;background-color:#f5f5f5;-webkit-border-radius:1px;-moz-border-radius:1px;border-radius:1px;-webkit-box-shadow:0 1px 0 rgba(0, 0, 0, 0.25);-moz-box-shadow:0 1px 0 rgba(0, 0, 0, 0.25);box-shadow:0 1px 0 rgba(0, 0, 0, 0.25);} .btn-navbar .icon-bar+.icon-bar{margin-top:3px;} .navbar .nav>li>.dropdown-menu:before{content:'';display:inline-block;border-left:7px solid transparent;border-right:7px solid transparent;border-bottom:7px solid #ccc;border-bottom-color:rgba(0, 0, 0, 0.2);position:absolute;top:-7px;left:9px;} .navbar .nav>li>.dropdown-menu:after{content:'';display:inline-block;border-left:6px solid transparent;border-right:6px solid transparent;border-bottom:6px solid #ffffff;position:absolute;top:-6px;left:10px;} .navbar-fixed-bottom .nav>li>.dropdown-menu:before{border-top:7px solid #ccc;border-top-color:rgba(0, 0, 0, 0.2);border-bottom:0;bottom:-7px;top:auto;} .navbar-fixed-bottom .nav>li>.dropdown-menu:after{border-top:6px solid #ffffff;border-bottom:0;bottom:-6px;top:auto;} .navbar .nav li.dropdown>a:hover .caret{border-top-color:#555555;border-bottom-color:#555555;} .navbar .nav li.dropdown.open>.dropdown-toggle,.navbar .nav li.dropdown.active>.dropdown-toggle,.navbar .nav li.dropdown.open.active>.dropdown-toggle{background-color:#e5e5e5;color:#555555;} .navbar .nav li.dropdown>.dropdown-toggle .caret{border-top-color:#777777;border-bottom-color:#777777;} .navbar .nav li.dropdown.open>.dropdown-toggle .caret,.navbar .nav li.dropdown.active>.dropdown-toggle .caret,.navbar .nav li.dropdown.open.active>.dropdown-toggle .caret{border-top-color:#555555;border-bottom-color:#555555;} .navbar .pull-right>li>.dropdown-menu,.navbar .nav>li>.dropdown-menu.pull-right{left:auto;right:0;}.navbar .pull-right>li>.dropdown-menu:before,.navbar .nav>li>.dropdown-menu.pull-right:before{left:auto;right:12px;} .navbar .pull-right>li>.dropdown-menu:after,.navbar .nav>li>.dropdown-menu.pull-right:after{left:auto;right:13px;} .navbar .pull-right>li>.dropdown-menu .dropdown-menu,.navbar .nav>li>.dropdown-menu.pull-right .dropdown-menu{left:auto;right:100%;margin-left:0;margin-right:-1px;-webkit-border-radius:6px 0 6px 6px;-moz-border-radius:6px 0 6px 6px;border-radius:6px 0 6px 6px;} .navbar-inverse .navbar-inner{background-color:#1b1b1b;background-image:-moz-linear-gradient(top, #222222, #111111);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#222222), to(#111111));background-image:-webkit-linear-gradient(top, #222222, #111111);background-image:-o-linear-gradient(top, #222222, #111111);background-image:linear-gradient(to bottom, #222222, #111111);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff222222', endColorstr='#ff111111', GradientType=0);border-color:#252525;} .navbar-inverse .brand,.navbar-inverse .nav>li>a{color:#999999;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);}.navbar-inverse .brand:hover,.navbar-inverse .nav>li>a:hover{color:#ffffff;} .navbar-inverse .brand{color:#999999;} .navbar-inverse .navbar-text{color:#999999;} .navbar-inverse .nav>li>a:focus,.navbar-inverse .nav>li>a:hover{background-color:transparent;color:#ffffff;} .navbar-inverse .nav .active>a,.navbar-inverse .nav .active>a:hover,.navbar-inverse .nav .active>a:focus{color:#ffffff;background-color:#111111;} .navbar-inverse .navbar-link{color:#999999;}.navbar-inverse .navbar-link:hover{color:#ffffff;} .navbar-inverse .divider-vertical{border-left-color:#111111;border-right-color:#222222;} .navbar-inverse .nav li.dropdown.open>.dropdown-toggle,.navbar-inverse .nav li.dropdown.active>.dropdown-toggle,.navbar-inverse .nav li.dropdown.open.active>.dropdown-toggle{background-color:#111111;color:#ffffff;} .navbar-inverse .nav li.dropdown>a:hover .caret{border-top-color:#ffffff;border-bottom-color:#ffffff;} .navbar-inverse .nav li.dropdown>.dropdown-toggle .caret{border-top-color:#999999;border-bottom-color:#999999;} .navbar-inverse .nav li.dropdown.open>.dropdown-toggle .caret,.navbar-inverse .nav li.dropdown.active>.dropdown-toggle .caret,.navbar-inverse .nav li.dropdown.open.active>.dropdown-toggle .caret{border-top-color:#ffffff;border-bottom-color:#ffffff;} .navbar-inverse .navbar-search .search-query{color:#ffffff;background-color:#515151;border-color:#111111;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.1), 0 1px 0 rgba(255,255,255,.15);-moz-box-shadow:inset 0 1px 2px rgba(0,0,0,.1), 0 1px 0 rgba(255,255,255,.15);box-shadow:inset 0 1px 2px rgba(0,0,0,.1), 0 1px 0 rgba(255,255,255,.15);-webkit-transition:none;-moz-transition:none;-o-transition:none;transition:none;}.navbar-inverse .navbar-search .search-query:-moz-placeholder{color:#cccccc;} .navbar-inverse .navbar-search .search-query:-ms-input-placeholder{color:#cccccc;} .navbar-inverse .navbar-search .search-query::-webkit-input-placeholder{color:#cccccc;} .navbar-inverse .navbar-search .search-query:focus,.navbar-inverse .navbar-search .search-query.focused{padding:5px 15px;color:#333333;text-shadow:0 1px 0 #ffffff;background-color:#ffffff;border:0;-webkit-box-shadow:0 0 3px rgba(0, 0, 0, 0.15);-moz-box-shadow:0 0 3px rgba(0, 0, 0, 0.15);box-shadow:0 0 3px rgba(0, 0, 0, 0.15);outline:0;} .navbar-inverse .btn-navbar{color:#ffffff;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);background-color:#0e0e0e;background-image:-moz-linear-gradient(top, #151515, #040404);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#151515), to(#040404));background-image:-webkit-linear-gradient(top, #151515, #040404);background-image:-o-linear-gradient(top, #151515, #040404);background-image:linear-gradient(to bottom, #151515, #040404);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff151515', endColorstr='#ff040404', GradientType=0);border-color:#040404 #040404 #000000;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);*background-color:#040404;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);}.navbar-inverse .btn-navbar:hover,.navbar-inverse .btn-navbar:active,.navbar-inverse .btn-navbar.active,.navbar-inverse .btn-navbar.disabled,.navbar-inverse .btn-navbar[disabled]{color:#ffffff;background-color:#040404;*background-color:#000000;} .navbar-inverse .btn-navbar:active,.navbar-inverse .btn-navbar.active{background-color:#000000 \9;} .breadcrumb{padding:8px 15px;margin:0 0 20px;list-style:none;background-color:#f5f5f5;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;}.breadcrumb>li{display:inline-block;*display:inline;*zoom:1;text-shadow:0 1px 0 #ffffff;}.breadcrumb>li>.divider{padding:0 5px;color:#ccc;} .breadcrumb>.active{color:#999999;} .pagination{margin:20px 0;} .pagination ul{display:inline-block;*display:inline;*zoom:1;margin-left:0;margin-bottom:0;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:0 1px 2px rgba(0, 0, 0, 0.05);-moz-box-shadow:0 1px 2px rgba(0, 0, 0, 0.05);box-shadow:0 1px 2px rgba(0, 0, 0, 0.05);} .pagination ul>li{display:inline;} .pagination ul>li>a,.pagination ul>li>span{float:left;padding:4px 12px;line-height:20px;text-decoration:none;background-color:#ffffff;border:1px solid #dddddd;border-left-width:0;} .pagination ul>li>a:hover,.pagination ul>.active>a,.pagination ul>.active>span{background-color:#f5f5f5;} .pagination ul>.active>a,.pagination ul>.active>span{color:#999999;cursor:default;} .pagination ul>.disabled>span,.pagination ul>.disabled>a,.pagination ul>.disabled>a:hover{color:#999999;background-color:transparent;cursor:default;} .pagination ul>li:first-child>a,.pagination ul>li:first-child>span{border-left-width:1px;-webkit-border-top-left-radius:4px;-moz-border-radius-topleft:4px;border-top-left-radius:4px;-webkit-border-bottom-left-radius:4px;-moz-border-radius-bottomleft:4px;border-bottom-left-radius:4px;} .pagination ul>li:last-child>a,.pagination ul>li:last-child>span{-webkit-border-top-right-radius:4px;-moz-border-radius-topright:4px;border-top-right-radius:4px;-webkit-border-bottom-right-radius:4px;-moz-border-radius-bottomright:4px;border-bottom-right-radius:4px;} .pagination-centered{text-align:center;} .pagination-right{text-align:right;} .pagination-large ul>li>a,.pagination-large ul>li>span{padding:11px 19px;font-size:17.5px;} .pagination-large ul>li:first-child>a,.pagination-large ul>li:first-child>span{-webkit-border-top-left-radius:6px;-moz-border-radius-topleft:6px;border-top-left-radius:6px;-webkit-border-bottom-left-radius:6px;-moz-border-radius-bottomleft:6px;border-bottom-left-radius:6px;} .pagination-large ul>li:last-child>a,.pagination-large ul>li:last-child>span{-webkit-border-top-right-radius:6px;-moz-border-radius-topright:6px;border-top-right-radius:6px;-webkit-border-bottom-right-radius:6px;-moz-border-radius-bottomright:6px;border-bottom-right-radius:6px;} .pagination-mini ul>li:first-child>a,.pagination-small ul>li:first-child>a,.pagination-mini ul>li:first-child>span,.pagination-small ul>li:first-child>span{-webkit-border-top-left-radius:3px;-moz-border-radius-topleft:3px;border-top-left-radius:3px;-webkit-border-bottom-left-radius:3px;-moz-border-radius-bottomleft:3px;border-bottom-left-radius:3px;} .pagination-mini ul>li:last-child>a,.pagination-small ul>li:last-child>a,.pagination-mini ul>li:last-child>span,.pagination-small ul>li:last-child>span{-webkit-border-top-right-radius:3px;-moz-border-radius-topright:3px;border-top-right-radius:3px;-webkit-border-bottom-right-radius:3px;-moz-border-radius-bottomright:3px;border-bottom-right-radius:3px;} .pagination-small ul>li>a,.pagination-small ul>li>span{padding:2px 10px;font-size:11.9px;} .pagination-mini ul>li>a,.pagination-mini ul>li>span{padding:0 6px;font-size:10.5px;} .pager{margin:20px 0;list-style:none;text-align:center;*zoom:1;}.pager:before,.pager:after{display:table;content:"";line-height:0;} .pager:after{clear:both;} .pager li{display:inline;} .pager li>a,.pager li>span{display:inline-block;padding:5px 14px;background-color:#fff;border:1px solid #ddd;-webkit-border-radius:15px;-moz-border-radius:15px;border-radius:15px;} .pager li>a:hover{text-decoration:none;background-color:#f5f5f5;} .pager .next>a,.pager .next>span{float:right;} .pager .previous>a,.pager .previous>span{float:left;} .pager .disabled>a,.pager .disabled>a:hover,.pager .disabled>span{color:#999999;background-color:#fff;cursor:default;} .thumbnails{margin-left:-20px;list-style:none;*zoom:1;}.thumbnails:before,.thumbnails:after{display:table;content:"";line-height:0;} .thumbnails:after{clear:both;} .row-fluid .thumbnails{margin-left:0;} .thumbnails>li{float:left;margin-bottom:20px;margin-left:20px;} .thumbnail{display:block;padding:4px;line-height:20px;border:1px solid #ddd;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:0 1px 3px rgba(0, 0, 0, 0.055);-moz-box-shadow:0 1px 3px rgba(0, 0, 0, 0.055);box-shadow:0 1px 3px rgba(0, 0, 0, 0.055);-webkit-transition:all 0.2s ease-in-out;-moz-transition:all 0.2s ease-in-out;-o-transition:all 0.2s ease-in-out;transition:all 0.2s ease-in-out;} a.thumbnail:hover{border-color:#0088cc;-webkit-box-shadow:0 1px 4px rgba(0, 105, 214, 0.25);-moz-box-shadow:0 1px 4px rgba(0, 105, 214, 0.25);box-shadow:0 1px 4px rgba(0, 105, 214, 0.25);} .thumbnail>img{display:block;max-width:100%;margin-left:auto;margin-right:auto;} .thumbnail .caption{padding:9px;color:#555555;} .alert{padding:8px 35px 8px 14px;margin-bottom:20px;text-shadow:0 1px 0 rgba(255, 255, 255, 0.5);background-color:#fcf8e3;border:1px solid #fbeed5;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;} .alert,.alert h4{color:#c09853;} .alert h4{margin:0;} .alert .close{position:relative;top:-2px;right:-21px;line-height:20px;} .alert-success{background-color:#dff0d8;border-color:#d6e9c6;color:#468847;} .alert-success h4{color:#468847;} .alert-danger,.alert-error{background-color:#f2dede;border-color:#eed3d7;color:#b94a48;} .alert-danger h4,.alert-error h4{color:#b94a48;} .alert-info{background-color:#d9edf7;border-color:#bce8f1;color:#3a87ad;} .alert-info h4{color:#3a87ad;} .alert-block{padding-top:14px;padding-bottom:14px;} .alert-block>p,.alert-block>ul{margin-bottom:0;} .alert-block p+p{margin-top:5px;} @-webkit-keyframes progress-bar-stripes{from{background-position:40px 0;} to{background-position:0 0;}}@-moz-keyframes progress-bar-stripes{from{background-position:40px 0;} to{background-position:0 0;}}@-ms-keyframes progress-bar-stripes{from{background-position:40px 0;} to{background-position:0 0;}}@-o-keyframes progress-bar-stripes{from{background-position:0 0;} to{background-position:40px 0;}}@keyframes progress-bar-stripes{from{background-position:40px 0;} to{background-position:0 0;}}.progress{overflow:hidden;height:20px;margin-bottom:20px;background-color:#f7f7f7;background-image:-moz-linear-gradient(top, #f5f5f5, #f9f9f9);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#f5f5f5), to(#f9f9f9));background-image:-webkit-linear-gradient(top, #f5f5f5, #f9f9f9);background-image:-o-linear-gradient(top, #f5f5f5, #f9f9f9);background-image:linear-gradient(to bottom, #f5f5f5, #f9f9f9);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#fff9f9f9', GradientType=0);-webkit-box-shadow:inset 0 1px 2px rgba(0, 0, 0, 0.1);-moz-box-shadow:inset 0 1px 2px rgba(0, 0, 0, 0.1);box-shadow:inset 0 1px 2px rgba(0, 0, 0, 0.1);-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;} .progress .bar{width:0%;height:100%;color:#ffffff;float:left;font-size:12px;text-align:center;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);background-color:#0e90d2;background-image:-moz-linear-gradient(top, #149bdf, #0480be);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#149bdf), to(#0480be));background-image:-webkit-linear-gradient(top, #149bdf, #0480be);background-image:-o-linear-gradient(top, #149bdf, #0480be);background-image:linear-gradient(to bottom, #149bdf, #0480be);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff149bdf', endColorstr='#ff0480be', GradientType=0);-webkit-box-shadow:inset 0 -1px 0 rgba(0, 0, 0, 0.15);-moz-box-shadow:inset 0 -1px 0 rgba(0, 0, 0, 0.15);box-shadow:inset 0 -1px 0 rgba(0, 0, 0, 0.15);-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;-webkit-transition:width 0.6s ease;-moz-transition:width 0.6s ease;-o-transition:width 0.6s ease;transition:width 0.6s ease;} .progress .bar+.bar{-webkit-box-shadow:inset 1px 0 0 rgba(0,0,0,.15), inset 0 -1px 0 rgba(0,0,0,.15);-moz-box-shadow:inset 1px 0 0 rgba(0,0,0,.15), inset 0 -1px 0 rgba(0,0,0,.15);box-shadow:inset 1px 0 0 rgba(0,0,0,.15), inset 0 -1px 0 rgba(0,0,0,.15);} .progress-striped .bar{background-color:#149bdf;background-image:-webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));background-image:-webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);-webkit-background-size:40px 40px;-moz-background-size:40px 40px;-o-background-size:40px 40px;background-size:40px 40px;} .progress.active .bar{-webkit-animation:progress-bar-stripes 2s linear infinite;-moz-animation:progress-bar-stripes 2s linear infinite;-ms-animation:progress-bar-stripes 2s linear infinite;-o-animation:progress-bar-stripes 2s linear infinite;animation:progress-bar-stripes 2s linear infinite;} .progress-danger .bar,.progress .bar-danger{background-color:#dd514c;background-image:-moz-linear-gradient(top, #ee5f5b, #c43c35);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#ee5f5b), to(#c43c35));background-image:-webkit-linear-gradient(top, #ee5f5b, #c43c35);background-image:-o-linear-gradient(top, #ee5f5b, #c43c35);background-image:linear-gradient(to bottom, #ee5f5b, #c43c35);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffee5f5b', endColorstr='#ffc43c35', GradientType=0);} .progress-danger.progress-striped .bar,.progress-striped .bar-danger{background-color:#ee5f5b;background-image:-webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));background-image:-webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);} .progress-success .bar,.progress .bar-success{background-color:#5eb95e;background-image:-moz-linear-gradient(top, #62c462, #57a957);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#62c462), to(#57a957));background-image:-webkit-linear-gradient(top, #62c462, #57a957);background-image:-o-linear-gradient(top, #62c462, #57a957);background-image:linear-gradient(to bottom, #62c462, #57a957);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff62c462', endColorstr='#ff57a957', GradientType=0);} .progress-success.progress-striped .bar,.progress-striped .bar-success{background-color:#62c462;background-image:-webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));background-image:-webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);} .progress-info .bar,.progress .bar-info{background-color:#4bb1cf;background-image:-moz-linear-gradient(top, #5bc0de, #339bb9);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#5bc0de), to(#339bb9));background-image:-webkit-linear-gradient(top, #5bc0de, #339bb9);background-image:-o-linear-gradient(top, #5bc0de, #339bb9);background-image:linear-gradient(to bottom, #5bc0de, #339bb9);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff339bb9', GradientType=0);} .progress-info.progress-striped .bar,.progress-striped .bar-info{background-color:#5bc0de;background-image:-webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));background-image:-webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);} .progress-warning .bar,.progress .bar-warning{background-color:#faa732;background-image:-moz-linear-gradient(top, #fbb450, #f89406);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#fbb450), to(#f89406));background-image:-webkit-linear-gradient(top, #fbb450, #f89406);background-image:-o-linear-gradient(top, #fbb450, #f89406);background-image:linear-gradient(to bottom, #fbb450, #f89406);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffbb450', endColorstr='#fff89406', GradientType=0);} .progress-warning.progress-striped .bar,.progress-striped .bar-warning{background-color:#fbb450;background-image:-webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));background-image:-webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);} .hero-unit{padding:60px;margin-bottom:30px;font-size:18px;font-weight:200;line-height:30px;color:inherit;background-color:#eeeeee;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;}.hero-unit h1{margin-bottom:0;font-size:60px;line-height:1;color:inherit;letter-spacing:-1px;} .hero-unit li{line-height:30px;} .media,.media-body{overflow:hidden;*overflow:visible;zoom:1;} .media,.media .media{margin-top:15px;} .media:first-child{margin-top:0;} .media-object{display:block;} .media-heading{margin:0 0 5px;} .media .pull-left{margin-right:10px;} .media .pull-right{margin-left:10px;} .media-list{margin-left:0;list-style:none;} .tooltip{position:absolute;z-index:1030;display:block;visibility:visible;padding:5px;font-size:11px;opacity:0;filter:alpha(opacity=0);}.tooltip.in{opacity:0.8;filter:alpha(opacity=80);} .tooltip.top{margin-top:-3px;} .tooltip.right{margin-left:3px;} .tooltip.bottom{margin-top:3px;} .tooltip.left{margin-left:-3px;} .tooltip-inner{max-width:200px;padding:3px 8px;color:#ffffff;text-align:center;text-decoration:none;background-color:#000000;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;} .tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid;} .tooltip.top .tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-width:5px 5px 0;border-top-color:#000000;} .tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#000000;} .tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-width:5px 0 5px 5px;border-left-color:#000000;} .tooltip.bottom .tooltip-arrow{top:0;left:50%;margin-left:-5px;border-width:0 5px 5px;border-bottom-color:#000000;} .popover{position:absolute;top:0;left:0;z-index:1010;display:none;width:236px;padding:1px;text-align:left;background-color:#ffffff;-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0, 0, 0, 0.2);-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0, 0, 0, 0.2);-moz-box-shadow:0 5px 10px rgba(0, 0, 0, 0.2);box-shadow:0 5px 10px rgba(0, 0, 0, 0.2);white-space:normal;}.popover.top{margin-top:-10px;} .popover.right{margin-left:10px;} .popover.bottom{margin-top:10px;} .popover.left{margin-left:-10px;} .popover-title{margin:0;padding:8px 14px;font-size:14px;font-weight:normal;line-height:18px;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;-webkit-border-radius:5px 5px 0 0;-moz-border-radius:5px 5px 0 0;border-radius:5px 5px 0 0;} .popover-content{padding:9px 14px;} .popover .arrow,.popover .arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid;} .popover .arrow{border-width:11px;} .popover .arrow:after{border-width:10px;content:"";} .popover.top .arrow{left:50%;margin-left:-11px;border-bottom-width:0;border-top-color:#999;border-top-color:rgba(0, 0, 0, 0.25);bottom:-11px;}.popover.top .arrow:after{bottom:1px;margin-left:-10px;border-bottom-width:0;border-top-color:#ffffff;} .popover.right .arrow{top:50%;left:-11px;margin-top:-11px;border-left-width:0;border-right-color:#999;border-right-color:rgba(0, 0, 0, 0.25);}.popover.right .arrow:after{left:1px;bottom:-10px;border-left-width:0;border-right-color:#ffffff;} .popover.bottom .arrow{left:50%;margin-left:-11px;border-top-width:0;border-bottom-color:#999;border-bottom-color:rgba(0, 0, 0, 0.25);top:-11px;}.popover.bottom .arrow:after{top:1px;margin-left:-10px;border-top-width:0;border-bottom-color:#ffffff;} .popover.left .arrow{top:50%;right:-11px;margin-top:-11px;border-right-width:0;border-left-color:#999;border-left-color:rgba(0, 0, 0, 0.25);}.popover.left .arrow:after{right:1px;border-right-width:0;border-left-color:#ffffff;bottom:-10px;} .modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040;background-color:#000000;}.modal-backdrop.fade{opacity:0;} .modal-backdrop,.modal-backdrop.fade.in{opacity:0.8;filter:alpha(opacity=80);} .modal{position:fixed;top:10%;left:50%;z-index:1050;width:560px;margin-left:-280px;background-color:#ffffff;border:1px solid #999;border:1px solid rgba(0, 0, 0, 0.3);*border:1px solid #999;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;-webkit-box-shadow:0 3px 7px rgba(0, 0, 0, 0.3);-moz-box-shadow:0 3px 7px rgba(0, 0, 0, 0.3);box-shadow:0 3px 7px rgba(0, 0, 0, 0.3);-webkit-background-clip:padding-box;-moz-background-clip:padding-box;background-clip:padding-box;outline:none;}.modal.fade{-webkit-transition:opacity .3s linear, top .3s ease-out;-moz-transition:opacity .3s linear, top .3s ease-out;-o-transition:opacity .3s linear, top .3s ease-out;transition:opacity .3s linear, top .3s ease-out;top:-25%;} .modal.fade.in{top:10%;} .modal-header{padding:9px 15px;border-bottom:1px solid #eee;}.modal-header .close{margin-top:2px;} .modal-header h3{margin:0;line-height:30px;} .modal-body{position:relative;overflow-y:auto;max-height:400px;padding:15px;} .modal-form{margin-bottom:0;} .modal-footer{padding:14px 15px 15px;margin-bottom:0;text-align:right;background-color:#f5f5f5;border-top:1px solid #ddd;-webkit-border-radius:0 0 6px 6px;-moz-border-radius:0 0 6px 6px;border-radius:0 0 6px 6px;-webkit-box-shadow:inset 0 1px 0 #ffffff;-moz-box-shadow:inset 0 1px 0 #ffffff;box-shadow:inset 0 1px 0 #ffffff;*zoom:1;}.modal-footer:before,.modal-footer:after{display:table;content:"";line-height:0;} .modal-footer:after{clear:both;} .modal-footer .btn+.btn{margin-left:5px;margin-bottom:0;} .modal-footer .btn-group .btn+.btn{margin-left:-1px;} .modal-footer .btn-block+.btn-block{margin-left:0;} .dropup,.dropdown{position:relative;} .dropdown-toggle{*margin-bottom:-3px;} .dropdown-toggle:active,.open .dropdown-toggle{outline:0;} .caret{display:inline-block;width:0;height:0;vertical-align:top;border-top:4px solid #000000;border-right:4px solid transparent;border-left:4px solid transparent;content:"";} .dropdown .caret{margin-top:8px;margin-left:2px;} .dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:160px;padding:5px 0;margin:2px 0 0;list-style:none;background-color:#ffffff;border:1px solid #ccc;border:1px solid rgba(0, 0, 0, 0.2);*border-right-width:2px;*border-bottom-width:2px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0, 0, 0, 0.2);-moz-box-shadow:0 5px 10px rgba(0, 0, 0, 0.2);box-shadow:0 5px 10px rgba(0, 0, 0, 0.2);-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box;}.dropdown-menu.pull-right{right:0;left:auto;} .dropdown-menu .divider{*width:100%;height:1px;margin:9px 1px;*margin:-5px 0 5px;overflow:hidden;background-color:#e5e5e5;border-bottom:1px solid #ffffff;} .dropdown-menu li>a{display:block;padding:3px 20px;clear:both;font-weight:normal;line-height:20px;color:#333333;white-space:nowrap;} .dropdown-menu li>a:hover,.dropdown-menu li>a:focus,.dropdown-submenu:hover>a{text-decoration:none;color:#ffffff;background-color:#0081c2;background-image:-moz-linear-gradient(top, #0088cc, #0077b3);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0077b3));background-image:-webkit-linear-gradient(top, #0088cc, #0077b3);background-image:-o-linear-gradient(top, #0088cc, #0077b3);background-image:linear-gradient(to bottom, #0088cc, #0077b3);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff0077b3', GradientType=0);} .dropdown-menu .active>a,.dropdown-menu .active>a:hover{color:#ffffff;text-decoration:none;outline:0;background-color:#0081c2;background-image:-moz-linear-gradient(top, #0088cc, #0077b3);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0077b3));background-image:-webkit-linear-gradient(top, #0088cc, #0077b3);background-image:-o-linear-gradient(top, #0088cc, #0077b3);background-image:linear-gradient(to bottom, #0088cc, #0077b3);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff0077b3', GradientType=0);} .dropdown-menu .disabled>a,.dropdown-menu .disabled>a:hover{color:#999999;} .dropdown-menu .disabled>a:hover{text-decoration:none;background-color:transparent;background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);cursor:default;} .open{*z-index:1000;}.open >.dropdown-menu{display:block;} .pull-right>.dropdown-menu{right:0;left:auto;} .dropup .caret,.navbar-fixed-bottom .dropdown .caret{border-top:0;border-bottom:4px solid #000000;content:"";} .dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:1px;} .dropdown-submenu{position:relative;} .dropdown-submenu>.dropdown-menu{top:0;left:100%;margin-top:-6px;margin-left:-1px;-webkit-border-radius:0 6px 6px 6px;-moz-border-radius:0 6px 6px 6px;border-radius:0 6px 6px 6px;} .dropdown-submenu:hover>.dropdown-menu{display:block;} .dropup .dropdown-submenu>.dropdown-menu{top:auto;bottom:0;margin-top:0;margin-bottom:-2px;-webkit-border-radius:5px 5px 5px 0;-moz-border-radius:5px 5px 5px 0;border-radius:5px 5px 5px 0;} .dropdown-submenu>a:after{display:block;content:" ";float:right;width:0;height:0;border-color:transparent;border-style:solid;border-width:5px 0 5px 5px;border-left-color:#cccccc;margin-top:5px;margin-right:-10px;} .dropdown-submenu:hover>a:after{border-left-color:#ffffff;} .dropdown-submenu.pull-left{float:none;}.dropdown-submenu.pull-left>.dropdown-menu{left:-100%;margin-left:10px;-webkit-border-radius:6px 0 6px 6px;-moz-border-radius:6px 0 6px 6px;border-radius:6px 0 6px 6px;} .dropdown .dropdown-menu .nav-header{padding-left:20px;padding-right:20px;} .typeahead{z-index:1051;margin-top:2px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;} .accordion{margin-bottom:20px;} .accordion-group{margin-bottom:2px;border:1px solid #e5e5e5;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;} .accordion-heading{border-bottom:0;} .accordion-heading .accordion-toggle{display:block;padding:8px 15px;} .accordion-toggle{cursor:pointer;} .accordion-inner{padding:9px 15px;border-top:1px solid #e5e5e5;} .carousel{position:relative;margin-bottom:20px;line-height:1;} .carousel-inner{overflow:hidden;width:100%;position:relative;} .carousel-inner>.item{display:none;position:relative;-webkit-transition:0.6s ease-in-out left;-moz-transition:0.6s ease-in-out left;-o-transition:0.6s ease-in-out left;transition:0.6s ease-in-out left;} .carousel-inner>.item>img{display:block;line-height:1;} .carousel-inner>.active,.carousel-inner>.next,.carousel-inner>.prev{display:block;} .carousel-inner>.active{left:0;} .carousel-inner>.next,.carousel-inner>.prev{position:absolute;top:0;width:100%;} .carousel-inner>.next{left:100%;} .carousel-inner>.prev{left:-100%;} .carousel-inner>.next.left,.carousel-inner>.prev.right{left:0;} .carousel-inner>.active.left{left:-100%;} .carousel-inner>.active.right{left:100%;} .carousel-control{position:absolute;top:40%;left:15px;width:40px;height:40px;margin-top:-20px;font-size:60px;font-weight:100;line-height:30px;color:#ffffff;text-align:center;background:#222222;border:3px solid #ffffff;-webkit-border-radius:23px;-moz-border-radius:23px;border-radius:23px;opacity:0.5;filter:alpha(opacity=50);}.carousel-control.right{left:auto;right:15px;} .carousel-control:hover{color:#ffffff;text-decoration:none;opacity:0.9;filter:alpha(opacity=90);} .carousel-caption{position:absolute;left:0;right:0;bottom:0;padding:15px;background:#333333;background:rgba(0, 0, 0, 0.75);} .carousel-caption h4,.carousel-caption p{color:#ffffff;line-height:20px;} .carousel-caption h4{margin:0 0 5px;} .carousel-caption p{margin-bottom:0;} .well{min-height:20px;padding:19px;margin-bottom:20px;background-color:#f5f5f5;border:1px solid #e3e3e3;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.05);-moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.05);box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.05);}.well blockquote{border-color:#ddd;border-color:rgba(0, 0, 0, 0.15);} .well-large{padding:24px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;} .well-small{padding:9px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;} .close{float:right;font-size:20px;font-weight:bold;line-height:20px;color:#000000;text-shadow:0 1px 0 #ffffff;opacity:0.2;filter:alpha(opacity=20);}.close:hover{color:#000000;text-decoration:none;cursor:pointer;opacity:0.4;filter:alpha(opacity=40);} button.close{padding:0;cursor:pointer;background:transparent;border:0;-webkit-appearance:none;} .pull-right{float:right;} .pull-left{float:left;} .hide{display:none;} .show{display:block;} .invisible{visibility:hidden;} .affix{position:fixed;} .fade{opacity:0;-webkit-transition:opacity 0.15s linear;-moz-transition:opacity 0.15s linear;-o-transition:opacity 0.15s linear;transition:opacity 0.15s linear;}.fade.in{opacity:1;} .collapse{position:relative;height:0;overflow:hidden;-webkit-transition:height 0.35s ease;-moz-transition:height 0.35s ease;-o-transition:height 0.35s ease;transition:height 0.35s ease;}.collapse.in{height:auto;} .hidden{display:none;visibility:hidden;} .visible-phone{display:none !important;} .visible-tablet{display:none !important;} .hidden-desktop{display:none !important;} .visible-desktop{display:inherit !important;} @media (min-width:768px) and (max-width:979px){.hidden-desktop{display:inherit !important;} .visible-desktop{display:none !important ;} .visible-tablet{display:inherit !important;} .hidden-tablet{display:none !important;}}@media (max-width:767px){.hidden-desktop{display:inherit !important;} .visible-desktop{display:none !important;} .visible-phone{display:inherit !important;} .hidden-phone{display:none !important;}}@media (max-width:767px){body{padding-left:20px;padding-right:20px;} .navbar-fixed-top,.navbar-fixed-bottom,.navbar-static-top{margin-left:-20px;margin-right:-20px;} .container-fluid{padding:0;} .dl-horizontal dt{float:none;clear:none;width:auto;text-align:left;} .dl-horizontal dd{margin-left:0;} .container{width:auto;} .row-fluid{width:100%;} .row,.thumbnails{margin-left:0;} .thumbnails>li{float:none;margin-left:0;} [class*="span"],.uneditable-input[class*="span"],.row-fluid [class*="span"]{float:none;display:block;width:100%;margin-left:0;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;} .span12,.row-fluid .span12{width:100%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;} .row-fluid [class*="offset"]:first-child{margin-left:0;} .input-large,.input-xlarge,.input-xxlarge,input[class*="span"],select[class*="span"],textarea[class*="span"],.uneditable-input{display:block;width:100%;min-height:30px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;} .input-prepend input,.input-append input,.input-prepend input[class*="span"],.input-append input[class*="span"]{display:inline-block;width:auto;} .controls-row [class*="span"]+[class*="span"]{margin-left:0;} .modal{position:fixed;top:20px;left:20px;right:20px;width:auto;margin:0;}.modal.fade{top:-100px;} .modal.fade.in{top:20px;}}@media (max-width:480px){.nav-collapse{-webkit-transform:translate3d(0, 0, 0);} .page-header h1 small{display:block;line-height:20px;} input[type="checkbox"],input[type="radio"]{border:1px solid #ccc;} .form-horizontal .control-label{float:none;width:auto;padding-top:0;text-align:left;} .form-horizontal .controls{margin-left:0;} .form-horizontal .control-list{padding-top:0;} .form-horizontal .form-actions{padding-left:10px;padding-right:10px;} .media .pull-left,.media .pull-right{float:none;display:block;margin-bottom:10px;} .media-object{margin-right:0;margin-left:0;} .modal{top:10px;left:10px;right:10px;} .modal-header .close{padding:10px;margin:-10px;} .carousel-caption{position:static;}}@media (min-width:768px) and (max-width:979px){.row{margin-left:-20px;*zoom:1;}.row:before,.row:after{display:table;content:"";line-height:0;} .row:after{clear:both;} [class*="span"]{float:left;min-height:1px;margin-left:20px;} .container,.navbar-static-top .container,.navbar-fixed-top .container,.navbar-fixed-bottom .container{width:724px;} .span12{width:724px;} .span11{width:662px;} .span10{width:600px;} .span9{width:538px;} .span8{width:476px;} .span7{width:414px;} .span6{width:352px;} .span5{width:290px;} .span4{width:228px;} .span3{width:166px;} .span2{width:104px;} .span1{width:42px;} .offset12{margin-left:764px;} .offset11{margin-left:702px;} .offset10{margin-left:640px;} .offset9{margin-left:578px;} .offset8{margin-left:516px;} .offset7{margin-left:454px;} .offset6{margin-left:392px;} .offset5{margin-left:330px;} .offset4{margin-left:268px;} .offset3{margin-left:206px;} .offset2{margin-left:144px;} .offset1{margin-left:82px;} .row-fluid{width:100%;*zoom:1;}.row-fluid:before,.row-fluid:after{display:table;content:"";line-height:0;} .row-fluid:after{clear:both;} .row-fluid [class*="span"]{display:block;width:100%;min-height:30px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;float:left;margin-left:2.7624309392265194%;*margin-left:2.709239449864817%;} .row-fluid [class*="span"]:first-child{margin-left:0;} .row-fluid .controls-row [class*="span"]+[class*="span"]{margin-left:2.7624309392265194%;} .row-fluid .span12{width:100%;*width:99.94680851063829%;} .row-fluid .span11{width:91.43646408839778%;*width:91.38327259903608%;} .row-fluid .span10{width:82.87292817679558%;*width:82.81973668743387%;} .row-fluid .span9{width:74.30939226519337%;*width:74.25620077583166%;} .row-fluid .span8{width:65.74585635359117%;*width:65.69266486422946%;} .row-fluid .span7{width:57.18232044198895%;*width:57.12912895262725%;} .row-fluid .span6{width:48.61878453038674%;*width:48.56559304102504%;} .row-fluid .span5{width:40.05524861878453%;*width:40.00205712942283%;} .row-fluid .span4{width:31.491712707182323%;*width:31.43852121782062%;} .row-fluid .span3{width:22.92817679558011%;*width:22.87498530621841%;} .row-fluid .span2{width:14.3646408839779%;*width:14.311449394616199%;} .row-fluid .span1{width:5.801104972375691%;*width:5.747913483013988%;} .row-fluid .offset12{margin-left:105.52486187845304%;*margin-left:105.41847889972962%;} .row-fluid .offset12:first-child{margin-left:102.76243093922652%;*margin-left:102.6560479605031%;} .row-fluid .offset11{margin-left:96.96132596685082%;*margin-left:96.8549429881274%;} .row-fluid .offset11:first-child{margin-left:94.1988950276243%;*margin-left:94.09251204890089%;} .row-fluid .offset10{margin-left:88.39779005524862%;*margin-left:88.2914070765252%;} .row-fluid .offset10:first-child{margin-left:85.6353591160221%;*margin-left:85.52897613729868%;} .row-fluid .offset9{margin-left:79.8342541436464%;*margin-left:79.72787116492299%;} .row-fluid .offset9:first-child{margin-left:77.07182320441989%;*margin-left:76.96544022569647%;} .row-fluid .offset8{margin-left:71.2707182320442%;*margin-left:71.16433525332079%;} .row-fluid .offset8:first-child{margin-left:68.50828729281768%;*margin-left:68.40190431409427%;} .row-fluid .offset7{margin-left:62.70718232044199%;*margin-left:62.600799341718584%;} .row-fluid .offset7:first-child{margin-left:59.94475138121547%;*margin-left:59.838368402492065%;} .row-fluid .offset6{margin-left:54.14364640883978%;*margin-left:54.037263430116376%;} .row-fluid .offset6:first-child{margin-left:51.38121546961326%;*margin-left:51.27483249088986%;} .row-fluid .offset5{margin-left:45.58011049723757%;*margin-left:45.47372751851417%;} .row-fluid .offset5:first-child{margin-left:42.81767955801105%;*margin-left:42.71129657928765%;} .row-fluid .offset4{margin-left:37.01657458563536%;*margin-left:36.91019160691196%;} .row-fluid .offset4:first-child{margin-left:34.25414364640884%;*margin-left:34.14776066768544%;} .row-fluid .offset3{margin-left:28.45303867403315%;*margin-left:28.346655695309746%;} .row-fluid .offset3:first-child{margin-left:25.69060773480663%;*margin-left:25.584224756083227%;} .row-fluid .offset2{margin-left:19.88950276243094%;*margin-left:19.783119783707537%;} .row-fluid .offset2:first-child{margin-left:17.12707182320442%;*margin-left:17.02068884448102%;} .row-fluid .offset1{margin-left:11.32596685082873%;*margin-left:11.219583872105325%;} .row-fluid .offset1:first-child{margin-left:8.56353591160221%;*margin-left:8.457152932878806%;} input,textarea,.uneditable-input{margin-left:0;} .controls-row [class*="span"]+[class*="span"]{margin-left:20px;} input.span12, textarea.span12, .uneditable-input.span12{width:710px;} input.span11, textarea.span11, .uneditable-input.span11{width:648px;} input.span10, textarea.span10, .uneditable-input.span10{width:586px;} input.span9, textarea.span9, .uneditable-input.span9{width:524px;} input.span8, textarea.span8, .uneditable-input.span8{width:462px;} input.span7, textarea.span7, .uneditable-input.span7{width:400px;} input.span6, textarea.span6, .uneditable-input.span6{width:338px;} input.span5, textarea.span5, .uneditable-input.span5{width:276px;} input.span4, textarea.span4, .uneditable-input.span4{width:214px;} input.span3, textarea.span3, .uneditable-input.span3{width:152px;} input.span2, textarea.span2, .uneditable-input.span2{width:90px;} input.span1, textarea.span1, .uneditable-input.span1{width:28px;}}@media (min-width:1200px){.row{margin-left:-30px;*zoom:1;}.row:before,.row:after{display:table;content:"";line-height:0;} .row:after{clear:both;} [class*="span"]{float:left;min-height:1px;margin-left:30px;} .container,.navbar-static-top .container,.navbar-fixed-top .container,.navbar-fixed-bottom .container{width:1170px;} .span12{width:1170px;} .span11{width:1070px;} .span10{width:970px;} .span9{width:870px;} .span8{width:770px;} .span7{width:670px;} .span6{width:570px;} .span5{width:470px;} .span4{width:370px;} .span3{width:270px;} .span2{width:170px;} .span1{width:70px;} .offset12{margin-left:1230px;} .offset11{margin-left:1130px;} .offset10{margin-left:1030px;} .offset9{margin-left:930px;} .offset8{margin-left:830px;} .offset7{margin-left:730px;} .offset6{margin-left:630px;} .offset5{margin-left:530px;} .offset4{margin-left:430px;} .offset3{margin-left:330px;} .offset2{margin-left:230px;} .offset1{margin-left:130px;} .row-fluid{width:100%;*zoom:1;}.row-fluid:before,.row-fluid:after{display:table;content:"";line-height:0;} .row-fluid:after{clear:both;} .row-fluid [class*="span"]{display:block;width:100%;min-height:30px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;float:left;margin-left:2.564102564102564%;*margin-left:2.5109110747408616%;} .row-fluid [class*="span"]:first-child{margin-left:0;} .row-fluid .controls-row [class*="span"]+[class*="span"]{margin-left:2.564102564102564%;} .row-fluid .span12{width:100%;*width:99.94680851063829%;} .row-fluid .span11{width:91.45299145299145%;*width:91.39979996362975%;} .row-fluid .span10{width:82.90598290598291%;*width:82.8527914166212%;} .row-fluid .span9{width:74.35897435897436%;*width:74.30578286961266%;} .row-fluid .span8{width:65.81196581196582%;*width:65.75877432260411%;} .row-fluid .span7{width:57.26495726495726%;*width:57.21176577559556%;} .row-fluid .span6{width:48.717948717948715%;*width:48.664757228587014%;} .row-fluid .span5{width:40.17094017094017%;*width:40.11774868157847%;} .row-fluid .span4{width:31.623931623931625%;*width:31.570740134569924%;} .row-fluid .span3{width:23.076923076923077%;*width:23.023731587561375%;} .row-fluid .span2{width:14.52991452991453%;*width:14.476723040552828%;} .row-fluid .span1{width:5.982905982905983%;*width:5.929714493544281%;} .row-fluid .offset12{margin-left:105.12820512820512%;*margin-left:105.02182214948171%;} .row-fluid .offset12:first-child{margin-left:102.56410256410257%;*margin-left:102.45771958537915%;} .row-fluid .offset11{margin-left:96.58119658119658%;*margin-left:96.47481360247316%;} .row-fluid .offset11:first-child{margin-left:94.01709401709402%;*margin-left:93.91071103837061%;} .row-fluid .offset10{margin-left:88.03418803418803%;*margin-left:87.92780505546462%;} .row-fluid .offset10:first-child{margin-left:85.47008547008548%;*margin-left:85.36370249136206%;} .row-fluid .offset9{margin-left:79.48717948717949%;*margin-left:79.38079650845607%;} .row-fluid .offset9:first-child{margin-left:76.92307692307693%;*margin-left:76.81669394435352%;} .row-fluid .offset8{margin-left:70.94017094017094%;*margin-left:70.83378796144753%;} .row-fluid .offset8:first-child{margin-left:68.37606837606839%;*margin-left:68.26968539734497%;} .row-fluid .offset7{margin-left:62.393162393162385%;*margin-left:62.28677941443899%;} .row-fluid .offset7:first-child{margin-left:59.82905982905982%;*margin-left:59.72267685033642%;} .row-fluid .offset6{margin-left:53.84615384615384%;*margin-left:53.739770867430444%;} .row-fluid .offset6:first-child{margin-left:51.28205128205128%;*margin-left:51.175668303327875%;} .row-fluid .offset5{margin-left:45.299145299145295%;*margin-left:45.1927623204219%;} .row-fluid .offset5:first-child{margin-left:42.73504273504273%;*margin-left:42.62865975631933%;} .row-fluid .offset4{margin-left:36.75213675213675%;*margin-left:36.645753773413354%;} .row-fluid .offset4:first-child{margin-left:34.18803418803419%;*margin-left:34.081651209310785%;} .row-fluid .offset3{margin-left:28.205128205128204%;*margin-left:28.0987452264048%;} .row-fluid .offset3:first-child{margin-left:25.641025641025642%;*margin-left:25.53464266230224%;} .row-fluid .offset2{margin-left:19.65811965811966%;*margin-left:19.551736679396257%;} .row-fluid .offset2:first-child{margin-left:17.094017094017094%;*margin-left:16.98763411529369%;} .row-fluid .offset1{margin-left:11.11111111111111%;*margin-left:11.004728132387708%;} .row-fluid .offset1:first-child{margin-left:8.547008547008547%;*margin-left:8.440625568285142%;} input,textarea,.uneditable-input{margin-left:0;} .controls-row [class*="span"]+[class*="span"]{margin-left:30px;} input.span12, textarea.span12, .uneditable-input.span12{width:1156px;} input.span11, textarea.span11, .uneditable-input.span11{width:1056px;} input.span10, textarea.span10, .uneditable-input.span10{width:956px;} input.span9, textarea.span9, .uneditable-input.span9{width:856px;} input.span8, textarea.span8, .uneditable-input.span8{width:756px;} input.span7, textarea.span7, .uneditable-input.span7{width:656px;} input.span6, textarea.span6, .uneditable-input.span6{width:556px;} input.span5, textarea.span5, .uneditable-input.span5{width:456px;} input.span4, textarea.span4, .uneditable-input.span4{width:356px;} input.span3, textarea.span3, .uneditable-input.span3{width:256px;} input.span2, textarea.span2, .uneditable-input.span2{width:156px;} input.span1, textarea.span1, .uneditable-input.span1{width:56px;} .thumbnails{margin-left:-30px;} .thumbnails>li{margin-left:30px;} .row-fluid .thumbnails{margin-left:0;}}@media (max-width:979px){body{padding-top:0;} .navbar-fixed-top,.navbar-fixed-bottom{position:static;} .navbar-fixed-top{margin-bottom:20px;} .navbar-fixed-bottom{margin-top:20px;} .navbar-fixed-top .navbar-inner,.navbar-fixed-bottom .navbar-inner{padding:5px;} .navbar .container{width:auto;padding:0;} .navbar .brand{padding-left:10px;padding-right:10px;margin:0 0 0 -5px;} .nav-collapse{clear:both;} .nav-collapse .nav{float:none;margin:0 0 10px;} .nav-collapse .nav>li{float:none;} .nav-collapse .nav>li>a{margin-bottom:2px;} .nav-collapse .nav>.divider-vertical{display:none;} .nav-collapse .nav .nav-header{color:#777777;text-shadow:none;} .nav-collapse .nav>li>a,.nav-collapse .dropdown-menu a{padding:9px 15px;font-weight:bold;color:#777777;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;} .nav-collapse .btn{padding:4px 10px 4px;font-weight:normal;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;} .nav-collapse .dropdown-menu li+li a{margin-bottom:2px;} .nav-collapse .nav>li>a:hover,.nav-collapse .dropdown-menu a:hover{background-color:#f2f2f2;} .navbar-inverse .nav-collapse .nav>li>a,.navbar-inverse .nav-collapse .dropdown-menu a{color:#999999;} .navbar-inverse .nav-collapse .nav>li>a:hover,.navbar-inverse .nav-collapse .dropdown-menu a:hover{background-color:#111111;} .nav-collapse.in .btn-group{margin-top:5px;padding:0;} .nav-collapse .dropdown-menu{position:static;top:auto;left:auto;float:none;display:none;max-width:none;margin:0 15px;padding:0;background-color:transparent;border:none;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;} .nav-collapse .open>.dropdown-menu{display:block;} .nav-collapse .dropdown-menu:before,.nav-collapse .dropdown-menu:after{display:none;} .nav-collapse .dropdown-menu .divider{display:none;} .nav-collapse .nav>li>.dropdown-menu:before,.nav-collapse .nav>li>.dropdown-menu:after{display:none;} .nav-collapse .navbar-form,.nav-collapse .navbar-search{float:none;padding:10px 15px;margin:10px 0;border-top:1px solid #f2f2f2;border-bottom:1px solid #f2f2f2;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.1);-moz-box-shadow:inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.1);box-shadow:inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.1);} .navbar-inverse .nav-collapse .navbar-form,.navbar-inverse .nav-collapse .navbar-search{border-top-color:#111111;border-bottom-color:#111111;} .navbar .nav-collapse .nav.pull-right{float:none;margin-left:0;} .nav-collapse,.nav-collapse.collapse{overflow:hidden;height:0;} .navbar .btn-navbar{display:block;} .navbar-static .navbar-inner{padding-left:10px;padding-right:10px;}}@media (min-width:980px){.nav-collapse.collapse{height:auto !important;overflow:visible !important;}} |
| URL | http://zero.webappsecurity.com/resources/css/font-awesome.css |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | max-age=2678400 |
| Request Header - size: 285 bytes. |
GET http://zero.webappsecurity.com/resources/css/font-awesome.css HTTP/1.1
Host: zero.webappsecurity.com User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0 Pragma: no-cache Cache-Control: no-cache Referer: http://zero.webappsecurity.com |
| Request Body - size: 0 bytes. |
|
| Response Header - size: 347 bytes. |
HTTP/1.1 200 OK
Date: Mon, 14 Mar 2022 07:13:41 GMT Server: Apache-Coyote/1.1 Access-Control-Allow-Origin: * Accept-Ranges: bytes ETag: W/"21752-1360580252000" Last-Modified: Mon, 11 Feb 2013 10:57:32 GMT Cache-Control: max-age=2678400 Expires: Thu, 14 Apr 2022 07:13:42 GMT Content-Type: text/css;charset=UTF-8 Content-Length: 21752 |
| Response Body - size: 21,752 bytes. |
/*!
* Font Awesome 3.0.2 * the iconic font designed for use with Twitter Bootstrap * ------------------------------------------------------- * The full suite of pictographic icons, examples, and documentation * can be found at: http://fortawesome.github.com/Font-Awesome/ * * License * ------------------------------------------------------- * - The Font Awesome font is licensed under the SIL Open Font License - http://scripts.sil.org/OFL * - Font Awesome CSS, LESS, and SASS files are licensed under the MIT License - * http://opensource.org/licenses/mit-license.html * - The Font Awesome pictograms are licensed under the CC BY 3.0 License - http://creativecommons.org/licenses/by/3.0/ * - Attribution is no longer required in Font Awesome 3.0, but much appreciated: * "Font Awesome by Dave Gandy - http://fortawesome.github.com/Font-Awesome" * Contact * ------------------------------------------------------- * Email: dave@davegandy.com * Twitter: http://twitter.com/fortaweso_me * Work: Lead Product Designer @ http://kyruus.com */ @font-face { font-family: 'FontAwesome'; src: url('../font/fontawesome-webfont.eot?v=3.0.1'); src: url('../font/fontawesome-webfont.eot?#iefix&v=3.0.1') format('embedded-opentype'), url('../font/fontawesome-webfont.woff?v=3.0.1') format('woff'), url('../font/fontawesome-webfont.ttf?v=3.0.1') format('truetype'); font-weight: normal; font-style: normal; } /* Font Awesome styles ------------------------------------------------------- */ [class^="icon-"], [class*=" icon-"] { font-family: FontAwesome; font-weight: normal; font-style: normal; text-decoration: inherit; -webkit-font-smoothing: antialiased; /* sprites.less reset */ display: inline; width: auto; height: auto; line-height: normal; vertical-align: baseline; background-image: none; background-position: 0% 0%; background-repeat: repeat; margin-top: 0; } /* more sprites.less reset */ .icon-white, .nav-pills > .active > a > [class^="icon-"], .nav-pills > .active > a > [class*=" icon-"], .nav-list > .active > a > [class^="icon-"], .nav-list > .active > a > [class*=" icon-"], .navbar-inverse .nav > .active > a > [class^="icon-"], .navbar-inverse .nav > .active > a > [class*=" icon-"], .dropdown-menu > li > a:hover > [class^="icon-"], .dropdown-menu > li > a:hover > [class*=" icon-"], .dropdown-menu > .active > a > [class^="icon-"], .dropdown-menu > .active > a > [class*=" icon-"], .dropdown-submenu:hover > a > [class^="icon-"], .dropdown-submenu:hover > a > [class*=" icon-"] { background-image: none; } [class^="icon-"]:before, [class*=" icon-"]:before { text-decoration: inherit; display: inline-block; speak: none; } /* makes sure icons active on rollover in links */ a [class^="icon-"], a [class*=" icon-"] { display: inline-block; } /* makes the font 33% larger relative to the icon container */ .icon-large:before { vertical-align: -10%; font-size: 1.3333333333333333em; } .btn [class^="icon-"], .nav [class^="icon-"], .btn [class*=" icon-"], .nav [class*=" icon-"] { display: inline; /* keeps button heights with and without icons the same */ } .btn [class^="icon-"].icon-large, .nav [class^="icon-"].icon-large, .btn [class*=" icon-"].icon-large, .nav [class*=" icon-"].icon-large { line-height: .9em; } .btn [class^="icon-"].icon-spin, .nav [class^="icon-"].icon-spin, .btn [class*=" icon-"].icon-spin, .nav [class*=" icon-"].icon-spin { display: inline-block; } .nav-tabs [class^="icon-"], .nav-pills [class^="icon-"], .nav-tabs [class*=" icon-"], .nav-pills [class*=" icon-"] { /* keeps button heights with and without icons the same */ } .nav-tabs [class^="icon-"], .nav-pills [class^="icon-"], .nav-tabs [class*=" icon-"], .nav-pills [class*=" icon-"], .nav-tabs [class^="icon-"].icon-large, .nav-pills [class^="icon-"].icon-large, .nav-tabs [class*=" icon-"].icon-large, .nav-pills [class*=" icon-"].icon-large { line-height: .9em; } li [class^="icon-"], .nav li [class^="icon-"], li [class*=" icon-"], .nav li [class*=" icon-"] { display: inline-block; width: 1.25em; text-align: center; } li [class^="icon-"].icon-large, .nav li [class^="icon-"].icon-large, li [class*=" icon-"].icon-large, .nav li [class*=" icon-"].icon-large { /* increased font size for icon-large */ width: 1.5625em; } ul.icons { list-style-type: none; text-indent: -0.75em; } ul.icons li [class^="icon-"], ul.icons li [class*=" icon-"] { width: .75em; } .icon-muted { color: #eeeeee; } .icon-border { border: solid 1px #eeeeee; padding: .2em .25em .15em; -webkit-border-radius: 3px; -moz-border-radius: 3px; border-radius: 3px; } .icon-2x { font-size: 2em; } .icon-2x.icon-border { border-width: 2px; -webkit-border-radius: 4px; -moz-border-radius: 4px; border-radius: 4px; } .icon-3x { font-size: 3em; } .icon-3x.icon-border { border-width: 3px; -webkit-border-radius: 5px; -moz-border-radius: 5px; border-radius: 5px; } .icon-4x { font-size: 4em; } .icon-4x.icon-border { border-width: 4px; -webkit-border-radius: 6px; -moz-border-radius: 6px; border-radius: 6px; } .pull-right { float: right; } .pull-left { float: left; } [class^="icon-"].pull-left, [class*=" icon-"].pull-left { margin-right: .3em; } [class^="icon-"].pull-right, [class*=" icon-"].pull-right { margin-left: .3em; } .btn [class^="icon-"].pull-left.icon-2x, .btn [class*=" icon-"].pull-left.icon-2x, .btn [class^="icon-"].pull-right.icon-2x, .btn [class*=" icon-"].pull-right.icon-2x { margin-top: .18em; } .btn [class^="icon-"].icon-spin.icon-large, .btn [class*=" icon-"].icon-spin.icon-large { line-height: .8em; } .btn.btn-small [class^="icon-"].pull-left.icon-2x, .btn.btn-small [class*=" icon-"].pull-left.icon-2x, .btn.btn-small [class^="icon-"].pull-right.icon-2x, .btn.btn-small [class*=" icon-"].pull-right.icon-2x { margin-top: .25em; } .btn.btn-large [class^="icon-"], .btn.btn-large [class*=" icon-"] { margin-top: 0; } .btn.btn-large [class^="icon-"].pull-left.icon-2x, .btn.btn-large [class*=" icon-"].pull-left.icon-2x, .btn.btn-large [class^="icon-"].pull-right.icon-2x, .btn.btn-large [class*=" icon-"].pull-right.icon-2x { margin-top: .05em; } .btn.btn-large [class^="icon-"].pull-left.icon-2x, .btn.btn-large [class*=" icon-"].pull-left.icon-2x { margin-right: .2em; } .btn.btn-large [class^="icon-"].pull-right.icon-2x, .btn.btn-large [class*=" icon-"].pull-right.icon-2x { margin-left: .2em; } .icon-spin { display: inline-block; -moz-animation: spin 2s infinite linear; -o-animation: spin 2s infinite linear; -webkit-animation: spin 2s infinite linear; animation: spin 2s infinite linear; } @-moz-keyframes spin { 0% { -moz-transform: rotate(0deg); } 100% { -moz-transform: rotate(359deg); } } @-webkit-keyframes spin { 0% { -webkit-transform: rotate(0deg); } 100% { -webkit-transform: rotate(359deg); } } @-o-keyframes spin { 0% { -o-transform: rotate(0deg); } 100% { -o-transform: rotate(359deg); } } @-ms-keyframes spin { 0% { -ms-transform: rotate(0deg); } 100% { -ms-transform: rotate(359deg); } } @keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(359deg); } } @-moz-document url-prefix() { .icon-spin { height: .9em; } .btn .icon-spin { height: auto; } .icon-spin.icon-large { height: 1.25em; } .btn .icon-spin.icon-large { height: .75em; } } /* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen readers do not read off random characters that represent icons */ .icon-glass:before { content: "\f000"; } .icon-music:before { content: "\f001"; } .icon-search:before { content: "\f002"; } .icon-envelope:before { content: "\f003"; } .icon-heart:before { content: "\f004"; } .icon-star:before { content: "\f005"; } .icon-star-empty:before { content: "\f006"; } .icon-user:before { content: "\f007"; } .icon-film:before { content: "\f008"; } .icon-th-large:before { content: "\f009"; } .icon-th:before { content: "\f00a"; } .icon-th-list:before { content: "\f00b"; } .icon-ok:before { content: "\f00c"; } .icon-remove:before { content: "\f00d"; } .icon-zoom-in:before { content: "\f00e"; } .icon-zoom-out:before { content: "\f010"; } .icon-off:before { content: "\f011"; } .icon-signal:before { content: "\f012"; } .icon-cog:before { content: "\f013"; } .icon-trash:before { content: "\f014"; } .icon-home:before { content: "\f015"; } .icon-file:before { content: "\f016"; } .icon-time:before { content: "\f017"; } .icon-road:before { content: "\f018"; } .icon-download-alt:before { content: "\f019"; } .icon-download:before { content: "\f01a"; } .icon-upload:before { content: "\f01b"; } .icon-inbox:before { content: "\f01c"; } .icon-play-circle:before { content: "\f01d"; } .icon-repeat:before { content: "\f01e"; } /* \f020 doesn't work in Safari. all shifted one down */ .icon-refresh:before { content: "\f021"; } .icon-list-alt:before { content: "\f022"; } .icon-lock:before { content: "\f023"; } .icon-flag:before { content: "\f024"; } .icon-headphones:before { content: "\f025"; } .icon-volume-off:before { content: "\f026"; } .icon-volume-down:before { content: "\f027"; } .icon-volume-up:before { content: "\f028"; } .icon-qrcode:before { content: "\f029"; } .icon-barcode:before { content: "\f02a"; } .icon-tag:before { content: "\f02b"; } .icon-tags:before { content: "\f02c"; } .icon-book:before { content: "\f02d"; } .icon-bookmark:before { content: "\f02e"; } .icon-print:before { content: "\f02f"; } .icon-camera:before { content: "\f030"; } .icon-font:before { content: "\f031"; } .icon-bold:before { content: "\f032"; } .icon-italic:before { content: "\f033"; } .icon-text-height:before { content: "\f034"; } .icon-text-width:before { content: "\f035"; } .icon-align-left:before { content: "\f036"; } .icon-align-center:before { content: "\f037"; } .icon-align-right:before { content: "\f038"; } .icon-align-justify:before { content: "\f039"; } .icon-list:before { content: "\f03a"; } .icon-indent-left:before { content: "\f03b"; } .icon-indent-right:before { content: "\f03c"; } .icon-facetime-video:before { content: "\f03d"; } .icon-picture:before { content: "\f03e"; } .icon-pencil:before { content: "\f040"; } .icon-map-marker:before { content: "\f041"; } .icon-adjust:before { content: "\f042"; } .icon-tint:before { content: "\f043"; } .icon-edit:before { content: "\f044"; } .icon-share:before { content: "\f045"; } .icon-check:before { content: "\f046"; } .icon-move:before { content: "\f047"; } .icon-step-backward:before { content: "\f048"; } .icon-fast-backward:before { content: "\f049"; } .icon-backward:before { content: "\f04a"; } .icon-play:before { content: "\f04b"; } .icon-pause:before { content: "\f04c"; } .icon-stop:before { content: "\f04d"; } .icon-forward:before { content: "\f04e"; } .icon-fast-forward:before { content: "\f050"; } .icon-step-forward:before { content: "\f051"; } .icon-eject:before { content: "\f052"; } .icon-chevron-left:before { content: "\f053"; } .icon-chevron-right:before { content: "\f054"; } .icon-plus-sign:before { content: "\f055"; } .icon-minus-sign:before { content: "\f056"; } .icon-remove-sign:before { content: "\f057"; } .icon-ok-sign:before { content: "\f058"; } .icon-question-sign:before { content: "\f059"; } .icon-info-sign:before { content: "\f05a"; } .icon-screenshot:before { content: "\f05b"; } .icon-remove-circle:before { content: "\f05c"; } .icon-ok-circle:before { content: "\f05d"; } .icon-ban-circle:before { content: "\f05e"; } .icon-arrow-left:before { content: "\f060"; } .icon-arrow-right:before { content: "\f061"; } .icon-arrow-up:before { content: "\f062"; } .icon-arrow-down:before { content: "\f063"; } .icon-share-alt:before { content: "\f064"; } .icon-resize-full:before { content: "\f065"; } .icon-resize-small:before { content: "\f066"; } .icon-plus:before { content: "\f067"; } .icon-minus:before { content: "\f068"; } .icon-asterisk:before { content: "\f069"; } .icon-exclamation-sign:before { content: "\f06a"; } .icon-gift:before { content: "\f06b"; } .icon-leaf:before { content: "\f06c"; } .icon-fire:before { content: "\f06d"; } .icon-eye-open:before { content: "\f06e"; } .icon-eye-close:before { content: "\f070"; } .icon-warning-sign:before { content: "\f071"; } .icon-plane:before { content: "\f072"; } .icon-calendar:before { content: "\f073"; } .icon-random:before { content: "\f074"; } .icon-comment:before { content: "\f075"; } .icon-magnet:before { content: "\f076"; } .icon-chevron-up:before { content: "\f077"; } .icon-chevron-down:before { content: "\f078"; } .icon-retweet:before { content: "\f079"; } .icon-shopping-cart:before { content: "\f07a"; } .icon-folder-close:before { content: "\f07b"; } .icon-folder-open:before { content: "\f07c"; } .icon-resize-vertical:before { content: "\f07d"; } .icon-resize-horizontal:before { content: "\f07e"; } .icon-bar-chart:before { content: "\f080"; } .icon-twitter-sign:before { content: "\f081"; } .icon-facebook-sign:before { content: "\f082"; } .icon-camera-retro:before { content: "\f083"; } .icon-key:before { content: "\f084"; } .icon-cogs:before { content: "\f085"; } .icon-comments:before { content: "\f086"; } .icon-thumbs-up:before { content: "\f087"; } .icon-thumbs-down:before { content: "\f088"; } .icon-star-half:before { content: "\f089"; } .icon-heart-empty:before { content: "\f08a"; } .icon-signout:before { content: "\f08b"; } .icon-linkedin-sign:before { content: "\f08c"; } .icon-pushpin:before { content: "\f08d"; } .icon-external-link:before { content: "\f08e"; } .icon-signin:before { content: "\f090"; } .icon-trophy:before { content: "\f091"; } .icon-github-sign:before { content: "\f092"; } .icon-upload-alt:before { content: "\f093"; } .icon-lemon:before { content: "\f094"; } .icon-phone:before { content: "\f095"; } .icon-check-empty:before { content: "\f096"; } .icon-bookmark-empty:before { content: "\f097"; } .icon-phone-sign:before { content: "\f098"; } .icon-twitter:before { content: "\f099"; } .icon-facebook:before { content: "\f09a"; } .icon-github:before { content: "\f09b"; } .icon-unlock:before { content: "\f09c"; } .icon-credit-card:before { content: "\f09d"; } .icon-rss:before { content: "\f09e"; } .icon-hdd:before { content: "\f0a0"; } .icon-bullhorn:before { content: "\f0a1"; } .icon-bell:before { content: "\f0a2"; } .icon-certificate:before { content: "\f0a3"; } .icon-hand-right:before { content: "\f0a4"; } .icon-hand-left:before { content: "\f0a5"; } .icon-hand-up:before { content: "\f0a6"; } .icon-hand-down:before { content: "\f0a7"; } .icon-circle-arrow-left:before { content: "\f0a8"; } .icon-circle-arrow-right:before { content: "\f0a9"; } .icon-circle-arrow-up:before { content: "\f0aa"; } .icon-circle-arrow-down:before { content: "\f0ab"; } .icon-globe:before { content: "\f0ac"; } .icon-wrench:before { content: "\f0ad"; } .icon-tasks:before { content: "\f0ae"; } .icon-filter:before { content: "\f0b0"; } .icon-briefcase:before { content: "\f0b1"; } .icon-fullscreen:before { content: "\f0b2"; } .icon-group:before { content: "\f0c0"; } .icon-link:before { content: "\f0c1"; } .icon-cloud:before { content: "\f0c2"; } .icon-beaker:before { content: "\f0c3"; } .icon-cut:before { content: "\f0c4"; } .icon-copy:before { content: "\f0c5"; } .icon-paper-clip:before { content: "\f0c6"; } .icon-save:before { content: "\f0c7"; } .icon-sign-blank:before { content: "\f0c8"; } .icon-reorder:before { content: "\f0c9"; } .icon-list-ul:before { content: "\f0ca"; } .icon-list-ol:before { content: "\f0cb"; } .icon-strikethrough:before { content: "\f0cc"; } .icon-underline:before { content: "\f0cd"; } .icon-table:before { content: "\f0ce"; } .icon-magic:before { content: "\f0d0"; } .icon-truck:before { content: "\f0d1"; } .icon-pinterest:before { content: "\f0d2"; } .icon-pinterest-sign:before { content: "\f0d3"; } .icon-google-plus-sign:before { content: "\f0d4"; } .icon-google-plus:before { content: "\f0d5"; } .icon-money:before { content: "\f0d6"; } .icon-caret-down:before { content: "\f0d7"; } .icon-caret-up:before { content: "\f0d8"; } .icon-caret-left:before { content: "\f0d9"; } .icon-caret-right:before { content: "\f0da"; } .icon-columns:before { content: "\f0db"; } .icon-sort:before { content: "\f0dc"; } .icon-sort-down:before { content: "\f0dd"; } .icon-sort-up:before { content: "\f0de"; } .icon-envelope-alt:before { content: "\f0e0"; } .icon-linkedin:before { content: "\f0e1"; } .icon-undo:before { content: "\f0e2"; } .icon-legal:before { content: "\f0e3"; } .icon-dashboard:before { content: "\f0e4"; } .icon-comment-alt:before { content: "\f0e5"; } .icon-comments-alt:before { content: "\f0e6"; } .icon-bolt:before { content: "\f0e7"; } .icon-sitemap:before { content: "\f0e8"; } .icon-umbrella:before { content: "\f0e9"; } .icon-paste:before { content: "\f0ea"; } .icon-lightbulb:before { content: "\f0eb"; } .icon-exchange:before { content: "\f0ec"; } .icon-cloud-download:before { content: "\f0ed"; } .icon-cloud-upload:before { content: "\f0ee"; } .icon-user-md:before { content: "\f0f0"; } .icon-stethoscope:before { content: "\f0f1"; } .icon-suitcase:before { content: "\f0f2"; } .icon-bell-alt:before { content: "\f0f3"; } .icon-coffee:before { content: "\f0f4"; } .icon-food:before { content: "\f0f5"; } .icon-file-alt:before { content: "\f0f6"; } .icon-building:before { content: "\f0f7"; } .icon-hospital:before { content: "\f0f8"; } .icon-ambulance:before { content: "\f0f9"; } .icon-medkit:before { content: "\f0fa"; } .icon-fighter-jet:before { content: "\f0fb"; } .icon-beer:before { content: "\f0fc"; } .icon-h-sign:before { content: "\f0fd"; } .icon-plus-sign-alt:before { content: "\f0fe"; } .icon-double-angle-left:before { content: "\f100"; } .icon-double-angle-right:before { content: "\f101"; } .icon-double-angle-up:before { content: "\f102"; } .icon-double-angle-down:before { content: "\f103"; } .icon-angle-left:before { content: "\f104"; } .icon-angle-right:before { content: "\f105"; } .icon-angle-up:before { content: "\f106"; } .icon-angle-down:before { content: "\f107"; } .icon-desktop:before { content: "\f108"; } .icon-laptop:before { content: "\f109"; } .icon-tablet:before { content: "\f10a"; } .icon-mobile-phone:before { content: "\f10b"; } .icon-circle-blank:before { content: "\f10c"; } .icon-quote-left:before { content: "\f10d"; } .icon-quote-right:before { content: "\f10e"; } .icon-spinner:before { content: "\f110"; } .icon-circle:before { content: "\f111"; } .icon-reply:before { content: "\f112"; } .icon-github-alt:before { content: "\f113"; } .icon-folder-close-alt:before { content: "\f114"; } .icon-folder-open-alt:before { content: "\f115"; } |
| URL | http://zero.webappsecurity.com/resources/css/main.css |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | max-age=2678400 |
| Request Header - size: 277 bytes. |
GET http://zero.webappsecurity.com/resources/css/main.css HTTP/1.1
Host: zero.webappsecurity.com User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0 Pragma: no-cache Cache-Control: no-cache Referer: http://zero.webappsecurity.com |
| Request Body - size: 0 bytes. |
|
| Response Header - size: 347 bytes. |
HTTP/1.1 200 OK
Date: Mon, 14 Mar 2022 07:13:42 GMT Server: Apache-Coyote/1.1 Access-Control-Allow-Origin: * Accept-Ranges: bytes ETag: W/"15037-1360116138000" Last-Modified: Wed, 06 Feb 2013 02:02:18 GMT Cache-Control: max-age=2678400 Expires: Thu, 14 Apr 2022 07:13:42 GMT Content-Type: text/css;charset=UTF-8 Content-Length: 15037 |
| Response Body - size: 15,037 bytes. |
.btn-info {
background-color: #0098D8 } /**************************************** Menu top ***************************************/ .top-menu divider-vertical { height: 57px; } .top-menu .navbar-search { margin-top: 14px; } .top-menu .label { margin-top: 14px; } .top-menu .nav > li > a { padding: 18px 10px; } .dropdown a.btn { color: #ffffff; } .dropdown .modal-footer { padding: 7px 15px; } .dropdown-menu .modal-body a { padding: 3px 0px; float: left; clear: none; } .dropdown-menu a.link-modal { padding: 3px 23px 3px 0; float: left; color: #4572a7; } .dropdown-menu a.link-modal:hover { color: #4572a7; text-decoration: none; } .navbar .bar-root { margin-top: 10px; } .navbar .bar-root .dropdown-menu a { color: #999; } .navbar .bar-root .dropdown-menu a:hover { background: #222; } .navbar .bar-root .dropdown-menu img { border: 1px solid #888; margin-right: 4px; } .navbar .bar-root .label { position: relative; top: -9px; } /*#####################################################################*/ body, html { height: 100%; } .wrapper { min-height: 100%; height: auto !important; margin: 0 auto -121px; } .push { height: 147px; } /*#####################################################################*/ div.item img { width: 940px; height: 401px; } /*#####################################################################*/ .content { padding: 40px 60px 40px 60px; min-height: 100%; } /*#####################################################################*/ .row.divider:last-child { margin-bottom: 40px; border: none; } .row-divider { border: none; margin: 10px 0 21px; border-bottom: 1px dotted #0098D8; } .content-divider { margin-bottom : 10px; margin-top : 10px; border: none; border-bottom: 1px solid #0098D8; -webkit-box-shadow: inset 0 16px 8px -20px rgba(0, 0, 0, 0.4); -moz-box-shadow: inset 0 15px 8px -20px rgba(0, 0, 0, 0.4); -webkit-mask-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0), black 20%, black 80%, rgba(0, 0, 0, 0) 100%); -moz-mask-image: -moz-linear-gradient(left, rgba(0, 0, 0, 0), black 20%, black 80%, rgba(0, 0, 0, 0) 100%); } /*#####################################################################*/ #nav { margin-bottom: .5em; } #nav > #pages-nav { padding: 0; margin: 0; border-top: 1px solid #A1A1A1; } #nav > #pages-nav > li { position: relative; top: -1px; float: left; padding: 0 40px 0 0; margin: 0; list-style: none; border-top: 1px solid #A1A1A1; } #nav > #pages-nav > li:last-child { padding-right: 0; } #nav > #pages-nav > li > a { position: relative; top: -1px; display: block; padding: 15px 5px 5px; color: #888; text-transform: uppercase; border-top: 1px solid transparent; cursor: pointer; } #nav > #pages-nav > li > a:hover, #nav > #pages-nav > li.dropdown.open > a { color: #0098D8; text-decoration: none; border-top-color: #0098D8; border-top-width: 1px; } #nav > #pages-nav > li.active a { padding-top: 12px; top: -2px; color: #0098D8; border-top-color: #0098D8; border-top-width: 4px; } #nav > #pages-nav > li > a > .caret { position: relative; top: -2px; margin-left: .5em; } #nav .dropdown-menu a:hover { background-color: #0098D8; } #nav .dropdown-menu > li > a { padding: 6px 12px; } #nav .dropdown-menu i { margin-right: .5em; font-size: 14px; } #nav .dropdown-menu::before { content: ''; display: inline-block; border-left: 7px solid transparent; border-right: 7px solid transparent; border-bottom: 7px solid #CCC; border-bottom-color: rgba(0, 0, 0, 0.2); position: absolute; top: -7px; left: 9px; } #nav .dropdown-menu::after { content: ''; display: inline-block; border-left: 6px solid transparent; border-right: 6px solid transparent; border-bottom: 6px solid white; position: absolute; top: -6px; left: 10px; } /*#####################################################################*/ #welcome { padding-left: 90px; text-align: center; } /*#####################################################################*/ i.icon, .slash, i.icon-middle { margin-right: 5px; color: #0098D8; font-size: 18px; line-height: 18px; } i.icon-middle { font-size: 20px; margin-right: 10px; line-height: 30px; } /**************************************** Footer ***************************************/ .footer { margin-top: 0; line-height: 12px; border-top: 1px solid #292929; } .footer-inner { padding: 15px 0; font-size: 12px; background: #111; color: #999; } .footer a { color: #999; } .footer a:hover { color: #FFF; text-decoration: none; } .extra { border-top: 1px solid #E5E5E5; background-color: whiteSmoke; } .extra-inner { padding: 20px 0; font-size: 11px; } .extra span { color: #666; cursor: pointer; } .extra h4 { margin-bottom: 1em; font-weight: 400; } .extra ul { padding: 0; margin: 0; } .extra li { margin-bottom: .6em; list-style: none; } /***********************************************************/ .hero-home { background: url('../img/online_banking_hero.jpg') no-repeat; color: #0082D8; position: relative; } .hero-home p { color: #0082D8; } .large-btn:hover, .large-btn:active, .large-btn.active { background-color: #5BB900; } .large-btn { font-size: 24px; padding: 12px 32px; font-weight: bold; margin-top: 15px; background: #65C31F; color: white; border-color: #57AF17; font-weight: bold; } .text-shadow { text-shadow: 1px 2px 5px black; } .btn.text-shadow { text-shadow: 2px 1px 1px black; } .feature-description { border-radius: 15px; padding: 15px; position: relative; background: #383838; } .margin15 { margin-bottom: 15px } .margin7top { margin-top: 7px } .margin20top { margin-top: 20px } a.actions { padding: 4px 9px!important; border: 2px solid #A1A1A1; border-radius: 4px; font-size: 11px; line-height: 1; margin-left: 20px; text-transform: uppercase; margin-top: 10px } .accordion-heading { background-color: whiteSmoke; } .footer.fixed { position: fixed; bottom: 0; right: 0; left: 0; } .carousel-caption.custom { top: 0; width: 200px; background-color: rgba(0, 0, 0, 0.8) } .item > img { margin-left: 230px; } .carousel-control.custom.left,.carousel-control.custom.right { font-family: 'Helvetica Neue', Helvetica,Arial, sans-serif; background: white; border: none; color: #2F96B4; top: 50%; } .carousel-control.custom.left { left: -50px; } .carousel-control.custom.right { right: -50px; } .button-large { font-size: 20px; padding: 20px 50px 20px 50px; } .carousel-btn,.hero-btn { position: absolute; border-radius: 15px } .carousel-btn { bottom: 80px; left: 27px; } .hero-btn { right: 130px; top:35%; } .signin-controls input { padding: 8px 15px 8px 50px; background-color: #FDFDFD; width: 255px; display: block; margin: 0; box-shadow: inset 0 0 2px rgba(47, 150, 252, 0.8) } input.login { background: url(../img/user_login.png) no-repeat; } input.password { background: url(../img/password_login.png) no-repeat; } .account_summary th { color: #AFAFAF; } .account_summary tbody tr:last-of-type{ background-color: rgba(3, 152, 252, 0.1); } .account_summary .activities { text-decoration: underline; } span.headers, span.link { cursor: pointer; color: #333; } span.link { color: #08C; text-decoration: underline; } #account_summary .accordion-toggle { text-decoration: none; } .top_offset { padding-top: 70px; padding-bottom: 20px; } div.pictured { position: relative; } div.pictured i { position: absolute; top: 1px; left: 1px; font-size: 18px; background-color: #E5F2FE; padding-left: 13px; padding-right: 13px; box-shadow: inset 0 0 2px rgba(47, 150, 252, 0.8); border-top-left-radius: 2px; border-bottom-left-radius: 2px; padding-bottom: 7px; padding-top: 7px; color: #2F96FC; width: 16px; height: 22px; } div.pictured textarea { box-shadow: inset 0 0 2px rgba(47, 150, 252, 0.8); } hr.wide { margin-bottom: 30px; margin-top: 30px; } /* Sidenav for Docs -------------------------------------------------- */ .bs-docs-sidenav { width: 228px; margin: 30px 0 0; padding: 0; background-color: #fff; -webkit-border-radius: 6px; -moz-border-radius: 6px; border-radius: 6px; -webkit-box-shadow: 0 1px 4px rgba(0,0,0,.065); -moz-box-shadow: 0 1px 4px rgba(0,0,0,.065); box-shadow: 0 1px 4px rgba(0,0,0,.065); } .bs-docs-sidenav > li > a { display: block; *width: 190px; margin: 0 0 -1px; padding: 8px 14px; border: 1px solid #e5e5e5; } .bs-docs-sidenav > li:first-child > a { -webkit-border-radius: 6px 6px 0 0; -moz-border-radius: 6px 6px 0 0; border-radius: 6px 6px 0 0; } .bs-docs-sidenav > li:last-child > a { -webkit-border-radius: 0 0 6px 6px; -moz-border-radius: 0 0 6px 6px; border-radius: 0 0 6px 6px; } .bs-docs-sidenav > .active > a { position: relative; z-index: 2; padding: 9px 15px; border: 0; text-shadow: 0 1px 0 rgba(0,0,0,.15); -webkit-box-shadow: inset 1px 0 0 rgba(0,0,0,.1), inset -1px 0 0 rgba(0,0,0,.1); -moz-box-shadow: inset 1px 0 0 rgba(0,0,0,.1), inset -1px 0 0 rgba(0,0,0,.1); box-shadow: inset 1px 0 0 rgba(0,0,0,.1), inset -1px 0 0 rgba(0,0,0,.1); } /* Chevrons */ .bs-docs-sidenav .icon-chevron-right { float: right; margin-top: 2px; margin-right: -6px; opacity: .25; } .bs-docs-sidenav > li > a:hover { background-color: #f5f5f5; } .bs-docs-sidenav.affix { top: 90px; } .bs-docs-sidenav.affix-bottom { position: absolute; top: auto; bottom: 270px; } /* Responsive -------------------------------------------------- */ /* Desktop large ------------------------- */ @media (min-width: 1200px) { .bs-docs-container { max-width: 970px; } .bs-docs-sidenav { width: 258px; } } hr.gray-dotted { border-bottom: 1px dotted #D9D9D9; } .blog { padding-right: 30px; } .blog > div { padding-left: 10px; } .blog p.date { text-align: right; padding-right: 10px; } button.signin { margin-right: 5px; border-radius: 20px } button.signin > i { padding-right: 10px; } .accordion-inner form { margin-bottom: 0px; } .board { background: white; padding: 3px; box-shadow: rgba(0, 0, 0, 0.3) 0 1px 3px; margin-bottom: 25px; -webkit-border-top-right-radius: 4px; -webkit-border-bottom-right-radius: 4px; -webkit-border-bottom-left-radius: 4px; -webkit-border-top-left-radius: 4px; moz-border-radius-topright: 4px; -moz-border-radius-bottomright: 4px; -moz-border-radius-bottomleft: 4px; -moz-border-radius-topleft: 4px; border-radius: 4px 4px 4px 4px; -moz-background-clip: padding; -webkit-background-clip: padding-box; background-clip: padding-box; } .board-content { display: block; height: 100%; -webkit-border-top-right-radius: 3px; -webkit-border-bottom-right-radius: 3px; -webkit-border-bottom-left-radius: 3px; -webkit-border-top-left-radius: 3px; moz-border-radius-topright: 3px; -moz-border-radius-bottomright: 3px; -moz-border-radius-bottomleft: 3px; -moz-border-radius-topleft: 3px; border-radius: 3px 3px 3px 3px; -moz-background-clip: padding; -webkit-background-clip: padding-box; background-clip: padding-box; background: #F3F3F3; background: #F3F3F3; background: -webkit-gradient(linear, left top, left bottom, from(#FBFBFB), to(#F3F3F3)); background: -moz-linear-gradient(top, #FBFBFB, #F3F3F3); } h2.board-header { font-weight: normal; letter-spacing: -1px; padding: 5px 10px; margin: 0; text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.2); font-size: 24px; line-height: 36px; } .board .table { margin-bottom: 0; border-collapse: collapse; border-spacing: 0; } .board .table th, .board .table td { font-size: 12px; padding: 5px 20px; font-weight: bold; border-bottom: 1px solid #DEDEDE; } .board .table thead th { vertical-align: bottom; } .board .table td { border-bottom: 1px solid #DEDEDE; border-top: 1px solid white; padding: 5px 20px; text-shadow: 0px 1px 1px white; } .board-content .control-group { margin: 0px; padding-top: 10px; padding-bottom: 10px; } .board-content hr { margin: 0; } article form { margin-bottom: 0 } #nav > #pages-nav > li.active div { padding-top: 12px; top: -2px; color: #0098D8; border-top-color: #0098D8; border-top-width: 4px; text-decoration: none; } #nav > #pages-nav > li > div { position: relative; top: -1px; display: block; padding: 15px 5px 5px; color: #888; text-transform: uppercase; border-top: 1px solid transparent; cursor: pointer; text-decoration: none; } .number { margin-top: 6px; width: 40px; height: 40px; font-size: 28px; font-weight: 600; text-align: center; line-height: 40px; color: white; background: #08C; border: 3px solid white; box-shadow: 1px 1px 3px rgba(0, 0, 0, .4); border-radius: 40px; text-shadow: 1px 1px 2px rgba(0, 0, 0, .4); } ol.questions > li { padding-bottom: 12px; font-size: 15px } div.disclaimer { border: 1px dashed #0098D8; margin-top: 10px; padding: 10px; } @media (max-width:979px) { button.signin { margin-left: 15px; border-radius: 20px!important; } } @media (max-width: 260px) { .nav.float-right { float: left!important; } } @media (min-width: 261px) { .nav.float-right { float: right!important; } } |
| URL | http://zero.webappsecurity.com/resources/img/main_carousel_1.jpg |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | max-age=2678400 |
| Request Header - size: 288 bytes. |
GET http://zero.webappsecurity.com/resources/img/main_carousel_1.jpg HTTP/1.1
Host: zero.webappsecurity.com User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0 Pragma: no-cache Cache-Control: no-cache Referer: http://zero.webappsecurity.com |
| Request Body - size: 0 bytes. |
|
| Response Header - size: 349 bytes. |
HTTP/1.1 200 OK
Date: Mon, 14 Mar 2022 07:13:43 GMT Server: Apache-Coyote/1.1 Access-Control-Allow-Origin: * Accept-Ranges: bytes ETag: W/"78506-1358497020000" Last-Modified: Fri, 18 Jan 2013 08:17:00 GMT Cache-Control: max-age=2678400 Expires: Thu, 14 Apr 2022 07:13:43 GMT Content-Type: image/jpeg;charset=UTF-8 Content-Length: 78506 |
| Response Body - size: 78,506 bytes. |
����JFIFHH���ExifMM*V^(1f2x�i��HHPaint.NET v3.5.102013:01:16 15:54:06������(HH��XICC_PROFILEHLinomntrRGB XYZ � 1acspMSFTIEC sRGB���-HP cprtP3desc�lwtpt�bkptrXYZgXYZ,bXYZ@dmndTpdmdd��vuedL�view�$lumi�meas$tech0rTRC<gTRC<bTRC<textCopyright (c) 1998 Hewlett-Packard CompanydescsRGB IEC61966-2.1sRGB IEC61966-2.1XYZ �Q�XYZ XYZ o�8��XYZ b����XYZ $����descIEC http://www.iec.chIEC http://www.iec.chdesc.IEC 61966-2.1 Default RGB colour space - sRGB.IEC 61966-2.1 Default RGB colour space - sRGBdesc,Reference Viewing Condition in IEC61966-2.1,Reference Viewing Condition in IEC61966-2.1view��_.���\�XYZ L VPW�meas�sig CRT curv
#(-27;@EJOTY^chmrw|������������������������� %+28>ELRY`gnu|����������������&/8AKT]gqz������������!-8COZfr~���������� -;HUcq~��������� +:IXgw��������'7HYj{�������+=Oat�������2FZn������� % : O d y � � � � � � ' = T j � � � � � �"9Qi������*C\u����� & @ Z t � � � � �.Id���� %A^z���� &Ca~����1Om����&Ed����#Cc����'Ij����4Vx���&Il����Ae����@e���� Ek���*Qw���;c���*R{���Gp���@j���>i��� A l � � �!!H!u!�!�!�"'"U"�"�"�# #8#f#�#�#�$$M$|$�$�% %8%h%�%�%�&'&W&�&�&�''I'z'�'�( (?(q(�(�))8)k)�)�**5*h*�*�++6+i+�+�,,9,n,�,�--A-v-�-�..L.�.�.�/$/Z/�/�/�050l0�0�11J1�1�1�2*2c2�2�3 3F33�3�4+4e4�4�55M5�5�5�676r6�6�7$7`7�7�88P8�8�99B99�9�:6:t:�:�;-;k;�;�<'<e<�<�="=a=�=�> >`>�>�?!?a?�?�@#@d@�@�A)AjA�A�B0BrB�B�C:C}C�DDGD�D�EEUE�E�F"FgF�F�G5G{G�HHKH�H�IIcI�I�J7J}J�KKSK�K�L*LrL�MMJM�M�N%NnN�OOIO�O�P'PqP�QQPQ�Q�R1R|R�SS_S�S�TBT�T�U(UuU�VV\V�V�WDW�W�X/X}X�YYiY�ZZVZ�Z�[E[�[�\5\�\�]']x]�^^l^�__a_�``W`�`�aOa�a�bIb�b�cCc�c�d@d�d�e=e�e�f=f�f�g=g�g�h?h�h�iCi�i�jHj�j�kOk�k�lWl�mm`m�nnkn�ooxo�p+p�p�q:q�q�rKr�ss]s�ttpt�u(u�u�v>v�v�wVw�xxnx�y*y�y�zFz�{{c{�|!|�|�}A}�~~b~�#��G��� �k�͂0����W�������G����r�ׇ;����i�Ή3�����d�ʋ0�����c�ʍ1�����f�Ώ6����n�֑?����z��M��� �����_�ɖ4��� �u���L���$�����h�՛B��������d�Ҟ@��������i�ءG���&����v��V�ǥ8��������n��R�ĩ7�������u��\�ЭD���-�������u��`�ֲK�³8���%�������y��h��Y�ѹJ�º;���.���!������ �����z���p���g���_���X���Q���K���F���Aǿ�=ȼ�:ɹ�8ʷ�6˶�5̵�5͵�6ζ�7ϸ�9к�<Ѿ�?���D���I���N���U���\���d���l���v��ۀ�܊�ݖ�ޢ�)߯�6��D���S���c���s���� ����2��F���[���p������(��@���X���r������4���P���m��������8���W���w����)���K���m����C ��C ����"�� ���}!1AQa"q2���#B��R��$3br� %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz��������������������������������������������������������������������������� ���w!1AQaq"2�B���� #3R�br� $4�%�&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz��������������������������������������������������������������������������?�@! ���Zi,��Lch�N�p{�PNp[�<�+�>�B?�1?��N+��F@�����c��Ɯ �\CHcW$�<�p �����$�>a�zR�X9=x‸|���3ҜC)����<GjS�ۜ��qh!J�>`I>�����SK������q��ߚv��G��R(��>��?���B�Ӱ l$��4�@y�($�=x�.�r� �Ѡ b08 ޔ�6�������8\6y4#a ��s�5�8PKB)�m���@#;O$��i� �2#�-І�z��z�R��ќ����҅S�H��Q��F���Jh �����Ü�f��#'<�zU0�7$�;s�p�8��Ф�@�ا ����@ � |�\R��8��rT} I'q>�����4HF:�Ҳ��=s�֑�(���N�0i�p"�lz|ݿ�T�p;����F1��-ר)Î1�~��b<�?o��:Hb/#��I��oNh�l�=�i�㞹�: �RF�}Xz�t��:�S��zt�d�+��q֩�FN0;�)AVǠ�"@��iO ��=�c����H�?x�<�Ib� m��2N#���ov������ .{f��{�������A���$�P�&s���sA�Q�GR3(�N�9���8��ʒ��R�H�s�R�u���.�`g�#�Q`BH��M�ހ���w��z�S�p�P�=F�3בJ9���ў0{�E<�x��S����h>�<P�'��� �!z�)�9� �q֫��Q�ǽZn��֫���*����r:~��21�O8�*u��Қ�K?T�)�A9�L���G_ZIRNFOAH:���X}OZV�tn}1H��I��Zv�' ��[��+��4��O,� �t�$.y �J����������S���`.v知7,=z�W@p� ��X0<�t>b@휊]�����$d�\u�Rw��NO�曼c9ڇ��C$��=��z�݆H�nS��Mg,�,z�z�B��q���ub�c�x�}� ��ɎA��u�1���*��8�<u�~���.6�℅�f� �8�^j9�Xӊ�tS-�:����J������ԅ�\� ��݅�G�j����$��lVE��g��Z�r�q�֚�P���j���_���~�R�v�ޕF]P������X���ӕX���9>��_S��} =듸�P��CҠ:��y���J�W�G\u���{S�PR>�=돋Q�-�j�j8��Ga�%; �����%��\rh7Y\���ڹ�}��|��OK��v�9�ީO�-� �pv�O�$W�N�u�(��ޔ�y� 0'?��K��p�:X5�<���r��O�k���Vp3�v�Zг�P�C����m����r:�'�ֶ,��~��\���������J�FI$��Zɐ���V�9�$c�}��b�9<�ƴ ��n;�ֶM2.^PX��c�O#��l�������=����{�N��&8�՛uFp��N2Ek�I�w���H�r0:Ri3E#N���SK��=j��I��\ҩ�܀A㿭dՍ�Lv7b�ߜ3Bp��/cM�w ��=�!�`�V'g!{b�1�r2Ojq ���1O��*�ri8 ��s�qϷjk� �q�s�L�99S�4rs�8�ϥ-�������CҐ}nj�?����b�<u�魍ŏ������s��1�Qڐa������t���!v�Ӝt�H�t�~����1�;�H�3�G�1�{�����>� �#��Mn8�'-�!���d�ڍ��#*;��C��/�Fs�=(Pq�3�^���9��n��lҡIJi��$�4�����77N��� qܓޓ\�y�⇰��n�x��9�r� !@FGB)A88$��B�8�c� r�R��G$})O�=8�� ��g�Jw|�r8� ���4��+DZ�O�@wd��&�3�4�K>�=idž?/^�ҋ��B��ւG�?��+����)�u���$sM�p�H��I�r2��gh�ԛ�Ie�J6�����3#y��Ҝ����~=i��˞Grx���b ��)ÚnpNq�aG�!䀁�9�����}=)s��nH���n�V �88����rz��RrF1��@��}OaN�8��,{�9�8)��ǭ/ dsD&J���My�����B�.@bZT���j��/���֣ld�'�z�h�y�#8�:��@�h�'��+��ߍLQG^�y��9��1I�a�n�\�4���:ZU��@�✤�I����$ �=8�oL6I⃟^��)q끞M?QvF:���c���RP��Ӟ���OnƤ!A'�/]�#ʢ���'=�7t�2?<�*\�U���w����A���Wg�n�F~^�4�v0H#����r���r��J[�A����U|��RJkL�Ϲ�u��\��#�+�c����R2����<����j}����[9#v4��q��#�Us�pzdҬ�$u���� �a����$c'#��Y�pc�EX�� 21O�.串�i�N��?�z�_r���`Ա7<~4�QXp�e���9��Ո�N���Ӝ����S��e:1'(G�Ud����[�1�_�S��G�J���i!?)�#�{Pzᶞ:Ջ�0��9\pz�'���;U\v����q�9=�iT���#4�s�i�����}�K ���Z{�9�x�8,H횧��46x��:f��s�ǿz\��};�Ԁj��?�)8�o����I�qHa��"�����ps�c� ����g�I�� v8RyFO���)41�R��:h�$(\v��cr�j!t����sYsY�Cn@c��M]�;A����k��r����mPGL}*ԯ����%wm�1���g�O�Sk�����ڡ��R?��櫙6G�6��OJ�5K�Vtbx� ���x$�+����fÓ���\�diʺ���v�0x�`�:��F���j-j�pb��\��z��{��)&�:f����O�N�CY7:�%�y�לV%��6T9�3ҳn��q�>�!ݝ���<��2i �w��\�H�ZL��7�SqV���^�`c*=^��fq��N{�5��O e�v��Zذr�9���՜���3�#=;T���p��7OB~� µ,!ڤ����r���n�������*\���#��1Z��>���#�W��\A�?J��r�7͓���ZW�s��{w�t$�$��#��<q�ߠ��@��i��y�;Mt:f�0� �3���#MU�s�5�eⅆA��}8��6�"Qv=�O��1�Z��� ���:��9���7#>j�ӼihG�F� [�����=cD��Fя¸k/��0�u��VFO���ҴU������5� I���z�+�:�g�s��➗��`=*��z���'�=q֠��C)�lUv��P=*A8` b =0hn�,���s����<� �X�g��M �s��R�4�x��G�qN�9�G�!h7N}��J��?�R��1���P�#�a6O��8�R���v����@��� �X�'��H�#�J@ f`A�)�v�m9��ñ!H<�SX��S�ZB�.z��HGF=� 2�t�)�y<dz�'�����G�1�s�����<p8���A �#�8�n�/# 暤6�ӚZH��IR>���1�z{R���:�[C���7qp��<m4tA �C��0=i�rs��F���})T.:Κ~`}OO�8c'�*S�2�r:z�/���\�FpO~�~P8��Zjf8� �L9�<����ѻ�)�X�[�=F� �h' �H ��N$m��"�����X`��<��z88�on��r�H��4�*��g��8�Q��,y����O=}iۈ �A�����r���ZO��n��.тI�>��A`O���J\�`�4['�%���9�H98#�>�(��rI��9�x���N���ߡ�I�1���F =3�;�1�7 A���lT������y���R���(N;�����A��=1֗��O�52��?�<��t���Ln2�й���Ɵ�@������s�C*�$w��=3��sۮE6.��^���c��sMl!�e�����zVv��w����đ�@�w#�1��Q��(2q��������UFH=��O'ˀ@Ǡ�Ck��s������3ޠi��z~���8�$�*�D�(np~n��/��ǎ~��p'��D�(�du�u Q,�pq���4����G`j��nݸ����#78�Y:�娲y���ǧ�?ˀ:s�Z ��n�P�J�s1l���uIiW���L�>�?JF��2����m�\�@ �Ԃ+RM�Ѐ;�m�7�"�B�!}F+f*�4�EӶx5͜�9�$tǥm!&��8� |���L��s��8��f�O��n*�п�Tc#ҳuj�Z�i����I��� 9�^!��q9�i�e�W�}*f��\�dq�ږ;�V*��T<�g�H�sMVSb��H'�z֕��L���$�+g�Z6.p��\k܇L��^�1�5r�'�j³�rW�Z6gp�O��l�" $�~3������j��R7x�3�����'�5���RT5$�A3�f�\�6��4�0���N8�M�EْA9��T��8�����ppED�Crx�r�@���C8S��5.G(��� ��J������R���{��3�2ke+�Z>H���E�c�zps���&A8�q�~������P��u�?x��vy����r <�jZ��u ;���yu�F}�X�e�{�W=����F:b���RWu|�gc�qUS@9n=z�\���a�[�ֱ.u�V�ϡ��GU�A�X�;=O$|�ȭ�WvFH�Ҽ��Y��I_z贽P˸j�U��Gp���r뚂k���l�1'�b�8$dq��n��d>[��<v�C5{X�#�!�-q^#բ�~|Vf��0$>���rڞ��6<�`�=kI�CH���u s��:sڹ��%���g��w�N�$<�z������ta�9�Z&�#�O. ����&��c�G�z��]���*#3�9z�H�#��.vY�O�:0GJ�\���˭6�D��Tg��Y��!�)����9��p�9[R:�23��J��6H�=�Ixfe,���~ubѲ����T��;�o�cH�� ּD+`�\���@F�W�I�E�ʲ�І����Ε�U����y�CqӯJ�K�@�\�����s�L�[`l�y��/���=O��g��*r�<՛.��"PN};�U95�a����"�[�ӹo(na�������n���As�[��Y�$zVu��m���y9�R���}����'i�=ET�P��n]H� �^�=�������W����?���Y3PrA5�xs�I) r#�:f�=<��;����]�Ɇ��A��M�D:q�z����įᗞ�z�Wb�9��J�=,�Y�����2V��$l��.��\�tBVv;K]O��ןzճ�V!��au�b3��3��5��ީ�H�#�\g��*�a�����MY�q�'���K[�@���z�Q�nq���T�-#Y~���+~�9'��E�&3��J~�T�������`�m�چ�ۏ9�n0�~��q�с��N�'?@)�~l��� 1�0bs��Z^CCH����R�w-�'4r1Ȥ~sӧ^���Wzp9��H��Oa�J��8�!<g�꾔i�����i��8��� ��\�i?7aޒ�08��) z�oj:� ����ZN�`bN3�AH�끞��=�\ӆ��7~i0Þzf�5P�jq8B�4�[��lQmCr�y �>�ԣ"NXr8��bI�ܑ��Zr�pq�դ@2�pO�0)�9�c�10T�;�{w��+��~�/ �I#�_�@q�Fi�>Ps���R��N��@1C3�p��7)���ѷ�I�q���?��� �FrA��(t�B�b��ɥQ����� đ�qߧz\���S_s73�Әd��;`�^~�i�F3��J��1���ƀ�c�f�+�����8\��(e��qO�<�F^��c8�}:Q���OZQ�)_���0 �)��� �r3J��iF��)�z�8��r�s�L.�-����9ɤ$��s�>�6�bL�c�R���#���S0��#�=1B.�s�ƞ��BE���qۊq㩦�`.��Mvڤg��`$`��k�#��ب���=�#ˀ�'�z�Jð�|�=}Gj�wn���R�c���;㩧���� ��A�Us�����������U� �u���;w6y'�`+ U��N��{T.�v�Ǟj���N8� KH�'��v�%P��V���B2�d��[:b�6��"��m��eTt����@*3یQ�D�c"=&20���J��(T2����o�`�zV��@ v�2uˮ���⤏Oh�r����j)-�$�hpA����;� Ւ���ҵ�>��\S��r�s�ڧ�9��]i�[G务�!S��8��[sj���To�B�`篭e(#X�9 �G$�q֡6�I%>��tm�QԚ��%�yȬyQ��rKq��W9�U|�e �pO_A[s@P�O�:~5D�W� fᦃL�d�U���>��o�Q���O�Q�3�=}j�� �Oֲ��ZW6�ۨYD�pA���>��g��H ^;��VX�U��~F���C�98�ZF�V��6�ծѓ����'�[x��Es�\ʄ-�inu ��A�bj���N�������>+��zs����j�>c9S랕f;� �9Q�}*c�w�n����� �)��+�Ny��;�5��~fa�8�5?��w���j�Z�R�[i��H9���@�*pN�`)���I��T2p��X0/�iS��3֫���@�V{��z�Jw�5mi��$t�.����EYR�H�S�!�q��x�A�]Q��p �ָ�N� �{�W�1�á'��|JH����V]M��;ķ�+n�k�7�$�|��@�5����\��_3r��H�ef��w: >�#]��y��RI�\+9 ���L.03�1��+ �B�GN=)-:����eʜp{�u�����02:ֳ�i��c�2*��Y��\�g'��i���\�X_ݩ�G�:)����L��qҺ�:�;����H��.x���Rw�ᴋfE,~W2:~u�m �0����i�4XhrA�#�1���a�'��7t �S�Ԓ<�[V��U�f;���s[��~�V���[��@Rب��!=:V���rrIɩk����9t%����#b2�z��*��x�W��s��G+��ߊ�ul�Q*�ȩq9k�!FR8�MP��p������B�i#��x�W���8愣'b�Ι�u��ꎥr�w3v��k���@~�q'�Bh�S��z�5j�k}M;��/�\�ֳo��Ơ�As�9��I[���GJ�F�e;���pi�[M+�0X�ƺ=;C�t��O����QC�Y8��{T��7A��H�U9��Ҽ:c s���Y��v3��oF5���1eF8<�^Rv!���xp0�=+V���J�.v�Oм5�5���M.�~�c�济���ϡ�x9cP����=m�`S��W��(��Q�{W#�F�:�ڳ�O�R�.c��*U%��ҭi��I0���\,[���VZ�F�K�`��;i������r8�miWa��O=~��:^�$�j� ��C� P���Ш�fl��z ��b��ԓWbq��G<��t۰ʿ0q�k[�G�I�:v������&�$��敉��8��T��BaX.9�^�'�9�$���C�=y�y�,���Y��c#�ooƢk�;RuP�j����8���RN1�:���z�I��k�c�O�In5�e#>��cJ0N++�rF;�Tm�bBK�����,k�A8��Lc�uzVO������=��^��a���Yl�f�57ez�w��Y��lu�5N�xlS�S��mw�=�D����0`���(��#=�$r�/l�:Ո��>S���j���G\����kr~W =*�٣`Fz�8��8�����1s"�<s���� ũ���8<��zRJ�8''"��!N7Oh�Xs��>_�K&2�ךNI۟��V�ăړn�#�q�˓�Z[�� ����$�jdm���<S�$��ҝ�+�8�t�c��M �$�sK��<�ҁs�qڜ3�ױ���3� �7sC%�#��:�ql��=x���nj�8�X��P�1�� �~���?�5����: y�I�zP����9b~��c�i����8�)$�}����qc��8��#0�y����c�=sN�e?.=�Z����T@[��=(R ^��;rǥ@A�o�J��3�?R0����e` ���Q�!��`ݏ�@�d���9#�#���8'�)Tg���S-!���Tѫ�'�ӭ�?�'�CV�2w��Nk L,D0.^��I;r?K�x�� j{x�������J%arI#Js�1P;�:V��=3�r)Y&㎆�1��gp8�F�RL�� j�^C��ӽDВ���R���<G]�#?Z���n�q��M��`��+f�E��A>��cds�ݗ6$s�jUq�O�Uن�֫^Α�}+}-����y�j32n���Eަc��|��:�x;�Y�j���Wi �;Z���1�����#�TRꀜ�${Vni��3j��3Ԩ�U9dV ǩ�w��2;����w5�����b�o$t�j�� ��t"��^s��Pel z��\I�'#�8�i$e�뎽*�D��A�5���M2�N;��$���ћ��C�:u�qx�[�㚃W�t,eM��z�'��c~�#Ҹ''{#��;k+ĕb� ���וZx��;�1|���4mad(��n��i95�\�R� ��j��"2����E�DT�q�梑ö�I�V����2� ]�b��X�9��(�ӵ�\�c֭��(,����@�#��pz�U��r�Ϻ�g!�x�j�m�+���M������'ץXI���8��;i�lքNpT��ס��s�״�##'���_��!}��[b���d�h;��Z���i���9���U�L��t�z��`d�nj+�\)'8�v�*��;�:�����H�p#���=�����#�1X����I!����8�}����4�W<s��9���+!-�B��Z��G����m�;��S�ML��4��j�oR��E��,�`��5WP��`C�ˎ}A�Co jE��s�To�?��'Npy5<����6�D�Ha�w��+�c��'��xoXi �=�Ӵ��e�ԏn�|���4tX$� ��rq]&�h2��{~�am2��;� t1�" ���h�]L�Z `��B��VN��O�[i{ֆ�8�H`3��¹�nu.�*��bH�!��c���M�4�Y� �,k��gQ)S&H�ɬͬ��i�1��l�;I���#��S�Ce}5�c����m�s��(^8'֝����u�g.~`?�X�]a-ٺv�svw�GȕH�hԵy]v�\���݁[\���'�ps��#Z���`�9����G|��NՏ�@ +eO͚��ݜM�O�?�=�5!,����� t�5���9p���R�X���r:��h�?2^��:u�c�x��趸���Q+�;�VjU"�����ksM���Sv��²Z�(�{�:�Ӑ���Fzҍ6��]���B����]n�kH���{�ô�>\`�'���5x� �C�We8#�l� M��l��Q�J<'?�UV�S��H�Oz�}w ��|��+f݈�P ��<���Z�Ƅ�;��\F#%��ץyg���t�m峀=+����I#����eǙ���珮�IrDg OZ���5�]�������������a�֢�)�k��BQH�/���<��ӟ�Ú�u�95�Z6�s�<M�c����ZNc����5�VJ.撚h�}#S��ٵԷ�<�\e�Sā��g5� � +�9��c����:���F�=)�|���zW?-�T&#���TV����ܑ��K�]Վ��{���f� �3+��ұooYb,��w�5�����G��d�,,tk��&��)��e�X�u�Yy�j�؝�"��hgX���>c����1�P��T�Ĭ<�}��Q]��'-�����z\i<گά�����=���~c�q��� }LF>�`���T���?�3��?i+ ����l?7�S��˂7s��߽y����A�;�4 q��`/�jY���m�0e��g�.�_J�{?��*�9�kgLח$����4C�=_O�^��l��h�=��|9�+>D�ד]U��DX�S[�Ů�mXy�d�a��@ ���H����z�qϮA랢��1U�Q�)��Q�<``�R@m鎸�9�;�>��LCI �7\�B��I�����.I��8�1�x$��v�\����3��pzr8�����l��L�t�;89'�2=)���pۥ�{���� a��3�R��`�{�K�Gz�r�H�(@8`)�s�4�ـ�(\�6�JP2{n����|�tR�\�c��h?|��#+��9��� ���.3����h�.��9��2h�}zd}�SOp21N�[�^ԤrGO�S2O>��` YN;�J8�q�:��֜���D̓���d�*�͓�u#�K9��y<�k������fˊ#�?��5n�c��Vr6��=�oi�� �<g5�)ݚX�m21��8�(��;y8�S;AL��=�n�z�rz�t@aL�r9�p,9����x�Ud��?�jn4�4c��{�#�[����f늣`��9���c���AU9��Ҝ�23���Tў�����X�9�(�(��sZ8{Ws�x��0�)�s�^���J�2zc=�e\Z�\�����3T�,G{"�2��u���)��u��BI�cY�Gr3g�No�j���Mp�Y�s�Wf�E� ǵ4r�q��Y�HQ�r:Vm�5H�`!���4*}}qW�{��:w譲6���S˨�e��3`w"�X�N�r=kz+M�ALm=���'�>N��T��C�c��̖��9�֕m���Wۯ��6�'h���*���1m��>�r�ωH��8�M���'�����H9=�9Lj���99���<���%L��$W��$��oq^��@�H��θ[f*O�H��2��~�e)YXᡷ.0 '��[�Pc'4��/�i�+K]��)<�����,d$�Ԏ l��H==}Nk"*��;��KN_߀���Qz؉msb��#�S��J� �W�tD����We1�* ��I���S��UC�0@��r�\�Nx9>��x���@�CQ;� zڰ�lˋ�z w2��>�֤.J�3�?�bY��>�����eFx��f�KF9628�m8��x��q��1�<��~�~�Qcw �bR��2�ή�Q�l��Y�#dq�+���'���?�ڴc�P2��8�� ��խs?e�����r�LqS�l��ߊǵ���sܠNx�^��I�1��-随m�.:�I�XBye��u�"�p@Q����[��Ϟ��k9<chee�H���4���l��o�Y$��qҲ�4�$����Z�?��yH�Y���om�?�����H��Ze�4��A(�x'=��8�Y7�:���$r8�Ao�Ms�x$��/���}��:)$�Q�{U�*�A16��S[��L��.�x���e2�Dr3��s����#�6���}�*?�9�qz��&�c�L-����9�s)�whe� �z`~5J��%F��$in�Ȼx=2+J���k#�kk�Z�mt*�~Rɨ����g9=k��EQhsU�鲫[ȼ���*$�~G �s��=��0ǑT�0��&�Q��l��;p�q���b�9�8��� y��%S�������v�F%�J���"���>���:�<Vuź���8�*Fh�� e_Y[�N%/���b�9�-K�Ǘל�)5 �_�9�9���HT��0A�:�h�B��@�p)�X.�7K�J2��`�H�]����H�w��Y��KL�0 iA1++�zJ��Z�Fh��b�<S�5QT �X�uML�6C�G_zͺ���O��Zr�z '��g����U}s��X��M� �&��_/���9��WWFbl�c������=f��JF�s�Է!����l��>���$Ɍ�:⢻�V�z&�w�y�Zʺ�������8��=j�#��#�q�ָh~!i���kkJ���V7 d�j��E���t_�(�(Q�;t���N�D�+�1�P�|]�^H�+ȉ>��>���0<��}�����vg6���T��vc�&�)e]����]�� �!q��9<�F�n\?*r����*��s>�sev�������v6��+ԯP� S�zs��?Y�31t�Ã^n'���oJ��g*�?�X�Ӝ��K�c��֔�$@ ���g�H�0T��+ϕ9Eꎕ$�-_(̬H#�1X�`�S���sQ�jo8' ��ԙ��X�J��w�W���� ���5[�Ls�7V*^�ϒG9�K5ˑ�bG\��}j�-��.K�*\�)�n���syw1 �z�6�!|��H�֛�� �{M�oa�mM���H$p9�*�v��\6s�u��m?RVa�/�ٱ�C��'=)I4=�O<d7��_d�e�=*�2۴d���j9%�I�x��P�[���xgڠ���m3LUB@ �i�H�+�kZ�X�nNq��JSvW)���\�r�PqZ ��0��]�ET�D��<�{SnfE����"�4�d'��kp $��0p:R��@'��J�U��8�ђv����}a�aS��ӷj~v�E^O�M�x���o$u���@�R ��>���s��@�W�Jhm�g<t���A��3M��ȥ��ǿzQ�rr<qK�XR�H��ZO�I ӾE�ŏRA�c�dz�S�ʐ7�&��3�{Ҩ�˔�qN#-��0)� �v����A�I��4&9��<{SI$���9�M_c���Mb������Zi�`�g?JOa�wd���<ԉ�C�:�*$Uc�Ҥ���*��L@��'�>��r}ǿ_�����Bz��r8'�v��)�:��c���# �©�EI��@^k:�b[���к�8��f���\d���ןC�бa'�_�;z�E�1�=z��4�L����X#UB8�k�l�#b�GJ��P���bb�z}*��w��n�լ��������Ҫ��x+>�匸��I�0$>�ֹeQ7cU �H�U��5�铒����Y��ܧ<���A��(���[S���Jz\뭟 ����) {v��+�H����5BCg�+���Q5�J���X�̨J�}*��7'$t�P�d�^ry�ۻ���R��I�� �W�Z��� �Iu�� eN��Qv4�KC��XdgwLV��H��z�l&Q���=i��]g!}��j.��}I .>qש�@+� k��r0�r:Uv����O~��F͢N3��5n(A�o qX�W�0H'=�Z����T]̤�b]C��I����(X�N8��sX���yd������g^�(���zλբ(Ap1�U}R'ÞA�=���z�-J�lu�$ڭИ�Sׯ8�[�̇���*�q�����V�fm�<ם6��Έ�f[Z(��'�T�[�J�s�k2$+��Y�,�w=��PՑ�ԥ�hn�=��I����Ay,aO# s�⪵ϗ��s��PN�%���]:t�n.�c��k���,0�6��^ǭt��(�_j��F���k����� ��9j;>$�n���aF #�Vr��f����;'�G���0���s�X�2��֬[9�A$:��d�_-٣��ۤ�.H���r�6Ռ��wQ@#<@�Es�6�$��g�i��g@�(�rWv�8��RI�^��-��W;��^��ҙ� .U��¯��C����8�:�kɥ��'#j��ڥڨv�$u���\����(H�X��ާ�M��ȍ��/�fa��L�[r�we�8�*Ar���u���ڲ�|�%Ȓ@Kuԥ���:��dr)�=j���"H�9��2�Yd_����NO�j������`b��q8\�֭��#��'��}�R�zWmu�l�z��0̀��;S�{ J�5�[\'��)s"q������}�M��A�J˰��#����uJlVOBm3^���4ș7J���mP� �B8q�^yr�%�� I�-/I�8����a��ɣ)�n���Z"�i�")*2�^k��Ios��=����<+!�O�!�{ה�F�6ws:�*���ⶋt�E�dYU���E:���1��t�q�@�Ι0��p���)��g$��{p��x����x�3�������v��`��Ҙ֎e�y�Wmt�q�)$~�IY�N�5渇�J����������d����m�(��Fx���B�pX��CVav֥�3���ԛ G�x��D˳,A����7�p�3�+99�/֯«Nԗ� �z�N4�����~ ��䈘���V嶹p�6g�#�v�)�F��l'$+\��<��uR�$��8���������R��t���$�'9��?�)@7sҮ����-�nrA��[�]��sr[��1����ƛI�^�zV�����@��� �G��6;)����*E����x��(@�zV���yev��9zͼ�d��X�zR{��<�P���!$t��A��P_�rFk�m<,�1��� $g����#�J�4��v��R}u��4 уF ~�k�<8����̠����G��X��FT��T�nZ����J�^K[��Z;t�գ�8����_Ƴo~!�Z���n�x� ���������r;0�_�j��$hNpGC�V��8��j�%����.�1��[�^U��$^%��`�BI� ^��^�Ą%I8�O��J���?ҦmO[�(r�BY�Vn�dXe�Rs�+�𦷭�b�x�]�&��W��2��J�2�(�b��_V�q!Vlc��s ���]��b&��22+��ų�s��Ƽ괜� �s cĘ�4�"F '��Z���}�N��d{��?±�5HøO'�1���}�>���]A0��Zroʶ�`��!��|�zr5�m~�R�׃֫���s�LԂ�Ɲ����sV=T���q�j_��y��ְ�)��qޘ�B�L�n�ܤ·�Q�1��`���W��oPT���u88�����~��S��hβ��Q�����=p8y�|��"�v���q�d a�t'�J"��JTz+7J-頛���`}��鞴�rWvx�Ԃ0���گZB�=O<W�J��ͱJ4� ���S%��p>��ͭ�d���ո�@�>�V/��0��p!�Rǥ�m�1��ޕ����z��ݙ����&��f 觜�z�R'o<�3�l���(ܤd�A�f� �2���Sƒ��\n�\V�W��T��wqϭ)b�����C��<c�)�G��~keB�-��P� O���SX��]���6Ӏ0���ȋ��s��t��`u��i|�v��bX�g0�m�c��z��'E%�3J�#E'F'�J�q6A\�q�]j>c��S;�=���E�ޣ�5�O�@�ڣ��u� m�<V��E���T��w�i�C9#?�=̈́� �E:��yN ���鋸s"� �i&6���8��}���I��i1�Ol�N��%U�9i�w^�67R7���1�є!W�q��Q�cr��W%L�Z��'g�ݼ��X_\�+r���:v�qҷ"�Ce�t�R���9=��J9{�!�U���/��:�U�����drF��s���=���aT�.Z�$r��e�oJ��r(���zV��st1��;qҜ��yy(CcV-l�c�f$/��w�^�7X�m;�q�����c$z��2���j����6g%��1Q#b�7/�8G�\�s�?J��|-e}EO��?oM��G#H[��q�"*�qS-�Y ݐ} iZZn@3���s��)ԍ�%� t��m��ʩ�v���>���j������WM83���E�A,�ױ�zcz��#��M����s].���_n�c���E\�����_T@�����]���)����Vr$r=k��Rz�e����]�ʏJ���� KzV�!�f"�݊ӟC������Xr�{���}���-�|Մ�H����Y�n��PNTu�?J��E 㜏�j����TW��Gr0z�����O����Θ��{�ekwQ���s�k9�i��6ѡ�=�%�聀#=�����l�Ǧϵd���k�=+ϖ��M�^�mį�5�.��@y�qQ�$�/�p ���>�1pź��k���"n���O<Tr���pO����9�!���c5���/�����j���9�b�������,ڀx��8���Q�-�H�r��x?N���eݫI �G�f�!ę#�Z�u\)��PΈQ� �Vr�����.v�#�X�w"0F} ^hA�z��֎�%��N��Sz"'Q#�L�q����W-�V8���]妌�D7|�q��m12m�;+�a�`��<�S�#Xy608�s�+�Q��+�|F��ۊ���u(���7OZ�ٴ�Z���k`�8$�Ҵқf�]F���� @��*��&g+�9���q:�5��,�=J���*���+���i<�r��>��/F,C�,{��a�K։��3)Q�N+B{��s]?�a��Es>+Ԡ����=��L�"�V����YNN@�)��<�d'>ݫ����j�<18�Xr���D��=p���'$��)\�VH��������8j�kkv�,&أ��Gֻ��M�]-�Ĭ ������0�Z�K�e��P+��I-l�9�%���i�l�$�ѱ�9��R���H~˽�8=������qn4���S�CZ�� l�ی�e줤��MjS�hnl4=F�� yĕ��^_��;{)�n���:�J�[� -�NE ��d�a_*�מ-���cM}�n7�HG*�]*��V�5�p��R�7>9���f%�� �h�%h��p+��gm6J���2O8�����En ��8>���ӊW�� ��tb���>a@��V,4ԍ���GN9�n�T�ہ��V@���$Z��71�d-e��~uN�L���x?�L����w���ސjV�f7/�zMDf��n-��G((�`+�|-�ir�`I�8���'��&�T6�s��U��U~`�m��ZӫЙE���x� �+6��9�A�;���K��x=G�P�5�Q<�4��FZ���.����s�vC�Z�׆�Ց]T+`A]�z$"�r�ch$��ו���S�,�\]^��]R<C8[�Q��t�(l�����'�"�?yi�:���.���C��$�\�s�#�ҕ������|�Z��ּ=e��ӵgE�F����v��{�.[7��ܑK�#��T���Fd�t k�מ�ol�H99��Ceuu<��l6I�W<+��KZ�x`p�8,F҅�BrKvq�f]rܞEe���31 zװ�?5k[r�@��95�>#��ү���?(�{�uiN�Ju#-��Hm�B�h汼M{juX��_��i,sO����m�HW{�p�Ԛ����¯�Y�{$z/��m�;Lm�=1IQ��ib����ϵ` z�|=��3�U��+�ԣ����"WS�� ��W����:xgD��u� �������13���Qѹ��V>:�d�Pj�I2Hq\��yy}pg���u��M�=�{��{���x���ֲu�s�Ӯp:�/���|'���y0��k����ZHT�eQ�z��%�4�w#9��#9��W�l`pz���:�6�fq� -�̥x��w�x׳:��R�դ%T�S,4Y\d� q���S�h7��%s����[)����$(��{�O�Y �r�::�����Vu/��J��] ���� �R�O�m�P�2s��e*���y���J��n1Q��c;�������v��z��Y�Wr�N����)wf&��4`�sڨZ�I�[�L֦���A���f�.�.�,q�錢���Bk?�%88��z�A@2,2j�ݐ�#?(�Ȭ���Iv�� �IlTWs�O0+��w*Ŭ�c����zù�+.��{��,/@m���}�O�c>C��~��<���R���s0j�*����i�����Ұx��eL�&�A*��G��>_߽q���-�!���y�-�e8�Vr�0P�;�.���u�S��k����B��D�"��*��֧�{���U��R1��&�G8 �W�i�"��, >�֜:ޢ�p��~�����t��]�hN��⡒�p8�?��/��3��1ҳS����84}c���=<�^wx棷�C'\�S^w� �\�<��+�K�p# ���g4�Zrv�8(�zť�f��V���'>��x6=KPU�x�Hޠ��lm�?��:⽜>�Ev�*��aa���~Էq��c��Iw�E�E�k(��΅͌Far�⽪8A{ۜs�I����Y��< ���`o��Vmm�uM:[�X�H�j��]���έ4�s�v*q�C�.�n�I@/Ӑ1V���m�a�nDڞ�gk���`�= G�x��R8b����h�ݙ�;�Zs�j����>�Su -a����,~oQ\֣�k�*�[�'OLV>���va��v��'�p��d���V��X�g��5�id&�k(�"��R�^�m0iئG`b�K�fI2��@������S���Ӗ�!�0:��ޝ5�`dz� s^�Ʃutw]8sֵ���#�ViO\� �^�{6{���T2o�o��)҆�Y�,���^1�>�ki+�u<rV��/�A$M��N~ojn����3�����}��V��l���6t\�f�}_���V�� I�o�x�SeO0����5���X���=2}1�,��9�W�]�M��v�I�=Ѽtg�I.��C��v'�m�.w�a� ��J2�E��6�E�0�c!O5J+�m��:���]}�����dV��Q�e�zU�����d��4(U�d�E�7�A>��00�}kϮt�Fȉ�o����x,�(�R����5��ui*�H�T�2�_je��7����v5�6ӆ�#�U���ى�2K���g�,��v��k����c��Ză*r@���j��=zQ�M�;b�6�ˎ��v�"�g�=*K�1��s�Qj���L���O�.P��M�1�s\�x����W��Z�q�WwP3ɮ?Z�3�8��rԚH�cF]Tc>��_j��5#(����eڇy>g��3���?LY�̼���2��t\�pF3�Ҥ:m�S�&�+]"T������0�� 2�#���$��s�9t��[j��+R�ES��>����#�ҵ��Å���1["���2�Ubg$����{��0W�ch�Q� ��Ҷ$X�3c'��o�e�q�D���SB��QG�N+��ڸ#�H�,LM;�#�<RTbޣsf�qX|�@��W�<7�ڈ|�W]r�6R�`w�H7Ĺ&���ֱ<���~x�b�ÞÊ��f:}�[�!GBz�Y*�"�'=ꎻ��%��?�G�F\�N��d"��h�(�j��^==��ےG�e[�\�,�� �kZ)�M1�Ȩ��4��M=��w<�s��A�6Q{b��ڣ�|�UI�}5ם�bs�9�����Faq"������ 3u5�ujF1(Gip���iG<���)��L�Y>V\�f�u���ebx�Aǽy��_^M��嵴�;�L�һ�Qq����ksJ�C�𦞓�]\���?�m��i�Q\)PI$�����C�ӃcO�J��������x$���?+8�ʾ¸�-9b���'b�<I&�t�v���9��8�t>�J�Eo��ifc�Fz-t� �+����U_����ףiΉe�+�c�ޝ�=LjUiZ&���uH��B�M���mm�gE+9�^�]��͔�3�KW-�_���Mq�i6�'�I�L��F�П_jג��V��:�r{"���W������i�#Qֶ$��l���K�n�*�QW|aj<1��ڣ-�ޡ)���bx��9�W��+�Ul�g���b�@���v?Z!M)8NV��Jr�R��Lkm;�7���?p�������V6ڜ:�ŝƒ���ɑ�a��@����!1E���Ks'u$��,�J��{���� �]�C[�H��?����U(B2��� J�G������/iѯ��:�D��$ؒ�摻���ާ�|M�^�mB�+�%����#�sd�'�Vu��'���2]j�O������p1�<j�[�i��Nw7�W��e���Z�]<��x�X�p;��zб�#��n澐����f!�p=+��!�IWi!�k���m�v�l%f*1��4�Nh��)F�>�����<y�l�x�]���TV��#���8��4]f��E"C�^k�Ү�Q�#�\��:Ȏ��C,Ӻ�''��f�K`��8�b��8���5��t�ʏy=��d��Y��5�3gb��{��j���8�Z��<1{�ތBQr8#�zN��4� ʄ�=�kh)nK�g:�]�:� �u�Wg��A���Kɜ@\C��h�vH�d�1�h�*�!��J�nfʅ�"�x�+��W�ڱ���j�@���:�ܲF eDQ�bz}i�� K��-�� 9��H؆w۷#�5�}�$���+?<J��&��/0�mׯ-�)9� :k�Z����B��UojD��a}}�H�V=+?�z\?�m�'���P�����,���ŤFV1�`1�Z�M�y��C��/�m4k�,vJ��"����a�k7W�&���n(~����uq)yS�?���kJ���D����D1���)+3��6x�v��xH����M/U�ZM'������E|����:u�@��[�y\�"��&Uc���=�^�%��F,���:<2�����t/���s�<��#¿t�x���X���d>r����A�hҔ۷CwQEjy�džo.4Ė������Mc\�Vk� �Q⾎�g�|[�o�%���$��!J�Ӛ��~#i��g�<M����kF�q��XX�������ϑUX�<x$csb��K{���M�����Z���]�&��ѧ��d�=��I�j�u�+0������xǩ�{药kw�<���9/ݠ�X�h~)�T�..�_!�~u�|I�V��=JK��ٹ���v���c�7�g ]���XV�0�=K��9j{���E �4<�:�zVZH���y�?B֚E��'k��/�[tss�5���86u��ǸxN���h��{[��b(��<��*����@V��x{֣�W����H��7{\V�5�^Y����TrMrc �J�j�g$��+A�����0>����QF5�����MTm&y�s]]��d��}��1��8�%R�cL�UXoA�1늒x��MŰO"�o�U��ְ��K��b�����ޢ�:��H����eI�����rt��]����D��sӎ��md�У���[|(�����g��\��c�f����Q�= z:������j�4;6]�t�7Fr���p^��I��=���tl�<�n�Lv�h��J���d��px�赸�����/<�� ��V���\�� t&�5%�=zu���g�ST�Ps�C��*A8�lU�M�:�8���FP[1U�B�䊩Q� �<��Lx��c8�쬂��N}�Vц/7�G��(mcq�oOJQ��S��q7�{�O������;�6��@Ğ1]ư#1��4��5���I8K���#8#�^�)��w�sT�ƚ<��D�..6��#sm�^������f%���a�ڻOO����sB�Fde��덱�5��� ��S�����A_K���am}Y�T�β:�CHт�4�\���5X�j�����xcq��1N��}�P[�u�Y��gs�����o8h�o�����>��y7W ~�P��'8�_����E`4���.�t�'`�K}k�Ԯ$��6��2R)I��{�Z����1 X��ޕ��\jj��S�ʵm�+�6ܺ�8����~U�y�0¬P�9��Ф����"Gf����Ny!���ra�SW,�e���$�R�r(�N�u-�_"f5l����Y���]�+�{� �����rѶ�ʰ�J�+�Q�B�Qx�D�r�����u֙���E%����!�&K�H��"D���Ҩ�zd7���ݎA"�+�^�>���Di:(^��5�z>�wm}x|�;d#�j��i�Te{�.�R� �V���m��ԕ=N;�T}յ���a���x�Q7`Vr����E\z��u� HU~p7�T?.����2I����+B�>�Y���#h'�����fВ �P!*3�p+8sI�[�Q����l�H�L�݂q�5�ki c���k|P���aԣS�\�:�Y~u���>F1�5�S�+�ЂX��G�zTj3Cr}���1ZwVP�%��Տ��p2����T�.�Z�2��S�u�9ف+���oܕ�m�Fܓ��Ou��U�s�����P�ܡc!�:hU%S��_�֗�)�Dvn\��U�������c�׆��-T���[�u��d�5{_��q�XYl8���X�5fe:n:��x�W�6����6�9�[¾"���.�%RH��+#V�����Ioz�����J��(�� CᗎŕڻYLx� �q�������۞ͫN��� ᵽf���$Sҷ<a#���0�%Pp�z�v�'�r�;��}+��Eғ]_ �8����Tw�1<pj��/���`s\���Fʩ�>�*[ˆ�>0+��i����q�He�� ⣻R~e��"�%X"fw\�M����n�Da��X$�J�G�o �� �pqt���F�q[ZE�Ѕ�iב�n�Q�#ס * ����U��[��nj���0�VA'8���VRc����R��7Ev^��v��Il\�Ά����{�����[��O\�-�������}��v~����N+I&k$�4� $���� »�o@+&��V�5�2���۵6��K��(�5��'�fi-�I5�H���T�������ԡ�%���BҴ�O����ku����p�q�D(M��D�%�G���Yh�:��.�&���2eT���o��:<f8�!�d:��G�Q^��Y.e0�v�'̯c{T{XmMķ�d�j�&�5���t� .��l�1�[�W6���mnzs]n����Ӽ�x�G9�e�f����U���� ��3�į"�-,�7��F<=�x,��H�@�I����|E�[}~M;Wg��-��Rߠ�4o+69T���-�k�Cb��.�g�XW�5<��ѣA�L�������^��N��K)��G����fkz�ٴ����R���F��8Q��hu��_�*q����_�)��|Ҷ�NȜʠ����W�-$[���?+%��ݛ�� ���)��E�]#F�������5#�滿xj�N��M�������Hs�v�j�z��._ xz1����3��MS�c���j�9�E���>����n��t�X���C����[���.�X�v�@.}�JG�E�@~�j�)��8�c��i)�n.O��m��d�,�G�u�h�['�N�Wg%�zy�/N��V�ǫ\Oe4ҍ���G\�=? �3��V��^�������R�2QI�3ПnkX9����ԉrA{��ϳ�W�?���B�16B���[��-����m/&�������g��T��+�u8,�I�Yj6)0g�&��rdx�!o�X�!^���1��}�.��$��V�2�s��~[~%��xz�^�X���V��`�=�*�����ñ$�����Y.���h,.��m(��W���>��x������5y��0-�9Rz�G~ܚ�_�_u��d�akfO��cc����*^v駆m�I�γ�����kq�x�پG�����{g־[�N��7�4,�;����Zw��'���d!#p��r,v�6<��5��0QK�[��\��SVC&��a�6Cd1-ޢ��u'P8>�,ք]��v!T秭D�d�2�0���r<�Q�S���6�PmJѰf.��wZ˵�_,7PN8��*"dX�����1�Ù�N��/"H0I^�Wm�]�p鵏#<�?�� ���z �-�9 h�_�.>N^-M^�jz���.]dTe��[:����Ȓ=0�Î[�5�X�&�24Q�g'=q[�V��)��/200�9��5���C�?�_�c��i�\�h�'�g�֎�um��w|���?�q����>:^�c�j��&�^RVH�8z��o�� �n�4�(q,h�u��]npJɜ�3oTz�ݤ�u(�d9��z�͕���7��O�u�Ҽ�Y�W���&�im�a�����A� `���}B��Y2w<Ğy#�7Y����|mf>�k�����H�#�s�\�������]ۄg�~U�� ���i��$�T3��56�5��dҤLN�=@�a\����RIX���v�5���K,��H-��x�Mf�ė�N�<ħ X�Aiq+e�坠"��z��k�-��u�3��($��҇q�X����o�g�#WSu>�X�����5Z3��+?����V���%��a�S�[K-�rF��#<���>|W�uhmu�#�鏸�$[nLX��y$�끚�J��̇8G�皍���Q�"������X�Kwq��*�6F�_B�|5��oO�������Ce{o�y��UT��w�����?x^�����T|�YUs�A\�jU(Ξ����T*F{2��r���Q�9b��,�ev'�Mci�C6��݉�W��J�QNsӷ~��n��wY���Fm�/�[<�ViX�\��Vg��M� �=֟_����;B���7'�#��-t�N���l�v�8h��2y�Y�Ҵ�e�I�+�@�o����h�åZmj�-��]��[��KY��|d�E�{c*K����5?k�c ��|��>������b�C�G ����#�n1�'����w_H%r���PB��f<��4�Fޚ�F���~gO��ג����XYi%�ǫ��+ʼG��Ӷ$/#�[s���V|U�G0Qnv"�A\���<��ß�ִ�M�ޑ�(Ɗ�QZ�r�;~j�K��0q����.6%�#�k�I7�ׯG���"�nI5���ݮ��$W��>�'�Y�\�&��O�� >��k���88`ן�a]���%t�g�hУڇ\c�V��٤� ��"����)" ��rz�uX݂�ۘcoLW�N��&�=&�F�w���`�>�=�%㽖�Ώ!J�{�jȽ�~��\ﴩ#����A��Mέ��%`�/#�\�i�" ��08ɨ�#��)�� �, �r85r�×zO�"}@��~u9:�O�'�7Щ*Υ��s�[��PKv�}s]::�����h )�3ް��gЮC����p>a���>ga��=#J�P��_��+ڳ5?47e<��=s���ū�/dP��*z����u�ώ�˫�=��庂6�Ek:pQM3��fz�1H+��X�e�ej���v��ҹ-_ėA�@��=x�䢵!&�; B�%��q�@k�Q�2���pڦ�w#嘁�{�\�� Č���\Ӭ��i����m&œК}���c����\qN�;�M^��n\�,^��R�Gw���&�1�z�q�e�x�g��5.�*�'h�P-���� r��[�ȷ;MA�m�����W�w_��b&��z��5=a,,�����_o�J����q��]V�8��W��s_I�e�֕C��bR�<'� �=r�������6�cI�]�jR,�(�P�R{ךx�ƾ!������^�E���8i���h�3�Or�!?6J��^�9���+��y�=_���[�}OZω�e��A�+��'�+�t�"�I�e��ڵqoo� ����mV4���33l��E��Q�?zN��Ԕ�KB���J� #��3PG�C$�)C��s�T�YdFO$ǹ����jd��N�{;y�s�����3��V՚�N�9#5F�����w�Z<}��U�%Ӯ�'3�э����+���.�ɯ${���w��W>��6�f��6�iV<]��� ���&���Y�%�����,I� \��ox��Ǣi�����j�;����&�� =܍(<�%T���X{[�wR�4���o��)����9f<c�{�W?c�gY������,���8>��_�;�/ �:|�m��ߗ�jΛᐑ�mmɺ�8r:�j�U���$�.p��5[�/J�%w����b���q�~[ԙ��ϥv��< ��բ%~֪~�8$�j%����%�b�䁂}FhTuW�]*����M�I4��rX��G�"k����6~i=?����xr+��!i��HԺG!ۿ���U���Ɛm�In2���u4:r�|�2��Z[YY��Ƃ{�0Cr@�XCӮo�!���B�*�*濣�s��/n��ٱ�0~P�u�5�h�/t����z|���,��u��' T����� >s!�#�O�{E��][��]P����w���id-����q&Hc�W�M����-��������wN1QVJ���]D��G��}��1�("5n��ʱ��V ����G(%�q�ߏz��X��:]��4���� k�A��_�R�m�ֱ����@�rF��ukWI;}��T��_j����FԘ�ʧ�ڽH<�ּ�4�mč�.�[�/w�[x�I�,��pKI���Khu_ r#.�$@2Q���rJ�O�m{��"A�J�'�;�x<�w��O�:�QӓP�Jf3ܹ���}�kv��9̣�=���o��<�Ȩ��z�V���]_�kIn�]���C�r���v�*r����<�e2Z������1�S��i�^�������C�C���̨���5��h�X�齞ɞ�L?��%~��_�����Ϧ�I#���&ݾ������k�&��G��g9<��1^�Z�Kc�ܕS������7�� ŷ�7P�d�W��w�V�*Ik+F��{ ����t����0�)V^&S�GC�zW �T��>,kL��KrReFL�/\��f�|ƚ�����.�#�����ѫ����I�:��*����0Ea��1ּ���C���+��[K5�3)V'�|�RJ���%�?����"ߍ����o�i������種7�l|�^6�$�s[Z=���,[�� 3��UВR�&��=?Oif�����X���%��fp�09��']���2��z�����u<8���h�g_���=�mv�?9%���g��CP����ҫ�Q�<��F8=+��ci�Kis�r6��\u&�:"����}�H��<��5�-�p:��M+�1�zg��Diڪ�\@d�O#���)S�R��ѹ�[�k��!0�a�t����ZhGR����zc�k��5�5m<Z�ba*g�s��v�ƺ�4���Wj���5�B-�s����V:o�~&�/�eէ6�8�?���_����L�V7�-�l�,}��x,k"�c9^j�����Ӛ�U�J%�V����kW���n&3�~Q�ZRx+Q�� ުJAx�@n��qJg�j6�d��^�}�|6�ð����j1ۅ�!�F��$q�jt�:m���o����g{y��c�L��Q��z���_<�:�\jp5��Be����:��:͇�N�e�]���;' ?����x��߈-��֯��"�{����\��í��))i��u������Aw�i5���3�0����Lq^{u3>�>�5��=�bO����Vy�I�|�i�����7�~���e~�CXμ��}�Ŷ��o�t���E�x���uz��z%�-=�u�{�zW�iZ��[�u_0y���ijض�Q�+�m�k�ԼC������y�5o-��UN ��)|.���6��&�� �Co����=��R���������{"{K+kf|�̧5��ڶg�,��1Y,J�@��X��v�Z�> ��j�֕sq4���q�++�:͂x��@�\i�4(�Kj�{�-����u;���B�HTH�����*��ե�֝bn�O1.⺄�s���?�Z��5���t��m���g��u���ynJ��lq�4)�r���N��|�B��'��@�]B�t��l7�>���h���ɦk�i�S�<7�{W��ך���vrx\�J� �C���_���N7.�ZB|��QԥA��dz}�ޕ��ͩ��A�����&�N���v����b$}߽|zs^3�ω��d�8�i%�e�s��k�5�v��C��ܮr���Mj���U�Q����<�!�9�+5;#83�˿�\�ư�vfq;�U��6Ms���$��S� F�`��+�i�hҊ�9�kM�=�=Vt��g����{v�����>�WR�]�c���V��t�̓c�7A]��8���c�{D��u佷����)^ ~�%����.do��HT��֬�>�B!�_[^\i�"t��c�꤂?J��h߳����oj�:�Ϛ�Pӷ��Dlcߊ��5g�43�����_����u}N���O�G'��,["F�� c8�k���kt�s����t�_@�w��MOFkm3��[�K|R"�}��º�o���--�M�:e�k4wQȧ�s^mJ�*+F:.�����O_3��M��a[rg��Z�s�H,mp�0��g!��ڽ{�E����o����eޙ���{�YG�\釦�lm'�(�_>�%�Cd�/Դ�c�-'wX��̆VRX8zq]�Si�|0�&���$�asn�F�8��}���f�?��G�S����n?2'�֣�|�-��%��Z��r3�8<c���١���K�������A�i�{0H���$��*�[��u_�7����ſ��3(�6���l�rq������t�4H��6v��eH��0x$�2k�д�u� ��t�na�q�$��9��ݚO_��4q�����i^����}N���r\�8]���C�u��嵮�ykki%�ɑ�Qf��eG$�&�{�v����m-�����B-�x8�:����}Tҵx���]���PA*� -��v�S~��]��,5 �+y����߆����#��G�����sc�#��]w�_\�-����Е��$m ;?ƹk�E��Xn�x77!���}*[��%tR�R0����+`�}*ƒ��<��& 9xE<�@O=�ԑj��6r�#�ȓ=��d�^)�S��3�瓊Z��b��������1��P[ܴE��Ǧ~���&���UYo�o��iQ�ξK<����k �1�ǞX��|�E+���'�m��(���3�E�TjJ���ƨJzr���O�^?�M��y2=��@o4�-��h��a��ů�x�U��V���(�q���1�H<��5���/�Y$,�� Rk��Җ6��VB̫���-���0�OG��k��ť�Ms����X ���U�u���"����M�m�s��>������E-�͆<y���]^O<�͑����q�#�/"����jz��b�\�#~�K�e+��\���qw{��g����eqQߨf{�B��+6}@���$g%������m���V����#���1wbrnjV|w^dϾFڭ��n�+=NzU۸���3j, ���ҷ�q��J�m�脞E�,c*���b����e�Y��EP��L�:2��y�c?A\�<�ZG,ǹ�G�{�E����=_~��ג�Ld���c���T#99?JXz���zVIY'�����r�;@�y<U�:�@�{@�e��Kg��k:�R���Դ=G���ա��UD�@z���:����\�X��en1_2�n�#��Y2Q$˞�<��گ�|)wਓM�U�6�L,~tlt�^��Y� ´\o��ak)GSw�Α� �R��`�e\cw=A�����g�����j���V�J� ֛,���T�0�����cY�[��d�+�a�N��6:��f��O���?O�I��V��)����=k�<#�����K�"��;�q�WͰh�]G<ʱ*�����N��Q&����*�9�]R�����I=�Y�,�������@O���ڹ�x�mm��Q~�6Er�zƌ��2>r9Ϧk*�Ķ���lM�#����ݣXӖ�Mo<Ҩ\��<����*ӵ�V-�^��x�g"����6��b�8�����D� c�t����#����#�R��}��[�*y�3�]:��gl��v�Ĵ�\d�y5#vsFI4�䍱rGqVc����<�u�D�N�x@��W. ��ԒOJ:ǞZxm���c5�g���\dWT���y�����^�ST�%�l��M28��*0;⼷�������t3�w`%d<������>9��~0��^]|���W?��{�/�+D ���j$�zw�rT�c�{ױ��(������U�>Ǯxu|;������S����V<�����G�u��^;��t �4�l�S��h��������m�)t�����v��:��+��e��s��8�NBM�8��U�995B�����r��/kS��~G]�g��>ѭ��)#����B�T�`�� � �fn��T��F�[������F8�b�(э��T���#?�ZUޥqv��0?�����������u��5��ޛ$�[�8�&*�F"�K�`�zٲ�4��Պ\Fφ��A��W�>v�O��S������BY!r~y��Ҫ�7��s�X�!�0�N�ît�d�߭�i!%��ĭp�zg��5�m�ǩx�]�&��*�:$q/9$�q��L�)JϠ�0^��F*�$ǧ�@��3�K��+���u{H�x�ç@w��z��o�ې�/�=�z3�ȴ��D���Ԃ����i�1��e%�}a����v�M$�6���Z�z���w3�<��3�|�<H�nᶵ�[˻�0�r�s�H{WU���s�LQ�,Sr=��%�{�O�����|Os�K��X� ��Ƨn�=@8�o(��������;��铉���{��$����Q�J�+KK+���9V��ż�)O��5�%IoĈ�a�A�9����뺲�:l��"�K�P|�����8��:t����9��z�^�,uSJ��ݵ�"!�w������4Kk8�e�X�B�X���{SfҴ�{�[Gh�L���7�{�O$�͍��#�ǖ9�����JR�zo���)%c���y~!�jq��4�kUY�l1a�ޜ�M�=SH��S���6ܖ�#��*�ٻ�Fr�c=D����D�yg�#P�LD|�[pڦܳ�M�x�����wmc�;\��e��'�qgt�#��� Z�$����m$�S�9�� :�=��?�mB ,��y-f�y]�x뷽Vm"��1���;Y�w(a��Þ@��*�M���֖9{o�� ����֮c�4��]i�fՒ>�g��^� 3�>���ƞ�#ۀ���䋌3`����A�5��4�cc���>W1ܯ��_��-u��=6���s�}i�,�=�}iFxx�u������Y������5��5Uִu7����ݑ��A�J��I�4͗����q��%<ϥ.��u ⵃ��.��,�F"'����I��{�*[�U����s�P��Һc��}��>���1�{�O� 05-3K���^�چ�zŚ4�b��j�С��f�yp-Vk�&�����O»-/K6)s���Ӯ �2s����?M�� Q�Y�|�+��ڲx�nI��g�E�2�M�_�yn��Ht��6�����<qܻ�G8�}A�A�Q������ңC5с���7o�q�+�<I���X�ӧ�+m*�����/�^�<E�=T�Z6��Ms1t�g�{�4����v��:!NW\�.eZ�:M"�ь��ϰ�I[&6�r�I�����~����Q��HF�5�1<�۳��G�4�/P���F�tk�*e�*��Ϝ��gh�ҍh7d�*5�G]���]��Yn�s$���>��C�g[T�!��ܵ�b�o���8�k��Q�x�.����Paܑ��]�+���UdicfQ#a�Oa�㞵�a��7�qUW�o#�~ۍK���i�6�)�yʓ�=Ȭ?�~����f��y�ooo������~��|�_�-[V�6�i����;��~���'�4���^6�vI#�\B[���@��hލ����~'U7%98���~]������=�g'���V��SJ�3�$|��J�-s��f�f�5�oAe�ח����Y��kxЎp:�ֹ��h�6�+���9�8YG�i[� ��ֱ�t��o��2���-Ұ�����g�.�[��"Fڪs�]�6��m�F������J��G�iRF��l�.b���U��5-D�Z",�q��W=�cB�a��f��-��Q�k��b�g�>�c�]$���f�{��O�j�,ӎ���>�:]�\˫A4i��1�q���� {���^Q�r�/�?_z�R�Y�������D� ��9�s��py��f��\�O{�X��I�b)�s�c�z����ZM�1|���4]F��Iekq�s�ȅ�I�<��~�-�o.!������9߹��+Sg��Ϋl�,�-�����6����'���y�_^ej�\�Mb�cO��)��=FGs�B�t�-˖J�3����~�ݦ�ү��[�4$�����pdp��pO�Wm�뺤o�Xjj�? �J�ĭ��ǏS��~��̶Z<�X%����p�>s��Ѥn����T�1O�eÙ�y�ֳ\9�$�I��#��lP�;XI2������$EHb}��u�{���w��~J�K�(/���}��q�o���Ko<�C)�q.y��G��I(r���)9m�o�M�0����TZ�%Ub"@8'hϾ3]���C��|�����w� K���>�U�xG���-��ܖ�B��Q�'�C�*V�����^[� ��$�� �!�f8�X�r�L���1�����'����OZ]��UfH4����I=Z�|G�ξ�o%$�39n}�#d�����|7��d��?}��N�I��M�u��J�Ӣ���H�[g%N�3Ȯv�C�7�T��I?Z쵿�^ }�PE�� �?�Z|ˡ�\�M_�4~�A���X4 W±�2�.#��'_^ v~;��5��K�i�&�����'�|�x��:e��}B�!��@��nk���������1�_�1�k��:ա��۶ֲ�m��eR���Թ{߯ɻ~�~!�&i|I}m,���x}y�u �I0�m�'��j�����VG�;d#�+��� ���{��$sԳ]���5]�i��' K�_�c���H�ƋhK�<���Sӵy���P�2<�;'���k����2|�x�OZ�C�c#��>EF+�wg5L�KJq����.or VB���j��:��+=�ȇ8Rk2��I�B*�c�տ��!��d����{&$��<^3�}?2��y�O0���EX����������cm��FS���e^j�7Ǵ��;r�#*ؚ{���4/n�c�#�#�Ȼ��v=�늄��$���>����6xX�ƥoui��P=�K�(�3�ўzc��V!��C��n�td����Uf��y$G��Pq]&��^*m[��[�Y�qQ1' ��kJ�VR���#%sա^Jڞ��uR�R�*�%L��ii���2��oO��{aO�qZr�!�a����D���9� 3º��^1���ќ�����O��k��r����ϵC�<UL���7�|��4;�#e��s��V�t� nm�pq� r]����uF~����G�����]=��j^ �Ծ�w��t�g�*9�U�;;�r�N���hѓq�p��~ Kj3��5�����#��x��Q����l��f��H�l������79�$�'}���?�����j2ɂ���7x�������1ҕ&�cϖ)�9��r�az�<���Jm/q�8+�i�r���-��Q�9Lo�t�=���0��H��Ԋ�<2%s��N}*����DX����a|���Sׁ��j�8�Ҭ��;�_�-$V*k�k/\���G�Y�s���~�X�m��y�_{�����mU9�p}RQ��Ռ�c��k��e� $�2q�ͅ.�'dS�A�k��#�1�[�On>���kQJ����?�z�.մG-Z�ܩ�;x���y�\fG�8���t�8X<�G�#|��z������I,��w��f˦���doʽZTi��)��b%�xĻy�k��g B�7����{wuw1��i%f<��44n�2���� T�Q����_�&E�y��I���^F;�Tu��.�̅x8Ҟ�i�H>��m=:�.�3�����2DbǥX�fn6u���!8�S�1��{`VrN�D)�����ܺtR�G�:�]�x���Q*%�1#���^}�� � �~����ϴ4�ڼ<m7y��>� F.)B�Go��g��*忋ү�k�6�{T�'v9�ʪ�n�8�9��֔��v���j�j{�����]Y�����qq|�냀+*h.%q�I$$�z�W=�7�b����U�K(Dh��H�8b�+?B��O�ε��ߗ*��5��Y���Y'��]�X��p�����/�m�viT��WM*�r�\S����C�M V�^: ��A@a��w.�w�"����e�/�}Mz����-�A n%�V-���z�t<��p�_,W3>ȶ�H;O5ji�8�;�R�Lj�XTcӊ͖��,W��_5*rZ��U�+i�*�Y�ӡ�T/���?9��Ҟ'� -�g�P\�9�ڳjIX��w����$������bą���M$00�\���w&��Z�9�qjB������y��%iV1dԕ����i��G�;��ͧ۸TA��:w��ƻ� ~x{kE�Q8�]�A�w�\����r�^#��C���0��^��~�Z����}��o��j6ְ��"��=�澊�\����a5z����s�<���4���{œ}�rK�I� tg�c����-�`�d��6����_���A{��k�����Z 7ʘ?�}k饐�ۙ��/L�=y�����Q���sf��C%5kX�BZ�@ ����\���?�o�FB,�nO#�����agE�:x�����y��Z��7����i�Om����������ir�����~'�l�g�jwW��YI&8�q���5�[i5L�p+r�e��Nru�{�i��[��}������s�xE��fԯ/,�v�K{{�c�o�O&��]Ֆ��$ӻ����������� U��#��ݏ��$���������t.�`\�Od,8,88�V��^�Q4�M��a�73I>b+It�]7J�4KK{(G8 �܀0*jѕD�d����c��w��ڳ��:l�U䨟�F@@?�<�u��ͤ�o-����K���z���k�;m�Ք�E@�����)���'�j���I�D�X�~g���F�n����.У,�*m#$7�{�pmCG�O�yow$�8bᑏ˂>��1]�����_.�q�n��(�i ��yl�H"��+�����wS�>��;��rs��ҹ�Z�m�+��_�D56���C���A%��n�k6�Kt��ȡ]pC���4�kW(�.0���Pq���*��������f o������6�� ��ddw5ˈ̩+E��血���k��y��c@��Bc�s�А�˔`9Vۀ�Ұ��/�b� F<�3V�m����,���>Y�Ii�88GY�e1 ��,s�|��f��LHI,�I<�l�74�H��}�[���(.�1�w5�=W�e5J:#&�2�(��V�O�FR;P�8�sZ�}��6�=M6;�]��3�i�.k�)�\�T�z`{�V�s4bO1�rU:�ba�U9�Է��7#<�5%}H��z"�q�|��Z��d�%���۽BW]�ܑ�U��ʇ��M>d���F�ei��m���Z[~M��M�H��s�������i�;Ԫ�ԧE�ή���Ho�ݎ��F=qapw䎢�G�Q�֑��g:n����?�fh�d#�9�ڗ��˴ϔ�������t�L� ;���L@>��'M�Q��V��zZ]��Ē�a�k/�j�~&��2����2X�:}k��V\c��k�:+�˅#�:�O4�`�xTJm�G�ߴ'�G�?�WZl���d���'R~��t��5)���9�.���by'������߆�w���^&��=�x%��A�_��HG�wB��qb�S�#��Y���Rn2���u��|Ic�$�ڻ��7����b�A�q6ז�I����=�+����v�Z�'g��?zW��4�c�?�W����w%� !e˪����w�k�~��;)���A���R��wS�+��OI�^�]��rrG��>"xWP��͚ݻ��3�ZὌ��WI��ԝEO������ �mf��1\iL�G��HpRG#�5�i�x/S[e�״٣��4C�@�n���f�;�e���ң��xf��#!ᔑ���*p�M�N߉ڕ4U"~�x}cE�?���;��ġeC�5[�^+�.����"��R~��`4��H�����x�C�W��+YT�����k�����a�|�|UqtX�?hU|����I��9a5o��6����\�Z�x s���߶�J�Ԫ�0M�8��5�|Y��֯�l�;�ţC-h�Fd�';�r��=��?�������Ǥ�m�ndzc���Oڛ�6��?��)C���0���I��ע��Yp��)}��Q����J�Q%���2�n�2P{Wa6���S��+�Z���k\��G�zW�v���mu��SE��9�;`�� ���i/���ߛ{i�J$d(�9�O)�(��?��e��{�Kz_���>,�@�,t�/�䱆?i�D 8�'߭G�oä�q&��3�L[�`�Y��_'����튼+��Fa��5_���� a6��^���������cb���K��Ab������䏬O�mF�MmFY`X����K����YvW�v�r�Mi`�O4*�ξE��o�֘�~�� A�G������j��ԧ�7sLX�^Bs���=Y�eo����R���[�>�����X�L�j1MqԈ���W)q�$��lดG�Bp�=��������y�REwu�G������8�YjB�!{(_�{����\��������gb���(�uW���a���u����C�3��v?�9�S]�\�E�E~g-|ui���� qv�y$wn�c��5�wpz�ers���FF1^��J��)��=����;�݃ޓh�y�y� �\G�i��{���,�##�2h�w`9<u��.ݗ������z���ov���m>�!�}���C�*�����f���3T�G��U�%lμӍ켃%��4u�=;�;t&�G��n�R{s@�?� =�����A�4`�h� :Uc؏Ƃ6�0I�����$k�=�K�Z�HS����!��$t�4;y�'�O^8��x1�yQ��Oz�=���X����ו��S^�o ����?h�QXά�#�u:~���|�8&�����< �w���X)@;��x����=E�%[x�l��<��X��9��ƣ�k��1�[�sY�S�%zu�E�eh�e��W�<��j�k ��G�˿�E%��\B�H���}�������E; w3f�۴�\���q�H�.GrOJe��5ߝ���k���s� :�Sr��$�F�DU�:s���*���*�� �=����۸f�O5����:��v���%KS/L�ί ��T��j-b8F@Q�:c�U��@�]0;)=���Y6�>����K�����,6O�z�;���yQ�5+ġ����\�ͅ`02���S��k�-����Z>����F]����� F�9�B��2O��M��\f�/�[Z��nm�o^ա�h�1!�}�ǭrw2J]'�!��Ezw���gA��8���p�f�̖�I�;h�D���7���{U���:sDW��Å+�W<[".������Ӛ�4k���-u,�(�鷃���R��I�ʵO��LH���@��u����l�����?Ͻ{������u#o��Y����8��c[�}+��z��dD��䮏��� �l�;�ISo��+T��f�I���>լ]沄��Q�yg��f-?V����ٝ�!B�kц*�~8�y��tg�������)2 �*��?<_ᴒe�k�W$2&N+�5-6��v��'���#�GJ������1� ��ں�<~T�����*� ����9����x�'�z�A�MliZЅ����>��/Rs�(��I���xTVg]έ7�=7I�5�Pn㡧��(�q �F3^``�ӂ���aۻ���?�����h̅\�ڨj~=����<��k�17�� K*�g� R�p����i��읽�^ ��~���Ƶ>xn�Ş"K/5���ĝ�s�k���Z�c�a�m�����f���R�_@8Νi-M$̤��sU�e�k-@��N1���a����:�fX�a"��r�dק|U�Eҥ[�0��ׇ��;��]��A�yT9&ۘ�%����G�j�z�U�I>j�ߞ��W0֙���Ve�u�8;1���_5<\���=2��s��j�֣d����95��z��ya7\���i:���=Oz�۩l��em�ծ�n�*u5�������B �cF*q���@�J����?�g�����7um9��_)n �gw�5�`�t����p������I�]�Ho�g�ǿhm9?h)$�G�� S�s���,v�-�=;⻟�3[�=�N��RB[�k���4v}gI�z\S�H�d�� 3?�5�R|�n^��LM�����x�K�r˟/M�����e���r�C�#� ����(�ͽ���}cn�A���07}[��\�6�pw��9`W�:�v_Q{.��8�?l�r{�,d��4%�S4e����ҩ��jw�Լ��[�t̮��T�u�"m<m+M���W.�9l��8�]Nz��F 6_�$F���+���l�U&�Y�g�#���MbiC��y����O�����]��f�e�,p�jF�$u{�K��'����[Z��^��-���y��-.凙�|�(�CÃ�����G�� �L9%B�?��*��u�D�e�X����<��jpJ��,��z��?ʵ�b���_���'e�~�I��C(��y!�y0\9��Ѓ��ejϤ�Ti�#�݈F�����4�rivom�Z�;:�Ïñ�-ռS{���$�Pnj���+�Q�����ў�V����������Ė�}��!��B[�o����k�Ե۫��`G�ۀ�xcJ����yӝ�x��WI�xma f�o�;׃V�j����4h-5g/��DMw1bG�����5���P{�[Gɶ>]��f�P�%�v+���T*Q��:���;i�dC��z��ӿ����$0���U m��v�EIe��Q�$t5���#>X�w&��>Q&Lx튤51��l��5v�G���ӹ��lUI�t�S'$T�+͖#h�jU�B7�����,�c�HQ�4��ݰ��:g�O3/�%�r�ŋrz{TgTE?>3���y��$�8��F�A�3}�{��v�R����`�e��/�EV��r� �p:��Z&ѕ\�WhRq�9��_��7�Z�����������)�oJ�6��7�5g�I�f���ĕ��B�U��n��ٖ�v��N���i^yPc1�����Ɖ��U��+��kwÞ"�Y����ēG���:t�l��!p�J��)E���IA��t��;\�}{�E�kPM�p�����ޯ�����3t��W�Y�S ��n�1|G\W%�� /#ǔ#�MѼB�*�+�z���k������#'�H�Z����<C���&��Ht�zzW5g��h���u�v��EqPA�יx����lyBY��sԧ*R�6:�R5�g�S�>�<Kb���.NOW��^��|[��q=����,����½�������+ 猳}kѡ��|�ã��� ������&��y���hTj6���χ����6�%���ɂxLn��\F���N�\\Z���F��U��>��?� Q�N�{�"X�8��ǵ|e�7�_~;�ֶ~/�-�RK�2@�0H;�v&���z� 5���tӝ ��"����>m��/pc�J�c��]���)�b�˟�#��60�Lڃ������ƴLq�k`�����+�6:��ر�%�a.���sމ��:R�j��vQ�᷍H��s8h����#V8ێ�����%�`~\�zf��wY�d�[�a*�>Vc�y5SW�Ò=�]f�m��d�+=A�:�M9A���*�_,���\���pj+���x��]�ſ��W�ߩ)��I�K�Ҥ��.�������X�/���ͭ��_���o��玹�H�i�g���sm��L�� d�2��8k�6އ�i1�[�Rq�~ԍu��b�7-�=�ّ*��ԝc!�EO��wA����N~|��L2ɟ�}�I���ciE�j�Us9-ܓQ���A��Z�vsՉ�5����(T��%���Ļ5ʎz�y&r}�Ds�G4���E�:�ʲ�$�<���zю3�^��W&ެ@A㹠�<�4�y�4�=�Jb��� �K��L�K�4�Z0zR6'9�NU'�I��@U'��j���"{Ҩ;��Ҵm�������8۹���c,E8�Ϊx*�բ��j |�U����d��Z�<�T�`n��.���}1�|^���������Fc�����?QU<Com�k�7�zw�"�B� 3Ҽ ���-ջk����(S�{G^�N��y晤[���1����F� �6�ps��I���$� ��:�[�Q�dڸ]�7OK�Z����2�!O=i�C-��a"�#5��s�jIB_���YO���6����Q�F4���������kco����,H���7Cc9��+������T��:�r:�Y�9X��4՞�^N��;V-���ian3]7��Vm�C�ݿ��ݥ�ܬ�(�N߅-. ir�D��"P�G=� ���Q���q�ߊI�$g��~�V{�+��ڂ�,Mw _�CܞEK5�3a�� ��bX�2y㚇�;(>�Q@ѿw"aQF윒*�Ì��:S"�$[��������,�Y�� ��Va���ߌܜS%��=믻ѭ 2�Xb9=�բk��I^W��Ƽ�V�I8�P��;|��z~T�jU�``��]��'a��J��p*�TTk7x+�8�Sh�MLUIbp=El������߹5v�*�o^*[�9��ye`[&�� �h�[�at[O�c8>��{����Y3�i�u�3�ޒz�I���$�\��1���U����{X��P {��#���a��!�����j��ж��.��SWNⶖ=�@��u�;[�P���q�~���x�@�-����l� ѓ�¾R�u[Y .K������_iڛ�i��IS�w��x���1�3]��u�����ѕ�#ּ;�O��x�9n,m���zK�o��R�i�)o-���^���-*��Sӣ���9b�C#)�A֣K�߾��U��G������?�A���<�V���+ʮ��`A��~��E𭆱�Iͪ8e#����h�?�sK��1�2��UU\<�j�ǿoS� �%{���џ/���N=i��|b���f��x\��*����^�5�ƪ��9�E��D��?-=#��ƮCc$�V;��k����`s�cSNVoKR[# ���������W��kᮡv2��]��>Ip�>U������:�eKe��S�r�ɞ;�%`���WҟMݿ�m핏�$ J玝j?� �]��c� ����ۤ��n�sn�G�+��#�5�x�ǒ���~#Iwl��%В8�^q�]�-ѕbU.2���z狭��pRT�s��V̻����,* �{���?G�<-�O�����Y���R`Q��Ns�̓�f���d����$\G��{�M���fa���?���J�T�����QK<K1C�a��Z-kg#���1�x���KS�V��H�~��]_�Z���m���T,E<=f�g��a�� �5��2��=�������F��5�x�Ă/��ݝ��d�+���ޥ�\隅�*����P�($㸖 NWg1w��ï��M�ҵi<�y�*P�Q�+��%xO�ׁ�O�gD�a��F��].�� k�%/mu��g��ҳ�y��N�=\����{��&^��� Zp�2���3� l�%���M�U���[緱��A�F^A؊�� �Դ�����̡G���|������Iyͻ�1�Y��uu��E4�Q���o�0�?�M�>�*C���Q�,O����d�l������`�ɊR��6����KIףԣo"Edc����W�x� ��=Ez����4i���9r}��ޝ:�8�Y�'M��壘]�2����5)c� �cہ�+9�PW{���^����v#nz��Ox�����R)?{���)�(�4��Ga�j������-�29�>���bs)M�@�h`#�2-B{�n�/���������veg\.쌊��yUv��X��`� GLW=3�摥|R���-6-v�\��[�nŃp���8-�~<�My#��� �b�<�)�ȡҁ^�����'`n1�Jѱ��1�ZP�}�5�(�H�x��g���o��S�EQ�iUݴz ���H&��@s�XZ��l\��5�W%�gUd%�Z�l`[�R��=*���M�zq�jYA巖X��ҧ{U�@-��B��Z�r�s�}=A=�R�� �9�{��m��u��o0f9�b��K*��3)��5������� ��P8�����FpI��zT��H���e;kA$��x�Z������m��1��h2�j6����:�u1.�0r�=�UD�������Z:��� �'<}k���Q/�)���YO�3ZjM�i��=��TR�㎛�M��C<ds�z�;�'�H�Ғ�ay"��� U�9���n$���f�n%7`��+"��l�I�i[R���{t�}y�n`2j���,y��<�u��r�&�rx�+6�6I�Y'��.��8�]ׄ5M�F�WmlӸ`9�@3[�=��̯��ӵ:\�wDUJQ�=&�@����1f��� �A�D 8=kR�Kf+Բ�ɻ�P�`�L�4e[9T�o�H��F�MJ�K�{��E��������Q���^My�����4�6�顔^\7ޑ�g�>��N���c��R ��-�����Y�%������Ѷ��UuM�QY{dL��s�Tq�ipYĢ(a� Tn�W��"��Pu-ֽwQ8�/��(�����V����,�:}��xe�+c���^$����œ�i7���&�Lm�=M}���-$�p����'��d�s�[�4�� ��I�v�c�5���:c6�����f�x?P{v�l�W~-��!}N:W�����&s�\�z�'��#gk�h��ť�ul����Ϲʫ�ax{ƗW�k&<�l���Lz���n������j~mˤ^Dp�I��ۃUZ�x�k��}��}G�Δ����=�ңr����V�>x2��2�ms�т>��ަ���K A�FL�Ȕ�L�� �ʾհ�9�+=A�l�T�%��[�/��]g��b�u{�5k:M��������k‧$��/�~X���v������Zo��Z��k}�!�#���ʤ���x����A�q_Eh���/�.�>�BMk��?Nx�ݬ�K�ܜ�� �*9V���ℎ3H�{g�����~�^����R3#m�P+'ǟ���gk,�e�ۆv��j����pv�����ύ���fk��#�fկ�:�ȧ�:Ԓ�������^�қ���__����5��43�ڽ��??�!b�)���\��9��m�p��5T�\=GdɖQQ+�s� ��9T���Y��X��8�+sG�uqq��p99�� [����:X�s���������;��m�>@?֮y���?����`t�\S�i�h��lm�3���?}:q�ۭmi>���yd�^�x(�B�<��������c9��f�_á�pT#��M?���eGS�s�{V��F��ne9�u�T�-�K���=�i�<�4�� �q�VNґ�N���$��BUT8 ��k`�tT�� 뤱��<�$�:��Z)�<WifIe H�ު8��5t���3�>��������������b�JF����M�o=��C¾�����*c@��hi��bd����49��y�f�ܗS��k�0��t�\Ɲ��,n�N���rԴt���;�A�\��d��a������^���m �Wݱ�MmV�["d���Xw�;5�xTn1ڻ˽$�#�nj��P�iMm`��w�*o��f�k�Hn�IJ`1�$t5�I�v�n�7�Z��q���EIi��e� ���MrEh�L�]��'`#$����x��^(��H<����-�h�8$��±5+`"���M��Pg��,,�����5yzK�Pq�W����� s\6��?�ِ�t�L]����ƒg/�s���N�ذRH=OƧH.���8�sO���s�"����-���@Q��|'���앗�_�Gv��.������d-a�Esn��N ��qY=G��*�����=�d�P2�������+�Xc�Ú��#�J1bX��WVЈ��y���|���Oҙ ��+LZ:����9���\�h�i��ֱzZV�,c���+���Ek2�*�xr+�a�m���Ցh��H sS(��;=�`�����I��e�Zj�,:��)�~���yo�~��z�ya�A�[���`沷rZkc�խZ)U�s�KXZ�f2)��Cլ�p���_[0,��i� �1��%8�PX�sWt�N�襉98�;IКU��'��]���t��ʒOC�U&� ��9'iC�"�:}���{7�������Kk��i���W��Z�D�+���^{ai7��0�*y�ڦ3�_4tbn-r�}�e�Xx�F���A"J��v�▕����q�ǵy���K��0��Ѻ�+���v CO� !�=r+�U�V�L�t�)��>8���qm�Ksc��+�mlKJT�J�c�o�{X�!������I�v�Y1��8��J��'�n��$��</����W�\�+�6��7��W��}ڥ�����1��M{�d��Ed�>N6���R��ͫ�������N�-��$����u:=���yJ@\o�C�fm�~06�ᚽ�<���%�`�$��ܟª�l��9][^�}$�U9g m���~,>$�hD�ѳ��d�õ{�=�٤�e6�p ��9韭xW�}.I�M�I8�y�? *�5r�$��s��͕���Gs ��(���x6�b�F���a�,�1\F�d_������C&$p� ���N��Ty��N�������{xm�4��Pp����z��,��4���I����zv�y_�<��D�R6�o�ڏ��8��oP��[4?bp �4��b�o�N�W���Z'S�N�י����}V��H�}�1�Rq]�Z��\�2�FM��!�e��̝��j��Ѿx�QP�Di�e��ץq;�Z�J1\�Ŀ<3�_ZK}�x����y�W���[:��+���q��R���q�����x+�^�c��*�������`k��~/���sgy}���~奡"C����+��)�6T��sw�my/ԥ⩧���5="ɬ���3����sM�O�-�v��j�&kl�m��O��&��?h��c�i|=�/ O����E�y�� >����u��3V[�&eul�q^�]��ӄ�7��1�P|����ϼ�����7֒pH?2�s~1Ь�����h��h�����Zӣ���|��@'��Z�<O�i7@�X�5�}�[S�R��ݚ�3�� ��v�h���k��[yZG�F���'����|3�7U *6��=�돸���� J��c�n�8������*� i�* �ؘ�U���=~�V�H����N��r�&� )��[�㹒��?Q�֗C����I ʃ�u漜^>u_,t=,>4�٩�M:k��<���,XW�x[GH�YeQ�8���!��]�� .;�i���\�_["K0�p�wX�q��G�v��;U9$v;L}:f�\��5��q������+&]RC9]�pzӟ��c�?:����yH��k)�hޝ4��X�ew�*����{���I��#v�s�5����1�Nj�P��M��Y���u����&��a�Wq�^�5k�q���Uy5k��W�wH�2F[�=�K�Ev��w���֪^3�2��}j=����%-��h��qT�g ���&���Jy�=��V||���S���h��q�ߗn~\s�֣p��ٮu�y}��J��v�7^H�J�����qF�RƹRG�k/]���@�*����~�?�z�����NO^}jjT�l��I9]��u�d���'��j��?�'��i��5�4�x�+K�As����z�m�+A�o$d�7qWቘw��8����V=�U�x�0r9��0�EЩ5��_�X�դ�(~}k��%#p���o��P@��4քB���f��Ym��`�&�x�;���p���Y�s��u��f�}��Ҥ�54X�̓�=Ej����/m��<�������q�V��J�n�n�[���&d�t1\f>Nsǽp��ܙsֺ��� � �?v�%zi���V'wq��\�_Eg(�~��nx�����9�:�Ԁ���=�j�R���ޖ����I��W���}�k��I�"?6��Җ��;�/,`��k���ڻ��Vl��+YՒ����]�S��K�67Ӯ6͌�N5�?��$���%�9WC֦�6�g�D��/��P�A���Nw+����5���E��M^-��ki.]��"�+��͍��Ei���/Z>�<m5��[2����w�� �@�ɬ�S��K���ytq���^x\|ĸ�8����i�;���k����X��(�Xo����$�g,*Oz�NKaƢh�u�K;I!��FE[�/�z��$r}OҺ O��*�c���������;L��;��c�5�Z��,� b7�mx�W�ivZ�v��wA�^�k2XH<��@���=�WU��oom��q�;��^�8ݜ�iNn��]B-� �mrOP�U][FКTami2���7���Y%@s�:V?�ψ0��[��א�c��c)�㇟2Z��7��=CO�k,��c*�H�y��<�X^Imq3��s�V����m5�.=?T`Ӫ�e�x��Ś���l��z�+�ƅz*pv�e�^�G j�Bb�����-���r�wų�W�(�a�A�נ��P��%����oO�y�A������d\���:�Q��:`�w��x��[��KˍăҸyth�M�^�9�a���5���I��ARx{H��RÓ������N:��q4�� 죥nY�b8U���^���h%�P@<�V՞�]@T^OJ��OC7Qw<��B*���T�q�j��9P�n{W��xm�����q�K'�اt�_oʭ������֖&>�2�<c���� A ����^�y�Y����7��(m\r��t��+�=)�4i��.9�[�Vr�9#��^��ixX�'ۊ"� ������*}�N��Y#�+�`��'�/J�I�n��(���BV��ҾC{j>�D�%sX�-�3q�F�*��ݹ~��؈Ǚ� X�nV���h�/�n���#L��gz�Oʲ�(�\rMy����� �� ��~�j`D `���Uqn2fU��ow:Z St��y���Y6U[p�3����#, �I�ں=6�d��N1�k�Vj��2wG�x�C�,�A1���+��P�Y�?�ʂG����7�v��²�F y��<k3Iqj�\��Z��uGU:���C�DH�J8m�9�k3�v��1�zt�+j/��]��3�x5�&�lR{+��R��7��<��[��tu�}+|��ىN�urh�Oi��}k�J��B#oݾ~_JN�:��kr������[T��&(Tx�+Я�e�ԁ�sڽ�X�ǷJ�VE��/t�R�/C�Rxv�%���rs����B�,����$n����=*�en�:�L�j��Vt�B'p<V�jQ�[�w�=�k;T� ���i+�E�9C�X�Oj� WF��=j���ی�⬶|�����S����Ml�\�:���T����ϵuZ��������pr�Pn�q}I��Q��?ʭ B0H�i-� 7z�*O^}�Jm���`��R��w=�]n�3[J���1X�FE?*тL/�܁�5-�Ώ�A�1��ҹ�$� ��� !�e<����#�݅m�'��Q]N�@�h�ãO��ѣi�� W?g3iv�;��Tr�>P��c��E��W:�*["X]�Ƚ �+_g;x���� �p�k��M����FH����!�;�ܺ��{$��P����<�i$�Z d�#�vk�uK�v��#�Ҵ|7�Kok��v��\oP�Z������[��u�=���Oug���s�b�/�"�FO<渿�/���S��-N�3qz��v�-&ެ�`OOz�41"1h�j����w���V�pv�_���Y|e���� ��O�����]e��e����;? �|uoq���;��ls��;��=B)cT�l��t�g��KS�JqaS����\�ƌ�X��J��{��9�Ո�q� ����z�uݥc�A!�A����nܹ8�:Wiᯊzd����`�k���rr�74�>�['J���Q*A�{�B�+�H%���W��>�n�����kee.���O|�������~�y���`�mȵ]OR��V�w~,Es:����M���>=Ċ�[۠�Z�#���xR�X5}*�,�C�θ�Za�8��{�`�G�.���G�:ҋ���m��#�/�۞9�hƁ��Z0NY��{?>�Ҽ��>'x�U��Q�U�!�����Q��ؖY6�I�z�E�钅Vpv������0�#{}���8N���_#^�[�錷sI,�rZG,[�5ql �X�T�}�m:�\0�OwYԴ�E[����9�+͝IJ|�G�S�F�2dӉM�P}:�!�Kw��-�q[t��Ej^E�z��_Ox1�\w�l��%��fx�'':���K�O_h��,.˂<ש���Q�dQ"Cg�}���˄��˅nƶ- �*����ֳ�e�z�璳9�x��*;���?��e�F�ֽkO�`��?8`��5�G��!�#�{���Vfҙ����'�|�*����.��%��=��f�����<�o��8 #_/�7�[/6�8��k�<1h�7�8�ҹ���|�μ�U��xr ��Q��� �#�b��`��>��Y8e5�t�c����d�6���##4�Pc�rO���Y��wlў9ݪ�O��)��Ve+�>��ϥs��v?)oAںWw ���X��"��9�XTWGM7����H��=�+ɂ0Grj��(;���T8�E�:sְ�:��kp�&T�֮Yje�V?6{�U���#�j������~�����H��4@�8�] h��"�4K�p7=y�K�/ϸ���G3����1���黀*����T�8���Z7V��?1'�Ԗ�̠���\ֻ:��G?3�,�``T�]H��+{V�͊�9��:;z�����^�䃜q�T̒�Hr@\�ؾ�]WhQ�y�j��|���qRԯ��]��� �u�W���=�Q:t'�ϥ>?0ߞ)�h �7A��X�vVzƊv�<��$��P�����d�ɩ�\�#֢��ԐxG�rww��! ��Icv�bL�%Z��TR�ѽ�J��e��K|��@+RVPӓ�?Τ{$ld���7!�(��1�8�֮YY���Z��Dd�}�hZ[L���:��OP�[!�E��������y���qU�$`�OX�[{v�^���П*9���C�=����y<ח_�-���w�=kk⎮ XɌry�^)?�7j�W8$�y�Nu��_�=�H��mf���Uu�#��h��n��r�՚K L�p8��%�z�]њ�lx�̻��2�Ko#+�ps]��&��h�h�\~��k0�� ��9�=~����z�GLJ��;E���yFk�3�� (<v1Y:G�-�"�`�i������Б��?s�t~5���Iߩ��������ǘ(S֪�KP�5/2i�=3Ҽ��K�V%�r�W4��!wez�Y�bNW�~�%������5������{՛+[;���Dw�$�_>A�˵@�Vn>V�Y�G�,u��m�Z�X��G?�_F{G���8X�<�W�W��:V���D��A�O_����!Yf��1X��2��w�9�ֹ���MaFQZ�> iV���D<��x5�ɥ^j'��a��ٮ�[�gԋ4�N��Ri_e�X�k�E�n�⎏�]��u�sDA�q��c�iok�g =�k�%�b��H-���Y���s<7���^zڝGN<��P�����Z[YfhnU��s�Ҽ�Y����DE܄��4��&|��<�g����!�q$�3Y˚OcH�ĭ���1We�~Gz�9n�B��raTt�:8HbH�ekj�"�Q�Ҷ�I�S9�HسX��F=kFh2��A��r���_;F8<U�:� ���닳1q;������趍�t��]7S�����o���GnA���3)E�[]:��䞤r)�Z*�E�~:U�G^��l �(8#��0L�M�����ʶ-4k{U\D�=N*kf� ��ZM���;W]:P��Ӝ�,m!��T�j�� .+�gVbբ�F��g��. .v�ⶨ��k\�Nw��tC�yQ W���I����m`~`��}���a=3���~9�7W21�8������=�4�g��*��!�/U&��3PR��y�����4{�6"˴�]��� �r���@��Gڴ���U����{q�BC�����MJ"��9�D���+ =��K�Xa��W�������v:�����|{KNՓu�&�3�W5i�7�������[V^#��@D�8�qR� nW,�½��NW�J���2(U�09t���9#'��y�Z�եV̉ۦzTJ:h4�]N�U�;��W9���_ �?J��L���Edޤ%0Y�9�z咹�[G-}j�`|�0+���ǖ>خ�VT�܃�i���ݨ��:�\�CD�y��r� ��A���������'Б��.g��Esz߇�f�� �ڛN+`M=�����N~��bYv)���<m��*z�v!H���+�E~�T��z泄JA~�h:�_��1���E�۷ �� 2���c��K$?�\1`�Fj7�6C@E-��p��OOjtk�A9#�>��٦�x T�q��F$��R<��װ�����8�H�39�����2'�8^ǂh�p�ѥ�Wv�\���{�lzt� ͉�_vX�"���M�ZL�=(�r��IտvA�5D�0��gP;��ҫ�2���uqVEH�b�=�H�(A��`�sD���Tc�"D��q�qN��(�� �wܼ�9��AsĄ|���N !`GJ�t��<�1�z�r�ǣ��cQ��;�e^X�D���p�q�I�}���U�Oa���*��8�Cr��{з�I{���[�8�<���%RO�:���Lh�W���aֶ.������8<�+kH�!�ڊg���ؼ?�j̫ǿ��1��;(���y��<G>�t`��7ݽ+�t�D�JL���^A�]{;�aڧ��d[�V��`��X��Q���tU� j~�x��^ ���kw�<���#�|{�J��i>��Eۨ�cQ��_Jh'W���dۨ]Ɇ�����q�j�E2h��D��y��CSK�.d�[�U�͟�[�����k�����G·�֚�J���/�a���Sh �FFq_���w�����Ó�5�G1R�`��_����^�%���Ո���&�V��K��g�UZ��G�6�n�5�x�Z�f��(��ˏʳd�Y\��;�Գu�D*p�с�GZ��AZH�*�����1�АGzv�"���u�ڌx�]�U��dksú���bo�X��^��<����9�k�N 3���¬R�}S�=[H����pH���k��7�,:g���3h�\�3�_�bb�����]�/�20�d`�k��?�9^ǃ��� pz����h�6v��[a>�����1�ҵ��C����2A9=��@�)'��W�����̵;H����9����A\Ο��98�+b�|� <�^drN�.��-�R[Փ�hˁۚ�!`�$�Q�@2:����Wjy��c���Q�Y��uڞ�CQǡ��I�T����>pq�zt�)!�*�@����J˞��ZX�dps�:Ӧ��q���+��L�b|��y��k�91��=9�b� JA8���3��t�*+�]�y�p8�V�vL��،�4���P}�G ǥm�g<��0u�����I��M.)��@�*���U'8қ��'�\zq֡Gޱ|���-2�O~j&�]��C��հu��R4=x��F>��}5\`��<QͥE�^�y��c5 ���$R��k���f`���Z�uy% ��=����� ����b �O�5�({�T�+jeCj�ˁ�z�N@ I�+V�O���s�Z�X�hv���4�D�v2�� ��m��=�U��l��|Ҙ��:���g�P�(n��J��q�t�M(`���j�s2���h�BՍ��"]��\G����B��$�+K����&���^A�Ă(�s �1��M{{�s� A�vq<H�Z�L�c5�Ծ٭gsޢ���w��x"�19�5��*g���NA ]�l��[���H�SG�� �d0�`��1xW*k r5�+��NW�}�(mg�3��������d��*����'����KR?2@�������d %�g�J�?���b#�bz��և�ы���j0O��YA���B��`��\��>������U& ~���-����9{m���ޢ�x Rw����C�u *���V<�ph��r���J��h�tp0�.3R�~�TڷV�p}�U�NR���մ������dt��yt}D�DlT�9�^�c����(=q�s�Vb�J��:{�TpZ��M�<FO j3�2��^8�~�����G5���Ìt����pcC�]�WS'�g��xJV�;psЎ��x&@��0���������pK�|S��c90x��e�Kc?�3���:��z�v��~ qԑ�+���9�����T���x#9=)g�;X[g��xUT�xV�:P~@�8kГG��Oz���X��EWԣ���pGNp�֤M1�c����O�H�����s �x�R��*�!%���AO�#�����W[.�<�� ��K�7h����j�1m�N���H�Mz'��@��� ���vߺz�\DU��{�F���*��C���݀�W��U�mb �`�M��[��������q�]Q��rK��d��ߚ�;�b��s�'��P�U9�_Z��]Ho.�����QE�9nv�N��������c_.97���j��u�G;n8c�u`�~%�6giW��z����<9�k7��D���NOZ��^����8�?�P���(>A<�W����pB$&RH3���؎edwR��c|H���bz����uƷ�I��q��ɬx����ÎxZ�.5�r���t0�j��mE�Ꮚ[����,��=G�]L~;���̹?Ú��MH����*K}v�%+ߩ�Ň���~�L�!�J���OR&��)1Q��q^c�ɗ呹��c�u�$�=j]:�z���=�þ5�$��eV�'�b�&�r�U�s۸�����Hl�9���[_��%���S�Q�'����푇_��Q�]�����pk�?�+�d�>�����R�Ų��9�Sv�kS҄�bA�f�1ZVѪō������W*��$g��vi�?+d�G=*�+�N �dL�*8�zb�5��F���V��$�<��w�ʇ�;Q)��F�n� K(ۃҲg`A$��V��������`Kx��'#�g��'dXv�'<�lr�`��j�-�(w�ǵD�`)9'�+5��I|�p;v�U�q�p�#ӑ��j;�1�8�����+�=M; ŏ�+���?^i��ʐp;���^sW,-Fx`8��+�خ�+m~�����p�t��kf-4:�z�9��0��u��q۹��Ӽd�9�Z|�0,x]���G%T�x�Ikހw��C�m�Q�sf��$�_��5l�g������α���NEV�v�'=@�L�[��)6a��m���#�lvAs��_o�l�8�������8�1ӭsʻz�h$b_"ƾ���Q������a[^"�DDr���Ep���Fe'5ч��t��W{u�v0pr0z�ov�y��j�no��9�>��]���q^��_.����s���x��:�����,�K�I���Er ��y���I��g\*�w��Lw ��u�e�ݨA���t�D��'ԓ^��/.刿�?�x��4�$n���s�<_�xus(�>�W��1X_�E{���U� �1��Z7��M�g�"��u�R�Ma_�I�w5��$��5�> ��f�T�B�g�?Ƹ�]YI���|�&$My!�Y[��k��r���x�{����d̈́K�q�#^K�^|&�<C�i�K;H�F���u��[�D������n��D�42X^.�9:�q^�:�p����;�ѩ������'×�-��2��"��BǑ_c�؟����"ɕ�8���ྦྷ�#�R9�w�������4�E*���y;�ў9�$�NH���^��J�=pdx�b ��@�k����Hc�{x�ߛ ��oEl����Y#�e������4].�K�6PY�N}Qo�+KDGL���*����aqXm���r���{�穛�]"mCJ3O���"��c$��k�H�و��=Fk�<;v&��C��:��zׂ� �I�<W�b[u\�n�����O_�_��F��J������穮R��|�9�=�oL�وܑ�Ʈ��p�W:x�WE9�4�7<玕B�o�x#�����FGz���^[2�7@���u���\���1�S��(�yr=��m=馎�N�kE0�- �1P,q����~�k��G$y���.�X���5��r)FGC[��#��ʽR��{UUZ;��58^���-����=s�m�� HR�1<b���o��xv�s��V�ÿ�l����<RE.����ӌ��O�;�I`�#��Rַ.2R���d��v0GZ�@p ��4����q��+���YFOn���)+X¤Ze�����*cE��0[�qRr�O^�Ӈ�\�#�j�g�P`�,�G<s��J�,��G4g���4�t�c��k�'��ZYY0zqڨ��I���4���*y���D�_����S��̓�Nz*� ����Vb�A���M��k�q�lv��=?:C"����w�ߥZ]�۸��t�N�pw�i�$��沵F8Ԝ�TJqF��z�\"���=k��&������C�Enzy�^e����zU{�=+��b�Z�;oQ�5�(��m�p �+�o�~6WG�)���ߊ�;�8e�)��5�~#�&��i��8��f_:���6;�Ԇc�{��2F�c�WI��!�n{��\]��%��Prz �<#�H�!|�~C�}2�,y�Jrrg��Q����KVیg�����������g�^�ȶF7��:�ֺ�5���:��(5>d:�MY�c���t���ƍ�������4@��G8�����+���lV����hx�P�q�Ć�jڰ�Ǘ[Jz���2^�ȥ��Gֱ5���܄�>�ƾ$�6��p@뗭=?Ǟ!`�ڃ��I�Ww�gQk�a!M�#ڼE��[��&1�ڹ[����ۃ�\ޝ�^��{�+�{V�=��v,{�jڝ4��Lݺ�:v�*0�ƺ2�6�W>���� \�=k�ӭ���$+��C�Roqm��9��j:m{U�Pl<`T�z[�6�b�@��ҕ�@�z������}���fL�c9�&����µ��$ �3�LVrI�2��q�N=EQ��X����Y�_�0�T�ePF1���k'fZ��m\�>�� ������U�#����U?�n���Dw2��7m �*�!�c�j�DS���."F眎>��t���jT��U-R�8���1�Ҵ���:���x������R����i��iO�p��M,2�-��pe�o�U�wob@��UA$��:}��Ϲ�7�)�0&��8=�'R�P�F��Ҹ��(�XH�L~5�{tT�Xu�*)#h��6u�e�qC��`���~X�9���mM�j2,dn��<�\�&�@y'�יV���;iY-��L�d`Lט����HIi�������j&fb��yεɐ�g���n �㦥NX��/uw�RFG<�V�bA?�Vu��f�����W��T�I��/�6:���F2O�Y��0Ny���G����%�6"�'8=sV��]yV�X1J9�Y���s����5�c���eE�{sZ6����8�r0υ<�j�WXO�q�ç��Y���W�f�b�Z�����#��>)�l�~���;*���+�T:��wV!��X�i�w�����[[��ƼR;�3��n�����\�Ú�FJ��[�z;��/����R��^;��y-��<x +�<`�ȵK��������kA�:;�@�1-�rH����<���u ymÎy�=��c�G����>���w*<���\l$t��.I=3���#��W���'#�SG>O�O>��.��B�=�Z��A^x��`tv��zq��[:{���'orB� �=k^��o>�N1Y��`uP:;u2��t��;k�28��i˨��w�qך��J�7`T�=O֠�E�pz�e>��n���5V�P� �Ts�5�КU,r8�CM�Av;�= c�j0��A#���s��R}��Oc�R: �U�>N�J����0H`�<��`\�[��vry#��]SVg�q�=*��'���Y������Ӹ�_�����k:�l�xj��.N>��X/.���+"s��x8�j����}3U���52�:q�z�G��cJ�LG�~ُ�9�˶'��jY�`��8� �#��ɴ^B�Cd�ׅnd��J��b�!�*V��<��s�Z�+Yţѧt�{�Y����V���o=A=�+�j�)��$|�s�]妿��>���`�6o8sjz���#�&��qʯ\U�X�r#�a����Ήj�;}:��n�Z>X��W�J7<�{�^���uǨ��\��'�Y��y�T�T9���\f�N�n��9k�x�/ڢ��H/Td��>�W9��L{���!L�ȭԷֺ�*�N�� �|���Փ�Q�O �k�#���ֻpvx�}������k�Ot�pO����3Wt�K��fڊ��W^H��-�m���)w���BY!Aq�� ��6�k�P���nrz\������y,�yb2@���ןkj���#b7gzצH�h�I�ZM�m踮kX��v"|�~�#��SR K�*������8��3���'���:���RDa !OcRx�E�H�$��A��0O��\4W�am��q���Q^^&�kCӣ%4{���+���1��uVW��w��>���&�Ę�:W{�k�a�1+�y�^|y��0�H�;y�rX6��֮�rv����h��8�[����K��S���]����)��LJ:��t=zg5QK!���㊖9H|0��[ngckH�ʙH�]~�v���WgpU�={��i��rFG�mF�+9k��GI��w�n�����p�9ӥ�([��s���TTF���R�n#��TK����&���Fp+(Y�Y���m��߽R����Rv�kz�T�x�Eu9�u��I8�F�R8+�:Ky�QǠb�Yy������� {��t�Tt��WVv��ȵm9��9�qV�{UH�2�9Q�[���z�y\�@�I,� 8ϧ�E�$L�d��' �\����Ȉ�1�*�NI�U�o,\z�Ue�U<�sY�Y�(��߉?��� �rCg�ְ�ԓp� U��c���j}�E*M�������T7Z�h��>��j^ �G���5��+D.<Ìt�z�x�ټ0������b$ ;��o*Fʯ�� p^%�w<ߚ���;X����p�=+�U�U�,������x��+;<�3�^�W�NU㷗,r�������8���Fϵy����.^W,OPk���g&�V ��t��-k��֡)y\�OAӯ5[N���m���cB�%���fk�|/��U :zb��؈P�,"ӭ.z���߇J�>oS�k��t�*l�j�a`�����k�@�6�s���kƩU�we9$��t��@�J�3[�B�����U("lw?ʦ-��`d����yJ�6�-�s�K�q&_��Ms��$6��>ƢI�ˇbA�A��itF2}Ε5��g�kWG�~�=}�����F ���C@�*�8n�5�Os�o���~,���Wy�M�� ��#l>F~{�+��$�`&N#*vi\��iȑ���_Zֵ�j��aq���hYNH���uFV9�mE6A� N�Џ֨Z�힟֮ō�թ14_����3Oij��q�8����M_=��b핐� Y�O�0<R�8�5��\�lg���e;�i6w;����Q�� ��C]I<�*�s8�ɬ[4.C1��d���į>��6Ȱ� g'���g��U�,� ��9=� �������d��>�^�n�\���h9�qYZ��i�9��V��U���R=+P��~r@��ɻ+�����F0}kT����Ҵ� �F���MB���6x鎂����3n�z08\��qX�Gs0�����\�H�H�^��,�$:�#5�-MS���B�0��y�cX�$��J��Q$������Y�S��z�,���D&y������A�+��� b��J��V���N8�+��t�� �z���7M�P�u��z��ۊm|zW���BVFp���� �d����}+����+���Svn&1-��)��}i*y)s�zZ3��䝉����@3�J��^)YS��-$��9�Z�` ����z���֤ ���)�z4�&k�ps�q��V����+&9���Gb{��ƹ�B�},E���q��W8�Y�h��s�ֹ��xl�����tݑ�����D�@[��� ��3����@@ǭ]�Q\���s�r�4wү ��r=i�+�=+.�b@9p*Cv��ǁ�\Δ�;��E�a��Qڐ3��g�Sk��=s�L7 .T�{qMSc�4�=H�Ӗm����Ymw�Q�9��{�i{b��lM$nAtC�*j�������\|����/N*Ԝ0���z��G#9J(�]E:Sd�������~��ǡ�R��2��������wW#r�cl�����s>[�펦�!t�㧥*����s����X�U�,���,�s뚭6��r� ���Gh��$֙)�#8�Oj��`�֓4�@����� H�J��f���۞O5��<�����ti�VsԩRJȩ4��Ȧmn�q�փM���u&�]0�{��X�N9ajOs W���z|*Ĝq[�Jb8�1ӥM�?�q��K�H̱��c�95�a �>^�}������(m�d�W�_���Pø�#�T�Q��Ց�dzzT2���1����s�Fȵ�ߴ<��] ��G�v�s\�E+���Q������{���?A�t���1P_[��� ��]&����;����}���P]9�|��V�j���fRU~Nk���[�� pO_Z�M��T�r8��jb���6�����qm��H��VYŻ�n�0+��meg9��>���j���Rh��3�k��|Lt�ȢW�'�]XN��s�O���Z�Y+e�}kH�����LW��;�!��;���^�m�$�0\`����U��U)r�#F��6{f���|?j�;c�R�\l��S���'I��@� ��j�Z�5������ɗ���t�x���Z\9� ��Gbk߯�q ]��N:�'�o���K$jU�B+���څnF|���\*�a���q�{�S��#/�Мֿ�<,�(Ҫm ��[�.�0E5�V��g�J�j+3ܼ?�H}��#Y��_��J�? kK.%�H�]���X�c,?:�e A�)�=��Z���~�TF@C�v/�����kOK�*`!��V�N�<��Ayxa�Mk�Wȭ� �@�^Se�E���:sҵ�<H7����5�q1����X������d_�DpI�7��*2�Ϗaޭ�B������c�]����;�.�[,��|����0���/~OJ�[��������Z��+���~�X^+G�`T�̅x?J�'�*1���J�>#�����t��l�Ia5��_L�O�X�S���l�˼�`s'�d�k�'̬:VS�oN����?��*�����g���c�� ��j�ψc^L��Z��#��a�P���~5�ʨ'w^íy���WL7B3Ҳ�M2q�欥�KK��~���k�܉G�qY�~ E ��O~}��5/�C�Ф�Z��|_��e��篭`�RzD��[�G�� ��3\��⑴����W��2Nd�5r�ߎ��6��<瞕+�U��T0v=K\�NqׯZ�M�ȡs��J�����7�ץp:sp�c�_z���=J��*��F7g����39h�$���:��Ew}!V�ߥa\ܼ�3Tc�?����4���q9����DYgwl瞼WA�K��6��G��=6�z�$ga?��{G��3�(ف�X�1���70�.y�߇<5�F�� �5��i�L\�6�ю���Yik�W<t=M%���8���!�'��R�DV�J���qV#��3��튰c ��GP���H,G��t0��sr��H<q�e���)# !�j�wu�;�7r�4�q�`��<���!��,��:�=k[O��/�V�`bPs�N�Z��=�nv=o#v[�,�܌\�x����ö���l�y<��Yzu����9'8�4i�3�x�"��F2}�G �l 1[�R:��@�r:\�*T��]V��jeX�+�2�b��i�4��A�]&�a!a#t�G�W�Ɩ#P�7�J��zWTݜ�v�#DA��� �}��T���q��u���B#�=V�@s�ۚ.gؤ���wu�<���-��,�89sޱ�����~}*+�D(a���;VD�&R[vH�}�H���`�vd�ǽ'�*H�<�X�^�ޝ,�.I�c��Ӊ���M�屓�V\3�L})Z��z��AcE��j�qr1�rOJ�5���5�yy�.V���r1�;�Ⱦ�9���������q�͚������5��lז�y)� ��y�X���g�����b�����YW�6I�9�IhRZ���OBx�Yw��I+��zI���ɻ������Z����Ek�͌�9��ҞdVQ�έYc|�ÜRZ^b^A�̮SB��<a��9� `�[� m�ӭt���ڣ�}�I{f��(���JPR]�/�t��%2��?�f���G��z������+���̏�#���2pi�x�m�i�B�g<VK1�8�Y9f9�J�MV������+��bUEg���p���Q����I��b�z�O)h����OPG���ڤ�g9/c��oac瀣��~����Ջkp[p���<� �yf��Z0G�G*��fA�~4�9��Wk�R��H*����7�.�Fq\�0÷f�uK*ĥxjr~~� �➷G;��x5.���v,V{Y���2���:�\]9����,EiţN+ҧ�8�:U���8lV~���Ą�ʦXx�jY����Ϸ���ޜ�̓�~���=?� ��� �m��ՎI%�@�z�沣���}��J�督��C��uG�6,<��y��7$�yw�O�1��sR-���pG��bW4�D�s�z�����2}�J�kd̠�#�u�֚y�Ҽt�z�B�3c�cʯ�Z�Cf�9^G_O��mA�@�*�:\�9�)���70a�,A*9� a0�t���MՇ_aW�t�t'���i� �Au9ht���8�&�Ǥc�z�ֺ�m#�9�`i� �'s\�ƾ�QG#�6d�8��O}0�.<du��,p^y��)�`��>��֙|�G�i�c�:ӓO�x\�zWQ%�+��y����e��3�J>�Ñv��Pj�:{2���0=�*۲�W�)�����v�H%F�:���LE��G�T�HU��T�ӧ�T�#�W��b� ��3�U�����ӥLqM�<���X�sҚ�䜪�{WU�i�*;�����!F��Z�U%r\O�۸�Ǵ�cd[0}s�[Ƅ��4�u澂XDσU����x�1��q�;�㾅�G��qڽ�3�ι�3n��%������s�?�? �{�."��q�N���0��c�y� *��qֿBu�C<,6�z��<K�ky��s��&�y���,�KI#�"k� �@����~e�e=u�ZZ���apY`U猎I�Z/��-�_,6:b���g�c�X�T���b� v��l�:ҵ|=��+�I�]$��0���z�&�9V�ݜA�e|Lu�o�X��=8�G��G�C�@�_ ����`qZ{9�fG��C���&W�9�N��>-��]ϖp8Z��R��""���J��xj$�IA@�+���飋I�|���7ܻ *GRjώ�P�%]�Pz�W�x�C��P;��:�o��8^8<u������_C6/�N7H@�'5�a���}�5���yR��략��js��F''�kH�Ѫ�4x�G�=��Ń��#�OJֲ�X8������œ�~s�>�Ҵ�|m�&fS���+:�%E��hK��ŧ� �d=1��W2���_7[x�0�q�z�5�o�#Ù3��\���G��>��� L��5j?��� ��t_���z�$~4L����}e�����F��$R1p2f��;T^e�>���O�.��I�ژ�2^A����ZKX=����r ��#=j�Ǎ@��A���Rx�s'8��T.�b��_�^y��]Y�)S��}���D�s��+:���U�:}��K��<���T��2�H�Һ#�U{���Os��d��\w5�� ��r:ׯ�x�x�ys��I�wz��>i[���[C&w��J�=[Q�n$I�u'�s�����F���y�֠�d��U���ýw��`�"x�q��u/�\)c�<����!bҞ8ұ��!~��T-q�I&�:XCdpV�V�-\\3���U9Hc��ґ�.r8�_zo��:�ta�y�>Љ�np+K�c�Z�@9Rz�h �$ؼ�<q^���^Z�����b�v[��0�9��-��|;����<��w���p?��Z�ET�U�����ʾm]��֤�d�a3�J���ݾ���6����5����l������j���9�����QKue��g��^;�c��c���O;9l�q�� <�n#�w�U�q=�#���ۭo�:s�W�z ��X�uު���]Ƈj"�]͌���QW2l��h�T�g�Eh}���`}�_δm�X���MH���c��5Ԣ�1rm����a'��C�.;UT%���]^��}�2)��k� ��rZ��,&�u2�5�� �`ڹꇆ��{{UT@����� 9 0?uG�uS��l�s���,��4$������|�� ��+�Y��v)��RL�L�z���T�;�ʩ�!-Y�������=z�73m+��_j����Nq�&�n�%rܓҰ���ǘ��ǯn*%a���Uۄ�~�JD%w���)j*������zӕ�@����w#`a�������K�O�sR�ZF��?�Fx����� Pi����zT�<��P�>TKst0~lAڳ�� ��`�ң������ӎ��2�A!۟����\P�B�2�����Vlӱ\��<��bXU~i�y��K�R�}+�rՊW7 ��{�I�w�'���:�������;�1i���R�j7&�}���b������C��6�P�ON�ʩ�0l�B�뎕��Z��\6I��9�U���v,���g�U��rX�L�IM����O�t�2,����1��%vB>PO8n+����('�p��8��WF�8����\����8�]���b�ON:� ^�p�������'��fH�Q����1���f����+��=:W���GY�t I�+:5eJi�))Ǖ�<�)Y0ÿzf8��U`mo\��+�$c���Ӛ�SG�bh:shrpI��<c��\r2G��S�b�x�h�4�^��U�ֻX�`��d �4�3 �=��<"��9�s^b��ˣF���;��� ��9��FУ(2��g�dxY2����ƫ��G9���I��%���xB��W����\���:m�1�R`�Pq^�F0x�MT�#6�3�ڦ�.�)^h������ϑ�Q��Qә�Yp����i���Rh�_[x�N���E9��k�|S��Yn�Kd�_K��j;*�瑊�p���_���X�{�⅙��z��q!��+1�$��r}�܆cJkC���p��0��/�w�?Zӂİ���m����q�Z6֘c�5�[}��Q��+��>�օ���d���lNF@#�zճӎ��9�םS��PKs�N���jװҋ�����+;3�q��z�C�Y�Q���;��>�%��PHĴ�cW*с�������x�N+[���=E9Tg��1��qJ�}KE�Ǵ��y��V</>����ޣ��� (�?{���-[��h� ����Q�0F8�ң�!0T䚞f�&B���O� ��I9��������y���U+���?ݐq�p�DJ �@���A ��(����銽l= � 42n�8���C �c�_S\����T�=s]�x{%ېp �V���{��"�|�^����d���Z���,��s\���*���4���e���g�H�dU�ʃW�ўS��z �"a��ǵw���.��4:�w~��q|�~l��I�n�k�mBX�ӯj������!���0$ը���k���"O��x�n�@�����(+?gR��f���F�.3�Z�`r~�3��kw涴Z1M�p��B1��H���z:�6d�9"�K�eݞ >�X`�c��I\�U��z\c ɭXm���5%�� �8�"x�9���f�HlKՅ9�w#^D��.��憠�"���ԭ@B��V9���M�?1^�tѿ��]n�f���8�k ����R�S�o��e����b�?Ƿ�cv����π���Gv�\�+��5KD�x\���@�&�7�[C���"կ��.�t�!�'�sҹ}V�y�:Wy��jZ|� blw W�iW8c���K *zj,L��0��s�3�����j[�9#$m5U�����ڏ+ZD�$�'Ing۽H�R��$#=z�>����sM�/��^Kf^K�ps!�8�N�Ӄ�� ���R�>^�j=�_Cx��w4��VV ��K�ۓ̬}r՞[��sҞ��88��R�DZ��T�b�\�rK�>��p���ߚ����S�2:�4�<\�����r�T���N}�2Ӧ)�4B�I;�iu��?y�y�ZC��F�Oz^�,�In^��8�U�|��判�|V��Q�W2���4��F����*��ۊ�T�7��d�'9�Y�C��P��55��T�S(�:(�9���g�� ޥFx��<#b#��(1�k�~�dB���9��p����T������)���ذs��L��b�0@�G����h��)�SZ�P@�ʚ��F>��q�|.�I⼓������>cC�������R<F������szw��,^l��&��OBQZ�TP��%p �9��F��ig�+��A�����������v��T�fRi��1m�����u6��r�8�Mbiv�[L2�d������/0<�f����M���[�c�����q6���ҳl�F�����:�0éS�}+�&�^��}0U������Y� ����K�� � �Z���'9����Cz�և:�(#;zV�� ��'�ựv<����� a��]0��0��:I�7�Ӷ�O�+��uP7 JuD#p$���&����sr��<�]��!8�j���$@zSL�A� nw�2p6d�qY�����ל�W�e�#��U.YBc������d�G�玣��s�ձq��=�d����㟭d�R��l�H�ҩ�&�����Fu#�*��1����dٲZ f;���� �t�S&�z�߇�\�[�Y��O�K�i����{���/���5���1�U ��f����f �t�eZ�.�NH����LB������� L���Z��pq�ͦ�F�ŏ��O�QԴ�X��q�]�z|P������m!�;+*�Rp�jV��mR�i%Oӷ��`ܱBK�랕��0#�'��k�Գ��F}:W,���d�vc95Y������q�d��4�%p �>� Ϙ�t&f� 㜎�����F�3�U`�m�-��*���e)�S�)-�����<���\�ZWօ����g�й���d���w�D��}=}+�6�.c?vG�ُ,��z��Ob�����R֭�s�X�C��q�"�8O9�Z��7�#����?�#Hx�י�)Wa�E} �?N�fpUx��֡�o0x&�l����̱Թ������zf�~����kֽ�.��&��]g��Hm�X�>����\�!���R 9��B��#��b*������ �-�c]�)�Gz�"��3_h����:�2�#�x�Q�'��m���k��5X7(j�����b�ϱ�"ܮ ,}*���-�y+���Yk{x����S���[�q�5��)E٣������ֹ=mw��8<qZ��bF##>Օ~D�`s��]T��Z�7�[�o�O���jX6�pO���1�09��������Q�c7̄Ӂ\��zzU�k,H� ӊ27�㧭Mm F���7T\��H� I&��[��ܓ��U!NH�[�RT7�A\Ҩ�a�� t������G���`��k'yS���ֵ��I���s\��Q1��y�M1����ۑRN�'������A!���Eg��N ^~P3���=���M��� a����J��)�*ҹI�a�2)��{�ꊹc��9�:��l��8��*Ļ���q�Z��qC��<��y�=j䏻��T��ApHm�8R*y�3�ղ�G-��j9m�'����42(n^ ����x{_��%��#��n�\l���c�*&�A�#=�ʔf�L�֧�_O�)?)#���������88��Mf� #Qُ5e/Vf� ���@��� *99<qL�\�=9�N�a88�)m^#*9lU^Ȥ��"�%��n�:�I.A�;x�@ ����R�ņ=+�g��H� c�#��u��\mb8�X˵�85n v��ߵRZܖΖ�ue�9#��I�-Xv���<��6��Z�ٛE���<{�b��2橹m�����I��J��V�<�8lx9�H�˴�)�8 ����'�*���Gjn(JMQ^.>r>�4q��k�k�!$u�U�M��^k�n��&u+t$b��O�Ix�s�}���� �[\��ӻ�%l0Bm�?�\Ǎt�.�]J�w������μ�Z���Cg0;��'��g͞<��ij����8q��_� @�`p���b�\�3^k�hK6�̱�w>��:mlz���9��((dh�;`J��~�b"un��������G�U��ۏ��듎hu1�R-T��h����Դ��4d�xlV#�����z���6�7֬>Τ��5���Ճ~�i9�ڻ)����Җ�����ɓ�������j_ �����\rx�6� ..!0=qҺVkje�5ў*��d|� u��s�k�!�QA���L��a$Q�?��j^m��pi}��e���=��L�|��k�ȡ�B;�\��|-$q1����s8Iيx'ot����H�Z�{k%��6�=�����^�����N h�c���F9�jx��SOu�j�sΛ�����O4�q�qHzqA���䜌s� �(��g��V!�s[�7���PMds�s�+��Kb^�M��3���U�t$����5k�����ۢ��q�t5���x�s��UE���t�Ia���־N[��f�5,A 3��V�zm����H�-�j����1���79�A~��[����J��vrNv����̌��}��Ko���:��u��%�sOӭ[�O�h���Һ#�\�錪�-O=���N��{֕��l)A��ֶ.4VYN��Ջ+%�G��N┴9=KI`8BlsQZ#G�F@���P�@�X{��-�n~UlV���B9̴�H�eA��54S���9sD�$�^�����ޚM ��n�w@�,Ż ߷�J�y��;�d�˃�q]��.�7���_BY�k >F3ڶ,u�#�8��覍y�??֡���H��sZ'aZ�Qw�/�dg�q�J��U27,��5�����NA�}}�B��#�jM��A���g>Ƨ��x��뎵ԟ��q�z����yl�SZ)�d�c��� �=��J6�z�=���㹪��/^1ߚNcP��ut�O#����w0*�6~��=�s����T�f ����Ϲ��r��$�y����u���,�πs۵2A���j/�V+Z���-���jp��E���\[eaG^�P�% N���.�B�8�U�B[z�����![<c��db��c��*:3�� �0�溻==#�#��G�=+8�dH �?9Դ�����=ri+7�J�+��AW�8�W[;������3�+�G�r�ŷ�O��j&���j Yp8��O��m�XGޮ�Z ��z�¹�؝���5�4o��3�ߥS2�H%s�4�v�o����C&p ?�X�km�J�rpO�S�݃��qS�\����i�`�A���7'c��p�F�<�W����c#�v���4Κ� 9��z�kd �s����4Ee�f&�Nx�@���kv�R�N�ɮ�S��ܠ)�W5�ؒ�A�z��aM�G�m4��n[�+��m�:jo�2�+��wJBc�t⼫�^��`�O@:�5�F��N�J��Vx@��?�L�k>C�^�<,��� t⡸��.~L�/j�y��c��h�D/+�qҘm~nrsһ���?'g�5�y�l8����iz����A�(�=GzUܭ��=�b��Ӱ����<㧥uª�!�p���������5��>>��'9��p��?>�5�\%�M�c+A���� �1]m�(��5�����t�k��r�A�ں�2�u`�<�����No�����Z��2�H��N)S$6���M�۾2����(�܀�Ϧ+�Pq��rY88��:��4�A�<�ʑ�ǎ�ؘ�!�J���/\��zqZ02����uϭP�ǘI?�j�R�I�Q&H�~}nsO���2���<��Iއ�ڑ#B���8��4�$1 ���h�dt��GJ��W�:�^>�Ҡd������W���� �2rH�����;�ҙ<����qQ�8#�����z\��L��;u���1�3�ڪ�ɸ�g#�;~�|�ێ��ҕ��3�N@{t2ġT��U�y%�F:�����S'g��3o!�ң�5'8��*f<����099��ژ�)�Ca����6��\�{t�&����'�=i�����0q��jԬ;�2���d��Zu�|�<b�����G{d_���۞�� �jÜ�RD��۞s�*��6�#� �L�enT;t�9�x5�͌qL1`c9��!X��뤒��?�}É�ʓ3��:�?�[�&_�Ҕ�+��Z9,7!������i@����y���;��J�`��)(قe�\�r? �rTd�⧄�s�I4!��|յ�_R���?7�G1;z�ǭI<ArO �9�w,0rx���@ʗ� ��U_� ]N1�*I��!�sR@��I�¹*4tAX����匳c�����l��W�Z��!���:՛�1�S����tj����W�r�q,Lq��Ey�[�þ�0qW� >2���\���]�|*A���Ʊ�Bk�^9CE�� �vV�I�:��j���^}O�V[�1�e�T�4&�&��Īru�UN��.�g����Sv���֯ B�`a&{c���%��ѓ�iȐ���qXqhd$G����]��ݝ���r}kJ��4�G��R�I��iw7���ʅ-�Y>��������NM���:��DF7ƹ�G�bī��,|4���u�3��M�Ȟ6 bs�F+ӯ�8�L�����4�h�Uϯ�/��b�����x5X0G^+μY�Dh_1��⾧��� !;zW�x�D�Ċc�?�j�C��:ib.|S�;Ík3���zc���]���:澤�����:F23�:�͞$�6��\�{9^'�.tN.�iTFY.y����K��!nk�<�!�g�בK��{R����ٔ�4������F;�0�����Lϔ�ןj�?��"���H�^anH0F �h�AjJF�;q��Z�YڒG����R=_èLXQ�@�]���f`6�1��<7o�:sȮ�D�AF�z�`�������vc����u�;Rz�8wIX�h�J��)�v���ޯN��'�(�S+���ϽtV��h뎝듲��� @�����æF �m"Z�z�`���O��d,J�t�OwU�b�ݖ�Y7�7E<�ո�gԯz��!~a�u� 7AבO0�����N��H�ASf=�*���N���[�S�rzzѸB��∣,O@W��=I�_N�C�<բ�܌�EH���\�s�멢��)�zq���$&�I">R;� �]Ò9�)N8��NG��i��S[C�S�jE��8< Ў,�:�~t<aN:�9�]�,�7)���Jg!r ����F1�U9Ѓ����M��5� �AUnn�7率ޫݱ�H��|�M�ӮWr2}�9Y��^|�\�Oo.�$��V� �I�$�ѷ�霜�>Ս����G~+J�ݺC�yGE��L��:V����9�T���x��Ƕy�_ؖu*�<��V� ����r*�R�+����ES���;��lb���J��a����ZҿF����{��e���$���Kr�0:c8�0]��F�2:g�X�:�� ��0EWiٟvH��ܯ�v�h��e�pG��Y�)B��$�U-�ʈ��nSֲ/�G�y��Rzh#3Yϒ��מ���m�����W_�K��8F����> <����Oֹ*��7�����r�����з$nj���N���( ��3�Mdѭ�(ă��ҞIٖ�;�^7]��t�Zt� �Vt�+��(L��sӟa^�eX1��Ҽ��o�a=���\��q��D�pwҺ�/tʳ��1�!�m�{}+&��p;�H=���� A��������S�P9�02�s۽r^'�VYr"����0pW���� f�2�<�+�祇����� �v�5B�A�NP��j��`���W���X�3�����wƥ�!�<<����A�T���d�+�/�d`���=OE��l�`�c9��qgDj�sµ� �X���cT�3�c��5��Y}���x���\���k��-��h��!����`T����C�@�vZ��ۜl9>�N�D� h�s��z��A�S���+�h���[�6�� ��Si�yU�p8�[z~���R~��W����q� ���n�;��]�鎕5��FQ�=q���:�[M�=�<W�R���E�`� ��^�Buh��w���$~�R���V% `q�j#;;�h�' @R8��i X��'����$��#��Ur�Q)`��Zs�TIq$9,�u0OC�:�W��g-�ǥHA\O���]�BC~Xf`UOn��S�U� �4�� ���Tr0�W��z�We�YŰ�g�9�����]�����c�`t�o�d(Fӻ� ��$��1���pM"��� �@��Q�pZ�C�,r8�2�F ���;��zVrBd�'��js���ބ,1���4�����s����͠���S$�w,A���ґ�#�`��Lt��}C�ϕK6F��Q�g�J���O�Hb!Nѐ?ZӟPM!VU�=���qٽ�y`�F@�9��GR�0��ݷ�?QN?x~4Q_�t?8$����o�� (�{1���?r�Z(���<}�q��J(���Z���c^�?O�E���C��'�}j���ڊ+���M'���VO��?J(��������U���(���i�$_��N��T~�QK�Os.��y���>�E��^��c{M��O������]M[��z�?֏�V�c����֠O�� (�Տ�C�?����^y�?��O�ʾ��v<o��x��?ʾN���!��(����O�3�����W�=�B�P~�RF]��Q�QE_bz���Q^���<���E���D�2��H����WU�����֊+ƥ� ��Ɖ���Qx��=h��J{S��x~��S'���4QJ�C�5_����H�t�G�!������jh:��QE_�%|"���_��V��=�V��:����QE5���t_}��ҥ�����QMn���.[}���#����=袷��"z��uQ��������R{��}��6��?E�B�f��:ч�=���4QP�#C����yU����US�Q/����]��Z�C�袢}}JE����Z��'���E�P](>��WS�/��(�����.E]G�I�>��'�_��QED���?�O�+���ֿ��:(�>ѯC2O�~��UQտ�VOo�.;������w�� (�E���ٻ�E���U��ǹ�x�EwQ� �_�*jOҨI���(����!�G�Y:���Ί+ϟ��v;��A���*d���(���u-��ލYw_�?ϡ����� ��W�>��x��x�QEr�s������?�Z�m��� �+�u44��?Ӄ��ErT��bh��������}(��'�� ?u���[�E���?�ҩ��U��E�?������W��d�[�h���B)�������UC��ċ�i.��������n4V|�i���V李 ?��?����o��ܢ����,G����Js�S���Ee-���o�)�}����E���6?��T����?�E��=��*��ESٍ�� |
| URL | http://zero.webappsecurity.com/resources/img/main_carousel_2.jpg |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | max-age=2678400 |
| Request Header - size: 288 bytes. |
GET http://zero.webappsecurity.com/resources/img/main_carousel_2.jpg HTTP/1.1
Host: zero.webappsecurity.com User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0 Pragma: no-cache Cache-Control: no-cache Referer: http://zero.webappsecurity.com |
| Request Body - size: 0 bytes. |
|
| Response Header - size: 351 bytes. |
HTTP/1.1 200 OK
Date: Mon, 14 Mar 2022 07:13:43 GMT Server: Apache-Coyote/1.1 Access-Control-Allow-Origin: * Accept-Ranges: bytes ETag: W/"112646-1358497020000" Last-Modified: Fri, 18 Jan 2013 08:17:00 GMT Cache-Control: max-age=2678400 Expires: Thu, 14 Apr 2022 07:13:44 GMT Content-Type: image/jpeg;charset=UTF-8 Content-Length: 112646 |
| Response Body - size: 112,646 bytes. |
����JFIFHH���ExifMM*V^(1f2x�i��HHPaint.NET v3.5.102013:01:16 15:54:14������(HH��XICC_PROFILEHLinomntrRGB XYZ � 1acspMSFTIEC sRGB���-HP cprtP3desc�lwtpt�bkptrXYZgXYZ,bXYZ@dmndTpdmdd��vuedL�view�$lumi�meas$tech0rTRC<gTRC<bTRC<textCopyright (c) 1998 Hewlett-Packard CompanydescsRGB IEC61966-2.1sRGB IEC61966-2.1XYZ �Q�XYZ XYZ o�8��XYZ b����XYZ $����descIEC http://www.iec.chIEC http://www.iec.chdesc.IEC 61966-2.1 Default RGB colour space - sRGB.IEC 61966-2.1 Default RGB colour space - sRGBdesc,Reference Viewing Condition in IEC61966-2.1,Reference Viewing Condition in IEC61966-2.1view��_.���\�XYZ L VPW�meas�sig CRT curv
#(-27;@EJOTY^chmrw|������������������������� %+28>ELRY`gnu|����������������&/8AKT]gqz������������!-8COZfr~���������� -;HUcq~��������� +:IXgw��������'7HYj{�������+=Oat�������2FZn������� % : O d y � � � � � � ' = T j � � � � � �"9Qi������*C\u����� & @ Z t � � � � �.Id���� %A^z���� &Ca~����1Om����&Ed����#Cc����'Ij����4Vx���&Il����Ae����@e���� Ek���*Qw���;c���*R{���Gp���@j���>i��� A l � � �!!H!u!�!�!�"'"U"�"�"�# #8#f#�#�#�$$M$|$�$�% %8%h%�%�%�&'&W&�&�&�''I'z'�'�( (?(q(�(�))8)k)�)�**5*h*�*�++6+i+�+�,,9,n,�,�--A-v-�-�..L.�.�.�/$/Z/�/�/�050l0�0�11J1�1�1�2*2c2�2�3 3F33�3�4+4e4�4�55M5�5�5�676r6�6�7$7`7�7�88P8�8�99B99�9�:6:t:�:�;-;k;�;�<'<e<�<�="=a=�=�> >`>�>�?!?a?�?�@#@d@�@�A)AjA�A�B0BrB�B�C:C}C�DDGD�D�EEUE�E�F"FgF�F�G5G{G�HHKH�H�IIcI�I�J7J}J�KKSK�K�L*LrL�MMJM�M�N%NnN�OOIO�O�P'PqP�QQPQ�Q�R1R|R�SS_S�S�TBT�T�U(UuU�VV\V�V�WDW�W�X/X}X�YYiY�ZZVZ�Z�[E[�[�\5\�\�]']x]�^^l^�__a_�``W`�`�aOa�a�bIb�b�cCc�c�d@d�d�e=e�e�f=f�f�g=g�g�h?h�h�iCi�i�jHj�j�kOk�k�lWl�mm`m�nnkn�ooxo�p+p�p�q:q�q�rKr�ss]s�ttpt�u(u�u�v>v�v�wVw�xxnx�y*y�y�zFz�{{c{�|!|�|�}A}�~~b~�#��G��� �k�͂0����W�������G����r�ׇ;����i�Ή3�����d�ʋ0�����c�ʍ1�����f�Ώ6����n�֑?����z��M��� �����_�ɖ4��� �u���L���$�����h�՛B��������d�Ҟ@��������i�ءG���&����v��V�ǥ8��������n��R�ĩ7�������u��\�ЭD���-�������u��`�ֲK�³8���%�������y��h��Y�ѹJ�º;���.���!������ �����z���p���g���_���X���Q���K���F���Aǿ�=ȼ�:ɹ�8ʷ�6˶�5̵�5͵�6ζ�7ϸ�9к�<Ѿ�?���D���I���N���U���\���d���l���v��ۀ�܊�ݖ�ޢ�)߯�6��D���S���c���s���� ����2��F���[���p������(��@���X���r������4���P���m��������8���W���w����)���K���m����C ��C ����"�� ���}!1AQa"q2���#B��R��$3br� %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz��������������������������������������������������������������������������� ���w!1AQaq"2�B���� #3R�br� $4�%�&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz��������������������������������������������������������������������������?�.�f�Z�4��Q@���4�}h�����(��(P(����ih:Q�i?�JZ?:9����(�@v��P߭��K@9��S@jJ:�w���-'n����������4qG�����ʌҚ?J?J^}h����"� ��zP}9���P(�Rw��4�i�֗�w�(�����zP�t��4����*?�J?:�9�x���PG����Lњ?iz�@ ֔�=i)G4���ڊ 擊:�Q���z�g�)A���%�2hh4�ю(��Z)(�����u�w��w�Pi)�ܚZCGJS@ ���(i:R�A��i���h&�����>��ޔ� Z(�֎�rhM&h�Gj�Ҕ;���}h�i{PqA �JJZA�R�;b� �G��s�J8��zSހ��f�Gj3�Gn)i�^�i:h��x�&��Z(�)h;��Hz�G�h�������@'�KEZZY�*�X�;����1FW#�`V�G�iGkd�,]�3�b���Y�M�f�RqO���&q�@�Ն�ld�el���R-����z�i���x�x�V���Z(z�@��մU�?���֓��2��E�}?Z���R�@ GlR�@!�h�x� ��~|S��ʁ�U�c8 ���� ��� �g�Q`+�d��ir�� psQ:4g�O�����P(�S�-%-7�����E�-!4R�f�})E��Ԝ�R��FOJNԴ~~8��4Q���)�p9��h���v��?��x�PA���zӨ {R�QHiGҀ �? ? Nؠ��_Q@��G�'�(��4R�����}�M-%%-���f���3E(�����:��4���PsK�Rc��K�4u��@�i1�-�ڀ▒�O�G9��Ҍv�ރGjA@GQցG� � _jC@�1GzN�(�:����@�P�JN��i(���t��J;�ޗ4���A����4�Ҏ�){f�����Jh�i(�JI�(h�Pϥv�f����c�@j8��zs@ �(�Qޔ�P�_˺�\�#�[#���}E�[����Y�t �dS��R@A������ާu�Hl[|��;D��p��>�ތ�tg5���G���ʹ�w�߃ב�2&ѡ�w�!ך�?���k/��~�h�Y��V�#���h6 ���?9Ht6 �n �M�ς�N����4[�y��ѲO%��=;֮��#�>j�d����ñڃ��?:�$�ߖ����W�x�E���ba�^{����!v6�vCg����'{�R�- ��$ �xڭ#ˊ̽���,T�'9�����%�p�.��G�늡��RJq��Y��5�'�Z:U*�*A����A@��t����g�.9���~ �<I�Mw�����)�2J08L����ך�����7�a�XO�]�����@~��m���ln<9u����\3j&D��mWb�8���8�"��sg�����'KW���z*j6���ww�� zsZ��L�ݶ�ͫo)�$�t(P��N���y�:g_'�� }���o��Z�K�=�Mυ�JZ&��<���W�3�k�/X[���?-�k����Z��G�u��s�H�t��9��+q���˫R����<��ΨM�~�`���!nM>�iv �91�ލ�v� P�!F���{��[n�}����͔�����RmLo� :Qۥ�H���Rf���P:Q�((�b�):u�#4PT�ʏsrH#GuVr>�'��S4��dS@{G��g��Ѥ���5X� �k���=8�?�t7�Ǥ�k�OGt���jv��C]����=:��:F����mܯi\B���ѱ��#�W��Ң���n/4Fu@#G�d���G�z�:�QIhL5?=<K�c�φ�Z�ÿZ2u>He��s\�Ɖ���ݫ.rf��>�f�������Oo�Fe������ ���_!x��Z�7�I|�-���ZI��d��9yp��j��*$H�w;9�}GJ����s�*��Y�V��l��FTZ�pF}���0�P��O¡������RsP��sG&�Ζ� �?*Z(�����-%-�(�G�� �I��pSҚM�u�q�.>y��dSŔC�;}J|� "�ʴ%���g�����Gu��(�`S�������2�;w��ԩ��f�CKIE q�E&��@j=���Z? :�O8��ZO�����i����h�SG|Rs�ih�� J^�PzQ@�旷Z3�;w�G�A�- ��>�w��9��}i9J>� ^3Ҁ�4��P(i;��I���w��G�@�<���4P)G���ڀ=)(ϱ�� �=(=i>�dPx���ր�q� �@�� (�ހ�� -&;ө(�P1�"�1@IA�ހ�����PG�n����g��Ŝ�+%�l���Yd*x �Dנ��P��%��tmL �bIܼ�µ����^���A{x�L���d�X�f�O���o����4��鮺w�>'D�Qg�8\�o�2?O����&��ƛtdb>Ԟ)�ء����q��]k��[��е�CC��r�y=�Y�2��Gþ?�ԅ���Y���υ�{�GJ��I-��y$<�U?�����1agp��&�`�1�\��dJ�]n)#�ek� ���v}�f�fz$e�Kyd������#_--�=N[�⬬#���E�-$����۶���$�0"��n�-��^R�ʼn�Ozm+SsR�t�RP���4f�Ҁ=��Dԣ�ԯ�&h�;�)p��������+�7�o������z���imƯ���c������f�Au{|�c̫v�̌�VE�"���;����=#�_����3�6y�����Һ-x#8�L_�^��i�km'����Ɣ�c���6e�����C�Q����þ$�vJ� ��g����'j�\鳫��GԖ%�˪��e�� �=_#�T�ٌ���-�H�He}����6������,ҟ6K��U�>��{z��\�r<� �_�n�H�'�{�@�Nk"����K�tH�ʲh����O;� ,�s�_(��8���I !�s����I��I��&}i{Q�Ԅ'j? _ʓڀs��Η�E��>�R�ZN�R���ޕU݂"�v8P;��P����y���"��G���a 2�*��:`��W�΅i������������g} i�����mDK4�z��1F��>S�e�n��o�f�}&8��w�%wI%��;��+F�B��������CD���R������c?�O�Z��z���aL����17��zW��uM����o��i2Z��`� *�#��,o:\+��$K�0��p�p�)r<�X��|��G}zu�;�V$�3��K�Z����!w��X�X��θ��N?����2�H�(E��(�X��nr�8�*��}й�mƪ�{�1�����@�A����֖��@�g�攚%���p+ҭ>x�T�T�<���,�t��3���������$ifH��p��q_Z|�7�C�.�e�]��'������0�M����ޒN�3�j�>x�g�<e�K��<)�h�`��YI �p�6����>��bW�G��[M��H_xn ���n�d��[h��5�_|7� Mnf�Ҽ7s4��2�B�PI�J �)Yligk������Ԏ�l'F��W�����]�ˈt��A��l�ܚ���R?��vW�qC��-Na�w�,6�����^�$>x#�^֚$;V�v}�+b7�����jo��0����V`������AK@�@�ގii(�E���:�𥤠<�P:�Gz(�G�A���֎��c� J(Ԙ��(<�E�ƀG�QZN٢��G^�Cҗڂ3@){�ފJZZ(��E�G��K�K@ �E/zLPE�(�@QHx��I�4u��Z:R��AҔZO���z��撖�}�i;�Gj:�{R��h��u����@ZZm/"�ƻ����x�g�y`����>b��1�}95�q���g \h�;����jZЀ�7)�COʮ��L���(�+�˫|=dQ�m_O�&�]�>��������!m������t����I�?�~&��_,k�gbu]y9邱��u�Ɨcc��f�9pYP-&�pc\kY�ӵ���5��r��[��7�i�L�F{n9���<Cg>���Łn<�c��+��,����E��t��;��p;W�j��y�Q���vK`v��%���$�d�� �{T:�Dm�3M&�@���:�x1ϕ���SP�l������ϚĤc�.��B��j3O���#�֣?�&!ԟ�4�� ���N1@��[[���\���L/UVUP�nΌ��M}{�U����5-ǐ0u^�S�3�2G��Z�s�b��j��$�"Tā��w��T�j�_���ɢ�������"@WV����}��3����D��Ƚ��]�O��x�RF ����I�7�b+�O����Z�>S+1&ي��'����~#��M��M�ϋ�����֬L��7� ����|w6��,v��l.�q1�����S����,��n����f2��k�N�v���X(�1]�&���%�19�%���s���O��$��w��רv&�N��O���oƨ� �tʮvđ�N���˓�Ε���<��G�A��B�((��ր�4PtiM�����qI�|������[4�|i�YK����eh�YSvY������c�k[o��U��Զ�6v�h��VM�nGpz�T~$)l}��� ܇�i�-�(��ppy_�s��dz��������|�b{_*E�6(��\���>�8�o�L\d��s���W�v�J���>�̗^ ��G�����&+YL�ώ��6��F@�]֗��;�'�|��K]s�R;[ڠ�)0]�߯��:X�Z}�A��{$%��u5���~�+�? ��<7k�b������HR���X/|�fǦ�A���&���ܮO����Z��Le+��v��?�zȻ��� �H[�+����c���95W5$� �~���`��4~�~4�� 'zu'��9�h>���8��4sá[_�WP�nc�'�ý}e��U��:u�z^������$#�F g�����Q����[i�EPބ�3��ᧈo4먴�XY��Q��1�Ny��R+j{#��k��=1��7��0�0�l�ud��+�.1��5��|K���f�?iWWL�C]�G��Ry������Ť�(��֗�M.B t�����q�L[2Os^_��_�Y�Q��3�;uMc�wn>����Z�O#�.�4����O�HNҷ�b��gG��7;�o�,?�uZ�1$Җ�����僴D���k?g�����rē2{rj%q+X��>̊T][�m�<�γ.J��MZ���Udܿ�E�V{�NMK;��R�"E!ϭ-��sGz`ڊ?: ���R�@�<�@)��� 6�߭IJ2���MH- #��}��k�^��N�9����;�M��.V\^�dZp�s�G?�1�\���<,����)sN�>��i�ך %O �Ҧ����T�b��]�GP(��!�[6�,��b��\����r�Z�Փ��`i�s�N)� �AǭKqC��9�ޢ��N�sCR���X}ix�R���J3ޓ��)X�������G=�{�J�<R�b�O�Ҋ��4w��)?���4�s@� 8�>�dz�LP�z�=3GJ �Ps@x�����piq�Iב@G^��J@h����K�'O�������|R�n2� 9��W1[�t��[�PX+�����Y��R7c��L�}��Aѣ�����G�����7G��w��oi�`�-[������k�����J�� Դ��B��#��N���!��W�Z�I��O u��>V�0��?����[J)�A��<?�džd[����Ò/��C7�d0���.�r���pv;�\�}��P�<���$�n�&�,�!��>��>+����{R����?��C^�M�r��m��-�w���U[�i����F3(��5~�&,f�F�2����%�d�aq��I>T�-���?�b4r�+���� [�#H� '�l�S5"ZJC�Qۊ1�SX��s#�RDk���������q�]�$�$- ������ĸ�+��2iږ��}��=�̇��7����7��|!�,�>"�[;�x.|�xa����w�C?k�o���Ҁ����.�Z�O�M����D�?��5�ر^�γ����h35�Z�P��Z�b�Eok�x���)h�E$ҥ���H�22�t?)#��}�㩼Kg�ۈ��=:���u�c�0�?��7��4�da�������G&�-Xڥ�<f��;�BM���6���Yw��ˤ��2O��t��t�c��+�6�/'𬻈�T���C��9��Y��W��^�@��jGe����z��MX�l���T��(���ށ�!s����t���d8��tY���ӄNF�Ҵ���v @��2OO�]m�a��nG�ҝ����u����EE42�G�!=2+�����4���9@��:��/�Ȋ�$�E�qԽG4��$����L�j���Ҏ�~��S�j9~!��j�]��n���,k��e����c�z��i%ߌ�K|;q!��7��`2�ԎG#�]5y-��~ ���6~\?ĝ*�9�>�~bc�+�o�v�����{�#|14n0��9I2_����/�K�Y_[�7�'�f�`"�X���s�G�����<9��r��%�yP�?��A�dl3ZMj]=�_��I͕����I�Gנ`��u� �I�+�|�!.}~��_|6�}��:v�'h����o�xι �s�d�d���=>�����%�g_iSE���\d3?ʺ�*ż��[f�+���,���-�~f�g��;�W�٬JDW�Ċ �B~`��U��+��������9��v�H��)i1@n�b����F-��)�Db�����=������ai�X��d��ox�'o ך,^z�8�}�g\�����}>[y�C���y�n�9=T�y��_8�z�/��G��w�X̊3 �͍�?�_��j��L��b�|;,I:|>խ�#�/|-�}���o0������0 "���Ϳ��D�L^ �~Z��>���YH�W�|@,/���)��Oz�~2뷶L"d�HJ�Z֞Өn��Wh#ޯ�SK�S�|Q�ffm_K���� ��?1?�p���n��0:!��������V:s�Le ���/S��8G�C�"L�I2S]����ˎ�FN�U��؏����D���=���Ա�:?�*+7�R~�5*Z\7��#�I\D4U��.XH�Bj�Ү唜��y�?,M�t��U�g��ϻ���o.d�c#Њ.��4���ڒ�zb��t���y/oೋ���cRzN9���WI��+� ��\�\�7�i2@�I�*���'����A�v�����F�a,h�5��w��ݐ������4�E���Ҿ,j�r��&���p�}3���Z��%t��f�Ş&����R��x��I�;~�k�Gĺ�Z)k��Փa�/!�n�Y�O�[OM,�z�|@�����Ǻ�������ds�z��k������EŜ��6c���+�ύ~ �f�y/��L�&Xشc��K�^�}Q����Dp�@Q����ڊB{�q��{����8��?ʝ����1��1�W�S�*���0�e�rs4���0i��,��d�� �����l��>Dr�_/mgE#E:J��\����Gz��yf��F,s��~����}W���|�x�U�q���x].R����GV*~PW#={ק�_� k�³�-���O�� �^�z��u�V����dd�;�#a�9�I���J��%��R^�s�n� ��nq�֍ɕ�~ ~�>��O��#�pB���X�}�=#�#�'�{]>v�z��m�?A_X|a�:ls\?�5�8�0����������D"y����x8{F�䒢�'k�RQL���&$�n��!w��e_iw!K��p �!b?�k[�%Ԓ�jx�C*��ӭ`__<��ى��g���j�2[|I*�UVb=*y�}�W=��@�jv��v4����JҁҐ`��1@�ڒ��0�(��)Rs@4w&��!���'�x����ހ�SҊCӵ0 Q�R�QH84��ΐ�4������h�' �-�sGCE!�gڎ�P}(��?JQ�V�=SPѵH�.�Kk���D�=A���3J(N�{g�O�3⎕4vZc[\Ƞ�P�f�������������n��K9��������k����Cq��2��H�9��٥r�2#�8澯�K���@�I|9q�uW���z}�O�kx'%vE��^��}��I��i�vy'�* �?w=kμW��<��L0q�Քs��_n]x�X�M�<C=�ʧ���H�ă^�M:����<�X�-4Եb=Ǔ�j�l�����Z�$ƶ����{~u�qw?p�nHPv#��\���z��[p>�(�W�@7P/?���e%f[NP�-�+��S���<�]]��{B�hܨ�����\��FY��c?t���+b��iG�=�����n|d�{(�&�ɎicW�#5��{7�oqi'��/Q�������\`)<���}�ȫ��=����𦲮_C�R�8��n18}Q����J��<]��<;����=��a5����E�'�&}�¿�c����*��0n����_Y���RD��9�>-�~)���[^]�oĶ��ُS��:�Wq�>��\�����ً�⎃�ZKi�im@�g�+�&��PW�?��jRO��%�1�WQ�܃��S�Q��w��<#�ڇR��� ��JGZ�?�h�I�]U $�d �>��|+Be�R����>k���n��N*ɕ"�`N�h����?Ϋ!"�X�9�k;V��C��'m�˸�3X�F���l���w2\9��B����CἺ �Dv������6P�w��>���+�_����b�h�����Oi��b�bb����"x���W$pA�ֈ��[��|A�ƺ�O��K[� �VF{w�Źq�Jķe�1l�op��ps�&�M|)���7VM{�^x�A�@}�v�g�Tq�H�G�?�q��m���4��Hb�����\� sK�F�6�-��MV4$^HB��s߿"���,^����>���?tJEY�U�C�c1�M�p�����o�ZK�����g�:�vN)���a�V->*��d�ۜqY����œ�a1G�ߌ���^�F��c���pE��p�����V>�y&�e���y[%�]v������jn� ��}���g�4Է+��l�߭Gޛ$Zm�ΐ 9��ྥ�i�lA����10���*s�g�J�k�e]'L�|Oy6�cqqB5�KfİI�CG8�Ү �&[_�ּK{�o��i)\�Ϧ�y��,?J���"����xV�������9& :M�K��^�� �Sk����5�z��o-�i���H���i[�1�U��\��֝���#����2���Y]��7��m��a�W��7:{T�gR��#�ϯޯ��2�)��;�oar�]9P��Dc�^�:R�$vP$jO����:��n�!�s��H^S�%�<~�\u�Mg]�E9A�G���J��-�9�x �K��Jʾx�O��1-b�e\����<db��n�\�������18�斵�1��ir�m"��qG�1<�Ȧ�b2\�ϦkB�I�'æ�J�|���G�����A�SӅ���~i��#��pif�ة�ޝI5c⎑�c�r}�Zе8��|�O��=ə��V�.��kC�uѯ�y�G���jd��)��\�� � �}C�����,���{x`Ǥ@����\Υ���HP�q� ᣴ���>��T�`s�[��g��}��5nș��%����C �K��Rz����� Ym�u���]�T�����+�n�v�����cF-�M�F�T�����:խ"�H/���[q"���W9�E,s��ʬ0pz)4�!���Hу�ym���О�g�?���BS�x��̪A6z�=����N���W���� ����b��=@]D{��q�����i�j�0:WďnU��ؘ$s�Ԝ+��<��Y���j��U}�Lxo;B��Rx82���+{]�v��~&��K��w� �f�g��`۬h-�(=Z;pO��\���RɨĿݕQ��=�2�mBV ����}k)�h��[���,̷J�S�C��L���a\yq������|#C��5��r�]��0.�H�3���g�x[�Z��Phs��2j�pS��� QW@���[�#v�S��Gr1U��m�#�b�>��=7�_��i~�J��d�icS���Tz���~4�xC�$];�։l��A�*��'��N-��:rJ���7ko2K,���F��#ӭ>�ff���HP8\�ںms^��-t]*���@��(�9�j��C#��6�#8���Rj�DXYeo ���ZW�u8�k�צ3^\�n#{�Z���I9���5�|Ir �q���m ���)��@O4A�� C�z���/��hm'Ak���S����@���=?�w���"��E֫�Yĵ� {�xtc�G^�ך�|B{|�k�>Q7����6��i��TU=>_�<�+����Oy�Ig�7QE|�>���';�����~ ��E��6��闛��o/��207`��;�����h�jj^$��h����#�!W�#�\���"�������g��M�M��i�nߐl~�>(�t�G��N���~��z��h��Ć�� 33e��9a��'�Z��c��D�l�'��H����mL�R՚�G��k`��H���&�� 5�7�r�ˏ��F�!��S���@.{c85��갴&?-� ��l���3�ұe$s�.C��<Q�T���ne۞��b=��N���)4��4��� �9Sv:0#�Wڟ|:��$�M-v���Q�g,|'�/[�]�p>��[NLv��h����A>���+o�`�Z<��|�a�r�V�\��j;�w����m͕��/Ai���{����_0�D�4�G��Φ��L��<�r:��?S]}:�G�B�����|���V7m��q��H�����pi��4��Ɵ�4���|����fM�ڛG�%�DGb��8#���oN�^B��� 80>��d�D��IaS�?��b�OS�9Tx�;E��T9����^8����)��<��F��jU;s�͡�� :���9�:��o+H����2������h��4 )ڲs���L֖����uo ��v��+�O���~5j:\WG0-ԟ����3m.��*ґ�$�'Ў>���O��2�Q��Q�wV8��4���Tv��洚(]��t ��$��� p�A�(�-���+�:��*#[�� I�ʅ�u�c]0i��@�L�C#�A�GL�QҤ?OҎ�g�� ;��4���0 OjQ��'�@��gց��(�zQҐ�c@<H~����Z)(�ZJ9�8����z�JhLb��Gj^�Rb��R��NM���3� 2�p�0���'�|E;%Əgx_;��7R�uP��� ���Q�X�d�ծ����%���__|-:���q�:��m�?�H��g���E%��������>�c�K�2p��o�뷕W�S�:��d��5{�1殥�,l���'<w�d�l��m]Yit���&��;��c#1�W��e����$�U��6�~Y�<�[�)롷C�<[}w-��.�f�B �n3�W%������x�9�����Y�Os����+ϘH����a7�5٣[x�R�-�����?1JWؕkm��22���������:��V��%|��j��/�z#� ��� ���_Z�Ziq��۴ә�|��Z�be;ep����J@���}��Ž����w7�b]^�/6MSH���R��K��uO>{yI ���[^���ic��|Y�����U�7c�7J}�<��:�ֻ����{/�u;cD2�� ���s�qҽ.��wz��2��4�K9����F�9�(lwV���i�n��ׅ4��&y���Zs<|s�پl�o�jpVw Y�#�߀^*a�4�_U��h&��!hN!����K�CY�o��Hn�#���������� ����� ��&���5C"`�K���+�9��o�_�������W�������W&�ŞQ:y�s�sT✮� ڍ��?n&�o:��kp��;Ę9����� �.��\N�."^��v�W��q3l���'�-��3�@��W�x�B�w�Y�� ��j&E��vi��R�.���1��P֚7�[��E��ߏZ߇������39�������;�Or�1�1,x��̣��5��kT�k�D8O�F��s�b:�ڴ!����oL���l��pi��wZn�:˵��X�Щ�w��i�Y�KM��> x�,�Զ:��|���o�a��������<��Gm��|Π��>��^7��6��-���kk�Go��w��W��V�ĩ�]X���. �ڐj����?� ��3j6g�|WyF�+�ǵ��m0Ǹ���2���IJ���j�B��֫5�����H�B"����ȑs�;��na��X IH�by�E9�s\��"%,���*Ҝ�ʢ���F��>8m��Q�~�պ��<��6>����O��[g�;��0V�ۗ�����@7��s�''��t���!YVT�C��B�i�]�ʌ~�����O�v����1�B�9�����͇��L2�#��(� e�����rr��q*<dvpA�kw�|�E��[%�r1�c>�H����UGF'��g�-R�H�}KQ��G����c�,_|��a�SZ�C�&��4���G���q�q���n�<ֱYG�[�S30B��n�R��E�G{{�y��W�Q���9�̇=z�T�sZ{'|SѮ�5U�����2�井�z��<���'մ9���������n�1^��Y�V�y`�<:����HX0=�xƹx�Zt��X���յ��m�s��[�+�ڌ1�I�y#�X�v�H��k�ܽd�ɉ�Sda��K�]���s�ndq��s�2��F 9!���=*l������鍵�H������4���Z��B���UQ���P��|"�nɎ��mD`Uc��RI����w��Ƶw�=��:�O/�����?Q��ǰ5��1��l�P�g=9 W�|8���� �����Vy�u]P��Q�s\$c�kK�:�!K���<7)c<�r$��K���o?Z�WQ�n"+�[�l ���F�g���1^��@�Օ��]�|-�c��v�`e��R$s���5��]2�x�+ҿu�b�Dc�eُ��M%��&�w�gw�<΄�oe�rq��s,V�b�Aut���=j��Bt�Y��i0�mΨ_�$!��G1����C]�32�q$���\�#�A�{���٭�ŐZm��(���H��?�~k&����J��'��c;��Q�[;x�k����wvv�<J��\�������╻�s���D��A�f����(��7}��U��w\�;Fz6#�]}u�V??S�-/��s:��v퓀N~�i����դ�L�d��|�~�U9.�z�_�)o�O��7q�Am'����үX}�K9M���`-��T6��9�弹���"8�ۃ��nq_E|)���=�+�^Y� �����q�7q^!���w��]�2�����ӭ{���5e���j �.ؕ�m�=�88��� 9� �n��S��$ҼC�$b�9Cj����G;�=9�2���B����[��k�� ��Ns�] ��3��{�߄�Ì���&{)bO�5����r���OM���_WF�N�:�Q.k�j�{�5�$1�'�}�HБ�*u�L����#s�6�s���?!ֺ�{G�|�DK��I!z�����wY�m�^�گe���e{��mh��-ˆ� a���*˽�%���dJpώ��ֶ�c�i����-��I�1YZ��-�,)�n�+��ޥ��=��8�g���c%N�+�Pz������{c�����'�,uz'��ya�;��d�Ʃ/��8� �?{�=�v-�ܩ#p�2��������O�����i9��Q��'��۟��B[g�ִ70SV�a��HW#��^���#%�4Z����>~���.}Ƒ?�p�>"oX�����rl1jv&H�=��������w���#7�5-�kt�8'���?^��\U�.2������"����v���<?�;ڼ�X�4u���k���nZ��i��?СA�������¼���L�p�+�\�.?�?zRH�f�b-&Ԧ������� ]��pv��ק��kU�X9�ure����w#g{7=6����`J��KI����5�'"5������ƻ$�op�R��]�iu��-�Y�+�D,��9ǽ}���Z$�����}�"w�@Z�cJе����H�b>ceq��?���L���T���8��a�4�}���:֑��4�wgӿaK�y�D{�|��L=�寋6~&�f��02��c���ǵ{/�-]�1��S�ȑ�%h����}���'��Eԯ���|5�n�����Q�ܹM5���!�X7L$#=p���3Y�W̸�LI ��]�/�[2G�[D�x��OMԒ;���Xz�x�q�8���=�ѕ~Z[r�i% �Ȉ��i��#nߩ���z���>�Ԧ�>�*�� �1����R��p?���w���*�����@4r)FW!�sҾ����}U�I�M�*�1"i����``l�+���uΫ��>��;�4j�)8�W���3j%�ı0gK�kI��H�oƴ���Q�G��g�^���M�x7B���N�5?��#�z*g=��+�_�_D�KGnwmSit�= ������m�MZ���2�3�'v��C�u����� �\H��rr{瞴�;�T����:���,�$h�{� �t���cY v��PD\�ǔ�H9��#]g��,W�[+,9#��01\�i H|�v=U-K����0{��������0n�E��VS�<Vψm�n�[O[�^$�~=�Y&���=GJ��юs�3�4���`!�GJ^�ڀ�3ړ�/j �'8���J(��iN;�R�o�i?s}����ړ����ހ&h�����z)z�ځ�@ ����2��###�Ps�/ÿ�Z��F��j���As�x<{���t8�1jZO�5c���M=�^I%P~k�?g�3���ݺ�x��G3��J1�:�S�dw�_^x��r�]ݏ�u�ɂbԖ6��&/^��~H��幇aa�i�KMm����F������9�+�>,x�9 x�\�Z #���L��0<��^��S�^�t�<7 �\I=x�$a���=���\�zf����d�9���pGޥK��eis��u[����&#'w��Z�B�5[�GOռ4�72C�a)H���h���0H ��z���x,L���2��FO�KdW�|9�.eK����FH��[�es�����Ҕ_5�k�#����}O@��E���U��ٵ[2�o���`H��9"�X���&F����P����𖥧i�7�y����!�F����� Da��ָO�zF��X���~!�E�ҝ�9_�v���U7i�����%��>���f�F�I���m$dg�U�a��0E�۷��R~��?�����֤��1�@��zW�����H�=0�=�����t�}��r]��Ã&6��`d��g�ƽ�Rua��mR�*�P�όd��>��Ku."%�R��G��~�eK���Gl���j[li$[�N��>!�Z��}�HYn���kr�9���>��p�U�u *MK��r�#�^3��s9����+�Пl���P�i=H����>'��W�I�_E�K"#��p?*qk�m�����Z�K� ���4 6 ��r1�~�!��c{r�J7!N�����֛��ho�/�[Y"b��a�p�<P8S���k�o�^7Դ�����V�p:U�W8�1�# �ꢪZj���!n-�sM ��90璬��S�ZU�K\8������T�<?{,�����iI��YW'�;��\��ב\M ������@``#U,8҄��EUG�t�E�pce��t^���Q2���6s���=3����&�\�-$Ś<$J �q֒\,K-��Br�-�n��f�5�kcج5{:�|�KtR�`l���q�^E��p�ޙ��(��tK��{x�yh_��~0`Er�'�5�V�Z���7�%�����z�u;�d�����` ��rs���[nǮ�?�VY��d��<5χ����}����n`y�h� � (?��rv���o�Q�NJь�!n��7'��T�tE�z�K1y�S:�BĀg�x�uF�Ͽ���aA�����=:؏J���]�isp�$I01D�ߝzï[�������Yi��`��]�-�bs�~`��d�{�J�o���'��n��Bɸ��oNs��U�B� ��xm��;⽫^�k�SL���5k�@A������I�ƹ+٢���-'�%a�H ����UdK��hVV��˛'�*�[��Ӄ��sWe��VU�3kĕKU?9?���Ϲ����`�P��L`խ;�H��snC?���.}w�O�����Ym��i�)�9F�#�W�+ Bq����4���`�J���`�٣�4�EWP�I��[0�)>����;�mKƲY�<�|̆yd�o}��OQ��?��Ú�i�����g'��y�$_uߌ�}k�_��ŷ���~.�݂����6����/01����MF��U���F�i�/#���I�^���s��������Jׄ$����?�5+� ]=f����E-�ū=BWBZ=GBkwS���q�J�~di�����0a`1��߉~4�� m�(�] P.�c�u���2:~u�*��.��i�����S~�Kr�=���;�� 9vNG��]OI.�&��J�A$�����d������� ,�a����dx��V7�5 $��A����#�ћI�^�{Y"���ī���ڝ�xفP����}��/ xsĉk�x�Kҵ"#mu�Ѹ�ɸ\��!]Ρ�!|8���Ӵ/�Įb:f��<��,����ZIX��#�ͱ�+��1�2�"���`%;�p��֯r���=�$[��Uʱܷ�J��3�Y9={ �]OB����:�NG�l��M u�-xr��?�l�3�� �M��s]���Fd� �1D�cb�|ǹ?���F�jE:���cf�鞔�����P�[F~\�*{�M����:'���X�\�|�7�Kp�3����}�k�o����5��ȴ��� rڋ�p$��>�$��g�.��v��Z���Ё���?�օ2Z:���̒��,�R��8�f���l���mգ!��[��k1u9nn5 ؞������֬+��%�,�Ț�>�&�cH��)��r0nen�Bz~��-��x���H�TF�䞁Gzv�$��L���]���ٻM��~ �y/�����˧�����O(q�%s��R3K����]|-Ʊy� �a|ٱ�2O�5�� �/����sq�&�8�.�9r�)�k�<?���-������%�3�9�~\�pz���x���M��$���$�m�S8�f�9^�ܐ�<�_�g,�%�!K��������u���;M���[̙�ɽ=�?�]���Y$o�r|�1��1����ҹ�_�>V��K����38�:p��ѓщ�x�[�Km6(��������ȯY��hSY���6w�t��u=�?_-�������̳�� ��i1���kQ~!Yi�Ŭ-$�VP��Fqӓ��(�@�=��M������c,� ���v+�ː�ǡ�5�7�庻�!�-�]� ���d6=��������N�xŌ"v2��j���k����HY�!`�s��U�Y���^k�5�G�5�G�H�뛹����B���^����%�Iђ0H�'��x�����F?(\�~*���¶~'��#�����7�����2FH�#8#�ڧ��W�F]�?��m2� ؞�(}��5����5�[��a��_�Up�x$���_�7�&����V�� ����$�~F�:�^���~*�"�|6�D0�"S��PEbO�/YK��P�������+��x���4cA�m�9-��� gebk��)蚝��'���$����X�4Ջ��&�xt���9q�jX4{�KJR�prd�Z��-�|<ڡ�9��M��E��f�ܦUO-y)`=�I�T��E�� �S�@c��G���:~u�����ud2M4��Ð�y=�+cTm6<��L���YÀ÷?�j�5��oj ml�&+p~g>���MM�/�9j����[a���P��O�}�ߋ������'�e��Լ<a��GX�ߡ���K�>�t�ɴ::�B z��?��%��� :O�����t�?��-�hu�)�MB��I��6��p��+��{i2�=��v,��!��E��$�5�}��_ܻD� ������U�z/�����"���-���{��e#��#��6����x�rW~�n��baI2n$����W�?�����:S���_��"��K���'�����o�/����h��41��V� ?x#ˁY�sZ������Kq�+r�����54m��'�#�ץx���zl�SÓF�ă ȕB��d9��W wbѱ0�`�@`~�ꚱ��k»�v�8��1e��> h�V�$Q���2yp�/ʬF2���<ל_\I ������s��o��k�����+ȕǗ}KcM��4Y�����x��v�����ݎ?�Ԛ��]ˡ���ăך<Q��kʮ�K��$�UUI���ZӰ��{��Us�I32���O����Cg`#�����-�~F��2�y|��Ԯ�r(����.������1��������w.���B5�� �6�����J��5���o��D�T����־��]�ħO��]y�����6.�$N� Υ�b��=j��>�m�ԡ�i�Ztz&�' n��y��5)<6�� B |�-����9�_�����|Qiegysk�'���q���#�����_1t[��1'�������w��+uj$��dx��3���ѷ�q��*� ;3��^�u�m&R�b�e�l������j���.��}��a��,C�w�����1}ޔ֑���1Lɴ�k��|��ci�����_�`�sIuM���/X�RH3�*���(Sk�����=�m%�.��I����kp;��;���{��l���A�[�(���$֗�|Kܲ=���S s�m`��nQ6�9''�t�w.*�f-ߡ���M����BD8!���T��Vԏ#|ǎ��x��l�.��T6�wi��6�g�5�23pH�ݪ]�#�N��?ZN�)��%(��4��)h���g�(?C@/jOΔ~4���?V1���,�;zBs@(�(8����9�y��#PG��F9�=(�ȡ�h?Z����*xv�^إ͌��і� �89GJ�3�6������x���u 5��~RP~U�w���5�ı��}��k�4,@$��A㡯�>^�\[��ׅ�<�xy8���[�ֺ�Lչ��O�4�Ӛ��[�Tl�m�(.29貦���~�o�#�߹:�2<��JF3����>�ԬR��M� ���[���'�<w���oi(�i���#��9�Wh�Vz�v�s�>�^x�����d���;mOZ���#B�ʼnE�kT��̑�N��#��J��t�&�'�O�8���?��{{Wz�CI�t���Q��|x��t�G�9�҃�n��>��w'��=)�t�G�J�|�Ծ�i��A8��[↳�jVR�����0;uO�z�p�W��ıZ�d�.洑�u��&�z�֗�|U⫨�k�Y�S�7�p�:0����t��j���c�����h,�%? W��$m��`��;�u�Y��&e�-���<�Q��J�咽�@���q��;�5�r����ˆ�<�����ꆳf-b�;�fٝ�����>�U�3ħ�O�Xڥ�K;JD��r^���M�S��9o<����Y"�Yp�Ê�I�I'9�՛2����j�{O�;�b�O���Q��R��g��c�`��y�|>����Lm�q�k�f��̲��*��=~�k�?gk���V���&�n��!��'�$g v�3���<�O�*8��r� �d�״����]�F>ઔ��#���sſ�=Q�I����Lwr4~��8?�|��6�Jy�h�W'����p?�ʌ�����x"]9�-#��H~y�즵�p��Q|���)�D����rܕB}04��.�����Ip�y1�&Q��]m��Z�z\�3|�#�1����sO����it�d��g�XW�a���vw%���֤�2����{�n�N�2�z����r�n�+ �����5����Q��%-сy��r�Q-�H.��ڄ�X�( �z�5���#�e�g�;�ӊô�e?*o�b���v �R&���P#oTko���E�;xi&�Dz��ֽ������ӵMJxT���{`�}��r̸�a� W�(�m���:�����+ݾ^�ޗb/mf�kh�6��@7G�s�ׁ�z���F)t=����-�_l�o�K�2b��.����t�-�F�����'X��mg�}Kź�Y�. �������xk��L:jx�C��p<��yrǎ��u�}�7⾏zD�A�� LY��B�ev�Y�c��SE��W�|��wX�T�:i4�A��c���^y�꺃;���&G$+~dWs�m#cJR�OH�Ѿ� ���7�pZ���e��B9!�.G�1�ӒH��,��L�R��l�����P�r�"JaHJ�Ȏۙ��'?Ҭ�\�D���G1�Ǹ��ʨO����N�!��ݽ��)%�<�rO�]�f���M�ܮFNc#�����y7Os��5j��Td� =z�˲ӭ�����M���p�ة��VD�i��(�^�]��=k��]V��5m6� ��C{���[�W8H]2���U�]��c�[�˦H�v�!�]g����<[�;��`q��2J�Wx��s�/H�� �~��K�x��J�VY��+ɼ���9�T%�}��_�v~��Ԍ7V�o&��][�}��C�Z���O� ���U�|�^��@�I #�_���n�}oc O+D���\ƣ��p���k�x�}-_X�� �n1jz+�+�]ꠑ�Z�v��'s���#3m<C�ȿv=�X�:��k�������&�`/��E�'��s�}���7�eY��,�J���H�r���_2x��~����ڈまF8�ԏjJܻ�{��3|��Y/n��1Z�?< �wkF$0\��{q����)����$�!�W��HTc������(x�bV�e;��<�SZ%�0�`2������k Gj�����3�/���q'���$�f�Ñ�0+j̘���xɹ�Ҳ-!�C�8N:��h�j���$ �ΊG! ��M&2 FKf�����������N�o��JKO�x.m�42���Y-X>��ws��Tc�[?��n��~5�]i�=��ɔD�gr+���!��� �W�x��Z������ȸ���Ns��z�����?��ũjZLJ���4��[��^E!YA�*J���>���q[A?��=,��gܬ�1#��\?�S(�6�.�|@� ڹ[��%0͙����5����t��Df��9(�+9�z`^���$�1��ڄѸ C�Id���;ׁk���Vα���w����4Һ�S��0�?��DKm~��Ս`�ڂI�τ�Wvr=����mC��eW�b���'�<�sY7V6��yZ���lÞ:z;�(i���SHmc�f����� �Ga�;P�m�������1I�+��3Z6ڢ �h!#k4�b��u5��G[%y9%��7�a�N�kB��,��ft�ɪןny}F%8��.��M<Ʈ>q��7`V��Y������"��qE��ss��y-��М~���#�͆��z�Z���eK��A��9���%Ȏ����?�Pi��6��WV��"6r�qޚvbh���X��J������h�V�r{<�����IH%����� �̲�k 2��q�ݱ�xW����n��!���ge ��F��g9,�}��lz���e+���a��kL}>f��?u��)�ef|��/m{q�&�!RO7�Nx�z��V��^�O���~�bk��Z��j��j�!X�U�I���"�;�S�p\I�?�!#�ר��W����C�����nX�C��ƘC��t����-*��Z�Y�-#�G�h�s�?�kCsv'=)�!�_Q�ܣ=0qT�Cp��jѼr~K-:,�g�����@����i��Z�yL�$oC� ��I��Qn"���%��*�*_���9c�0S��|�����"b��\��J���qj�Y�{˙���|i-#��`W�t�/Z�6��Gqoum,��/h�7�B�j�j�\�1-�R�>l@�ۭ{�����G�[K Ķ�K��^rC'�{���ә�E$ϭ�_�����پ��j���� :Ki��� S#���)���Zҝ���� �s��,t���"�5;���M�(E!�9wl�ް�/�� ��i��k�+���-�I؇�{V_j�JK�C�_�L�\NG�.v)�>ͯ .z���W��y�iE��7e�6�$שx���Yjq�n<�T#�a���<ז�$,�08�u��\�NkI6�l��kH�9$h,t�YPaY{ 8�>^k�O4�e�9#��1�n����q�/쭟i�v�ϡ9���\������՝�� ���}�Ɛ������$88��d�Z���g�U2��rܓ�hX��3v�O����<7g���l<�*����}��mb��-64�#d+�u���V�I8��ɯY����Ś�wĶ�M&��hs�� ���s�i��4�]>�_.I�2�,�e���;��P��9d� -�w+3�*��Nk�=�w��@?��{��,O�sg?�+��VG������?ٿ�l0�枾/���&�H�� ��a<v��6�e8ͣ�Ƕ��<�&ew�٩m�ԕJ�9���ױx��/���t���w�l7��z�ǽq�އ�[�-����fK1M��ԃ�sZX�W������Ap0����^צG���H��%�F�\H�=X��z&�{M������^�u |�o���EU�v�}y3[��j��n�����E&�m�G�?� C�:���W�-o,Ts�kj��[�ȯ��\q�5�6�k����^��bI�K�FCו���W��w���d��{&B�=�]�&���F`�������� �|���b���A�7 �������寴�%�>~��1?��pP��R�����V�>����� =��*6Яg�������-�{���pm��"���#B���$�n����Oҹ[ۉe's�������m��P��ZɅ����U>���U�܁��}O45bO�H:t�#���@;ѓ����1A8�iy�?�ZN�Q�(�h�Iޖ�f�� (������i�R���zP���=�K@h⁚3@�"��c��~4��I�����3O�%f�>��;��I�s�[�%��FN~b���n��k�W�V+H�Ӽe�K�Zj�h���gl�~�t���y�lm͌څ���٬ġu�.��w�<M��X�=k������_ �N�C��i��5{3��.Ԟ�F��|� �������~�¼c�:���<~���Ǒs&��c^��:�a$V�~�_�{8e�p�썋�ڼ+\��]D@�c�1jD)��ZIhh� ���v>�a�'}��s)�߂� 6�K;���G��E²@�H��+˼[ap��XзV�Qr?�>��މ�^�5����DK�?{�z�R��a;#�����V�����U��.�u�u�T�k����?H�F�����3�L�g��z ����.ѡ��֕t@�����u8�\+��C�f�L�v��ɥ�Uv��j�'����I��.����Ǿ��f��5PS�����z����9H�M9wK�~Mzg�R�&��or�1e�}����S�k�Wd�vr��zRV2��6B�P&�mc�� ��f��� �@o����U��ɷ9Dn�!����t��Tr8;�9���2�C��z��)�!�r5H����M�D�=y����]��O��[�X�F���t��$��}���~�m.����|�.0�}oJ�-�c��!_�y�_#~�Ƒs��[ܕ�s���p��8##��~������ag�<l��)�i�<��<��x� �+��]H�&���J)7Í.&9t�L��)#'$���zW͟/�8.�=3�w�s�$�n��ˁ��U������R��\|��,�������#7��>V��U��sY�II��/e��i�E�]�_C�bMJ�qJ#X� ���W�G/��v�9ʃ#�g�*��h��@0C��h�J�3VD"�b�j�K+�7��O�i�?�t�:f����7 %����;����A�}+XѸ�ԗD�d#�?�MYh'܂�n�X��N+J#j>]�g�����m�wό{�V�Y��f����Nom���Z� �͌���g�;��a���-�bf���H�#r��'>��Er��)�A��-��V��V]?ǖ�gx�ۢg�����M4���o�߈MƆ��Ktch��Դ$�����z�?�| �i-q�\�dHs2=ͻ��M�@�\��I��x��m#_ҭI�o����f��r6��z_�>)�#�O�丟]��q��7�!�L�'����V�sH+���^;��kIm%�S�D���\&���Gf����8,|ٙ��+�~)k>�Ԥ�O���D����ё��� �mJ�LK�Hmt�S#z����tQ#.�L�g��1�-p �;���)�cr�s�q�y�[�=�-ι7�b���yQn��U�ͫ�\�M g&[������̽UUe � ��U�8�K{�wR�8�؉���R8c��T��[�:´!�-e�N]�~;*xE��߯E���P{dG��V�rkN�0����q"�3���!�E �f���d.���k����j6��k;��B.8S�ܜc5��Z���a yo6�����xn���9�����Skn`�w�$�)���x�F�U���v�s�0���?�����{曦��H�t=a! g��g��,�5�'��hs\Eso�j^�����ͻs�H����Ҿ��&��M/IYW����\��nl�e�Y"�s��k$�<s���trݙ�� B��ʭ��'?���� �~���*�&8@��'�><\�];�[����\�ȇq�q����+t�/$R]ʙ�++����T����8��މ��պ�+���̓��S6�ac2Z�*�ɹ��FG��\��G�̕��zf{�;�U��5�Z�،�8�#����p:��8�w{9.�0Y��g>K��8���为,���䓓U��V;T�zB4mА@�=d��[3��W��L���Tl� *\Ĝ�v�kX�[LD?ng���;d>��H62od�%8F'?zF�V��u�AQ��Mjk�YM��n�WN��u32aۿ��;4jY�Cm�<~di8!&�A:/q_f|.�:trx��:��;A�F������E��5�_����.|��z����i%�r(�b��s�r�Gz���,m�>��/�Xˎi⿀���*��oB`�c|_��i��^M̌��P2��"A�z����ugu��@�e;�@��c!� z����,�~0E<]��I�N+��?J�o� �I|�o�s���_�C�J1[��MhR����R=/�)�A,P�?�G5�q���#=��0F3��6b0l3f�u+Ek��"�]Ǔ� �횅��w�ēk�ܪ��q�:����ׯ�y�n��Cʙd-�ç�+���Yg/#e���kX��T0��*7ѷ3�k�� �N�� f6ʟph%�i�iA���QV���Yhf;{�0~N#p�������ʗo%}�A��P}��$(� �(�����;'ʬ���_z��;D���җKt[�][h�!�}�߾ ���� ���/PV<�]N"-�7���k�o/�4_$>$�W>أ 'ӵX��8��=�_|����-�,��4;�<n�ݢ�A�����Q���<9K��� �Z�EtdA�(�vH֔V��W�$�dW�4��ta��<�5�.���2��I�ͷ+��We�4�E$�e����-k�s�w�� /%��ܘl-�1��ҩh�"[�l�o.����ǜn��,q��E���Ӆ��p<��A��G~����c��������O=�K�KC:���<�+��܍��G9����Ĭq��<촆G<�Oz��U���)Y|�5��W��Z�u u ��k�O�>����k�y��ݣ�*�@lps���q�b!$�u�W�=b���C̊͝�fS��$n�8�x�V����6Pi1��$��;�����8�¿��1�ɥ^kV�,w��Fc�����\�< ���0"O1� G yfT�����R���O���o&m@��VXa�'`x$�U'?�-��k���|<�śE��*8�T���}+�������kh����/�+�p������B}���D�FՏRTU������g$�֛��%��YV���/?��&Ȟk{6&��|]ao9�O]�8����O,���� ��/W���{�<���[K�,�_�kzu����K�i������|c}j�-�\N�ߺ|�}p8��Q3�q�N=q�X�Z(ܲ����P������,�9��d�`{�Qf;��!`���r7F3^��Y�Ϫ�w�����(�����,��ס�Y�c���^��?���C�%Ɲ�����::y�vpd��@@>� r�>�$�E�ɞ3�&��ʂs����V����a.�b�K�)�!<�=�XI�����U��::���d��"L�#m�׀u�u,��U�Ė>R1^C�#��g�g%ijo���ߤ��ټw�I�����2D��^&�'Gf_�E2��X�N;���B�v�����]>�&M����'ӡ�mB��=��.�h͆M��T��Ҵ�Bi�8���I��5�V#V�c��Ӈ�\��-��"��U��}A���{i�����:���r@��fC����k��ڄ.����{v���#Tfұ�k���8�d�S�����:H']���C CTuY��q3��Q���=��u�yB��˃�ej]�V;U�7�Z-T���p�q�f�KW�4�+|��Wi�~F��L迾�.���A�n�r�Y��O��:q̲n��&����Q�c��x��F�H��t�'��1�W1unğ.)�z�˴�U�jz�Zi��q8`x ���ָ�X�wj�]�>�\m��u5Z��c0�##�Cӊ\{�c�����R��Z%�P1@O4 S�Rh{{�x����8ǽ��������?Z)�z�=��Ҋ>�c4uǵQ@y�GZ:�Iڀ�b�h(�)M-v��?�S�#IpVA���{e���_i��|���Z\k�-����wb��$��_ �5��M�D~tP� ��N%8��������g��6m��~)��UG�%��(�q����a$�fd�S�=_⇉4��d�W�o���%ދ�y���Ym�1�5�O��� �����A������WY���j��t�o�Fڐ�z,7{����^��K�P�6Rh�qq�_��#��O�o�jb�ͥf�嚗�4���D��Ws����t�P�N�����ۋkkd0M0+tޣ18�`�!u��l��, 'U����]�����W��m��3{ ���f. ==�g�Ʀ;�5��>�~"h���N}{Np!5(�GM� s� a|O�������M��W����]@���W�:�e��g�O�k;�v��[�5���/��6��M�X��x=�n��+�>e���y�V��V8/p'�;��V��,�xĒ�x5�~>�Idg�e a��m�=���dm�H�s Z�^�h�<�D1�hO@Oֱ�� )Ԟ�Nq�5�%�Xx��v,O�8�}I��n0zap? ���Z� ����7Zt[3��(B:��L'O��.���Շo�f���%����>-����_Z8��v�*O����B��Cl˽@l�+���zWן/uMxg�Uմ�d#e��. ���R�O^�?J����iu_����Yl4)��ƛ�7U�$������q���:U��y�V!7j^~��^k�mN[�WM�����?����V��ƾx��] ZW�� 9}��=�"�ovo;[c�SO�}�����|vw�����ko2�'C��������x��#�`ͧ�쏕N=���>�ip�g��ǡ ��uwt����e��/#>�q�떾\I�#�WZCEm#��5ۆ�y�7�n���[TUB�O~N=������!��>fߨȭ�1#u�m��wGҹ�!O9�|V��bk��ݴ����I�e�K�"���@��g�q��8�#ur���(!x9��� !|�<�oUT�*��A���wS�b��~cI�-���q�kp�{��Ox�F�6��k�p���#���=�5��ܾ'����'�uV�f����v�1�7�k��xz���X����Z�ͻ{�d�C�5�.��t�|��h�m;V;���:��SЪZ�=�_���0��xr���`q�W��zƖ�?�la#��o��������).#c6�W�x�}�ļIy��d�8��� )���(rv��ʝR�C��7X��C�U.��dAs+���z�Gζ$��-�!s ^q$�s� �]��%�erY�?�k;��k���nB�2�[.�_J�]��A� hk�d+�r��^՟20*H#ޘ���Tڌ6)��f^Nࠜ}s�*�w���Lqީ�6�q��k-J�K}�K}Yy���Gq�+����?��$���ǔ�i�����u���� �<� ,�����K>�����3���+�J���c+!�#��E_C�/��j:�N���4��ϧn�H���� �l�Ƈ$Ҩ2],B�$X܂q��k�_�o�Z���j�0Y�G��B�X0q���C�W����LJ�hu�Q�o���6mߋC'_���ɤ]$���:h���=��$j�T[_I����s�+�ub�i���62n[�}k�/��k�0mO��|9b��B����W��'6��0��KO��&)�Jwv�%}�<��a��V�6�?x|�S/%����}��|�����j?�-��X��]�qߥV�;��<֞��H�1/��Q���Q�:t9 N�`F"���Ƈ;~�J5b~������-����!��q��k(a���1��h~s#��,���H�����dZ�� ���o�k���wpUDا��^�n��#I*��&�����:�<�U��,��X$;~'�`:����d�%�`�ź��|-����5���:� �8�:�⾼� �����[��U�/9Fx���ƿ6e]kY���ȴ{������.�$���z�����n�� ���� �t!�r?S+X�w�[��^"�[��$�x��9�@�_3x��O�n�4�bp-�$��_W�hOM����5(\�{$� =��ھU�悳4r]x�q�#�"=%y�?��k4qz���,��Wgc�k�I�ю+��n��y��<�����}v�O���$�3�A≕Ng��A�ȟT���|E���y'��P� ;6sw���[�!h�T9�6ȇ=����%�"�p���n�.�Pd�7r�Z���딹�����3lElq��ҳg�(���J#4�jm4v�8S��zT�-����]�IW�#�G�|;�ޫ}}�xe�Gf�6�(��[�־���}ß����<z��v���H�5��5=F�5�Y���`�q����c�`��W�F�յ�a(����|�W'!B�^p M\�w����>!�5��m�΅��R�Q�s����0�O���O.��㏴\1=}Z��xb{WmCQ0jH��1�6���:�\ƫ��0j�i�B�1y��v��N(Sm�y�ze���D��]?j���$��������*�.t����RM�*R=A��2Z�;N�����3��H�❈8ټ'��#.����Ir?�����,&M.�s�� Ď۽~��E����)eg�=d�&���N�X�֣��7r4���w���Fޣӡ�};��Ҷ��)�$�v�Dex3��]�i��wS�=wL��\XL!���AW�A�'��%��y���C{{>�m����a�<������e�Qӭ����=)�������S��������[���U���q$ �c� G���>!k�k?xK_m� $��V�rH��Nk��u�/ 2;t��"�^`zi��]����c���K�h���X�O��|��x~�]A'!��^j���t����y��h,��Y� }��\���V���k�2����l�U��7���QQе����X�~ӭ�}��6c��x�}:��& �>���?"���p;�5>����]癎rO8"�W��{�}��:<��{t~���^ty\[����ߥE�b�ӚUm� 0>�>7qSZ��$���J$��e\,��7W]�*mP�M��J�Yn!�G*���G=k����zܨ9�C5����Ξ>'Ii�F�v�����~Y!u`U����1�]|�Kz�ei7O�#i ���� �<W�x���+�F[I?�-"���.�:n]���ָ���%��Y���(��ꖥ����ezu��^����:�5��x�S�]�P���w����sm3x$���O�j� ��3p��O�,&�:��hR+:�?�{�����h���#j����$9+}�g��8_�yF��iNŭ�J[�X� ��aZ�;nD�����>�ow��j��iօ�'�� ���L�j#V��1-��݂G��=\�n4����_ɵG?ٶ�9l�'��u[1%��!pZI5+�s����)�>�8�Q��xE�Q>2�.Ojv�sy��RL6��U�\E7�kk2y1u;v+�:��=MWѬ��ܶ3���:�.�S��rƬ�iZ{3��f�����0c�hZR���lO>ۍQ���FF/Iq�~�3ӷZ���+�!3qx�?%��Y�|A�4�[f��G*�m=5��R�4������溟�ntS��6?��Y���d�9�ڛx�epX�d'����Z�I���M��RHR���P@��G P�����)h���ޓ�/l�~������4������R�v�ފ(h��(��qG�E�GҌP�Y��Y�:�G�oQՔr@����>h��H����7`Zjmi(9�D��oĊ�����������c�Q_N|>��ũˤJ�s��r&x���������͞�e�/]X�=��[�BP%��wбQ�VX�ޯ4���[ݟ�ۛ���?���������U����5%����$ �}Ʃ�{%�?�y'��3S��� _��X��n�S�?4g�O]���csac��N�=���KGj�����^��k{�GԠԟM��%um��[i#m�jx���v5�W�z����m����Aӡnks��7Cm46ҭ�Ҫ��p���y`�#�z��{ӱ�>����]�̧�~ �jl��?|-��*<db��?���H4���|<�Ɲ VR����tc#����>5頼:�è/d^^�O�o<{����g���U|Q���Ikڦ�pA�7���<q�h���m�]�UiGs�|o��5 x���s��ar��gּ�R�*̱�����e��>7�g�/�&��,��%�S�*��z͘��$|�Tc�\Q)&�'��R�K�K7��l,��L�3}��Ċ���-�ԣ��R\�0��#3͓���M9�� ���#WIr6��W 7�=O�,H��s�R����T�f�RA׀F=�F��خ��*�1C,���E9b�¾��o�x��;w<g9�4�ĊPGP�I���_i:}�7��I�H9NT������^G�։�߱ _1y��� ���V�b~��^��h�Ƴ���5 $.}��[w�}��⡩�r���")Ķ�k��Oz����1{���xg�1D0�|��`T�N�^#�j���jS�����;��,�r/�1�51�zɦ�+�编�������Ǵ1�mҲ�%����?*����ܮ�4�6��q߾k!�ɅV )���.�vge�^�f���;���\Ψ"G��0�ސtϠ����]�ŀ^3��;W=m"Ά5'��c�P��gս9�$dU?�G�UyJ��:�ʒ�ځ���n �@�`5cD����VMw��y�gTL�`����T��'��V��#x���U�U���ʧ- a��G�4��}C�/C�P��-���b�xdI�R�9���}sc���mP�u{pc��[,�{�A��˟�7���sxo\ӥ��p�yD��A_�⾧�.|mg�#�xj�2f��\ �A��c�)�苤�Ϛ>4��7�K%ݺ2���b3q��ׄ�s�ֳ���N��pdgsϱ�}I��\�|�A�e^X��X�Hē�t������1;;B9�4��~���� ���lwZ�����n������P]h����Nv��O1��裁Z���|OzrIxQO�DX��{Y�n@�q2F�C�;}X�Mg�'���m!tU|��}�����e�*��� l�~��5O� �R!�N�B��M?|ki29�͍�?T��I)o�x���� ���كʡ��V0����r;n�1`wc�����waX�gb�dk([8�#�A��V��x7-'�P"jK���=�I�z�TL����ݴ����_5)������G�Z���Zd���h�d�y����m?P��u}nܴ{I��eN;����w��] ��Sx{ē���"���w����0�#Ҿ��A�k�=�E�^Z�v�7���b��r�:zӓ�QA��g|f��q`ӯ�'w�4W�rÏl�O־f�7����b�G�[��JF=��O־�����ڥ����#t��Hq�ۼ��P����}�1ҕ]� �<�x=?JK�-Md��_X�k�}�D�*�}��<���P�D��<�\��_>a�?���kF�B�D�n��u���="�<����2�H�!W�֕-#RK���g����r���˱�x�)���DUO-�k��JJ@<v>��ꖖ���Ks���$�l��ƹ@�\o�d�d��C�]�j�6���X���ޝ� ����W�j��+����t��Z�R�2�ťn����t�k��yW:�0�(H9��"��/16�����~u�i{ol�c��� ulO���sS�n�ms��8v����+�����d��t��j 2{褆�iI��)7m��+>��]Ǧ�F{VS�;��/L�^1ߐ+��{�K�o!��qo"����� �b����S��t�����Cl7~�3�T��<SoM�sn}!�K�.4wH�t+�SwUR��W��m!��&ңS�o���O^G�_Y����R�Ǚym�+-�!��d��W�|W���'���t��C;4M�az�De��I�s�}_M�y0�sGԓ-��>��Ph��Hy���M��C̗����x��ګG� �U�����G�� rW:��)���E����Ao�'�2O_«�#'r��I,��cUȖ���(�%~d 9s��>���4��[��F|�2�W뷏�k����S��[�p���q���,�i�~\m��ּ>�$ A#����CO:,H �b�r��M�G�H���յ�eL ����h��M�hӢ9�����(��]ɧjq\E"� ̭��������~,�ޫሯ��o��"� Z�x�g�GÑ��Ҿd��t��l��-e'�l���zt?�z���[��m����~���/gԮt�0x������J���8�O�����Ɵ�/�~��*�oe���������,|,�wu�M>��o�(\�/��� 0=��<��iYǦ-��w��2��XX�M��p#�Aۚ�+�b�H�j����!X���I+�� E(l��s�YJ��&���o�ֱ������\��i���H��G�yƷ��࿗�iv��L�m)P�W�_�mH�<%�+ˋ��xǒ�x�4-&[�#��+����Ms&���j����3�����|��|J�p� ���퓟�a\O��O����ˉ@d�Eb%����q[��H��YxX�$f�D۫1�Lb��,Loymfi���֥�\�=��{_x�Bͻ䳌���x��+�֧i�˙�V3$�J��^zb�[�.�?�zK���ڼc�8��f�'� �er� �~�/����5g��}��m��Mυ��_�>+æ�tMZ�؍�=��_!^�yN��wC(e �<�d���� ^H�8��ۯ�i+ �OF#��Я-ݖ��S��7��>Z˞�<�cXp:�Zw��N����W<�ڍ� ���ś��*Ͼ�|��Xj3�3�R̃�PҸ\�cb�D�i�;�۠�S����s�b���̒n���C�Af�l�[Zn�uw�F�M#J87���Edk�79I5Y��d��*�����!�9{��� :d�M�?ڧ�,{���nN 5 ��.B�|�Wm�R3o�cz�|��3 �3����p��]�R��i�^���];čy�yN�$��B?�S�S��g��n��i���- ���"-�#8<�#�5�>3��%���a�=��Kj��̚�:'�u�&;��\�ү6��B�{m�|}ѓL�����V�6�����1 ���S%yX�\�<����Z��䶩l2HD��^}pN+˵���*�eo�������j_C�)%d���� ��>���ס� Y5GU�>s-�cr�[Q!��փ^�$yU��m�'�r��=5��F�y�y%�LG_�p\���^j�6�L��u�d\m���%�>�8������-o�w5�~W9��SD�c��Q{��(�?xJ���t�״��c��l��h�W���J�[���9n ��-���M@;(�1!��5����U��s��=����^y����Ohl�<7`�H����ڹ�m&Ё��RP���'~kGѭ���!��'.N"ڡ=rY�������*�����%���<���1��y���\J���䞤�g��]'I�0}�\��jq�9*H�\m��)���ʠt���+(4v�Qց�R�@�h����<��b����(���Sҏ�'JB�u��s�t��{�/:n�u�"��|��빱��5����>;� �w�G��ܹ�IT�&���#ސR��������(�Q@���-&(=MQҊ8������PG�%� ����k$� �D��3&䍋7��+�/���!�\Xî�n�&����O�P�g�����l��hu �ӅIW��?>+�i7�9�߇��������eM��C x�"+h�����F��b�y�hbtA���M��Rb�^k�~*��sl���m�$�_H���p�5�6�6��I��N����-��Z�.�~S������ڮ�w# oI��Rq$�Xr~���IO����溔���$�.����@�*����!�m��9L��.>����9����!���s��u*y��c� ��d�ۢx�O��V����;��,�T^�D��g��\Yì�o��|�)Fh��f��z��}��SL�)�Oyf�L��wJ�@�'�Z��.�}��x��A7�Q�7Zd͞��X�{�����OX�������G�y���P�"��@��&��OYhx�/��W���f��r��o(=����y-�y�H�A��������K�+s���iM*�w��z��������]��ipٰ�S�wؕʧu�幍:�� #�YDs��Csl6o��O�}����a�ʭ��n��c�]�t��h�g���"n�C�c��f���j�CH�?��Ucp�\ւG;/��O��֪@H|�=������:1�1]'ýkW�n1ax#��>\˺&?C��\��6����k��ig �¡�%p�+0&7���Q�R>��g�x�V�"m�S+s̰'��@�ֶ�w��ƚ�9��{���ˬ�&�8�W~x#PӜ^XE�9�_��Ce���z��6:u5�x�Oca0_K�!>Ӧ=��{��MSJ�. ����7j�r�����0��rS���j���g�u�_/'yA���l�����,���4��Fy��)8�OQ�P�!�/C�R�a퓀*��%�hD�?@����J�[D��a��s��Y:���˹,C��e {��խ$��R6������V?+��Z���Z�0i"b�c؞���j;啨��OqR%v�m��{՛=GH���od�����=3��R����,.ۜ$����>���> j�zi��SE����$����Ѹ�y���-*�[�T�ɦ$� #u�٤f#8�0�|��/���:[��sZNO2!$M��B��<;�xoR�VG�t�$�G�m���Eq���$�ʢ��<�����_�+=�3�˹�*]�~w-x��]�y]\), ��a�E{�ƻ[�.��ȶ�T����h��9��<[��Xo��Ꮣ��}(卵*R�f&�s<ٹ��&b6�̰��8�g�[��xl�����$o^x�jܑ\��G���q��(�b�Dls5�(���~\I�[��Ӣ%���_Ukd���''o��6���J��F+s�6��"C�"(�'�?���V�A�_��u@������[K����w�φ�l�ٍ��GM����0��WӮ˩��'^y�*5���]c�wyU��rҡ�U�+�v�㈑�(=wM0>��kW�-�R-�`Q���)kq�'���������hL��>������<�>�N.�m�Hǧ��?����?�3c�[���K ���1U>�rW�5�~�c�b7~�4��l���wqmv��M��{Sr�����M[w�ʋ�4�J�+o�$�n�xG�ҭ��Ku<q�t�������~)־2i�-���9.�ȹ�m̈́1�^&�?:���8��O;U�y��/�{�j�����6��g�x��o)k����ړ�s�\D��+7����D��y�=����|KvJIz�r|˞}}ie�$ .��,��,m������Q��ͯ��ZW��0/����\ ��4�ۓ�kr�B�Q=ޣo6J���aX�Q,dR�X���Ļ�!1��V?CZ�p��E�leCo#�C'^���9�@���3��[\ +r�!l-�:��G��:��<`Gq4���"~}�:����H[�j�'ɉI�rj���4v���>:�?��q�C��v��������;� [��ȋ���V�3�����2F=��Y�M�ˌ ������t+φw���-�'����s<h�V_�M�<g�iݭEdݏ�~�X��F�=?'a���+ׅ;��+��h��zT�i���6o�Ē�$B;B���v����-4�f�e��Z�1�a��e|R�-�����5��È�<�c߆�=��+�|�g��%����H?���e�����V&-N�G���� ���kؾ![�\��$7z�ẇ��W=�����z�0����T��6�0�ו�cT�c�%��|K�Nm���t�g��_N�����v�N�;�h�3i��v���]Z#�C�) ��S�Ü�� �KA���3Mt�c\3q�� ~������֏�:Tz��%���R�yV+�Q�1�~4�'��5_�����a��@?��ٺ��� �#���~}?O��3^��'%�C��A�#���K} /��Omݢ-v��1�t�c��^g�_�J陴��<�"H���� =�OR�����/��cRM��P�{�����n�7f��C��=�zq�|���<G��~(o�0���ħ=z ��[�Z��̞����<H�mnt\v�R+ya �w�b�<��W<q��'I��Ŵ�0�(��4V�r�����T���_�}�x�ɲ�o,���\/�g���Ƨ��o��KՕ�>����GW��>�3I��7"?6��uR1�_f|*�:��Ơ��n��w�\���dg���ʿ�<O��U-�f"ْ�u%� ������{Q�x��ݕ��������ȃ�B���B�=g�σ��^+��iת I�E=F?Ԝ�Z��ź��D�m��o��)X�D����2:��m�߈?�q7�>��#܋l�q�W�x�Ok1,�_ ��q�p3X0zs��0�[��roE���k~�ݕ�Cy+���@w�>�^�[�� '�ׇ�I�A�ܘ����,�'�j�/��� g�$��F]�FG>�[Q�'�5� ��f�j�©$d�����r������%�����~��mF�;Hv����,Q���Q��z��>���GI��}�O�� �5���k`e����Ӓ�����|�o�S%���R`2 \�� �$ �ПT�?*��Y�8ɤBA�8�i ݧ��k29�F���K��AIۺ)�(��>�k���a�9��z� �M1dԭ��B�����B���c���Z�������(�PK`U�`�p� I���|+�0�0���|�]�չH5h��Yc��q�W�������G��t��c"m2�����b0)h��gk�ƥ%��y�qR,1�� ?��+�[�&hn�/m�~u����"�U�� �? �E�e(m�#`s���~��Z] �ib*w+����Vд=_T*�Z]���#�~0?�|=!k��8,Q�����ր��?��fv�]>�7����3�j$7�*7��\���|T�<K�Z<WV8ЗE �ɹ�'=wyk��5�7��R5�qj�-�$1�����C��sϮk��>%^�(�ּA`�@ ��<J�уB�n扴�wZ���潟B��?����~��sz��!p����r{�8�Sx�Y�����'^x{���x��5˵���V�utY�ȥ���l�]���is�e���r�K�XH�B�`�Ƽ����.dO���M�����u�k��Z�ª���X+���~U��� A>�ֺ|g$���u�NMBh�K�%,X����[H�/��m�m=}j�� �Kv�3��Y~��v&�`�2����P#��I֞3�i�n;.�)��E���;�@�q��Dr�j����4+-�[*�o��cW�m�3������#>�� ��n̿闺lg���O�E���d+4������2G=Ǜw�,����=0���a�Ey,�,�Z��A2��I��@�LTP@�&���(���@'Ҍ��*��4 ST��� Cf�yr�(��pO�������ϥlxC�����~͢i��m`$���E��9�}:�U���-!uMZ�H,I����`���F�HObq���� � b6����iZx��[�n;f6�lq�T=�EO��؟��_x�-J���=���!��>c��]���O�X�7�K���Ov��.O?J�J��O[��VӴ)go��?�z���J�9?�)|Q� +A�N���ǂ|��f�\�H}"�I9�P��yRA��u�j�WͶ��)�.T����N�b}V+(��%Ny�6�Lv��շ�_���ss�^i>,B�Uby��Trs�Ik�� �4=.=?N�Q"^I0+�������е�g��̍���c�%r�ZN�qҏ�Ҁ JS�84s@QE���RR�Tt���y�Ҁ:�PY]���.V���e�|��ݎ@#��_B�:��)hh���^xcS��Aw�M�y�;y��yk��bżem�q-�2Q,}Q���C�����w�������� ;�#Z:]���>Y?L����L�jD~0���"����$@/����?��?�yf��Z��_T��v!Y�[�c�^����ߊ-�7���D������!�s_=|K��n/��{�9��l�Z�ی�ᏽB��k'��v�w�<���a��lg�_��h�j�uۆ�Ծ߶ل�`>V̌���>���]Q��Ԝ6�;�},ˑ�ul�n��z���}��l��Y^�@!$�x\�8���R�������I���ot��OæV�m~٧I��v�����v��Z1��/�J�|�kx,�c����^U�A��t K|�q���B�����g�g�z��cڴ7~#��W�=o��$��~e9�vֵ-�T���_��!1����7�˴�/�xϮ v�u�u�A��uu��������v�\��FIX�0H��q��_?���%˫�B����)Ih ���x�����/9���أ����Xd�!h�D�y��]�Ԗ�՝+��H��y0e��Ny�����XC��q-������Y44�&��fc���OzXC��Ƥ��l$�3�?�«�>��:�y(W�5�|2����'�Y*\|��:N��z����Ų�Rk9��<~dM�R?���v)=x�'��Y��oÚ���u���l��V�����EԼ�xz@�*��Ԭ��F R%Q�Ҷ>��\� ����1�>�L�f��I��@�����u�ev����D �n. �^�煽�Q+�X֞�>G�恡���\�X�-b�瞄5��irڤ��C}8�z����o.N�wX�a[��b����&r-�$�F ��8��fA�N��8���.A�k/\����� ?Һ�k[P�Z�7H~��\���Hyb���v���'�jHJ��T�EFT�H�zT��! ��-'�F@�O֣�b(pA�*�`����J��'�T�V�0�߹@S���R{}J[�.o2�5F�����s�¾�𭯑�,PMms(;�g�s�r{u����xq$6��}�\[L>Smv"���Cو'N~����M?�:v��|@������[��F08̈�.��a���$�ɭ�d�����ϙi}�BxA����k�֎- ����?�:��㞝5�����.�����h�<q�@�ξT�ݏ�|����!-�,��c�9�����s�D�����yg��x��U��Pb��I�'+kW?^��ZI�Ǟ��v/�qR:��{����+�;T�>����,�9�aܻ$��c���}�d/ޭmnh�GkE=pI?�<�H���ï����&�,q�&c�n�>����pE ��t������Vw�ȭn������W��&��ƺ�LYY��iW�`�N�@�d��IhK0������H���+?]Qa<�m��";������-��=/FV�I��OӥA�����s�峵��#5�Z����5��_��0��e����K]@m����Tc��� ���76%�V� ����m�5t�I��뷊�;�Z!���KԸ* �2Fr~`?�}K�þ+���S��bF�/��6�ɔ��Ur�!�\�����w\���4�V�[��6��^��'�I�Z�tf�����+l��g�q_��|:�xe��.�[]��1��{21����f�n7<z�H��X�i��*#��MZ�>e�~An��*h�]�v�H�q��=��k��0ۯj���,�p3��k��u���.%�M��N2Ovw�k�V�u��蠃���a\u�pƝ���s��V~ϦCd1���d�i?��KS��9vr���c?A�]O�f����f����p��֮F�JK���H�61�w�t�%�rhY�FJl�b)��kSC�T}�����n��(x�<`��-@����i�:hkr�m��;�{T�Ԛ�!����t�٪]�\�$���#����^�#�g����oѬ��N���lo��y�9W^���+µ�kH��$oYh?�+�ٖ�A��U��rd�H�h�-���Y�!�84�� Z��O|6�t]CH�x��J�K�絝�$#�P9rEc|^�|?�X��MO�q�:��f��0��Z�Юm�o4K�Ț�����dz�Ey�ŝ:��;���3�f���� V�u�= Ji����D��2 Fo7ľ'Ev$���s��+����Ԯs}��רX��S���J�c��]~���d��R%by�-s��V��x5�Rď9� 9��)#+>�_i������I9��rF?һ�C������,����m���M�~�aʑ�㱮+��Oٴ��5�W��s�����e��[h��Q<���ui�6�C� ��B�{�J�� �3�υ��5�,c��V��0'�q��<��濴��"Ka�}L���.tb�3��l��~XYY����"�#��}���F2pB�ϯz��v��_�S�j�0��Tވ������/5�bۍ��<]��3O��%�P������3�8�z+Y����3��z�Q�Р��X<[���J���;�+�ucf�x�f��}�U���ұ���̈́vz��!�2����`��Mp�>Q-�k�,�;p1��tVWN�r����B���j� �����\cm���w�:��P�]58R��C_N��>��|?K�W�r�v� ��9���%̩$�� �f�g�F�"��E�Ѯ��[/�$�O�y����STN��/��x3M�"Դ�E�LTfM\��I� �@���ߍ~���:N�*��G�Yǰ��^k�<?�x����[�è���`��d�<Y���z�O�-����_�%s�,��ϼr��Φ6���� �Z����_`i���+�7�����v�mB����3���������4/Arl��I"R܃�F:��ڪ���}�� Zg���3��n*�2�WS[V}B�H[-C�S=��b;].�Ac�?!��,���v������������G��s�KZ��( ��v����-P�|?������k{v8��]������K��7R9��"����a�R�������!�/=ϭa�!�c@��ឍ6�{"�����'����־��[��K�E'��R��3(z6��y�L�Hާ�P�Gj�w�v��W�m��~�#��q��g�5��Z-�:i�#��u�v��Րc� V8Ϧ:��8����ς>�o���2�u�k�i =YU�s�(���g����d��'��Urz�� Ҍz1��,j|;h��#Z��Y����I$����yE�(��g��]���|W�d4:���B-(��5~��x��:���q�].�8�F����.;W)���Y�f�]ODVnO�b��A��]&��oP���,���o��-�A��X�>:�x�[[]�JSZ��*>�:~4�}Q:w!�I��M���ֳ|�:D�����b+μp��dMuu�*D0$�l���z����5�L��?bL��w��P�bEyޠ�b�ɹ�<���i2d�7�I���Ns�����^[�Q,��s�ְcM�p��Z�V�q#.�Y�s��J=c�עk1(�$�����_ `� ��/�/?N �� 'ڼ���v�c�պ7h�~D��Y�F��-�F� �?�(�ˋ�܆V���kw�v�V�1��c�Z�'��2�t� �����������3[�a$��f��2q�Q�dӌ�8&�/Gl%s�at����q�rq�M5��'����?%���e�A��X�ob���q���STr�{c_�GB3�����ys��}�M��E�k[�Z�I�:�?¤Mv`�=A�n��0=�;�O@2t���l�ң��� ����@��)!���f�K�K+]:�9���*`C��gڴuI����&��L� ˘r@l��L�7��f�|���}���~0�N��7<��+,@{`߀��{��j�|���~1u:N��jN�pR�������|9��ޯ��]/%��H����S�W�KM��}Q�𥜕PU|V��p��?���7���5����3�-����/��+��|�Y^�xtԹ�A�&�|Ƅz ����P)�����O��'s�%?�*O4ij���Un��㡻�]�*�$����:ƶ����W�����)�Gd!� ]c�Qj���͒7 Z_4Y���6��aY��wS��p�/�< :M7�1�����wi���Jz��a��Z� ��� �F{����͜dן��?�<K�[��%-���:�tmRT���u�T� �Mχ�x�>{�{q��?iQ�K�q`��ݗ���Yu9o���'����ԑ�p'Q̑/�1. �<Wu��KU���/����jr�^���X��{(S��=������I4��.& K��2qֳ ߍYT��NBG+�qϮ�BW`��|>�|�h����� �Q����hh��ڀ ?�Z=���QG4Q�;RP��W��9�F7c��}���F�-�մ9�m���͌�F0~��Μ�^��~YT��#�z������E��-��-�I�,퓏�°U�oKfg-�z��V�w�,���D����}����Ff��^g�&��:E܉&��;h�?�������_jcR��!��뱕�M�Ŕ�ܨ�,m��|Z�H�ܞ[�6ڡ�y��J�٣o�x����e�#��� R�ֿ��uݮ�k�Ļ�XnQ��c� �G��ֳ�o��z?�K���A��Em|:� �/��[{{uR��y� ј;m�x�;H[��_�����5���J�>f���dߩ��_ܓ��^ �V���� ��l�ϗy�-�m�4`��y��[M:��_[ٕGi�/�Q��fd�}W�U�m�s� l�<~$M�t�I?眮?,S�%�:I�����z��ȷƛv9��ţ���*e5��֫q��_'LR8��d��U��t���M&��T}��z�μC^����q%��s�|�6�l&��i4����J��#� �$��5���$Kl9'���~=�班_���B �V��5�ю{sU�7R�Ƨ;b]���J�G#2����>�F��2*]FP�a#�����Ϙ�؊C���|�J��s�^iZ�b����29��>��d����:"UI3Г�дWG��~%��ii���F.H�4,O����C�Oh���g��V2����������_5��g�4���P���G>������_���چ��۷R���R{ 7~&��C�<_�˸��5��������M��c����H(p;��^���=kJ��ِ��-��v�OM�"�Ҽ�_y��N�-��%�u����W@ՙ�w�)��H,W�����ֱo�m�2C��q�����o*�nȳ����� ���9��NK�1��eB�s��b��nIiy`O�JlG6�c�P�a6ʼnb�'�+�. \g����m�c�s������i<�;����֫�2�����c�<���Z`v�^o69b��>P�[a9�"9^k�/�:��F�l���շ8��V�&��BOOQ_#�uX!��J�,�7�%Ȍ�ǥ}W��/��D�:$� ��2Z6{aԄϾkEk�#��agw6�� d��K� mt,���;W�^/��9% �ˇ�Hy1�gۭ}7�D�:���_�h5���*=��|���;Y[����'9$��>�鯄s��n#R���a���8a�9g�Ywd���z��if�n�b�Ev˞IB?�9d����ϛ6��Y�b��#D�H����c�q�t7��ܱ��F����\���$�֤��ܪ��PM-��`��3�a����eӮ˶�����/N��+�4���Bu'�63��o�Bh ��Ǝ��$YF?�$ի ���o���c��`IUmkV���?������ă�ֲ��M�����4����o㌕\��"��t,n5?�A��B�Cm,�=� �= �W��e�5��C{�ۛpJ�d�����o��5��[�G 1H�������_l��>/��<;c�"_�*�O{�)9 =FzӋ�+�a�hxX���|����{�b�B��i�j2���A�b�pq�{f�Ѵ߉Z����G�ֲc�pK\XL�����*���7�>)�w;�����d��:\F��>S��RM#i+�� �4l&�QbNv� 1�{�=�C�d6�c�������a�Z����;�*��e9���0�ڹ��b�F�ҡ�b�m���.G$;�3�(o��H�<H�8,�)��ʣ�N�D.H����,c5�x�AU�f�<K��I�DQ����Ms�������3#�_�������E��m���J�PoC���1\�Hݑ�+��}�#[���$�VN~������SQ#7�w噡�άZ��m�l��4��.ه�d���o�l�AH䅢�mBs��@W?���&s�i-�-��9�>�H�w����P�-s�� ����{���n�l�W��Z��<UW�J��ٰ�q�@=�+�O�~�qp�ä�^-��#71�v�˓����ipoS��;�cž�����N 5_5��8��( `��Cּg���;T"(��w�6�&�v?�.���}3�������F���l(ޱ�pb\uǙ'�?�+� �=��=טK+]�ۻ�d�3;Q��6�������7��Ft��9�������l>'i'9�t�{It�����Z��F��N��Y�=6گ�����kS����S���`��\~���!I���&�u�\�1؈�B#D�,I� ���&�ei��2Oh7W��gGU����U@��I�08�+�π����[m2wK+���ծH`&B���{�1�_j�K�mis�����{9#3ٖ''a��r;�\,� [���>�ë�9-��E�l��բ ѱ�?�t�㞞.4ۙ��n��6�9��2ƽ�o xcU��c�~�����E�D���Sg�~=�7ᖜΚw��oLp�q�[�0?�:�}�R���j:�M]HM��G�T�"��ָ�*�d-5�p�9&i���@3]�t-��� iY�#�s����:\�]t�V�'~�6�͇�S�F��+]^�6V�滁���c� T\�9�m����R[���9I���K�֒�|3�Z89Q���r[?��/�4����I���U�v��Aԟz�.7{]��`ӓw��O��9ďt���{��:o�5���l�Ә�ق������¿�)��k�V�wQ��n�S�� O��/����\j.�g'���͝���<���y�k�߃�c�i{.�v��?o�h��rs�\ V4���9?��a�C,�/�۫M��kw�Z���$!��_5��Y�f �0�"����2z���C��í�5͆�fdb�M��=;�ooOJ���^�,�{x��C������4+[a�;�q����}1}O�����YL�n�Z�K��/����F������z�3@�U�Pz�A�Os�M��4]^C�]"S��V����M�}ݎ����Eo����;r{}�N�X��j���d����J~@Wj�~Uĸ;�{���?m>`�� ��@|���'��ּ��̗NČ��#���)+2{ 6�q⾶���m֝m�t��2���Uq،�G�}+�k& $A��y�R���ي��.W削��i�=Oҝ~�B����pE�d�w㪆;^+�ω�=���m�W�\���;���T�:���k�.��^{�B��f���ǝ_�+ɾ3x�>�^�����W~��[��!�qJ*��R�8�r�+�⛄8Sd���+X7Z-���_Z�� V%#�O�Yz߈�sk#%���H�Fߚ߰�#5��x��J�Wm�p<�ǯlӱ�2:h:E��x4���~�s9?�a��}�+��G$h��j��x���8��1b�C�<G��q�rbk^��n�5MBեV�%��\�����K9�����J���g+c+tT�MPԕ-���W4���Ex�VV<>9�[�TV��-UF0Bʇ���]D2jEH���� ��4����\�bO-t;�mwa���6��L�4�̻��p��b���D��yn�Z�)�q�&�@;��ؚ�����:�� ��ǚ�v�6�a=�Z@q��"N=w+��tǶ����2Ƚ�;�>�qLM�R��|���־���{�Q�A@k�b��{_1C ���I�jX�{�2ڊ�;��S��8k���*S ����Q�h�<<���k���x�R���,_�^o�+��H��~�ވ��y�ċ����͚�<���~%�����i 7I�jʄ/��-�{��~��q�uqi���'-s}eS�}��r}��t�-�qu5��iP�h�6�0#��Ҷ�>�fx��O�^Ӭa�o���d�XḍM�HOFڋ�zg'p���q��ÂFI8�Q�^�o�G5����z]��IKBK�z�p2q�M.���iO����%�M�,��0� ��q� kd�F�u�;J�o.t�*]v���h�e!(�n��FO�g� �5��/��ioyd"��%��$�Pyj��lş���<���]�`��k�~�2�?��ux�`��u��Gk�>�HV�,lT�p �t��]N�_�|?���i�䖗�1����_r�3~5�\����.��dn��?�y���Y�]kڞ��i�7�䴘G#x��mCP��#�89a]f��x��Ėַ��J����N+�� q�1ާ�@Fi�$iϥi������$��I��oҙ �ݶ�_��Nq �Y}6� ��x���!��m�Ƽx�ɞ+��-ٲ��%�'�q[z~��kֹ�/l5[h%Y��@'n;"�Mzكy67� �+B���F�B�q��Ƭ���ň# ��]џ��_֯O�"6�y^܁�I�"�O��v�w���B��������H�{kx29������8���wqHRj��������.��9��օ���,AC��"�}����.��>���4>?x����s��q!��zPJ? ZB1I�Ӊ��QEQ�A�@ K���G�@��=ֽ������}�gy��8��Jy���'�GҼ �^����쯴/O�_�`�y�$��*��#�U����7Љ�>��<Q�N�)��,צ*����$��c�Y ���;�q��B��F��#�r�i�у����`}Eki���W�Sþ�%��qu��R+�F:������~$k��қ��:ɀ�k;y�q�}���������_iv�\��M�/P%��)�s���Q�]j��B�I��0�V`� �F�ʾ����_�9si���@�?M�g�:����ɰ��{0#��{�����t�>��/�6�t#}b�FVo�éY�� O�.C~��\cw�����5�����}�V_�w�����_,2<�)�i�12ˡ���#����@Ǹ��rj��4�2ms��r�9���c���jG�z��] ��|��R�{_9G��3e����0{dH���>'յ�l���'��2{WП,-Vsh1�.<���:�zs����E�+1lE���\�&� =L�n�1�N�\�? ���-¾��㍋�����h��,�!Sԁ��Ar�^D|�f��|mA���j G7p�~�})a����}V��`h\��C�uN@�a}��W��"�fn�z*����o8,q�����H}�j)�G���쟳Ž�ͧ���xTnkl���=~�}k�O�>��[]�Z��&@k{�VO�B��5|�Bծ!0v�be����3�+v�x��>��~�.�ME��x[}WL����Þ�:f���-ͩc��my���-W�:�,��k1��*�zt5�G��5����!�B1����|p>���� x2�r���ld���%A��3i_i �b�3��q�c��ώ�+��4���:ƕsf�5�i�l0�ξC�Ӂ�ʱ漱1���lyءa���֨��-�F)��Ÿ前�~3D�ۭ̓� 1lac��G�ѓ������wR�h��ڡꄍ���X���n{���-���Y����������˹I���H�h�.D�NUɨ��T|����p��h]����+��s��O�"����汫�~.H����k�`c�n�f 0�:�k������Kx�ᅣ4k�^��ac�."(��[5��"k�[�>��Nq�ھ��+5�{0x��×rcx�:>�H$}7 �mh$�"���<}`�e���*P0�[jW(�$�Glךx�hV�"�z�e�8�F+��^�ŷ::�%����4�4��c�,�����xŔ�{�Z�ᶙ��Y���C����R�l�N�s����5�}r1���=�d4� V������_�����h,.|��!�O��/��M�=:�{�e��&����Rԍ���usz�uX�����O�k���a�WG�Gk&����Qe����I��\����ˀe�*F.�$q^#ȱ2�gi����� "]�6�L�o[[��b}�@G�q\'�!��[�i��E3��n��#����Y�<Kd?�4�4��C{9�`�W�bY�,3R���@�A�l���1��_�@������ӠO��RN�����qm �s��Rƌ�g����S! ��6⾢��Z����GY����@�����r㧽|��ؤ?�.D�{*׳��� �O١��iS�U�ba��Q����US�R�����K�: 9��HJ���A#qف���=���k�k[�,,����$W1̛�������v���I'�$�,�w��㞪���~Ժ6�gj�,���h��F��t�o~�B��>W�����MWV�lm!`�qד����-�?���JV����X���rB�U����]%� �'q����Z⤎00ܻ0=-m���4�u3rfEɼm� ��cّ빺�7y�,ŷy5���v��G�}��s-�ɞB}v�T~U�jR��3rs�v��RPz��/ �Q�$�y`��2 XӐ5҂���W O�h������գr�[l���Q�:Y9�Q|�mc�#�m����� Z$`0L��G�Z�U���}E�����M�S5|!go7��I-�eHز4��0p=FsҾ��)g{%�b���PaDO8��p����+�/#�x�Ֆ�X�ݴ<�vq����¸���r'Y�J��i��x=�eC~d��j�7z���K���R��<RK%�����s���_7|P�e����<S<�In�C`s��k�uu�I��U_��nm@g�P����u���u}<��(Ԧq���!��r�Y��G�j:�{��� =$#��52}W���O��ځ�������ՍK\ 6"�X�� ����q�ހ��ڭ��rb;A�A�e+�V���:��եj��[K9<�&k��z�Krp7c�1_�u-J��y��]2�S�)<�L�����~cx��Q����a�Dy6>�8��c�Vmo�m��O���X�@�Q��[';dM���:E+&�O[^���o>�Lii,�e�����|��s_:x�^��W��O%\Ckmp�;sׯ�z�ڧ�d�ѓ\�m/UPl�`�Or �q�^!�KU�`��{3l���A���\����/���RU3-d�|��{W�/ꓡy��6��]�p����|Qu�Ἥ?U�3��K����Z{���;�3){]>�<S�0�o�G+3r�A�j��ktW�b+L���x�y�̦��'/���ס���q���vэ��?"��Kc��}~����b�:z���ziY��s=+��U��3�ڛ���Ԗ� ~tq>8W��N+�`s����{��+�J���v��4" KL��K�Y�����D�/��ٓ�%������MU1>R�Z��g�8=����n<a����ƃ�h����i�k�s��BYz�"��k��!���o2�HW�MV�9:�`p: ���?<:���7zM˂V;�$$d�$]A���.�����>5x�N��z'���5���,.���_5��ő��;*�1� ���Q�d9�]G��- ����m F���7��9�}+���KMF�����@b�[�����{h9_���j�w2��^8bG�E䍷�M�~u�s��钷�ܱ?��c���K��y`?b���&�.���+���Z��&u �$3��Wlʹfx�]k�hB������s�$��V dF�#mQ�nߝF��pH�F���I(�&�G}���{�meoK�'I�U� v��[)�L��<�߀�����A4����,+�O����gԟ���WM��5v ֑}����Σ�*_��Y��A��K'�4Mӏ��ȯO�1��W������c8w��m:�[�Hڹ�Սr��o��+%���qsbFՋP��QB��(>�5�ln�ϟ�cW��#_�a��C �z�ο�p��1r:)�ҥ� ��.ek�B�B�6!���F1\����N�/N�^B>e�����Է�)�mOX���W�����c�z��E��w!�\^�aB��1��Me�^�Z>����$��h����zv�q�,�/�n�^�,�xڏ����SB�0�,�T�)b>��zT�V�"d)�����*wR��VloQ&Sݓ#���#��!� d��1�]F�=�n\[H�H�Ps�̾�`��k��,��T���F8�.>�U���c�5[)NzF5+��Z�E�f)�s4�+á�7�7^c?�K�c��+R�4��yұ8Qdn>����7්�F�>�C���7 �ģ���#8��Q�<����bp$�b�k���kr��V�z]�a�5zx?u>��+ؾ�5�燡�='J�ME�L����ς{�c��薚%���s,�s��U���Xn�9�{V��Պ�����5F��D����u6��.�ё�B���^�#��9W������e�x�?�&{� ;"�S������O��w��CϷ�/a��H�-��G}\7䎼�+d�=��C$�qq�e�_���?,��F` �9>�=~���> ���X5���9�� ����ZD^����� J��Zi7ЈXF���2�Y-�r��=�E�s� �R� �ޚ�ryhYs�G5�^�E���2?��������́b�#���~u�?�$�����/"D�6�2OW�@���L.t���������9�H\�����^��ũAe5�+�(l7^�����Ǡ����Y��<6y$�̹�+�X��(��s�ޒ���`�ei��utV��9�J��t�.<?q�_ߍ2����ܬ��!�$q�<�u��m%����l�Z5�гc���s�� [��OR�8O�}:K�Ȓ���X�ۆ�y��x��F�?�a�/�����\Ld�w1�!F࠱�Oj��4�k}J�N [M�A��F���]��s��4�+�Ƴ����H�3���L��j����ui��֧��A�Z���99!��O���+y����O���e�j����~�Bt�fg�S�q�7n�������i��Y�3y��ZFP��>S7 c'>�����mH�2<c�R�^�黠���o%�G��[I��G?����ʐg��RV}e-S�+t�nA�ޫ[vW�V�5��o$MʲH�� :T�Y1,y ���?�eM�/ O3�'��by"�1��u��y�@��������1Ei�b�� \�K�i�;R�j@%c�n�Z(�z\Pz����^���V�/R_�.� �Zj��{�02q�Bq�_Ҽ���Q�Z��œ(����^���Ic�9癔����Fl�LK����:�4�.H��D�}R�n�*;���=�_�j���Ů�s@I�|m��'�$���`.�n��[������f�/������ ���犳co���r�wL�8���0����s�z�ͺ]Bw$䖐�P���E��A��,͐2z��$�-7>��n�&��mo�I�ܺLJd��zy��������5֣��y1�/ZM�|z����8�Y%�u�g���4�#X_�F2?Ѥ��,�g��9�$^�nk�φ�ϊ�����TQ�� ��w8��;�Ns[T�S R|ǐ|[ӥ�;�u� �y�Wϱ*�y��f�N����l��U�ñŎr���&���������x�kZ"q꤀+�Aj&���܆��q�j��*[�i��� ��P?����!��[�)�=ry��+Q�%��[B ��̃��u�I�sz�?���1�v䏥CLH�5�);E���d���!�z����b]��;F?3ɪ'�K*J��`O��� ���8ȭ (�H��;y3�y ����-A�A�Cav�ۛ �(���F�$�A��W֟ot�=��[����-��Ќ�d���=x�멥k]�ZA̗v*/-�c�4D�~�}+�/�>#���$�Z�6�0�mr�?�F�S۽\�f���o����K�?�_]����������5�>*��\Is���r!�FG�ײ�Y�&�x\���^1�v����c1�1����އ$�����:��=~�$Ջ���5&�,z5�-����'5�wu,���z��a��<~U�6�}�x3"�Ě�s��h���� 0����0JW"�+��J��`hW�������7�?Z��F���0��z��V0�QH '�����k��o�R�E�� ��kx�h��.DV�� �g�;9��_X�5�t ���Ș���rTM�{|�3�_'� ������E,�G��7{1�g�<����ߊ��(�u}9T�$^X,�8�g�L}�R�Wgc��4�,S�>��~it]eb'�,W���ׁ|G�n~�.<��(����(�N�z��v� k�ŝ�����xp:��;/_j�Msƾ ����iyo��յ�8_�*��T�s���I�.�y��G�̿�$VjZI � ��[~m����u7���i"�c�@n?�ߥ`jR��������*d�.�<��Io�� zD�\*~��a\��̘㎘�=kQI\�Vc�n���),ۏ��q���`U�H<�+��D���*�l�&9�䉔�Xι�)R;�r��h�}=�f�\���}cQ�q�窱��UʗN���ԳsK�����?�$���B}�R�������s��l���Lh~��ܨ2����+��Q�8Y�I"�V+�e@�+��˱?λ��w����ܢ�KEt��A�=G#ֈ��w�|�n�h���i��ڳ�n�ģ�߅��y�O�~"����"���8U���\�B�����X� ��l��_A�X��R��ynFyܹ?ﺻ�{�."o��z�H����J���gE����K�]�f��2nf���9�8��'S�c��?=�?E���{�b&ҥc��h�W������<�n���T���표앙���[�'�k.�j�q.�ۛ&h��s�^0�0�q�l�I��b�!�B�1?�v�����[kO�q���S���&��,w�a>FQ����v��[8�'b3�� ݹkfϼ��5�n?�y�R،m@��qX�oR;���Z6�9�_J��\���A�d^[�Qj�,���9O��ˌI�]����h�]��6�;/�џ�1��o[ ]ϻ-a���s\�Цո�߈b��L�� g�+毋3��*\��x�%�R�`�{�+���v���&�{�����O�\�B�O�ּ��݆�e;�t{���Ykq]��AcU�m ٫�A��[��������?�}�Rop5���:�k���Χ��.�ϛ=F5e�����K��)�fi�۟�{VR���Nk[o�I ����&�Ϙ�O ~u�~����P�eb�Aa8�_���NEp�"�L�=��G/!��&�/ٜ��f�&�%��+��m��W� n�^Ԡ9`�,��Б�x����{K�D3���RA������M��o��lC�f�2#r|�~�W���|�C@Ԯ�f[_:m�Dm,�rz��Uϋ���|��ؚ��eP�h����<�z�E^�ї�s���:2[8MFnؿh�ك��]���J��WK��[h~�m�N˓ �����v1�{�`}n0��@�\�ޮ�R�����P�0�����5(�fU]_[����Fp-"1ƣ�,���/�_f�Fh�P8�sɽ����e�������/"��d�/��s�����\��ā�����iY �ffr͂MX�u�6�/4�m.c9I����Џ�U_���U���'�>���>7|Im6��bϕ �z�Y�p���5��ֳ�/\�{��a�g]��B}����f�a�=k�[�@�����7�Љ�d�$z�#��}�/U��i��GZg�,5w��^��!�qTҵ� 7>�ܛk�+DF-��BI�Я�\>��I��/� :~��G�$��^����� ��^��Y���4�t���b�^���G��ErH��|�i5�Nɔn�ċ���)�Gk��qX�Z>�m�G�[�pI��}�}v���K��RT;c�lcM���,?�W�Ѡ�>��6���1��[߿���ߙ1�]�bM����U���VƼb��3��<���nM4C.[m��J=�f�<.�� �V\����e��4���|Wm��G�|K��i�Z��ꄤ�{�`�0���#�}5����n����ʮ�Dz��`9���^k�<T�0i-$�N�x�d�Ɲ�O�=���\q�\/�O �%�>L�!����:C��p=�;�{�z�=WP�Lqw�x[]�G�G6�$z�U��5r��e����-u#���,[J�}�T:�u�yY����e��+H��.���3z.�������\n^��s�\��o3�Xw@�;rG��1$b�:.��$�����Mpc_�hι]h�:|�,4�u��I��rO�[z���{9ʏ�����7J�As=��E���?���CP�i.��f#�� ���X��$Ib9�dUK�i��-"���b�%.ŏ`S^����~���k6M��|�����H��T[������"������6F![�$ע�[�ֵ�Ƴ��Mgg��i�6Fp�}��| � N���䏚�R�I�����v�i2˩��`�������\�1ԁZF�ݕ������:.�k�E�!{�S�Q���۞pJ�t�+~�ЭƲ��!Qť̪#���|Q����Hѭ�14�M���+�d���=U�u+g� %\ya��h�m-W9���z�$�}M��K�.aT;���b�$rr�#��<�X&��H���[���ڐ���4��wx9>��9�H���^�Km�OL0��vw&�'ia�kME���v��zm.#*�V�%Q��9 '=zv��+�u캍����.����]2�2N:�D �<�u����l&�x,^�$pb�-M��H�[���g�sk=���s�߭��;�h&��2���s�Vt�u���5��xG<I}1F��9#��j��M�f�U6���y�1�a�ô���9Զr N���K�0��<3�Y����-�tQߵ7GM> >��=�L<�tK�*��$�23ڪ�t�w m}ym���͎ɡ��Ǒ��s�M!\��Xy�d�]�; ��Y�`�v2��#�^:Ӽ)��e�X���H%b��:��� �C.r��\�s�%��=.�]�'v��9��@9 };c�jW��"�[~Fd}2s �����=�Z ~�]���<A��h���C<`�����FrNp~���M��m��ĥ��x�G ��n8�Qү�6v�:�R��^E�UӖe\�H��q�'�K� -mD>��:���F��� �!A=�y��4Ҵ�i�.�J;�����+g�+��(c��1��B��.�g��H��bK(��f>c�hRP�l�U����K�'Y��ԤΔY����� �9皝t+h༁�#����ˇF�LRN��r��rrs@V������8K'��ڳ�$�ɹ=�i杧�3O�qq�j�t����������FT�$���W����ϫ���DEqnna���3&O9>ՁiVz��ޏ��z�ź����p�IE�G9��Ђ�L��*�8m���i{�Ǣ1\�F�~ƿڰ�@V�CJ�9�T;W���"�72�o�K� j@ i��P�!<*>�� ?��x�l�'��E�ƛ$M����5�@0��s�h)3�2,m�wt�����g��Xg��V:��Ū��4sB́$NOЊ��Me�zd��V?=X`��5�V?>1�*���0"X��"+j��d��r2|`����_���letyZCֽ���H��q���G���ڢ��ŏ�i�6^n���`d��W���.��H��E}7o�x���:��^�c�������uʑ�ϊLy�#�f#�S�ȁ��:J��?������� �z/�G�&�/� {�b�--��$��Ù!�C�&�Ĵ��>�o��>�r���h��֦��8~�o�Ŭx�Q��ܳ�#��"�MA�2>'�ޖ����G�+��7�|�j�]i�y���}r�mih�r}kß?g�G@�\�~kZΛ4FXo ��X�Q�T��wC�R�h��=�W�:��f�tq�X�)�U�[�q�24�F�|�l��1���m���> ���/�G����C Γ3�,�sڟ$��|#�1���Ad������� � O�� ��F���t�t�\�9���M���/}�]Oÿ �_�+\-�Z@�H���۹�:��h��~a�+0 rOa�[�ҵK��}2�`睳����o�[o�����}����n��b��U� �0zU?|d�����j0�.&�y-Ε4��<�G�QǕ,��(ρ|?��e߁��j�.6��g���r?+�~�?�Hxs��4u ~�;�>��ɯ�<!�;X�<m�O��=�ձ�i7��x�g�'�O|k��i�}֛>�� �����X��WHD��^GU�%�ĭ��Z�|F�5? x�M�K;�z��O��Y�|%��!�q��J�(���<g��k�߈����94��jV�2:���F��V� �=�y��?����������0��v@�����J�?PsE��n�<����8���\�J��E�NXV^��=|{��b�:��"8Wԡ�=��kپ6�O��m�i�� ��k��ip�u�V��xH��v$O\W�x���kM).�>'i.��&�i��@�C��K��W����<�2á[篙�����MiX~�% \����l�>?��\����⓹�> �J�~\Kc��?�b]|Z��u�G�x�����Ѐ��4��=r��!�C����g�Y��̊Ѷ��c�P�������^e�O__��^>�Y�dhn��Lzm.���U5��e�+_j�6��53"2u�ߏ�&�!]�V�_�U�χ����U����C]ƶt������J>=kV�JCJɫ[G���ۃ^!���_"Ks�W0�=>�͕����4�0q��z]����h���>�KC���o!�eKK8d�PH�͜����H��],Gm�hW���ɭʼ�#Cop��"!\f��N�U�������� �]t�����Q�e�ƽ]x��z}�>"ԓL����pZK �D��r��'��/��(�=ޚ|q� �Y�w�iv�m:ᣆw���M�7��FOl��ܙ溟��#�^.�nӷ���۾�V=���i�V�������?6?=�����x[ž�T�k�x�Wl�z~��&�+�QX6X�#h;�������N��?\���/�k���#����c���h���#yA�����z��+}n=.?x�T�n�Ik��O��v���R�y�ڽ��Ԭmb*���FT�GH���h��Z�> �zE宾�/���kY]�⑭��,����r q��u�Z�j���i�e���"�0��^�ٚ2)S��ɒks��!�O ���Gohv�[1wgsgq �W�� *#F8�c%����+S���5�x���Σ�i�.��Do��� �ar����{�_*\�sx�zo��=��-͍�]�Oo�_I(�� 2�9$_���C�����ϧ��5�w6^`�첌��t;�#�)N>���#�E��M�Y����N7�j���,�i��+��f�}6�tC�≁ �Ȫ?���f�m��Q���1��u0��rwF���B+ȆqQX�GS�m�.��[H�|z�.���î���O2���}��<]x�7.[W���w[io nzs�,<W��3��?ý;������n��Oeፕ���G9�R�� ��g�:���z;������da&�4�v�/�<U/�����c��r� ���Q����<T7�V���Aj������꽭�?�� �*���9ەf%`��noğ�Uxe�̸ϸ��V �3�n�3�#�Ϡ5�!��K��J� �˶Ԉ��9`+D�}�]g#H����E� O䤚��� ?w+8?8�0G���5�r4�8�s~���?x�����k�\���L����@�s]����[^�L�u������@@���ǥb�ܾ�r�L33�3��w�ZWF+��t�:�[�$�����&%X�+T㸮�� ���7V~���[��}B��Y��H�ں;�ه�Q�����2>˩���L)$�nw��E�u�� ��}�k���5d�"��Ϸ;��yk�|c�?�ך"Yj~8��a# �x��b���} ������8A��z��d$�O��c�~/ijV��^+�GS��+����Rm��{��iV��zb�%�.챎�%W��p��ՙ��t�:�(�M�dg���/S�����f�jGk�G����318/���]�U��<D\��A�8�?�\���*�l�Y�9� �Ҫp{�>�{T�+�9$�ހ)��,�AI��u�i=j����RI�i�t�!}���UN�)�`=����ĩe�j�/�ah��-Q�W � -�)���x�Ğ"���_��Vp�go<h20�m��O,C r��#"�m<CyTw����.�Czd~5��6-j�J��^!��{�=�5V Fq����W��n'vy/.�����N;����Vl�t�Sܾ�� h��O�#���5��fk�.o�c��hs�d�Fq�ֹk;���+(�c2L�C�3��d㷥w��h���"�-��`\$�N3�A��?����C�?�'�f�����F����.�.9���=�Z��^K� 鱶Ӊ�mZuB}|����c��Ѵv��u�g��:�)�_Y7��H�A�a�i��McU��d��{��!d��ln�>�����5S����>]ϛ��f�R��q������A����e$�j�HP��+��>��ۺ�6�bY�bՖP��0s���8�H����m'7�۽L�!&���XE�k�d�]���O3��B�F{�+��Us�b�U�b���.�;D�5�WI$W� �ҹ}c�vc&����4!�y�(�ܜ��g�D�v����i=����6�6붇j�=�$�?ޏ�����!��6�2j����q[�Ytېqд`?S_&���dX٤h��\S�3/�F�~����|y,ZH���R�2�������b�#���ik�2�3�$�����8�UU���kz#�3W�kwfQ�հS�ےz����~��9�:���Ηu$$�Jc�y���S�+e���V�#'�YMK���e��u$YaզS�Oz�i�s�������[,����<����I�+^�Mx�"�_��������;R��1iaZ���a�=z���Y�9����\��K�� �$����Z�!�X���O��_t���YNNr2I`M�����g�n��)�G��@�\��O�0�����zЙ�F Q���zSB{M�>�ݱ����>9��d`b� k�,��F;`1ǥv:��~9�hM+�����iڼr��9����?��?�b'�PĊ{�m�j�d�jݽp@�M�6���酭�� �q�y����}rl�4�.:����ZH��½bĨ`|� � ���5�[Y��z�o"d1�|��}���ac}o~����Ԁ���1���[H�.�}p&���{O0 �n�#8��֗+as�����h����L���BI�����[�F��*����c~�l��L=�I�W�>�ݕ�D�&�-�������>���Z��v�]�\4��� ����zn`8��<V����m���]��:��<!/�(���,RM'��� �.w��Ʊ�de�o1���O@>�L��G�Eg�[[��:(�~���G;�R)���]�F�=�9����mZxd�R��2�~�-�<�-�a�ư&��ַCz}�BK�I����r6�#�>�4>(��df�����ZK�5������?6j��k���g��c0.�eտ�q)a���@�n)�M���MO̚~��N�+�yfX��@�9=y8�ҡ�9�� [h�QM��V�d�,��� _����sH��N������{��OsX����g��7C��u�o/�o雔��yY�y�B������9ɠ��a4z]�k_ۖqJۊN��ٙ� Y�N~_A���gQS�鋪\[A�K�����{�p �������c=旦�se)_���v�*܌!#�g�}jοk�k�� ���)���X�bH�Eo���Nj+]�w:G�{@�Xc-s6��;p�2��;s�Gz��~�%��P[�Y[�r�z=�Si*r��v��^#��x���6+ֺ���b���H�q�A�=����3���K�̇�e^2H�LsLF[�c$�G�P��%C��m�p>pPF9�s��>��̹�]3Spq I8����囑�20 � ���{ŋL[�X��+Mm�F�V-� e�8��Q��A�d�[}'V�G[��VhT��s��g�AE�8��Kx��2Cք�4������\��U� Otu6�|�t�\G�,2�O�y�#���U+c.�C%����I��k��\D�7d��8����i2����-f���E�4r���"����y��ҝ�#���nm"K�9�,Z]>�+��$���wW�7�����դ��h�W2]��۫7PU���s�03Ӛ�����J�dW��Y~��C��>̀ ��Ywz��j�Z��yb��rj ��s�]����B��ƣh�����ϯL���U��8h��V���LcSk�NͼY�Y,���\OPO>�S�|+s��R�KX^4a��^�j'*����}*�� \Ok�j�Z�+/K��F0z���`�{P�2 Z+}I������Zi�Xܵ�0?1$0�@���g��V�m?T��8�v��UG�Q��uĄ�k4{z����i�%{k=n��ѤhF������"s��q�U� ��){;5 �� .���p�^:n�2(�vs[.� O}��� ��]�I8���?�x�^��w��_ϱ��dȚ��ݴ����{z�:^�z�r�l�F?�QE�T�M��G�ힹ���h��=�0k��fI�Hv�p$twitn7�4�]Y�[�lX�����1�+$����������z}�������Q��X'ʲ�Rrr9 �t)�����g�uH��0�t�Y��RFs��x��a�N����g�}=�g8ϧ=il4K�|A]_O�n/l��j1���S#�YD<�w�[�;�5��\A�X�w��|��� ��8##"���>6_|Rմ_�wz��Qi�� �f�|�1fS�q���9�i����(��-����W�<Q��{�9๖�I�dg���r3ҥm����<Ai�'\�e����e���#c�.�G��>`�v FG�tz����O���.��F�wq������^#����m</� �{R��xT[{�y$�pv����k����cQ���j��t�-����-B��X��t%����X�b[z�����[�hzw�n4 gdd��V�qS�Ls�x9��s�/I�6��ǁ�$�e�P�X̙]�B���r��Z���xWB�u��_�Wz���ľU1oa�>n~\�=*o���i�φ��]����������w��6�$4�P��Ԟ��}���Û���w�B����k5���jB"�D�gL���x��� ��m5��ciAs�ެ�:�I�)��rG�� [�_�5��w^��|�B�!�а�l����� 8���䎣��������q����Emk�k u�u�8�6��U�O��Cw�������~,�<'��xd��=���u���A�s�rq\Ν�m�_Ŷ��f�I�6�+3�Zk�H�.��&�eۜd�x��|"����SU��7�q����;w��!ʪ�;�;�S���~��_����]R�G��ݕ�B���!�V�1ކ�įf�3�X�W����L����2��4��oCʻ�e���3�S�_�_����*�R���<�3��m&�(+�'��kj_�dž�MB���,`���k�-���������69����׆|O�]#G��b�4E��ա�����Hb�O=I.I<��ܽ.r� ��m�{9�3��{O%��Ҟ����҄P@l����4�:6���h�T�����[�/N1%ã��a��X�տ'�[+�KmOU[�k;���K2b��v�Hw�8 ����%�a�A<Wz5̺U�V��� 3��rp8<��M�[jy��o��r�%����k���oX�~��/2�7j���3�Z=KU������o&�iv��[��$�D#�A�����'����ɫ�ی[����<�����kj��0�-�y7��[{�ְ~�8 ����^hyů�.�G�4�����.������X�R,~`]�N���=�#�I�O� �_i:ͧ���'�4��ڝB`&�O�"�Y�2&F;u�N������t{�.���8<�;;�`hm�s�S��$����MK���--�~;h����������(@��=�CSu�I=:�E���~\x�G�w��sk�-��wr<�o���'��\`�����M7O�G�x����o�=Q�����5���`�'gr���z����&�#���l �Q�|v!0�՛W�Ih�-bp7�&��>M���iw<����x�O�cP�U��|3�jZm�[Oa���^�\�������yN��U���Gm>xR�WY�-�Ӌp��u��c�+� Y| ��+u��br��Iu���Ѥ�=������ŗ��+�麭�݅����ܫ��ݵ\�9�=*\���������,�G�c��.�q�2�aiq� C�#]�~�&�ue"2��^!O/a+�93�rI�kgu-јG!K6�f ��*���>WK��Y6��2��ju�.���VT�I�?1���P��¶��8�[ڗ��8d��Z����$����t��6l��X�ѕ��X7+=��]��2,y���Q��v;A���inĎ��ii��ޫ�:s���O��c�]Uʧ ��A瓓��R��A��=Q0��y �>��H� ���9�=k�/|0����Cg��+�G���w(�e�1�����y>�ٞx4�k��(���+�-��עxr�'��3��V��øʼ�3��;*+���h����>'x'��-S�~3���5�.H`7N���#l�ȹ 8S� ��SP�����7��'�|m�x��O��n��O"�.c�FT#�\s�_8���Z������i"����v���PI:�%y#�J����q$����g�hn��ӡ�/�/��U�;��wT���$�lE�4�G0����� �L����)��zW�����xR�kw��-����e�A���dpM|���i\�v��Ͽ_�Cu*�b��6h�2pF �cҧ��G��a����������wo>���)p�>z��A�w|f�����}W���.�iqcy��;<֗vA����0`@;G� y�� �|��p��� ���(���!����"�&�ÕZǾ]��|wcmi}}��m���q �N&dD� ���W�~�&���<Z��?�^�)��[k�<�k'���9Q*�e\g��u��t��XIe���T1g�uC�?x'w�C�Z���X�������9�Il�)��!�d`���U�YX�3����5�v�6�ot�z���IB��ˇ��l7�y�0+�-��i��H������W��_�?�U|o<-�M��p��r��)'�=k�� �[M-�ĚN�yZ�����c�{0�l�6?�P�<�Q>��� i��Ҿ���<~��J�[I�4$���5�ٷ�� �K���\�[�|i>��zu����@U�-ّ����m�W��'��atd���Y��VǷ NrMj}�k��wv/����G>e��Z�p;�B��?���_���Z����h��+ėZU���b��2ӼC�]9�6:��*r���?,�k��7���:t�����B��4��8�Rlf��2�%9.�o�?��w�����!Ӑ&Y���jȧ�]�;W�k >��{?.L�V�g`���6���K����%p'���c9�a@�;���fS��zJ�ЈG4�"�m�5�oxCN��]o�V!cđ��x�kP��;g3B��C��ǚ�s{f�a{DU\ ��Fs�u�oė��Ku$�c>79x��Rq�5~���iP6Ԛܓ�&M6mj�[yh�I���ι`�X�G�ZMsp~_��ܜPQr�\�Y�A��+nB��2���_�^.��q��_j2=�3gpC�P���s_ ~]���+�o=ݙ;�p�Gi�cO R�v���+��ᧆn���?������K�~�E���#�5W��1��g�O_�����Wy��Ӂ��V�WI�~�>7��i�<=�����qߖ���|[�σ�{ 5_ ���ra�`��`|��W̿�=y�]}�_�7tu�w`�rÜnR0}�&�Pkm�lҿl�} �U�,r�q�;�ی��x���#�{Xu��!�)>n�i?Q���ҾM��y����ISZ6�`�𮧪XX\K��е�*f(c���'���֎k�%E�>���쑭Y���ø��1�mlO�2��ox��U�-'�ΰ��x5�b���+�/f�_�\�76'��_AT^I$��'oOj\�CH��i�'���K�<G`���[RI��KB?�s��,�I@�w*�.=��?�C�^��m�"ks�b1�Bz���E�e�W#9'����ӇUmJ�C.�Y\|��H�LV���)�R���.�#��6��.�Z[M9�Ci�wh��jxcºtZ���Ld;s ���A�� �W�x��-��t�6�m�����{�#�kV�K�GM��߇�&�h��X~j }���W��ߧ�}o8K��۶����p�@u>�8����|@�t�����Đ�I4q�:��>j���#�a���i"����h���O���i���j������O�(�k�O���z�G�4;i#����M#���ގ1>F�� b�����Ըh��hڋ���-�C~%A��G����?:01_mj~/����7_�����]���? ǻҿc L�k KL�77�/c�=:nT������\�s��'�;r+�~x�᮹<V�:��A��S�B��Lm�~���P��?쉮ɳJ��uc#�ʄ~�W#������[���Q���]���7Z �w.x3��%���~|x�b��ͮ��7'��H���ýdx�^֭���״_�.���4��i#�|�e�R_~�z�C~��6ɽ��^3����\Lj�cߌv � {A�}з�D���h�w�|ӵ�;���L���Z*�6��%\�*8�N���!N������@3ם� �5���㎙#,� ��U��e<S��|�J�u��t�����ځ�Ri���I�Wdz���#,����:,n�?���u��jWwL|�)�k�� ��X�ٹ[�;�fDв�Um˜�H�9=i4������s����;��O%��O ��H���8������me⻫t��|��r?1^@]:oZE�+G ø84�+�GS��~���qy�ho�(4E�0��[ɞ}�5��B�9�1qa:�0���T��-y�z��W�Y 7�i ����Y��#Rs� �4���o��D,����b?1YW:��@`�Z��=`��ڭ�����k����i�js����|�K[V? >)�,��<K(=ƛ*�� �A���ϗj�?�q&X�*ϔ���ҽ.����t/�55�x3<Q��N+cO��>2�(g����{\jp��1��s�z���~yf��=���,�3Ǹ��b�+�2A��WX�֛f��G����ixG�y��u����EռjYa�#��rW|�pq�*�ŰgW�j6�;i�ׄ cw��P[]�=Z?P��zΡ���S�H��(���=R(L�z [�v5���m4�%�¾����,�r�+�N� b1�k}�H��p��μ0��D>�����^Eԥ++m�&�F�q���� ��K1�o��S�9�X��,�#9��ڲu?�=��څ�]I!H�شP�yl|÷$S[x���O�j~�"l%�����I��C��K�'r�:���-sOt�U!��F����[�� O�{I�o5h��,P3����(9$�+��4�O�m�4m*�lBw���J�F���3�wS᥄���ίh�,�O �Ǖ�s��{Ղ�Usw���Q�A��a��ld}G\���mօ�Z�6���Q����VX��A|�秭r��B8./�,g���$�D�y-��1���u t�{�z^��������ZR�R�P�G3��\6�7`ۜ���߹�w`����W�:���s���!ݐr�'�Ҵo>ϩ[}���q*��6X�#��"��'�=y�z��#ԛL�4�+�T"�8p�?(��Cq���0N���� Z�=VȤ����L~�;T��1�בB��VPڮ��߮�$D-�h I��cdt���R����Q��C��d�Е�40���{�������E��&��`�J��3eq��rKzr:VF��h�E�����5˴q��d�2t�\��d�҅���#ե���Q�Z|��XO*O��3H�vIp1�5��ZǪ�O��|�A��R-ة��<ci����M�j�?�%��� P��j�d�OA�'��>����v��xn�̷�Z!',<zd���/WQ1C�_����w.~�p���ς��H���u ���=^�Z�{c���]��W���>��=+S�Mex�\�izF�,@+\�K9�F�#�z��W}uu�g���M ���<�";�b)���3�^�X.6��!-�j:^�g ��xL%L+2��e�s�8���m���T�nO���@�{6K�$��߁R�^k�{u[ nг��1��� �l�n�Q�X|-en$�u��*���Eʸ=�ª����u,��ٚ�����u��������=2�O@ �x��������- ؈�^m�������w�B-D�]i�v�.H�� ^#�K��<��b�k�1��_1I��NՄl���� ���1�Ҙ�)��F-#����H����r����9e<|�/��]���K�t����"/ *����c���N!���I�P���U����c������ium0>�>��{X�d���ͦ�y�����8GS���Lx��)%䍩>��\�!Kup%�U��"��Ǡ���D���"�X�C�Y�E�i��$�3��SIJ]�*t��_ٹ25����NF9 �î�5�W�Kj-�K$����Q�C��+�s��z�x�弙��;X/���#��L]����un��# q���������u�7!#�d�c�$��^�^x��K�ja��}V�J�.�b[bа=��w��qT�YS�R�\7�M�b;{�2�JX��$�GV `dP����֙��5��ilu5 Tɞ�������L���ޞ-;�S�c-ݵţ.����~S���ȭ)�s%��,�+���ʴ���\���� J謴뻫t[�%�0-�RҸ�L��^}�vFU��d���-�W��?t��$.2x��V��wwGκ�nRC�-����ɩ[U�4���t��{�/�K(�U���Fx�ޒ���<�柳����O�!�y��jY�����:�d�R~��2��e`Y|h��⫇��wH�v��v� � @>��]~���?���957��Z��a�t���l�\:���} ���z~�j.a�J dO��§!@��aP�ݜ�Kc��>?�0ڷ�.mī� ��/��s�*���?A,�M@(���Ӽ�[�߽$�ٚl�4YX�`n���V��Gs&s�������Q�^��ߏ�TF�7�F g��Y���X�ů����cM�.�,|+Z��G�y�Q_qN�!�Nv��?©�ڛ��\4O��J��@�ZV}��>C���Y�@�w�5�`^YZ_�}���^�������E���V���K�.C�ȲE�����k���%��w@�N��*G8�@aVb���í|�lfY$�����d���Rrkq��5����{%����h��� ��t�=�:���zw��O���P�Ʒa��0Kk:ɏ��ƿ(�=��~����{�N����f����Q�k��Ġ��^�w:~�� ���l,�T��K�)DZ ǟ��d�������?P@ ��NF9�zu��~�����w�`�o�|��F�I� 跖ǘ���ū���D�F�o�h���e:�9�}�=���ǚv������ c�"fP\�s�9��� �|�1Z:&��s��� �i=5)�x��>�n������Z��l��C�ݑ�����P�� �l���k������Z��q���Ҡ�d�o��:��#`��y��=��'�/Y"),Ѵ�3��� /��^�[�:�Y��/��WΊ��I��±�ګ�U��s���j�f��|I�^��u�gXuPͼ�œ�C�_�1�]7��_��i���T�n,n� �a�i8&Gr�n�}��|M����y4�R�9d��W1�nz�ف�G�O���}M����h۽�p��� a�����s�4�&���Z���H&�ѯc�͂�X �������H�J���~�5;�#�6�~���^\�GZ��*�G�Ӂ�7k�tO��0���;/\xC@ya�y!Ԗ��� ,��F/@ݎ���� _]k����"�ij/���1<&n���v�f�RQZ�덯j�c��Y�lU�(��TA�s�S���?xZx#U8"�}@�ƪ���kQ��̘�i2�R1� ��"��+��Gub��D���OO@8>���St�v�M��1���0�4�#���N=+W�Y�bq�1��t���]��U�ǧl ���42�/d�{p�ƕ�s&��ĚU� ���Y8����a�?vOQϧ��/��;�����Pk�d$7�$Ѱ��+s�Z��n<�kH��(�`����iI �2�`��p}k�մ������v�U�y+�'T�DԴ�;�F�?I�J���&E�Z�C�7����C�Ku��t����FA8�D�c>���|4MK���Qw}-�[�!�L�1=П|t��A/�`������4��O^�O^u?ц�i�}1����be�F�#o,}��j��]�G���ش�.��B�y�`�;>dn[�9$1W�-�� ��h�,I��_2I"���H+�q��6/ϭ�:{k{��i/-fd vA������ �Etzw��i4~5�m���s%��;B�GR�J�!� О�]�s[�c���%��8��r�K���q��r��Je�����a^���6���,���A�i��l�T��z�[צ�+� u�.5������Ӵn�B����$��JQlZa*FvH�r1��*���|��O@sɮ���� �Rnmb�2Iq�Z�u=>�HceA����j���X�a���PI!w��v�M�ȳ��B���5<vqC!v-�A����l$I!o-���a�Nkf�K�ԯ,-�mK۰ţ?*�� �rs� c�%���|L���n��+��e{p��v�ɛ������,�Y>���5��z��ٷ�^�go��CU���)>��of�@����G�-�/�- �N�g�Q��ɦL��s�����TjzO���g�K��4ϓL�-�59��@���^��?����u�U�t�n�j'@���2U��p�U���֧�i���2���D��x�fI��{��<[�/�ұDž"����K�?��_z��e�5�Q-��YUBg��=�ӮO&�o�g�[?��[ZA đ�]�@��d�D�$ښO��G��W?u������V2PI��]5߅�8��?�$�:j@��ͥ��GVeIK=G���.�J�jl�L�ݷ��U �5��^9�+�iF��"��4�CG�R5g?��6�r�,��Y�`v+��K����3[�;�-�����EH�����Fpv��VM��<Es;�����&d����gꚬ��� CQ��9�������5 �Vfx�H� ����gz�S}x>��o��-��A��E|�t�<��h��c���q�O����7�"� ��f����kq��~���&�L�����A�k�~ζv�\w�����,�����居^{���m�Ld�)�X'ߜ�V�q�䓟q_W�KD���D�+��m��Ѫ�9�gq\g��������=:X��Wg'����4���i�zt�(@��@�B�8s��ǰ��\��|�� i�7�����n$��D��@'�����l�YB�ך���Q[� �n]��+���ח�H��S֣��ԦҴ���ifb|���l��6��#o>¸�Zҗ���F ;/����~�xt�sU��n�IԌ��Cu7��j��^ߵμ���"s���� |�r =k��Z��_�3�2����WwP0��'Ns�T��jRiP̞a���c��`�<�FqӵzT�TkvqT��Gy�x���V=�ց��Y��J1B|]ۗP=�G�^��.�J��!���cF�5Ox��u-J��uQ$�����rY_�.U��_&Z�n��噎U\�C�w������x���y|=�^Y�����L��VH�(���J�{�y����$���=���;]_���αg��hl&�P�ʘ&?,��� �����~�<5�5�����WI��Llݲ����dW��'�]J�X xwZ]�V�c�N�O7H������!�K���:�J�i�kVv7J��d���z��F3��>���%%sD�R�Y#- �{I�w�0Ml��7 ۈ�z�zoƽ?��:�[�鋦�>W/�zn�l�� �J��t=FY��gY�!>��IGvB�z!��Ę� �N��sێ�J���p��Wj���?\���6X��9v�[�NI(U�s�_·�o��q#�ʶ�9k�������U��]�ƕF��o���i�����X��n`�˔�3�����ޗ���#T֯ẏFӴY���B1�>ygaB��G�a�+�p��lV� �" �7R2�c���t~����<�ڷ�"���w!�r�e���:ਗ਼�N�W;i��mY���@��$K�{�Y��R��2�� �`{s^O��_Ao��r�fV&��*`�##8���i7�I�-�?�i�[^����q���ц����@�� ����ݓ�6��o1�L�gÃ���qY�7mۓ�)���|���%ن��(�\�g�>�Z�:=�֤G| ���{�^�������ٴ��,�����r�x6����{Ɵ��$�P�=��p����d������쮦��>-��S�kT�$����ZK�q>� "�� 18c������-a�����Țs#p3����ɬ�i�V��Ei���md; �X��V�G�5px�B�|Wq�jr�iږ�� 婋8��-���]�d��s8��H�{���6���{#,�2^?�3�'�=�*�C�}�[Z��W(^�<��I%�{�+��5km5�+�����Y��fV�N����d����K�izh����3s"\]ܲ.IEW���{�������;o������v~8�.��M���,��f����\{��oi��E�,c�}� #������U�zωe��WMP[C!<+�q*�@�~��0��5�2�&e�.V��?Rs������>���_�<�����/0�%��"?\�*ʔ�#�s+���ܭ�<{�?� ��5�m��vX���^�gH��9/�����"yy�����C�C<Fo�_���Ձ�qPɤ|V*�G���+cn��A�ω$�t�e��\>"��}���>��U�.�W��0ip���l��G,���KE�nw��ӃT�X�ϫ��k]=�>����Pi1H�;eBU�o>A�A�hm��������/��Pn�+̾��P����/�-tmj��ʒ����J���`��:��ͷ���a������kK�,u�'˕0�$��,88���b��{�~x~[Cu�����PL��Ɍ�,W���SO��U���h�_�a��ԒH-o ��h��wD����N8��Ҽ/� Bj_�m^�U�{Y-����,bP���9\�"��#y�W��\��x�X�����_m��v_���~��)���w���=j�W�O�����/&�>�Bd�\��>%��L��D�z�>f������|�ܤ.q�$�N+�������_jau7��:���b���2�"���Z��R�D� Ҭ_1���t��>��nax���(��t���G�ks)���4����7��}rr8�5��������淀"�[�3����c�ˀG95���}� �j\�e�yA��qT�;�H�Z�v���pHT�г���j��\�Y�ge��l�� e�Y(��l� l���P+khA�&/�O�X�ذ}�Ğ!Kk��j�-n�IH������X|�NG�ⰵ�뉬��[Z���V�M�(�1�!������W`��Z��<�7�C2�G��e���e��8��F{��)��ng��]"��.�.��ʂGSۦz�$����qg�8�����~]�c�I�����k�QX�����u IY�5�|��dg�������И Ю��/,�mu+u���{����V��5[8DQ�:�����8m�&>Xa�<du�g�ż�� ��[[ڼ��"9��2�����A֣։���������2g�u(�,������N8�@���z���-ͽΟ�e#��[ݹ�5�#s��? =��[k=fYm%u���F29��c�x�N��j��젳��h�E��q:[��`[��0�pzzi���t�מ���Q�b,��?�dm* � ��Qq��o �xY`8�#�RD��)��A9����e���'Q�G�u���/��Я��s�O�?N��=���m}"j��]&X#�`��9#��K�z�+[��{�Wɺ�t��ʹ ,����}�\�8��\���Ju{y���ћ�'_����x��xcĞ�ֱ�?�n<7�����J���g�$��*0y�Z]�kډ���H�l�2_B�&I��������E(���DV~&�Al K+�,{IB��I ��=�5��o�9��4����He/-��>e�@�b}Z����_l����AȚ���X��2�q�s�1T<Iq-����v��Mi�{������|�~B����˪j���mWB�-�Cu�w�{�$���#h�R[#�`.u$�</q�Vz=��I'�+h�<�ǻ`0:�үE�ؠ�3kSK�YI�M�8v�K�Z�4+k���Ю_k��#\A>]����rOlս*_Y�.#��̓L�F��s*��DY �ʌ���[մ�]͞���-���Z}�sͅ��A8�*�2���c�k21�/1���E �����`���ฯ��.�um�d��4����]��Ō�9鞵���e��&�-�G7�ViL��\Qp��7.�|���OG�ܹX_F��w����'�{t��"n��H�k�Was��n�x \c�`��Zm#F��#���6��������X�����H�&��5=> ��,$��09V�I��ҁ5[��i�$� ��C�nR@��%X�����;V^�ss?�5��]Ӈ�Yc͏��ltO��Z7Z����b��R�dŧ�o" cS�̓�q�;t���FѢ���K���q<A�ٰr0s��i�I&��k��myISmcx��_P�y9�MCmy�Y�y0 W@���z�~�ps��6���K��-���;�:�p��o�H�\��Gu�:��Y��g��"�;K��|2��5��#;�I�8<{Q�;�ψ�!�[3ꖐij�/�jvR���L1 ��W^�H4�C�ZO�KnmRB�W=22I�=q���NӅ��x����y�`c���#ۥg�=���xv��S�<���R����h�f�3�-��wkZ�z���9-�,I�� �������-d���,�=2�g�[�f+�F����zT����~fn"?_���rj�Ճ�#�,�"(�[f9?('!���<��{�x,o��l���-"�R�2��*�PN3�p�o� �lEƯf�۲nK�0��=�c���?3�Κ�X������V���]��(3��� 5^k��;���w��[����(X������� )�2o�:��{y�麶�ko$�-�9�3�#����X�^��V�X�u&���m^�;�����ie.��,3��֖��_ "����Ѯ-�2Of�o�d� u�2;�Y��b������Y�;�ݠEYbC��b�g?�O�7�`�8������y1;lb �Wn_q9#���]�� �N���֮g�t�v�f��P�_�z��\����;��畉�8�{�;j[-�7L�埇u+�>V��,$��<���ؽ{����N�j������_*^Zi ��𗍥Զ�!#AO���|��y=��$��a�,X��hu��6s����?e�_i����y$w�l���o*葀C���#*8 �$�u�o��R�5��Q�:�'�F/}��OӮl,� $�۽�E'��Os�4��ګǺ�����]�0�:*�8�\��ׅq���դ�c@;�2O�\�Ƣ�ǹG�Jދq��,�ƪ�d�HC�X,� �x[]���-tå�ݱ�x�d�G'?)�9�TW��ǐ��ɿf�RĶq����ǣ�,�_��J�U�T"RA�9��O�Lm����-!Y�g�%��^�������cGӠ��y��X��� bߥy���h,䜐��R���8�犫��j�D��z���� �e�9}��GfM�C�o�߲O��닫�x��Zit��e2��w��M��������r�-�2�῍�u���[h��5LJ�� �����@��&���/Eh_������i,�eP���v׳�!���s���SŞ����}*�S���qʻ6�@c�'#�Z�FK����]�0�k�R���� 8�k����@�3ផ��a�7�5Wi�e�҅gb4��#L�I�����χ,����?D�J�2m� ��n�yS)����%�O5�~����(����oS�Z�[{Xt�{i��r��U��嚉o�A]y��6�����T��u�uX}��h���F�K�I曀G��<|�*���l�W2�+�7��f�����E+���qH'�x���� ���U���w����� �zr�y2�(R�[pF9�yW����{�52e��܉"�lG�����y$y��Vv����ek%���.`��ƕ����8��ϭG�o���j(.�Ј+��I�|�}��V���%��Y ��}�1�ާ[��c�o8�c+FW>�(�F>��|=��;q6��K��KG�M��srg�|0^z�Sߚ�t-/��Ua6��ߏ x��WJ��9����2<���u��?��1�B�]��w� ѢA����m��5x�%��d���y�-gh��;�`AF>� ��EG]��9o�߲�Ž!����MZ���q�N��P<��Яsɯ����"��E�Ol�y#*��#��^�����������x�M��(�o%��Z�Q����6��y3�]���\x�:k wJ6�H ��4d�L� ��~��/1�4|us�)�l��Q�w�F3P��u�HĖ�!a��lV���:����A��:E� �e��#��9+:���t�K=sO�����Q6s���)K�%$ݑቩx�+��v��D*�{���9Qޮ�S�Wm����x�be�Sl���^3��>'�:���m���8n|õ>e'�q�֮�,��`�Lgo�=�J-=PI[FzV�q)����ZF~I�R��E$;,k�wq��[��g�!d�Z ����A���p�L:��}��O@8�k���iJ���oa�)�xK�W�\��3oF$�\���;o��>��~ Ũ6�m�b�7q���9!�u�����~�ѿ�A��,<C����:�'�Y-�F R2@��?|���[e��R�,������ֶU�KY#,���7��d� ��B�}��n��{j���~~�6/s�kZ|����SlX��[�g�^I��~�9fn�����H����q8�s�x����z���Э����\�!W`�m��p�GZ�ud�홇��:���v:g���Q��R��W>����O�=����K�Վ���oR���=C<�n}���|����=q�4�a��2��|����2;��kS��ռ���3��s��OS��j��\�L���ܐ���g�eR�B�]DƤ���B����G�t�^�c�{�5a�ede!Xv��h�����VY7:��p�8�q��5�����(cRv�{gVNo��P�]�H�[[�$v��~�S^��o������kh�d�q��|�Kz8��U�]�A�j;Kf1y6~l����¯�]��?�k�j�w�4�u��~�[�����bw��T��\u��)�EjtS��j��<K����4�&��Z��}�h�s���=W�~�x��W�<��1�qk!'�$�A�+�x�S�Ӣ��/�d�fQ�-ӣ�q�!����p>xw�F�ws�|?�4�lSXұgs#z����H�����h����g���yV�Ҡf�(u{����ӾК�K-��Zb1#S.�}1�ֽ��^�?��~'xet�CM���NkFt"�QF6��F$������&�w�^��-��`��Mc���,�AI�7x#l�WN �����W��f�NК�,��-�%A2� o-���O<k��Ӡ�{]>�K�u8[��?�R7c>�Ump���Ŷ��5���c�{F�2w��*G �~��b�Mr���o��R@��A��s�����ZXɖH|��s�31��Җ+��@!�Nyf�+BM"�K��8Z8�y�:$s8�$30�*;k[�Oٖ��̐��w��������L�Qr-�X[j��O3^FB`8��y��&��7j�|0ͭ�@�n�T,��jv۱��[���W�[ <�R�фѶ�n�-�����V��.���D����#��ڳ|�)X�;Q������O��7�ώ��'���67�Uw���Ӹ��l����F�V��;g�Ť^��4�^&��7B+��:��_%�9�8'��@��ݜdy=�B��/�[=IZ�&�"��d�cУq�:W�,�;�M�~�|3��o ]�ZΫ��� �Aq8l�M.�L�?�'�<9i� ��F�{u�K5�����p7~���@���ŏxj t=ƺ�v1eZ�i7��0J����EV����k�O>x��� �^}�)�+))\�s�������+HӬg�K+�<�d��f����<q���W�Ij�,Ө�B�?�ܷ�;~���_���Z^�wiQ�^E��HEf�{�������x�kk�e��c �D���s�We.US���ֹ�V2T���M6�C{��Q���-��md'|z.��u_Y} RO�[��L��uh�1��,���z�A��09��Zv1@<�)�FB<���v8$r�ܵ�\=W햑�R/1�R�`s��ڴu��@�ƣ�r�w'��fl�r��",��n�$'��<דV����A�Vv!�O@��G3��V���麣�;���f�������<3�fn��]^(�Iw��E��:V�i���c���=��|�o��+��l��p;W�xo�4�Ҿ#i>����ĩr�N���λE� 9#��ݨ�ƛ\J�<�F�Ԭ���kZ��x+�aHF+��wt��k��e���w��Ͼ%�8Q����6���{I�_�xn�U��jzm��}��þ Q#�(T�k���:��5��� CI�6S�ZٝF�����y�{םV�2�s�Bܶ�D�Nj�x����Z�ir�o��xJɐ��Iw��N����7 �i�c��V~���,Y��H�2*�\�����r�<?i�x�-�K���KȢY np��J��>�����|;�My�xf+��'��_}�A+q$���f,1�q�1�+j)��{�3Mo�7�n-���F#���"O�F�;X��{�ב�k�j�WBm�]��m�Ge�P��JYԐ:��lW��]��nH��SKB�[r�T^W?"�,6�$g��|�Ok6Z~���^�l���ԯ��6V$La�r������iE���rjmk�>��V�^���~f�̳�us���J�&���=+����2O2���Ȍ(�`t��]�Ik+������tHQ���?�n�z��oj�]D��w:���Ͷ���}5����DH�p�)��ך�akjpN��O M{�[oiKnF�g�A"� �X� ���O���+A�M2��e�����B2~X��<�z+�Ѵ�5[����I>�s��U;����֓,�$S�ك��t:��w��4��fUS�wg�z�Gբ����Hج��fIt +�3ڽsS���Rmz�I{�[h�ɨ�Ϋ���A������_���W��6M�&��"���v�6lc(q�q�`v��_Q�g���?����6�� \�f�����/����]�0��l��$�q��'W��Ǵ����nk#[�o<'������x���l�[\k�x�,��� ���I.RU*�30;���8��ݤ��k�Jhm�9�,$-ݤ��=�&�eurga��²��Q#-�~}k:�F�bDFV���:Fԭ����sT�)��F,�G�?�}�0Y$c���7�ȹ���%���u��\0���VdFg2*?��!�F��l����WY��n���ڬ�����5�>�n.�0/%A���ۊ�Q�V��U�K�-\�lӳ��(,~��3�H�Y�,� ��om� �ᔌ{��:�}SP{!`ڕԖq�eHV�÷WN穭���3�>���Qpq#�@�?��#h��_F�&��,,�n|r�il�--�>^�le� l>}�jx��w�i�Ƶ�5�"(c;Go�w�ہ^�����y7�;��Q�C���&� �!*\��~k�t?xk@�F������A�QH�=x�P^ϡD~����d��z�ߢ:�Fõ�zn�sai����ehH��4Q�I�c��ZMk��!�����T|�7*�~��:�x�ڀ}2Gkf!H�g�߆֪�j6M��(�y#9�-�R�ﷰ�5`�>#� Gt"�oe�"���x_�A�#���8�ZȚyu 2KK�M7Q�LI�ܼR $tN a��Z'�t}~+�t;n"��o8 rs�~�Np85���M�-������R+h�F�����i����y�]2=�+&������n�éǯq�4[�m6�\��G��R ��n�2�r0�����c�Ҳ����e��x/�Jo��X���\2̹��3ߓ]F�����;v��m*w���A�e����ь�ҋl��E&� ���]���ÇqvB�@�~l�����,���%�I{�BKi~��tʁ���t�p��z n2���K�?�4�,��kk�X�����N)����}$�֗�\H�n'ԙ>f�pr#PX�=8���Hfo�uMI�Ye���g�E� I��������>�$dg)�v���^��]v�X�����R���&N �O@q��%��s�겾��C�F���}�r�%vg�:1ǽV�o ���Wz����9[d �}̼mt�p2s�Q�ͥ���O]�Ԣ���t�ѕR BN82 �ߑb-"�^��k8�t=fC�� �28����c$�k?W���N7���t�-OG�5�d�y�w>��t�x�ki~���/�v���d"g��:���J�kZ�G�-J� U<I ��=y��wb4xt�.�)��@�G��du@�����s�T�tmHE�io4;��k��ȭ$ .�Ɂ�p �@��-�u�i!V� v��C|�(�w�O^��b"��,,b���:^�,�*��c }� ®;d�ҭiWw��:}��F�mp�h�.%�+m8�z�g�����s}��O�X]2~�{��`�=I�W�!y�&��a�������>axR�L����A���*_[Xhw�a�ϯX��yd��H{�rNv�ӎǃL� J���s\�B w�����'��}{ի�N=Nk�B��dm 2U�@���v8�����.�R���'T��b8ЉCcf�#������l;�xN�k];TD�B��C���2��(��8�Xs^���m��>$����mw2*`�g=Fy�Q�׳�f CE�����6�K�؇��,���ҝa$��e�������,���,��{���'P+��wm>�k{�jZ&�;�{hg�]���ʪ�Y������ >Im��~�/Rh��*-�9%IR�x`�=6�@�ᶟ�~!�0 �\W� ��nm�I��V\�VvW�ke��W�#o��kR1�H���ǩՀ��'��`ږ�2jztҏ.��F����c컔�[��twi��#�Ѥ�����0���۷�)<"��mGM{��?j�u A\�<*�p�}kKTּ5�j��5՝�u!m^2�r�21�g=sHh.��?�۵�VV��.E�x9���}+7H���f�R�$�-�m�)���9��Q��J�uV���/�s#�G.-��w��8�4 R��9l�����Wo&+F��'i��*�J5 ���N�g�3�IK*��:{ߴ�Ț]���4���Mԟe��Qܠ`^�G����V>�G�'�=�Z���D�f�,i�3{z �s�(��c�݄����{��ۢec>�:(�i�>�3G}v������ȁ�$��O�c�|A�i�ҚU�� ��Ј1��-�����4�\��J�Vv��Z��G�8 =�ϥL��oG����D�,���$��:�#��k����$�5meD���J�0ڗ��|�z|Ű;�^���~��[(Eݥ���2�*4���"��o�'w^���s�M��Y��k�?� 'Ȯͻi`��cMqt]kR����U��l-��oq�y���s�8\ē]����!Z��-J(�ry�����Ó��^��ϥ�7�z��6�Q��;��YN�D�?y�I@�Nj��o� J��)��+`�\s-��ʐ���2H��@#`i�v6l������/o���ۀ��ĺu��۩o�l^A���G��C�x���Əm}tV��|@'�����$���j��;˗��8hl~-�s��x��O�In%`ǘ������|@��$�����-.���|��L��Ӄ�"���j}��|C����+�=��go��V����f�P����zzt?=s��a�=Y�}���a��K[}~)�y��I�����ǥoi��6�F�l@mFOC����dd����F9Mdž=H�_SE�O�/ė�f�X�ixk�T\�w�����˧�?ᆧ}j�=��2)����J�n;+�|�u�Mv8k�D�]�(c���矯�W} ��%b:.��+Ӽa���ѿÉm6��}i4�����z����5�������=��"�E���+��+>�쯦��῎�X.�%�1��2�8�+>���y$�'�BY�g,�ORX�I��c�kuas�����_��~�]fS�����{\[ �����\�q���c����d���:{��b�x�.��C{���@��8��A\�\�v�-,���`��k���ȭ��o�;����,���ڗV���� ���`ԩi�[��0��e�`_��Z�<�e��f�7j�8��J�`r9�A�5�/S���X��9�����Zm^_��}0�T���H�n��� v���%�h�{xs�ي�� I�`0D�{�ܫt*>���>����n��_��iwgq!D{C�8�IC�HR��ӎ��~��x{�� �u�wQ��II��^�#\�X�ݒ6�@,��1T���6v����H�O��Ʈؼ��-��'Ϙ��X��1�=+�o�h��9�#�X[��LT�e����r:�_�~��E害-�����G�R+��#�G*O��9�vC)�$pk�<Y����f? �K��f��[���4�u�m��V��y1�}k>�J�N'C���I.���d:B�uq��Q�[�z��C�i�Vd�2[��F�����V�+]���7>D�e'��G��'����E��A��ip ��49x��O-�A�pw9�*��bz.���kvѥ�����3�ar:+I�<g�k�O xz����� A�t�`Z�]2g�v�!\�̧�l��W���wz������M<e�+�ӭ���L��4���$�Fy���n��(ݓ\�5��_��Gi h�����&X �pCuJ ����]ں>�����G����ߊz����h����8ܷi�@���} y����[�v�*��ř�m���-�m��*�A�v{��^K�gZ�5x�$����4�]�%���4��ڧ�����|q-�çh�>����e�U-M�JD>P}�O�f��t�*S���|X�}��+O�]߈!��g��}�.���<�*�'�|�O��/%�kn�z*�;ᧂ|G�?ⅆ���l��PO:���ȉ} Ǯ+�o|!�I��D��{V�,\�څ�h�G_�s�P�Z�>dݑ�_� M&�-����q�)Qq�:� �q�r8 꿳m��c�V�q��wp�ݱ�>V���W���|[���'h��o�~����p>�������� ���e�-�p����Kt$dŁ\�u\Qq�ާϾ,� �{×��!�Kh�Ķї�1���/�|9���u� �}�c,��pz����������l�:T����\�'=��?3]5���Zr����?XI"�K�Cp���&��%�����s-�?���/5�N�Hך��e��4�nb}�#{>X�*s����_�< w� �4�7L�ա"-֗RC����1�m=y������^��^��"Vɚ}49�*�k��[���7��w� �M���H�膰�[�/S#RԮ��4��R�-OB�@-#HW�|0�>�>�on�Y�����HU�FT쌱� ��=k�M_��ɾݮ��[����<?�x�E�U�nWv�rjv:|�3]��."ڸ���L^b�&�得gF�ӽ���?��I�]]��;M�r֚�q��������/��ڀ�u{i�V�t���K`G־����U��vI��H-�3�]�K�VT���S�6�n�N{��M�o�S��[m[�|9:�Ɠ39�9�[�v�U�; ��j��8�8˽�~����t���M[�>!�.���>� �G�I��l1���1����G,e�����\}���ʛa1$Y3�pw�9�2q�=+ꏉ����8����4MR��I����l���x����czֲxn�W ��+$��n��8��m<�ӵU�i��իOތo��1��=$�q�W� ��w�%��I��X����V�8�Y@�5�h��m���TW0[X�r�^o�rd�!%�1,�'8k��o�<��ˢ�6�dU�9�����?) �]w���x4��.�?|�O�$�bIv����g�aW�rmT_z:)�뤓���{�-u�� 2����F15�H���Lq��Z�|yy6�����8�/��y#�y��5��X&�A��R���e�n3����3�����]o^�uҴ�cnF�?�|�ꣁ��\�z��*�H�Q�?� ��6���n%Ǜ����l�q�9�� �/X�[Ѵk��-tMkM�"Ӧ�Y��!P��6K����J�|o�n������ ^�c���f���|%u��s]�68���@9lw#��4����j����Q�NY��Yػ�-R��Tլg��UWA ʺ��`ÃǽGk-���c>RH��t 3g�v�^��MJ��]������-5F�\�a�@P�W����sѥ���h��$#ξҤx�HA�S�<��s�t-DZ���j������gŒ��Q^�t�.H��'��{՛>�e7zT7X�����9]�@ϥ{V��?�����Z;�V�0��N���'*=sN��[���f���iQ���,YG`��h���ing���]?�4��o=��Ьc�0�W��NJ3ml�q���5������}� "�#�tv�����n� 8�F3���O��������X[�;�Q# ��^2�]�i�O�O��WVE�8cB:�rG�Y<���m�_�k�-4_?���[����o�NO���{+_!Ϋ=�٭��˵�*�u���[�P�����V�$���&�ӯ?�q�|C�k[`|�O��7g��:���<�L+կ>XG�=���0�s�>iv_�+i�~��m@���د�|��*�)<�����]���NU};�6��ȖV��py `3�S~|�Njn4[<ni����$D���� �� x#^�e��d��<S�*��j��"#��{X��!��WZ����T��k�&T#NI����T��� �/����w�ߊ��S����ɹ�d3l#=c�A�z/��iml�~��[jM �f���ҩ������u�_|}Ѵ����tmcTX����AtTy�\NkO���7�|8�d�S_j3��Ӯw�%�?(�p��<o?<]J�����c���U/N��6�[���k=Y����.�s�,��}��P�"��y~����� �w�)����L˸���L�#$c�� ����Z���MY�m�|��1��s�pkv��:]�*�f�qc$�S�V�'L�)g8�2�E̿���C��)�hF�������˛�>{�����i��������sL�@�)M��T�M{��� ��]u{ >�8���KlI��==�]> �?VU{+�4Ր���$0$��n�\������̞M^;~:;�uu W�`�$\�,A��\q�U�.�wd��q��m��w�Ҹ� �c^ɬ~��R���}oC�*�m����3|3�{��Eɾ���U���1�MtS�pU����C e��}���_�f� Z�[�u2��[i8>��<�Դ{1��-���$�ȉ4l�H�� �3��p��}�9#H��.��J,�#���ٮ�������:$V�j��͟�/�r���뽤��2}k:��J*�uF�l=HO�n�I�����4{8���kQ�o���,6q�b�6G�u� ����N{X|'��RI�/& ���,A ������<'$�{,Z�"O5�4�X��S���Ev:G��tk[xl����r�=�er:�˷���O�y�Bڌ����a�M^m|��.|G�kͧx;Ph�'k\�G��3r8�+�<W��ź��m��?31ב��`�H�>�S�'��Ģ�it�*l�������֮]|]�(�W{�%m���qٰ�H!X�@�G85�G���e����7����7Mk�_X��-��r`<� �� ��^X4�,�S 휆{�#����_s[ߴ ���S~��~2�TH��:m�b��8L|�p}���O�oSs�yG��l���=+��ukR�[��Zߓ<<l�Fv�=;��e{����X�Ң�[�X�����`d��5�n�<�#��w���O�]֭��g h3�2C$��הR�]��>x��6W^�L�~��)����,r�!Y%U+���^����*�YM��i�,x��V��Ŭ�-��������;[��t��#=>|�k��m�#�4m>�?�,�SE3�7]�s����?�J���ힵ�3��|o��TZ�X����L�]��ќ�FI<+��M��]�:E�el]^it�`*�>�Z9�#�'�ڷ�{� Y�wĴ���� ���24��°c�D1�2�0v�w���_�q�Ǩ�{�hPOu$F9�.��@��W<���mz��mR�V���+jVS�"%�?�$��[�'5�"�ƒ]�����$;\YH �����*���R����/_k�5�~a9v �й�:7��m�Zix�d�Vx� d�2#~l`���:�Ɇ�Z�%�G�$��D_]Ϊ;�ϭu_>��f��w5��`�i�o$�(��n~��.�&xk��&�~�$�nn�Ҝʱ��3����{��OٳOӣ��|e{o�];����!\rC�e,F;`}kߥ�ż&���(eV8�AI�Rq�I�5WT��4�������p@1� �n\ �*��SP@�N�U� �<7� 7L��y'N��+q��h$��g<U�Ԣ�b� ��ԯލ%ߒ}����ǗU��t���(sc�,�Q(\�n0=�>���5D��;�� � �B��"�2������ԑ�I������;+���q)������ *��9?�*�Zm�Q�Q�_ýs�F��[��Z�;�1\ۿ���n@�N9<pz�g���ݧ����Zjpǝ�^�$�g������{��2h�Kvt>*��[�f�X��d��=��N��k&����<1���B�ns�ӓ����|s�NE��E�22,9U|6ߖF��s[����X4QAyo8d!�~G�Z��[�SQ������FM[M���7�{��t����5�=��\��d�7r�S�Y����a��+O\�dK��r�|�o�Y��o��c�aVX��2�:�����\3�G$�OQ��*.$���"4��c��U2Ecys�����Fz���MT�R;��ך��p��˔جvF�`��H�sWuɎ�l���uk�v��˸�Qʜ�<4����-uˋKegA�_�_5�~P�q���������̶��ڏ{�N��.!d�c�[p��H�g?�W�m4�7�m�Xx�[M@�pD��'�r0�8�͍wP�m!�]+R�-S��|�"c0���2O|U+]Z��FL�V�#,q�� �>\c<� ��h�DSl�����8A_����*Քz�ݿ�t��Y��{���`�������z�a��ii�;ۿ ��e����d��<`9��!MM#jog>�{�-��9�� \rTc�a�OLմ���P��sP�ܲ�<-4P�%��:�p*�E��UC=������ ���V�d#��O�+����?�a�.X�K]^�d��e;�0x�^�l���=>[kg����/<�#|�W���/�u�ͥ�I-���f����Ї�71N_��>�j6�{�����M6X�,�q�Н��1�qF�q��\����&��{I�\��x�#�==8��e����Ś"^[4d�9�U��(�)����5w�ȴ�Wv���1��� �'89�=�� ο��3���O�=�,S&�ʼ�NN0xaky�ӵ+{ݎ�se�D2�.q�� �Ѐ�����:��ڕ�o���N��<d��w�zp�4l+\�Ӯ..D�xg�#�Ui4�K�eq�r��q���=��h.`���u-�]��i����F�U<p���W"���P��6��Բ����i��e8r ���SX�c��������7�I�,��H#�`�|����L,�����㵻����Z��,pw4��9 1ר��{�P��4��gC�����2J���8���x��^�'�Vky�?Ӵ���$]��8<�ɫ�흗������ij2��fR��@8a�ߚY����koc���,y.m��?��B�c<���Q�����;�/[�6���q�# ���95F�/�D���Es�ݴ�'��bL� !w��=�9#�j/�&���um6=6�2�][�)���\����zPԂ�m��ӵ+��/�5���� B���#�'ۯ��X.��^x�HҚ�&�N�w W�6�!V4� n���&�c .�}�R?�@s�p8�zn�p����F��ޝ�/�-�# 9g�Z hk_��6��]J�^��9�D���'����U-CC�}�Z��&i���I���?�y7�:M��ڦ�f5و��/��G�l�m�U�8�1�/�h�sj:�ϖ�&鮮d�wcaO��K�e���."��u~H�|C�#W� �աk��ɊYŻ���q�Y�X��}v�\�����oas�Ɍ|���;��xUw4֢z�h�EƯ�q��5�JV;� �=@b3�X�,�5���h.R��k{O�"������=1�U�7�:]���Ckl�{�����H�#�{f�Ǩ[�6��dN7t�+�<����;4R�)��Q�k���ou�.�����?�s�K���̪����L���o�S��<���M3J�����ӭ湵ɷ�XC4D�|�1��rj�v�Yå�m���n#y1"��HV=�Nh]��� ծ59������eF��h��T`�xSb��8�+vh�iv���r�6�<�d; !9��m�QͧC.����㸑<��$�p��\��V������4E�ݸ�����G)�a�C�P�O��/��F���k7洶�X�� ��N@Ͻq���>���N���[u�e�{�A'�J����g������3[�J���n�!��R���JL�'#����4��-N��,3[��.!(��G#�����|�T�7����HQ�圳� X��~a�t#�ƹ�W�_�-VK�|�mE归���rP���*�����wzn���Y�":X�1���=ד�]����25��� ��fA�|�s��V.)����K�Muq���D� $�_W�����F�^>���O���em\ͬ�6M�s��HB�� �8�N��������%A~Y�dJ��c�s�>1����.���n��n��҅�W!I8���4�Kd6��}�� ���Owq5�E����[[���� �q�y���l_��A���'�!1��%��˫���!��aR�Ё�5�.��Tjך֛����A%ͬ�Wڗ�4�@�B�-��-��\��|p i� 4�pd�H� �>��+���8l~lg8*h�{�Mr��gP2�q$�U�p��i��W=��_���'�t���{�Zx�ɹ:s:Z�Q�������'�������_Ki�"�I���������VOpqiӮ-�%�`FT/�#��V��=�P@��iG�e_��~U�O�rk���&�Q�J�m-���mE�J��<qj"��}�;\dr3�WIz!�cy�x��B�>$�#;A�-����H�E�Cᔽo:� Tد�'<q�ہԓ��߈�7ks1�������H�'?{��2:���t���k8��#D�G�;�F��=��~0���9�Ɩ���s�����<'�&���qҾ���t�'���٤�O�u��.��fg�@Q�*2A��|9�;�i��h.�}N���F�Uf.[j�s�_gk�<�Z_�iW�Φ �(�T@9`ƍߩ8���� ���<o}�i�������]KI�ݓQY�I%� FCa�l(�Q�z�̟����l�����pV{yT���Gs�����6Ե-����U���4}9KG�d8��~��u�g��.��<g[��t�A�9��v����U_�ʌ��B�A���Y|>6����-���w*�ɕ#$<���C^��&��ZJ�Pf4��xۓ�$r{��N��.�����d�J}R^3�/gyF�O�'5��:&��h�Ҷ�}q�ź8���@��d䑂2�t�����9�8ܻN�8f\�O�H�y�<q��^��_�9��1ee����W�����%���np: r6�e����SФ���dP�k,nT��;�ڸ_�$~5���?F��{]>�Rկ""1o��4��#'��@o�}�h�&�ўпf�M���u��mmV�T�vzyR��+��Ŧ|9�_�G���iets��0 {���/`��鎽+���*��'o+�OmhE�u�죋��:��y����=��?�=_I��n�uɼC�h�d��#l��/���o%KlRrp�&��5cI-un��)9�����6����s�O�N���/�r� �z�!��GY�6���]ͽQZ���@#�1�vt�j3\o2y��$1@G�zWe����zM���~�����k�Yf:������*K ��y�ҹ]In�7Q��Zis��%����kF��C�H���W��mF�ImF;ۛX�B��m���5�������.���V� �orf�1m����9�9�T�m�|Qi�Ad�~�F8a�2,�@UD�I�sޓ��#L��&���!�ic��׆1���W,��8�:{ׯ|5�]*�m.�>�x�;�{;���sך��?��/.4[��1e���I��� �P�瓎�� i�5���5���hD�Vg��¡N8�:u��K}��E�y�K��$vv�x�Sr��B�\0���IbAd���*���xP�N��'��Qi h�@)8���F}Ef�K���m�LX��Lq��"�pK���`Q���|)=�1F�Dʻ/;~�<�+�E�I����-�;���7��/5� �K��+im�B��H9P���8*S�b���'��+m���O� �RKG�|,i+ ���A�#��aX�WԼ!y�K��,@��l��?�9�w��~ �|e�~#�Q��ʋmF˂ ��#�ǏUoz�ت9�=��g��p��)��>����)�)�&��k:E����m���;��ˑ���y��U�O|H����G�yeU�/�yB)�6���}��ȩ>j�.`�t�gG�j]a�V o{m>P�/.GO�ݹ�5ߍ~/��U|}��^�J��g5�Q�e�P``�}k�[����F��:`���Z��h-7����;������3��`��p��+�����f�M}� wN�PQ�������"�_=�.f��{��[����l`]W.UH\�������k�B��n%s#�r7�%��O,z�k�����νG$�6*�ׅ�iKW��H���?��{�����:"�H��c9=�\N����"�.�Oo�Āb+;Eg��I�OA^8�ߵ� ��������5�������U�8�9�B�G��F ���'=\�9k'���Mr�] c?�.nm���%hP>�C��_�5s��49�{�u8��fÈ7�$�0s^w���^��h�Mҳ� ���@����X�b��y������������Y"'�FV��H##q�N=�Z�,!Q*j��!GRPnn���t ᮉw?�$��I��Ԟ�e>�����k��}��o���ռa��L�{���y�*�����}CV��l|�]<��U�5��:1<��{�����)�ʸ��Vʓ�xɿ��ϖ�?�����|/�����[I�+ d�ɐ�c�<g��sX��kBԒmV�x�V�Jԛ�$�ɀN:{�;�E$�?�|:�����7x���4�5M5�'�.�DO�;��Pg9#*�k��B7�ϛ�����3��"�ݪ��kC���>4i�� ��)�&!����Ӑ��y��OŏGf����Է6k[˛9GЂ�ۺ�p���� ���9���q>���<�r�N���9Ջ?�z���N��Ϩ��$6v{��o�"� <��~�S�}�2������~�go=3N���]m��o���qo4���@��b�O�c^�s��<4�S��D�%����y-�`�}�e�u�=�όd�4�_���L�V��"� �Im��:�{կ����][Om�����mP���� �UxlEh�Q�j+�빝xQ�sm�_#���cS��#���ng�a�8BA��ҽ��^���>'���E���� �B��{��v�?���&���xfx�e!.4�^��P6H���9ݜw9��;��z���YxCI���O�,���7��퐶�p;��1�]X��J1�O/_#��=��z����[YF��f�F �Q�p7#A^]�-SR�?ٰ��gzH�T��!�;�N���B7ރ4�2+q%��w_��N+þ)�3�ܐ�tp�!� �Ÿ����N��5����7>�jZG���o�~�a��6�s{&�YAݍ�ˆ�=u���}úܶ�b�d��V����q�d�q'�p:d��,e���Xj^"�Ҭ�����)'�89i���}���c�k��ր��Z�U�K���E����*)���`����5�?R�Q��~ZÓF�����Ϫ�y����͠�����#i6��,9~H1���㏥p?~�1������e�� �� �?2.9,�}k�|�����`�|Q�����Y���%X�w(ifwQ0-��^#���c�[����Q[v�������P��6�q�U�/�����漇��;F;u�����Qͥ�i�go��L��h9��Kp��� ���GÚ����M���-�ҋ�@h.ZX���6�nO�yW͚���j,�8���ab� t'��XZ��/�#Ay�M8L�%����+�ޕ����BZ��?��q�Vm��:���V����C�ZG�o/l-���ߜ�*s�A������!x�M�Y�u��dQ�`�q�Ȭ�k\��:�^,�i�S"e�Wf-��rk�~|;���&�Y4MOSrm��x��V�sop.>�s�^��ӣA*�Rk}�y?Z�j��v^��j� �O����R�oo|�vy�HL�Oλχ�.�����jZ��ڄf�K6!$u=rq]&�����~ �K�����ޡ�:KI�s��r��<?5�x�C�ƥl͡�Oen�,:�M����8#��*��5J-F?$l�Κsi�_6u�m�)�%�-<Co�v��GSy�ܱi�*��1�sӥu�Ņ������m���&��3��6�]q�8ϧ�|��� IX��R�@��I�<���S��/� .K-j�O�^�F����>_�=�;�A,I�uc6Ȅ梖�N�������1��Ț�V�6Trʤ��I�*-wº$�L��w�!�����m-�B�̼�ע�W�~��<�z1|H�1��H��Ic��_�Z���RZX�[���n�.D8 >_�d�=�W%Ocy��loNU���:x�M{y���˂L��^7��:b��qq�M$xru���>|� �'�#�5��@�4��]��\�-��ݎ��"`3��c<PɵA�vG$�ߵz\U9.jN�9�Xj�������cO-���z:�J�ַA#On�rUJ�pI �Z��������E��^��G�F�(�`)ޫ��{w�2����'��Z�_���-��A�G[;UX��݉��i���V����>!�i����Lp[�9G$6�۟�rp*g_Qߙ��"�A[���x;O�<?�k������o�E���zn=k�~*�6Oy�̓3��9ٌ�q�r����}.�YImR��B���X�b0F�00y'���a���N�5+�g}���z��q��+�B�O��ww2�R�w<����.�S�#I�K�Ʋ�����5\�yWna^���+�X���ͯ�uv���/��ќ�6����5��D���O�źZ0<�����:c�i�Y�f��y6m{yy�%v�+z�N���W�O�����Օ� �3ugn�e��6M>�R�F��jԞ���k�#��o�['ڮ�>\+���=�H��lj����y1���b>Q���~��f�ZT�l��j7:i�N���P2O^�ؒF:�3�&��Й��s�>�U�\�t�H��^~����[�� ����bV34A�y ��9��:�]�~ӧL/<G��+�����7U��=�'�k>��[��k�.��X�v >��VTL�QW�In�NN��lt+�DǦ��dJ�o��L�-�(>�Y�z��\��2i��m�8-�DѲ��a���$��;�zU���W�LR� ��\�R�=����I�X���Z��H�ga��l��2��}:�� )�s>��xc^�g�s.��N�퓐���@��X�ѭ�X����^��Β�$��cn��a��:Zi$z���#�7�j�>�gs��H8�W���Ms�^��[kW �f}Rhݒ����ڹ��c ��ê�M&�]h�_%���cE,�*\|Ē9�s�����X<1�ij�$.�sdɴ�B�?($�����8=�k��\ͨh:�K�S$�e�r�Ɍ��-���G�VGӣ}cI�Q��ڎ�v��O�y�;��Кm ��g�1i�\���G��Q&��J�Ѱc�%���ӱ�5���[�&�na�R��ӟ�h<Ag�Gy��\k��6W���I'��H�:c����8�������K�nC��^A�I����ƙ�_�R�k�ymsuev~q4��=w��T���z4B���z���U�#ې=�O�P�������m���V��sku�h%��� :rzU�+� �Q�NK4��ڛ����M+�Us�<���0F��ײHt��*U&/��- 8��bsߟ�VM��~�.��xjX%�%��a+4$�r�Pl�k��o��э�a����B0�܉9g5T�&�/�4�� ��Q{�������+�l���/�4�B T:Ayi�ȇ?6#��Q�,�kO;�:6�kw��f��ތdu�Uq���J�^��:t�[��y��6L������ž՞/�ާ�jb2�8�G���X��^zB���,���E�M`�);����:�dqY��l[Q�t;�2wEO�黦�&<B1��z���vZ�����KK�:D,��Nz����Y>=�-*�oc�5K��q�i H؞11��1LV�A����Y5�7:^�!dMP�x`�\�LSAw�vڅ���Lp�����I�6\�J���H�\\i��r�z�'!���%ħdbAS�8��PxwP����Я����b+=NG��0��pNi�.� ԯ絖���mÂ֎�LȠ����'��v��",丛�1k{ۢ��f+l��?�ב��g[kx���=:}8�,������ �����;)�+? 0����RH�E&��� f�X�s�-L��K��g]o����[�)J1������Ԧ�K�C6��A�����v�k����븒08��C�Z�z=ܲ$�qaz7Gt�XF�Ł���NI�[�kI�ٮ�������7,�C�u99�H�I�G�Լ���2I�j���=������3�283�OJ�����(�:,�-��̷��O�0�>�(�9���y����B����"�)`FT���ڷtK�,�Q<�}� ,��M��`�c�c���m㴝��u����A(F0�� ����cZz<ׅe��Ŵ���#>㫞�x㠭;`[`��LeJ���'�����/���Mna����P1h@�RKl9��^1�Jڍ�b�<��meP;/j��h#!W#���-�W�]�qܥŬ��h��u�q�8����� �z�>���;�3T�a����#қe9�p;T*쩻`��s�*�ͬS�,�^)���N�S �<I���WV:~�i5��-�W=�L�t>՛�]x�N֍Ω��p6�,������yg��jҥ��}=��K5�H�ȣ�60��>r��u�}W�^�-j�r:�-�N��0�I?wnN㷧��R&�����u*��;��@R%a��Y�A�H����Dž����?UӶ� �b�����խue���-����yC�x�nX#���UC���Ʃyq��{֥�c��cs��-F�e��4�o�H���;��ʛ ��0xǚe����P��� �|Ns� �Ȯr���[�����{ ⸑-Y���` ��m�Q�sޫ�7�����������p/\��p;v����Mr�I�� �sEg�G��q�.Pz���P3�X6#U�{j"+S��θ��̪?�����$���V4mcNֵ�[\[��]�R�;3�m�s��Z���Ⱥ�Bmm����͞(叉lu[40N�F@�#��2q�2�����P�]��F����w ���w{-���e��O���t�Ox�m�x�55��zm�vwZ�3K��q*,�����v>��y6��3� <�(�2=1Q[�v+���=�|Ã��˕ �w�f�W·ͣ���� ,lq���m�5����Z|>)�R�K?��E�%��lg��U�$�B�����a�.K����|K�?��ǒ#k��1�ew�Q����Q���zKK�tՙ�'��?��ťi^0�5���H��m,�E0��+t�Y_?=�y5���~+���Ι��^�ቅ���r��t� �)�T����<� �O�F�;{���@�\3���6J�Cdyfu˟��,A�;V?��g_�� �M��&�����P�����I�\�ы)Ǫ7r)�KFDou��? �����W���x+��G ����\����� #pn��$g�]��uO�x:�������[R����M�R��q]a�� �ON���N��G,i�ۺ�]&����d�ɲ{}�Z*����FB�MB�~5j��{}� MaI�-/�E�W��+��l�߃���I�8�#������@�tz,��>�zN`�����X"��;W��O�y�[$�֩g�\1�Y>�$��G�>:v=8��t����W0����{O03ؤL����dV�~nG��� ��� �.Z�_��K�����+g��1т@��� 6V��&ϟ<9�[���;K};������-]6��N�T���� p+J��?í?���C��Bg`�]�}��ı[$�!��e�9��W]���;�8��$h�n-HO |$1��K�Ac����[��Y����[x��C�a�i��]�����k���`x)�����O�"���u��Β�����n�]=������v���,m��D��͙������I�)]�m�a���g�߇��4�nu��_ݟ2�V�ۏ�����|edR���V�ձ�s0��D��{�Z�Z�\��� �Z]����� ��)��Þ:Ծ0�P�R���n��n��@��e��u�q� ��RVg�~״�o����&��ꖺ���4�mVgӅ�ERE� �b%��!�~��0��?����]�I���2�R�&�M�7) K+�@b{קx7��߄4�mt%���>]֥5�w��C 8.�����us�߳w��kZ���b�SӢ�~�)"�ڶ�WD5��u�=�{�xcත���k�[ !��\Cf�>̪7� ?1Qך��g��?�o�/��Z��}�+�{H,��@F~ �,2�}3Z><��ŏ�>�������隄b;��1�(9d�rJ�Z��,�|:��M���ͦ�Y}��<8��۷b�\�h4�vz�~����W�G�4�W����#Y�O��ٮt����x�k0]�NP��]��Q���=i�3���rʶw�l�3"��W9U��y���>0�f�\z����*�N��ao�ہ,plم>y���߂�����ao��*Mm6�M��Bt��%H��ܥ$a���:�7 D%��^t�_�y�����d$1��J�e���<�-�>�Yk˼E�0��F�xoź=�k#��t{I�\�r��'�� ��Ú������^��R���m��k{�@����y<����Z��k�{�Zu�N�͍,eTQ�q��+�x|}h;���������%f|y���⎖��.�w~�����e`>b##�N*�?�"i�;E��fK�"]���(�(=w�zq�k��w�z_�K[S����{�Bv�8r��t�~`��\��K��W�*�U��C`��q��'Ҝkf_&T���L�4o��Z���y����H|�i.��w�.A�|��܌�/�/�7:DZv��\�������A�������^�W�<yk%�I���\�-InA*�y �+k�� ֩���Se���4�m��y����I|�^/�g�h��E���k�6XG.���#�;�^0�}��Ǻ�/��z�m�J��� �F�H�k�?g�^�c���9YZ6�E ����9������i��?���(�$�'�P|�&)�K���,9�SK 9k]���T��iN�6E����g&��I��UR�aH�@��$��'��I���kG�U�&��_�$���n�����C��ŏ��_���*)�H�|�#9D���2���g�.x����l���w<���mn�y(�9\�،��[���,�I��<D��?C4�~�xb�ׇ��~��1�~!�~��+���hN��u��u5O�x��'�����{f�>�k��F�����K��̮��n2�'n1����]/�ĝ#Q7z_��MbZM�-u��S��a[~�S%�SX���S�'I�����:��>#|3�e��r&��.-J�ۺ��Ӵd�zzf�q�������[����]Z�b���2��ޟm�I�����G%��m���U�{�,���VE�6H�i���B%�W�쮗d�Cp&d�wF͍˞���\��X�$��(���vK�ĥ�t���,�m�q�#��q]?��[%v��{dz}Err|W�m�A$ͧ�]b��"�c�>f����X|OT,f�g$��i#��-^��Rq�O=ԧi#�5�=�t�"�I�]2� ��,E�IQ�m����'�sZ�������Լ1q���U|����kx-����8y@�A�Ey>��d��-��2���xO�SKz��m�w������k S�N>�v��BP����C�7Z�'�4�/.{I����`��ڹ۫{���u :�+���x���.���\�}Flj� ��maI �A��c/�x~����]ZR�l}��#ד��qX���r�w���諀��I�z�[i��j[x�\K�"��`��=����Tw��qz.�h`Hd�R�<��<���ޮ6�ɢʶ�u��m1?��3���r�v��k:�K��5��}:ݤ-��9Y=r03�9滩�R����Lᜣ(�ľ(����AKIH�9 $a��fQ�1��ֺ�^���V<R����HY���������G�6Z|p;��i��sD��� V�H#��uC�vV�n�7J�+X<w d���<���)�h�v�" '���7��������wD�x� �����ֱ|K� �Y�D�-�!g���[�@lO9�y�*�/� լ>���ԂIe��Ƒ��C���dwҮXxoKoi�L��39���$4��!d�0������s�Z�ok'����j�i��T*0���xa��ƹ�n.�.��ต��K�0��p��I��f����H�|��Ʀ�b��V��8��+� ��:W�K���&�e��K����j �6� �d����t¤9|�g shd�jw1�jQ�e+��X�8RTBN�z����n��ĺ��s2K,�����d���J���i�j�LB��)�V�ܞkgCQEe>��v��Q�.��H��p��h�F���r��j»�Է��_Z�u-��nf�l�ٜ4r���w�W'��q�:�&�Im��E��j�e�fPH���>�kԼa�;�����"K���"�6� v��;� ���du���h�N�W&� ӌ[�k���K����<@�傀���e{gpG!�~U�C�Î �fEB�89�@���p>��I�fԲm9ޭ�}k�E�dq�]ܚYR,Z++�#b�h�s�#�{�T��s���||Ȭ���_]�d�t���0[�ڣ�NB���d-�iwPi���I�2�ٟ�U$n=��V��\�$�Zar����@~G�p����q�j;K����o�R&�6�W�G�8,��=1Z�$:n�%�ڬ�L/�o�K��� sXM���?���Y�����ϭ�x�ð�#\��P����Vh��&B+r��3x���[�OQ��N ��#bxP��'X�y�y>[m,�m����ʼ䏽��n5C4���Y$����lhz��==낦�W���c��"T��&�gԞ�i�[��uˈ��"$`�#��C~���_�7�uE�� |&��A�У�~�+��≴_���5]n�t�Y!��Nꠝ��� @�y;x���4�\��M?NѴ�Ñ�ܾՄ�:�0J����g�3�� �[�X�u�I-o��oV�g�Ț��L�]���1�~�t:�CǸ�[ľ�敡�Mq�]&->���������?�M�\��*�B�Isf�&�Q��*� �'!���d�\W��V����X_ص�4�"]�hp�09�c�E�Q�H\%V�V��c��>�k7�x������$���y�m���(0�`6�z����#Z��G�bI�g�]��)�������^�&��+����PH��un�<.���^+��.<P����Um�7պ�����JV����o���k�|�g�OP����V�s�|���DR��?� ��>�K}&�� X�-��Ũ��g�22���m-,m�:�����9�$�U/�G��5��p� ���</�_�ӂ\����9*b$ޚ#*�H����� ��1S�y�l�O�[=2Sm��22aJ�$�¯��+]���qW��O�{��?VǷ�����l-�:�υ�d`�����m��9�L����s9n��ys>�k}ous��9���� 7|z.=+��u�in��ԧ�4�-��Ha+yX��P�I9���7:��4�{��Gr��w�*1�FC3p1��׃I~�i�̲ͭx� ��pG�G�� 'q=:d��� x���I�j&MOvYn�*aE_�ܙwl���*��������t��-��]�6�e�c$�ۖ��,����1� �x�����V(�����A=��Fj-���RY.���S����P�$v?;~nJ�9�.���|e�겭���:�T=����������>�M�W&�`�65��bq��'=z�\��n�x��v�6W|��=�5���ir:I'oR9�_Ia�ٔ��氄��a!Uh�9C�3�� �`t�a��Ό�K�x/�aq�^#��Ԑ���p��=�>Ymf j��֮����IFȷ���Ԓ�ixs�z~�9��tK��4p�x�gQ�g��n�j���Ehk��F�q��V��{��F9� \�Gg�hw�[=f]#RTG�E���(,Q����8�Rx���i6�:է���� �LJp3�͌�{�U�n�Yc���/��4�%>b |�q������!6�>�W�o4������Ax#��'V%�V�wX�[�����H�\Ő@�8e��`*巇�"��P�o/<;H�y"�3�<��:�ӌU�oQ]:�[+�"�A�1�����ܰ�`�<�)�{k1�6{�(�EYSJ�2p�q�:���ҁ�/�m�[E�t��7�gӦ)n#9�F�ۀ?�/��Xi��iz�3�MG����B�IW�H�Fў�1[:����zH����I��#ay�������y�E{Τ��#�<D���a�X��zz�4_M�4�_�>[�fcwd�zr������nu}F//V�5��S�\��-�H)!T�p3ԓL��N��[$�φ�ە�Uy�ھ�zd����qZ��Z�R^X[���<�l�ʹcn�'�v㎴��|%a�ؙSP�4y�X�M*��J峵�g�A>�-����B-+T��e)���d�ڧL��f|p6�z�e�:k�ޝKU�/� ������� ��(� 8�R�iZ��+qs�i��d�{c.$�F��=:� �P�v?i:V������}J�5V�(%I��Ñ�p:�Һ��:6����^�l����/PT�1\7�-��ka}uis#{�<�|�j+ug�Fq[�֗��kq��O�_˺G����u�*��I�������oi&#g|���O~n&f�?���C�;�v�#A��:�á��g�1#����s�~e�������m�H"���Z��J�C�� �}@�呞i������;�"c��F�� 6�3��?O��5�����E�9�⌺�Q�5t,�B��A]���ͺ�YH�xgC����J|�����] ��o��C�E����<;m�jo�$�yw�p��#�=�pj��:��~5/n�٠��v�Z0�1Q�{�?QV���\�Mz������nGBW8'�V�uhK[���s���F��ߠ�~�XI�h���N�M&��[���>��Ҩ����(M:�+�/��d��b�)����=MT��Hb��<�O�,#p�q�9����ڣ�P�ծ��m쯴x��9M�Bɜ�5�s���I�;�Oou�i�ȵ��#����I+����q=�S�\U).��Kn�n���Mn��\��|��� ������z�P�tsi2��94�Z� ��eg���v�� ��ۙ����l�B�f��n� ��w ��0����|;s5��yն�q��'����r�{x�Y������|C�%�ٚ�ծ'FY�,�,�^���������5���\����J]�ݸ��ۮ��k�<:\Vv���@,��ui"�2H�s�r=��K��j��U���s�]�B������@P�W�u��5J��]=��ܲ[��mo������R3�~�=� ���\xf��H��(m�g��� 9U^9, �=��Ɠ�o<W�Aawm2�[a�Ĉ2���w�8���sj�]hd[mj�[�A��C'�����+Y.X�x��T�wg�GZ�4�=Ug���U:Η|��E,fGU(��N����zg���O4���֏*��6�=�,HeQA��<f��7��hW����7��:씁����:�\��&�P�H �<�_j失���[�CC����3������pI8� I.�=�os��Ay�CX�U����*�9QӜy� 7>��i&Ӯ�m�U�N��6���`d��U�,�#ҧ]��D$3�\K;����V<��$��RX�[�·��)&V������$1P�tnJ�Û�����y�rQ�?_P(ܛ����T�A�k1G�ZC���8�|�ylǻ�5xum7QEx�凜��q��T��q�b�[Դ��ó����V�';�*dc�a�=*�OJ�/n4I�[�*RWE>Z��px>�1j6�O���}ODռ�:���1����9O�*ƭ���{m�Mk%�z��؏$lV-�z��*�����{K������Ё�Ɗ�ؑ�`�sO���Z�b{�[K��y��ab��#�?Z^C:HD�� ��ğ*�0�v�a�:���.�4{y呾y6��qϽ`x{S�C�]-�E��^��O9�a�[=K` .4�2Y���Zs�:�;��h<(m0L�$���T�T����E=��Μ���QE&�?ZE�P�4QM���U7���-As���QSOb��?��_��u�?���\��ЅV�hq��t_�|%������5t���d���'�D�T-���������c��L3�����(��������W�����%h������~B����g������y���]-��}�ײQEy���uGg��3��5����+u����Q]��a�$�['���I��}G������c�������=�ϵS[0[���j'��5��p�h����G�_��%cU����Ы���T�Z(�h�(�_$��@�}O�5A袪;=ɴ����\d��M;U�����)���(����Ǿ~�{�_���U�����$�D��w�F�+���|�Sա������?���.�i���(��n�����������Ei� �#��i���B��t�h��$����O����T>�7�?����|q��<Y� �?����������s���W/�~�����!����Ŀ_�Q��:(��8������V-���V��q���*)�{�����ۯ���_����5������Vu���������?�J��u?�3\�O�&�����TQ\��]�����$y_���!/��:�����O�����)��o�D��(j?���C��x���~��7�4�Ere? ���Y�c���?TsG��:.����A���t0�ȿu���.�+*� ��e� �;��ֿͪ ���_��Z(��^F�s���]�ΰ�������Q\��*[�i���Z�W�{?��%t^�������E������=l�7�����\ ��u�_��%�t��EwῈ������?�$�W���X��~����$���8�(����n?��Y�Ȭ���h��;S�,��m�>���Vߎ��k���i���E7�P���C�"���{��וx7�J?���7��Eka���x��D;�����VW���@�����R�h��O�����ݿ�����+�����E[���_�w�E����Ut ��i�`��E��G/�|�����~-��ǭ�����QT9ã��=���K�k'�_������� (�B_�h�Lt���ה����m��kEK����?��?�����C����|C���(���ٞ��W�F���_�����u��w��FQE5�Dzݷ�����u��,V���eT��s���8o��A����_��x��I��qo�h��_ hO �.����Ƭ?����CE��k����� Q��D�_���S{!-�0���#���\���jתj��M����KE�TC������?��<I�%?� ��3E=�G���|I�?ּ@������i��-QؙK��������2J���=s�^�*�E�����sS����F�n�]�����`���T�B�ix�I������_����:��A4QM��������x����G�@�����d�������W����B������R��?�7��W1���>�_��E������,?��_�*k��*(������ |
| URL | http://zero.webappsecurity.com/resources/img/main_carousel_3.jpg |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | max-age=2678400 |
| Request Header - size: 288 bytes. |
GET http://zero.webappsecurity.com/resources/img/main_carousel_3.jpg HTTP/1.1
Host: zero.webappsecurity.com User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0 Pragma: no-cache Cache-Control: no-cache Referer: http://zero.webappsecurity.com |
| Request Body - size: 0 bytes. |
|
| Response Header - size: 351 bytes. |
HTTP/1.1 200 OK
Date: Mon, 14 Mar 2022 07:13:43 GMT Server: Apache-Coyote/1.1 Access-Control-Allow-Origin: * Accept-Ranges: bytes ETag: W/"101493-1358497020000" Last-Modified: Fri, 18 Jan 2013 08:17:00 GMT Cache-Control: max-age=2678400 Expires: Thu, 14 Apr 2022 07:13:44 GMT Content-Type: image/jpeg;charset=UTF-8 Content-Length: 101493 |
| Response Body - size: 101,493 bytes. |
����JFIFHH���ExifMM*V^(1f2x�i��HHPaint.NET v3.5.102013:01:16 15:53:54������(HH��XICC_PROFILEHLinomntrRGB XYZ � 1acspMSFTIEC sRGB���-HP cprtP3desc�lwtpt�bkptrXYZgXYZ,bXYZ@dmndTpdmdd��vuedL�view�$lumi�meas$tech0rTRC<gTRC<bTRC<textCopyright (c) 1998 Hewlett-Packard CompanydescsRGB IEC61966-2.1sRGB IEC61966-2.1XYZ �Q�XYZ XYZ o�8��XYZ b����XYZ $����descIEC http://www.iec.chIEC http://www.iec.chdesc.IEC 61966-2.1 Default RGB colour space - sRGB.IEC 61966-2.1 Default RGB colour space - sRGBdesc,Reference Viewing Condition in IEC61966-2.1,Reference Viewing Condition in IEC61966-2.1view��_.���\�XYZ L VPW�meas�sig CRT curv
#(-27;@EJOTY^chmrw|������������������������� %+28>ELRY`gnu|����������������&/8AKT]gqz������������!-8COZfr~���������� -;HUcq~��������� +:IXgw��������'7HYj{�������+=Oat�������2FZn������� % : O d y � � � � � � ' = T j � � � � � �"9Qi������*C\u����� & @ Z t � � � � �.Id���� %A^z���� &Ca~����1Om����&Ed����#Cc����'Ij����4Vx���&Il����Ae����@e���� Ek���*Qw���;c���*R{���Gp���@j���>i��� A l � � �!!H!u!�!�!�"'"U"�"�"�# #8#f#�#�#�$$M$|$�$�% %8%h%�%�%�&'&W&�&�&�''I'z'�'�( (?(q(�(�))8)k)�)�**5*h*�*�++6+i+�+�,,9,n,�,�--A-v-�-�..L.�.�.�/$/Z/�/�/�050l0�0�11J1�1�1�2*2c2�2�3 3F33�3�4+4e4�4�55M5�5�5�676r6�6�7$7`7�7�88P8�8�99B99�9�:6:t:�:�;-;k;�;�<'<e<�<�="=a=�=�> >`>�>�?!?a?�?�@#@d@�@�A)AjA�A�B0BrB�B�C:C}C�DDGD�D�EEUE�E�F"FgF�F�G5G{G�HHKH�H�IIcI�I�J7J}J�KKSK�K�L*LrL�MMJM�M�N%NnN�OOIO�O�P'PqP�QQPQ�Q�R1R|R�SS_S�S�TBT�T�U(UuU�VV\V�V�WDW�W�X/X}X�YYiY�ZZVZ�Z�[E[�[�\5\�\�]']x]�^^l^�__a_�``W`�`�aOa�a�bIb�b�cCc�c�d@d�d�e=e�e�f=f�f�g=g�g�h?h�h�iCi�i�jHj�j�kOk�k�lWl�mm`m�nnkn�ooxo�p+p�p�q:q�q�rKr�ss]s�ttpt�u(u�u�v>v�v�wVw�xxnx�y*y�y�zFz�{{c{�|!|�|�}A}�~~b~�#��G��� �k�͂0����W�������G����r�ׇ;����i�Ή3�����d�ʋ0�����c�ʍ1�����f�Ώ6����n�֑?����z��M��� �����_�ɖ4��� �u���L���$�����h�՛B��������d�Ҟ@��������i�ءG���&����v��V�ǥ8��������n��R�ĩ7�������u��\�ЭD���-�������u��`�ֲK�³8���%�������y��h��Y�ѹJ�º;���.���!������ �����z���p���g���_���X���Q���K���F���Aǿ�=ȼ�:ɹ�8ʷ�6˶�5̵�5͵�6ζ�7ϸ�9к�<Ѿ�?���D���I���N���U���\���d���l���v��ۀ�܊�ݖ�ޢ�)߯�6��D���S���c���s���� ����2��F���[���p������(��@���X���r������4���P���m��������8���W���w����)���K���m����C ��C ����"�� ���}!1AQa"q2���#B��R��$3br� %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz��������������������������������������������������������������������������� ���w!1AQaq"2�B���� #3R�br� $4�%�&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz��������������������������������������������������������������������������?�'j�#�:�\g`�ӥ�A�jL�b8}��R�ʎ܌��'8�l�)H\t_Ɠ?9��p~�Ұ�㑁��T�8���;Ғ?:\p>�R�aGJBr�&�g��� ���?JV�:(��[$��N<���0�@1��Pʧ�'�G��Sֲ�N2E)4ʷ6���9���F�p���#���:W��9\*Ŧ��>%��=���r����!+�9����0$�V�fT������l�xi9Ah}�-LcG#�Z�w�Fy#�l��wt�U ��q�j�����s���T��=+*[f��l�WYsn���j��H\q�PV+��N��r�95z��>x�kVtT�k:�'=�*j�ݛ)J�O~��s�Ɣ�'Q�U `>fB��RC�A��G?.�vE�[�v�Zъ]�d����X����j�#n��vK-�4�Ğ�ic�ўi]�=k)��4D����"c�O�0��I� b��:T��`-�1��H{�X(���ӲH�qZ{owQr�8���sHI' ���~�T�������E�n�b���:�Y���RFrW�Oz�����t�������Z8��k̲��?� ǿz�9�<��c=k>Y@����h� umC0�ZG��5�����~�t��F3���x��Mhk�Ny�ϥ4�z��Ȥ'������I�����s���"���<��;��UqvLv�b�}܅�U��h''���@��Yά��Ф�H�s�E;��d���P��8���1�Q���7RI��2O��b{�T.n�^�u�s\�ѕ�=+xR�Q{��ŝN���z�9���-'֛�_�H��9k�<W�U���l�9 ���YeZӳBsQG|���`�[�������^�_��L��-v�=�g��H+���z5rEL�Z���J1�aU�� c/��k��TRs�z��߃e#������YJ��jX�d�A\8>���Ͼx�s^}o���ql����z�3��VR�Tw5SL�����z��L.>c��rP\�y'��5#�/p@�sX��'`�:C��q�<s�G��8�ۯJ���r1U%�@�A�x�2��1�g-��}i˫���p}�]S2t8J�5 Xa�o,�`�;a���V�NMM�a�c����?�OO�Ў��yrc��S�7Z�o��`��k����g��V��YW�g�5�<������.*d�RF���\%�� ?xӭh[j��#ך���ѝ���:�&� Ͻs������z�n�>�*����p6U���4o$�<��Q�v��8�Z���9��Z���;�1��i�>߅9�lὩw����l�& �L�� 7 �O�OL{�ɓ�'�P4`c4Ir20~���q�@$/ ���n�2��`��$�J�XFp3��+�_�SZ£��:���%�k�:=غf�d��N�-w �N*��Nv�קO*j�q���铅/� ���`� �wq��#�X�J��)�4U�L���jc%=�Q&��$��٭�Y���۽bD��{zS���f���V:�`���]��q��5��������׀���84"�f�s�5�����O�E�df�N^��L˻]ā������e�*H>����Un :��8IǨ�V�I��z�-�i�.Hf��&�R��#h%�T�r I�����fD�s��K�{ͭ3c?) ��t�fH�+Ly<�y���rd��qް���9r�8(N1��aʖ&&I8���j��b\�u��M�N�wf��K�|�!I���ں�#[F*rk��c����=?L��[�=�t�F�������Q��s�ڰ�n ����q��՞�ա �S�l58�V��°��zq^i��̬�ǏZ鴭X8\�;W�/S�����1ysZ��W�>���t�qY�bB>n���"�9���p�� JR�ԛ=���㓎ޔ��lc���5ߦ���s�#ґ��N���;�b�y�z,�������x��zt�h$3�J�v��.�W�Rg�P#�M��<J�}��`=*~@������s�k �@އ�v ��3����'�7#��4qz�{��� �K�m�8�9�{��r )�pO_�4n���c�C�CK����i8��� ��Oʐg'�ZA�u�9�8�~(�ohR0A=(�8�r��@!F9�v��9�A9� B��9�@��#��CKߡ┢��i�E4[��S�Y�ց�������S$PG��|n_ �j�]C�8�JÒ@�=k�9�����0Ɂް5];� sۊ��;��Rn�%�>��SVg-"��hԾv�kJ�ݕ��TB;u�_f�g��otd�Z����Vt��$#��+����g�ҳ�# �9�QQ��HďO.ű��*�V@!�U��:p3��ĊRx�(��{��+�`298?�*F�:�p�����k�M��^����y�����2q�Z��㼓h-�������>�w�II̾�����u��F ���� ���Z�Qqvq���OS�O@*��\g�9������#>�$��c�?:�H�1H���ӄ�ev \sŸ`~����<�8�Ml@�r8��D��$zt�J���ތ�o�$%����z�A#�9�-~�� �Z�/�6Eys�{W�B4�@���uepK�95������}k�͢�F@�jK+�<})��)�Eb��z�v�Mj$����\ ���8���{N�Ī9�kĭ��=�[� ��{�r���-nמ��<�1�Ao~�brA�jk.,@��r�>���ڒ�An;V�����7")6�s�k3P�R��5��j���s�Ճ}��� Ny����M��lm5�2�x�l�'���5�c� Ҵc1����М���T��N�����r����k�|\f�Re�lϥ{n��d� � y��4�qx�19����]Zpg-D�9M0�H؟\�+�ѯ.`�"m̀go�ғH�&��x��㝹5-�v$���]U�)��1���4�<�^s��yeY�)����!�j3Eu�:�hڣ���r�P���؈�z�Ygh2�Et�;d]ñ�Z���I��8��F�f%�mϡ� J.V�6m���c��z�Tr�͝�:����J����$w��s�H�m���u��8[��s���H�6})�ܶ�9�����I�c(�q��?�ni6a%�H�jB��M�2��fo^�k���O$����lt����嵋m�k��b��5�JQڦ̅�)�n�~�_�5��r�;�w6�Aaɮ�.�*�tv��2F;g�s���qR� p��sE�ɟ�r}�����Y]&F�����$���h��S��ӊ�X��&�D� ��W�_��dE\�>���2G zU�I��^j}�+/wP�Gs��A�-�l[�+���;ןX�g�� *�6>��έ��'�Z3���$?:��`�k�}�p��е}�<�J�Fg(�J�g~�p9 #��~����N��������� �����C:䜞E �i'���h<�:Q�N?B:�A��J�+�+.*?�/~? �=z{Ҫ�>a�åh�t#>�\���+Pr����t�QC�g��խخޠ~UJ��h�o�o$�����ac,��%���@�\��V�G����{X<5*�i�g98�4~+�L��OJ�ҵ�.ݮ=�kɭ��\e�=s]��mI���X:0���Ӝ�=;J��� �d�q�2G���j�^a�ݐJ����7GG gޣ��A��R�����Q� �9���E <_)�gި]��nO��Z'��s��M���������\�n!FOz立�s�ν�]�m:饈�6L�]Z��vebzqYm�sGq�5����H���#]�2�R@���8\M:��9��F���0c���Mt�V�T�����3�9PK/`{V���If=}y�y<*E�! �vg��:�p��3�9��6����+��/������u�f�>a����upӼ7:ӌ֧����H�0��O���u��+��V�> ��+Vx������SW%N���v+.�Ex���� ���e\2}���uu�6۵�V��s_���,DSN��bpS��F�#?����I��_��J0G־�RWG�Ճw�N��<s��!8ϭ!�}MQ#�,ӆFq�3��/q��@�Ȫ��`2G�Ҭs�<�k�h���X�� �|ghs�g҃ӡ��`��iPsӵ�n1H�?�������899���8�px=(o�i�猜z� �<���x��v�19"�}�NFZ��ր��n����t��A������`�x�8�G^zzP���@ z��~�t��4�'>�����Hb�b)1�28��'�z�ԭpP���*�ժ�A��WO#������\8�jŦ���pg1�i��b]۴/�x����� �.�d��b�6��wz���������9Y���]E�ӿ�l�99�5��Z��|�V�=�������&�ȍ�eI��[��Ȫ&$�Ͼf�i$;�W;G��\�&�k1���{r�5 ��!�{�Xṕ������� Ƚ�����O�^�؎P <W5�[�m�s���W-<$��i̛-6���1�OJ�U���s^_�8bs�=�����P��� ��˪r�KY��=N9�EX���vw��X�<���_j�P�FN=k������R�=)s�H��NLd�s�*[�C/AӥM�� �)��֘T���Ҝ'(��h���H���z���?(Q��z��wnZ�6��0O�z�0���;�>� ��C���sK��IIv�5�叝���ֹ�SDܘ �z��,\9l(ǹ�@�\4�H�ֽ�����q�������ľ��Fk�ԯ ���z�Lh�������j�7q�jܚ8pּ~+����ը���'�-\��j'}��z���d�q�X����g�?�rwz��北s�v�{��䔗%��]�\����3���%v�D��>����iyb{�TO���{�M37�?��X�SZ�3n�QÂ��Z6����==:���(�rGC��-Fv�5�V�&�4١q{�ۑۧZ�H��FB�sT#�@�I�_ �ޙ^�Մ�F���b�c�<"��+���KB�J�����!��VS����tR�RV{額�m&�1pg�Z���d1�<���� ��rB͞稯M>�[�I�Y��c�8XB��+��{NT�!CԮ�WE�t� }�V�i��2sn*{h���#�i��q��־f�2i���\���4(����@?Z���-�����]���Q��+X֠Y6o O���b�Rk��F(������r �G5�m�(��t�Өe+�{Mtb����8�38��B%k+0�}x_n�bPlq�R�&�}8���ȸ�9�˜�����$��c�8�6����'�f�8 u�k+u�@s\��--���ʌ���+�+��p��z�ժ�@�x��.���WV]���%�4svڢ��i�9=k^�R.�+������^6-��V���<sm��#�M}4��է�{;�=����j��aI�,��2�R3B9�u��NGcָ�Qte�w��gq=����c�M*���T�I��zG5%����r6jڼcV: ZΗw��w?�oZ�����'��<���I��x�ɯ��S�r���ߍ�ǜ�;qA�a�T�r29�|���'�$���WW�6-���<с����v�J�p�穮�MH�X$E'''�3�����,pip{t��78�@㜟���)��Sߌ~�)� �{ɟ��Ow#�)7�v5�g�,`�r��#�q�"���X��{W�L��,:Vn������u�K:N�c�{�{�Kiu�x���?"�6A�=k��4��X�x�z��KV��t�ac&�z����4��^T�3N��`q��X��H��=*+��<g��}�������5T3=kwM�A`u�0�Xh������u�g��ֳ���� RG��"��ޔ��2:��H�ۧ�n�N�&^�k͜^�V�=ƒH���~�������bƌ��u8Q�W;���`Pc��j�J�8���6��ӧ��(Ք�=O�7�%�G?Z�tǷ������vմ�Az�+���3*q_E��ޑ���_Tp}���w��M�#$�'nq�{�?��Khİ��o���Oŷ݁�?:�e���W0����&�����WS��"�X~u��C43)vo�q��o ��2�Y�>�5�٦B�Q�G��\��t!�����$+��^a�껀;��o��\��^�˪^NƕhB��G�i��p>`x�h'>��5��V�$%���]f��G"�_z�/!��UҌ��c�1�S��:�9�9�z�x�*��ڶӜ�W�n��X|]:�Y�?R�����c8=A��'���^=)s������W�`%\�������ګ_�L���q��;n�3H{g8�t�CpGN��5�4�iTg�h��4�����T��c�)OL�)#��(6:zq��q�Jq�i�A��~t��zs����@1K�3��rZ0��R���NRH�>��B�:�aF�4����J�px��0����#<P�s�Fp ;��B>^���*'�T�* �z�7C�p����rL�H��Yw��F�^jʤ�߭K�C7%�P3��k3Q�B��J½��n��Z�Լ@�۷��Z���Jmu6�7\��fS���;�v#<����x����4�?RY[!����M��K٭O���xn�� E$'y#<~�E0�FMJ���Ӯk��c!�]�:\Z+�����ܑ$$("�Ϊx�zURX�y��W��S�����`0�ץq>"�g����GzW�^�ː;�k�$�����t�9��.��[�aW$E�w'�����,��J��m�g�cW��}�'9�j���}�H�64��"�aq��ZMS~r;f��3�26��"�Z0V-���(خS���A9�lT��C��Z�K��8f�S�jG$y河�+��<�g҉Wtg:�PA:<]z�Oݹs����-��;x���L�q������y�H�n����X����3�5,6I$;��H�P=}j�W��`�]�jY�D�`x�L�F1�y���3�?(q�#9��N�2�W���is���uS�N��Etg�6�*XD˞0D�q��.8����P���q`��&��fFq��b��*�q�4}�\�e44��b�⻃�Pv��ynFӁ�>՝LN#�#& )㚲�tH>���Z+q 3�i�OH8�]z�z���C�ґ��cET�nv�����6�[��Yb��͍��a�u++܉M%��5�)�$�R�jꏈ�>���2_�M�Hpy��ƺ���F�H�g��N�(�'v�1�ǪJɝ�����Ӽ֙��=sN��.$]�:��k��N\~�}|�j�i�D�#6�H�zJ��̤y|�u���(F /�Skzt-lF��5,B�+�Nǚj��Y>9#��cXW�ί�v��&5���$����~Q�3^[▽Kf��}�q����v�x�mY��8��W�f���8���q��u� ��Oj�֡���)����~������@�8�ڎ��y��:���-����5���O دS��h��r �&���\F7�&�f��(m��q_�g����E�(�G�9���.8�����sǥM��>ڸ����L'̀�`VXj[�ͳ4o��kKأ�ֽ��E�f���[9�����+-u>���5Lj�j-Pԓ=%���pF+3U�����;���ˁ�}k���s�.}+Ŕ*a�f����"`ύ�� s^}����I��5�f������Ҹ�h ſv:���_Q�g��䩱�����hs�n�k���z�(9�Ϣ�{��cw$�����9�zU�S��DqV$�Wɦ<#g�ac�O_�FLgcֹT��>��(dp:WI��T>����!�`w���7�k�ǻ�\M�\����Z9-��8�P�?�8�6�9��˕������z� jp9$z�z�$d ڝf�-.O^q�N�N�'����q� zt��� w0ʐ?Zkd�~E<Gk�d�0��'SS��0�)��n��Sf�H��?�+��p1JpW9��+�8�5&+�(�w��X�Ύ�]Wˀr9�Q\*�d3�kHJ���QTu�ڸ=N���PrQ�:t�9�mլ<��h ���x�@�ؿ�2G��1��婪3�Z��QL�+3�El[�,H@��5��Oe6�`<�����Al7:����3�� Q1]�4��B�1�V|����+����@�Ցq�W ^�O�ֹ��*�"���z�$)"� wr����˼?�O��A?J�t�P2�<t�ί��)Y��gC���Tn>� c�"��\�$�8��Y��j��3�իg���JVP���b�MŁ��!Вh�Ju�:�g�Ll�\$��?½���HOJ�5�-r�����9��;Κ�<1�e��p@�=֭i�]ZbH��Oc]���ّ8�}��'I.3��~_�{��C����4t-sj*H�Z��\�Ͼs^FӲLL@�rW������K{�r�t'���dʺ|��8��F��,�G u�kf���`ѹ�k�<#�n�S���U�L0�9�_���aj^:X�R����6����������:����9��pEj�j�@��k�����Jޝ�7�B��w=2 �p0rje!��\���$�p�սevcp�+��9���i�'��Γ��w8$�}CpR�C������PO\W�Y�N�= &vc�u(��������������x��zӗ;� h�~(^��s�9-�t�})q��� �=�*7d�t��ڀw<gօ�*E���K�r)�ׯ�B�8����`s�j�4��l��Sߎ��&Q��E,�8B��(?0��^(�M�./���TnuR}+SԕA篽sZο�+I���y�iǩ^�]���X@�o�Y7��F��w�Q[�^`9뻥p~&��go�~�J��f��*4g'd�h�|L�ϙ��[ƐF 2��Ϟ!��q0+j���W���Y�c��[���U���H���_R[�}�/�6p+n��F�\'�>,�f[m�G�z��f��K+1�9�4?��\3�V��#���w��.>#ks�E��i9ϵz�O����^�ǽx(rT���A"I��5�f6����E�J�ZhhZ�sƤ09�tVw"H���|����i��;MF\I��CĶ��#$����k��!���9�ӹ� �h�d�����j��F?���u꺀rA⦐�eq� �6aF�yf�"\Z)O �gw�q�V�a�3��U��N�����0o�*T�=�Y�h���Ƞ�c�tW1�8�5�t����Z��%��rچ����X�W1�j��o�z�K�mqlJ� �ב��B��dfܘ|���b� ��݉U$� _�0[�l-�����R�����k�D:�ZNrK��[+�AB�c��vק�t�iF�q��z>�u,�����=k}v��Vɮ'�w��@#�t){���k�%��ݐ���c�9?�3���8�l�E�{�r�i�}��X��Y�+�� ̅b��'��aA�=�Gu!�3�z�T��f���nA8�W�����}��5(ϒ@�<�ڼ��Xd�e=HS���ۖь��� ��/�̗l�b2x�j�����Íޣ��Sr�$�z7����g�s_��J�M#�NL�۽j�2)F@2py�h�4e����ٮ�ĺ*^�ʩ�b���<#4ڇB@=��}�'E��&sNU��Ӧ�Ʋ�7�/���4�jK���1�f�iZ����l���H�Aqas �bG ǰ�:kR\�Ս��dt��}�<�N�dUKo ���Pͻ9#<T�U�v�L��zֽ��Ot��q�^]Yע���q����v��q�uZN���!q�����͍[Ϡ����0>��X�uZ��l��,���%p��i�l��j�B�pJ��]����>i4Ũۛ��R8��wX��=*��5m��zמkz��M�ry��+�/�U����o�MBp\�Gn�N��q]�F�w� ^�(\Nk�<;�:�p��^�<T������㚧��'͂_%��fA���l�9��W���A$g�#�W���yy��+��fr����8��a�w��� ��SW���9�f�Z��@+���ʅr1�q_3������W�s�����OLf���NFP<������(�eT�1[�0B�>j�iY.JZ i=�o;Z����5� ���wgBY@�����4x��%@f����l͜�@ ��j�2��&��WL�J�/��ov�S�9�^��?�p�g�k�|A���9��v����f���Dr�FX{}k�<� ��Ε��*����t�M.PG=�Q��9#'jw¹c�u=�b�R�� ����L�ղ��EMn' �X�ܣ��Wo�����T���ȯgF��3p? IX�A!�"�S���5&���FS�+�D����a��![6��g����a �Ñ�1Z�Lj����bj&�h�j� ��Ҭ �N �=j���Ƿ?��d��J�Bs�\����������՜����q\ƙv�A$�݂]�g<~5��1X�bq���Fűԏ\�Τ`֖��Up��i ��c㞾�.�Bx�uڤ�~�M��}+У]KC7w;�s�sLp6㌃�� ܞ�J~�#'��t:����@�݇�>��W��5���Ut���Lc�jGl���H��q�n)NphC����Uu :)c9��*��Q��G�<�kH�G�h�;��U�^xy�ѽ�8 w�[����8�>���F}MwS�Ԧ��ɞY}�1���8�k��z���C�?Qڽ�}2���������o�;N7DN�2ўC�j���0������!�u]́��+�ִ�$���*��aqo6���׳��E;��c�c�t-JM����d�v�����- d���J贽z)�A��k��ag 6�:SM�R��#�OV��v�:�ȻY�=sW�`Wp��\r�PS�=��k�d|p9���@�E2U�)+�T ����`{�h~j2�s��z<ц=�B��d��Q�t��J�����y`#��}�:}ki�$��n9 {���,���a��WS�J�N;��_G�͓����ws��3iΤƥs��u��@�Wrb�w��v�ۮӴ����y)�q�9��5�J1�G�@���=�D��B��I��s]-��ȣ���ҵ��0e9^�t��Þ'�R���k�1�$��uB�^��K;��������5�0�J����j�̠����j�Ua����p`3,V]S�z.�W�N�m$zn�~�Fs��� ��M��q�df�K}h4*w�Z�K+�U���ٟ=[+p���\N~���Ӏ���#�|��k����z�q�n�Z���9�8�'�u�a�w�s���Ȧocߵ#K��*\�M�(��I�I5��5��O�x�'��z�Ɠe�N��F�FO8���Q��Ug�W'?:��t��駅��k=��{UI�Pw�}��S<����D�������;i��ܼ�UA� ��5lCVm�܍�����x���|�/����x-���s�S�$��W�mj�Vu�H�L�[{j$���MSM �+��9�2n��wS��]#��ِ���8�yƱaq�$$���s^��i<�3�j��I���ۣLs]�~o�d\�G��� ��jf{�m���3�)�`{��q#�Oz��uc8�ҋC3�rq���t�0��#>��{w��H%'��ױ�%�i�O������k��u�i�&�OB��9n��ֺ��?��$sH��g�+\m�c�z����rI�*�(b):uct�_m8J�>��k��Z��H.Ar3���K���1�9�_�>����������� �����W��-�Gr����82t��W��_ ��OvZ3�hϨ枠��c�Z�7.��0ܽ1ھC �ʌ��#�:eN�����=1T儆 �$�*�6F~��m�=E{������ɾy_���[�)o�Q����o#o���~��Q�ę���N��f݁h`^�J ,0��^}�](�r����F=+ۤ���ث|�����f��D�I�z��xzPM[���oS��s\�9�����m�fh���~�c@�т1�*�ո�zB�q���r��)��N���?���h��5J�.���RDKgi���Я������*��p?�N�ʄ���*A�ۃKT��F�ZXXt���'�6?h�&����|�b���X�Ū�l�A'kL<� �il���.,��M��`�8��V�l�#�t��h�it�ĘBr��k���B��>��k���צ��s�4�,M�y���-�Q�]x��Ӽ�1�I��u2��J�X( ��/��1,3dg��'/f�=���v;֏M���z����?�^+�UW��}������/&52��W��kY������`2A��j0Ta^h��g�뗓��"�q������ܗѤ��Q��w���- ��b͒]Ku�֎��izX$;F0?N+��R��N(�����Y \� �>��n� 2�c���<��)��Px�qZ3�@�x��O�_�b2c���c��A�=a�D�p�����kp��}�8�ڼ�~#�JJy���:�Yz��t(��è�f���ا4�-����=�D�c�MyV��;�- ;��� �[Ԥ�Rds��1\��o�N�ϥ~��e��F�9kUg��'��YUߜ9�UUI$:����k���M����?A^��}z��H�F�#��_Z���.�k�} e���bF�f���6�<���3�mJ9"\���5Q�w����jќj{6t��,�<8t*���D-�g�+ϞK�y�|��3Z/p���$8�zWjʝF�!JIz�����ؓRh�0�[>`�5�<C{�6q���\����Kx��B{{��\'�R���"<�>�����U���y�����:�p����_¼���E��Bx�%�=�j�ֲ�o�\3��1]^�B��9\%Y[C���{�]���#;~u�h6֖� `��c���'U���s���<�£�5k����&p���W�b(V� tH��e�=��e�6ɀ�=j��$gۓ\�b��9�GZގ'\�q�_)����;��,�� �����rX)�Ìg;���6�{�ZbG/�r9F��-m���e`��Z�6��B�ڥ��2�b�ml�H��ּ�F/�IXm�����֯G��rjKXI�a��M ��"�y��m��$��+̗<s�V�0���[l�`���5T�J02��D���(����~*�PG9Ϯx�yg���G-n+��\c?�X��� �� L6x��"T~���d���`n3T�v>�m�yg���~�UBn,V��㩩���C��:���JF���ST�.%�p�I����r�=Ȫ��p�yǭ\����z]��d5a��@�zRH����=��$j=�{t�UsX���)�>=H��N;K;���Ts��]�nK�9�H0� �(��QQ�') �!�qX~ �l�zV�� �Q�ʤ��$�ʒ��r��>,���Rg�'�OP��Tl���J���OV�̥�A�zW�hSF\� ���Z�\&aNqT�F3��v�T ���Z<v�y�wd���7�er��\�'�G�y�� w��3�k�1�l�tc�P�H=y��D�3�$=y�&kY�9����rs��u^ԚX�ҼlV6扴d�Dr]2��s�=�f�j�b�j���R��.O^x5�2��e?C�J�@89�21�ӣ#�n�)!ܭ5�Ex_±�M(0,��tx�!��M�^TQiE�.yw��8��c�<�����uar�|�$�C�+��>9���\���8�� }3�W���S��e�2�5-O�q$%Y���AZȾ�g��(�r���x�óZH�VQ�XW��\eݱy�X��+�_W��*��j�:�IYnw?�[4�b�|q�z��mZ�sdu�:ׂ趍��wێ�u����4l��J��_;�e4�N���U �Q��l��I7�b��Uu�����8�NJ!������u�S�eW�G˃���O_ S��U�-O��;����\�?Z�%���zzUYo�G$ ���*Z���JLВ^5μ��ֱ�5^r?�R}Kg��J������맃���^*�dUY��N5�\�|��+�� ��}���q$#�;�eϩ�\j`��`��)�0x��a<�7�';��1�j� �O��j%��MA-ӑSW���J��jc�����T�����1֗�����:�rk�ɽM,W��<cFg#�U��B�~��#c=r+�RԤ��/��qǿ�~l��zԨp�u5���ƿ�T�`q\������n��v�Uo-ׁ�zW<��X��xω<=��¼�ľ� X������5�(2��'ڸ�hK e)�ڽ,�5�r�r��>|���6 ���עx��;w4)�W���|�W��}� Ѻg�8��'�J3��i�[�S��u�;�c�����j�y��S� �qK�8��W3'���]��Zϒ{�:�nl�h�C��y�g$��mXR9���'wg��h�^'�|��\E���_*N�O��_J�w��(��m��)��� �ֿ6�z��s�ŭW�7�Y�=ņ�'���W�q/��ӕ|��w�+��˒���g�FEބT#�8����^;ӵ�6;�k��]s���B��(e�&� �LF[[��#��u�M^"�jW�U{�PF�'�J׆���(z�^e�p������� � �vg2���f�6��֙n�eU�eNI�n������Ed][�10G�^S���ɤh��Z�λ��w4�>S�s�ެ����f0s�va��5nK���(�V;��zR!HAc�@�&��/���#$㯭g�z��DɁ��z��i��$f��]�m���`�Y�)<V����)��ÒA�+]��̹�$�V���t��ө�vl��1�G���Q[�ۀy�ޙ�K�4Y`pzg�kB�5�>��g*z�r��I���=����c[1�$�A�W��jv�Ԟ:�5��i�a*��C��t��>Te�Ы\�}[I3����:o�fK�\�p����z��8��%���䯯�\us�[�Si8$�__�ͩՏ�#)R��~���GA���_�-j�%������"��܂6���L��v�(�H�NN�<^�r+jp��Ԟ�Bђ��V=֟$��{���W����`)���5#i�� �g F1���ׯǓK+�J�Y���7�$�&3�z�V�[8ÉH�S�G���Ro �mD�|q�u x����h� bwdu��gVw�9��>郡��A;��$��V// ��v�ǎ3��/Cd�8�r�S� ���jZΫ�[fp3�5�<+w��F�$�b�Ά���A �&��SJ:��3�1��4w�T\)~2��rK}6�b�i�C�ּ�ⓧ%Ktw�o�9ltzo����7L�w��Kkr�F9���+cJ֡��#���a�!v�N��+�'��s>s�F=i7�ۜ6��:ֲ�&�2yoN���x��j�`���c��*�+B�3Z��^���bA���oE��q���c�*嘑�ʮ���6��5�:s���%ٜ���_�� U�����3��ji�3��u�>��J� ����54>��HWE|}�e�k�˳J�Vz�i�_t��ú����ı�������ҽ���7z^� +�����6�m$[���'�|� �~�ֳuM_O��d�UP�r�k��q���,��9����=O �g�%�֥%�(o�O&���z��Wh��������w�7���}����4��Qx��5��Cg]�Hu#���o��<eZVc�J���Y�[���"�#��T**vc֯[��#sԊҳ�v���dW�W�-�記�{DR�I�Mji�O$���ּvj���W,m�r��W�_)��ɒ-��c��SD� ���ui��|���+=��~Y��k΄��؉�P�)� ���3�9��5H9ws����M !]�GAMU�zzU��p�ҡ��A8�~�.I�3{��>������#��x�����<�{ԩ;�į�A�^��,[��ք鞣���s� ���V�wz�n�-���Zx����x����_�TB]�l��;ӕ6�h"��;�sm�@w��)8�{�&�r�c����Dب﵈ �LT�Sd�x�pj)�1��bm�G~9��U�5e�l=�>�Yd$��zR�(�����A�����U�܇s��'�zT��� ǧcP� ��� �8���]I�B$;���)�G���8�y���[�����6��M�9��'�ŗ�H�(�=3�ӊx=䓓�m4��̓�j��t՝[`��i�#��]��=8ǭTC�'� z�FY��+���6�ʜ�@q�ϭ}we��<Q�t�61�Fs��\o(ST�j�%E7̎[N��w��q���0[�o���\�����|�Gsx��kpIU��dd���EJ3���tÙ-���Y�P40�y�Sh�&�W��+�z����XX�`��ֹ��I����Z7Z�t�9狄]��t�R9C8 �5�V\�:W���w�u���1685����]�}���e��J�:)�SWF�g�9*r)���4F ����64' cp��*�VE�^{~v���naӡ��K�[�x�C��6���^k���y"�ֽ�U$è��[N��{�p�ڔe�.*[�;�C>�>��;�_��)�m[���N�ڽOž�YT+�Ha�W���E����`�OB~W��5�\U*�_��e �3m�o-/L���� 9� w��M5��pp3\"Z��+)a���W �H�hF=�����U'$�(���ެ6�1��ԙ�����ENrǯ�=b�����j�- ��z�į������I�D������+͝j�~�7QKb#���L9jG�{f�lf��h`�zG�#ڤ�<�>���!PI�~�"�#ڜ�v������ �9��*�J���}钐W�+F#>��Ef��@��s�<+>Q��'�i�R#��V��~�ZDГ��R��P�\TA��"�Q��i�9<v�M�H�yhp;q�V��������ny�=�����Ұ�.b��yf��,�����\��,%S8��4���NNzW/� xbW Ҟ_=v4�e��>��\ZJŇ��IT� �'�z�?xy][�Z��ok+���.�ሊ�S��lr�0~�� ��A�:�&W#�G���^���b�2���>���N>��>�i��{��Vd�*H���I$���fMjT���u�v��H�ɬ}B���=�ֽ���_mK? �{�x3RI�������= }�#�&��8�\��� vé���H�gj��P�����q�i��C�s^N<�r\�:?�+�TþW�OֽR���E ���{3y���k�٫����K֥[{�~c����_XxG�V���/�� b�+��Y5o���{�%����v�kI���N�_��R��Y�S�c[�ƛ�2,؎���c�ʥJ�ȭ�)EsCX2�Q?S�Ԭ�"!�L�]��U���s�[r;�=k/R� �A�;�i��Y��ި��Z2���:�+\!l��i�.�lUdF��%kc���y� �˅H�3��v*ج]x���N��ct"�.�h�^Q��E�K�R���3�0��^�m�Z�[y�c��V>��-?N��2(^�M},��eH)c+Z=�����N�֦.��}>�>}@����Ȯ���ak*�5)�i�6������nf�L�E��ML��7N*��6�j�y�'�i���U2��)����_��qP��Gp؍�p:�+�f���v:QN����'�b�/t���e��Q����S0$|�?��BZ���=�J�V�]�]5<�V��A�o���܊��t����ك �W��^���y�S+������ ����:ׯG4��}Edx��Y6�NO´��V2[��`dq�����W9�7���Y�h1y�X�0;/z�qJ[hO�L�/e�Kb�9�Bs�Z�|]����73!<�-�}oƽZ}��y��r�����=�gR�H�^�=�eI$sT����Ûhɚ�F���}��� xb�5D�C��<�+��7iW�u�:M�i��xW�iV�;�ԅ��;��v��p�+�!������-v��2�)�v��Rh�.�L!E���$��Gy^h���q���M�|C�9��.-��1U�?�r6�/��;��/R2rK)��8GMJU*%�4�މE������?-ʎ�m'@�� ҩdS������;�=�i#������^���"EhX��G�7�ʂr�f��q���$�{�����%�:��y����K�f�e8;pzW#��Z�fF�#Pr3����*�xע�9$�-f_�&p 2� �OS���m.�9Yn6�쫜V���\��Gl�;�5q0�[�F!�1��]��"�l-�Б�sUgҿz0��$֦�c(E'�炼 䯉��Y�:��3Y�/`<��y��h�k�-ё�g�,�HDM+:�����=�Pv =}*���ob��������x���k��m�~&�m7EK^[�+i!(�f���5f d�q�\8�ƽk���%�^@b��qO��B��AVs�9�:���w�כI�q��j�������ۦ%��x�Gb�rR�@'��˟֏���s�j=�D<�=*��|��B[���y;�z��Q�#�8?Qڤ�������iYϕ��:;U$ �B��i��9+���H#2��>�b�!C8��З@#��AS�|TWH�,3��B����/��L�c4���=�8PNx<S�)�ps��( ��s���3��#�j���ЌDž���<_6W?_J��I�jI�� �'�OjҜ�����:��J��Q�@�m�cJ�)N�k@��b ���B��H�h�2 <w�I��S�f2 :�嘳�q������� �2�G�I�!��(AQB�yS�g�sPI!B����H!�'�]�z丗q�,?���oC�j��$g9��1#�zWe�"�6���q���D#=�Zb��rq�s�D�KV���b˔ ��q֡\��z�IA8baRyJ�l���r��&G �I�?J�l�6����21��@y*Jt�3�~��#�0I8�(�5˵�''9\���^��e��j�卼�C����a1�p��Tg(��3�CFԾы�gO*y�� xgK��gk<H'ֽ�ƾ�XT�I�A�^emuu�j��Kn��Y�7�+�h��Ҵ4h�xhBWz�Əl��@ٷ.s���/0��F�2;f���� ��`#�@==���.���6��_Z��Щ* w��9.g�GMiU�d�u�[J ����:W���X�O�B�QI��hxG����=x���TUD_�\ܧ�$t�)�n{���Ƴ�j�@GE ���W �����Λ��4ܶ���F�Y� �@���pv�l����������+�&�I��"�_xr���`�u���r8�j�qt�F+J]9y���{ ʃ �u���� �����S�㸉����%�h�+ͭr��Ͻ{q�NQI����I���t�J�lE�y^M/nO�yΚD\��ZV��9��)�� ��V2�a�:?¢u�ޭH0{��U�<������`�sLb���֙,�!*y��N�F���k �Hv4g�D'$q�N�x��s����R֝e�7˜ܱ���gp���rra8��G0��VY*O"��Ť����3��s�Z��teR������{4�길s����x�vgrC�qڪ���8�_��W)���yrQ��c�>��3��J��4jP���F��IN<�P�G�i�N}=ix���=�4��)$��u�� �Fр8�{��@Y@ ?�X����H����8�;U�.�c�J�Y���Ȥ~5y�=���g�q�����l�u�0c�ּ��������Bx�Ұu�$H� y�;W,=�\�٪��g�~+����##���a�&;����g��ާ|Y8����L��G+�k�r�����2�B���IەZ�܌߮{V��g5��Y1����c$�ǥ}$$���9'>���j���q�)�O֔I�#�j�N��٫3Q�ާ����{d�����Ԍ�Y�� ���]�q-h�*�[����[iVH����YN=���?g���z5�O�'f�!c�'���x�֜��8�����z ��.�f�wG���C ka�x���i��ZtN���"���<���A��-l����/�_��j)I%ƘXn��c����O��?���n�.��Xr3ʟB=k�<��p��_�0�ߪ_�?�~�ZX��%�����2c�)$un���w��k[MN�<x9���wTҦ�r�IL�R�CG�IsE����sW�� h��5CH��J���� �U�p�XH@0:sTntԹ�������^Lq5p�o ѷ*j�n���cme+!#��QX'MIZ�F��gl�O�J���̅�aЎ����$�a�;X ��fu1�1�|��F���KA��فө5�y�=���aOr+����#<�Q �z�=��u��<�s�s����*t#V+Fs,R��^��w]���eF���s�V��l��''���Wa�x�Z�+j,����r�{ ��|1oyڅ�L�����W*� �vo���v����=���#��+�3+BB�'�� \h�r�h��@���k�U�HHَ;����0s��]�n�c@�kx��xUV�xc���V�\�hN�98*娎4 ��Ҹ-(���I4Q�8�����ǻ����S=�i s��=ˋ~�#���[����� ͍�px��Si��%��=��m��FT��s�V,�� f�R��ؖr�%�#�/].��)�E��l��Gp��+���e�<�J��% ��~c�ZΥV������˿�-32��zUV�-�f � vSG��������$����\�9�5���Rl89��W%�6�5wH�d$nPz��t��Cg`�GEI�O�[�Ԝl�s6�ɤ;Af�N8�Zi�b%��V����}9���Bs�+*rv�fLzXvɄ*����H�Bb�,�Dl�' �a����Xc���M��pԥ ����<p�Z�G���Ҧ�v��h�b�𡐮�c����>V��C&���}��S�L0�ɩhc�Gz7��p��js��P�+M #�E��}���0G�e�wjI`䍀��s\��oI�T�eo�� [gm�X�ϭ8�Rzc؊��4���<`���^��{(?{̗$��z�����Ғ4@�scֹ�s�_ض�MA����+��G����Q4�2!����溨����Px����[E�gU�z��� >ؙ�X��e5ok�|V[C!�^Q������|<�u5C�j3̧ƿ"7��z�'������Z�M�����B��dQF|�f�����c���/,�I�,8�fiӴ�h�V��:���I��R�� ^@��ul$� 1~�j謗B&��~u;\ �P?¡��<䢶\ K���{f��$���1����j��N�@�灊Զ���ԃQ]���e�OOJ�kj�bp� �jq_h�'�zU��*��c�@�Q<K ��L���>��A�bi�̅���4���B}GL��Dȯ'�psɥ'���z�AS��p9��?ҩ:���G�K^}�uS��{?-wO�cP��ё��U�%8�[�5�?PhsR�#�@��4�����q֧�Dю0Gh�kv=�.T���Q�xw�Ӄ��@�zw��BG=��Nq�9�JQz�UQ��?p ��?Ҡ�\��j�Z7��!�3�vЫ%����F˓�G�G7+�A4�0�G!��Z��B�ƽ8��d�i-�;`����8-�Ԧ2 ��8�;����J�O[H����ңe�/��>H�9�}i��W���i�,$>}0i�G'�1�?C����*Ϟ��08����.�= �²�b�F1���@�b�B�E��� �����09�Z��(�*z�ލyҒ���ՙ��\�W�c�#c8r8a]�/tōLL�O8�H���/����f��W�{����J������V�~[�r����~$ 2�Ŋ2m!Nz���!�/��!���J���M_��'��gf��mf�k��=����"�s����nS����P|���F�Gͥ�_-n���]�<���r9�^�m�[�`;�^I����V�DvEI����K�!w3���^.[�Vl�-��R��� ��*g%c ��ןi�#\,bSϩ�]���C{�@n�Z�BQE&_��7^}(x��F;3M�2n��>9�������Q���# ���zܽ�2��:}Mo�+�~Y�U�C(%T|�J��pad�beʀ:���^8i.$�@��x��j��,0��@I'�OҘ.<���F�� �Y��d�09=�P�)��Z��3n�z��X}�X�)q���k����FK���˞�umb-�!c���p*���!���{ܴ1���Bۊ�k��-��8!P���S[��HYpy������R��+�w�_C���Nm6>N�n�8<`��� �\P��}Ȭ��oݼ|��1t5��A$�0:��W���#-���'uv�C�ߕ Е��� ty��V�Ϊ���y�j�s����j��7�u{x<ƶ0�8vC��5�e�����$�k��%J ��g�[��� ݼ���dY_����^O?����n.w��Է��_R����Z�V�W��:��Tz<res�=j\�ǽai:�H2y���pW=�\Q��)��'�8$�I%�\qL�`Sѫh�L� �'9�ޥ��b ��L@H�~�4i�Z�:�4 �go�F���ZU��zƐ���8��Eӑ�I�W �����w��z��Q�Va���4�1N��xu�W%{t�z{��|��[$�F��¥���'c���Spf��p�k˵�&{)\m�ӎ+�ohQJ���x��ƾ��m��cӥ{y^y�/gXs�����f03�5�� pk��g��l'mѐ��K��V#�y�)�.�W<��ޕ�#�SM��G48�=1�V��2H��$j�V$c��g<���j�u��5JMl'��-�.H�kc��"ռ�-��r���ȿ�O�����OQX���&p���{/�EӨ��f3�h������w��x�� ��a��bH�������X���Y�#=~������������x�RX�������R����|k8�BBC|N����ߥ|6c�x��r��>�=�O�GE,}O�WݗF}w�i3X]����*��E��Ñ��m�C��Q�o2L�r�sY�6�d;��2y�Q�+��X�>�ь'i�?�12�=��P�xI��N���n�$ �X�S)dSt'����'���itc���@�y�]�����f�Q֚��7˓�nq���T��s|������"�K�4:�*¹8����-Fu_*�} P����3��څ���l�2�ؽ����Dž>!��#�Iac�����_X�n���\��Kd�ǯ�����e�o���Ť�Q"�I 9l�E}�_SK ��Sz;�v�ʧ-�<���ݽ��WJ��i�vxj��WͶ�����H�@�֪�6�;i����z܍uxm�9*��^�,l��h�!�=3^N?6���B\˪kF����]���|<���ң��$�W�'��ݗt��>��i܄U��1�q��j��"Ep#U�X���W��Y�u5Dp$KB�{��ķ���sY���B8�_j�k���"L�Om�2��Y��%�,��[�2s����ȹ,�V��l�<,˅��"���ě��:t��Ӱ�жoC�.T�s�S.��С�� UYeh�ס��-Yng�3����m4�[���eg�d䓃K{|��j+1=��U+I0%��z� J�'�]A2���hs��lV���]d,d��{U��-�N�#c���X� ���6����ܕ����R�`�^�����x�� '��,ac?9%{��rK1\aOC���l�JI�@����Q��Q�E��t���l�"�d�$�5�I���H��"�G���t��+��jd���ꧭU�$pŎ���jX�o-�� �9�4��!�sS����B5S7�@�S^�t�6<���3 �Z��i!WpAlk2�D��,hZX� 7<�]���Ju�P ��z�7p�Xt �V�������ϧJ�é�Z���t�Ae"\��=}��|'��]ޛYeOF|g7Nk��;�+��e���ۏ)T�ETR��x?�_�R�D���E+����2BŃz���W�uN�[4 �y�o�M/�����_��V�9S����yh�-��sC�3�.�����l��K�I"w���k��<=ii5�B��rۺY�&x/eU[�=�WC(ӌd�5��� ��FA#�Sȉ�"��y��cV��@f�o+8A�X�ص��$'�p��׃V�t����kԺH�9����H�l���k~)�t˜�^E�k��'�m�����L�-���o��1��/goA9�;�Ԥ�[��<W3u�KI��t�p@k��Ǟ9���������1Z��w� ���'>Zb���J8t卨��wr%M��ä�����{g�j]���q�;��c���Ö�� d!~�3d���[Y��q>��+�ӣ�h�2̸��p���#H�,q�Ҥ��W! �=A�r�43+�` ݿ �P��B� #�Hw��<V{بfdl�:��v���@�d1Q�6�2 D����%V�W#�����nBwթj�Q+"��pGze�0K�@��GsZs$��mw=�2� Oz``�B3�j_=B4X�G�&�� +IQ|��0�r[��P;U�yc��y"��X�ц�u�-�*�br8j�� �̤�1烎��fU��=�%�9�,a�W�XX7Dh9����(�.:� �kr��y���H����z�T �\������}QMɥt%�a���ޡc!L�~OJ�ei3m�i����Lq�=�]*����&��{�ќ���֠�)$�d1�S�ӀW�+ХZ2Vd5f0Jd����Xd�(=�4���أ'���SԈF%9���>��'��N����"�Ov4��.�8��n�q��%(ى&GU �9����8#�Rf��(lg��M 0Gj�s_�:.r����K�r�w��D��V�=�Ւ��g�瞕��ut#ʿho��Fk�X��n|� ����z�o��j�[Xܟ.T�H'�}1_N�ZJ]F�����5�_>#�ږ�����Ὀ���s*P��՝����9�ӓ�<~h�O ��6���6R�H��8�j?�7)V���>��E���q������5*´��n���H�#�ڽ�O��J3���i�*w����A�C��:��u@v�ܙ������?���7��3��Ҹ�v��]Z[;g(\p:s���I��+8���U��-���SJ�^%ZO�"��sj��zׂ�x��*)������4j`�o"�};M�����P{qڴ4�z�y�-09��k⤣Q�SZ��sE�kHj�[��1�D�C2 ��8����O9�L^��ڽӢ�g>��I�!�q[Z�.�q��W�[2K�I8�[ԃ汊:k;�p �;�ՠ��z�%�_*���GJش��;9隨Yn��v����EY�<�J���dA�:u&��9"��Z�S���<Q[��ٕq����/���R3�#�VY�$`��;�P��c��=�kԩ�ל=������SO���|��{Ka���~�z<_�{����(�_gNT��{ݥ������*E`(g�� ����r`����N�`��%)?}+ߡ�¤ꤖ���zZ�:��B�He1�H��Z�:��z4�{Z]X��n68��߇j�6�a�����C�; 9��b�� �,�g~�Zۇ+�%��;]hן�qѨ���'������)��D�U��vA9�u�:���5�ʓ�@�z��?<3���h���qm���`nn��y��:]�Z�V���$�h6�����05�R�f���x ֵ��i�鎕]��<&p9Vt�B;�X���_ ��+Gs��:tUe?��O��r{�5���tH ��8�Yz�]ɧ��2��������d�[�Ոr3�s�U���±t>8�+�ޠ�{Ӊ�Һ��DXcI�g�K�s��"���I#aA�=�,��,4�@늭5�<qQ� ��Up��'�L�\i�A/s�Y:Ɛ%��zr+I$d#8�jF�p��< �8�jRmU�o %�,�B㌊��>kVy"^�r+�Mv��V;zW����$��ߗfu0sP��M%Qj|�so$-�R�8 �s���N��v� ;k�5n-ܬ�Þ�b�@��)ׂ��զ�ƹÞ����:�*���0�5$3�<�_+0RM��7/�lv�m^�F�ҷU��1�_Zk���US���MJ*j����)�Y~�Q���s^��1I��\iQ�w�^�sh�`%ѝ����_�{s��<��#0 䖒�{z��j����$�<e�Ũiwq\E*�VF�3�#���z��|Nj�s�^l_2�9�ܞ��>�>�� ��7��/g_)z�~y�`�����Wu��7p��`����H�k���1����/���>&h� �X��A���@�3��=�w�\B"�l}�G#��_�P�K���gZ�Mt���fz�7���)j����i��t5��[�m��A$|����y�c�ȸé���Y��Gn�n�x���x��ԡ.]≋}NO��N�8��ݹ$�ǿ5j�kg���!!~V@���qt�OH���Y�\����iڎ��g7�P�� G*;�k[� 2�ܸ/����*��$v�����;S���+��3pP���+i�Q2FB��J˒Uڕ{m绸���ZcZ��t�ev�q�I��k�xO����ʼ�����:�����I��6��a�\�� B݀���6C��e:|������L�^��;�jz��{ci2��_�9?C�T`�4��E��oTH�w��U���M?D�*x�9��v�k݃)��m���Ğ�o����KT!���]��`8�Z� ��/��.��w��x�w�[����[�k�/����V�i����6�����p�����V����o��h�6��?u��߽z�н����%G$�_=��U�Ut�h��=� cQI^$֓��pf(r~@8?�"�!��S�b*��)-�C���?N��۬k+��9A��i�2I_B�Z��9v���_J��e*����*cF�2q��*�ݫE ��8<u�Q�5�����Uv�?U�X�ћv�A��T(e��8�G���;��4�����ΩM5il��V`_BU��M�0L���:U���a��2+8�=sWeӘZ�yc�H��#ZjK`�+�n���p��4�D�#�70"�Ոj�8db;��+��ڟ�e45U���r k<�Wv���_�W/\�61���:pj��,"�q�� �5�6������-gP�hbP����TqZ�-h�mtkZ[��h�l��;�Ѿ�� 4��9-���2���;�y�ߋ<?kq9��8�����+�x�O kͤ�e.�[�]��~�(��<1ޡo�eC0�Z�� �V�S�U�d2��WA����/�XZ��c4V���ku$�L�l<g��~m�%���gҸ����:㬷�]L[�Ff@CZz�ͧ�çi�|�j6��Ib>�����+}KZ�ݵ{��}�~u�ڶU焅��J_e����-y�W��/-b}^��)B�2��[kIs�9���= y���ij�^[��(�4en�l�O�I��\]�WO��D�a���=�� �8T��a���z_R���Q٣o�ʪJ�d���jƏrQLs($wR��k*�f�⥷��7�DPzW��ۤ�&��ƥ�7��&De'<��>%�TԼ%t|7*�z���h��譮QgU$�l��$Ur�яZ�2l�xi�R��J�E+�?.�ʬn����|C�/��4�IJ뺋��1�X��a��/O�^��_�~��I6��;��?��j��wK���H���sܙn'��N��Q��c��n����UFr���k�����vV�IZ�O�ȚtaM]��rO�z~���т8�^ X��G�?x��a�y���/�W-oi:�>��Ͽ^��.���=m�m_b7~=������S�5�c�h�����-D�FY�^��+������\��l�i�mD�$��ph~'�D���U��A#�<W�� �s}�x���V۱�Ȥ���֘��-��n�G:�"���B2�'����^��K9�MJ�Kq/�-����Z2η�a��RO>ճ�H��;2�عB1��x����o�i�n���T�H烏C^m,� �_�*JkxK}<�c�� �-n��-3�K��H㚷4~dr�˔q�z�t����WV�� G~+R�a�R͕!s�L�ׄ��:�Y�͟r���+yM�������MAB1��?�I��#�8a��95^K��Ao��1��K}ll�y����>��1&/8�^�o&�[1Glg��²�o�}Am�Trp���UүU'l.T�4�b*�'�*+��[��u8��k����afG_�IɮZ��2��A�D�ݗ�����a*VNi�n�/�m�s��b��3��VfhR����}}���qey����C.��`�o�8�_� �"9��/3�R)bp�hM)�__'�����B��B@q�QKi2G8�� %��K� }���k9���@FNq�@Ὠ�Q�o�FK�B�L� ��ױ�-\E�0���3i��1�����o ��D�u�k�[uCL��N\�����ԟh�N�Q�~~�Ka$ѥ�!I��a�5^X�N�����W �Z'�h."ap���^�hܫ�iT~�CU�����8�g�ǟ�֟E{'A���uG�d�%�I�#������F�2}�>�~�G�9V�9�j�#�s�=k����c=��˵�P ��Z(� ]��"��t��8���I���gg�J�NIj&6kL#I���i�Qٱ��6��qZXK$/�`Y�C-�߱�X�Wv�^e˗�x���8<�m�R������Ef ���l�t�ks�{ҩTIY�+���gv��&�n�X6|>���Y��v2ь����J��;u�ڡH��3� ��"����� 4�A�=ј��mbIl�aI����;7D���㚞���6 c'��;�M��܍�����MsJu\��ߨլs�-ѧ�_�L�6VE�:q\��"W���� 8ʨ���^���e��io�D���#+� q���=k��2��N)�QТ�,�Y�*;��R?�\�S�����Ck9AL�ՙ�E���T������Q��JòG�\�u9ǥs����9g-t����ҡ�����]�Z��28]J�U��H�x�� ���#��=k�����p���^-dg=x�N] �����*�QSt`�M%�������]���`U.d�f{)8������H��WCn0�G,.sE��~�㹭�� ՟�$�B�����V��x��M����>T)©��5��>[�S��y�^Ev��\f#�6��o�ʖ�'̖�����Ia����_��D�YȊS��p m]x-��n����.Gj������0[ɤ��ۇ���Ϩ#�W�uqiקd��w�}���B��.��b���E�FrMZ�s�k~�]gQ�͉lQ����5�������!Ӣ�Im�D�9*���Wq��V�N�x.A��e*~�ن��,�a1��To���:lcR������I�x_��:{�.�l�\�v���W�����֟�<�!q��f���w���]=ũy���6���O�ɚ��wW���I c�]�J�S�'�+�vv'.UT�ͷ�W��o����K������b��"�`���!�Yu�X$ #ȣ���v����GJ�b�,Sl�9>T�#���vI]�~������T��jo��[���)P�e�YVw� �H���n�՝4��i s�懛�9�����*�U��o���O��s*�b�2�Q��)��&��jn�ڣ�7f�g� ���V#�ld)���L��횱�M�q�0*���qڈ������<����� ;JukZ+X����S�z{ �Q�%���R��j�w�W���y����I!@ǽK���se���� ���� ����f��-�3ǭ}Oqf�G�Q��s"��s�@ ��*1X �Qw]�TԴ��lj�9u��0�"N8��'�"���>!�+����^)��Md�������e��,T--$s��������x�QR��N�b��H���T|�G�^�q�����/�FA9�M>r� �j��~_����=�VOsx���u�v$*�GL��.�%%w`q^�so�w/8�O�D�zW�CF�u|�+�r��C��rWE������$�?;�c_r~ʟ����8m�7����*HN"�>�OC���3_%&�l�T�i#+ �������$���������%��5�o�����Gu��9��-e�ayeO"S�Iʧ|�u��`�堊v�|J���x��/� �����M�"�a� �<��~�����;Ho�$���|I�|��9w�z�{VKˀ��rݸ���v~�z�G������Fu�՝�Bt泸l������y!��H���J�CD2=�h�7F@�B"�� �X�;q�O�R �L����(TB�U�wc��J6�[����� 霆�� 'DmSC����Z�?����xz��U�� G�r�4�r.&��v�ϥt�[��-"�Iן���dq����X�&�m�.��B5��Vh�k�GM���?J��x�~��?�E6s_���t�쥺7R��l���Vg8i���^A����G�m9>�%ׯ��M�܊#�����������{-��x���ca�1%�}wJj�`�?���[R6��_��E�� ~�$e�{W�`�T���H%t��j�oF��~G<��a._D|��|<���^�/�g�Y�ڀ�"�^��^����b���`��.� $P���b�x�b����������a��]��д�R҃����M�:�Z|9��BO�Eu˫�ic{�=X���냱�rFW#���b�ڼai 4䮔Z�/V�{���~f4�уr�o���P���i��W[[@a]���e�by����W���[�Y �ܳ� y5����'x3��-�hڍό�L�^�([H�����d�=9�;ms���]d�S�,�XiWH����̌�ؓ�ڸh�LJ�������=m��/3I��,U���>���Ή���Zkq�R�B*�%@��z_"Y/��^䑹�����*����^�m-o��X���KL�FN[��zχ�G���s����o��ps_+��P�Y�����\d�S{�\�; U�#F���z՛;��i�o0�"Sz��Q���f���)�\)�u@[���w릺xg��A�(,�|��ָm(��b�cma����veH���__ґ�G��;'��ܼ}��O�����hd�&��G�K�H�p��F�w^u�;�H@�-xH��]�f�� v�J�ZN ��;T��"�7&KQ�1D��t���o�L�J�]��YO��'���.ʤ�~i,�vqQ&企�Ihm&������8������sŞ*{"�����fD�@���� ��BӮJxa��(��&ID�cW���;��{X<Ƶ6�5x�f�����3p��]�.x�A����M���R�@��?�� �NsZ>��� ;�ڏ�&�A;fH����=��J�Q��~��Q��vzv��e& ���]��'Ҽ��ƾ2�ĺ�����V������o�S���W�a�⾖�g�b0|�%ӷٽ��-].��u�����ŢxP�h>�<�咅Gȸ�< �Þ7�<E�O� ol���G�q�8��1ֲ����F�vm�їhFE �ێ+�����xB]?C��U%s$���B�'9F@��y0p�^ӝ�S�;�g��n�F�3��e�����{)�i��O8��}j���E��1r,x"C�k�?fmg^֧��t?���e�B�4v�'�zٵ��o��Y!��x�;)�ڼl������SH�eq�6B�̆4S�n#-�=��V��Z^ImkTۜm�֛-�=��d��A�60�2q�jh��Sky2�p�nT�s݇q^=�����jCqe$rY�$�d��'�皒mj��\y����d���"(�$8b���+ۜU�9���e$[�m B�!%�N1��i�i6 �{��k�ib��b���3��ȱJ�\)�2q�P���iա��$XZ$��è4Zj���-��:a�����)�8I5x�����^K�Gez���Ź������kSͥ�E�A=����{�{�-�$}��ОĞ����j��^,ik8�R��-���bgJΒ����Wg��)Eu>_���w�ZO��u�hwr��!|ϳ=��z'�~x7@�ǫ}�Ry���I��Np+�=:�][v{[�B0VU ����_"�V��-��ݥ��u�>��0G�5��h�Q�eJik���-$�>��Nqm�����m.�3�Ζ\F�`>Z��#����x��~�f��w�������|�����/�O�u� Χ~�0��d�$�Ϛ��������|_���y%^m��O}���T��7����אJu����y���3\���MZ�i��%,~_�]�X��'�^�O���={�O;0#2�)R�ڽ��گ��j�Z�ڵ��ƙ7�nu�?��f� /ĺ6�f�C�,5(�|��8QȪ�gUp)��t��RN�����j;�|�]>��Z����`�6<���d�-���op�Y\?�k��F����M�of�C[���H�*SӚ�� �/Ҧ�s�[� �wh�\�pG_��+楆��j��g�����7{��K4��U]�kn�L��߇� �X��)�M�$���������.�'��6�ď$�<�,W�h�a���k����u��v���#�cǠ�|^�Z��kfm'����W������I�����V|p?3^1�4�=ֱ�]x����%��֗.U��^��W��@�lL�F ��s�"�q���S��hMD��ռ�^�=:Wv[�a��*���v����W�~��N�sSOn��.��қ{��H�IY��#�����S��K�& �4� �7jK�ۂA?�h�� �����ڶ�ckq���D$0zz���s�|�\^Y�"�K{k!�B�a��l(�)�yi��->f�����lL��H�eۿ�1��o��Ɵ4�Oğd����ɍcm�����Q���їLmJ�p�g<W�]k:������� ��iV("�r� ?(f��ڽF�������xn�@>����ܜ�;V��T�B�6|��8��I�j�+�J|�N���Qs,v�[*�1���W`����lL�*��W�jz���i7����˵�.�|�� �����4�Y��Y������ ��x%N�e�Nj�{7�6�U;Ǫ�.f��a�4r#���|qQ�mm2�����UkSHot�G�p��Z�ep�G�c�,�Yv��}�ϔ�Q[f^�E{��k$L�7F��Y�,�yf��A��V5���WgF �dϖv{)�11�q�� t䖣E�{h� ���$<`�~ƣ�l�-?u:�bx�'�X[�Ɯ�G+�'��J}��-��^���cNU}�[s�kU�z���ZPȒ�J�$q��S�� Ў#rzU�R��[�w�$����k ���&³��S�Ӻ�VM��lnX��ڠ���)��)/�#��y��w�ޥ�P���YT����t+��[!�ږ仂�-�A�wƪǨ�Ӵ(ꧮ 6�UJp��2z�. ��X�Q�7^��mx�w�!�d�u�h?{�P�,����R�ǯZd�y*#�0RF%�*�<��#�R�L�ֲJJ��-�-m��G�_���k{�m�"m9QLO��\Π1���{~:�"�]]���oL�k�ݻ��E�Tt8�9�zE�`����jh��3�2����zT� V����Ϳ�ʔ��+�s,d�T�QՇ_ǡ�-<��]���֭9!�d���0��c��� oen�Ky2'd�늇~� 4G�:}��t� �>�W?�4=�-�o�8<��j<M�5�$�B�~wn��/�l�c�Y�n)��y�ש��NMID�O��#������V���L *��ZR�S@N_�u�r����3g8 �F���� ���>��9��2*{���I6_����!�9$���r�p:Sm��0���]��J�����O#��9��R�s�d�1%H�e��i�-n��0���Q�W����G���j(~��ǭy��#��ϵV����H8���y���#k=u�s��F�M�0�$��j^%7�m�&���Pk:��+���\>�ه8��%��̊���Px�c�ZЊ�F[�����31n.�l�|���#���I-��|��@Mqèj����O^+���g��9X���jK���q������Ie,�"(�9�>��L�-�h�M���o��Bn��<�I���*L�ԃ�z���omtԆU��W�ޯ/�<el��kLݶ��Y��x�S��[�z�a,]+�5�o�}�t�g�nt_<P�r�2�W�O���=�Y1��aE��ٖK�y<�һ� �KaH�AXέU.iue(�m&^~qOI@`0F Md�#'��*�V$�y5�����YE��3����7<�������cW<�O�85� vFm�T��p0:{R�t8�|F���=)�>H����|J���h�p0�q�ML9��涁�{h#���9a�zS�9P;��K�ݪ�q q��[U*N��O �~��.8����V�=�h�L�Z0~��9�LW��#v88�_�6ߙG<��D�tW)��r��6��;IB���o�/�k4���OOz�MZ��r$B1���`��Oݎ�q�x'�?��5�X�#��5��y�%C���fӌ*�MϟD�6�j��[�ǥ7Ěd�7��A8�P;*�_e�⤏6�Y� x�qQe뚬.�B*6�8'#�����*�4D���W���~c�����{�mP��>l����/{R'Y��Gy���q�+���Hk�������<?#b{~b��'��zn��z��B�;k-cvl$�v#%��ҡ���%�֏��^:�gt�~��:�>&xN/�7W�P� �<���y���+C7V��F�� 4k VePO;���8�~c��~x�xb�`@��rL7�甑{�~�������'�~0�bݢO�m��.������r���W�� ��j��F�p��5;�����p���cf�/��#[;Ֆ���PD��E/�}�'��=1�U�|�Aq5�0�2F�� ��r�eyaI��[�C�"�^??zx���h��~q��Qo��q=���M��L�6��Q�����c^}8үR�{>����:�N�|]k�x�K������O�˲Kf9f;���z�^+��Lje�\�c�R4���X_I��!�H�G�������}l���ʢ8�-NX��m�g玕WĚ,w��ԣ���i��F�;+!te�2�p�px��<ђ����F��k��U�-Պ^;�t��R�ݬ���ab����rGPs������!�D���pt�1-��P�VmG 8sܓ����j��Es�O%���s��1��YD� ���#0EI# N�PX��WC�k�U���=>x�p�,�Dm�˗��? a����z*�q�:o�I��NV�Y_{%�ϡ��g�X��&�ݬPCM�-��,���볢�!�0���I�{������m6��I}'K����G�c�C���c����R���iw��%�ѣ��巌�pG�M:��Ѵ�a�;a��I��q�ٰ�9�O��\��a�����u�t�� �FL�\XM"�fm�Qsn���y���#�;ֆ�"���oD���kx�}�f8*:��:L�,�[Eu�d��`�SׂOA���Q����g�Kf-$r��bX*���<d`��A�hk}��k���K�id����pT�'�֙;����Y��D8��I�_;�@=0*ͥ�bHn/<�R67����%�~�����Y�Cky�t�0D���A��B��^�G8���F��i����jf��ƛ��������Q�3��*�-��kv�&S.nsrGB)�*�\v��αL����X�ͽF�q����or"�[2[J�������?y�����Җ/��&\�R(�����t�o�x`~��s�)u��kr#l � ����`�1Ҫ���Z�o�%��Ei%��˅U��A8q�)�wP�I�S��A�#r�p� e���T}]����ȟ��D6q)g݀��<��;Ս:�Iy�[��� �IQ�C�(�9=j���k�O/����� F�� *���מ�S-�m�W2�����:,.�FJ���Ni�<˞����t7�| � ������l���3�}k����X|s��(��֭m��Z}�o�FRU9ݻ�q�t��7v��r�b"�#�6��Ē��q��zԏ�O=��[����8���dnnp ��߭u�k���n-�[�K?=V�Wv�ؙEJͫاo�]^i���C����^c�1��n"�G�^�jz�xg��,��Su���@*�>�\ú���4������0m$���i�q<i=��y1�o2X6�# 1Ϡ�� g^�WR�n??Ԩ����i� 8ŦCX�G�(�Uu8 �Юq�U���]$y�]����#(���p3���G���*A;���"<JN@�wU�з�]_*�����%X��hKGn�0 �^r۰s�X:Rs�w�ƞ�[kF�ӀY�II�hdi ���29�1�l��=(���7x���!ܶܯ��'ګ\�[�u�:��#���wDN�01 �q���8#�����q�ʲL6���.�p�pG8�֛�˫`��3��zlQ�e��_:�1�8'���{�v��+t��|% �8]�w���:M���-�Y����!������ps�Ѣ�Ac=�i�14P���A�|���m�8��7Br�İë�� ���d�vg[3�J���t#��w�Q\O+�nv�-��U}r:ԖWhЖ���X#��G���rN��u�,�[�{Ȏ�l�$��4���Ԑ9Rr8 �3MRӳ��oߨ���:��;��ZXA��e��J��3���o�N�6K<�r���!s�*yOU��U����[Z[(�a��&&l2���`s��S���Gu��M���`��q�$`g�Oҭ~���5濯/������K۷��7:\�����|��[����1p&����[ΉF����#�d^��wkk<w���f,�g��,��6�v.��-��Ko%��ct����#���:�x���)G�f�*��t�S��ݤ�B�t�;/�gXZJ���H��g?�~Q����W�%���m�k�w����O-�k��(�h��N �px���&�kIɳ��aq��w�H��ps��W3�'�V��n�Iv�&��.��[�e�����xe8�A�����k ^����.��m]?�;tR��Д�̝�o��_��#�|9����nԴK�m��;L��*�g�W�|Y�cm���x�������������|���a��J�t������ ��N�ke�2�VJ`��d��R����F�2�Ox��o�Ť�ۙ6������f��s��Ұ�����ߕ�G�NQ�G�oN�R�B��۶��_�9�/�i����'�r��Ev-�J)�$�����j��~%�xxlծlt�iiuB0S��X�w�=�]�˧xW�vb������F��Σw�zs�^ ����ڥܷ�u��'W>lP<�OBX�@���&�¬��L����՞ݴv/���M?[��}Ǟ~��|k,�?��o��:�[�n6yQ��{�O9�U����!�ugo}-��Z��*0̀���U��Ï;Zx�\��W��B�I�^��c�8.�8��|z��ivp%��B;A��,�8�Z۬�q��0?t��_����-�7����n�~��*��Z��<��h�{��R�-��E3ɷ�wpE2w��UY��"��r�|���� x���+��M��W���d���\��rƥס��������X�\�d�^X��o,��0`�l|х%]wV w�J�,FK��G��4��ӳ�wB�9;&i�����>��=~q ��Asܩe��Gː1�{אx'�~9�/���V�n�ln;�������� �ҽ��m����)ay�Dn�H &��8=�Ve��[�������Z��� �0>���#�^0���<4��I���k;��t)RR���]O��o��Z����߈����[L��b��̊�N2y��o|v��nm�|M.�i�S�������NM}!�i�G�2��y�n�0�.T���^�b;�������MWI�U擩Ga#̲K��$G�#��ds�⽬�7O�hӋ��J�/�n���~XU��������q�����ۻmi��c�3ž���m���z����e�����1�'��<���}k���|%�o���ow�x?[ӭR+��j�%$�>W��o�28��K��>��i�<M}d�Z�QjW �<`�d{( f��bq���T�����R�is������&�b�R�k��Z�>���y�x�f��xUc$�|�}�^x�_,4qF�g%Y>��}�c����l����P�"H�A�u���9�'۵{恤�x{N��"�=Ljn�#ڣ���8|�����ּ<�+��mS���W�����tQ��o��~�xn���$��1��0;�z�e�������2r:f��)"�u��#�7�0�ב����ӊ��)nubn��i7���$8$��l�+���^߉��T�@�XMmWܥB�q֫۴��:������c���+�����ml-�;2��v'@9����u4KL� �r��r ��_l�g����Td�[��5��Ck�` �̸�9�K��LnZ�y# 8��8ڝc �) nR�� DQ`� �\c�4�'pIApC=�@c��L��Qq��^�֣oQ�Il�ٛ������,zU$�Ia��K���ȿ�=�j�Ȱ�D���4EZ+}��K~ufO�/-���QqÇyP�*8�ޮ���B �K���ʊ~f'�w��=�5�GL��;C.:g�Y�40ζ'S{K��"�G�������~��k觳̓8bQ���85�I��sjf�z��|�$S�1G�d��H@���R�c7����ȹ���5����[}�ݰ$ ����� {�u}XB�]_EH�vB"Q� ����Q�Vܝ�(�\[ɲ*�,���Ǟ�}�k�Ky��tr�(zs�XV�%ӯb��������>-�A;]�A�z�+��_�])!H5�.��U�4���%s�$nq��8J�~ϑ�������g)�*���(��σ�e��ˁ����ah涳���X����ג'�{+o��L�_\������H���'�8��#�q�,�����F������E���ܦأ���,���<��P��җ�ڊv�����9猂^��u����z���ϸ?�X�2P�gi+�<���^u��D�/t�[Q�֔-����Ϲ��#�ۀ����f�ť�[�/�Y��m�����zk 6�;�ܣg�&�<3�i:?���O�j�xl���d��?���Rp����G5�R��h��ޚ��M�Y.�}�?kR������c��:��kϩ�˪X̿��rOG-\���?��.�o���6���2��*O,9�}�jf���k�V�}m�[�m�ͻ���U��*�$�g��O{���G.��tr�soa��v�{�:���ӡ �Q�4��t�z5kmta��[��m��.�B��&��z��(FڛϧQUe���8�_ 'c�-����q�«��3�3�H���L����}+9����˓��{Th��d�zf�yry?�$R�3��P��`=�Jt�H�9'@�g�s���#m��4��cd���ڑ�'���*"�$��V����\m!�&A�V4���g?�h껕O�Xa���+������������'ں�w��ޭ�jn�'N+����?J��Fw#S�r�^5�˖kf9�(��t�YԾ$h��y�Av���=���5�O�_�o��]J�v�8X��U{}k�^ex��>�DZ�$� ��y�c��ni/%�ˇ�ѣ.d�<����1�=t���������=kya��V23�RH�8=ϵ|���O�N����4���1�5��2���U턠ڀ��m�gbI�8�%b.2��fI�ⴢc 99�J��+�=MC4��I2�{�[Ӈ*�Mܹ V�@PG���k�䷞8�Bv��6�i�d�xܸʺ�A`�1���G�����>D�!�E8�=UI����P�"�� Օ�@Oj�n�ЎH�629�L��3��WAC��J��16�w�q\�o���H ����� \Q�b�j����.�>����ܽG'ץJcB��j��qh?n�2&�&;�H�'"��j��x����A>��l`�����@��"#b�ս$�A�������:W-xB��I�>4�3�h���J�*@ȯ�5k9���J����v�ݣ.�I��������o���g9 ��^�O����)�=��*��ٟ-I&N;��7�<��?�t�;�f��_0h[�����L�� dpO|��*ӭ:n��*Fp���|;��B@��ǽD�'�zsO�?��l�!>�W6�����T��~b�5�T�g���e�#�*�U�/�3���9۽Y`r�s�1L��W�iz���w-�ݬ�H'����0�T�������<ⲍ��l�z0� ��^��>R�}��(���?���wė�����V���ԏ`ݣ��� =0x�x����f ��<�&�A�U�s� ǿ�~OZ�w/ *v�A__��_����Y[xC��_i��+=p��[/@������x�?"�n�_RX�^/Y���������8�T\����>���-��@�%Ă��L��m�RX��3�z�����g{�d�7$���(���#�>����uc팿j��c�`kI�8*ѷ �y����{岎�S���E� �l����־c�����K��}��v~L���vf5��W��� -��c��9�&Eú��` �=>R>j�u�.���~#��"[iܾ��]O�2��_�N�j�ga���r�vS���kBn!��(�y�|�!�3�� ��Wa�h7Eo���b^L���� ���8�ON�T1�������R�g/�^i��+��rv���O��вƍ�&Fg��w)x$ T7̶;᷎4V�>��C��,���� Sx���^M&��[�ѵ��sp>x��T��X�2��p8�⦍��z��ŭ̍�k�$��G;F��y��beG_�x����%z:����5_Ցqo�r5�uy��Vʟ6�l�Cp�t�8>�U}J� ����h�0�"`��7�p�á��x.mZ���=�3�+��.B�����9�9��[Z�p��-��2$�H���B��*B�u���F.�V�h�3Ng������ ���)&0AbO��&�����u_� q�k�ݙ�� U�R ��9�KKk�7LD�ٚ�h٥����7�`g��l?*�v�2��[�<2�42YF9���n@��,�i:�H��� ��^E�6�&�Y�����66F9���H�D����𰼴�c�d�z�H� L���Ir�w��7��(�I��7К�`��� Cܮ%؎R#��p@�I�)����,1Ȑ���3i����S4l�Oݐ�?('#<�R�qr�d0��� E�6��V�ȹ�PÓ�=�͚\���p�3I��r�$��� ��ҪCsq��,ֻ�)�g.eu�O@��w=)��� ��$�a%���l}�)̳ ��I9T Cp��CK��T��g����]��Ʊyys��;6����郙b:u��y"Z���}�T���v�F�����ӥQ�6wOm$�Vl��H����G>�����ǯ���#GWKk�G}���$h�$h�z�v����:�k2'wӢeڶm^\�8fe',d';H�� �^C\Xl��ڔ���C0�3q��뚞�#��Ӵ�c�f�5YЖ;���9����tH�AZ����G��;�vd��!R�`0��3d�ӎ��)`��7��3��=���>2I$�6�~i!��[Hoa����_3���c��*B�H�1��ޡ�]�jP�5���yȶ�H�A���/�0:�״�Y�)]�"�o>��1n�:�����ݧv:����}�@�y��kG�ٞhب��Fz����5b���,���ky��@�b����0>�s�c�#����d���ы*ݾmĖAa���#&��Ճ��։X�� <�8���!*��+��0q�ޫ�t����<���M"ۺ�l$���;�s��8njh ��[��RҖ�D�Dgh����� �~���������m1v�2(.�Ŋ��}� (�J����3;ò�u�yH�6'ʍ�o����$�\��[��,�g�m&�[i����Up�H�r89�H�⡸yM�Ԧsqi�1"�������v3�w�Յ���Զ��\2��E��� }�1�0��5�}�ר�u�$��>� �{<�$q[��x]�����x�y�0����G*�����:���HV�H,3�>��.�SL����.�v+2�-����xϳZ��;K�$)l�ln�$���v�;����c�@#���I�ş� Kk;�X��8�F��'��$b���xym���ky�L�[60�^H�����]����sL��K��X\���q�sK�i=�1Eax!�e�]�pR �2T}�ȫQ��x�ܿ�^ɦ_� �b�m�/�����T$�=���~�5�Q#��Z[_�� ĹV���X`�֫�Kb-��Ī����q�6p�ǦH�7��p�M�B���!dc�� ��G��a�H���j�m� -nI�a/.��l��u�IV���߂.�=�J�W76q�W+V�G�]��Nq��y��k�FX���hͻ�R��8��<2|��L��IF��:iE�V�3��g� v@��r����y�c�)�6{>����g1�L�[G�V���7�t�楧CH|�_�:�7r:y=G5��-;W�5��;���<C"���#{��'u�Wm���%���ڑ�Cp�(��~YTm#i���Z~���w�E8����Lh��ׅܸ�9�<UO��uf�շ'k���(F? I��<M�c��f�r�&���vk���ۑk��d��R�ppy���Əx�^�%��l�@�Mg����<��1��Ƀ�6��/����]I�O j6�>���[� J�۴� ��є��r� �xP�:��]�4�Ɗ��&�rp�H�Y���la� ��_g��S�ìE8�_T�����[g���U�>G+_�s��t[�Ff���J�p�6-��3c-�}zW�|9�3��b�Z��q/~@�� ���Q���eӓ¾ �����X�a�D���{�]#��9�y�= 7ž5�ӡK�j�N�ݴ�� �K}�����&i$����8���\�xY>�~Z~���R����������^��Xh?�&�T���Y�@�''8�!������~ Դw�m�� �{�����]��l�UK9lÃ�g�<]��ʶ���x�,�UC�4�!F!��-Ӿk��<E����r�m�;}����\g%�<�S��\x,�F��:����_f�̓�K�]/k��WU���_k}�|���4k�:�אַ�6�j�L�7��0�ۻ�ʎ1��H�ΰ�W1[��������,�2��'*���#=�yg�o�ڧ�m����,�1,V�G(/o�����<�Zi!:ɾ�Hm�p�p��V�T����nOPד���,T��z�_�ꢧȔ�,隍���Tw/y<ۑT�#YAl.P��o=�{�k�������o��t��Hw��-d�FNk����;���d�M;"���u,0�y�yj��Ţ�t�ZD�We!�R�Bs�$���8�Ň�����I�O��G�8��4���&H��euWX��Ui�}����e=2Ny� u� <M����ia�\��+��k��E ���M�YpPc���:�m�R�'��塚["�yї%KIIR���:8�>v�[d>�FmGǺ�6mn����g�3�v�� ��=~����(V�*��Z� �ok����Q�R1��.�ROw���ϥ�U�ӯ-��9��<NQS��R2�rs�5�C�^"־�y?ǽnk+�A6�¥Yq�6�d2Ҵ5o���/ �W�_�� ���tMg��+�>.���Z��~kƇ�9�Y��/�W���I�j��w�-�1�V�fַ����6����z����_���E�o�e���-�~1��ԦM@�y����%yc�a��G\q^��mF������-��6�����(<�[�����A�Q�g�k�5?�z���C�B�������R�V�����K���I����i��6�LX�M�>^����� �6�3z����z�s%��F�:���W,Z����Iu4ê�r��螯���KmF=7G�����:�7%�7�����T{at�Ko-�~\L�x���n둌�܃��Z]����._0�K�9��H�+m�$���Z�f�س�gC�M�l�����d�+ƍ%������}���b%�=��qoE0:�q�8l�pA#��j��b�`��K3��F�Tʜ�E��A�UAv^����m��bb�mͱ۷A���f�I�����YL^��̑B�e\ʫ��0��xmT��/�X"�d�A�?ѡ~��)��� j�jb����e^��2�<|�'q ��O<c�����E���J��2j1�dž%��~�b����Mgx��r���M2�K�P�[Z�w~}ܛY����j�z7ȇ8�]T2��-� ��;���r��ή��P�Qy�Cn]�d])`0[%�$`}�H�Ⱦ#�k���f���A��.�n�����\��NN>l`���$��Fu_ �����K�����-5�����Դ���3��9���P��-���^ ��H���L�6��il��L0�8c����] {x>u��RJ��m�vջ]]5S��>0W���z�Bx��z�K20��/yt�b���o5 �l��2#�䏙܅�#�º����O>���]�'I�}≃,$��e�@P�9�Ҽ���/�L��w�:�����s\�̺���Z�6��x�c�7`���U� �YxZ�R�<}�oi���W-���/��c�݊)@�F�����ҽu�S�Bֳ�xɧ��GͲ��ֶٜ�X�O�_����;мZ���<c�E�}CO�f���:As��x�C*�T 1�v��#� �7+iw+�y��$[�͆N�8P6 $�8����u�����Ȳ��O�麟�^56�˛y�*��b9�#pFpf�>��K{mK�:��^9�m_ZЛ�>�o=��`��+� RT�}L+� ~�.�\�_��Yn�ns�电�y���R�����o ���m΅z%�,��F�hCo�`G�_ ��q�g�~"��9x��N��x�YӚK���isK�[�Y�&&@]��tY�O߉�O[x��zm�o�LQ�Ei�a�]�m�;m�e��dQ�> \K�47��^��:w��:��L��\,*I\�/�s�N�c&��꺻�t��vz�;�/}�ݫ��^��w���+���x�t��L��9����Ls�����_� �z;/��͠xz���T�cӖu�"�{��1��$�Wg��ᅾ����xwC�/^d����S����T|�B��@|�g9�6҄���˭��ƺ��D6�)��F�W����fy��Q����Z[K4��ͧc|>�n�������6ZN��M+���%�u����i>�[}97�}Ӏ���`�{��U���N�����z&�E�2C/�u!m�7<�l�du�x�hR+X���;�$;�+�vd��sX^.��jI�S��ڥ�(S�bSda�u���g^SJ�vZ~V_�~gz����h��qi�Wn{ �H�8�J����$���K>�;���(�۰���*'RGR2j�FY�$��W�'.��s�YJ7J�h�j�8P1��&��u�qKq*Z�L�Fy��+����6F�� q����ZW;�h�`1�ֽ����jn���>g�q^]���s��,���s0�#<��ڷ�O�k�֭v,lH�rq�m{�VY��Br�[���'�����)4��p��=�@'��p^��e�_\��'��� ��vҒ���W�?vr�gc� y�0G^M`\�VV�� �89����7i�w9&��{��-o%�N��\�(�m #n��?U�{���<�+yd�H28�cּ^u�V�&��*8���=5�ل�a���95��:Iu�r�z����I�[G)�Ă}j��\� �y��Oq����S���%��_��?:��O0�J�eU��R�+��~�f��Ok�;���0�c��^�2;`w��Z��#FVB1��j�M��l�|g������v�y/��S��ϋ1''���:Ѣ������M�D��[�#ݒX��Y��8궾��$�v������ūY��+oFF�_�k?�n���ב����O��.� ��.�0�Ҹ/x�[�4���H�ǩ�:��XƔ�ڒ�D�WݡB�775O]�g�c��c�'�=뻰��!�ux/��6Z���b,�� �}M{�$�E�He�N:�S�\�;��N�Uǎ���#�.O�&�{k5�1�3�4�0T1������f���9���[F��O>�hD�DGc�jl�aN@�jeM�p���Q�ȩ�g�]ch��''���4��I���Z���w�m�OzU,���;�[�����&4`�4[K�*�d�r=�i�U�x��2�T2�r �4�Rm����=j���h� '�r+����Up�$����K���Ģ�j���X��\u��Rи��$�������=�)�J�������� `��v�k�4���fU�`Gz�&xZ�R�*-��z��2����+�WT\�*�Y#��H9�ȸ��SE�8<z��i������yiy`�%��6��ʺ�=���y�m%:n�L+���,0���K$[��MN֤��n�ݏ�m�ں���#ꊦN�})�Z���O�Z1������N0Fz��w���Lʆ���9�� �1�kFKpc$s��?��Wp�U����[Q��.[����oc��g��?Q�U�&�|%�<1,���ݙ-�y�~��T��ǚ���z��<i�_�j�-KM��z<2��r���#����fv,Ē}k��f��+�=�}�K��2��t���7+�?��ta��q_)�\g�vX�1+埓�=�Ϻ�&h�.Z��~���7�9y�B�A�.%g<�c��GcYW%�T����ң<nOl㟥E�s�W��,�au��9�0դ�K�7=U��цA�]�o�Fm�kv��0)����_�S��9P��:����~�����=�ՓZ����uM;M���G#�b�4�9ا's�5��~,]hv~#:��[x. ���.��Gps������rZG�E(���%���@�wN �ּ�R���j�1k~���G�Seqon���v<���=���o F�ە�ke��ӭ��O]�c�ͫ��>7�l��Ađ��06W�2�C���g��Z�o�i��Ռ�)ȍ<�>�&e�cnB�F@�b��V�/�߇o|qwl��U�^+i �*~��ֵ�d���n��a�[H��C!o0�}8#�'�>��ZJj6�k�/������H�oD[Xմ� �\[�[������#d��F���ɥ��4� ��r�+�$!$��1��I�>��S���Y���tqڴb2֮rl����rL�����bP�� S�����yҭ�_�rҹgY������-����Ř8���<���Zf�e ��I� l��1$R��D�F�����W�i���om�'%3����sY�͕���Akb|�6S��J����~C���H%e�pA��!��'�Z��`�j���Ԛdvj3 _(����OT+b�^��Q�0[ۮE�z0'�#��g�Đ_$�n�Z�����څVI=nJ�;����cw,���E{c��$0�Z��dWZ�v6��N�M��N�2C0�8��{�^��Q�{yH�hFp;t��jv���\��È��o�X�;y?Z��W��o��\v��S�z�%�#�L����0y�di�1�Cմ�2JN�"�D�d� �F����]:�^\�6^�o�x6�È،`�3��Y�6��]O%��B9C����8�Nj�UFv�n��D�Ԋ�+�Vȥû�O5�"��I1�;�#��q��64�ZŨ͘���Td�yy�;u���X.�7��)�(IS���ǶG�6���4ցdتv4��)��ާ�8�7��ԗȻ����y7̈��y�v�A�O#�z��o3���!��G�ʅ�x99�SA�O-��Q�yxԮ���\��N���G��ݾ�4��Vcy �x* ��(u}�_���;y� A�3n���))�8����ug?j���.)������NWh�#�m��;�0ݲ�`���U���hT��k=���RG4���L�> �#��'4��j�5f^��GrO�]����d�`ONr9��ӵ1mj���O�+�� ��rFI=95�q�5��[m�R:c �zU{�m �k!�l��A���Ts�q�T��`��Y��h�qon��`�m���� ͐}�>��{�(a�ⵌH�'�&U�#��/�^�����4�;}� $b��&��3d����N�C,��1��W j�+��X�F�Uk$�Zt�����BK���K`�!�dI#�6�" ;��*=�{Ye�_2�J���E���u^Nх u�*���G�xoI�X�"��̟2m��L�����㠦x3W�|[��kd�^[�*� ��]�o|c��Q���W�{y\���_��f�5 ��R5�h��X�ci�~t9=�^�MK�����MHF�G�s��,xi!|�,Nӑ�~x^;;{��qp�Z;X�QJ�.�uQ�?SYwo�QH��H�%اj��v����gw�_�mG�˛����\#D�.�$�P�a�V8�23�S[�5��ܭ�Bo-�a9]�01%X��T�z�����J�K��#\A�)��y�rH�ڑ$��V�攣�6�E3��9VPO=OZj�~���gb��m�|&�v r�(T���ۃ��ܩ��ڬh��Y�M��y֠g�R�sU��[In�K�v�DbK�Rbnd�<q�j�ڵiY�-%�DX��6( �YGS��ץ)WQ��z�^����MX�_����<Q�c�{z�b�|g�`�yծ��&�KE%�T0r8c�z���%H�m���V�s����y� jkw�=���ڙm�K(f'�]����jp���Y�P�(����e�{>�(FRNJ���|��?ğ��@�zv�{�ج �~��6~P��~�n+?���u��Hj�v�b�=j��3( ��p7v����zkj�;[UÕ�{�ZW'9 ���X����t�O�F�i��"1�\*�#��}2����*4�]�������� &���Z��_���`R(�N��>l��{ץi��-岷�ң�|�M6�`n�gh'sc�'&�ҭ'��㼷��T�ݴry)�B�%wq���+[=M~�omug� {�21��ҐG9#ڼlNg��Ϛ�K���zۧ�Ɯc���.�1�u}���d��J� #lecPW'����h�XP�%��h�Oea,.�#�<�t�s�s�b�P����H-�}ш����q#iG��OĞ�.��%�����瀡6Iq�6����Z�ד���.�+�8��]Bso ċ"�'���vA�cj F�o��� �~��Y��"�8I��6A�0l�/'�{� ^�Xm��n��Q��x$�z͝/�}.X#��R�K�~8V8�����G��Rko���X����-��-��MbVݰ>w$�x=��Uu.��.��ٶxm�1�L���~���с�d���J����m�+N0� ���Ny�㚜\�Ϩ<�l�Ӻ~���$Tle����� �֪8�F�����j��i�w,�̂�A\�98�*� +M�O���q���6����BpH�dc=kr����*\ov�Yg*n[ ���sS�e� .�+��a�E��y�c��yd�(<y�%��4�����ܕ���h� Dd�� VT� ;���7��?�����Q�^f�ۼQ�ݖ���A�#F�~\�z�\��������y�%�Jd�����r�a�,����^ 8��c#����Lľ�M�� ���'�]#Z�V���o�� �+sz[k�i�n��+�EW{+�-��Ea�/=�1Y�u� Z[���ݥ��~����~H#��Kc���^Y��Z4-e-Lj�����gM���f;�n��_��8s��,�%��c��'IѼ+a�Mo����V-F�%�r�^] ��`�<pFq^�$ĵ�WD�}�[�m�q�����u=g�>2�,#�o�6�Q���-L�1�[����i�Eq�5�A���k��v�h4����9u ��];�& _��+�����C¾!�.u���R�_�[�P�uy2 �dC�1�U�� ��_��5���6)�GU��6�9��I�&�����095�8L�E�)^��VM]wO�_�8g^��ӭ���l2���������^�����#ZѴ�Kh^�����H�ث){��I��S�&����:֝��H��걉?�fHD���V�ۆA��������S^6�,�ȵ��������2n@s�t�ȭ+o����\h:ޝ��i����jG��X앉��� ���Y[�Z� x�h�t��'���&��z�1Uu�u�]����������Դ���Kqqet<�����cGY�S�%�n�˻5�-�OY�v����I��qJҩ��Au����w��3�;m/L��>xj��Y��"ԥ� �\u���Z2��\(^8��/�5���~�I�m�՚�gY�i��V�8���6�¯ �T��+��#-�}{7e�M�}�*�y�GV��\��/x���:6��!�&+iͬ��{��v0�1zkR�A�ML�|��:����$���o8��0#H�!�1x-�����|��/-o�����r]��V��R�)@K����}+�4χ�k�������ѣ�i�].����Cm�U^��3�5Ǎ�5'�^�z]_�]�}�)T��J�ק��ïj�H�u��+�]��ť���� PY8�~�y��d���s�?���{��+����M�x��̿3�[(�@���yz�W�[��~��Ӵ�>+kiwo� j��"���=yE�Ծ\�ia�.#�7�����rZ��GV�������ߋ����0���_�c ��Vۡo\�Z�Vm#=��Բ��[DQ�AV�q[�R�^���nap�V����c���z��)a��[g�g����+I�F���{U��Sv�\�J@6�b#iun�>�}kȞ:u����|��N1�m//xXڻG�nU�9`ɍ��t����y.J�eK�1\�dupe��Ku�x v�����M�&��B��6%d�Ab7n*���c҇���L�jD�2����)�J釐ߴ�2�ukw38���\7�e�p�����:}Է����$~H��U �͐� �{�1R�$�mbqa���Ōr�.�N00T�'�5J�U:����#0�`�͎�sɯK ��9h��?���a��������M�<���k&�X��F2̫��H5���Z �\���v7����������_� }73�ne�j�VK�U�U7�� ?Y~ӑ����1�L ������� �E�X�u�|��x�H��-, ���7�/����O{�����5�N5hϚq���P��=Oö�ߏ��uE����g���������4��(�[�G���6��v�\�6�[?Ν��G�lV��cC� ��W���e��WU� Y��]�����M'R�\d���<Ike�\X�z��R7"/&2WۑU���[ �2��͏#v]�Ҿ���]�E�R�[C)/�Xt��Xo<5j��9Õ{W$��w�X�J0O[��ײ���+A�٦�G ���ݟ���c���A�V���몸�āK=�+�^�6�I�A����X�`��w^U�����8b�,�{q����9<D��R<�o���:���p����J�4Dc:�F���QԀÒ;W��(�?���Kk�h��Z)&6�v��z״j�J���tGj�g����w����ms����&�d0�ư����f` ۑ�����IJm|�7v簬���i �I8ܹ�\p�jۖ����9���F1/�g�by�F�E��.y��f���f-�ʝ�ҹ��U� ��J����Ҝ ӷQ��="�0�v�@:Ո�Ӈ�89"��;�k�}�v�f�V�W3�4|�5�NQVq3w�_�� $�+���m1�/��O-�bN[�@y~��"kY�C',H�+Cű�\�m�;-b���E���ܧ��s��_A�b�P�:�i)�GM���C�Ns��emO���'�e���2�&h��.Tッߚ�i�=�j�y��m?;,}���ú.���%�a�v�w��{ �E��Ud�=k�Y�Qֲ�߭�C����Њ�:?�$�%�m$0��Yع��z��&|7��֛��E|�m�ݬ�������U�T�ʇz����J�4�:��<�<f(�<��@ϵN#0�!G�UR�g��q����%�uo̹{?���Xծ���]6��d�p��z��g��K������<��[��]o��=��-m4q���*1���0�=��Wp��Hۗ��T������d�?����nfg�:�ɮ�eC*��&��g�P�Ӛ�ehت�rO|U+B )����.e"�u=}*X�@In{梷�g�Hn���o��M�٪WM�"̄4d�95\B����;T奉U�g��1��OLcN�`��������⣾O-_���� ��4�E$ ���iOD4�f�Yp�q�:��[3�$�ڢ��.W�?x l���m����51�KPݔ�1pb'��O��W!w`t���{�$�H��jY�9�'��X�)_�C�/;�Q���i���*�ہ�J�h�غ���뛍�9P��ֲ�"I��KVE�M��euVܽ@�|��wᕵ���Yõ��\���������y�;m,-�(�uZ�K�����>��4����~}x�J��n�x�+КȆLK���q�_Z�^�c�ӪۆnH`9���q�k�Qth`<;W���R䞓ꈩA�z��X�?p��dqH֬�0���O��P���J�[]̔]�+0�7�oZ��Z��dh�z�Vז�+2��N�5��y�����qJ�2����gB����bf\��-�MBR?r�r+�d���s�i� tT��z�&���缮7���?��ƞ�T&��7�r�'t�z2���k��{����O��K(��_�@olta�q��B.�����`����SRе�mGH�������<M�=�DZ����O���Nѭ�ik����t�v+����9�K:I����*W��;�-�_�'�gb��c��c�9��v���x�tI���v�vq�3����f�gP�C)��܌�:��X�f�娭il�n��~�N�T����|?��^�M�b��U�Jm�T�,6��q�߇>$}:�t��/]ԣ�Mך��7�۾���c��j��MNBƊw���Oμ�Z��~$��ҍ:l�+QP��8�yc(֤�֊J��ѷ�����waF6w6V�&V�Я"����^�V/$,?�I�ӃZQܵ��sZJ$�q�91��\����S�����c�,@e�?�Ml_Op4�mCF`�JC�hARF9���u��(N�-F��M�{w�5�-tt�ᬯ�f�q1�o��x���pc�%��.lw��9}qߵT��}Va�,���l�u��V-mXY�̅�;���e��������u�������!����O��?:�q`��S�,ɰ�nI���J��]�X%�C����T��X�)����9�c�Է6ې�d%��b[���[c��h�g���{I�)<ϕ���+:k�7�hQw�6���ۋ����@�-xr���uɪRkϧ��L�K��mV�O*he>\�0�Gؐi��m ���۪� +m @����צ(�[6�I,b>c��!�����#S�)��$��8��������-q���hvKR���S�_pH�Փ��,r\@�鴦ؿ��Z�q ����ᐎ*aqo#�+32�͵��>��Tי�h-a��e�slpE�i��)nf��=�R��n�o��8���I°�ga����i$�xbkf`�BXq�3��ӌ�6��5C.�V(�FB]v������4ԎK�%��w�ѝ���gGrM���^K�ޯXC:F���c�dn9�8�)6�p���q���2~c ���=I=kƗ���X�Ou>�{8�B����<��k{O���+k��Dæ0��z]WN��&���&��ddq��O ��E�R�F�{�+uKf��"n֬�)ZDl�m`D �"ݾ࣌�玂�'��`�&�G�]���J�Z�� ��G\{Wm�Zi$�K�&���,0��s&I��=)>��zV����4���-���'��־Ν\��8�+TS��Q\����W�s�ƻ\�z�� ��7㏉z�wZ���y\��wGi�z�5���?�����H�>ؒ�1>D.�ѻ��9��{�R�3j��_�a�Z%��,��YP7�:��f��Lt~�N<��/�O��)PT���e��_,Z�o�� wo8��'������6�����X�Vh�Col������"���jz$1��d�|�_C�?'�J�/�I{k$S�[�܌; q�u�ʼ�VW��N5�R��^L�2M��h��q$,�O&`�'��Y��C�X��#v!�}�Eo��=�2Y�Z ֥��n%'��}�V�?:W`�����}k�M�}���j��p�I��D[��̪GL�ޚ"h�ˮ˅ هP�(��T����sϩ�*ͅ�gI&hwa��9'�g��j�����Gyy%�PGp��F��3�<u�;<���?=6?��XN���~�^yYeFUR��I?AW.�njK?�Y0��>�_Z�7{�J�`�F�4���)��4v�p�G�/����V�6�6�-Q����4���גy�~�+��>_�~5Q#mH��s�3W*�Z��QV�f��J��1���v��@�MBѓ[���>+�y��^��z��vM�$�+�������7��p��s|��� �8'y�Ha��ׅ���@�d���sқ�]�=��[�31����RǑ�{�0��+�&{`�ʫ��V�RA}r��Q���&<|�ߥ5{Y=���i�4W�siq���A�X�o��Y�mnM,�O26���|gh$�{U�f�{��o)��s����>��s��k����5ݲ5�?kXµH����7���Vo��q�-���!�Ew�F9 ``�6[�g��ս�*�I.' �?�O*:g���<D���f�G�DE����0����23��v���K��鲥�l�Z�陁9A������O�T���W}����d��9��z�5�t��KI�Mͣ���qr��@;�21ܣ�c���R�4=&8��O��<�d���C � �������S�oXj�<G���<{�2얷L�~^Ʋ�h7��i�zl���i�������8N�Q��������&��I_��S'/gMk����/x�V�{y� �K=DԮ�a�l�[�FE�3$��|�Џz��1ce�wW�Q� ��a2[/䍊�?�9 !��[�w���6�����U�֗<�:m�W $2�0ʞ����+��ߍ��o���$1Gom�i. �]v�������c;�����>o{��Gf�G%i�%*��_�4��ί�~��0i�x����I�d�.�#ݗ{��o�a��Y�F��\X�{'����(M��]_f��a8I�✌w��9��G�γy%��j��,ż@z�v���Uz߂c��;[� xK���W7ږ�ų��2��<��Ҹ�V#�����[���r��Km���m��:�R���m��?�M�2ʹk�5�VPD��kڬ/l��~l��W?y��zغ�^��;捠X���ƃT`/�J�Z�g'�5�7��fׄ���B��q,<�8<�ףx�����������hD^N�n��V����5�.(�a��8�k��J�ӗ���`*�m�nϝt�x�T�u���h�����g���۴qd��qϸ��¿ ,��n.�|K�[��\��СS��#���=+���4k�O�-Į��s�I��~�8�[3H��1��c*���J��gbdҥ����k�����)-Z���x�V��^�twD���,N�3��'�q��]M���e����O�3�5Qo)<ne�\�O�Ij�����6A�O �����v���f�2�����W�S_���^�=|��A+M���^�-����!���}�C{mf�!�n-��|�x\�B����Sӽ%�%�#m��T�q�Q�7�-�O>k� sJ3K�Z��^E˻8��t�Edw�����2Ɍ��|~V���O��D�K5�#��.bG'�?0�J_j�b����12q��q�ۧ�k]�r4e,DPۃ;���0����.�9+c�P_��;V���O�K��)vA�_�I<�p=b�x�M�5Ye��'���d����y'�k����g�dY-��B�X�꘏��l/�]^��P��K��Qٖ���d�#������O�I�_��_{���s�����/�'9������ˌ� �Y\�%���01�Ph���>��\\G��"8�8��� {f�����"���S�+5��J�P�?]+� rx����p]:vx������<:��E�Zv��y���S�u�e#�&�ߌ�1�/�]�o����/q+����$�t�֎����)8�������L5R��7��,2�MN���D�2��>i�p�[������PG���� �M�w��~�4���pO���_������1'/��ȓ���_�e�HB�ZCb:�_�O��b}�6�季���t�S�]Y�g���ەE�q���}�:�����3^Z��)�r�����!�����e���n��r&c,�����k���'x?�:|�h���]$� ���(�XSr��g�o�ݯ�ueE;Fq�o���O�� ����|�g������r����� �����Q�i5�� �p�DH=W��ۥ}?�=xk���E�̓�c��C�l���m(U�y�������i�pJ�C���Wy�/�?x�}2�nH �PǕϵym���Y'�Ino�~�<�#�^�����\�7~���Vt��6�m_QѮ53*��+P���>��ϧ*W���^q��N���苼�*q\�%s�����m�\�c<D������Ҽ5��\�k`��8@3���������n��ӭ������}H�t�>+_�W��� �8�9�14rZS\�%SϿ�x���%�=#Q����f\�.�6=�'�:�:r�]��G�1�\L�_u}[l��*��� 둎j����ĺ�����o��/�q�rx��[.qq�k�l�p�R��H�mX��b`�I;�3\6��1�~��| �S}a��.�~o�<҅H�<2k���m+Ŀ��,7E������P�8�RU����ބ:���"�9�X�B5>s���W����[{x$��)vs�����.�m���T�Nz���s���^f�Q3��3��>q�=�a$��1_M�M���n7bP���㰯I���o}lv�-ᙆ+���7~#U#@�v9;S��^O�k����u{;�u{~F���J�\&����>V����y$�}��$���彝l|݅�Z��*҈��ȼZV�V�8�bRW%x5� r�-��fM�ȵ$��ޱ.�\�"�<5��F��tڍ��Ẉ���n{�Is՝��-�xٸ�W�m�d�Y� ;�@yZ#[������h��&Q���v�GM��>������-!fI��@�@=I�_|R���뚋[XB�D ���g���<Y�;vGK�B��S��d;q�+�_�^�\Zi�4�����f�Z٢�M(�-�4��K�3�F4�s�����5�B��x�w��N3�u����l4�ag�Ѩ�9�<��#�H�<��y���|�~�~��w� ��Y:y7p���ή2?��5�0*w�&�:}����+bmnX6���2�ŏ��ʗ���W8�M���x�f���$�gur)=�ֺ����X�4�'R%�!�p�X�{�����z�bo|Ae.�"T��������E;�C�5����aӯF_��zg�'���w>� �����q�@���?C��y�mBE[��y�b+K_�ʵ��f���2��Q� xf���^��,������<� �lc�=+Ξ/��?�PT��~/�)�i(ɴ��}��<�e�Pt��T��&1&�F{W'�Q�����<v�<1��}~��wd+�ڧ9��l��ӹ;J��D�{4,���Y�9��͆���qT�U�1�1�6l��"�wOM��2�e.x��>��qjM����(*Ŵ�ṋ(���֬5�mT����$�j3|�X{�y2H@1��+f�̮��ҝ��c%wa��ƨ�=�,Uc,?�K�'����� i�]����Q�VOp�`�y8^�Z�%���YQ�°s�T��ݪ�4p�W#r��\jIǖhVꉤ���8o��g�T�:�Ī�@�8���+���(����I&��� F#�;q�j���u��KV��}ʑ�8b:�W��H�(�^edG+� {q���.�AN@��ԓ�iq��|0_�O�s</�XJ�]K�G��<{��P�n$�$/%� ��49epq�־��7���J���#�hny�W��~�Y^>��Âyh�z��<�:�������Fj�(���.�I��`�TQ]K��#�V&�{C��tN0{�|�K+��)�������9�w-MpKg�X��{t�U�gc���)ӻ#��p v�t�3U��k_[���pG9��&6Z�C�)�$�����u�U��ް�G�G��HP���������qnR��=L7�f��"{c亶�d8*GBb+�O����MC��o�{�K��;NN~�$=���?^���\��y3D��q֕,/X�Z��O����s���"���n�t�5��p���j_~��{e� 3�J�g��9�ڳ���\����k������<0��[�7�KKk�_2[����J�:���[Ӓ��h�IP2�rNk��7ʱ�=���/ޥ�d�����hՅzjp8[���|� �֦�&16W+�pk\���X��`.2�����α%S���j&�ʹVX�h�zc�]����gNM�ku�Bw��7��9!�U����d�©i��G�]����Xw���Lgu�6��1ɬ�[HK��m�&Rv�g�z��T���KEa����o�A9����M42�}�"o��S���U��c ��L� ���l Q"ڤl�GQ����>mG��Kv�D�Xd�%pE3Ij_s������D� �� �Z���fP�@9ɨ��>�h�.>T���^���R�[JL�z��V�Kx���ǩ{>�J-%x���8#�*�������ܓ�eU#�֡��9n���������[���s�7���}���9%�� Q��hD�:����z �d�HPp������L(������UB:}�~'�Cqm�r�*�nF'�1JU�~R\��V8��^*k��5���P�NӚM2�'�Q��g���J"��H4B��c"o�6��}��[��[)vD�e��v��U͝���d��e�K9���:�g�l�M;ꅹ����pn�� m��q�U�{N��A�Z���J"& ���j�b����.�c�9���lɫ]���|�K�H����~�-&��j��>�u&Vz3���5k_�s]�HbQ�+H@GS^��'�G�[L�u�,�^�@�A����6I&���]�k}�DlTs�u�ᇃt� �AV�?1���ws�_Q��2�t�[��t��O��U��ƣ��9|�P�Ẹ�ٳ�Q��Nj�_�a<B��bRI���z�����Llr�������p�\>Cg9S��k˭��e�H�>�::���E܉,�ps��zU���bK��;q�{Ԗ��,&'wnq��xbi"h,����x�y6���~��G+��z�Z�Y��x�%�b7��8=��5^h���Nݪ8��jYmh�?�8��R�k���墄(�}��?�ڍ7P�f�)w:�Ic!?����M�+�ާ��T��i�� +\w����@hx��}�'��s�03�~��x�Z�.y�OO_ƴ�C,IW>b����g��w�X�`�3����ZR��c�� ����+x��1��N�Y��K��B�9dݒEs�������^2��^%Py�%�5�i"�5X�kw�y$$��|�/<�J�p�>&�e%%�.�V���{┒�Dџ�FB��8�ɮC��$�)��{�u.��?�����t;P�;�u�� ]�T��q���ۜן��!����6Mou@҉>g=y<���j������7�ȯ����92�-���� �c�����L�َ��PGF����qU| �6�S��R��S��5��bG<�'<��'Һ_�K����Ŭ B/8H� ��#���|��+��� f%���Q���x=��r���^K]����t���+U�^6�4}4R��j>� ��!쎪�9��('���#�����_i�&wf�H���j���t�9�]i��suusx�pPđ��Glt�8�]���B��m������rCn�E<��W=L JU]� ���W۾��5H�f��M/�F�m=���5)fi!ͻ��1HO=���Z���=O������팶ن[e�HG��ix������ta6�y}<�!}��4�*9l���[�v|P�tQF���{�9=�ם��!'Znr[[D���<b��k�'��!�|c㛫M2���ѢO)f�l��X�v}�¯����|� �;��֧�S� ����1 ������Ǘw�@�I=}��iѵ��2&����y�'�X�O�am�����KI˞z�3����L�h��+G�"�0s�P�5�[�oÖ�<r�y� ���H#��ٹ2\L�1*` �*�xd��|�l�^W�7���E[CJ�+94��B !�_���-� ��E �qޖ�`������#8�M��\<��Qc�k�Ϛ6z�D%�3�_2�B ?0q��������ʏ�/����s�i�s�l͟�\�M`k^(�H8�]����==�5�Q�N�=�k��¥xS�r�:+��!�2Y06�G_��ڍżV�-ܨ���hn�s\|z� �/#�� �����֮������>�r S�Y��W��%��[��߱�b��Қ�k�-�A�٪�" :~�����,����X�¯2ƽA�u��<��F�r/yNG�Һ�h!��˷�#Q�(�~���$b������z/��q�&���U�|,�nJɫ^Gm9Q�7�Wo�x�:YY�ڦ^�\��>�t��$�?��c�}�$�a5�O^�W������d��M����3֙������^�\�)y������9�)sϭ?��'�g_���@��5�8�\�9�=j%^�g�W6-^����S������k�rЄ���SY�]%������D>\�6�fD����h�u��=�-�R������&2;W�(a�Մ�C���jվj���Ri3�|{�b��Z�^�.��ifˆ�q��i�g�g�����fWd�o3�S��A]�C��&�rL�<���s�TX���O�Ʋd)a�����YJ��۵����)J�KH-T5�����!Il�#w�b�����[<��n��V��z��)Y^�_���۰����gg(&Ց7����;3 �h#�����8������$�䂙���I!g=��_����>�����I�t�kr�u*9�����4�87���Ķ��;�����wc��ͽ�eKfI��'��6�O2���X�oO�UmF�����h��$��ub;��+E�wm|���s�-Ny'����Ir�m�qW|#�_x�J�����RIUl~�j�n�K���d�`G�Si>1���d��ޗ�R0%����?��H�ӭy���|Ekq��آ*|譬 |��'x��e4��s�i�\�j�+�6՚�;Ն"�q�V �WO�~-����2��]���#ʸ s�9��+þ)�t�|Q�x5+{����.r��N:|�����ğ�6��V���o5Ӝ� �N2�_������mM��F�Zki���@�!:����ڵ�T�ۛ���3��]�{�RM7k�-N������,&�Dd�W�~�ϵn��go>�d-4j]���?�\��{z��Y���L�n���kx�l�G#���.�r/�{mJ�#�c��0��7�mx��ЯQ߱���8֢��jQM��������,�����a�.��STy��$̸ ��`�gH�{��/�܅Wi`�2�p�,�6w1��2y�,r����d�N�-uܚh�K9nJM%�!�����Sss��Ր:���$�ewo�s1��r4r�ǦOLs֧�|2��U�YI�%o�alg#�WTy����h�Ԓk�z�mIl�(+�>�����2��9^00[��c�C�|4���z�71Y/�-1\���kxZ�\s����e��zJ���iX�i�6%_2'�V��`x�Mk�Ԗ�RX#%�n�2��6���c ���C����n�zTw`�l�m�d�.#��|����(T�A*�W}}�e�<����u��k�E��Nݶ[2r��~�+�5 m<#��[�9� � �Dt=8�o���K�{�ь�L�f�0q���O���,�|Wy�V��E���b1��<�Nkѩ��S�ܪ[�i�����ȗ����O����_kw0hn�o%M+/)����^����F����5�m�Ocƻ��:|��pH鞵ͯ�u�m�/]XhVsO�-4�4�#��x� 무�OF:��łT���JI?1=X�'�槎���~�'MCD��w�m*�����8�x��=Σe�+������p��<���5�}h�%��R�J�(ٵ���|�����SRՓKh��e��n|�!��wu�����c�j)�[��������c��0~�0�,]�ί2}W~�E�˒���s|U�������=����L��kg��l���Z��nf�h�!="���[X�#x�WM�R2�M2*�� �.B�ԓ�Jm�����ֶ�ֺ�j��/yNv�#ljF=ֳ�Q��'%������+y]�C-��Zv�k�2y��Fy�}).L�7��)A�l�3��^?�?�2Al�+0�.��[�����py b������K�T��Qm,ca#��GZ�T�G���jێ�.�Gkv F��7��Umf�/�W�V�����(㺒>[ȐK�&����* l��;kg��KE܃��w;����?zশ�"/�f��a���&�b�T�,p�J��WL���?Zt�ϧjP.�9�)N�v��}�;[�[rב�b}�1��&�����ʽ��I��Ю��ܕb�#a���S����Z�0�� R��������4�s���NMD�y]Zۛs �y�a�U��}s��[�ik�_p�DA���"!t�$zU�=E�XH�@����5�4��$G�������\��ʅa�i�)"�B�s���Mg�Oo��_.�f�Q �_pq��d��i������Ll�3"�G�����ln-��3np�g�Ջ���V+�%@I'q�H��ۥ/eet��pl��#Y<18��q(!��U}^��]�{{�YnY�����}�J���QX �V1*̸�����^zTZ��I:܉e�o0I*���sҳ�#4ﶋ_�i����?�%�i�4�L�F7��|��I��g2���N�����g�6*�̪"w�ubAe=��U�?��~<�h�FYPP{�x=+�/���Z�Y����䪭=ώ�Ӽ�¤����Rz�I��(7A�˟�1�����z���W7��E����o<�s\�"��#|�`����J��5�Z p�h�>Wk34y0me=P���%�����W9 ֤p�v�� ���c��ޫ���� �UۼiӏZ�L��kTT6ius�V5*[�U}a��#�pm�6>�n����G,��8ʖ�Q��Uuky��K�������ְw��ь��֑���)�� �rk��gO� ~�I��]�q���10%�y����^#�]�G�f�x �ɏ�ޱU�B1�\ ����� *5�4%�|������D�~��/���?o�i7��V�d�'�א�P�Dƿ2�g���%�]�,�2Iq�����f;Xwd��>���_�w�~"�^KK�I��p�ua؊���W0�έ燗^�O����>� ����iv7��a*��E�����{�^3Z�V�e�z�*��h�g����S���A�ӱ��Z�����Q��>��_�y��&<��>�y�C9Q������G{���w���]R�r��{k�ʬ��n���|�rI�UE�P3�¦���c��h��!���#&�Ry���i�q���I��8��8�<��S!w��������S�l-!o����6�;IЫ��0� g������ �R��S��h<�����Ηl�d���M�X�����䤕���X3�ۣ|�r�����Im�j~�r�/ *r�\�X��T&�q���a���R�(�!��֎[�2��7F>BN?Z��F!H�����ǀ>�- V��A�>�6�:>F;���f��p����[�g�E�$,B�7�?:�|��i���lc�U�sqB�����P[��S~*�9�V�ͅ��qÝ�xS����UMR@f*���W�P%�x� ���m��[��H9'����b��d��zs��!��g�8-��+���"��E%����C�'-FP�V�u�g����+63�9lg��տ"+yy01߭Qկ!��� ���UN�vJ�xɺ�;GU늴��.�J�����b���[3+\6Nx�����7�g_���Gj��� w�z�|�[�Q�ɓKs��T14��#pvm��s��cK 1f^Fp�:��W���u��d�l�E8��@�>��Me�A{�+�j��}�.����*9��+�0�>�������3��vG[�?���$F��p!M�Ol�A��=㋯��&�j�E�f������A���ti����2F�ɴ���[��uo^յ�-�ݯ��60�����?1#ӜG B�H�O]o�^�nm�͡O�^ס���n��\8�ir_hn3��Ju߀.쬭u}Q��q&H�qԧ<s\��u KG]7�2�2���|���;֏��o�x氟h�%�R�:(�zW����T�y(����_��<jQ���3���Z��ھ����mq-K�Ϧ?�} nxWC���n�����V'�u8�A�֪ˣ��U����t ���*�>�����_.9:�I>��=����S��Z���1;2����%h�!�qZB"��,f���PqT|5�n�O��kk���l�j�^y8q���1[��y�2jѶ���@v�����|W^�c�IEt�>f�<�ß!�Pw�d�)�!>��k�xJ�m�0!�QC�N}�j%28��c��!���b�ABx�ҼJ��'�������J��Y��Uv��I� �XϘ0u�id��3�RK����ڸ��-��˲YYdl>R�C��7�5 �*��t�3�òy>�����p&7�!���X:�4Q"U#[7����ʑ��k^��nZ�$����J�.|Sqp�h��t5Z ;X��4��'ӑ^���5����s�5 �ٯ�kV�c��$�<I��F ����~�9�Z�7�-b`�?�?��º�>���qC��}�W����go���Wר�ODqo���a��NcC������kB�\���??8��e v�)(�$��5�]�e�k8����jW�U�r�=�����P5p5R�@O^jm�u������L��( � ��7~���V������R�O�Q�Gnԣ�c$�x9�*.��N ��L)�Ͻ<��})�~l��Q(<��?ۉux�/Kp8�y���:�ڳ��V[�c��`s�5ˋv�s��T�q���"���0�,>V�x(z�A��cU4�<�X���۳�F�`{��ʭ�\4i $���6�I:������08?2��e��,�%�hb� ���d��М���?(��6�+��H�����-?�锶q$�\�tp�B�ל�;�ޕ|���v��N�Vn6(��0A�����H2��Gm0H�_��̹ �b~P}G�D�m^�����$hbW�!��NIPv���̼�Q�+s������������H�a�UT�B��q����JU�-�{��I���Ia�U�-��f���*Ɓ�LDFFa�����2A�%�^[B��x��I���1)�ff]�� g�1�N�\�_���o�=���2�M<$",g ����}އ�*����C���'�\��f��P�9�^��k�v맸��k���l���m�pA8�H qU�I>�$ȳK*��w� �U[�`8q�2|��}?�������[_F-�sn��pP�����8��m��pH��F��,B�k;?*�:d����i7�Es4��qs(��|�&��)V����s���j��Wz}�zm��4�R��������k8�=.���j+]�xkZ�-tH��s]��ѳ��I���o�玾���t?l��۹�%rc���Zl��Uz�3�z�?�t\��h/�젚V�j�\(�BT�#|+��_��"zWE��.��3�+�-��y7ml�Gm��\��,���:��cy�ʹ��2��]]�^��{����C�����zE�>2�^��N����������Z�ǫ����w�|�˛�T�.F# ��A#%[���7���L��j���5��p�[8�@_,dGu�#�5�]|<�c��.���[υDVW�2K��g !˖�_�rF1^��X%&��O���ҘF�zɷ�v<���o�uH�I�i�F�����f��+��#8n��[Ǻ�ŏ�:��<W���E�o�[+1mO�R�����t����� .�m��wdO�� ��`����b����lQj֗p[j6����$��B��X��������63J8����*~�T�o�I?��ce˯K����^0��r��K?���DV͘�`0pz1��ā�6���kE�+(�A���{$�߶k"=B�Ȃ����JVE���f��z�$��1��m�jn�����y�<��y������z�Z�S�+���4��KW{���o##�b�9,eYH㑑��\r y�ƭ\uk�|o�Z��}��&���,��3T�'q�Ev��7��i�\:�Y#�I�Nxʓ�z ɞ�� �� e-�˧f)4D,�( ������8��x�$�������G�jzx��B�?�'����]X Y�J���EohG��q]�9<W��?�ω��2M[Ŷ>���&;-=���nU�!�lŔ��7�A�ȮgǞ ��V��7��ٮ���B��y)�k���!aI C ��j���Z�o�e�Z՛>,�\[�(h^��;�0��1��9)� �8�糿���{��C��I��ot9��..-C�y�GRA8T1���A�O�f+u��ZVx�J�:1�#��x�GZ�K�Z��O�Xľ!�Ӡ��? �r���&MF���)��%������)����xj�{�k�FkigYC�Q�h�� ��9��1�LF�v��ۭ�7��d��nZkXnl�t�A�'��I�n����䎜U�/���F�I�F�^L����pxe�>��]C �x�����h�%�6GM��9�5jݧ��;KK4h]VO�[��,[@$ʐ{d���:�r�]���טܕ���\�7�Ä]XʂT�W� �c�=��jM&���Y�;v[�Օ`��.el&ޠ�[�� ��5�"m��mv]m��9Vm���2�OJ�_�{��~&����BԮ��}�L��W���ytLn�*rq��t�-��#R��獮�V����߿a�5������Y����&��u}��(�F��Fn2��c���Z�e=g�~<���g�.�{��X��1s�z����k�|-���Ŝ�*���9hYVHل����!T�'��/�Xv��>�S�~���y3�9̷7d���A���s���[�V/�倣�W��g����;l�~�T��������������o�M�z��m�h>A��PN�r0@�O=3����^.6ojI���t�/ne�:��9j�|M�F=G�������i�x�ӏ�J�����'W��j�_X��K�R �!���$�r'���u��g�ҊI�ߕ��[ )AZ�g;�?�� 4K��K�F��bK�B_6P[�+�y�;�ڻ-F=B1-��&�XTDm�(bp0F��TV���=֗#<���C�0��`,1��p��t�,�Ih�o�m /��\��+aN�cn_Ƽ�T�U�;�/���)9s]�"\�WYK6����c-�����杝M��&(�KG��6���>Hnp9�D���"�W���ye-�6�J���jȒH좹{�[��L�*�Ѭv ��䪁�3��8�A������+|Ɲ�V��K{T�u#�&� ��c;�S���Ӽ� nme��2*ߔX���A������=����e�+8��ʰ�����*pxͻ[��Y]i�� ۫4�*2c`¹^Wa��pzt�w���OV;�=��ڲ9eKHȚ9M��:n�q����RF���wC�b��Hـ p�c8��Ux��V[d�O��x>ϴ�pK)S�l�W���s�;�gp��a�f�$�O�в�`3���29u�f��7�����l4��j_�\[�m팓��袵���@vm��'ל��i�|��I�|��� ����J��=�)f����Kqn�q����jHc�n��d�*�V:}�m���VH�S��̲`�p0Tc���8¤f����=��ho�MQ����IBF�(9��r�09�E �ޤw�=�9�u4m�#�<�٬ۍRk�k���E.d����,�Npvl�����xռI>��-<�"��ޠ9S�f��������{l�~�zU�zĽ�-�~ؖ�1k{#��a�b2~a��$���6�En-�XOk��Wy�g,�g}�3�j��ܷ�un����>ZG�w/%�lm���^A�zpj��k�X�&�%"#�D�7vI;�|���qC��tV����:mNkK�*�rDL{Q~u!K��p��������L��M?�p7#ػF0�!�q��Ea[-���R:?�� /d?�6,��`�Q�8�3������x��۰y��=�mC�2�a��FJ�zg:R��2V��"�<�uvx� K���eڥ�Q�;�7pv�+埉?u�j`�..#����]̀'������}�auP���H�����#2'����l �`c���\��Ŭhz}���Rdu��aŻ�.�X�OL䃃�Nk������=W��jW���Qy�̴c"mr�c�7Ӧ�5���L:y���:�y<vS^���|�Mq�� ��$�>[�UU�bg8st5�W:DI*<�utB�(� ��}ھ�����4t�9ꪑ�ܒK�s��s<(��e`1��<۶k+T���*B�A*`�Ȟ� Ncs/ �F����K��>��m��ED��1��I¨��X�a��G�y�5�B�b�rԜ���f��^�8�[��N�����1�"�r��+F�;��۷�j5�(D��a�@�s�M=�.��`P˸ތ��L����j�SW1r�!�[G"�Da��˝��w��~j��k�x#\MWA�4j���$��t�#�z{��!s6�V�Hc��߾:�O���Y���p3ۓ�$���S�B�Zn�U��OTc�˚4}���&�� '�\ !�me?O�^�r�\Z��W�W�ׅ�K�xWR[��I�|6�뻜����{���_��tE�yr ��Px/�%9�~����V+)���f���������u҄ݤ{TД���&� ���QV�7�W,3�k>����y�k��Y�k�G����(X���� �=wt�oR�1�e�&9 ���^�^������ �mjzݲb�kK�<����(���NA>�r}9c�xy$t�۽�Hk2����(+��bȳ� ���S�i b��늎�@� s�Ì~5$A�B��砨����G����֧����>��҂���j��u�DVF$��<⪝މn5�p;�q�z�0�q�Lb��Ԡw�����i9C��l�8��b�k4��^{�6�$y�<u5@����Z67{Ss84��L���[�R1�t�^th���������J�Y��n���.nb_�y��֓���S���7l�i�W+��iC)l����sm�� �L�*��oY��{�[�=3����b+K�n���XX��+���? ȹ�!VhњBǀ�b����]��|��Q.�8�fϡ�L�u %����0,�� ױK!���V%M=��R��Y q�29f��z�����'�D��܌j`��������� ?� ���j��Ua�l��I9�g(�эOz)/��MV�j"���6��6��e�=�q]_�t����{�(f���g.W�_n�kD��N����,Q��7��=꾨f��[�XͪȄ���t��կ�/N�Q���L!k'vP�lj��(%{ �}���p1ߚ��[�o�?Mux��g����Mj[�9��Q��>�,����26 �|��Q�'�����n�n~����Y�[��:r�4��ZuT��)�9�`kk{x�#%�A���j�t�ʹV��fh���(���Vp��/0g=?�t�D��<�|El�f�%v��^�xO�}���kxa,��.=��OZ�]�|.-�`���%�e�TQ���j�X����^f'5�c*Zsvc�KDcͦ�[�jcV��ћ�k���Oa�*{�H�%�����[۔�'��5�U�N�h��:���w� �M�l`�c��m�n/S�����6��`:�䃊�JS����Zb��:�k����t���j�'BYc�'$����Q�rPyjy%�J���EYk-��L.~�J�m>� �g,2FI'���F��@��?��sb��!���$g�v��8�l\(��ԣ����ݟ/��ȿv�~a4���)1�S�<��a�#0k�]���S�ʬ�FPqV�u&��%JO����f��C��]����U�.��c�Ӆ�0�VT3d�v�ZI9���_K��E/t��osV9OcX�S�#�8���!Fz㡫1�>��^�h����߭O�8>����㊳�����j�)3H�ՆQ�S�'�e�/�0����z��W4N�>G��R#c����ɒ:T�^��B)Cs�x8��U����H� u�Z�Hd���x��@�~���Jz�� Pǜ�9�!�p9�ᚉO"�<��ց�x�������n������8<���4�;�Rq���������kP�yuk3����1 �y�����ڸ<��O2�ۢ�b(@dw#j��G���-6�y~�-ʼ���J4��ލW�* ��~��ߵ��[y6�d���t`B[��L���m����c*�F���G��@���� q����*�*�����#q4�<J"I-+cp��ap9猲��ZIs\!�d!�6¨nz��~�yo5XB#�1�WS��2͔�)���h�I#�'�5np�����d>E�Gzc�p��w2��!��+q����� 1ȶ���pFNŷ�c�,���p�n茶d���u!u4 ��(��卿��@�]�϶OQ���f[�'��Q�0!C�GB�ԀOL`O��]ӽ�������:_��I.�Dv�,�o�*�˅�;�\00��<rF�!���ɵ�e�XM۰Hn'�sVOK{x�����>坃!�\���_��g'�n��4�|�T[�24�fP�1�3�Hd�'�S���P�܊��a`�ZY�d�;���pU9?6�q�Nk�~���H�r�庢�*��Rx.۳�����ſ�^��.ӿ�\�Si�ݷ��1�w@a��*�Tn�u�a-݉r.�*~`=�t�T���������0�S��N��,CSӭ���&�[k}��������*ņ����y��K��ܼ>k���u�%��a��* v��ym%�%�� b>t#�����q�<t���Mn�O����n_dhQ�������)f��1q�����ũ+Y��"ڬVf8��� ���q�E��e�!��@?tവ����D�X���8�̎�s�$F�3ul}�`d��q�=.+i�<3HP4� ��2��%A�k��X��j�[N@*^��H$T���vVL����)Տ-�N,MWJ��kK�&Kk����I�`���6X��@�G�em� �5K]-d�[w��67�L�I���0�������i�Y&K��-K#y�Y�E�F�ʂ�f8�''�V���g���z�v��Y;Imp��:a�����Yy݁��Δ�����,����]S^��ɛJ�W_���|s�k��g,m��� [��m�ؠ� �[ �eARG's�A�����-�=�N�ԱbX�1����S�$�����&��%�|!e�h��J���f�`,YK�Bw�y#���M��?Y��&�cl�&9������P �I�c�B+٫Bi��S�-��zjJ����g�_���7:ı�Go�7SYK2��o�.w��m��q���N�Wj�y��B�fE�$��8�����������5����1�;�ao�����p1ߥy���=z��+��ۨ�� g����02H�#9>���~ҋ�N2I=�m|����_��'v�k�}/aX.a�%���� ����9�s���;x��+���|a��|@�f� �f���&Q�W[ir!�vn;OZ��*��2\=����.�*�2|�˸�$����b�b�o<=ս�NQ~�(��eC30R[��Fp��sQ�R�������I)hy}����âo��-���ز���t��p�$�"AO�F��^�?��4�Z���Ҭi)�6�Q�R73"�*HS��'�u�+�����>��֩�w����;In�Ձ%���䏔pv�د%������қ�> ��ѕ$1�[E���Z���gv2�nW �n��oB�j���OH��+i��_������ ަ��Ǩ����."�nt���햯�*�F����1�#X ��&������G)2�m������#�<f�#�!��^�I���5핂^I��NXc�<�I���������^���Zo����V�?X�/� F�K��H�1*b�G�*v�F@8=�F�r�W����ߓۥ�L����,�>է�H]bkhq�*2 l�dne��M@%��[���ȱ0�dH��������2U����9:wB�M2��� Dw��q_%�(;wI�8�Ԋ�=��[���B�\�X��.H�u��u������I������$��fH�3c�A����mu�A+�ji�P-��c-�H��8b�zyC!C`q��N+z >��-�����`�$i���NM�FFXm��5Bܬ���_i�<�>��b�bp@$�3���X�k�_������4�.f�cHܐ�%��ٓq FrF�z��9��T��O�k;�~���w1�ke��s�+� �����-1�$�@g�\�����S��:�(�Z��ء�I�v����Y2q�d������ j�����1=�9�n��r��;�sdca������ӂ8�������5X�es H]e���/�>�����uu������>sn��x<e{㝫�ީGf�Io�F����+�+>�A�<rk7U'o��>�[In�����D��2Ko&�� 'i d���#����,�D�������W 9��`j).�nQ�6�{���rS�꼒ʀ���2H�9_Q����o2in�T�ͨL3|��G�8��b��Ke��q��i2�p҅�8I"ȱW?&�P�ĥs���1���l����xg�r��(&Da��q�B/C�}?~�*�����V;F*�0�!�0;[p�s��uV���2-��u��"��0�O�� vW��z�*�baZ��'t���zz���fO-������$�n.ʖA���u��Q�g���"[�,~t_�'����ӌ�l�cu����f�I�����p|���T�Z�5�Kkueiuqi!�1$J�%��Ӏy^��G��RW�����e�G%�S�r�Wm�m�2�팜,y�@�N�$�N%�g���o�I��*J����3�������oy�_Z�Inf��E��lp��W��^HSЍ�5v�+,�:���K;�LO�*�O*H �g�$Ҍ�����������]�[Z��ِEm�Pp��)b�w����M����Xo-Z�g��]�.�{���]-�Zm�6�<q���b\<Ь�LeN���s�u$�8�ՒF�eI���=Ēā�\�����s�R��w������R��`l�O��`�^Hd�dA�Y��#F��jƉ=����P3Eù�eWWwt!�t빲sVSQ-��ƞ`}�f �1��ː=�2�#�&�oi5��[#G#rU�vn�F7A껿 &.<�ֿ����e���[�KSA�����ےx,FF ��gj��u�E<\7���#+ �Pw�Pp��1��U�{�.�u�� [ݿ�%��b9另1�x${[���p��n�9�b�p�2I�q��(��yW����e�JVf[{Evk�%�+�u,_h�<3S�K��~��t�H.��{{���D�'*��O;N�3�Òz֦�Bq�=�\Ƴ9��l &�V��G�aֳm���Ö� �M�DXɜ6��`�:}i<C����b�{�� ���^;�.'��[6�\��hq岰��Ra� ��_�����N��k�h��C�l�d$�-�,�A�g���60}�I�D0ܲ��)��|s�rZ6����qM�&�,�Ku�i�T&y$�\�%P��*���(�����(O���є�ٟ����q��&�y[D�F�%I$�c���V]��Nҥ�i�#�`x���K�����n��ZC�F1r�VB�Tr�m*�������!{�]I���g��JN[nHH'�=+���-Y�>��rV�Y^�۳F���as�O8�;����R ���Y7`�ml�zdv��ri��$D���������i�l�V�_H�������85���dSx��\C�nT�'�Gѱ�AL����UT[��1� �g�����l�ڲ:��ۃ�F~����˸��6�g��(<�������jK���ᵋ{�.?�9$���$p)�E�C�i�2[][�x����Wc�X��̶{L�p�8�@q��Yqh�fIR�nr��i�#�j�&��i���<<�+����H��$��^�+lԣ$�a'���W��7V���pA�����Ӯ�O=����3�5\:c�O���fo�j� �W�g$w ��OC�5���:����an�+�_�}�N����Ϫ.�^"F7ޠ1��w5sF��Utuua뚒��(_�~o�̥{O��g|��Td�@% xϽfj��d@z�ٸ�!��s�W1]���9�RWn�G7�$����=�ռ���H�뚽�Y� �`�۽bH�Eq��擊��eې �1�?:��J�4R,J08�9��+��v8;�r9���y�N��iJJM8(t�A.�����#9�hP��U��G�q�R����}������;[|F����ף��|RID4: �#F �h=U+��X��@=W�q�!��f�����S\����#%�^�v��u5�$�4���#�����䀒���&�y��;=����z�¹K9d���|�zm�s�W�P���@U�L�1�~��<�4�!)\���,�2C�������0i�4Ѩ��1A�t�+c@�ʿi�mYF3��������Қ�v�~�����t��kDCWL��I{�{�kp����c�^��=^K^���6H'�TzO����9�7�1�W��+ �E�W*����3\-���B��e6�n�[�n��� �;;��!��B���0����E�m�F�"p1�WQ�h6��P2{�6�uB��bu$��zo��Ei�� ���]��|�ƙkq#�9��\��D���*�r�O݀�x�slV!�)���klP�<7mi"Q�9�[@R5�-��Ic�UKnp� ��Ք[MjR�,G��?Ju�G���U�.R4 7'�V]��Q���rMJ���U�3R+����< u��H����k������:*�rwW������cƷ>k�C���y&3nX�cV�:z�����p�"�g9�X��aY,�7��5�'�>/_]��=�¤�����/|_K-em5��X���ހ����~U�tx���MZ�x8� �IЃ�G��#�n%a����RF��}�7,Ğ �cwo{d�V���J��H�*F;ƭ#.xc=G5��ӣ�cf����|U�b�J\�Ȟ(�A��=I�J���}��*���I�^x��J�3���52M�x���'r�0 �݀����$z�2�c�4�'n3�Gs�V2�i�����pjx� r0>¨+�$�9�Ԫ�1�Ӿk=b�tFf�3��j ��9<��dr_��X�^}�GJ����ћ)0���9&�E!���!������1M�Q�5�a��p�?�� 8��Đ9T�H�u�w�j�+��HՉ���jx�'��z�I>oN��f)W=G�ҽ������g�V"�����TR�oj��p �Q�i����Ա���)=rN�q�W�N�e�U�=��x�z�����{Ա����]1�ƙaX����'�5 1���9�Wq����W-㫓����M]2�y��\w�@?�����e���j���u���N�Q��ۋYl�����M��?)���R�j֚A�Fh�}��o\�,,y,r���Y�����&Gf@7F�!2r`k;\ ��ċ8�d��8��_�J0��������Țe��]#�0�<��!a�wd�6�guf��)��$��Y-�l���˒�����o�$�/�^VlDn����2�z�֞R��̈�A�u.�l�_�(ϼ�y-&{cW2ʰ<H3��c���rzf��8~!�,%(�.Y��V!��;�\c�Z�b��Ķ奔��� \s����#Q������!H�lX�͚��z6�����VeK;מ�I �k¯�[�Ut<pArH�p8"��f����I#� �� '�nU�z`u��IZE��٬&�1�%I�P~��2D����L�2�`*K��$t��b��������=��n��+}?Mxm����lE*��X�[k�;�Vs�W0Z�#Gwko�32� i���c���?�cޮ]E�id���I�*�|����^��6hchm[e�`�p�R};c����������+Z�4���od�2̫���Fa�pI�H�K�$��[���-�ќg���L���;[�o8��H8F8��K�!6W�Go�'i�ל���7������ȷ}�Zj�\�j�WS̛^i�&�`�����#�\忂4��D���ؒ�8�,�'<z�;���b���M���$,��\�|}�;�j��?�%{�R�,����C���t����� n;3���-��jP��Uf��N��ʌ���P1�����&�f��O�)����)bx|�k�ݷmea�県�ֺ�d�~�ɖ�#i8�ϯ�]�uk��b�Č�{@*ܖ抔*I%��*S��Z����+5$�g����)��>xI���-ٷTu����&�?TҾ%x�V[���ܱ�x���؎�q����|W6���s�X[�Еx�h�����⋝C@�"��vb���Csӷ�{��HQ�U9=qI��O�B�/g����ݏ��~�~4�n��_���Y�����������p~n��{��|?ៃ��b�Mմ+[�9��n$�\�y��$�:O�a���_����|q~������*��#�v����Ū5݆��I���Q���w�jT��Z���u{rzY5/���Ir5o+�����y{�_�ڗ�|7��M���-��W�,�>�����Fqڼ����3� ������U��ȨA��xǥt>Ѵ?|��WZd����Ǿ�CV|���� �~Š�;#�.'����ҼJ��`��(�]9^�wiݧ�� ��n�z|��v���è[�I~��e����`EP� ��5��Saa�^@��ƣ`��ňe*U���5= ����d�~y^x��K�J��frZ2�?v��ӭq?�E�������w<{�Vv�n�}e�jZ^����x�%��m���%��T�NW����ҵ{[����?[��t���8���FӇ�`�s��q]���m/!k�v%9�$�'#�28�ҹ}{U�5��6�u%��4�m�.�9�䩏��#�\��崣����z|�_�]"����S���y��\jז�y3 .a�ϖ����|���jӝ���'��H��ndS���\r=���?��-�էק�d�k���-�0G8Br3��y���>0��f���ѵ�L0�N�D���sמGsֱU*�EE�����mޡ(-�D�!��e��]��a�~2�OΒ+y�D��f�iD�P�o�O�V%Ƴ>�'�ַ�8��|�C��^�I��±K�8c�>�.�#d��fO,���.��6��S�m�Ʊ��!Gu퓞? Ž�N����kK�R�#��5�ۑwTz`��J��j7���A!c7)�C�O�W��6SYk��^ڥ�J�.��sc���+��4��/����.\a)E�=?I]P{v���,�KM�(�9���T�v�&�f[��;��j`����@p:���5{] ?���ԴBd�k�2 ���Q֮��vq�}�S����,�-�7��vbpX�t[�?z۵�;����s(ԃ�����x���w���.�����K�tzr8���@�%���w �"���)�+�����5���M1��{��ՠo1nY�a�q�ٯ<�ǽO�!Ӵ�(�\f7�/�I���R ��Q��)�.�R_z���3Y�_MOm�Dzki�$������npO��W�|I�Jxkím��Y�i��~�&=H��������Oj�}�O���xʈ���z�Ҳ4����U�}J[y I���g���ya�q���AKUի5K��G��+�)O�����o�Cx��K�Q��|�+c�=�Mw�wm&��o���eX��=��G�k�>�;O�>�.��Rj:��/�w4�Ѕ�q����mk}��z��wgc+�3�XBx�K@=8'�g����*PM�]lڿv����⤣}K���9/�7�E��.�m����>���2F����1@�L�O �px�kI-�����)�����n�5�ƣ��-]�s���zt���5� ѧ$�������� ���%d2�YG��꧰�c��U���)�VH� � ��"��2t�eu$=���MM{4ot�\D�IX0�ߎ 7V���z����sl�������'���7O�SCs~�J~����6}���ޙ{^F�ܔ�V�]s��?I-��bSu `��3��~u���4�U�����j�<nA��-�H�y��}Ҡ�NjΧ:��4��W��J�9�r��jȎi�Kr�$@M��?�Zm䖐lC3��7�M�c���\��P�n���_�+��%�Q�c��d�rW.�:�0:qY��4:�Cnm�)6�Y�l�?\j������\ؽ���`P�w�G^��)�����u��WC�;��QUU�7ˢ������*;�6��2Om�_1[���{�8=z�Ҥ��Yl��2V3��@��$����F�s�C��β��T��FSԷ���*�j�|W/��[�lr1��ׅ������o!8��Kmyk�K�sEn�v�3�i���\W���j�}���S�����U���}k���i%�wrY|���sӜ�B�R;8է�k�܆x�����UI�J�[]������>7���^�nn.l즹������99����י�~���HWg��eFy�����o��j7|3�#�'���=>�?�����[�59��#f� e�1�c���5��?*�t�>�®IsC~njI'R"%Ԍ��������fKiKcj�z�֮�14SbX�JF ����������eIp������w<�EE� ��C�e�eVl�� �}�-n7��B3��0�ԓ�Z,k����������������Z%��ͽn�+��T��J�̼`��r�,��n������N�G<"��u�#����Rm��bB���F��Ƿ~�e�/��u�]m����� _^xS����sE*:�m9W�q&�]�2gq�{���_�/j>��OԦ�m06�Ųa��u�θ��)c��85j�WO3��c��U3�K�q*��{��q���f�Ŷ:�յ�H�( ���O,iqA��_�R��0=�e�������Õ��=�ݜsm8�z֍���v����둃���fU�� Q��s����E����O��ƌYY��`zW��� Fzt�o�::�.�pq��R4j/h4��O����h��`"�ߍr�!��9�" �3<נx��r0| *�$2�>��ׂ�)%+ H�R�f�G�+`'�H¤g�.|Enn��,G�_ӵA?�����@�'��銂�ᾮn�4�7ǧ�+����$���rܐwb19f<Υ�2J��4���/��oă�x+���G�����$� ���[c�;b� 'A�4c������o�A n�:�E����D���֭����W'=MvqX${F�>���#����_5_4��KCD`�� ���Gs�Զ��C�c��n%Q+�� ���A=�:�=Z���#��ܪ1���4`'{zT�h�$ ����+�Z�`d{�JVj�rG�H'ރ*G���zW9�x����.�q�$���i���{m�5�C,��]�������-cU��H�\ޥ� V�2�_Z��o�B�b<�3����şuK�[̺}���l �\��1�u�<���zE��Mx���d�E��Ns^S�_������b/f'$ׅ^�7��z�<�J��ɯ���;��q��<���"���N�Ğ>�5Y���L����r�쭆s����7=)�>O���_OK F��by�r����++��rO<��;�0�T�ezc�N�����5��fN ���/��U��αv̖��>��k�x�I�>�.���X/�a<2L~�z��6 q������GA�#�ӮLr��g����#��Nq�}���e�Ƶ�Q�������}��$����8���r{q�s\�?��%�[]m��@7#�=�wa�WwL��_��up�:���G� �MZKu��!�~$N��m���]I#���pb�<�\m�E��\�'�?z��2??��UW�pq�Ԫ����5��:#2�lv�21�5"I���j�d�X�}*Bǒp�eM�PЊQ����9�\��$sϵd$�n��X�L�'NkZU�tFf�Lx<sϵY�Q�U�k9J�ry5n@ �E{Xlbf���K��ҬG(u����$�OJ���g�{�1F�F�2��J���YI'o�5f)P;r=+���sE#R)09�*�R{�\R�A�V"�����^�Jf����=852>x����=j�r���{zשJ��w/���w�# �R'�j�7�H����&Z����ڹ�`6��{�����#�zW)��u�����MS�~�׃�!�7^Z?�ʫaK1+�}��4��?g�(�VL=�=���)RF?�W�M�,��p�;�c5�ci�ş{n�����ʎ���a��oҫ��Ag�#Ʊ�6�o=?�%�ф� B�GT2^�v[�nn���VJ��_�Ȼ�I=�7�\��ǭCy*ц������\S�F��;�q��A֒�ф�HU�>\s�f������4oa$ASi\`���Il�QF�ʃ/"+s�^�V��I�@����.Z����:i$�� ?v�s��������ݐۅd���,�@1���Ԓ$�%�-1 �'a� zƠ����%�����j[���xa�CƑaH#�ۥKi���5LM>2��-�����O�U�Hl��k��i�#��I ��柪$�g�(;;�О��q����*"��8�Pړ���{kq�e���7)T� ��,�mG��3�Ϸ�S[<�\�2 �Ө'�T��X�2G)f�`z���qu�"6��� �*G9������������O���}?1V.����=[�*!��<h~e�V��qObn�%��d�I*$�k`r��Ҵ|-ᵈ�����f*�B_1`J��������2$!�G�5�'��J0�A�+5f���l�Q|���F|>����%��$K0��3s!S�v���w�߳lv�Cw�.�����۔��~�z��6��=J=ua��lIa7^0@���o|S��A��Ak =��d���`+��b���B�Z�Qv�i�ה��勲�|ދ�5��{]>�(lckx�HX�8 ���� ��K`�H��n��q^\֟�K��]Co��� >� ���?�����\�>E����b���S�i�K��p�5~���z%_>D�p~�Z�����7��G�ˉb�e���r���fev��\n9�~y5�Ꮓ6�����I5�����qְ��b��q^n���;B�_<��X�sx�������L晩XZ<QEx�qH�����LJ�-M�.ke�yc|����g��h�dutN���[<<�*�����1��5x=4�<;��-%�!��Mr�q�s��XkMOĚ��p��i�7� �E³0���ϰ�<W�9��Yv;���5���i�����w7l\v�=��u��nn�>����_a�����;�8�@�;z�B�ks��x�1�Gןΰ�O��Hl-��r��RH犁u�Z?��,!��K���<�;cޣ�M�ˠ���c�KC"�� �1�ު>���H�rs��>nj��ͩ��vV ���=��p��r�ִ�������q}Ĥ�����2���Ί_��Q�>�+�i��$�Q�i������1?N+Ԭ�7��I+�����jD���n��9��۟Ό,V_�T0�ɸ���I����/K��ӝgR�4�ϒ��q(�S��([��I����_J�/��������\��g̱8������5��-���4�4�9M�S�eN6������^�\�+���+�Wrce'��c]P�[٤��/��y�_�Ҥ�.X���Wƾ�D�J��WW L��=�AY|a�[e��C��N�n�#�ޭ|B�<��s~f�[¿�#�[����\*匒'�N��%9�j�y������e�Z���<#�v��<c�X=ߛ�U�.���9��W־$xF]6����\Ŷ\FP�ߎ�Ͼ��xFؔ��=� O�zW�O��&Ye�jg*8�k��ͤ�<���kG�[��|�� ���2[�o�e�ۄ�]����@z��^����W�D~\�&�9$!���}k��W^"��[H%����HМ��ֽ����u/ ��ʑ)�9�O��a�)Gnw����k-N�M� �ޡqbG?*�`7'�ַ���{d��Ѱ��'����f��hc�g�d���~�Z��xr�+�$7H ��k��I;��%�lkV�\�����ݧ��x��K���ZI&R��B�������z?jMs����9�'_cT�����I���n �=�D�K�Q����jz&u�i�Y�0 ��1�����[�N��v�D���z3XsZk�1$dF�d�/��u��o�K�|n*J��W�-8�R��3��m�7H�9��� n���=�J/�ހ���^��b�zg�n��U�s�jė�io��c�~��1K����/��D�92�� ��������uS����'�oʪ�^#�K�X�F8��d���Zn�m%��52�O�Z�N6�D٭�p�R�Ļcs�^�3�S��o<v�\}�9�۴�1����5�ղ]����r?ýW���]��P���sӞG*�Z?��m�aqk=���)��s�}�:��xn�S�e��Yx!@FI�{�?�m��y�y#B�=�Z�m �^4�Yb�H����U����]���?�E"I%�2}��wĹ�=ǯ_����$Ѧ�o�Wl�G]ˌs_��L�-�8��Q�:��^Q�O����^LB��8篾k��N$��J�%�wFU���|v��3�I=*A��B}�����4I�B�U'��s.〬��S�_�R�ӭ8;�x�(J��d�S�+=�llۥJ�%�0�I���)��D�� �پ�n����1I^�I���2z��I���'"��w!�;R[���[�T�*�oS���M���G<�Z{7��Tz���'ĝ+�:DWVw*ᗑ�A�>���1`w�=���s��S���w�t�"c�ع����_ļ%�ͩ��\�{���3��c�7�?��?I#�+��9����@~���(i�%�"�9��<d��~��e�w9�6�,nM��9���=�EM]��w�� �N��Xry�WK-����+>��L|�c�ֽ<=|>27�������*9��\�G��]pTc�J�-''�z �+ ���cF�^�� K�����eq��jѶ�!G�сZ�(��Α�T�����N����*�H���b�۳�N���w/�.�H�9�F����V���m̓��0pH�_��8�� ���c]�Ť��z�꧃��v�X����5Kx�F}�T�,0e����x>0ivFM�>c琵�^2���^����T�M}>[���M�Ց�[B��-O��C�"��X��;��/��x��e�=s�|�x���V2O#��Շu}<�[��.�|J��<����5c�<W�kW���hǢ�k�ռKyw)w�ܞ�sXD�����>]�ëS�G�V�Z�ߕɧ��bK��$�'�/j:WjIld/J(�)8��N\�z �&����*1�9��m#�;piT�ұ6,`�����jnp M��ҥ�M-3P���Iᙣ�3�u8"���_ŏ1��u���*M� ��Ҽ��4~dm�O�5�cp1p䨏3���G��Kf�_�<����w�B�F��rj��FWp�N��<WΟ ~$�iGi���[��HܲC�^�j�Z�����Hu�5��e����]c���N�|�������~f�=NG=�y���v2{�{~�Z6\m99?�= ǦF9�Ę̲���P�qS+�s��}*��n��1�}�@�0ea�����o��gb�N01��SDHL�NI�T��=s���i���9�ұ� �2�R�x��X�r�ߥg�=}zԈ�Q���L\��s�36`�����U�f9'5��0xU��\�q�A�9�^��f�F�R�=��Hs�s�MeC(�8ϭY�^�8=+�0����jG&:�Y�^1�ҲⓏ��X��f���X�ԎC����֬�'���\r�ۑ��� s�N+ڡ�O������< ��ݺ�L2��=*���<w�Z�3U+�H���k���gV���`?�&��_>���<jO��x#�o���+T�3��S�o�F�'i���5��q&K ��u��2��BW���Y�M��:W��luuZ���}��+��#Uu`dF<���Ck��G9<栞�InT�y#�_z0�ϓ���]MF��ɚ8F��pW��LD��p�Ny��R\�\8ʧL���Җ�UVY<��J�~�5ewk �")�%%u=�A)��_�}�A秱55��I3��u�Z?)���Tu���N�a�����P��ׯj���^nTܘ�O�H�n�����/{F�cp�$ܖ��}�n�@9Xԃ���5�es#+��b�Iu*�^s��P�L�6\`�:�4�%=���.��������Ԟp7BS����j�Vq�)wv`=��Z���%H�8ɨ�)5� �H�k{�0e`à?Ҧ����E[$��S��d�,�{�^� ��������}����er��2��%��"����n�^����8�RM:���wL��kHI��-X,�[�R ?Q��MG��r�矔g8��|�a��84�D���b3�G���M�E�ɦ�"��� n��]����䟥V4�$non�5����!q~��78]�©W��Q�"|�ow�����U�c_�փ-����<�u�� >���ZO�<'�[��}v"��v��L��ֽ?ƿ<;�D �K!U����|��[��:�gXi�oh[�QQ�Ӂɮ���E�by��\ZV���:q��j��]nt�?h��B��m��]\��$�ߡ�ҟ�=x����Y�2��������8��R�5}~��[�����<�^����6z�Z2��D�DEpq��N�3R�ӗ�IY[��_������_#i�cݽH Z��{���&蘭�Y�ik]G;B7y�t��k�k�udpA9#<�V�\4�9�v*5cQsD��Aᘅ�ç;$m�0�� �+��4}~�yc�X-� a�e�z����۫aS�NH��;�1^]��T�ǭx�0���Z�B�����5�=6�t�p�����I��'�w6� $xm�;����@��e�F�Y�-�)�z�Gon$X�)Ek\3t����be�3�v1!���SX��#��tҪC{��n��x�����>�뽻��3�ԴYm��.7��?tצ|?�<3��k�>����ʳ(fC����i��z����6->M)�,b]���=;V92�`�: 5(�6�7k>�v��-)�Wm>��O�\�|��o��#F�IJ�#'�sҼ#�5��Yl�㼜$(s�O�+ڼY�'P�Z�P���I9"��߀�+d�$v�ѱ��js�N�IT��%�ɫ/���GU(҄�������<P�)�kkv�grX�\����>Mz�˪^���Ux��^���ڈ!�^�>�ˋ�K(�3r;X�\CvRQ_�_������^���ᾇ�`b���2H\�+���Dr� �G�ָ�x���YE�p���,��l-�[�&Ǯ��VJ7mA6�Ϳ�6����z��co8Pʌ��I�e���7C9ɯ�e�/��P�t�6w ���;G�}k�~i>-C�[�4Q��$���sҺ�k���_��-Ҵos�Xy0mRrG��j��RH7v���Z@�E�rw�55�ܩ�c=zS�.md�3��q5ʣ$�#'L�֘�A,;^2 kCP̌m�֘Ȣ���l` ӕF6�+����>��݂H�=i�z��Z1��:��Z�6����K�{N�5�n�,+��Ir�%s>�+u�)���P��{{ⰵ\��,2�����5�]�*��\w�iVY�L���aS N���*5$�?M�+q���'%�{b��i:��bv�����ze�1Gb���UFQ��wn��K+ܥU����T�\�����?�A���oe��_�T��;�z��)H���Z��-01�9�9�A�X�*���W=���aCKjͼ�s<�j8�4ה��23���1^��h�OI$AC��{t�:����ơ�N���xJ���ԍ�x��o����p�r� ��}� ���w�/t���a��0k��� +�D~XQ��k��?Ý3R��e��P������d��#�Q7T�*Ǖ�It��ct$��4зB�^��c�uż��i�J����^#��U�Gq����3�`��R�={&#^�K�䋷�>�S$U�>��f��.0w� #�r�{!�gٜ��tiL���P1֣.��֨���������Sd���!�m[Ú�_�7F��z�����?�q�ݿ�x���J��;��1���X����+��-'he��:b���p�����3���.�T~�hzŽݺ�r�h��˜�1_�$��o����_ $kǟ_�W��S㿇�XŪA��Wṯf� �� ǣG���P�� �v�c< κtQ�r+���.�p�K�Xc�Tw>6�e�^��W-Y�5�����s���ULn��=OY��&1�\o�|weD���Z��K �yT��9�w/�1��'R�JQ��=w_l�Nz���?�-U�.C78Pk�|[�k��}�L=�+����F}�I�_�e�B :��V#5�t���-��sp]-O����8�����e썞��K��e���U7[�ך�\O�ëB(�+c�U��\��g��X�<�ǖ4���Bzьb�G܊ ₸4b��<��;R�I�h�4��\P�8�A������ SUMM�x,�|��y�"BO9��Fo�*�(��Mc)��!�����Yh��8���@ʎi댁�FzV�ށ�,v�. 6+��m�S×;=Ŧrb���_�N�6�'��K��R�,01���1��q���R����8�#� �:6����G � ��Z��G<t�q_��iS-��,@.�8?�{����ӔH�dۃ��W��# ���9]~G���U4�a����r�H__aOV�P:t&��t��>�d�h�;d�G�UWR29�}*"�R*QwL���t��5f�2±'�¦�رQ��~�N7=�:�5">��5��&���O'#�L�?��R�`~��A�T��<�u�SDā�'���S�ΈT-��cwA��ju�`����J�#��ڤW���s�V../C�5 (fn9���r)x�q�X�˂O�1S�.�N9�]Tq2���36�qU���==��_\�����J�G#�Oƽ�.2��H�Iz�銳����㐑��Y�B[{C��)�����P�=k&)xO�Y�\+���T�h%8�5����c��~���/;�c��E�ЏwB:�s^���;�2�Tk�5��������^������u7n����^ p�%8����ֺ���m��"��;���ܗly�z{��t������`����Z?F�Z5R����Ixd�R���:r*[p&.�^�f���d<���}@7�����2�� ���)?U� q�]�������M*[��Q���V+���$p;S&S9 &��Ek�I��ie�� �T(�4��<�֮ (T0��"��]��x��j�ùZU�11d��8K2Ās�qWc@#P�T����}� ���u�q��.Il!{RҜ��9�*�r�b��3�u��$8���>��3.���֎2qHZ�3�PO�wu��18��ۣ�m ��}���y�.��9�j�ME��e�$����9�����*F=��V\�������>�EJ�QܘNe!NAG�I��1�ð�s�ʠ�dc✲���y���KK�;��:ԭ2y@�U�z�^:i�c�=kMR�V'��㛌�ϯjѹ����3�ySިۺ�~N9sRG!����zӧ.D��%r������!�z`W)5���j���5�$ci5?�< �Cn'�dVp�ڵ��ã�,w1� &@��� Up�4����c/���k�O�O�Qr��t5�|O�g k�Zuьo�����e$���4ѥ��}3PCql匊pS=� _��w�&��Z�4�2�*�����MKT�[Q�f,���_�y�}M{��N5熧5R�Zߵ֟=0�8*��Xߋ�u�`G�Y]���[��:}H����kC��A_fX{���?�l��tWcoo�#Px���%R�*j�]-�v�����9`�)|�?{ڝ!(���9�c˶ң�Xo�>x�� �������.|�/�1�*���/�CJ�3|�\Wn��g"�V�-��c�iA�Ms;��-&��RYħ�F0+u����9���Q�084����xQǯ�N/�6[���D`Oʠd��錙;Q��>O�4����5�4��C���� ���0�u��})�%�@V'm��Fǡ�� !�r2G�]�$:�R�xq�/�.y�+��Iaqs�59n�K�Ynp�����K�Z��On���*���W��x���%�h��:�H����k�bz��R�{\D�o66#��b�f�n��E�_=�#ۥ܂8 �¾�<�h����Թ���}ۣ��������7Ή5���]y(���ݲ@�5��7ঃf�I,��@?��|͟^k�n�,,��@|V]����b%�D#���䮫TӲ�~�����h�Z�KH�b*"�508�7ֶ�S�B��>2��a� ��+��5����\զō��@���gN���J]ޟ��'-ϧ<5��k��n�$X�����x�F���b.�?,�����~5�~��3��tqo�i��<28ܣ�]w��O�m��gk�kݧW!�a�#^K��ٯC�k �q�L�VۼFp�[C"��;�ɮO@�lS8�X��A=+�K�4`���s^*�o�uY�/4Y9�l��2�?Ғ��e�;R�<���]�����E`�����i%������zgz��O��B���֊م�ZY@��7q�P5��ޤ�_Z�x�4��n�{���M��pps\uirI������ c�Tk�\�����4,"??~�����a"��IE��R��H���Uq�ry�E�Nq�g\��}i��d�V�6�ݚ`�-�f�B�J�qf#tl�0@54�cr��Q�Z\��!���(�=��j 멗�iV���8�W�|Y�W�l�;_��/Z��l.��n��;�.K�����+�T������_�5���C�x+Q�o+�RS��(�>���XƋ�+�Χf�<ѷ��s�|��;�ƹ�H�G�$_s�q1V�U�϶�q�l$$���y4�D��z�{h� `���Zw6�$�f��N��l��d&��U�V<�R��s�DT��{TQi�S�}�֭�o�'�WT�{b��Wm��+�siA�*��Dۢ�ԏC��f����6��O�j�RIjf�A�%���5o����xx�Ő.�z��S����q��c�lqֱ�(�g�F���{�h���\�%�|w��]֫�M�6G$���0�*x��ѷl�mO���FU#U�+�S\JĖ,O|�fC�ke�cc�7�}=pN?*�U`s:rF[K��zc�nZ��wn}�U�t=?*�J=qh��3M&��0'�aC��j�<�F�F�0 P@ӟZ{�`�@ �NS��J�"8�݀�ccڜ�1lU��dU�"��n+9T��l���������ŵ�g���F�(�G|qXKR�ٍ�b:�S����N{֒[l�x���S�0Xaf9���g��R�E��h�x�oo��� �xU��~�� ��Q��;5��7r1�j�A���Z�Բ���dx%���]/�-����xC�f���{�Z0�8�Z�_B�w��Z�0����� &� ��F@�?Ʋ~�}��R�(�Y;�)Ꮓ�VH��l��Xt���^��TG �������T�� ��U�*�D ����f��Cq�;��8�+�V���H�����+-�q��)-�p���;g�&��P��(�ߚ���Л�SR���e��R�0GZ���n����q�����a+�>��;?����iR�V�楷c�3��f浧�h[$�8+��5&�rOq�z��5�;���I��9�ֹi�h%)2`7/�k �����c��-��*�V_>����A\rs�ҟݑ��#��9�zf����I��l�rFe����l�>'��@-���q�����9#s1���ֲqGDf[F��t#����b~��ؚ����(|�ǜ���XJL&^�PQ��[����d��X�sc��㓒G<�uT�Λ7���y�3�s�*�Sp9�����8�8犻m?t�z�\ovl�lE 8��֭C!���Ʋb���= �PJ �������hd�r={�G�f#PLc�P�f�C!�}y�J��3�����x���_� ��0=����u��K$V��[K|Ѹ� x��C�<��Y�?^k���2_4����.!;W�����C�e���VK}z_U�B��_��������9-uKC�;���S�+�mn�~V�8a_'��(�Ȗ�eS�p9�߁����@��KC�@?w�q2��Ӹ���r���,�*����w�~���a�*iQ����! �Gw��(`��tˈ�P�y4��}�H��z�NgO0�������ppv*���*h�E-��Ңep����� �[��I�~�:��� ?��r)�A�E>r6T����G�0 �{1�2~��KpP�9�M�O�����N�c-�:�u�����YHN��zX��~a��{����dT�t�L%;�˷9�`8��A$l܃��j�����䓎�� 2a�<T��T�\��U k��bE�r =�4�}�)�Ia��T�Dv��ʺ�r6(�p�O28��r9�u�p:Tq'�p?:��'f2drc�OS�j[k�%��\�LE*�r;�)%�rx��p��ܗ���ೞs$��{�O�@* ��Gjk��i��{�!�Ѧ���.6�rj)>\ay�B)RNI��nb�%��\��R�$.��+�<�R�YF6��T�9�)�`�J�q�I�x>��V��$��|�u�MQ�F��\� ��(���z-�U08�,y`3�i��^q�y�T�5���c�H3L�(c��PB���֦`���`��U9�Fⵙ�Y�d*L��b;ict���{Q*!<q�e�����14�s[Eq'�"�P7��W6����`����nI.A�ʩj� <��Z��ख�Z�=��^;ֵL�6Q�<�'5�E����13Z����#?L�_U|(���q�=�rt�d�J��GL���6�V���ь��{�I<���MFN�k�����c��#�ϊ�5��2��n����s�Wy��_J�`P�ě}��|Y�xoU��GP"����8�-�<y�j�y:m�����_j��N���Q��{�D�I�7Z�u�iT,��+˾$�E�&H�4� "�I� �_��^;�o�@�y#$g�5�x[�}����A�����~��*8x�~��+�4K�j�?ጾ!��0�6�Ej�����4�,���:c5GD��(�T;V�IhT`c�k�S��u%^�2�["ݱh��pz�OK�I�G|U5�U+����;pF{ �I؞��o9��ު����#��Tb���{b��YI"�@��YK�Jz�a�l��U*AQ�t����;�,sZ1iѠ�H�z���)Q�ҷ�r���7] V�|�}@\{ՅӢq��OO�Cu�C�ι�γ�<Ok��~�St� &�qi`�Ͽ4�\+(E :W;�4뉌i@�-��7�|Ay��5�V��~�^Joz�P�UI�Oo3EJM]���qu�s���ո|��u�?��_-�*u���O�Q�Bb��Nkٌ1K��"��l�V��Ѐ�E���6�o��H���W�0�n����y��n� N� =ӊ��c%/�2[�V��f�[MF(wʸ�x:�R���R\-y���G���霊�4��:uտ�s������z�k�*��Y�?��O4�v�H�x��ỻ)�e���Ҿ��u�-F=�*8�<�W�|E����yj =T]yFu��?a_�]��.�yj|�{������T�%H��H�H�]��+�D;�=+�OGS��5�4�|�6p���X��-�A��q���+b�I;�كϺ�xg�W� ��Ǜ*3��A��CI��g���~�A�^�գH�\P 9 �2|ܩ ��S��|��zz?.>��n�X��@��ǭ1��:�u�\�,��ۭD�K�'"�2�� 2���D���zwzH���Z��z�21��$ �4�j��Im��A?�H��~��{+������)�`�[��=)RG����{t�-�ԃK8�kb82q��Vb�lr�G�g,K]JX{������d������;|7��ZZ�8* ����F����:+�a��52iS)ڪI��w�?�oop�[1����_�e���VPFpZ�q9�* �$�����{m"��R6l�5���#]ԥ ��I^������X��T�ܯZ��x�������;���x�_�g�+,���(�o�Ʒp�Yԅ#��k���� ����y�<gھ��A����U��m����^\�3�_�����M{�<�Þ��5_��w������0�1]ٰ�q�t튭u�B��F+íB�Is�vm�9Hu���P������9�n_�HC�=��-4Y1���ָ�R��V�L���x�W�&�����cҴ��ОWٸ��%�^5�g�T��^���=#�8ܳ�Tq�s��p���J��2�U����1�_��}}�U%f��6h����s2(ry�j��s�6qҪb�%����:ջ; D�Eڧ���Y���L��ǧQ���$�Ι1P��C��ֲ�P�����v]CIӨ�s��q`�- �09Ʃ']��{�i<�ܩ��#1\����e��N��;���1���]�&wõ�9����3�`�s�T��PI�Np Uw܍��x��F��۸ǥw��9ٖć�����K|ߎ; ���������99�x"��N�O�l1�9���*I���֪$�& ��nޕ$m�=OaYJ7�B�rl��0b)y���G<����R����׃X��T��m1�9� ��+)@�$���V��0���zX|c���27 �����Y���]�y����i�LN9�U/M��q��N;��h���z8����O����������G�E6�z�+�8��E��S��xG�x��k��p�G���7���W�`?���_��?�C�f�+�<#�v�k�����E~Yß�1�}#dT����W��p���G!i��ƣ��߅Uu���1TG��E��>�K/�����QZC�b�-?�N���QY��������&�+J[�?��ޤo��O�E�B�O� 2.��R��} �4��}h���I�����T����Eb2���W�Ҋ+>���b?���)/>�������z�*��_�O���=���["�,]V����QEl�Jܒ��)��4QR���?�ҧo��E�1��Xjo�g��E�� o�_�0����w���'���QE}��Ȯ��x���ס��ş�.���:���E��o��_�ϥ�������*�-z���E͕�Or���J�����(��ko-�i>�:O�Ɗ*�Ģ��J�F��(���K7������Z(��$r��W�J�5����h�����֙�^��q?�����ȵ�n��QEx�A��:h�ϕ5��M���U�s����4Q_�a>�]o�������� n��c��h��a�:�2t_�/��i�����E݈�G.dz߁��>����~4Q_ W���z���������g/����E}e/ᣥnʷ�p�kS�~��+���p�1�����S���Q^�����B�A�����QYȸ�Mq��� Q_��4QS �����i��h��! |� )�h�� z������h���*�5yՏ��4QXϡ�"h:7Ҷ4/��_��tQ\uv;h|g���=����k�|)�#�t#E���_3�{ލ�~�������J(�0��-Ʒ��*���袷��.�m���G���h��?�*\���Ӡ�ޢ���H�?w�_�Ɗ+g�"��ֲ�~���Ep�����7}G�QED����� �����m��}7�E�S�p�?��UjO��_Ɗ+˯�Dx����9-s�CR��G����ٍW�R�O���~��o����,?��?�QEWQ-�GU��VOc�=I���O�� ���G�¦���H���xU��ק��h��u�C���ު����r��Ez�>��z�� |
| URL | http://zero.webappsecurity.com/resources/js/bootstrap.min.js |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | max-age=2678400 |
| Request Header - size: 284 bytes. |
GET http://zero.webappsecurity.com/resources/js/bootstrap.min.js HTTP/1.1
Host: zero.webappsecurity.com User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0 Pragma: no-cache Cache-Control: no-cache Referer: http://zero.webappsecurity.com |
| Request Body - size: 0 bytes. |
|
| Response Header - size: 361 bytes. |
HTTP/1.1 200 OK
Date: Mon, 14 Mar 2022 07:13:42 GMT Server: Apache-Coyote/1.1 Access-Control-Allow-Origin: * Accept-Ranges: bytes ETag: W/"26898-1358437290000" Last-Modified: Thu, 17 Jan 2013 15:41:30 GMT Cache-Control: max-age=2678400 Expires: Thu, 14 Apr 2022 07:13:43 GMT Content-Type: application/javascript;charset=UTF-8 Content-Length: 26898 |
| Response Body - size: 26,898 bytes. |
/**
* Bootstrap.js by @fat & @mdo * plugins: bootstrap-transition.js, bootstrap-modal.js, bootstrap-dropdown.js, bootstrap-scrollspy.js, bootstrap-tab.js, bootstrap-tooltip.js, bootstrap-popover.js, bootstrap-affix.js, bootstrap-alert.js, bootstrap-button.js, bootstrap-collapse.js, bootstrap-carousel.js, bootstrap-typeahead.js * Copyright 2012 Twitter, Inc. * http://www.apache.org/licenses/LICENSE-2.0.txt */ !function(a){a(function(){a.support.transition=function(){var a=function(){var a=document.createElement("bootstrap"),b={WebkitTransition:"webkitTransitionEnd",MozTransition:"transitionend",OTransition:"oTransitionEnd otransitionend",transition:"transitionend"},c;for(c in b)if(a.style[c]!==undefined)return b[c]}();return a&&{end:a}}()})}(window.jQuery),!function(a){var b=function(b,c){this.options=c,this.$element=a(b).delegate('[data-dismiss="modal"]',"click.dismiss.modal",a.proxy(this.hide,this)),this.options.remote&&this.$element.find(".modal-body").load(this.options.remote)};b.prototype={constructor:b,toggle:function(){return this[this.isShown?"hide":"show"]()},show:function(){var b=this,c=a.Event("show");this.$element.trigger(c);if(this.isShown||c.isDefaultPrevented())return;this.isShown=!0,this.escape(),this.backdrop(function(){var c=a.support.transition&&b.$element.hasClass("fade");b.$element.parent().length||b.$element.appendTo(document.body),b.$element.show(),c&&b.$element[0].offsetWidth,b.$element.addClass("in").attr("aria-hidden",!1),b.enforceFocus(),c?b.$element.one(a.support.transition.end,function(){b.$element.focus().trigger("shown")}):b.$element.focus().trigger("shown")})},hide:function(b){b&&b.preventDefault();var c=this;b=a.Event("hide"),this.$element.trigger(b);if(!this.isShown||b.isDefaultPrevented())return;this.isShown=!1,this.escape(),a(document).off("focusin.modal"),this.$element.removeClass("in").attr("aria-hidden",!0),a.support.transition&&this.$element.hasClass("fade")?this.hideWithTransition():this.hideModal()},enforceFocus:function(){var b=this;a(document).on("focusin.modal",function(a){b.$element[0]!==a.target&&!b.$element.has(a.target).length&&b.$element.focus()})},escape:function(){var a=this;this.isShown&&this.options.keyboard?this.$element.on("keyup.dismiss.modal",function(b){b.which==27&&a.hide()}):this.isShown||this.$element.off("keyup.dismiss.modal")},hideWithTransition:function(){var b=this,c=setTimeout(function(){b.$element.off(a.support.transition.end),b.hideModal()},500);this.$element.one(a.support.transition.end,function(){clearTimeout(c),b.hideModal()})},hideModal:function(a){this.$element.hide().trigger("hidden"),this.backdrop()},removeBackdrop:function(){this.$backdrop.remove(),this.$backdrop=null},backdrop:function(b){var c=this,d=this.$element.hasClass("fade")?"fade":"";if(this.isShown&&this.options.backdrop){var e=a.support.transition&&d;this.$backdrop=a('<div class="modal-backdrop '+d+'" />').appendTo(document.body),this.$backdrop.click(this.options.backdrop=="static"?a.proxy(this.$element[0].focus,this.$element[0]):a.proxy(this.hide,this)),e&&this.$backdrop[0].offsetWidth,this.$backdrop.addClass("in"),e?this.$backdrop.one(a.support.transition.end,b):b()}else!this.isShown&&this.$backdrop?(this.$backdrop.removeClass("in"),a.support.transition&&this.$element.hasClass("fade")?this.$backdrop.one(a.support.transition.end,a.proxy(this.removeBackdrop,this)):this.removeBackdrop()):b&&b()}};var c=a.fn.modal;a.fn.modal=function(c){return this.each(function(){var d=a(this),e=d.data("modal"),f=a.extend({},a.fn.modal.defaults,d.data(),typeof c=="object"&&c);e||d.data("modal",e=new b(this,f)),typeof c=="string"?e[c]():f.show&&e.show()})},a.fn.modal.defaults={backdrop:!0,keyboard:!0,show:!0},a.fn.modal.Constructor=b,a.fn.modal.noConflict=function(){return a.fn.modal=c,this},a(document).on("click.modal.data-api",'[data-toggle="modal"]',function(b){var c=a(this),d=c.attr("href"),e=a(c.attr("data-target")||d&&d.replace(/.*(?=#[^\s]+$)/,"")),f=e.data("modal")?"toggle":a.extend({remote:!/#/.test(d)&&d},e.data(),c.data());b.preventDefault(),e.modal(f).one("hide",function(){c.focus()})})}(window.jQuery),!function(a){function d(){a(b).each(function(){e(a(this)).removeClass("open")})}function e(b){var c=b.attr("data-target"),d;return c||(c=b.attr("href"),c=c&&/#/.test(c)&&c.replace(/.*(?=#[^\s]*$)/,"")),d=a(c),d.length||(d=b.parent()),d}var b="[data-toggle=dropdown]",c=function(b){var c=a(b).on("click.dropdown.data-api",this.toggle);a("html").on("click.dropdown.data-api",function(){c.parent().removeClass("open")})};c.prototype={constructor:c,toggle:function(b){var c=a(this),f,g;if(c.is(".disabled, :disabled"))return;return f=e(c),g=f.hasClass("open"),d(),g||f.toggleClass("open"),c.focus(),!1},keydown:function(b){var c,d,f,g,h,i;if(!/(38|40|27)/.test(b.keyCode))return;c=a(this),b.preventDefault(),b.stopPropagation();if(c.is(".disabled, :disabled"))return;g=e(c),h=g.hasClass("open");if(!h||h&&b.keyCode==27)return c.click();d=a("[role=menu] li:not(.divider):visible a",g);if(!d.length)return;i=d.index(d.filter(":focus")),b.keyCode==38&&i>0&&i--,b.keyCode==40&&i<d.length-1&&i++,~i||(i=0),d.eq(i).focus()}};var f=a.fn.dropdown;a.fn.dropdown=function(b){return this.each(function(){var d=a(this),e=d.data("dropdown");e||d.data("dropdown",e=new c(this)),typeof b=="string"&&e[b].call(d)})},a.fn.dropdown.Constructor=c,a.fn.dropdown.noConflict=function(){return a.fn.dropdown=f,this},a(document).on("click.dropdown.data-api touchstart.dropdown.data-api",d).on("click.dropdown touchstart.dropdown.data-api",".dropdown form",function(a){a.stopPropagation()}).on("touchstart.dropdown.data-api",".dropdown-menu",function(a){a.stopPropagation()}).on("click.dropdown.data-api touchstart.dropdown.data-api",b,c.prototype.toggle).on("keydown.dropdown.data-api touchstart.dropdown.data-api",b+", [role=menu]",c.prototype.keydown)}(window.jQuery),!function(a){function b(b,c){var d=a.proxy(this.process,this),e=a(b).is("body")?a(window):a(b),f;this.options=a.extend({},a.fn.scrollspy.defaults,c),this.$scrollElement=e.on("scroll.scroll-spy.data-api",d),this.selector=(this.options.target||(f=a(b).attr("href"))&&f.replace(/.*(?=#[^\s]+$)/,"")||"")+" .nav li > a",this.$body=a("body"),this.refresh(),this.process()}b.prototype={constructor:b,refresh:function(){var b=this,c;this.offsets=a([]),this.targets=a([]),c=this.$body.find(this.selector).map(function(){var c=a(this),d=c.data("target")||c.attr("href"),e=/^#\w/.test(d)&&a(d);return e&&e.length&&[[e.position().top+b.$scrollElement.scrollTop(),d]]||null}).sort(function(a,b){return a[0]-b[0]}).each(function(){b.offsets.push(this[0]),b.targets.push(this[1])})},process:function(){var a=this.$scrollElement.scrollTop()+this.options.offset,b=this.$scrollElement[0].scrollHeight||this.$body[0].scrollHeight,c=b-this.$scrollElement.height(),d=this.offsets,e=this.targets,f=this.activeTarget,g;if(a>=c)return f!=(g=e.last()[0])&&this.activate(g);for(g=d.length;g--;)f!=e[g]&&a>=d[g]&&(!d[g+1]||a<=d[g+1])&&this.activate(e[g])},activate:function(b){var c,d;this.activeTarget=b,a(this.selector).parent(".active").removeClass("active"),d=this.selector+'[data-target="'+b+'"],'+this.selector+'[href="'+b+'"]',c=a(d).parent("li").addClass("active"),c.parent(".dropdown-menu").length&&(c=c.closest("li.dropdown").addClass("active")),c.trigger("activate")}};var c=a.fn.scrollspy;a.fn.scrollspy=function(c){return this.each(function(){var d=a(this),e=d.data("scrollspy"),f=typeof c=="object"&&c;e||d.data("scrollspy",e=new b(this,f)),typeof c=="string"&&e[c]()})},a.fn.scrollspy.Constructor=b,a.fn.scrollspy.defaults={offset:10},a.fn.scrollspy.noConflict=function(){return a.fn.scrollspy=c,this},a(window).on("load",function(){a('[data-spy="scroll"]').each(function(){var b=a(this);b.scrollspy(b.data())})})}(window.jQuery),!function(a){var b=function(b){this.element=a(b)};b.prototype={constructor:b,show:function(){var b=this.element,c=b.closest("ul:not(.dropdown-menu)"),d=b.attr("data-target"),e,f,g;d||(d=b.attr("href"),d=d&&d.replace(/.*(?=#[^\s]*$)/,""));if(b.parent("li").hasClass("active"))return;e=c.find(".active:last a")[0],g=a.Event("show",{relatedTarget:e}),b.trigger(g);if(g.isDefaultPrevented())return;f=a(d),this.activate(b.parent("li"),c),this.activate(f,f.parent(),function(){b.trigger({type:"shown",relatedTarget:e})})},activate:function(b,c,d){function g(){e.removeClass("active").find("> .dropdown-menu > .active").removeClass("active"),b.addClass("active"),f?(b[0].offsetWidth,b.addClass("in")):b.removeClass("fade"),b.parent(".dropdown-menu")&&b.closest("li.dropdown").addClass("active"),d&&d()}var e=c.find("> .active"),f=d&&a.support.transition&&e.hasClass("fade");f?e.one(a.support.transition.end,g):g(),e.removeClass("in")}};var c=a.fn.tab;a.fn.tab=function(c){return this.each(function(){var d=a(this),e=d.data("tab");e||d.data("tab",e=new b(this)),typeof c=="string"&&e[c]()})},a.fn.tab.Constructor=b,a.fn.tab.noConflict=function(){return a.fn.tab=c,this},a(document).on("click.tab.data-api",'[data-toggle="tab"], [data-toggle="pill"]',function(b){b.preventDefault(),a(this).tab("show")})}(window.jQuery),!function(a){var b=function(a,b){this.init("tooltip",a,b)};b.prototype={constructor:b,init:function(b,c,d){var e,f;this.type=b,this.$element=a(c),this.options=this.getOptions(d),this.enabled=!0,this.options.trigger=="click"?this.$element.on("click."+this.type,this.options.selector,a.proxy(this.toggle,this)):this.options.trigger!="manual"&&(e=this.options.trigger=="hover"?"mouseenter":"focus",f=this.options.trigger=="hover"?"mouseleave":"blur",this.$element.on(e+"."+this.type,this.options.selector,a.proxy(this.enter,this)),this.$element.on(f+"."+this.type,this.options.selector,a.proxy(this.leave,this))),this.options.selector?this._options=a.extend({},this.options,{trigger:"manual",selector:""}):this.fixTitle()},getOptions:function(b){return b=a.extend({},a.fn[this.type].defaults,b,this.$element.data()),b.delay&&typeof b.delay=="number"&&(b.delay={show:b.delay,hide:b.delay}),b},enter:function(b){var c=a(b.currentTarget)[this.type](this._options).data(this.type);if(!c.options.delay||!c.options.delay.show)return c.show();clearTimeout(this.timeout),c.hoverState="in",this.timeout=setTimeout(function(){c.hoverState=="in"&&c.show()},c.options.delay.show)},leave:function(b){var c=a(b.currentTarget)[this.type](this._options).data(this.type);this.timeout&&clearTimeout(this.timeout);if(!c.options.delay||!c.options.delay.hide)return c.hide();c.hoverState="out",this.timeout=setTimeout(function(){c.hoverState=="out"&&c.hide()},c.options.delay.hide)},show:function(){var a,b,c,d,e,f,g;if(this.hasContent()&&this.enabled){a=this.tip(),this.setContent(),this.options.animation&&a.addClass("fade"),f=typeof this.options.placement=="function"?this.options.placement.call(this,a[0],this.$element[0]):this.options.placement,b=/in/.test(f),a.detach().css({top:0,left:0,display:"block"}).insertAfter(this.$element),c=this.getPosition(b),d=a[0].offsetWidth,e=a[0].offsetHeight;switch(b?f.split(" ")[1]:f){case"bottom":g={top:c.top+c.height,left:c.left+c.width/2-d/2};break;case"top":g={top:c.top-e,left:c.left+c.width/2-d/2};break;case"left":g={top:c.top+c.height/2-e/2,left:c.left-d};break;case"right":g={top:c.top+c.height/2-e/2,left:c.left+c.width}}a.offset(g).addClass(f).addClass("in")}},setContent:function(){var a=this.tip(),b=this.getTitle();a.find(".tooltip-inner")[this.options.html?"html":"text"](b),a.removeClass("fade in top bottom left right")},hide:function(){function d(){var b=setTimeout(function(){c.off(a.support.transition.end).detach()},500);c.one(a.support.transition.end,function(){clearTimeout(b),c.detach()})}var b=this,c=this.tip();return c.removeClass("in"),a.support.transition&&this.$tip.hasClass("fade")?d():c.detach(),this},fixTitle:function(){var a=this.$element;(a.attr("title")||typeof a.attr("data-original-title")!="string")&&a.attr("data-original-title",a.attr("title")||"").removeAttr("title")},hasContent:function(){return this.getTitle()},getPosition:function(b){return a.extend({},b?{top:0,left:0}:this.$element.offset(),{width:this.$element[0].offsetWidth,height:this.$element[0].offsetHeight})},getTitle:function(){var a,b=this.$element,c=this.options;return a=b.attr("data-original-title")||(typeof c.title=="function"?c.title.call(b[0]):c.title),a},tip:function(){return this.$tip=this.$tip||a(this.options.template)},validate:function(){this.$element[0].parentNode||(this.hide(),this.$element=null,this.options=null)},enable:function(){this.enabled=!0},disable:function(){this.enabled=!1},toggleEnabled:function(){this.enabled=!this.enabled},toggle:function(b){var c=a(b.currentTarget)[this.type](this._options).data(this.type);c[c.tip().hasClass("in")?"hide":"show"]()},destroy:function(){this.hide().$element.off("."+this.type).removeData(this.type)}};var c=a.fn.tooltip;a.fn.tooltip=function(c){return this.each(function(){var d=a(this),e=d.data("tooltip"),f=typeof c=="object"&&c;e||d.data("tooltip",e=new b(this,f)),typeof c=="string"&&e[c]()})},a.fn.tooltip.Constructor=b,a.fn.tooltip.defaults={animation:!0,placement:"top",selector:!1,template:'<div class="tooltip"><div class="tooltip-arrow"></div><div class="tooltip-inner"></div></div>',trigger:"hover",title:"",delay:0,html:!1},a.fn.tooltip.noConflict=function(){return a.fn.tooltip=c,this}}(window.jQuery),!function(a){var b=function(a,b){this.init("popover",a,b)};b.prototype=a.extend({},a.fn.tooltip.Constructor.prototype,{constructor:b,setContent:function(){var a=this.tip(),b=this.getTitle(),c=this.getContent();a.find(".popover-title")[this.options.html?"html":"text"](b),a.find(".popover-content")[this.options.html?"html":"text"](c),a.removeClass("fade top bottom left right in")},hasContent:function(){return this.getTitle()||this.getContent()},getContent:function(){var a,b=this.$element,c=this.options;return a=b.attr("data-content")||(typeof c.content=="function"?c.content.call(b[0]):c.content),a},tip:function(){return this.$tip||(this.$tip=a(this.options.template)),this.$tip},destroy:function(){this.hide().$element.off("."+this.type).removeData(this.type)}});var c=a.fn.popover;a.fn.popover=function(c){return this.each(function(){var d=a(this),e=d.data("popover"),f=typeof c=="object"&&c;e||d.data("popover",e=new b(this,f)),typeof c=="string"&&e[c]()})},a.fn.popover.Constructor=b,a.fn.popover.defaults=a.extend({},a.fn.tooltip.defaults,{placement:"right",trigger:"click",content:"",template:'<div class="popover"><div class="arrow"></div><div class="popover-inner"><h3 class="popover-title"></h3><div class="popover-content"></div></div></div>'}),a.fn.popover.noConflict=function(){return a.fn.popover=c,this}}(window.jQuery),!function(a){var b=function(b,c){this.options=a.extend({},a.fn.affix.defaults,c),this.$window=a(window).on("scroll.affix.data-api",a.proxy(this.checkPosition,this)).on("click.affix.data-api",a.proxy(function(){setTimeout(a.proxy(this.checkPosition,this),1)},this)),this.$element=a(b),this.checkPosition()};b.prototype.checkPosition=function(){if(!this.$element.is(":visible"))return;var b=a(document).height(),c=this.$window.scrollTop(),d=this.$element.offset(),e=this.options.offset,f=e.bottom,g=e.top,h="affix affix-top affix-bottom",i;typeof e!="object"&&(f=g=e),typeof g=="function"&&(g=e.top()),typeof f=="function"&&(f=e.bottom()),i=this.unpin!=null&&c+this.unpin<=d.top?!1:f!=null&&d.top+this.$element.height()>=b-f?"bottom":g!=null&&c<=g?"top":!1;if(this.affixed===i)return;this.affixed=i,this.unpin=i=="bottom"?d.top-c:null,this.$element.removeClass(h).addClass("affix"+(i?"-"+i:""))};var c=a.fn.affix;a.fn.affix=function(c){return this.each(function(){var d=a(this),e=d.data("affix"),f=typeof c=="object"&&c;e||d.data("affix",e=new b(this,f)),typeof c=="string"&&e[c]()})},a.fn.affix.Constructor=b,a.fn.affix.defaults={offset:0},a.fn.affix.noConflict=function(){return a.fn.affix=c,this},a(window).on("load",function(){a('[data-spy="affix"]').each(function(){var b=a(this),c=b.data();c.offset=c.offset||{},c.offsetBottom&&(c.offset.bottom=c.offsetBottom),c.offsetTop&&(c.offset.top=c.offsetTop),b.affix(c)})})}(window.jQuery),!function(a){var b='[data-dismiss="alert"]',c=function(c){a(c).on("click",b,this.close)};c.prototype.close=function(b){function f(){e.trigger("closed").remove()}var c=a(this),d=c.attr("data-target"),e;d||(d=c.attr("href"),d=d&&d.replace(/.*(?=#[^\s]*$)/,"")),e=a(d),b&&b.preventDefault(),e.length||(e=c.hasClass("alert")?c:c.parent()),e.trigger(b=a.Event("close"));if(b.isDefaultPrevented())return;e.removeClass("in"),a.support.transition&&e.hasClass("fade")?e.on(a.support.transition.end,f):f()};var d=a.fn.alert;a.fn.alert=function(b){return this.each(function(){var d=a(this),e=d.data("alert");e||d.data("alert",e=new c(this)),typeof b=="string"&&e[b].call(d)})},a.fn.alert.Constructor=c,a.fn.alert.noConflict=function(){return a.fn.alert=d,this},a(document).on("click.alert.data-api",b,c.prototype.close)}(window.jQuery),!function(a){var b=function(b,c){this.$element=a(b),this.options=a.extend({},a.fn.button.defaults,c)};b.prototype.setState=function(a){var b="disabled",c=this.$element,d=c.data(),e=c.is("input")?"val":"html";a+="Text",d.resetText||c.data("resetText",c[e]()),c[e](d[a]||this.options[a]),setTimeout(function(){a=="loadingText"?c.addClass(b).attr(b,b):c.removeClass(b).removeAttr(b)},0)},b.prototype.toggle=function(){var a=this.$element.closest('[data-toggle="buttons-radio"]');a&&a.find(".active").removeClass("active"),this.$element.toggleClass("active")};var c=a.fn.button;a.fn.button=function(c){return this.each(function(){var d=a(this),e=d.data("button"),f=typeof c=="object"&&c;e||d.data("button",e=new b(this,f)),c=="toggle"?e.toggle():c&&e.setState(c)})},a.fn.button.defaults={loadingText:"loading..."},a.fn.button.Constructor=b,a.fn.button.noConflict=function(){return a.fn.button=c,this},a(document).on("click.button.data-api","[data-toggle^=button]",function(b){var c=a(b.target);c.hasClass("btn")||(c=c.closest(".btn")),c.button("toggle")})}(window.jQuery),!function(a){var b=function(b,c){this.$element=a(b),this.options=a.extend({},a.fn.collapse.defaults,c),this.options.parent&&(this.$parent=a(this.options.parent)),this.options.toggle&&this.toggle()};b.prototype={constructor:b,dimension:function(){var a=this.$element.hasClass("width");return a?"width":"height"},show:function(){var b,c,d,e;if(this.transitioning)return;b=this.dimension(),c=a.camelCase(["scroll",b].join("-")),d=this.$parent&&this.$parent.find("> .accordion-group > .in");if(d&&d.length){e=d.data("collapse");if(e&&e.transitioning)return;d.collapse("hide"),e||d.data("collapse",null)}this.$element[b](0),this.transition("addClass",a.Event("show"),"shown"),a.support.transition&&this.$element[b](this.$element[0][c])},hide:function(){var b;if(this.transitioning)return;b=this.dimension(),this.reset(this.$element[b]()),this.transition("removeClass",a.Event("hide"),"hidden"),this.$element[b](0)},reset:function(a){var b=this.dimension();return this.$element.removeClass("collapse")[b](a||"auto")[0].offsetWidth,this.$element[a!==null?"addClass":"removeClass"]("collapse"),this},transition:function(b,c,d){var e=this,f=function(){c.type=="show"&&e.reset(),e.transitioning=0,e.$element.trigger(d)};this.$element.trigger(c);if(c.isDefaultPrevented())return;this.transitioning=1,this.$element[b]("in"),a.support.transition&&this.$element.hasClass("collapse")?this.$element.one(a.support.transition.end,f):f()},toggle:function(){this[this.$element.hasClass("in")?"hide":"show"]()}};var c=a.fn.collapse;a.fn.collapse=function(c){return this.each(function(){var d=a(this),e=d.data("collapse"),f=typeof c=="object"&&c;e||d.data("collapse",e=new b(this,f)),typeof c=="string"&&e[c]()})},a.fn.collapse.defaults={toggle:!0},a.fn.collapse.Constructor=b,a.fn.collapse.noConflict=function(){return a.fn.collapse=c,this},a(document).on("click.collapse.data-api","[data-toggle=collapse]",function(b){var c=a(this),d,e=c.attr("data-target")||b.preventDefault()||(d=c.attr("href"))&&d.replace(/.*(?=#[^\s]+$)/,""),f=a(e).data("collapse")?"toggle":c.data();c[a(e).hasClass("in")?"addClass":"removeClass"]("collapsed"),a(e).collapse(f)})}(window.jQuery),!function(a){var b=function(b,c){this.$element=a(b),this.options=c,this.options.pause=="hover"&&this.$element.on("mouseenter",a.proxy(this.pause,this)).on("mouseleave",a.proxy(this.cycle,this))};b.prototype={cycle:function(b){return b||(this.paused=!1),this.options.interval&&!this.paused&&(this.interval=setInterval(a.proxy(this.next,this),this.options.interval)),this},to:function(b){var c=this.$element.find(".item.active"),d=c.parent().children(),e=d.index(c),f=this;if(b>d.length-1||b<0)return;return this.sliding?this.$element.one("slid",function(){f.to(b)}):e==b?this.pause().cycle():this.slide(b>e?"next":"prev",a(d[b]))},pause:function(b){return b||(this.paused=!0),this.$element.find(".next, .prev").length&&a.support.transition.end&&(this.$element.trigger(a.support.transition.end),this.cycle()),clearInterval(this.interval),this.interval=null,this},next:function(){if(this.sliding)return;return this.slide("next")},prev:function(){if(this.sliding)return;return this.slide("prev")},slide:function(b,c){var d=this.$element.find(".item.active"),e=c||d[b](),f=this.interval,g=b=="next"?"left":"right",h=b=="next"?"first":"last",i=this,j;this.sliding=!0,f&&this.pause(),e=e.length?e:this.$element.find(".item")[h](),j=a.Event("slide",{relatedTarget:e[0]});if(e.hasClass("active"))return;if(a.support.transition&&this.$element.hasClass("slide")){this.$element.trigger(j);if(j.isDefaultPrevented())return;e.addClass(b),e[0].offsetWidth,d.addClass(g),e.addClass(g),this.$element.one(a.support.transition.end,function(){e.removeClass([b,g].join(" ")).addClass("active"),d.removeClass(["active",g].join(" ")),i.sliding=!1,setTimeout(function(){i.$element.trigger("slid")},0)})}else{this.$element.trigger(j);if(j.isDefaultPrevented())return;d.removeClass("active"),e.addClass("active"),this.sliding=!1,this.$element.trigger("slid")}return f&&this.cycle(),this}};var c=a.fn.carousel;a.fn.carousel=function(c){return this.each(function(){var d=a(this),e=d.data("carousel"),f=a.extend({},a.fn.carousel.defaults,typeof c=="object"&&c),g=typeof c=="string"?c:f.slide;e||d.data("carousel",e=new b(this,f)),typeof c=="number"?e.to(c):g?e[g]():f.interval&&e.cycle()})},a.fn.carousel.defaults={interval:5e3,pause:"hover"},a.fn.carousel.Constructor=b,a.fn.carousel.noConflict=function(){return a.fn.carousel=c,this},a(document).on("click.carousel.data-api","[data-slide]",function(b){var c=a(this),d,e=a(c.attr("data-target")||(d=c.attr("href"))&&d.replace(/.*(?=#[^\s]+$)/,"")),f=a.extend({},e.data(),c.data());e.carousel(f),b.preventDefault()})}(window.jQuery),!function(a){var b=function(b,c){this.$element=a(b),this.options=a.extend({},a.fn.typeahead.defaults,c),this.matcher=this.options.matcher||this.matcher,this.sorter=this.options.sorter||this.sorter,this.highlighter=this.options.highlighter||this.highlighter,this.updater=this.options.updater||this.updater,this.source=this.options.source,this.$menu=a(this.options.menu),this.shown=!1,this.listen()};b.prototype={constructor:b,select:function(){var a=this.$menu.find(".active").attr("data-value");return this.$element.val(this.updater(a)).change(),this.hide()},updater:function(a){return a},show:function(){var b=a.extend({},this.$element.position(),{height:this.$element[0].offsetHeight});return this.$menu.insertAfter(this.$element).css({top:b.top+b.height,left:b.left}).show(),this.shown=!0,this},hide:function(){return this.$menu.hide(),this.shown=!1,this},lookup:function(b){var c;return this.query=this.$element.val(),!this.query||this.query.length<this.options.minLength?this.shown?this.hide():this:(c=a.isFunction(this.source)?this.source(this.query,a.proxy(this.process,this)):this.source,c?this.process(c):this)},process:function(b){var c=this;return b=a.grep(b,function(a){return c.matcher(a)}),b=this.sorter(b),b.length?this.render(b.slice(0,this.options.items)).show():this.shown?this.hide():this},matcher:function(a){return~a.toLowerCase().indexOf(this.query.toLowerCase())},sorter:function(a){var b=[],c=[],d=[],e;while(e=a.shift())e.toLowerCase().indexOf(this.query.toLowerCase())?~e.indexOf(this.query)?c.push(e):d.push(e):b.push(e);return b.concat(c,d)},highlighter:function(a){var b=this.query.replace(/[\-\[\]{}()*+?.,\\\^$|#\s]/g,"\\$&");return a.replace(new RegExp("("+b+")","ig"),function(a,b){return"<strong>"+b+"</strong>"})},render:function(b){var c=this;return b=a(b).map(function(b,d){return b=a(c.options.item).attr("data-value",d),b.find("a").html(c.highlighter(d)),b[0]}),b.first().addClass("active"),this.$menu.html(b),this},next:function(b){var c=this.$menu.find(".active").removeClass("active"),d=c.next();d.length||(d=a(this.$menu.find("li")[0])),d.addClass("active")},prev:function(a){var b=this.$menu.find(".active").removeClass("active"),c=b.prev();c.length||(c=this.$menu.find("li").last()),c.addClass("active")},listen:function(){this.$element.on("blur",a.proxy(this.blur,this)).on("keypress",a.proxy(this.keypress,this)).on("keyup",a.proxy(this.keyup,this)),this.eventSupported("keydown")&&this.$element.on("keydown",a.proxy(this.keydown,this)),this.$menu.on("click",a.proxy(this.click,this)).on("mouseenter","li",a.proxy(this.mouseenter,this))},eventSupported:function(a){var b=a in this.$element;return b||(this.$element.setAttribute(a,"return;"),b=typeof this.$element[a]=="function"),b},move:function(a){if(!this.shown)return;switch(a.keyCode){case 9:case 13:case 27:a.preventDefault();break;case 38:a.preventDefault(),this.prev();break;case 40:a.preventDefault(),this.next()}a.stopPropagation()},keydown:function(b){this.suppressKeyPressRepeat=~a.inArray(b.keyCode,[40,38,9,13,27]),this.move(b)},keypress:function(a){if(this.suppressKeyPressRepeat)return;this.move(a)},keyup:function(a){switch(a.keyCode){case 40:case 38:case 16:case 17:case 18:break;case 9:case 13:if(!this.shown)return;this.select();break;case 27:if(!this.shown)return;this.hide();break;default:this.lookup()}a.stopPropagation(),a.preventDefault()},blur:function(a){var b=this;setTimeout(function(){b.hide()},150)},click:function(a){a.stopPropagation(),a.preventDefault(),this.select()},mouseenter:function(b){this.$menu.find(".active").removeClass("active"),a(b.currentTarget).addClass("active")}};var c=a.fn.typeahead;a.fn.typeahead=function(c){return this.each(function(){var d=a(this),e=d.data("typeahead"),f=typeof c=="object"&&c;e||d.data("typeahead",e=new b(this,f)),typeof c=="string"&&e[c]()})},a.fn.typeahead.defaults={source:[],items:8,menu:'<ul class="typeahead dropdown-menu"></ul>',item:'<li><a href="#"></a></li>',minLength:1},a.fn.typeahead.Constructor=b,a.fn.typeahead.noConflict=function(){return a.fn.typeahead=c,this},a(document).on("focus.typeahead.data-api",'[data-provide="typeahead"]',function(b){var c=a(this);if(c.data("typeahead"))return;b.preventDefault(),c.typeahead(c.data())})}(window.jQuery) |
| URL | http://zero.webappsecurity.com/resources/js/jquery-1.8.2.min.js |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | max-age=2678400 |
| Request Header - size: 287 bytes. |
GET http://zero.webappsecurity.com/resources/js/jquery-1.8.2.min.js HTTP/1.1
Host: zero.webappsecurity.com User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0 Pragma: no-cache Cache-Control: no-cache Referer: http://zero.webappsecurity.com |
| Request Body - size: 0 bytes. |
|
| Response Header - size: 361 bytes. |
HTTP/1.1 200 OK
Date: Mon, 14 Mar 2022 07:13:42 GMT Server: Apache-Coyote/1.1 Access-Control-Allow-Origin: * Accept-Ranges: bytes ETag: W/"93436-1358437290000" Last-Modified: Thu, 17 Jan 2013 15:41:30 GMT Cache-Control: max-age=2678400 Expires: Thu, 14 Apr 2022 07:13:43 GMT Content-Type: application/javascript;charset=UTF-8 Content-Length: 93436 |
| Response Body - size: 93,436 bytes. |
/*! jQuery v1.8.2 jquery.com | jquery.org/license */
(function(a,b){function G(a){var b=F[a]={};return p.each(a.split(s),function(a,c){b[c]=!0}),b}function J(a,c,d){if(d===b&&a.nodeType===1){var e="data-"+c.replace(I,"-$1").toLowerCase();d=a.getAttribute(e);if(typeof d=="string"){try{d=d==="true"?!0:d==="false"?!1:d==="null"?null:+d+""===d?+d:H.test(d)?p.parseJSON(d):d}catch(f){}p.data(a,c,d)}else d=b}return d}function K(a){var b;for(b in a){if(b==="data"&&p.isEmptyObject(a[b]))continue;if(b!=="toJSON")return!1}return!0}function ba(){return!1}function bb(){return!0}function bh(a){return!a||!a.parentNode||a.parentNode.nodeType===11}function bi(a,b){do a=a[b];while(a&&a.nodeType!==1);return a}function bj(a,b,c){b=b||0;if(p.isFunction(b))return p.grep(a,function(a,d){var e=!!b.call(a,d,a);return e===c});if(b.nodeType)return p.grep(a,function(a,d){return a===b===c});if(typeof b=="string"){var d=p.grep(a,function(a){return a.nodeType===1});if(be.test(b))return p.filter(b,d,!c);b=p.filter(b,d)}return p.grep(a,function(a,d){return p.inArray(a,b)>=0===c})}function bk(a){var b=bl.split("|"),c=a.createDocumentFragment();if(c.createElement)while(b.length)c.createElement(b.pop());return c}function bC(a,b){return a.getElementsByTagName(b)[0]||a.appendChild(a.ownerDocument.createElement(b))}function bD(a,b){if(b.nodeType!==1||!p.hasData(a))return;var c,d,e,f=p._data(a),g=p._data(b,f),h=f.events;if(h){delete g.handle,g.events={};for(c in h)for(d=0,e=h[c].length;d<e;d++)p.event.add(b,c,h[c][d])}g.data&&(g.data=p.extend({},g.data))}function bE(a,b){var c;if(b.nodeType!==1)return;b.clearAttributes&&b.clearAttributes(),b.mergeAttributes&&b.mergeAttributes(a),c=b.nodeName.toLowerCase(),c==="object"?(b.parentNode&&(b.outerHTML=a.outerHTML),p.support.html5Clone&&a.innerHTML&&!p.trim(b.innerHTML)&&(b.innerHTML=a.innerHTML)):c==="input"&&bv.test(a.type)?(b.defaultChecked=b.checked=a.checked,b.value!==a.value&&(b.value=a.value)):c==="option"?b.selected=a.defaultSelected:c==="input"||c==="textarea"?b.defaultValue=a.defaultValue:c==="script"&&b.text!==a.text&&(b.text=a.text),b.removeAttribute(p.expando)}function bF(a){return typeof a.getElementsByTagName!="undefined"?a.getElementsByTagName("*"):typeof a.querySelectorAll!="undefined"?a.querySelectorAll("*"):[]}function bG(a){bv.test(a.type)&&(a.defaultChecked=a.checked)}function bY(a,b){if(b in a)return b;var c=b.charAt(0).toUpperCase()+b.slice(1),d=b,e=bW.length;while(e--){b=bW[e]+c;if(b in a)return b}return d}function bZ(a,b){return a=b||a,p.css(a,"display")==="none"||!p.contains(a.ownerDocument,a)}function b$(a,b){var c,d,e=[],f=0,g=a.length;for(;f<g;f++){c=a[f];if(!c.style)continue;e[f]=p._data(c,"olddisplay"),b?(!e[f]&&c.style.display==="none"&&(c.style.display=""),c.style.display===""&&bZ(c)&&(e[f]=p._data(c,"olddisplay",cc(c.nodeName)))):(d=bH(c,"display"),!e[f]&&d!=="none"&&p._data(c,"olddisplay",d))}for(f=0;f<g;f++){c=a[f];if(!c.style)continue;if(!b||c.style.display==="none"||c.style.display==="")c.style.display=b?e[f]||"":"none"}return a}function b_(a,b,c){var d=bP.exec(b);return d?Math.max(0,d[1]-(c||0))+(d[2]||"px"):b}function ca(a,b,c,d){var e=c===(d?"border":"content")?4:b==="width"?1:0,f=0;for(;e<4;e+=2)c==="margin"&&(f+=p.css(a,c+bV[e],!0)),d?(c==="content"&&(f-=parseFloat(bH(a,"padding"+bV[e]))||0),c!=="margin"&&(f-=parseFloat(bH(a,"border"+bV[e]+"Width"))||0)):(f+=parseFloat(bH(a,"padding"+bV[e]))||0,c!=="padding"&&(f+=parseFloat(bH(a,"border"+bV[e]+"Width"))||0));return f}function cb(a,b,c){var d=b==="width"?a.offsetWidth:a.offsetHeight,e=!0,f=p.support.boxSizing&&p.css(a,"boxSizing")==="border-box";if(d<=0||d==null){d=bH(a,b);if(d<0||d==null)d=a.style[b];if(bQ.test(d))return d;e=f&&(p.support.boxSizingReliable||d===a.style[b]),d=parseFloat(d)||0}return d+ca(a,b,c||(f?"border":"content"),e)+"px"}function cc(a){if(bS[a])return bS[a];var b=p("<"+a+">").appendTo(e.body),c=b.css("display");b.remove();if(c==="none"||c===""){bI=e.body.appendChild(bI||p.extend(e.createElement("iframe"),{frameBorder:0,width:0,height:0}));if(!bJ||!bI.createElement)bJ=(bI.contentWindow||bI.contentDocument).document,bJ.write("<!doctype html><html><body>"),bJ.close();b=bJ.body.appendChild(bJ.createElement(a)),c=bH(b,"display"),e.body.removeChild(bI)}return bS[a]=c,c}function ci(a,b,c,d){var e;if(p.isArray(b))p.each(b,function(b,e){c||ce.test(a)?d(a,e):ci(a+"["+(typeof e=="object"?b:"")+"]",e,c,d)});else if(!c&&p.type(b)==="object")for(e in b)ci(a+"["+e+"]",b[e],c,d);else d(a,b)}function cz(a){return function(b,c){typeof b!="string"&&(c=b,b="*");var d,e,f,g=b.toLowerCase().split(s),h=0,i=g.length;if(p.isFunction(c))for(;h<i;h++)d=g[h],f=/^\+/.test(d),f&&(d=d.substr(1)||"*"),e=a[d]=a[d]||[],e[f?"unshift":"push"](c)}}function cA(a,c,d,e,f,g){f=f||c.dataTypes[0],g=g||{},g[f]=!0;var h,i=a[f],j=0,k=i?i.length:0,l=a===cv;for(;j<k&&(l||!h);j++)h=i[j](c,d,e),typeof h=="string"&&(!l||g[h]?h=b:(c.dataTypes.unshift(h),h=cA(a,c,d,e,h,g)));return(l||!h)&&!g["*"]&&(h=cA(a,c,d,e,"*",g)),h}function cB(a,c){var d,e,f=p.ajaxSettings.flatOptions||{};for(d in c)c[d]!==b&&((f[d]?a:e||(e={}))[d]=c[d]);e&&p.extend(!0,a,e)}function cC(a,c,d){var e,f,g,h,i=a.contents,j=a.dataTypes,k=a.responseFields;for(f in k)f in d&&(c[k[f]]=d[f]);while(j[0]==="*")j.shift(),e===b&&(e=a.mimeType||c.getResponseHeader("content-type"));if(e)for(f in i)if(i[f]&&i[f].test(e)){j.unshift(f);break}if(j[0]in d)g=j[0];else{for(f in d){if(!j[0]||a.converters[f+" "+j[0]]){g=f;break}h||(h=f)}g=g||h}if(g)return g!==j[0]&&j.unshift(g),d[g]}function cD(a,b){var c,d,e,f,g=a.dataTypes.slice(),h=g[0],i={},j=0;a.dataFilter&&(b=a.dataFilter(b,a.dataType));if(g[1])for(c in a.converters)i[c.toLowerCase()]=a.converters[c];for(;e=g[++j];)if(e!=="*"){if(h!=="*"&&h!==e){c=i[h+" "+e]||i["* "+e];if(!c)for(d in i){f=d.split(" ");if(f[1]===e){c=i[h+" "+f[0]]||i["* "+f[0]];if(c){c===!0?c=i[d]:i[d]!==!0&&(e=f[0],g.splice(j--,0,e));break}}}if(c!==!0)if(c&&a["throws"])b=c(b);else try{b=c(b)}catch(k){return{state:"parsererror",error:c?k:"No conversion from "+h+" to "+e}}}h=e}return{state:"success",data:b}}function cL(){try{return new a.XMLHttpRequest}catch(b){}}function cM(){try{return new a.ActiveXObject("Microsoft.XMLHTTP")}catch(b){}}function cU(){return setTimeout(function(){cN=b},0),cN=p.now()}function cV(a,b){p.each(b,function(b,c){var d=(cT[b]||[]).concat(cT["*"]),e=0,f=d.length;for(;e<f;e++)if(d[e].call(a,b,c))return})}function cW(a,b,c){var d,e=0,f=0,g=cS.length,h=p.Deferred().always(function(){delete i.elem}),i=function(){var b=cN||cU(),c=Math.max(0,j.startTime+j.duration-b),d=1-(c/j.duration||0),e=0,f=j.tweens.length;for(;e<f;e++)j.tweens[e].run(d);return h.notifyWith(a,[j,d,c]),d<1&&f?c:(h.resolveWith(a,[j]),!1)},j=h.promise({elem:a,props:p.extend({},b),opts:p.extend(!0,{specialEasing:{}},c),originalProperties:b,originalOptions:c,startTime:cN||cU(),duration:c.duration,tweens:[],createTween:function(b,c,d){var e=p.Tween(a,j.opts,b,c,j.opts.specialEasing[b]||j.opts.easing);return j.tweens.push(e),e},stop:function(b){var c=0,d=b?j.tweens.length:0;for(;c<d;c++)j.tweens[c].run(1);return b?h.resolveWith(a,[j,b]):h.rejectWith(a,[j,b]),this}}),k=j.props;cX(k,j.opts.specialEasing);for(;e<g;e++){d=cS[e].call(j,a,k,j.opts);if(d)return d}return cV(j,k),p.isFunction(j.opts.start)&&j.opts.start.call(a,j),p.fx.timer(p.extend(i,{anim:j,queue:j.opts.queue,elem:a})),j.progress(j.opts.progress).done(j.opts.done,j.opts.complete).fail(j.opts.fail).always(j.opts.always)}function cX(a,b){var c,d,e,f,g;for(c in a){d=p.camelCase(c),e=b[d],f=a[c],p.isArray(f)&&(e=f[1],f=a[c]=f[0]),c!==d&&(a[d]=f,delete a[c]),g=p.cssHooks[d];if(g&&"expand"in g){f=g.expand(f),delete a[d];for(c in f)c in a||(a[c]=f[c],b[c]=e)}else b[d]=e}}function cY(a,b,c){var d,e,f,g,h,i,j,k,l=this,m=a.style,n={},o=[],q=a.nodeType&&bZ(a);c.queue||(j=p._queueHooks(a,"fx"),j.unqueued==null&&(j.unqueued=0,k=j.empty.fire,j.empty.fire=function(){j.unqueued||k()}),j.unqueued++,l.always(function(){l.always(function(){j.unqueued--,p.queue(a,"fx").length||j.empty.fire()})})),a.nodeType===1&&("height"in b||"width"in b)&&(c.overflow=[m.overflow,m.overflowX,m.overflowY],p.css(a,"display")==="inline"&&p.css(a,"float")==="none"&&(!p.support.inlineBlockNeedsLayout||cc(a.nodeName)==="inline"?m.display="inline-block":m.zoom=1)),c.overflow&&(m.overflow="hidden",p.support.shrinkWrapBlocks||l.done(function(){m.overflow=c.overflow[0],m.overflowX=c.overflow[1],m.overflowY=c.overflow[2]}));for(d in b){f=b[d];if(cP.exec(f)){delete b[d];if(f===(q?"hide":"show"))continue;o.push(d)}}g=o.length;if(g){h=p._data(a,"fxshow")||p._data(a,"fxshow",{}),q?p(a).show():l.done(function(){p(a).hide()}),l.done(function(){var b;p.removeData(a,"fxshow",!0);for(b in n)p.style(a,b,n[b])});for(d=0;d<g;d++)e=o[d],i=l.createTween(e,q?h[e]:0),n[e]=h[e]||p.style(a,e),e in h||(h[e]=i.start,q&&(i.end=i.start,i.start=e==="width"||e==="height"?1:0))}}function cZ(a,b,c,d,e){return new cZ.prototype.init(a,b,c,d,e)}function c$(a,b){var c,d={height:a},e=0;b=b?1:0;for(;e<4;e+=2-b)c=bV[e],d["margin"+c]=d["padding"+c]=a;return b&&(d.opacity=d.width=a),d}function da(a){return p.isWindow(a)?a:a.nodeType===9?a.defaultView||a.parentWindow:!1}var c,d,e=a.document,f=a.location,g=a.navigator,h=a.jQuery,i=a.$,j=Array.prototype.push,k=Array.prototype.slice,l=Array.prototype.indexOf,m=Object.prototype.toString,n=Object.prototype.hasOwnProperty,o=String.prototype.trim,p=function(a,b){return new p.fn.init(a,b,c)},q=/[\-+]?(?:\d*\.|)\d+(?:[eE][\-+]?\d+|)/.source,r=/\S/,s=/\s+/,t=/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,u=/^(?:[^#<]*(<[\w\W]+>)[^>]*$|#([\w\-]*)$)/,v=/^<(\w+)\s*\/?>(?:<\/\1>|)$/,w=/^[\],:{}\s]*$/,x=/(?:^|:|,)(?:\s*\[)+/g,y=/\\(?:["\\\/bfnrt]|u[\da-fA-F]{4})/g,z=/"[^"\\\r\n]*"|true|false|null|-?(?:\d\d*\.|)\d+(?:[eE][\-+]?\d+|)/g,A=/^-ms-/,B=/-([\da-z])/gi,C=function(a,b){return(b+"").toUpperCase()},D=function(){e.addEventListener?(e.removeEventListener("DOMContentLoaded",D,!1),p.ready()):e.readyState==="complete"&&(e.detachEvent("onreadystatechange",D),p.ready())},E={};p.fn=p.prototype={constructor:p,init:function(a,c,d){var f,g,h,i;if(!a)return this;if(a.nodeType)return this.context=this[0]=a,this.length=1,this;if(typeof a=="string"){a.charAt(0)==="<"&&a.charAt(a.length-1)===">"&&a.length>=3?f=[null,a,null]:f=u.exec(a);if(f&&(f[1]||!c)){if(f[1])return c=c instanceof p?c[0]:c,i=c&&c.nodeType?c.ownerDocument||c:e,a=p.parseHTML(f[1],i,!0),v.test(f[1])&&p.isPlainObject(c)&&this.attr.call(a,c,!0),p.merge(this,a);g=e.getElementById(f[2]);if(g&&g.parentNode){if(g.id!==f[2])return d.find(a);this.length=1,this[0]=g}return this.context=e,this.selector=a,this}return!c||c.jquery?(c||d).find(a):this.constructor(c).find(a)}return p.isFunction(a)?d.ready(a):(a.selector!==b&&(this.selector=a.selector,this.context=a.context),p.makeArray(a,this))},selector:"",jquery:"1.8.2",length:0,size:function(){return this.length},toArray:function(){return k.call(this)},get:function(a){return a==null?this.toArray():a<0?this[this.length+a]:this[a]},pushStack:function(a,b,c){var d=p.merge(this.constructor(),a);return d.prevObject=this,d.context=this.context,b==="find"?d.selector=this.selector+(this.selector?" ":"")+c:b&&(d.selector=this.selector+"."+b+"("+c+")"),d},each:function(a,b){return p.each(this,a,b)},ready:function(a){return p.ready.promise().done(a),this},eq:function(a){return a=+a,a===-1?this.slice(a):this.slice(a,a+1)},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},slice:function(){return this.pushStack(k.apply(this,arguments),"slice",k.call(arguments).join(","))},map:function(a){return this.pushStack(p.map(this,function(b,c){return a.call(b,c,b)}))},end:function(){return this.prevObject||this.constructor(null)},push:j,sort:[].sort,splice:[].splice},p.fn.init.prototype=p.fn,p.extend=p.fn.extend=function(){var a,c,d,e,f,g,h=arguments[0]||{},i=1,j=arguments.length,k=!1;typeof h=="boolean"&&(k=h,h=arguments[1]||{},i=2),typeof h!="object"&&!p.isFunction(h)&&(h={}),j===i&&(h=this,--i);for(;i<j;i++)if((a=arguments[i])!=null)for(c in a){d=h[c],e=a[c];if(h===e)continue;k&&e&&(p.isPlainObject(e)||(f=p.isArray(e)))?(f?(f=!1,g=d&&p.isArray(d)?d:[]):g=d&&p.isPlainObject(d)?d:{},h[c]=p.extend(k,g,e)):e!==b&&(h[c]=e)}return h},p.extend({noConflict:function(b){return a.$===p&&(a.$=i),b&&a.jQuery===p&&(a.jQuery=h),p},isReady:!1,readyWait:1,holdReady:function(a){a?p.readyWait++:p.ready(!0)},ready:function(a){if(a===!0?--p.readyWait:p.isReady)return;if(!e.body)return setTimeout(p.ready,1);p.isReady=!0;if(a!==!0&&--p.readyWait>0)return;d.resolveWith(e,[p]),p.fn.trigger&&p(e).trigger("ready").off("ready")},isFunction:function(a){return p.type(a)==="function"},isArray:Array.isArray||function(a){return p.type(a)==="array"},isWindow:function(a){return a!=null&&a==a.window},isNumeric:function(a){return!isNaN(parseFloat(a))&&isFinite(a)},type:function(a){return a==null?String(a):E[m.call(a)]||"object"},isPlainObject:function(a){if(!a||p.type(a)!=="object"||a.nodeType||p.isWindow(a))return!1;try{if(a.constructor&&!n.call(a,"constructor")&&!n.call(a.constructor.prototype,"isPrototypeOf"))return!1}catch(c){return!1}var d;for(d in a);return d===b||n.call(a,d)},isEmptyObject:function(a){var b;for(b in a)return!1;return!0},error:function(a){throw new Error(a)},parseHTML:function(a,b,c){var d;return!a||typeof a!="string"?null:(typeof b=="boolean"&&(c=b,b=0),b=b||e,(d=v.exec(a))?[b.createElement(d[1])]:(d=p.buildFragment([a],b,c?null:[]),p.merge([],(d.cacheable?p.clone(d.fragment):d.fragment).childNodes)))},parseJSON:function(b){if(!b||typeof b!="string")return null;b=p.trim(b);if(a.JSON&&a.JSON.parse)return a.JSON.parse(b);if(w.test(b.replace(y,"@").replace(z,"]").replace(x,"")))return(new Function("return "+b))();p.error("Invalid JSON: "+b)},parseXML:function(c){var d,e;if(!c||typeof c!="string")return null;try{a.DOMParser?(e=new DOMParser,d=e.parseFromString(c,"text/xml")):(d=new ActiveXObject("Microsoft.XMLDOM"),d.async="false",d.loadXML(c))}catch(f){d=b}return(!d||!d.documentElement||d.getElementsByTagName("parsererror").length)&&p.error("Invalid XML: "+c),d},noop:function(){},globalEval:function(b){b&&r.test(b)&&(a.execScript||function(b){a.eval.call(a,b)})(b)},camelCase:function(a){return a.replace(A,"ms-").replace(B,C)},nodeName:function(a,b){return a.nodeName&&a.nodeName.toLowerCase()===b.toLowerCase()},each:function(a,c,d){var e,f=0,g=a.length,h=g===b||p.isFunction(a);if(d){if(h){for(e in a)if(c.apply(a[e],d)===!1)break}else for(;f<g;)if(c.apply(a[f++],d)===!1)break}else if(h){for(e in a)if(c.call(a[e],e,a[e])===!1)break}else for(;f<g;)if(c.call(a[f],f,a[f++])===!1)break;return a},trim:o&&!o.call(" ")?function(a){return a==null?"":o.call(a)}:function(a){return a==null?"":(a+"").replace(t,"")},makeArray:function(a,b){var c,d=b||[];return a!=null&&(c=p.type(a),a.length==null||c==="string"||c==="function"||c==="regexp"||p.isWindow(a)?j.call(d,a):p.merge(d,a)),d},inArray:function(a,b,c){var d;if(b){if(l)return l.call(b,a,c);d=b.length,c=c?c<0?Math.max(0,d+c):c:0;for(;c<d;c++)if(c in b&&b[c]===a)return c}return-1},merge:function(a,c){var d=c.length,e=a.length,f=0;if(typeof d=="number")for(;f<d;f++)a[e++]=c[f];else while(c[f]!==b)a[e++]=c[f++];return a.length=e,a},grep:function(a,b,c){var d,e=[],f=0,g=a.length;c=!!c;for(;f<g;f++)d=!!b(a[f],f),c!==d&&e.push(a[f]);return e},map:function(a,c,d){var e,f,g=[],h=0,i=a.length,j=a instanceof p||i!==b&&typeof i=="number"&&(i>0&&a[0]&&a[i-1]||i===0||p.isArray(a));if(j)for(;h<i;h++)e=c(a[h],h,d),e!=null&&(g[g.length]=e);else for(f in a)e=c(a[f],f,d),e!=null&&(g[g.length]=e);return g.concat.apply([],g)},guid:1,proxy:function(a,c){var d,e,f;return typeof c=="string"&&(d=a[c],c=a,a=d),p.isFunction(a)?(e=k.call(arguments,2),f=function(){return a.apply(c,e.concat(k.call(arguments)))},f.guid=a.guid=a.guid||p.guid++,f):b},access:function(a,c,d,e,f,g,h){var i,j=d==null,k=0,l=a.length;if(d&&typeof d=="object"){for(k in d)p.access(a,c,k,d[k],1,g,e);f=1}else if(e!==b){i=h===b&&p.isFunction(e),j&&(i?(i=c,c=function(a,b,c){return i.call(p(a),c)}):(c.call(a,e),c=null));if(c)for(;k<l;k++)c(a[k],d,i?e.call(a[k],k,c(a[k],d)):e,h);f=1}return f?a:j?c.call(a):l?c(a[0],d):g},now:function(){return(new Date).getTime()}}),p.ready.promise=function(b){if(!d){d=p.Deferred();if(e.readyState==="complete")setTimeout(p.ready,1);else if(e.addEventListener)e.addEventListener("DOMContentLoaded",D,!1),a.addEventListener("load",p.ready,!1);else{e.attachEvent("onreadystatechange",D),a.attachEvent("onload",p.ready);var c=!1;try{c=a.frameElement==null&&e.documentElement}catch(f){}c&&c.doScroll&&function g(){if(!p.isReady){try{c.doScroll("left")}catch(a){return setTimeout(g,50)}p.ready()}}()}}return d.promise(b)},p.each("Boolean Number String Function Array Date RegExp Object".split(" "),function(a,b){E["[object "+b+"]"]=b.toLowerCase()}),c=p(e);var F={};p.Callbacks=function(a){a=typeof a=="string"?F[a]||G(a):p.extend({},a);var c,d,e,f,g,h,i=[],j=!a.once&&[],k=function(b){c=a.memory&&b,d=!0,h=f||0,f=0,g=i.length,e=!0;for(;i&&h<g;h++)if(i[h].apply(b[0],b[1])===!1&&a.stopOnFalse){c=!1;break}e=!1,i&&(j?j.length&&k(j.shift()):c?i=[]:l.disable())},l={add:function(){if(i){var b=i.length;(function d(b){p.each(b,function(b,c){var e=p.type(c);e==="function"&&(!a.unique||!l.has(c))?i.push(c):c&&c.length&&e!=="string"&&d(c)})})(arguments),e?g=i.length:c&&(f=b,k(c))}return this},remove:function(){return i&&p.each(arguments,function(a,b){var c;while((c=p.inArray(b,i,c))>-1)i.splice(c,1),e&&(c<=g&&g--,c<=h&&h--)}),this},has:function(a){return p.inArray(a,i)>-1},empty:function(){return i=[],this},disable:function(){return i=j=c=b,this},disabled:function(){return!i},lock:function(){return j=b,c||l.disable(),this},locked:function(){return!j},fireWith:function(a,b){return b=b||[],b=[a,b.slice?b.slice():b],i&&(!d||j)&&(e?j.push(b):k(b)),this},fire:function(){return l.fireWith(this,arguments),this},fired:function(){return!!d}};return l},p.extend({Deferred:function(a){var b=[["resolve","done",p.Callbacks("once memory"),"resolved"],["reject","fail",p.Callbacks("once memory"),"rejected"],["notify","progress",p.Callbacks("memory")]],c="pending",d={state:function(){return c},always:function(){return e.done(arguments).fail(arguments),this},then:function(){var a=arguments;return p.Deferred(function(c){p.each(b,function(b,d){var f=d[0],g=a[b];e[d[1]](p.isFunction(g)?function(){var a=g.apply(this,arguments);a&&p.isFunction(a.promise)?a.promise().done(c.resolve).fail(c.reject).progress(c.notify):c[f+"With"](this===e?c:this,[a])}:c[f])}),a=null}).promise()},promise:function(a){return a!=null?p.extend(a,d):d}},e={};return d.pipe=d.then,p.each(b,function(a,f){var g=f[2],h=f[3];d[f[1]]=g.add,h&&g.add(function(){c=h},b[a^1][2].disable,b[2][2].lock),e[f[0]]=g.fire,e[f[0]+"With"]=g.fireWith}),d.promise(e),a&&a.call(e,e),e},when:function(a){var b=0,c=k.call(arguments),d=c.length,e=d!==1||a&&p.isFunction(a.promise)?d:0,f=e===1?a:p.Deferred(),g=function(a,b,c){return function(d){b[a]=this,c[a]=arguments.length>1?k.call(arguments):d,c===h?f.notifyWith(b,c):--e||f.resolveWith(b,c)}},h,i,j;if(d>1){h=new Array(d),i=new Array(d),j=new Array(d);for(;b<d;b++)c[b]&&p.isFunction(c[b].promise)?c[b].promise().done(g(b,j,c)).fail(f.reject).progress(g(b,i,h)):--e}return e||f.resolveWith(j,c),f.promise()}}),p.support=function(){var b,c,d,f,g,h,i,j,k,l,m,n=e.createElement("div");n.setAttribute("className","t"),n.innerHTML=" <link/><table></table><a href='/a'>a</a><input type='checkbox'/>",c=n.getElementsByTagName("*"),d=n.getElementsByTagName("a")[0],d.style.cssText="top:1px;float:left;opacity:.5";if(!c||!c.length)return{};f=e.createElement("select"),g=f.appendChild(e.createElement("option")),h=n.getElementsByTagName("input")[0],b={leadingWhitespace:n.firstChild.nodeType===3,tbody:!n.getElementsByTagName("tbody").length,htmlSerialize:!!n.getElementsByTagName("link").length,style:/top/.test(d.getAttribute("style")),hrefNormalized:d.getAttribute("href")==="/a",opacity:/^0.5/.test(d.style.opacity),cssFloat:!!d.style.cssFloat,checkOn:h.value==="on",optSelected:g.selected,getSetAttribute:n.className!=="t",enctype:!!e.createElement("form").enctype,html5Clone:e.createElement("nav").cloneNode(!0).outerHTML!=="<:nav></:nav>",boxModel:e.compatMode==="CSS1Compat",submitBubbles:!0,changeBubbles:!0,focusinBubbles:!1,deleteExpando:!0,noCloneEvent:!0,inlineBlockNeedsLayout:!1,shrinkWrapBlocks:!1,reliableMarginRight:!0,boxSizingReliable:!0,pixelPosition:!1},h.checked=!0,b.noCloneChecked=h.cloneNode(!0).checked,f.disabled=!0,b.optDisabled=!g.disabled;try{delete n.test}catch(o){b.deleteExpando=!1}!n.addEventListener&&n.attachEvent&&n.fireEvent&&(n.attachEvent("onclick",m=function(){b.noCloneEvent=!1}),n.cloneNode(!0).fireEvent("onclick"),n.detachEvent("onclick",m)),h=e.createElement("input"),h.value="t",h.setAttribute("type","radio"),b.radioValue=h.value==="t",h.setAttribute("checked","checked"),h.setAttribute("name","t"),n.appendChild(h),i=e.createDocumentFragment(),i.appendChild(n.lastChild),b.checkClone=i.cloneNode(!0).cloneNode(!0).lastChild.checked,b.appendChecked=h.checked,i.removeChild(h),i.appendChild(n);if(n.attachEvent)for(k in{submit:!0,change:!0,focusin:!0})j="on"+k,l=j in n,l||(n.setAttribute(j,"return;"),l=typeof n[j]=="function"),b[k+"Bubbles"]=l;return p(function(){var c,d,f,g,h="padding:0;margin:0;border:0;display:block;overflow:hidden;",i=e.getElementsByTagName("body")[0];if(!i)return;c=e.createElement("div"),c.style.cssText="visibility:hidden;border:0;width:0;height:0;position:static;top:0;margin-top:1px",i.insertBefore(c,i.firstChild),d=e.createElement("div"),c.appendChild(d),d.innerHTML="<table><tr><td></td><td>t</td></tr></table>",f=d.getElementsByTagName("td"),f[0].style.cssText="padding:0;margin:0;border:0;display:none",l=f[0].offsetHeight===0,f[0].style.display="",f[1].style.display="none",b.reliableHiddenOffsets=l&&f[0].offsetHeight===0,d.innerHTML="",d.style.cssText="box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;padding:1px;border:1px;display:block;width:4px;margin-top:1%;position:absolute;top:1%;",b.boxSizing=d.offsetWidth===4,b.doesNotIncludeMarginInBodyOffset=i.offsetTop!==1,a.getComputedStyle&&(b.pixelPosition=(a.getComputedStyle(d,null)||{}).top!=="1%",b.boxSizingReliable=(a.getComputedStyle(d,null)||{width:"4px"}).width==="4px",g=e.createElement("div"),g.style.cssText=d.style.cssText=h,g.style.marginRight=g.style.width="0",d.style.width="1px",d.appendChild(g),b.reliableMarginRight=!parseFloat((a.getComputedStyle(g,null)||{}).marginRight)),typeof d.style.zoom!="undefined"&&(d.innerHTML="",d.style.cssText=h+"width:1px;padding:1px;display:inline;zoom:1",b.inlineBlockNeedsLayout=d.offsetWidth===3,d.style.display="block",d.style.overflow="visible",d.innerHTML="<div></div>",d.firstChild.style.width="5px",b.shrinkWrapBlocks=d.offsetWidth!==3,c.style.zoom=1),i.removeChild(c),c=d=f=g=null}),i.removeChild(n),c=d=f=g=h=i=n=null,b}();var H=/(?:\{[\s\S]*\}|\[[\s\S]*\])$/,I=/([A-Z])/g;p.extend({cache:{},deletedIds:[],uuid:0,expando:"jQuery"+(p.fn.jquery+Math.random()).replace(/\D/g,""),noData:{embed:!0,object:"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000",applet:!0},hasData:function(a){return a=a.nodeType?p.cache[a[p.expando]]:a[p.expando],!!a&&!K(a)},data:function(a,c,d,e){if(!p.acceptData(a))return;var f,g,h=p.expando,i=typeof c=="string",j=a.nodeType,k=j?p.cache:a,l=j?a[h]:a[h]&&h;if((!l||!k[l]||!e&&!k[l].data)&&i&&d===b)return;l||(j?a[h]=l=p.deletedIds.pop()||p.guid++:l=h),k[l]||(k[l]={},j||(k[l].toJSON=p.noop));if(typeof c=="object"||typeof c=="function")e?k[l]=p.extend(k[l],c):k[l].data=p.extend(k[l].data,c);return f=k[l],e||(f.data||(f.data={}),f=f.data),d!==b&&(f[p.camelCase(c)]=d),i?(g=f[c],g==null&&(g=f[p.camelCase(c)])):g=f,g},removeData:function(a,b,c){if(!p.acceptData(a))return;var d,e,f,g=a.nodeType,h=g?p.cache:a,i=g?a[p.expando]:p.expando;if(!h[i])return;if(b){d=c?h[i]:h[i].data;if(d){p.isArray(b)||(b in d?b=[b]:(b=p.camelCase(b),b in d?b=[b]:b=b.split(" ")));for(e=0,f=b.length;e<f;e++)delete d[b[e]];if(!(c?K:p.isEmptyObject)(d))return}}if(!c){delete h[i].data;if(!K(h[i]))return}g?p.cleanData([a],!0):p.support.deleteExpando||h!=h.window?delete h[i]:h[i]=null},_data:function(a,b,c){return p.data(a,b,c,!0)},acceptData:function(a){var b=a.nodeName&&p.noData[a.nodeName.toLowerCase()];return!b||b!==!0&&a.getAttribute("classid")===b}}),p.fn.extend({data:function(a,c){var d,e,f,g,h,i=this[0],j=0,k=null;if(a===b){if(this.length){k=p.data(i);if(i.nodeType===1&&!p._data(i,"parsedAttrs")){f=i.attributes;for(h=f.length;j<h;j++)g=f[j].name,g.indexOf("data-")||(g=p.camelCase(g.substring(5)),J(i,g,k[g]));p._data(i,"parsedAttrs",!0)}}return k}return typeof a=="object"?this.each(function(){p.data(this,a)}):(d=a.split(".",2),d[1]=d[1]?"."+d[1]:"",e=d[1]+"!",p.access(this,function(c){if(c===b)return k=this.triggerHandler("getData"+e,[d[0]]),k===b&&i&&(k=p.data(i,a),k=J(i,a,k)),k===b&&d[1]?this.data(d[0]):k;d[1]=c,this.each(function(){var b=p(this);b.triggerHandler("setData"+e,d),p.data(this,a,c),b.triggerHandler("changeData"+e,d)})},null,c,arguments.length>1,null,!1))},removeData:function(a){return this.each(function(){p.removeData(this,a)})}}),p.extend({queue:function(a,b,c){var d;if(a)return b=(b||"fx")+"queue",d=p._data(a,b),c&&(!d||p.isArray(c)?d=p._data(a,b,p.makeArray(c)):d.push(c)),d||[]},dequeue:function(a,b){b=b||"fx";var c=p.queue(a,b),d=c.length,e=c.shift(),f=p._queueHooks(a,b),g=function(){p.dequeue(a,b)};e==="inprogress"&&(e=c.shift(),d--),e&&(b==="fx"&&c.unshift("inprogress"),delete f.stop,e.call(a,g,f)),!d&&f&&f.empty.fire()},_queueHooks:function(a,b){var c=b+"queueHooks";return p._data(a,c)||p._data(a,c,{empty:p.Callbacks("once memory").add(function(){p.removeData(a,b+"queue",!0),p.removeData(a,c,!0)})})}}),p.fn.extend({queue:function(a,c){var d=2;return typeof a!="string"&&(c=a,a="fx",d--),arguments.length<d?p.queue(this[0],a):c===b?this:this.each(function(){var b=p.queue(this,a,c);p._queueHooks(this,a),a==="fx"&&b[0]!=="inprogress"&&p.dequeue(this,a)})},dequeue:function(a){return this.each(function(){p.dequeue(this,a)})},delay:function(a,b){return a=p.fx?p.fx.speeds[a]||a:a,b=b||"fx",this.queue(b,function(b,c){var d=setTimeout(b,a);c.stop=function(){clearTimeout(d)}})},clearQueue:function(a){return this.queue(a||"fx",[])},promise:function(a,c){var d,e=1,f=p.Deferred(),g=this,h=this.length,i=function(){--e||f.resolveWith(g,[g])};typeof a!="string"&&(c=a,a=b),a=a||"fx";while(h--)d=p._data(g[h],a+"queueHooks"),d&&d.empty&&(e++,d.empty.add(i));return i(),f.promise(c)}});var L,M,N,O=/[\t\r\n]/g,P=/\r/g,Q=/^(?:button|input)$/i,R=/^(?:button|input|object|select|textarea)$/i,S=/^a(?:rea|)$/i,T=/^(?:autofocus|autoplay|async|checked|controls|defer|disabled|hidden|loop|multiple|open|readonly|required|scoped|selected)$/i,U=p.support.getSetAttribute;p.fn.extend({attr:function(a,b){return p.access(this,p.attr,a,b,arguments.length>1)},removeAttr:function(a){return this.each(function(){p.removeAttr(this,a)})},prop:function(a,b){return p.access(this,p.prop,a,b,arguments.length>1)},removeProp:function(a){return a=p.propFix[a]||a,this.each(function(){try{this[a]=b,delete this[a]}catch(c){}})},addClass:function(a){var b,c,d,e,f,g,h;if(p.isFunction(a))return this.each(function(b){p(this).addClass(a.call(this,b,this.className))});if(a&&typeof a=="string"){b=a.split(s);for(c=0,d=this.length;c<d;c++){e=this[c];if(e.nodeType===1)if(!e.className&&b.length===1)e.className=a;else{f=" "+e.className+" ";for(g=0,h=b.length;g<h;g++)f.indexOf(" "+b[g]+" ")<0&&(f+=b[g]+" ");e.className=p.trim(f)}}}return this},removeClass:function(a){var c,d,e,f,g,h,i;if(p.isFunction(a))return this.each(function(b){p(this).removeClass(a.call(this,b,this.className))});if(a&&typeof a=="string"||a===b){c=(a||"").split(s);for(h=0,i=this.length;h<i;h++){e=this[h];if(e.nodeType===1&&e.className){d=(" "+e.className+" ").replace(O," ");for(f=0,g=c.length;f<g;f++)while(d.indexOf(" "+c[f]+" ")>=0)d=d.replace(" "+c[f]+" "," ");e.className=a?p.trim(d):""}}}return this},toggleClass:function(a,b){var c=typeof a,d=typeof b=="boolean";return p.isFunction(a)?this.each(function(c){p(this).toggleClass(a.call(this,c,this.className,b),b)}):this.each(function(){if(c==="string"){var e,f=0,g=p(this),h=b,i=a.split(s);while(e=i[f++])h=d?h:!g.hasClass(e),g[h?"addClass":"removeClass"](e)}else if(c==="undefined"||c==="boolean")this.className&&p._data(this,"__className__",this.className),this.className=this.className||a===!1?"":p._data(this,"__className__")||""})},hasClass:function(a){var b=" "+a+" ",c=0,d=this.length;for(;c<d;c++)if(this[c].nodeType===1&&(" "+this[c].className+" ").replace(O," ").indexOf(b)>=0)return!0;return!1},val:function(a){var c,d,e,f=this[0];if(!arguments.length){if(f)return c=p.valHooks[f.type]||p.valHooks[f.nodeName.toLowerCase()],c&&"get"in c&&(d=c.get(f,"value"))!==b?d:(d=f.value,typeof d=="string"?d.replace(P,""):d==null?"":d);return}return e=p.isFunction(a),this.each(function(d){var f,g=p(this);if(this.nodeType!==1)return;e?f=a.call(this,d,g.val()):f=a,f==null?f="":typeof f=="number"?f+="":p.isArray(f)&&(f=p.map(f,function(a){return a==null?"":a+""})),c=p.valHooks[this.type]||p.valHooks[this.nodeName.toLowerCase()];if(!c||!("set"in c)||c.set(this,f,"value")===b)this.value=f})}}),p.extend({valHooks:{option:{get:function(a){var b=a.attributes.value;return!b||b.specified?a.value:a.text}},select:{get:function(a){var b,c,d,e,f=a.selectedIndex,g=[],h=a.options,i=a.type==="select-one";if(f<0)return null;c=i?f:0,d=i?f+1:h.length;for(;c<d;c++){e=h[c];if(e.selected&&(p.support.optDisabled?!e.disabled:e.getAttribute("disabled")===null)&&(!e.parentNode.disabled||!p.nodeName(e.parentNode,"optgroup"))){b=p(e).val();if(i)return b;g.push(b)}}return i&&!g.length&&h.length?p(h[f]).val():g},set:function(a,b){var c=p.makeArray(b);return p(a).find("option").each(function(){this.selected=p.inArray(p(this).val(),c)>=0}),c.length||(a.selectedIndex=-1),c}}},attrFn:{},attr:function(a,c,d,e){var f,g,h,i=a.nodeType;if(!a||i===3||i===8||i===2)return;if(e&&p.isFunction(p.fn[c]))return p(a)[c](d);if(typeof a.getAttribute=="undefined")return p.prop(a,c,d);h=i!==1||!p.isXMLDoc(a),h&&(c=c.toLowerCase(),g=p.attrHooks[c]||(T.test(c)?M:L));if(d!==b){if(d===null){p.removeAttr(a,c);return}return g&&"set"in g&&h&&(f=g.set(a,d,c))!==b?f:(a.setAttribute(c,d+""),d)}return g&&"get"in g&&h&&(f=g.get(a,c))!==null?f:(f=a.getAttribute(c),f===null?b:f)},removeAttr:function(a,b){var c,d,e,f,g=0;if(b&&a.nodeType===1){d=b.split(s);for(;g<d.length;g++)e=d[g],e&&(c=p.propFix[e]||e,f=T.test(e),f||p.attr(a,e,""),a.removeAttribute(U?e:c),f&&c in a&&(a[c]=!1))}},attrHooks:{type:{set:function(a,b){if(Q.test(a.nodeName)&&a.parentNode)p.error("type property can't be changed");else if(!p.support.radioValue&&b==="radio"&&p.nodeName(a,"input")){var c=a.value;return a.setAttribute("type",b),c&&(a.value=c),b}}},value:{get:function(a,b){return L&&p.nodeName(a,"button")?L.get(a,b):b in a?a.value:null},set:function(a,b,c){if(L&&p.nodeName(a,"button"))return L.set(a,b,c);a.value=b}}},propFix:{tabindex:"tabIndex",readonly:"readOnly","for":"htmlFor","class":"className",maxlength:"maxLength",cellspacing:"cellSpacing",cellpadding:"cellPadding",rowspan:"rowSpan",colspan:"colSpan",usemap:"useMap",frameborder:"frameBorder",contenteditable:"contentEditable"},prop:function(a,c,d){var e,f,g,h=a.nodeType;if(!a||h===3||h===8||h===2)return;return g=h!==1||!p.isXMLDoc(a),g&&(c=p.propFix[c]||c,f=p.propHooks[c]),d!==b?f&&"set"in f&&(e=f.set(a,d,c))!==b?e:a[c]=d:f&&"get"in f&&(e=f.get(a,c))!==null?e:a[c]},propHooks:{tabIndex:{get:function(a){var c=a.getAttributeNode("tabindex");return c&&c.specified?parseInt(c.value,10):R.test(a.nodeName)||S.test(a.nodeName)&&a.href?0:b}}}}),M={get:function(a,c){var d,e=p.prop(a,c);return e===!0||typeof e!="boolean"&&(d=a.getAttributeNode(c))&&d.nodeValue!==!1?c.toLowerCase():b},set:function(a,b,c){var d;return b===!1?p.removeAttr(a,c):(d=p.propFix[c]||c,d in a&&(a[d]=!0),a.setAttribute(c,c.toLowerCase())),c}},U||(N={name:!0,id:!0,coords:!0},L=p.valHooks.button={get:function(a,c){var d;return d=a.getAttributeNode(c),d&&(N[c]?d.value!=="":d.specified)?d.value:b},set:function(a,b,c){var d=a.getAttributeNode(c);return d||(d=e.createAttribute(c),a.setAttributeNode(d)),d.value=b+""}},p.each(["width","height"],function(a,b){p.attrHooks[b]=p.extend(p.attrHooks[b],{set:function(a,c){if(c==="")return a.setAttribute(b,"auto"),c}})}),p.attrHooks.contenteditable={get:L.get,set:function(a,b,c){b===""&&(b="false"),L.set(a,b,c)}}),p.support.hrefNormalized||p.each(["href","src","width","height"],function(a,c){p.attrHooks[c]=p.extend(p.attrHooks[c],{get:function(a){var d=a.getAttribute(c,2);return d===null?b:d}})}),p.support.style||(p.attrHooks.style={get:function(a){return a.style.cssText.toLowerCase()||b},set:function(a,b){return a.style.cssText=b+""}}),p.support.optSelected||(p.propHooks.selected=p.extend(p.propHooks.selected,{get:function(a){var b=a.parentNode;return b&&(b.selectedIndex,b.parentNode&&b.parentNode.selectedIndex),null}})),p.support.enctype||(p.propFix.enctype="encoding"),p.support.checkOn||p.each(["radio","checkbox"],function(){p.valHooks[this]={get:function(a){return a.getAttribute("value")===null?"on":a.value}}}),p.each(["radio","checkbox"],function(){p.valHooks[this]=p.extend(p.valHooks[this],{set:function(a,b){if(p.isArray(b))return a.checked=p.inArray(p(a).val(),b)>=0}})});var V=/^(?:textarea|input|select)$/i,W=/^([^\.]*|)(?:\.(.+)|)$/,X=/(?:^|\s)hover(\.\S+|)\b/,Y=/^key/,Z=/^(?:mouse|contextmenu)|click/,$=/^(?:focusinfocus|focusoutblur)$/,_=function(a){return p.event.special.hover?a:a.replace(X,"mouseenter$1 mouseleave$1")};p.event={add:function(a,c,d,e,f){var g,h,i,j,k,l,m,n,o,q,r;if(a.nodeType===3||a.nodeType===8||!c||!d||!(g=p._data(a)))return;d.handler&&(o=d,d=o.handler,f=o.selector),d.guid||(d.guid=p.guid++),i=g.events,i||(g.events=i={}),h=g.handle,h||(g.handle=h=function(a){return typeof p!="undefined"&&(!a||p.event.triggered!==a.type)?p.event.dispatch.apply(h.elem,arguments):b},h.elem=a),c=p.trim(_(c)).split(" ");for(j=0;j<c.length;j++){k=W.exec(c[j])||[],l=k[1],m=(k[2]||"").split(".").sort(),r=p.event.special[l]||{},l=(f?r.delegateType:r.bindType)||l,r=p.event.special[l]||{},n=p.extend({type:l,origType:k[1],data:e,handler:d,guid:d.guid,selector:f,needsContext:f&&p.expr.match.needsContext.test(f),namespace:m.join(".")},o),q=i[l];if(!q){q=i[l]=[],q.delegateCount=0;if(!r.setup||r.setup.call(a,e,m,h)===!1)a.addEventListener?a.addEventListener(l,h,!1):a.attachEvent&&a.attachEvent("on"+l,h)}r.add&&(r.add.call(a,n),n.handler.guid||(n.handler.guid=d.guid)),f?q.splice(q.delegateCount++,0,n):q.push(n),p.event.global[l]=!0}a=null},global:{},remove:function(a,b,c,d,e){var f,g,h,i,j,k,l,m,n,o,q,r=p.hasData(a)&&p._data(a);if(!r||!(m=r.events))return;b=p.trim(_(b||"")).split(" ");for(f=0;f<b.length;f++){g=W.exec(b[f])||[],h=i=g[1],j=g[2];if(!h){for(h in m)p.event.remove(a,h+b[f],c,d,!0);continue}n=p.event.special[h]||{},h=(d?n.delegateType:n.bindType)||h,o=m[h]||[],k=o.length,j=j?new RegExp("(^|\\.)"+j.split(".").sort().join("\\.(?:.*\\.|)")+"(\\.|$)"):null;for(l=0;l<o.length;l++)q=o[l],(e||i===q.origType)&&(!c||c.guid===q.guid)&&(!j||j.test(q.namespace))&&(!d||d===q.selector||d==="**"&&q.selector)&&(o.splice(l--,1),q.selector&&o.delegateCount--,n.remove&&n.remove.call(a,q));o.length===0&&k!==o.length&&((!n.teardown||n.teardown.call(a,j,r.handle)===!1)&&p.removeEvent(a,h,r.handle),delete m[h])}p.isEmptyObject(m)&&(delete r.handle,p.removeData(a,"events",!0))},customEvent:{getData:!0,setData:!0,changeData:!0},trigger:function(c,d,f,g){if(!f||f.nodeType!==3&&f.nodeType!==8){var h,i,j,k,l,m,n,o,q,r,s=c.type||c,t=[];if($.test(s+p.event.triggered))return;s.indexOf("!")>=0&&(s=s.slice(0,-1),i=!0),s.indexOf(".")>=0&&(t=s.split("."),s=t.shift(),t.sort());if((!f||p.event.customEvent[s])&&!p.event.global[s])return;c=typeof c=="object"?c[p.expando]?c:new p.Event(s,c):new p.Event(s),c.type=s,c.isTrigger=!0,c.exclusive=i,c.namespace=t.join("."),c.namespace_re=c.namespace?new RegExp("(^|\\.)"+t.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,m=s.indexOf(":")<0?"on"+s:"";if(!f){h=p.cache;for(j in h)h[j].events&&h[j].events[s]&&p.event.trigger(c,d,h[j].handle.elem,!0);return}c.result=b,c.target||(c.target=f),d=d!=null?p.makeArray(d):[],d.unshift(c),n=p.event.special[s]||{};if(n.trigger&&n.trigger.apply(f,d)===!1)return;q=[[f,n.bindType||s]];if(!g&&!n.noBubble&&!p.isWindow(f)){r=n.delegateType||s,k=$.test(r+s)?f:f.parentNode;for(l=f;k;k=k.parentNode)q.push([k,r]),l=k;l===(f.ownerDocument||e)&&q.push([l.defaultView||l.parentWindow||a,r])}for(j=0;j<q.length&&!c.isPropagationStopped();j++)k=q[j][0],c.type=q[j][1],o=(p._data(k,"events")||{})[c.type]&&p._data(k,"handle"),o&&o.apply(k,d),o=m&&k[m],o&&p.acceptData(k)&&o.apply&&o.apply(k,d)===!1&&c.preventDefault();return c.type=s,!g&&!c.isDefaultPrevented()&&(!n._default||n._default.apply(f.ownerDocument,d)===!1)&&(s!=="click"||!p.nodeName(f,"a"))&&p.acceptData(f)&&m&&f[s]&&(s!=="focus"&&s!=="blur"||c.target.offsetWidth!==0)&&!p.isWindow(f)&&(l=f[m],l&&(f[m]=null),p.event.triggered=s,f[s](),p.event.triggered=b,l&&(f[m]=l)),c.result}return},dispatch:function(c){c=p.event.fix(c||a.event);var d,e,f,g,h,i,j,l,m,n,o=(p._data(this,"events")||{})[c.type]||[],q=o.delegateCount,r=k.call(arguments),s=!c.exclusive&&!c.namespace,t=p.event.special[c.type]||{},u=[];r[0]=c,c.delegateTarget=this;if(t.preDispatch&&t.preDispatch.call(this,c)===!1)return;if(q&&(!c.button||c.type!=="click"))for(f=c.target;f!=this;f=f.parentNode||this)if(f.disabled!==!0||c.type!=="click"){h={},j=[];for(d=0;d<q;d++)l=o[d],m=l.selector,h[m]===b&&(h[m]=l.needsContext?p(m,this).index(f)>=0:p.find(m,this,null,[f]).length),h[m]&&j.push(l);j.length&&u.push({elem:f,matches:j})}o.length>q&&u.push({elem:this,matches:o.slice(q)});for(d=0;d<u.length&&!c.isPropagationStopped();d++){i=u[d],c.currentTarget=i.elem;for(e=0;e<i.matches.length&&!c.isImmediatePropagationStopped();e++){l=i.matches[e];if(s||!c.namespace&&!l.namespace||c.namespace_re&&c.namespace_re.test(l.namespace))c.data=l.data,c.handleObj=l,g=((p.event.special[l.origType]||{}).handle||l.handler).apply(i.elem,r),g!==b&&(c.result=g,g===!1&&(c.preventDefault(),c.stopPropagation()))}}return t.postDispatch&&t.postDispatch.call(this,c),c.result},props:"attrChange attrName relatedNode srcElement altKey bubbles cancelable ctrlKey currentTarget eventPhase metaKey relatedTarget shiftKey target timeStamp view which".split(" "),fixHooks:{},keyHooks:{props:"char charCode key keyCode".split(" "),filter:function(a,b){return a.which==null&&(a.which=b.charCode!=null?b.charCode:b.keyCode),a}},mouseHooks:{props:"button buttons clientX clientY fromElement offsetX offsetY pageX pageY screenX screenY toElement".split(" "),filter:function(a,c){var d,f,g,h=c.button,i=c.fromElement;return a.pageX==null&&c.clientX!=null&&(d=a.target.ownerDocument||e,f=d.documentElement,g=d.body,a.pageX=c.clientX+(f&&f.scrollLeft||g&&g.scrollLeft||0)-(f&&f.clientLeft||g&&g.clientLeft||0),a.pageY=c.clientY+(f&&f.scrollTop||g&&g.scrollTop||0)-(f&&f.clientTop||g&&g.clientTop||0)),!a.relatedTarget&&i&&(a.relatedTarget=i===a.target?c.toElement:i),!a.which&&h!==b&&(a.which=h&1?1:h&2?3:h&4?2:0),a}},fix:function(a){if(a[p.expando])return a;var b,c,d=a,f=p.event.fixHooks[a.type]||{},g=f.props?this.props.concat(f.props):this.props;a=p.Event(d);for(b=g.length;b;)c=g[--b],a[c]=d[c];return a.target||(a.target=d.srcElement||e),a.target.nodeType===3&&(a.target=a.target.parentNode),a.metaKey=!!a.metaKey,f.filter?f.filter(a,d):a},special:{load:{noBubble:!0},focus:{delegateType:"focusin"},blur:{delegateType:"focusout"},beforeunload:{setup:function(a,b,c){p.isWindow(this)&&(this.onbeforeunload=c)},teardown:function(a,b){this.onbeforeunload===b&&(this.onbeforeunload=null)}}},simulate:function(a,b,c,d){var e=p.extend(new p.Event,c,{type:a,isSimulated:!0,originalEvent:{}});d?p.event.trigger(e,null,b):p.event.dispatch.call(b,e),e.isDefaultPrevented()&&c.preventDefault()}},p.event.handle=p.event.dispatch,p.removeEvent=e.removeEventListener?function(a,b,c){a.removeEventListener&&a.removeEventListener(b,c,!1)}:function(a,b,c){var d="on"+b;a.detachEvent&&(typeof a[d]=="undefined"&&(a[d]=null),a.detachEvent(d,c))},p.Event=function(a,b){if(this instanceof p.Event)a&&a.type?(this.originalEvent=a,this.type=a.type,this.isDefaultPrevented=a.defaultPrevented||a.returnValue===!1||a.getPreventDefault&&a.getPreventDefault()?bb:ba):this.type=a,b&&p.extend(this,b),this.timeStamp=a&&a.timeStamp||p.now(),this[p.expando]=!0;else return new p.Event(a,b)},p.Event.prototype={preventDefault:function(){this.isDefaultPrevented=bb;var a=this.originalEvent;if(!a)return;a.preventDefault?a.preventDefault():a.returnValue=!1},stopPropagation:function(){this.isPropagationStopped=bb;var a=this.originalEvent;if(!a)return;a.stopPropagation&&a.stopPropagation(),a.cancelBubble=!0},stopImmediatePropagation:function(){this.isImmediatePropagationStopped=bb,this.stopPropagation()},isDefaultPrevented:ba,isPropagationStopped:ba,isImmediatePropagationStopped:ba},p.each({mouseenter:"mouseover",mouseleave:"mouseout"},function(a,b){p.event.special[a]={delegateType:b,bindType:b,handle:function(a){var c,d=this,e=a.relatedTarget,f=a.handleObj,g=f.selector;if(!e||e!==d&&!p.contains(d,e))a.type=f.origType,c=f.handler.apply(this,arguments),a.type=b;return c}}}),p.support.submitBubbles||(p.event.special.submit={setup:function(){if(p.nodeName(this,"form"))return!1;p.event.add(this,"click._submit keypress._submit",function(a){var c=a.target,d=p.nodeName(c,"input")||p.nodeName(c,"button")?c.form:b;d&&!p._data(d,"_submit_attached")&&(p.event.add(d,"submit._submit",function(a){a._submit_bubble=!0}),p._data(d,"_submit_attached",!0))})},postDispatch:function(a){a._submit_bubble&&(delete a._submit_bubble,this.parentNode&&!a.isTrigger&&p.event.simulate("submit",this.parentNode,a,!0))},teardown:function(){if(p.nodeName(this,"form"))return!1;p.event.remove(this,"._submit")}}),p.support.changeBubbles||(p.event.special.change={setup:function(){if(V.test(this.nodeName)){if(this.type==="checkbox"||this.type==="radio")p.event.add(this,"propertychange._change",function(a){a.originalEvent.propertyName==="checked"&&(this._just_changed=!0)}),p.event.add(this,"click._change",function(a){this._just_changed&&!a.isTrigger&&(this._just_changed=!1),p.event.simulate("change",this,a,!0)});return!1}p.event.add(this,"beforeactivate._change",function(a){var b=a.target;V.test(b.nodeName)&&!p._data(b,"_change_attached")&&(p.event.add(b,"change._change",function(a){this.parentNode&&!a.isSimulated&&!a.isTrigger&&p.event.simulate("change",this.parentNode,a,!0)}),p._data(b,"_change_attached",!0))})},handle:function(a){var b=a.target;if(this!==b||a.isSimulated||a.isTrigger||b.type!=="radio"&&b.type!=="checkbox")return a.handleObj.handler.apply(this,arguments)},teardown:function(){return p.event.remove(this,"._change"),!V.test(this.nodeName)}}),p.support.focusinBubbles||p.each({focus:"focusin",blur:"focusout"},function(a,b){var c=0,d=function(a){p.event.simulate(b,a.target,p.event.fix(a),!0)};p.event.special[b]={setup:function(){c++===0&&e.addEventListener(a,d,!0)},teardown:function(){--c===0&&e.removeEventListener(a,d,!0)}}}),p.fn.extend({on:function(a,c,d,e,f){var g,h;if(typeof a=="object"){typeof c!="string"&&(d=d||c,c=b);for(h in a)this.on(h,c,d,a[h],f);return this}d==null&&e==null?(e=c,d=c=b):e==null&&(typeof c=="string"?(e=d,d=b):(e=d,d=c,c=b));if(e===!1)e=ba;else if(!e)return this;return f===1&&(g=e,e=function(a){return p().off(a),g.apply(this,arguments)},e.guid=g.guid||(g.guid=p.guid++)),this.each(function(){p.event.add(this,a,e,d,c)})},one:function(a,b,c,d){return this.on(a,b,c,d,1)},off:function(a,c,d){var e,f;if(a&&a.preventDefault&&a.handleObj)return e=a.handleObj,p(a.delegateTarget).off(e.namespace?e.origType+"."+e.namespace:e.origType,e.selector,e.handler),this;if(typeof a=="object"){for(f in a)this.off(f,c,a[f]);return this}if(c===!1||typeof c=="function")d=c,c=b;return d===!1&&(d=ba),this.each(function(){p.event.remove(this,a,d,c)})},bind:function(a,b,c){return this.on(a,null,b,c)},unbind:function(a,b){return this.off(a,null,b)},live:function(a,b,c){return p(this.context).on(a,this.selector,b,c),this},die:function(a,b){return p(this.context).off(a,this.selector||"**",b),this},delegate:function(a,b,c,d){return this.on(b,a,c,d)},undelegate:function(a,b,c){return arguments.length===1?this.off(a,"**"):this.off(b,a||"**",c)},trigger:function(a,b){return this.each(function(){p.event.trigger(a,b,this)})},triggerHandler:function(a,b){if(this[0])return p.event.trigger(a,b,this[0],!0)},toggle:function(a){var b=arguments,c=a.guid||p.guid++,d=0,e=function(c){var e=(p._data(this,"lastToggle"+a.guid)||0)%d;return p._data(this,"lastToggle"+a.guid,e+1),c.preventDefault(),b[e].apply(this,arguments)||!1};e.guid=c;while(d<b.length)b[d++].guid=c;return this.click(e)},hover:function(a,b){return this.mouseenter(a).mouseleave(b||a)}}),p.each("blur focus focusin focusout load resize scroll unload click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup error contextmenu".split(" "),function(a,b){p.fn[b]=function(a,c){return c==null&&(c=a,a=null),arguments.length>0?this.on(b,null,a,c):this.trigger(b)},Y.test(b)&&(p.event.fixHooks[b]=p.event.keyHooks),Z.test(b)&&(p.event.fixHooks[b]=p.event.mouseHooks)}),function(a,b){function bc(a,b,c,d){c=c||[],b=b||r;var e,f,i,j,k=b.nodeType;if(!a||typeof a!="string")return c;if(k!==1&&k!==9)return[];i=g(b);if(!i&&!d)if(e=P.exec(a))if(j=e[1]){if(k===9){f=b.getElementById(j);if(!f||!f.parentNode)return c;if(f.id===j)return c.push(f),c}else if(b.ownerDocument&&(f=b.ownerDocument.getElementById(j))&&h(b,f)&&f.id===j)return c.push(f),c}else{if(e[2])return w.apply(c,x.call(b.getElementsByTagName(a),0)),c;if((j=e[3])&&_&&b.getElementsByClassName)return w.apply(c,x.call(b.getElementsByClassName(j),0)),c}return bp(a.replace(L,"$1"),b,c,d,i)}function bd(a){return function(b){var c=b.nodeName.toLowerCase();return c==="input"&&b.type===a}}function be(a){return function(b){var c=b.nodeName.toLowerCase();return(c==="input"||c==="button")&&b.type===a}}function bf(a){return z(function(b){return b=+b,z(function(c,d){var e,f=a([],c.length,b),g=f.length;while(g--)c[e=f[g]]&&(c[e]=!(d[e]=c[e]))})})}function bg(a,b,c){if(a===b)return c;var d=a.nextSibling;while(d){if(d===b)return-1;d=d.nextSibling}return 1}function bh(a,b){var c,d,f,g,h,i,j,k=C[o][a];if(k)return b?0:k.slice(0);h=a,i=[],j=e.preFilter;while(h){if(!c||(d=M.exec(h)))d&&(h=h.slice(d[0].length)),i.push(f=[]);c=!1;if(d=N.exec(h))f.push(c=new q(d.shift())),h=h.slice(c.length),c.type=d[0].replace(L," ");for(g in e.filter)(d=W[g].exec(h))&&(!j[g]||(d=j[g](d,r,!0)))&&(f.push(c=new q(d.shift())),h=h.slice(c.length),c.type=g,c.matches=d);if(!c)break}return b?h.length:h?bc.error(a):C(a,i).slice(0)}function bi(a,b,d){var e=b.dir,f=d&&b.dir==="parentNode",g=u++;return b.first?function(b,c,d){while(b=b[e])if(f||b.nodeType===1)return a(b,c,d)}:function(b,d,h){if(!h){var i,j=t+" "+g+" ",k=j+c;while(b=b[e])if(f||b.nodeType===1){if((i=b[o])===k)return b.sizset;if(typeof i=="string"&&i.indexOf(j)===0){if(b.sizset)return b}else{b[o]=k;if(a(b,d,h))return b.sizset=!0,b;b.sizset=!1}}}else while(b=b[e])if(f||b.nodeType===1)if(a(b,d,h))return b}}function bj(a){return a.length>1?function(b,c,d){var e=a.length;while(e--)if(!a[e](b,c,d))return!1;return!0}:a[0]}function bk(a,b,c,d,e){var f,g=[],h=0,i=a.length,j=b!=null;for(;h<i;h++)if(f=a[h])if(!c||c(f,d,e))g.push(f),j&&b.push(h);return g}function bl(a,b,c,d,e,f){return d&&!d[o]&&(d=bl(d)),e&&!e[o]&&(e=bl(e,f)),z(function(f,g,h,i){if(f&&e)return;var j,k,l,m=[],n=[],o=g.length,p=f||bo(b||"*",h.nodeType?[h]:h,[],f),q=a&&(f||!b)?bk(p,m,a,h,i):p,r=c?e||(f?a:o||d)?[]:g:q;c&&c(q,r,h,i);if(d){l=bk(r,n),d(l,[],h,i),j=l.length;while(j--)if(k=l[j])r[n[j]]=!(q[n[j]]=k)}if(f){j=a&&r.length;while(j--)if(k=r[j])f[m[j]]=!(g[m[j]]=k)}else r=bk(r===g?r.splice(o,r.length):r),e?e(null,g,r,i):w.apply(g,r)})}function bm(a){var b,c,d,f=a.length,g=e.relative[a[0].type],h=g||e.relative[" "],i=g?1:0,j=bi(function(a){return a===b},h,!0),k=bi(function(a){return y.call(b,a)>-1},h,!0),m=[function(a,c,d){return!g&&(d||c!==l)||((b=c).nodeType?j(a,c,d):k(a,c,d))}];for(;i<f;i++)if(c=e.relative[a[i].type])m=[bi(bj(m),c)];else{c=e.filter[a[i].type].apply(null,a[i].matches);if(c[o]){d=++i;for(;d<f;d++)if(e.relative[a[d].type])break;return bl(i>1&&bj(m),i>1&&a.slice(0,i-1).join("").replace(L,"$1"),c,i<d&&bm(a.slice(i,d)),d<f&&bm(a=a.slice(d)),d<f&&a.join(""))}m.push(c)}return bj(m)}function bn(a,b){var d=b.length>0,f=a.length>0,g=function(h,i,j,k,m){var n,o,p,q=[],s=0,u="0",x=h&&[],y=m!=null,z=l,A=h||f&&e.find.TAG("*",m&&i.parentNode||i),B=t+=z==null?1:Math.E;y&&(l=i!==r&&i,c=g.el);for(;(n=A[u])!=null;u++){if(f&&n){for(o=0;p=a[o];o++)if(p(n,i,j)){k.push(n);break}y&&(t=B,c=++g.el)}d&&((n=!p&&n)&&s--,h&&x.push(n))}s+=u;if(d&&u!==s){for(o=0;p=b[o];o++)p(x,q,i,j);if(h){if(s>0)while(u--)!x[u]&&!q[u]&&(q[u]=v.call(k));q=bk(q)}w.apply(k,q),y&&!h&&q.length>0&&s+b.length>1&&bc.uniqueSort(k)}return y&&(t=B,l=z),x};return g.el=0,d?z(g):g}function bo(a,b,c,d){var e=0,f=b.length;for(;e<f;e++)bc(a,b[e],c,d);return c}function bp(a,b,c,d,f){var g,h,j,k,l,m=bh(a),n=m.length;if(!d&&m.length===1){h=m[0]=m[0].slice(0);if(h.length>2&&(j=h[0]).type==="ID"&&b.nodeType===9&&!f&&e.relative[h[1].type]){b=e.find.ID(j.matches[0].replace(V,""),b,f)[0];if(!b)return c;a=a.slice(h.shift().length)}for(g=W.POS.test(a)?-1:h.length-1;g>=0;g--){j=h[g];if(e.relative[k=j.type])break;if(l=e.find[k])if(d=l(j.matches[0].replace(V,""),R.test(h[0].type)&&b.parentNode||b,f)){h.splice(g,1),a=d.length&&h.join("");if(!a)return w.apply(c,x.call(d,0)),c;break}}}return i(a,m)(d,b,f,c,R.test(a)),c}function bq(){}var c,d,e,f,g,h,i,j,k,l,m=!0,n="undefined",o=("sizcache"+Math.random()).replace(".",""),q=String,r=a.document,s=r.documentElement,t=0,u=0,v=[].pop,w=[].push,x=[].slice,y=[].indexOf||function(a){var b=0,c=this.length;for(;b<c;b++)if(this[b]===a)return b;return-1},z=function(a,b){return a[o]=b==null||b,a},A=function(){var a={},b=[];return z(function(c,d){return b.push(c)>e.cacheLength&&delete a[b.shift()],a[c]=d},a)},B=A(),C=A(),D=A(),E="[\\x20\\t\\r\\n\\f]",F="(?:\\\\.|[-\\w]|[^\\x00-\\xa0])+",G=F.replace("w","w#"),H="([*^$|!~]?=)",I="\\["+E+"*("+F+")"+E+"*(?:"+H+E+"*(?:(['\"])((?:\\\\.|[^\\\\])*?)\\3|("+G+")|)|)"+E+"*\\]",J=":("+F+")(?:\\((?:(['\"])((?:\\\\.|[^\\\\])*?)\\2|([^()[\\]]*|(?:(?:"+I+")|[^:]|\\\\.)*|.*))\\)|)",K=":(even|odd|eq|gt|lt|nth|first|last)(?:\\("+E+"*((?:-\\d)?\\d*)"+E+"*\\)|)(?=[^-]|$)",L=new RegExp("^"+E+"+|((?:^|[^\\\\])(?:\\\\.)*)"+E+"+$","g"),M=new RegExp("^"+E+"*,"+E+"*"),N=new RegExp("^"+E+"*([\\x20\\t\\r\\n\\f>+~])"+E+"*"),O=new RegExp(J),P=/^(?:#([\w\-]+)|(\w+)|\.([\w\-]+))$/,Q=/^:not/,R=/[\x20\t\r\n\f]*[+~]/,S=/:not\($/,T=/h\d/i,U=/input|select|textarea|button/i,V=/\\(?!\\)/g,W={ID:new RegExp("^#("+F+")"),CLASS:new RegExp("^\\.("+F+")"),NAME:new RegExp("^\\[name=['\"]?("+F+")['\"]?\\]"),TAG:new RegExp("^("+F.replace("w","w*")+")"),ATTR:new RegExp("^"+I),PSEUDO:new RegExp("^"+J),POS:new RegExp(K,"i"),CHILD:new RegExp("^:(only|nth|first|last)-child(?:\\("+E+"*(even|odd|(([+-]|)(\\d*)n|)"+E+"*(?:([+-]|)"+E+"*(\\d+)|))"+E+"*\\)|)","i"),needsContext:new RegExp("^"+E+"*[>+~]|"+K,"i")},X=function(a){var b=r.createElement("div");try{return a(b)}catch(c){return!1}finally{b=null}},Y=X(function(a){return a.appendChild(r.createComment("")),!a.getElementsByTagName("*").length}),Z=X(function(a){return a.innerHTML="<a href='#'></a>",a.firstChild&&typeof a.firstChild.getAttribute!==n&&a.firstChild.getAttribute("href")==="#"}),$=X(function(a){a.innerHTML="<select></select>";var b=typeof a.lastChild.getAttribute("multiple");return b!=="boolean"&&b!=="string"}),_=X(function(a){return a.innerHTML="<div class='hidden e'></div><div class='hidden'></div>",!a.getElementsByClassName||!a.getElementsByClassName("e").length?!1:(a.lastChild.className="e",a.getElementsByClassName("e").length===2)}),ba=X(function(a){a.id=o+0,a.innerHTML="<a name='"+o+"'></a><div name='"+o+"'></div>",s.insertBefore(a,s.firstChild);var b=r.getElementsByName&&r.getElementsByName(o).length===2+r.getElementsByName(o+0).length;return d=!r.getElementById(o),s.removeChild(a),b});try{x.call(s.childNodes,0)[0].nodeType}catch(bb){x=function(a){var b,c=[];for(;b=this[a];a++)c.push(b);return c}}bc.matches=function(a,b){return bc(a,null,null,b)},bc.matchesSelector=function(a,b){return bc(b,null,null,[a]).length>0},f=bc.getText=function(a){var b,c="",d=0,e=a.nodeType;if(e){if(e===1||e===9||e===11){if(typeof a.textContent=="string")return a.textContent;for(a=a.firstChild;a;a=a.nextSibling)c+=f(a)}else if(e===3||e===4)return a.nodeValue}else for(;b=a[d];d++)c+=f(b);return c},g=bc.isXML=function(a){var b=a&&(a.ownerDocument||a).documentElement;return b?b.nodeName!=="HTML":!1},h=bc.contains=s.contains?function(a,b){var c=a.nodeType===9?a.documentElement:a,d=b&&b.parentNode;return a===d||!!(d&&d.nodeType===1&&c.contains&&c.contains(d))}:s.compareDocumentPosition?function(a,b){return b&&!!(a.compareDocumentPosition(b)&16)}:function(a,b){while(b=b.parentNode)if(b===a)return!0;return!1},bc.attr=function(a,b){var c,d=g(a);return d||(b=b.toLowerCase()),(c=e.attrHandle[b])?c(a):d||$?a.getAttribute(b):(c=a.getAttributeNode(b),c?typeof a[b]=="boolean"?a[b]?b:null:c.specified?c.value:null:null)},e=bc.selectors={cacheLength:50,createPseudo:z,match:W,attrHandle:Z?{}:{href:function(a){return a.getAttribute("href",2)},type:function(a){return a.getAttribute("type")}},find:{ID:d?function(a,b,c){if(typeof b.getElementById!==n&&!c){var d=b.getElementById(a);return d&&d.parentNode?[d]:[]}}:function(a,c,d){if(typeof c.getElementById!==n&&!d){var e=c.getElementById(a);return e?e.id===a||typeof e.getAttributeNode!==n&&e.getAttributeNode("id").value===a?[e]:b:[]}},TAG:Y?function(a,b){if(typeof b.getElementsByTagName!==n)return b.getElementsByTagName(a)}:function(a,b){var c=b.getElementsByTagName(a);if(a==="*"){var d,e=[],f=0;for(;d=c[f];f++)d.nodeType===1&&e.push(d);return e}return c},NAME:ba&&function(a,b){if(typeof b.getElementsByName!==n)return b.getElementsByName(name)},CLASS:_&&function(a,b,c){if(typeof b.getElementsByClassName!==n&&!c)return b.getElementsByClassName(a)}},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(a){return a[1]=a[1].replace(V,""),a[3]=(a[4]||a[5]||"").replace(V,""),a[2]==="~="&&(a[3]=" "+a[3]+" "),a.slice(0,4)},CHILD:function(a){return a[1]=a[1].toLowerCase(),a[1]==="nth"?(a[2]||bc.error(a[0]),a[3]=+(a[3]?a[4]+(a[5]||1):2*(a[2]==="even"||a[2]==="odd")),a[4]=+(a[6]+a[7]||a[2]==="odd")):a[2]&&bc.error(a[0]),a},PSEUDO:function(a){var b,c;if(W.CHILD.test(a[0]))return null;if(a[3])a[2]=a[3];else if(b=a[4])O.test(b)&&(c=bh(b,!0))&&(c=b.indexOf(")",b.length-c)-b.length)&&(b=b.slice(0,c),a[0]=a[0].slice(0,c)),a[2]=b;return a.slice(0,3)}},filter:{ID:d?function(a){return a=a.replace(V,""),function(b){return b.getAttribute("id")===a}}:function(a){return a=a.replace(V,""),function(b){var c=typeof b.getAttributeNode!==n&&b.getAttributeNode("id");return c&&c.value===a}},TAG:function(a){return a==="*"?function(){return!0}:(a=a.replace(V,"").toLowerCase(),function(b){return b.nodeName&&b.nodeName.toLowerCase()===a})},CLASS:function(a){var b=B[o][a];return b||(b=B(a,new RegExp("(^|"+E+")"+a+"("+E+"|$)"))),function(a){return b.test(a.className||typeof a.getAttribute!==n&&a.getAttribute("class")||"")}},ATTR:function(a,b,c){return function(d,e){var f=bc.attr(d,a);return f==null?b==="!=":b?(f+="",b==="="?f===c:b==="!="?f!==c:b==="^="?c&&f.indexOf(c)===0:b==="*="?c&&f.indexOf(c)>-1:b==="$="?c&&f.substr(f.length-c.length)===c:b==="~="?(" "+f+" ").indexOf(c)>-1:b==="|="?f===c||f.substr(0,c.length+1)===c+"-":!1):!0}},CHILD:function(a,b,c,d){return a==="nth"?function(a){var b,e,f=a.parentNode;if(c===1&&d===0)return!0;if(f){e=0;for(b=f.firstChild;b;b=b.nextSibling)if(b.nodeType===1){e++;if(a===b)break}}return e-=d,e===c||e%c===0&&e/c>=0}:function(b){var c=b;switch(a){case"only":case"first":while(c=c.previousSibling)if(c.nodeType===1)return!1;if(a==="first")return!0;c=b;case"last":while(c=c.nextSibling)if(c.nodeType===1)return!1;return!0}}},PSEUDO:function(a,b){var c,d=e.pseudos[a]||e.setFilters[a.toLowerCase()]||bc.error("unsupported pseudo: "+a);return d[o]?d(b):d.length>1?(c=[a,a,"",b],e.setFilters.hasOwnProperty(a.toLowerCase())?z(function(a,c){var e,f=d(a,b),g=f.length;while(g--)e=y.call(a,f[g]),a[e]=!(c[e]=f[g])}):function(a){return d(a,0,c)}):d}},pseudos:{not:z(function(a){var b=[],c=[],d=i(a.replace(L,"$1"));return d[o]?z(function(a,b,c,e){var f,g=d(a,null,e,[]),h=a.length;while(h--)if(f=g[h])a[h]=!(b[h]=f)}):function(a,e,f){return b[0]=a,d(b,null,f,c),!c.pop()}}),has:z(function(a){return function(b){return bc(a,b).length>0}}),contains:z(function(a){return function(b){return(b.textContent||b.innerText||f(b)).indexOf(a)>-1}}),enabled:function(a){return a.disabled===!1},disabled:function(a){return a.disabled===!0},checked:function(a){var b=a.nodeName.toLowerCase();return b==="input"&&!!a.checked||b==="option"&&!!a.selected},selected:function(a){return a.parentNode&&a.parentNode.selectedIndex,a.selected===!0},parent:function(a){return!e.pseudos.empty(a)},empty:function(a){var b;a=a.firstChild;while(a){if(a.nodeName>"@"||(b=a.nodeType)===3||b===4)return!1;a=a.nextSibling}return!0},header:function(a){return T.test(a.nodeName)},text:function(a){var b,c;return a.nodeName.toLowerCase()==="input"&&(b=a.type)==="text"&&((c=a.getAttribute("type"))==null||c.toLowerCase()===b)},radio:bd("radio"),checkbox:bd("checkbox"),file:bd("file"),password:bd("password"),image:bd("image"),submit:be("submit"),reset:be("reset"),button:function(a){var b=a.nodeName.toLowerCase();return b==="input"&&a.type==="button"||b==="button"},input:function(a){return U.test(a.nodeName)},focus:function(a){var b=a.ownerDocument;return a===b.activeElement&&(!b.hasFocus||b.hasFocus())&&(!!a.type||!!a.href)},active:function(a){return a===a.ownerDocument.activeElement},first:bf(function(a,b,c){return[0]}),last:bf(function(a,b,c){return[b-1]}),eq:bf(function(a,b,c){return[c<0?c+b:c]}),even:bf(function(a,b,c){for(var d=0;d<b;d+=2)a.push(d);return a}),odd:bf(function(a,b,c){for(var d=1;d<b;d+=2)a.push(d);return a}),lt:bf(function(a,b,c){for(var d=c<0?c+b:c;--d>=0;)a.push(d);return a}),gt:bf(function(a,b,c){for(var d=c<0?c+b:c;++d<b;)a.push(d);return a})}},j=s.compareDocumentPosition?function(a,b){return a===b?(k=!0,0):(!a.compareDocumentPosition||!b.compareDocumentPosition?a.compareDocumentPosition:a.compareDocumentPosition(b)&4)?-1:1}:function(a,b){if(a===b)return k=!0,0;if(a.sourceIndex&&b.sourceIndex)return a.sourceIndex-b.sourceIndex;var c,d,e=[],f=[],g=a.parentNode,h=b.parentNode,i=g;if(g===h)return bg(a,b);if(!g)return-1;if(!h)return 1;while(i)e.unshift(i),i=i.parentNode;i=h;while(i)f.unshift(i),i=i.parentNode;c=e.length,d=f.length;for(var j=0;j<c&&j<d;j++)if(e[j]!==f[j])return bg(e[j],f[j]);return j===c?bg(a,f[j],-1):bg(e[j],b,1)},[0,0].sort(j),m=!k,bc.uniqueSort=function(a){var b,c=1;k=m,a.sort(j);if(k)for(;b=a[c];c++)b===a[c-1]&&a.splice(c--,1);return a},bc.error=function(a){throw new Error("Syntax error, unrecognized expression: "+a)},i=bc.compile=function(a,b){var c,d=[],e=[],f=D[o][a];if(!f){b||(b=bh(a)),c=b.length;while(c--)f=bm(b[c]),f[o]?d.push(f):e.push(f);f=D(a,bn(e,d))}return f},r.querySelectorAll&&function(){var a,b=bp,c=/'|\\/g,d=/\=[\x20\t\r\n\f]*([^'"\]]*)[\x20\t\r\n\f]*\]/g,e=[":focus"],f=[":active",":focus"],h=s.matchesSelector||s.mozMatchesSelector||s.webkitMatchesSelector||s.oMatchesSelector||s.msMatchesSelector;X(function(a){a.innerHTML="<select><option selected=''></option></select>",a.querySelectorAll("[selected]").length||e.push("\\["+E+"*(?:checked|disabled|ismap|multiple|readonly|selected|value)"),a.querySelectorAll(":checked").length||e.push(":checked")}),X(function(a){a.innerHTML="<p test=''></p>",a.querySelectorAll("[test^='']").length&&e.push("[*^$]="+E+"*(?:\"\"|'')"),a.innerHTML="<input type='hidden'/>",a.querySelectorAll(":enabled").length||e.push(":enabled",":disabled")}),e=new RegExp(e.join("|")),bp=function(a,d,f,g,h){if(!g&&!h&&(!e||!e.test(a))){var i,j,k=!0,l=o,m=d,n=d.nodeType===9&&a;if(d.nodeType===1&&d.nodeName.toLowerCase()!=="object"){i=bh(a),(k=d.getAttribute("id"))?l=k.replace(c,"\\$&"):d.setAttribute("id",l),l="[id='"+l+"'] ",j=i.length;while(j--)i[j]=l+i[j].join("");m=R.test(a)&&d.parentNode||d,n=i.join(",")}if(n)try{return w.apply(f,x.call(m.querySelectorAll(n),0)),f}catch(p){}finally{k||d.removeAttribute("id")}}return b(a,d,f,g,h)},h&&(X(function(b){a=h.call(b,"div");try{h.call(b,"[test!='']:sizzle"),f.push("!=",J)}catch(c){}}),f=new RegExp(f.join("|")),bc.matchesSelector=function(b,c){c=c.replace(d,"='$1']");if(!g(b)&&!f.test(c)&&(!e||!e.test(c)))try{var i=h.call(b,c);if(i||a||b.document&&b.document.nodeType!==11)return i}catch(j){}return bc(c,null,null,[b]).length>0})}(),e.pseudos.nth=e.pseudos.eq,e.filters=bq.prototype=e.pseudos,e.setFilters=new bq,bc.attr=p.attr,p.find=bc,p.expr=bc.selectors,p.expr[":"]=p.expr.pseudos,p.unique=bc.uniqueSort,p.text=bc.getText,p.isXMLDoc=bc.isXML,p.contains=bc.contains}(a);var bc=/Until$/,bd=/^(?:parents|prev(?:Until|All))/,be=/^.[^:#\[\.,]*$/,bf=p.expr.match.needsContext,bg={children:!0,contents:!0,next:!0,prev:!0};p.fn.extend({find:function(a){var b,c,d,e,f,g,h=this;if(typeof a!="string")return p(a).filter(function(){for(b=0,c=h.length;b<c;b++)if(p.contains(h[b],this))return!0});g=this.pushStack("","find",a);for(b=0,c=this.length;b<c;b++){d=g.length,p.find(a,this[b],g);if(b>0)for(e=d;e<g.length;e++)for(f=0;f<d;f++)if(g[f]===g[e]){g.splice(e--,1);break}}return g},has:function(a){var b,c=p(a,this),d=c.length;return this.filter(function(){for(b=0;b<d;b++)if(p.contains(this,c[b]))return!0})},not:function(a){return this.pushStack(bj(this,a,!1),"not",a)},filter:function(a){return this.pushStack(bj(this,a,!0),"filter",a)},is:function(a){return!!a&&(typeof a=="string"?bf.test(a)?p(a,this.context).index(this[0])>=0:p.filter(a,this).length>0:this.filter(a).length>0)},closest:function(a,b){var c,d=0,e=this.length,f=[],g=bf.test(a)||typeof a!="string"?p(a,b||this.context):0;for(;d<e;d++){c=this[d];while(c&&c.ownerDocument&&c!==b&&c.nodeType!==11){if(g?g.index(c)>-1:p.find.matchesSelector(c,a)){f.push(c);break}c=c.parentNode}}return f=f.length>1?p.unique(f):f,this.pushStack(f,"closest",a)},index:function(a){return a?typeof a=="string"?p.inArray(this[0],p(a)):p.inArray(a.jquery?a[0]:a,this):this[0]&&this[0].parentNode?this.prevAll().length:-1},add:function(a,b){var c=typeof a=="string"?p(a,b):p.makeArray(a&&a.nodeType?[a]:a),d=p.merge(this.get(),c);return this.pushStack(bh(c[0])||bh(d[0])?d:p.unique(d))},addBack:function(a){return this.add(a==null?this.prevObject:this.prevObject.filter(a))}}),p.fn.andSelf=p.fn.addBack,p.each({parent:function(a){var b=a.parentNode;return b&&b.nodeType!==11?b:null},parents:function(a){return p.dir(a,"parentNode")},parentsUntil:function(a,b,c){return p.dir(a,"parentNode",c)},next:function(a){return bi(a,"nextSibling")},prev:function(a){return bi(a,"previousSibling")},nextAll:function(a){return p.dir(a,"nextSibling")},prevAll:function(a){return p.dir(a,"previousSibling")},nextUntil:function(a,b,c){return p.dir(a,"nextSibling",c)},prevUntil:function(a,b,c){return p.dir(a,"previousSibling",c)},siblings:function(a){return p.sibling((a.parentNode||{}).firstChild,a)},children:function(a){return p.sibling(a.firstChild)},contents:function(a){return p.nodeName(a,"iframe")?a.contentDocument||a.contentWindow.document:p.merge([],a.childNodes)}},function(a,b){p.fn[a]=function(c,d){var e=p.map(this,b,c);return bc.test(a)||(d=c),d&&typeof d=="string"&&(e=p.filter(d,e)),e=this.length>1&&!bg[a]?p.unique(e):e,this.length>1&&bd.test(a)&&(e=e.reverse()),this.pushStack(e,a,k.call(arguments).join(","))}}),p.extend({filter:function(a,b,c){return c&&(a=":not("+a+")"),b.length===1?p.find.matchesSelector(b[0],a)?[b[0]]:[]:p.find.matches(a,b)},dir:function(a,c,d){var e=[],f=a[c];while(f&&f.nodeType!==9&&(d===b||f.nodeType!==1||!p(f).is(d)))f.nodeType===1&&e.push(f),f=f[c];return e},sibling:function(a,b){var c=[];for(;a;a=a.nextSibling)a.nodeType===1&&a!==b&&c.push(a);return c}});var bl="abbr|article|aside|audio|bdi|canvas|data|datalist|details|figcaption|figure|footer|header|hgroup|mark|meter|nav|output|progress|section|summary|time|video",bm=/ jQuery\d+="(?:null|\d+)"/g,bn=/^\s+/,bo=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/gi,bp=/<([\w:]+)/,bq=/<tbody/i,br=/<|&#?\w+;/,bs=/<(?:script|style|link)/i,bt=/<(?:script|object|embed|option|style)/i,bu=new RegExp("<(?:"+bl+")[\\s/>]","i"),bv=/^(?:checkbox|radio)$/,bw=/checked\s*(?:[^=]|=\s*.checked.)/i,bx=/\/(java|ecma)script/i,by=/^\s*<!(?:\[CDATA\[|\-\-)|[\]\-]{2}>\s*$/g,bz={option:[1,"<select multiple='multiple'>","</select>"],legend:[1,"<fieldset>","</fieldset>"],thead:[1,"<table>","</table>"],tr:[2,"<table><tbody>","</tbody></table>"],td:[3,"<table><tbody><tr>","</tr></tbody></table>"],col:[2,"<table><tbody></tbody><colgroup>","</colgroup></table>"],area:[1,"<map>","</map>"],_default:[0,"",""]},bA=bk(e),bB=bA.appendChild(e.createElement("div"));bz.optgroup=bz.option,bz.tbody=bz.tfoot=bz.colgroup=bz.caption=bz.thead,bz.th=bz.td,p.support.htmlSerialize||(bz._default=[1,"X<div>","</div>"]),p.fn.extend({text:function(a){return p.access(this,function(a){return a===b?p.text(this):this.empty().append((this[0]&&this[0].ownerDocument||e).createTextNode(a))},null,a,arguments.length)},wrapAll:function(a){if(p.isFunction(a))return this.each(function(b){p(this).wrapAll(a.call(this,b))});if(this[0]){var b=p(a,this[0].ownerDocument).eq(0).clone(!0);this[0].parentNode&&b.insertBefore(this[0]),b.map(function(){var a=this;while(a.firstChild&&a.firstChild.nodeType===1)a=a.firstChild;return a}).append(this)}return this},wrapInner:function(a){return p.isFunction(a)?this.each(function(b){p(this).wrapInner(a.call(this,b))}):this.each(function(){var b=p(this),c=b.contents();c.length?c.wrapAll(a):b.append(a)})},wrap:function(a){var b=p.isFunction(a);return this.each(function(c){p(this).wrapAll(b?a.call(this,c):a)})},unwrap:function(){return this.parent().each(function(){p.nodeName(this,"body")||p(this).replaceWith(this.childNodes)}).end()},append:function(){return this.domManip(arguments,!0,function(a){(this.nodeType===1||this.nodeType===11)&&this.appendChild(a)})},prepend:function(){return this.domManip(arguments,!0,function(a){(this.nodeType===1||this.nodeType===11)&&this.insertBefore(a,this.firstChild)})},before:function(){if(!bh(this[0]))return this.domManip(arguments,!1,function(a){this.parentNode.insertBefore(a,this)});if(arguments.length){var a=p.clean(arguments);return this.pushStack(p.merge(a,this),"before",this.selector)}},after:function(){if(!bh(this[0]))return this.domManip(arguments,!1,function(a){this.parentNode.insertBefore(a,this.nextSibling)});if(arguments.length){var a=p.clean(arguments);return this.pushStack(p.merge(this,a),"after",this.selector)}},remove:function(a,b){var c,d=0;for(;(c=this[d])!=null;d++)if(!a||p.filter(a,[c]).length)!b&&c.nodeType===1&&(p.cleanData(c.getElementsByTagName("*")),p.cleanData([c])),c.parentNode&&c.parentNode.removeChild(c);return this},empty:function(){var a,b=0;for(;(a=this[b])!=null;b++){a.nodeType===1&&p.cleanData(a.getElementsByTagName("*"));while(a.firstChild)a.removeChild(a.firstChild)}return this},clone:function(a,b){return a=a==null?!1:a,b=b==null?a:b,this.map(function(){return p.clone(this,a,b)})},html:function(a){return p.access(this,function(a){var c=this[0]||{},d=0,e=this.length;if(a===b)return c.nodeType===1?c.innerHTML.replace(bm,""):b;if(typeof a=="string"&&!bs.test(a)&&(p.support.htmlSerialize||!bu.test(a))&&(p.support.leadingWhitespace||!bn.test(a))&&!bz[(bp.exec(a)||["",""])[1].toLowerCase()]){a=a.replace(bo,"<$1></$2>");try{for(;d<e;d++)c=this[d]||{},c.nodeType===1&&(p.cleanData(c.getElementsByTagName("*")),c.innerHTML=a);c=0}catch(f){}}c&&this.empty().append(a)},null,a,arguments.length)},replaceWith:function(a){return bh(this[0])?this.length?this.pushStack(p(p.isFunction(a)?a():a),"replaceWith",a):this:p.isFunction(a)?this.each(function(b){var c=p(this),d=c.html();c.replaceWith(a.call(this,b,d))}):(typeof a!="string"&&(a=p(a).detach()),this.each(function(){var b=this.nextSibling,c=this.parentNode;p(this).remove(),b?p(b).before(a):p(c).append(a)}))},detach:function(a){return this.remove(a,!0)},domManip:function(a,c,d){a=[].concat.apply([],a);var e,f,g,h,i=0,j=a[0],k=[],l=this.length;if(!p.support.checkClone&&l>1&&typeof j=="string"&&bw.test(j))return this.each(function(){p(this).domManip(a,c,d)});if(p.isFunction(j))return this.each(function(e){var f=p(this);a[0]=j.call(this,e,c?f.html():b),f.domManip(a,c,d)});if(this[0]){e=p.buildFragment(a,this,k),g=e.fragment,f=g.firstChild,g.childNodes.length===1&&(g=f);if(f){c=c&&p.nodeName(f,"tr");for(h=e.cacheable||l-1;i<l;i++)d.call(c&&p.nodeName(this[i],"table")?bC(this[i],"tbody"):this[i],i===h?g:p.clone(g,!0,!0))}g=f=null,k.length&&p.each(k,function(a,b){b.src?p.ajax?p.ajax({url:b.src,type:"GET",dataType:"script",async:!1,global:!1,"throws":!0}):p.error("no ajax"):p.globalEval((b.text||b.textContent||b.innerHTML||"").replace(by,"")),b.parentNode&&b.parentNode.removeChild(b)})}return this}}),p.buildFragment=function(a,c,d){var f,g,h,i=a[0];return c=c||e,c=!c.nodeType&&c[0]||c,c=c.ownerDocument||c,a.length===1&&typeof i=="string"&&i.length<512&&c===e&&i.charAt(0)==="<"&&!bt.test(i)&&(p.support.checkClone||!bw.test(i))&&(p.support.html5Clone||!bu.test(i))&&(g=!0,f=p.fragments[i],h=f!==b),f||(f=c.createDocumentFragment(),p.clean(a,c,f,d),g&&(p.fragments[i]=h&&f)),{fragment:f,cacheable:g}},p.fragments={},p.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(a,b){p.fn[a]=function(c){var d,e=0,f=[],g=p(c),h=g.length,i=this.length===1&&this[0].parentNode;if((i==null||i&&i.nodeType===11&&i.childNodes.length===1)&&h===1)return g[b](this[0]),this;for(;e<h;e++)d=(e>0?this.clone(!0):this).get(),p(g[e])[b](d),f=f.concat(d);return this.pushStack(f,a,g.selector)}}),p.extend({clone:function(a,b,c){var d,e,f,g;p.support.html5Clone||p.isXMLDoc(a)||!bu.test("<"+a.nodeName+">")?g=a.cloneNode(!0):(bB.innerHTML=a.outerHTML,bB.removeChild(g=bB.firstChild));if((!p.support.noCloneEvent||!p.support.noCloneChecked)&&(a.nodeType===1||a.nodeType===11)&&!p.isXMLDoc(a)){bE(a,g),d=bF(a),e=bF(g);for(f=0;d[f];++f)e[f]&&bE(d[f],e[f])}if(b){bD(a,g);if(c){d=bF(a),e=bF(g);for(f=0;d[f];++f)bD(d[f],e[f])}}return d=e=null,g},clean:function(a,b,c,d){var f,g,h,i,j,k,l,m,n,o,q,r,s=b===e&&bA,t=[];if(!b||typeof b.createDocumentFragment=="undefined")b=e;for(f=0;(h=a[f])!=null;f++){typeof h=="number"&&(h+="");if(!h)continue;if(typeof h=="string")if(!br.test(h))h=b.createTextNode(h);else{s=s||bk(b),l=b.createElement("div"),s.appendChild(l),h=h.replace(bo,"<$1></$2>"),i=(bp.exec(h)||["",""])[1].toLowerCase(),j=bz[i]||bz._default,k=j[0],l.innerHTML=j[1]+h+j[2];while(k--)l=l.lastChild;if(!p.support.tbody){m=bq.test(h),n=i==="table"&&!m?l.firstChild&&l.firstChild.childNodes:j[1]==="<table>"&&!m?l.childNodes:[];for(g=n.length-1;g>=0;--g)p.nodeName(n[g],"tbody")&&!n[g].childNodes.length&&n[g].parentNode.removeChild(n[g])}!p.support.leadingWhitespace&&bn.test(h)&&l.insertBefore(b.createTextNode(bn.exec(h)[0]),l.firstChild),h=l.childNodes,l.parentNode.removeChild(l)}h.nodeType?t.push(h):p.merge(t,h)}l&&(h=l=s=null);if(!p.support.appendChecked)for(f=0;(h=t[f])!=null;f++)p.nodeName(h,"input")?bG(h):typeof h.getElementsByTagName!="undefined"&&p.grep(h.getElementsByTagName("input"),bG);if(c){q=function(a){if(!a.type||bx.test(a.type))return d?d.push(a.parentNode?a.parentNode.removeChild(a):a):c.appendChild(a)};for(f=0;(h=t[f])!=null;f++)if(!p.nodeName(h,"script")||!q(h))c.appendChild(h),typeof h.getElementsByTagName!="undefined"&&(r=p.grep(p.merge([],h.getElementsByTagName("script")),q),t.splice.apply(t,[f+1,0].concat(r)),f+=r.length)}return t},cleanData:function(a,b){var c,d,e,f,g=0,h=p.expando,i=p.cache,j=p.support.deleteExpando,k=p.event.special;for(;(e=a[g])!=null;g++)if(b||p.acceptData(e)){d=e[h],c=d&&i[d];if(c){if(c.events)for(f in c.events)k[f]?p.event.remove(e,f):p.removeEvent(e,f,c.handle);i[d]&&(delete i[d],j?delete e[h]:e.removeAttribute?e.removeAttribute(h):e[h]=null,p.deletedIds.push(d))}}}}),function(){var a,b;p.uaMatch=function(a){a=a.toLowerCase();var b=/(chrome)[ \/]([\w.]+)/.exec(a)||/(webkit)[ \/]([\w.]+)/.exec(a)||/(opera)(?:.*version|)[ \/]([\w.]+)/.exec(a)||/(msie) ([\w.]+)/.exec(a)||a.indexOf("compatible")<0&&/(mozilla)(?:.*? rv:([\w.]+)|)/.exec(a)||[];return{browser:b[1]||"",version:b[2]||"0"}},a=p.uaMatch(g.userAgent),b={},a.browser&&(b[a.browser]=!0,b.version=a.version),b.chrome?b.webkit=!0:b.webkit&&(b.safari=!0),p.browser=b,p.sub=function(){function a(b,c){return new a.fn.init(b,c)}p.extend(!0,a,this),a.superclass=this,a.fn=a.prototype=this(),a.fn.constructor=a,a.sub=this.sub,a.fn.init=function c(c,d){return d&&d instanceof p&&!(d instanceof a)&&(d=a(d)),p.fn.init.call(this,c,d,b)},a.fn.init.prototype=a.fn;var b=a(e);return a}}();var bH,bI,bJ,bK=/alpha\([^)]*\)/i,bL=/opacity=([^)]*)/,bM=/^(top|right|bottom|left)$/,bN=/^(none|table(?!-c[ea]).+)/,bO=/^margin/,bP=new RegExp("^("+q+")(.*)$","i"),bQ=new RegExp("^("+q+")(?!px)[a-z%]+$","i"),bR=new RegExp("^([-+])=("+q+")","i"),bS={},bT={position:"absolute",visibility:"hidden",display:"block"},bU={letterSpacing:0,fontWeight:400},bV=["Top","Right","Bottom","Left"],bW=["Webkit","O","Moz","ms"],bX=p.fn.toggle;p.fn.extend({css:function(a,c){return p.access(this,function(a,c,d){return d!==b?p.style(a,c,d):p.css(a,c)},a,c,arguments.length>1)},show:function(){return b$(this,!0)},hide:function(){return b$(this)},toggle:function(a,b){var c=typeof a=="boolean";return p.isFunction(a)&&p.isFunction(b)?bX.apply(this,arguments):this.each(function(){(c?a:bZ(this))?p(this).show():p(this).hide()})}}),p.extend({cssHooks:{opacity:{get:function(a,b){if(b){var c=bH(a,"opacity");return c===""?"1":c}}}},cssNumber:{fillOpacity:!0,fontWeight:!0,lineHeight:!0,opacity:!0,orphans:!0,widows:!0,zIndex:!0,zoom:!0},cssProps:{"float":p.support.cssFloat?"cssFloat":"styleFloat"},style:function(a,c,d,e){if(!a||a.nodeType===3||a.nodeType===8||!a.style)return;var f,g,h,i=p.camelCase(c),j=a.style;c=p.cssProps[i]||(p.cssProps[i]=bY(j,i)),h=p.cssHooks[c]||p.cssHooks[i];if(d===b)return h&&"get"in h&&(f=h.get(a,!1,e))!==b?f:j[c];g=typeof d,g==="string"&&(f=bR.exec(d))&&(d=(f[1]+1)*f[2]+parseFloat(p.css(a,c)),g="number");if(d==null||g==="number"&&isNaN(d))return;g==="number"&&!p.cssNumber[i]&&(d+="px");if(!h||!("set"in h)||(d=h.set(a,d,e))!==b)try{j[c]=d}catch(k){}},css:function(a,c,d,e){var f,g,h,i=p.camelCase(c);return c=p.cssProps[i]||(p.cssProps[i]=bY(a.style,i)),h=p.cssHooks[c]||p.cssHooks[i],h&&"get"in h&&(f=h.get(a,!0,e)),f===b&&(f=bH(a,c)),f==="normal"&&c in bU&&(f=bU[c]),d||e!==b?(g=parseFloat(f),d||p.isNumeric(g)?g||0:f):f},swap:function(a,b,c){var d,e,f={};for(e in b)f[e]=a.style[e],a.style[e]=b[e];d=c.call(a);for(e in b)a.style[e]=f[e];return d}}),a.getComputedStyle?bH=function(b,c){var d,e,f,g,h=a.getComputedStyle(b,null),i=b.style;return h&&(d=h[c],d===""&&!p.contains(b.ownerDocument,b)&&(d=p.style(b,c)),bQ.test(d)&&bO.test(c)&&(e=i.width,f=i.minWidth,g=i.maxWidth,i.minWidth=i.maxWidth=i.width=d,d=h.width,i.width=e,i.minWidth=f,i.maxWidth=g)),d}:e.documentElement.currentStyle&&(bH=function(a,b){var c,d,e=a.currentStyle&&a.currentStyle[b],f=a.style;return e==null&&f&&f[b]&&(e=f[b]),bQ.test(e)&&!bM.test(b)&&(c=f.left,d=a.runtimeStyle&&a.runtimeStyle.left,d&&(a.runtimeStyle.left=a.currentStyle.left),f.left=b==="fontSize"?"1em":e,e=f.pixelLeft+"px",f.left=c,d&&(a.runtimeStyle.left=d)),e===""?"auto":e}),p.each(["height","width"],function(a,b){p.cssHooks[b]={get:function(a,c,d){if(c)return a.offsetWidth===0&&bN.test(bH(a,"display"))?p.swap(a,bT,function(){return cb(a,b,d)}):cb(a,b,d)},set:function(a,c,d){return b_(a,c,d?ca(a,b,d,p.support.boxSizing&&p.css(a,"boxSizing")==="border-box"):0)}}}),p.support.opacity||(p.cssHooks.opacity={get:function(a,b){return bL.test((b&&a.currentStyle?a.currentStyle.filter:a.style.filter)||"")?.01*parseFloat(RegExp.$1)+"":b?"1":""},set:function(a,b){var c=a.style,d=a.currentStyle,e=p.isNumeric(b)?"alpha(opacity="+b*100+")":"",f=d&&d.filter||c.filter||"";c.zoom=1;if(b>=1&&p.trim(f.replace(bK,""))===""&&c.removeAttribute){c.removeAttribute("filter");if(d&&!d.filter)return}c.filter=bK.test(f)?f.replace(bK,e):f+" "+e}}),p(function(){p.support.reliableMarginRight||(p.cssHooks.marginRight={get:function(a,b){return p.swap(a,{display:"inline-block"},function(){if(b)return bH(a,"marginRight")})}}),!p.support.pixelPosition&&p.fn.position&&p.each(["top","left"],function(a,b){p.cssHooks[b]={get:function(a,c){if(c){var d=bH(a,b);return bQ.test(d)?p(a).position()[b]+"px":d}}}})}),p.expr&&p.expr.filters&&(p.expr.filters.hidden=function(a){return a.offsetWidth===0&&a.offsetHeight===0||!p.support.reliableHiddenOffsets&&(a.style&&a.style.display||bH(a,"display"))==="none"},p.expr.filters.visible=function(a){return!p.expr.filters.hidden(a)}),p.each({margin:"",padding:"",border:"Width"},function(a,b){p.cssHooks[a+b]={expand:function(c){var d,e=typeof c=="string"?c.split(" "):[c],f={};for(d=0;d<4;d++)f[a+bV[d]+b]=e[d]||e[d-2]||e[0];return f}},bO.test(a)||(p.cssHooks[a+b].set=b_)});var cd=/%20/g,ce=/\[\]$/,cf=/\r?\n/g,cg=/^(?:color|date|datetime|datetime-local|email|hidden|month|number|password|range|search|tel|text|time|url|week)$/i,ch=/^(?:select|textarea)/i;p.fn.extend({serialize:function(){return p.param(this.serializeArray())},serializeArray:function(){return this.map(function(){return this.elements?p.makeArray(this.elements):this}).filter(function(){return this.name&&!this.disabled&&(this.checked||ch.test(this.nodeName)||cg.test(this.type))}).map(function(a,b){var c=p(this).val();return c==null?null:p.isArray(c)?p.map(c,function(a,c){return{name:b.name,value:a.replace(cf,"\r\n")}}):{name:b.name,value:c.replace(cf,"\r\n")}}).get()}}),p.param=function(a,c){var d,e=[],f=function(a,b){b=p.isFunction(b)?b():b==null?"":b,e[e.length]=encodeURIComponent(a)+"="+encodeURIComponent(b)};c===b&&(c=p.ajaxSettings&&p.ajaxSettings.traditional);if(p.isArray(a)||a.jquery&&!p.isPlainObject(a))p.each(a,function(){f(this.name,this.value)});else for(d in a)ci(d,a[d],c,f);return e.join("&").replace(cd,"+")};var cj,ck,cl=/#.*$/,cm=/^(.*?):[ \t]*([^\r\n]*)\r?$/mg,cn=/^(?:about|app|app\-storage|.+\-extension|file|res|widget):$/,co=/^(?:GET|HEAD)$/,cp=/^\/\//,cq=/\?/,cr=/<script\b[^<]*(?:(?!<\/script>)<[^<]*)*<\/script>/gi,cs=/([?&])_=[^&]*/,ct=/^([\w\+\.\-]+:)(?:\/\/([^\/?#:]*)(?::(\d+)|)|)/,cu=p.fn.load,cv={},cw={},cx=["*/"]+["*"];try{ck=f.href}catch(cy){ck=e.createElement("a"),ck.href="",ck=ck.href}cj=ct.exec(ck.toLowerCase())||[],p.fn.load=function(a,c,d){if(typeof a!="string"&&cu)return cu.apply(this,arguments);if(!this.length)return this;var e,f,g,h=this,i=a.indexOf(" ");return i>=0&&(e=a.slice(i,a.length),a=a.slice(0,i)),p.isFunction(c)?(d=c,c=b):c&&typeof c=="object"&&(f="POST"),p.ajax({url:a,type:f,dataType:"html",data:c,complete:function(a,b){d&&h.each(d,g||[a.responseText,b,a])}}).done(function(a){g=arguments,h.html(e?p("<div>").append(a.replace(cr,"")).find(e):a)}),this},p.each("ajaxStart ajaxStop ajaxComplete ajaxError ajaxSuccess ajaxSend".split(" "),function(a,b){p.fn[b]=function(a){return this.on(b,a)}}),p.each(["get","post"],function(a,c){p[c]=function(a,d,e,f){return p.isFunction(d)&&(f=f||e,e=d,d=b),p.ajax({type:c,url:a,data:d,success:e,dataType:f})}}),p.extend({getScript:function(a,c){return p.get(a,b,c,"script")},getJSON:function(a,b,c){return p.get(a,b,c,"json")},ajaxSetup:function(a,b){return b?cB(a,p.ajaxSettings):(b=a,a=p.ajaxSettings),cB(a,b),a},ajaxSettings:{url:ck,isLocal:cn.test(cj[1]),global:!0,type:"GET",contentType:"application/x-www-form-urlencoded; charset=UTF-8",processData:!0,async:!0,accepts:{xml:"application/xml, text/xml",html:"text/html",text:"text/plain",json:"application/json, text/javascript","*":cx},contents:{xml:/xml/,html:/html/,json:/json/},responseFields:{xml:"responseXML",text:"responseText"},converters:{"* text":a.String,"text html":!0,"text json":p.parseJSON,"text xml":p.parseXML},flatOptions:{context:!0,url:!0}},ajaxPrefilter:cz(cv),ajaxTransport:cz(cw),ajax:function(a,c){function y(a,c,f,i){var k,s,t,u,w,y=c;if(v===2)return;v=2,h&&clearTimeout(h),g=b,e=i||"",x.readyState=a>0?4:0,f&&(u=cC(l,x,f));if(a>=200&&a<300||a===304)l.ifModified&&(w=x.getResponseHeader("Last-Modified"),w&&(p.lastModified[d]=w),w=x.getResponseHeader("Etag"),w&&(p.etag[d]=w)),a===304?(y="notmodified",k=!0):(k=cD(l,u),y=k.state,s=k.data,t=k.error,k=!t);else{t=y;if(!y||a)y="error",a<0&&(a=0)}x.status=a,x.statusText=(c||y)+"",k?o.resolveWith(m,[s,y,x]):o.rejectWith(m,[x,y,t]),x.statusCode(r),r=b,j&&n.trigger("ajax"+(k?"Success":"Error"),[x,l,k?s:t]),q.fireWith(m,[x,y]),j&&(n.trigger("ajaxComplete",[x,l]),--p.active||p.event.trigger("ajaxStop"))}typeof a=="object"&&(c=a,a=b),c=c||{};var d,e,f,g,h,i,j,k,l=p.ajaxSetup({},c),m=l.context||l,n=m!==l&&(m.nodeType||m instanceof p)?p(m):p.event,o=p.Deferred(),q=p.Callbacks("once memory"),r=l.statusCode||{},t={},u={},v=0,w="canceled",x={readyState:0,setRequestHeader:function(a,b){if(!v){var c=a.toLowerCase();a=u[c]=u[c]||a,t[a]=b}return this},getAllResponseHeaders:function(){return v===2?e:null},getResponseHeader:function(a){var c;if(v===2){if(!f){f={};while(c=cm.exec(e))f[c[1].toLowerCase()]=c[2]}c=f[a.toLowerCase()]}return c===b?null:c},overrideMimeType:function(a){return v||(l.mimeType=a),this},abort:function(a){return a=a||w,g&&g.abort(a),y(0,a),this}};o.promise(x),x.success=x.done,x.error=x.fail,x.complete=q.add,x.statusCode=function(a){if(a){var b;if(v<2)for(b in a)r[b]=[r[b],a[b]];else b=a[x.status],x.always(b)}return this},l.url=((a||l.url)+"").replace(cl,"").replace(cp,cj[1]+"//"),l.dataTypes=p.trim(l.dataType||"*").toLowerCase().split(s),l.crossDomain==null&&(i=ct.exec(l.url.toLowerCase())||!1,l.crossDomain=i&&i.join(":")+(i[3]?"":i[1]==="http:"?80:443)!==cj.join(":")+(cj[3]?"":cj[1]==="http:"?80:443)),l.data&&l.processData&&typeof l.data!="string"&&(l.data=p.param(l.data,l.traditional)),cA(cv,l,c,x);if(v===2)return x;j=l.global,l.type=l.type.toUpperCase(),l.hasContent=!co.test(l.type),j&&p.active++===0&&p.event.trigger("ajaxStart");if(!l.hasContent){l.data&&(l.url+=(cq.test(l.url)?"&":"?")+l.data,delete l.data),d=l.url;if(l.cache===!1){var z=p.now(),A=l.url.replace(cs,"$1_="+z);l.url=A+(A===l.url?(cq.test(l.url)?"&":"?")+"_="+z:"")}}(l.data&&l.hasContent&&l.contentType!==!1||c.contentType)&&x.setRequestHeader("Content-Type",l.contentType),l.ifModified&&(d=d||l.url,p.lastModified[d]&&x.setRequestHeader("If-Modified-Since",p.lastModified[d]),p.etag[d]&&x.setRequestHeader("If-None-Match",p.etag[d])),x.setRequestHeader("Accept",l.dataTypes[0]&&l.accepts[l.dataTypes[0]]?l.accepts[l.dataTypes[0]]+(l.dataTypes[0]!=="*"?", "+cx+"; q=0.01":""):l.accepts["*"]);for(k in l.headers)x.setRequestHeader(k,l.headers[k]);if(!l.beforeSend||l.beforeSend.call(m,x,l)!==!1&&v!==2){w="abort";for(k in{success:1,error:1,complete:1})x[k](l[k]);g=cA(cw,l,c,x);if(!g)y(-1,"No Transport");else{x.readyState=1,j&&n.trigger("ajaxSend",[x,l]),l.async&&l.timeout>0&&(h=setTimeout(function(){x.abort("timeout")},l.timeout));try{v=1,g.send(t,y)}catch(B){if(v<2)y(-1,B);else throw B}}return x}return x.abort()},active:0,lastModified:{},etag:{}});var cE=[],cF=/\?/,cG=/(=)\?(?=&|$)|\?\?/,cH=p.now();p.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var a=cE.pop()||p.expando+"_"+cH++;return this[a]=!0,a}}),p.ajaxPrefilter("json jsonp",function(c,d,e){var f,g,h,i=c.data,j=c.url,k=c.jsonp!==!1,l=k&&cG.test(j),m=k&&!l&&typeof i=="string"&&!(c.contentType||"").indexOf("application/x-www-form-urlencoded")&&cG.test(i);if(c.dataTypes[0]==="jsonp"||l||m)return f=c.jsonpCallback=p.isFunction(c.jsonpCallback)?c.jsonpCallback():c.jsonpCallback,g=a[f],l?c.url=j.replace(cG,"$1"+f):m?c.data=i.replace(cG,"$1"+f):k&&(c.url+=(cF.test(j)?"&":"?")+c.jsonp+"="+f),c.converters["script json"]=function(){return h||p.error(f+" was not called"),h[0]},c.dataTypes[0]="json",a[f]=function(){h=arguments},e.always(function(){a[f]=g,c[f]&&(c.jsonpCallback=d.jsonpCallback,cE.push(f)),h&&p.isFunction(g)&&g(h[0]),h=g=b}),"script"}),p.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/javascript|ecmascript/},converters:{"text script":function(a){return p.globalEval(a),a}}}),p.ajaxPrefilter("script",function(a){a.cache===b&&(a.cache=!1),a.crossDomain&&(a.type="GET",a.global=!1)}),p.ajaxTransport("script",function(a){if(a.crossDomain){var c,d=e.head||e.getElementsByTagName("head")[0]||e.documentElement;return{send:function(f,g){c=e.createElement("script"),c.async="async",a.scriptCharset&&(c.charset=a.scriptCharset),c.src=a.url,c.onload=c.onreadystatechange=function(a,e){if(e||!c.readyState||/loaded|complete/.test(c.readyState))c.onload=c.onreadystatechange=null,d&&c.parentNode&&d.removeChild(c),c=b,e||g(200,"success")},d.insertBefore(c,d.firstChild)},abort:function(){c&&c.onload(0,1)}}}});var cI,cJ=a.ActiveXObject?function(){for(var a in cI)cI[a](0,1)}:!1,cK=0;p.ajaxSettings.xhr=a.ActiveXObject?function(){return!this.isLocal&&cL()||cM()}:cL,function(a){p.extend(p.support,{ajax:!!a,cors:!!a&&"withCredentials"in a})}(p.ajaxSettings.xhr()),p.support.ajax&&p.ajaxTransport(function(c){if(!c.crossDomain||p.support.cors){var d;return{send:function(e,f){var g,h,i=c.xhr();c.username?i.open(c.type,c.url,c.async,c.username,c.password):i.open(c.type,c.url,c.async);if(c.xhrFields)for(h in c.xhrFields)i[h]=c.xhrFields[h];c.mimeType&&i.overrideMimeType&&i.overrideMimeType(c.mimeType),!c.crossDomain&&!e["X-Requested-With"]&&(e["X-Requested-With"]="XMLHttpRequest");try{for(h in e)i.setRequestHeader(h,e[h])}catch(j){}i.send(c.hasContent&&c.data||null),d=function(a,e){var h,j,k,l,m;try{if(d&&(e||i.readyState===4)){d=b,g&&(i.onreadystatechange=p.noop,cJ&&delete cI[g]);if(e)i.readyState!==4&&i.abort();else{h=i.status,k=i.getAllResponseHeaders(),l={},m=i.responseXML,m&&m.documentElement&&(l.xml=m);try{l.text=i.responseText}catch(a){}try{j=i.statusText}catch(n){j=""}!h&&c.isLocal&&!c.crossDomain?h=l.text?200:404:h===1223&&(h=204)}}}catch(o){e||f(-1,o)}l&&f(h,j,l,k)},c.async?i.readyState===4?setTimeout(d,0):(g=++cK,cJ&&(cI||(cI={},p(a).unload(cJ)),cI[g]=d),i.onreadystatechange=d):d()},abort:function(){d&&d(0,1)}}}});var cN,cO,cP=/^(?:toggle|show|hide)$/,cQ=new RegExp("^(?:([-+])=|)("+q+")([a-z%]*)$","i"),cR=/queueHooks$/,cS=[cY],cT={"*":[function(a,b){var c,d,e=this.createTween(a,b),f=cQ.exec(b),g=e.cur(),h=+g||0,i=1,j=20;if(f){c=+f[2],d=f[3]||(p.cssNumber[a]?"":"px");if(d!=="px"&&h){h=p.css(e.elem,a,!0)||c||1;do i=i||".5",h=h/i,p.style(e.elem,a,h+d);while(i!==(i=e.cur()/g)&&i!==1&&--j)}e.unit=d,e.start=h,e.end=f[1]?h+(f[1]+1)*c:c}return e}]};p.Animation=p.extend(cW,{tweener:function(a,b){p.isFunction(a)?(b=a,a=["*"]):a=a.split(" ");var c,d=0,e=a.length;for(;d<e;d++)c=a[d],cT[c]=cT[c]||[],cT[c].unshift(b)},prefilter:function(a,b){b?cS.unshift(a):cS.push(a)}}),p.Tween=cZ,cZ.prototype={constructor:cZ,init:function(a,b,c,d,e,f){this.elem=a,this.prop=c,this.easing=e||"swing",this.options=b,this.start=this.now=this.cur(),this.end=d,this.unit=f||(p.cssNumber[c]?"":"px")},cur:function(){var a=cZ.propHooks[this.prop];return a&&a.get?a.get(this):cZ.propHooks._default.get(this)},run:function(a){var b,c=cZ.propHooks[this.prop];return this.options.duration?this.pos=b=p.easing[this.easing](a,this.options.duration*a,0,1,this.options.duration):this.pos=b=a,this.now=(this.end-this.start)*b+this.start,this.options.step&&this.options.step.call(this.elem,this.now,this),c&&c.set?c.set(this):cZ.propHooks._default.set(this),this}},cZ.prototype.init.prototype=cZ.prototype,cZ.propHooks={_default:{get:function(a){var b;return a.elem[a.prop]==null||!!a.elem.style&&a.elem.style[a.prop]!=null?(b=p.css(a.elem,a.prop,!1,""),!b||b==="auto"?0:b):a.elem[a.prop]},set:function(a){p.fx.step[a.prop]?p.fx.step[a.prop](a):a.elem.style&&(a.elem.style[p.cssProps[a.prop]]!=null||p.cssHooks[a.prop])?p.style(a.elem,a.prop,a.now+a.unit):a.elem[a.prop]=a.now}}},cZ.propHooks.scrollTop=cZ.propHooks.scrollLeft={set:function(a){a.elem.nodeType&&a.elem.parentNode&&(a.elem[a.prop]=a.now)}},p.each(["toggle","show","hide"],function(a,b){var c=p.fn[b];p.fn[b]=function(d,e,f){return d==null||typeof d=="boolean"||!a&&p.isFunction(d)&&p.isFunction(e)?c.apply(this,arguments):this.animate(c$(b,!0),d,e,f)}}),p.fn.extend({fadeTo:function(a,b,c,d){return this.filter(bZ).css("opacity",0).show().end().animate({opacity:b},a,c,d)},animate:function(a,b,c,d){var e=p.isEmptyObject(a),f=p.speed(b,c,d),g=function(){var b=cW(this,p.extend({},a),f);e&&b.stop(!0)};return e||f.queue===!1?this.each(g):this.queue(f.queue,g)},stop:function(a,c,d){var e=function(a){var b=a.stop;delete a.stop,b(d)};return typeof a!="string"&&(d=c,c=a,a=b),c&&a!==!1&&this.queue(a||"fx",[]),this.each(function(){var b=!0,c=a!=null&&a+"queueHooks",f=p.timers,g=p._data(this);if(c)g[c]&&g[c].stop&&e(g[c]);else for(c in g)g[c]&&g[c].stop&&cR.test(c)&&e(g[c]);for(c=f.length;c--;)f[c].elem===this&&(a==null||f[c].queue===a)&&(f[c].anim.stop(d),b=!1,f.splice(c,1));(b||!d)&&p.dequeue(this,a)})}}),p.each({slideDown:c$("show"),slideUp:c$("hide"),slideToggle:c$("toggle"),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"},fadeToggle:{opacity:"toggle"}},function(a,b){p.fn[a]=function(a,c,d){return this.animate(b,a,c,d)}}),p.speed=function(a,b,c){var d=a&&typeof a=="object"?p.extend({},a):{complete:c||!c&&b||p.isFunction(a)&&a,duration:a,easing:c&&b||b&&!p.isFunction(b)&&b};d.duration=p.fx.off?0:typeof d.duration=="number"?d.duration:d.duration in p.fx.speeds?p.fx.speeds[d.duration]:p.fx.speeds._default;if(d.queue==null||d.queue===!0)d.queue="fx";return d.old=d.complete,d.complete=function(){p.isFunction(d.old)&&d.old.call(this),d.queue&&p.dequeue(this,d.queue)},d},p.easing={linear:function(a){return a},swing:function(a){return.5-Math.cos(a*Math.PI)/2}},p.timers=[],p.fx=cZ.prototype.init,p.fx.tick=function(){var a,b=p.timers,c=0;for(;c<b.length;c++)a=b[c],!a()&&b[c]===a&&b.splice(c--,1);b.length||p.fx.stop()},p.fx.timer=function(a){a()&&p.timers.push(a)&&!cO&&(cO=setInterval(p.fx.tick,p.fx.interval))},p.fx.interval=13,p.fx.stop=function(){clearInterval(cO),cO=null},p.fx.speeds={slow:600,fast:200,_default:400},p.fx.step={},p.expr&&p.expr.filters&&(p.expr.filters.animated=function(a){return p.grep(p.timers,function(b){return a===b.elem}).length});var c_=/^(?:body|html)$/i;p.fn.offset=function(a){if(arguments.length)return a===b?this:this.each(function(b){p.offset.setOffset(this,a,b)});var c,d,e,f,g,h,i,j={top:0,left:0},k=this[0],l=k&&k.ownerDocument;if(!l)return;return(d=l.body)===k?p.offset.bodyOffset(k):(c=l.documentElement,p.contains(c,k)?(typeof k.getBoundingClientRect!="undefined"&&(j=k.getBoundingClientRect()),e=da(l),f=c.clientTop||d.clientTop||0,g=c.clientLeft||d.clientLeft||0,h=e.pageYOffset||c.scrollTop,i=e.pageXOffset||c.scrollLeft,{top:j.top+h-f,left:j.left+i-g}):j)},p.offset={bodyOffset:function(a){var b=a.offsetTop,c=a.offsetLeft;return p.support.doesNotIncludeMarginInBodyOffset&&(b+=parseFloat(p.css(a,"marginTop"))||0,c+=parseFloat(p.css(a,"marginLeft"))||0),{top:b,left:c}},setOffset:function(a,b,c){var d=p.css(a,"position");d==="static"&&(a.style.position="relative");var e=p(a),f=e.offset(),g=p.css(a,"top"),h=p.css(a,"left"),i=(d==="absolute"||d==="fixed")&&p.inArray("auto",[g,h])>-1,j={},k={},l,m;i?(k=e.position(),l=k.top,m=k.left):(l=parseFloat(g)||0,m=parseFloat(h)||0),p.isFunction(b)&&(b=b.call(a,c,f)),b.top!=null&&(j.top=b.top-f.top+l),b.left!=null&&(j.left=b.left-f.left+m),"using"in b?b.using.call(a,j):e.css(j)}},p.fn.extend({position:function(){if(!this[0])return;var a=this[0],b=this.offsetParent(),c=this.offset(),d=c_.test(b[0].nodeName)?{top:0,left:0}:b.offset();return c.top-=parseFloat(p.css(a,"marginTop"))||0,c.left-=parseFloat(p.css(a,"marginLeft"))||0,d.top+=parseFloat(p.css(b[0],"borderTopWidth"))||0,d.left+=parseFloat(p.css(b[0],"borderLeftWidth"))||0,{top:c.top-d.top,left:c.left-d.left}},offsetParent:function(){return this.map(function(){var a=this.offsetParent||e.body;while(a&&!c_.test(a.nodeName)&&p.css(a,"position")==="static")a=a.offsetParent;return a||e.body})}}),p.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(a,c){var d=/Y/.test(c);p.fn[a]=function(e){return p.access(this,function(a,e,f){var g=da(a);if(f===b)return g?c in g?g[c]:g.document.documentElement[e]:a[e];g?g.scrollTo(d?p(g).scrollLeft():f,d?f:p(g).scrollTop()):a[e]=f},a,e,arguments.length,null)}}),p.each({Height:"height",Width:"width"},function(a,c){p.each({padding:"inner"+a,content:c,"":"outer"+a},function(d,e){p.fn[e]=function(e,f){var g=arguments.length&&(d||typeof e!="boolean"),h=d||(e===!0||f===!0?"margin":"border");return p.access(this,function(c,d,e){var f;return p.isWindow(c)?c.document.documentElement["client"+a]:c.nodeType===9?(f=c.documentElement,Math.max(c.body["scroll"+a],f["scroll"+a],c.body["offset"+a],f["offset"+a],f["client"+a])):e===b?p.css(c,d,e,h):p.style(c,d,e,h)},c,g?e:b,g,null)}})}),a.jQuery=a.$=p,typeof define=="function"&&define.amd&&define.amd.jQuery&&define("jquery",[],function(){return p})})(window); |
| URL | http://zero.webappsecurity.com/resources/js/placeholders.min.js |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | max-age=2678400 |
| Request Header - size: 287 bytes. |
GET http://zero.webappsecurity.com/resources/js/placeholders.min.js HTTP/1.1
Host: zero.webappsecurity.com User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0 Pragma: no-cache Cache-Control: no-cache Referer: http://zero.webappsecurity.com |
| Request Body - size: 0 bytes. |
|
| Response Header - size: 359 bytes. |
HTTP/1.1 200 OK
Date: Mon, 14 Mar 2022 07:13:42 GMT Server: Apache-Coyote/1.1 Access-Control-Allow-Origin: * Accept-Ranges: bytes ETag: W/"5615-1360116138000" Last-Modified: Wed, 06 Feb 2013 02:02:18 GMT Cache-Control: max-age=2678400 Expires: Thu, 14 Apr 2022 07:13:43 GMT Content-Type: application/javascript;charset=UTF-8 Content-Length: 5615 |
| Response Body - size: 5,615 bytes. |
var Placeholders=function(){var validTypes=["text","search","url","tel","email","password","number","textarea"],settings={live:false,hideOnFocus:false,className:"placeholderspolyfill",textColor:"#999",styleImportant:true},badKeys=[37,38,39,40],interval,valueKeyDown,classNameRegExp=new RegExp("\\b"+settings.className+"\\b");function cursorToStart(elem){var range;if(elem.createTextRange){range=elem.createTextRange();range.move("character",0);range.select()}else if(elem.selectionStart){elem.focus();
elem.setSelectionRange(0,0)}}function focusHandler(){var type;if(this.value===this.getAttribute("placeholder"))if(!settings.hideOnFocus)cursorToStart(this);else{this.className=this.className.replace(classNameRegExp,"");this.value="";type=this.getAttribute("data-placeholdertype");if(type)this.type=type}}function blurHandler(){var type;if(this.value===""){this.className=this.className+" "+settings.className;this.value=this.getAttribute("placeholder");type=this.getAttribute("data-placeholdertype");if(type)this.type= "text"}}function submitHandler(){var inputs=this.getElementsByTagName("input"),textareas=this.getElementsByTagName("textarea"),numInputs=inputs.length,num=numInputs+textareas.length,element,placeholder,i;for(i=0;i<num;i+=1){element=i<numInputs?inputs[i]:textareas[i-numInputs];placeholder=element.getAttribute("placeholder");if(element.value===placeholder)element.value=""}}function keydownHandler(event){valueKeyDown=this.value;return!(valueKeyDown===this.getAttribute("placeholder")&&badKeys.indexOf(event.keyCode)> -1)}function keyupHandler(){var type;if(this.value!==valueKeyDown){this.className=this.className.replace(classNameRegExp,"");this.value=this.value.replace(this.getAttribute("placeholder"),"");type=this.getAttribute("data-placeholdertype");if(type)this.type=type}if(this.value===""){blurHandler.call(this);cursorToStart(this)}}function addEventListener(element,event,fn){if(element.addEventListener)return element.addEventListener(event,fn.bind(element),false);if(element.attachEvent)return element.attachEvent("on"+ event,fn.bind(element))}function addEventListeners(element){if(!settings.hideOnFocus){addEventListener(element,"keydown",keydownHandler);addEventListener(element,"keyup",keyupHandler)}addEventListener(element,"focus",focusHandler);addEventListener(element,"blur",blurHandler)}function updatePlaceholders(){var inputs=document.getElementsByTagName("input"),textareas=document.getElementsByTagName("textarea"),numInputs=inputs.length,num=numInputs+textareas.length,i,form,element,oldPlaceholder,newPlaceholder; for(i=0;i<num;i+=1){element=i<numInputs?inputs[i]:textareas[i-numInputs];newPlaceholder=element.getAttribute("placeholder");if(validTypes.indexOf(element.type)>-1)if(newPlaceholder){oldPlaceholder=element.getAttribute("data-currentplaceholder");if(newPlaceholder!==oldPlaceholder){if(element.value===oldPlaceholder||element.value===newPlaceholder||!element.value){element.value=newPlaceholder;element.className=element.className+" "+settings.className}if(!oldPlaceholder){if(element.form){form=element.form; if(!form.getAttribute("data-placeholdersubmit")){addEventListener(form,"submit",submitHandler);form.setAttribute("data-placeholdersubmit","true")}}addEventListeners(element)}element.setAttribute("data-currentplaceholder",newPlaceholder)}}}}function createPlaceholders(){var inputs=document.getElementsByTagName("input"),textareas=document.getElementsByTagName("textarea"),numInputs=inputs.length,num=numInputs+textareas.length,i,element,form,placeholder;for(i=0;i<num;i+=1){element=i<numInputs?inputs[i]: textareas[i-numInputs];placeholder=element.getAttribute("placeholder");if(validTypes.indexOf(element.type)>-1)if(placeholder){if(element.type==="password")try{element.type="text";element.setAttribute("data-placeholdertype","password")}catch(e){}element.setAttribute("data-currentplaceholder",placeholder);if(element.value===""||element.value===placeholder){element.className=element.className+" "+settings.className;element.value=placeholder}if(element.form){form=element.form;if(!form.getAttribute("data-placeholdersubmit")){addEventListener(form, "submit",submitHandler);form.setAttribute("data-placeholdersubmit","true")}}addEventListeners(element)}}}function init(opts){var test=document.createElement("input"),opt,styleElem,styleRules,i,j;if(typeof test.placeholder==="undefined"){for(opt in opts)if(opts.hasOwnProperty(opt))settings[opt]=opts[opt];styleElem=document.createElement("style");styleElem.type="text/css";var importantValue=settings.styleImportant?"!important":"";styleRules=document.createTextNode("."+settings.className+" { color:"+ settings.textColor+importantValue+"; }");if(styleElem.styleSheet)styleElem.styleSheet.cssText=styleRules.nodeValue;else styleElem.appendChild(styleRules);document.getElementsByTagName("head")[0].appendChild(styleElem);if(!Array.prototype.indexOf)Array.prototype.indexOf=function(obj,start){for(i=start||0,j=this.length;i<j;i+=1)if(this[i]===obj)return i;return-1};if(!Function.prototype.bind)Function.prototype.bind=function(oThis){if(typeof this!=="function")throw new TypeError("Function.prototype.bind - what is trying to be bound is not callable"); var aArgs=Array.prototype.slice.call(arguments,1),fToBind=this,FNop=function(){},fBound=function(){return fToBind.apply(this instanceof FNop?this:oThis,aArgs.concat(Array.prototype.slice.call(arguments)))};FNop.prototype=this.prototype;fBound.prototype=new FNop;return fBound};createPlaceholders();if(settings.live)interval=setInterval(updatePlaceholders,100);return true}return false}return{init:init,refresh:updatePlaceholders}}(); |
| URL | http://zero.webappsecurity.com/robots.txt |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Request Header - size: 224 bytes. |
GET http://zero.webappsecurity.com/robots.txt HTTP/1.1
Host: zero.webappsecurity.com User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0 Pragma: no-cache Cache-Control: no-cache |
| Request Body - size: 0 bytes. |
|
| Response Header - size: 204 bytes. |
HTTP/1.1 404 Not Found
Date: Mon, 14 Mar 2022 07:13:40 GMT Server: Apache-Coyote/1.1 Access-Control-Allow-Origin: * Content-Type: text/html;charset=utf-8 Content-Language: en Content-Length: 971 |
| Response Body - size: 971 bytes. |
<html><head><title>Apache Tomcat/7.0.70 - Error report</title><style><!--H1 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:22px;} H2 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:16px;} H3 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:14px;} BODY {font-family:Tahoma,Arial,sans-serif;color:black;background-color:white;} B {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;} P {font-family:Tahoma,Arial,sans-serif;background:white;color:black;font-size:12px;}A {color : black;}A.name {color : black;}HR {color : #525D76;}--></style> </head><body><h1>HTTP Status 404 - /robots.txt</h1><HR size="1" noshade="noshade"><p><b>type</b> Status report</p><p><b>message</b> <u>/robots.txt</u></p><p><b>description</b> <u>The requested resource is not available.</u></p><HR size="1" noshade="noshade"><h3>Apache Tomcat/7.0.70</h3></body></html>
|
| URL | http://zero.webappsecurity.com/sitemap.xml |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Request Header - size: 225 bytes. |
GET http://zero.webappsecurity.com/sitemap.xml HTTP/1.1
Host: zero.webappsecurity.com User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0 Pragma: no-cache Cache-Control: no-cache |
| Request Body - size: 0 bytes. |
|
| Response Header - size: 204 bytes. |
HTTP/1.1 404 Not Found
Date: Mon, 14 Mar 2022 07:13:40 GMT Server: Apache-Coyote/1.1 Access-Control-Allow-Origin: * Content-Type: text/html;charset=utf-8 Content-Language: en Content-Length: 973 |
| Response Body - size: 973 bytes. |
<html><head><title>Apache Tomcat/7.0.70 - Error report</title><style><!--H1 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:22px;} H2 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:16px;} H3 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:14px;} BODY {font-family:Tahoma,Arial,sans-serif;color:black;background-color:white;} B {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;} P {font-family:Tahoma,Arial,sans-serif;background:white;color:black;font-size:12px;}A {color : black;}A.name {color : black;}HR {color : #525D76;}--></style> </head><body><h1>HTTP Status 404 - /sitemap.xml</h1><HR size="1" noshade="noshade"><p><b>type</b> Status report</p><p><b>message</b> <u>/sitemap.xml</u></p><p><b>description</b> <u>The requested resource is not available.</u></p><HR size="1" noshade="noshade"><h3>Apache Tomcat/7.0.70</h3></body></html>
|
| Instances | 11 |
| Solution |
Validate that the response does not contain sensitive, personal or user-specific information. If it does, consider the use of the following HTTP response headers, to limit, or prevent the content being stored and retrieved from the cache by another user:
Cache-Control: no-cache, no-store, must-revalidate, private
Pragma: no-cache
Expires: 0
This configuration directs both HTTP 1.0 and HTTP 1.1 compliant caching servers to not store the response, and to not retrieve the response (without validation) from the cache, in response to a similar request.
|
| Reference |
https://tools.ietf.org/html/rfc7234
https://tools.ietf.org/html/rfc7231 http://www.w3.org/Protocols/rfc2616/rfc2616-sec13.html (obsoleted by rfc7234) |
| Tags | WSTG-v42-ATHN-06 |
| CWE Id | 524 |
| WASC Id | 13 |
| Plugin Id | 10049 |
|
Informational |
User Agent Fuzzer |
|---|---|
| Description |
Check for differences in response based on fuzzed User Agent (eg. mobile sites, access as a Search Engine Crawler). Compares the response statuscode and the hashcode of the response body with the original response.
|
| URL | http://zero.webappsecurity.com/resources |
| Method | GET |
| Parameter | Header User-Agent |
| Attack | Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1) |
| Evidence | |
| Request Header - size: 255 bytes. |
GET http://zero.webappsecurity.com/resources HTTP/1.1
Host: zero.webappsecurity.com User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1) Pragma: no-cache Cache-Control: no-cache Referer: http://zero.webappsecurity.com Content-Length: 0 |
| Request Body - size: 0 bytes. |
|
| Response Header - size: 267 bytes. |
HTTP/1.1 404 Not Found
Date: Mon, 14 Mar 2022 07:21:47 GMT Server: Apache-Coyote/1.1 Access-Control-Allow-Origin: * Cache-Control: no-cache, max-age=0, must-revalidate, no-store Content-Type: text/html;charset=utf-8 Content-Language: en Content-Length: 949 |
| Response Body - size: 949 bytes. |
<html><head><title>Apache Tomcat/7.0.70 - Error report</title><style><!--H1 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:22px;} H2 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:16px;} H3 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:14px;} BODY {font-family:Tahoma,Arial,sans-serif;color:black;background-color:white;} B {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;} P {font-family:Tahoma,Arial,sans-serif;background:white;color:black;font-size:12px;}A {color : black;}A.name {color : black;}HR {color : #525D76;}--></style> </head><body><h1>HTTP Status 404 - </h1><HR size="1" noshade="noshade"><p><b>type</b> Status report</p><p><b>message</b> <u></u></p><p><b>description</b> <u>The requested resource is not available.</u></p><HR size="1" noshade="noshade"><h3>Apache Tomcat/7.0.70</h3></body></html>
|
| URL | http://zero.webappsecurity.com/resources |
| Method | GET |
| Parameter | Header User-Agent |
| Attack | Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) |
| Evidence | |
| Request Header - size: 255 bytes. |
GET http://zero.webappsecurity.com/resources HTTP/1.1
Host: zero.webappsecurity.com User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Pragma: no-cache Cache-Control: no-cache Referer: http://zero.webappsecurity.com Content-Length: 0 |
| Request Body - size: 0 bytes. |
|
| Response Header - size: 267 bytes. |
HTTP/1.1 404 Not Found
Date: Mon, 14 Mar 2022 07:21:46 GMT Server: Apache-Coyote/1.1 Access-Control-Allow-Origin: * Cache-Control: no-cache, max-age=0, must-revalidate, no-store Content-Type: text/html;charset=utf-8 Content-Language: en Content-Length: 949 |
| Response Body - size: 949 bytes. |
<html><head><title>Apache Tomcat/7.0.70 - Error report</title><style><!--H1 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:22px;} H2 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:16px;} H3 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:14px;} BODY {font-family:Tahoma,Arial,sans-serif;color:black;background-color:white;} B {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;} P {font-family:Tahoma,Arial,sans-serif;background:white;color:black;font-size:12px;}A {color : black;}A.name {color : black;}HR {color : #525D76;}--></style> </head><body><h1>HTTP Status 404 - </h1><HR size="1" noshade="noshade"><p><b>type</b> Status report</p><p><b>message</b> <u></u></p><p><b>description</b> <u>The requested resource is not available.</u></p><HR size="1" noshade="noshade"><h3>Apache Tomcat/7.0.70</h3></body></html>
|
| URL | http://zero.webappsecurity.com/resources |
| Method | GET |
| Parameter | Header User-Agent |
| Attack | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1) |
| Evidence | |
| Request Header - size: 255 bytes. |
GET http://zero.webappsecurity.com/resources HTTP/1.1
Host: zero.webappsecurity.com User-Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1) Pragma: no-cache Cache-Control: no-cache Referer: http://zero.webappsecurity.com Content-Length: 0 |
| Request Body - size: 0 bytes. |
|
| Response Header - size: 267 bytes. |
HTTP/1.1 404 Not Found
Date: Mon, 14 Mar 2022 07:21:46 GMT Server: Apache-Coyote/1.1 Access-Control-Allow-Origin: * Cache-Control: no-cache, max-age=0, must-revalidate, no-store Content-Type: text/html;charset=utf-8 Content-Language: en Content-Length: 949 |
| Response Body - size: 949 bytes. |
<html><head><title>Apache Tomcat/7.0.70 - Error report</title><style><!--H1 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:22px;} H2 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:16px;} H3 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:14px;} BODY {font-family:Tahoma,Arial,sans-serif;color:black;background-color:white;} B {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;} P {font-family:Tahoma,Arial,sans-serif;background:white;color:black;font-size:12px;}A {color : black;}A.name {color : black;}HR {color : #525D76;}--></style> </head><body><h1>HTTP Status 404 - </h1><HR size="1" noshade="noshade"><p><b>type</b> Status report</p><p><b>message</b> <u></u></p><p><b>description</b> <u>The requested resource is not available.</u></p><HR size="1" noshade="noshade"><h3>Apache Tomcat/7.0.70</h3></body></html>
|
| URL | http://zero.webappsecurity.com/resources |
| Method | GET |
| Parameter | Header User-Agent |
| Attack | Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) |
| Evidence | |
| Request Header - size: 277 bytes. |
GET http://zero.webappsecurity.com/resources HTTP/1.1
Host: zero.webappsecurity.com User-Agent: Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) Pragma: no-cache Cache-Control: no-cache Referer: http://zero.webappsecurity.com Content-Length: 0 |
| Request Body - size: 0 bytes. |
|
| Response Header - size: 267 bytes. |
HTTP/1.1 404 Not Found
Date: Mon, 14 Mar 2022 07:21:47 GMT Server: Apache-Coyote/1.1 Access-Control-Allow-Origin: * Cache-Control: no-cache, max-age=0, must-revalidate, no-store Content-Type: text/html;charset=utf-8 Content-Language: en Content-Length: 949 |
| Response Body - size: 949 bytes. |
<html><head><title>Apache Tomcat/7.0.70 - Error report</title><style><!--H1 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:22px;} H2 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:16px;} H3 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:14px;} BODY {font-family:Tahoma,Arial,sans-serif;color:black;background-color:white;} B {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;} P {font-family:Tahoma,Arial,sans-serif;background:white;color:black;font-size:12px;}A {color : black;}A.name {color : black;}HR {color : #525D76;}--></style> </head><body><h1>HTTP Status 404 - </h1><HR size="1" noshade="noshade"><p><b>type</b> Status report</p><p><b>message</b> <u></u></p><p><b>description</b> <u>The requested resource is not available.</u></p><HR size="1" noshade="noshade"><h3>Apache Tomcat/7.0.70</h3></body></html>
|
| URL | http://zero.webappsecurity.com/resources |
| Method | GET |
| Parameter | Header User-Agent |
| Attack | Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) |
| Evidence | |
| Request Header - size: 288 bytes. |
GET http://zero.webappsecurity.com/resources HTTP/1.1
Host: zero.webappsecurity.com User-Agent: Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) Pragma: no-cache Cache-Control: no-cache Referer: http://zero.webappsecurity.com Content-Length: 0 |
| Request Body - size: 0 bytes. |
|
| Response Header - size: 267 bytes. |
HTTP/1.1 404 Not Found
Date: Mon, 14 Mar 2022 07:21:48 GMT Server: Apache-Coyote/1.1 Access-Control-Allow-Origin: * Cache-Control: no-cache, max-age=0, must-revalidate, no-store Content-Type: text/html;charset=utf-8 Content-Language: en Content-Length: 949 |
| Response Body - size: 949 bytes. |
<html><head><title>Apache Tomcat/7.0.70 - Error report</title><style><!--H1 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:22px;} H2 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:16px;} H3 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:14px;} BODY {font-family:Tahoma,Arial,sans-serif;color:black;background-color:white;} B {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;} P {font-family:Tahoma,Arial,sans-serif;background:white;color:black;font-size:12px;}A {color : black;}A.name {color : black;}HR {color : #525D76;}--></style> </head><body><h1>HTTP Status 404 - </h1><HR size="1" noshade="noshade"><p><b>type</b> Status report</p><p><b>message</b> <u></u></p><p><b>description</b> <u>The requested resource is not available.</u></p><HR size="1" noshade="noshade"><h3>Apache Tomcat/7.0.70</h3></body></html>
|
| URL | http://zero.webappsecurity.com/resources |
| Method | GET |
| Parameter | Header User-Agent |
| Attack | Mozilla/5.0 (iPhone; U; CPU iPhone OS 3_0 like Mac OS X; en-us) AppleWebKit/528.18 (KHTML, like Gecko) Version/4.0 Mobile/7A341 Safari/528.16 |
| Evidence | |
| Request Header - size: 346 bytes. |
GET http://zero.webappsecurity.com/resources HTTP/1.1
Host: zero.webappsecurity.com User-Agent: Mozilla/5.0 (iPhone; U; CPU iPhone OS 3_0 like Mac OS X; en-us) AppleWebKit/528.18 (KHTML, like Gecko) Version/4.0 Mobile/7A341 Safari/528.16 Pragma: no-cache Cache-Control: no-cache Referer: http://zero.webappsecurity.com Content-Length: 0 |
| Request Body - size: 0 bytes. |
|
| Response Header - size: 267 bytes. |
HTTP/1.1 404 Not Found
Date: Mon, 14 Mar 2022 07:21:50 GMT Server: Apache-Coyote/1.1 Access-Control-Allow-Origin: * Cache-Control: no-cache, max-age=0, must-revalidate, no-store Content-Type: text/html;charset=utf-8 Content-Language: en Content-Length: 949 |
| Response Body - size: 949 bytes. |
<html><head><title>Apache Tomcat/7.0.70 - Error report</title><style><!--H1 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:22px;} H2 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:16px;} H3 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:14px;} BODY {font-family:Tahoma,Arial,sans-serif;color:black;background-color:white;} B {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;} P {font-family:Tahoma,Arial,sans-serif;background:white;color:black;font-size:12px;}A {color : black;}A.name {color : black;}HR {color : #525D76;}--></style> </head><body><h1>HTTP Status 404 - </h1><HR size="1" noshade="noshade"><p><b>type</b> Status report</p><p><b>message</b> <u></u></p><p><b>description</b> <u>The requested resource is not available.</u></p><HR size="1" noshade="noshade"><h3>Apache Tomcat/7.0.70</h3></body></html>
|
| URL | http://zero.webappsecurity.com/resources |
| Method | GET |
| Parameter | Header User-Agent |
| Attack | msnbot/1.1 (+http://search.msn.com/msnbot.htm) |
| Evidence | |
| Request Header - size: 251 bytes. |
GET http://zero.webappsecurity.com/resources HTTP/1.1
Host: zero.webappsecurity.com User-Agent: msnbot/1.1 (+http://search.msn.com/msnbot.htm) Pragma: no-cache Cache-Control: no-cache Referer: http://zero.webappsecurity.com Content-Length: 0 |
| Request Body - size: 0 bytes. |
|
| Response Header - size: 267 bytes. |
HTTP/1.1 404 Not Found
Date: Mon, 14 Mar 2022 07:21:48 GMT Server: Apache-Coyote/1.1 Access-Control-Allow-Origin: * Cache-Control: no-cache, max-age=0, must-revalidate, no-store Content-Type: text/html;charset=utf-8 Content-Language: en Content-Length: 949 |
| Response Body - size: 949 bytes. |
<html><head><title>Apache Tomcat/7.0.70 - Error report</title><style><!--H1 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:22px;} H2 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:16px;} H3 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:14px;} BODY {font-family:Tahoma,Arial,sans-serif;color:black;background-color:white;} B {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;} P {font-family:Tahoma,Arial,sans-serif;background:white;color:black;font-size:12px;}A {color : black;}A.name {color : black;}HR {color : #525D76;}--></style> </head><body><h1>HTTP Status 404 - </h1><HR size="1" noshade="noshade"><p><b>type</b> Status report</p><p><b>message</b> <u></u></p><p><b>description</b> <u>The requested resource is not available.</u></p><HR size="1" noshade="noshade"><h3>Apache Tomcat/7.0.70</h3></body></html>
|
| URL | http://zero.webappsecurity.com/resources/css |
| Method | GET |
| Parameter | Header User-Agent |
| Attack | Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1) |
| Evidence | |
| Request Header - size: 259 bytes. |
GET http://zero.webappsecurity.com/resources/css HTTP/1.1
Host: zero.webappsecurity.com User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1) Pragma: no-cache Cache-Control: no-cache Referer: http://zero.webappsecurity.com Content-Length: 0 |
| Request Body - size: 0 bytes. |
|
| Response Header - size: 267 bytes. |
HTTP/1.1 404 Not Found
Date: Mon, 14 Mar 2022 07:21:48 GMT Server: Apache-Coyote/1.1 Access-Control-Allow-Origin: * Cache-Control: no-cache, max-age=0, must-revalidate, no-store Content-Type: text/html;charset=utf-8 Content-Language: en Content-Length: 949 |
| Response Body - size: 949 bytes. |
<html><head><title>Apache Tomcat/7.0.70 - Error report</title><style><!--H1 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:22px;} H2 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:16px;} H3 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:14px;} BODY {font-family:Tahoma,Arial,sans-serif;color:black;background-color:white;} B {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;} P {font-family:Tahoma,Arial,sans-serif;background:white;color:black;font-size:12px;}A {color : black;}A.name {color : black;}HR {color : #525D76;}--></style> </head><body><h1>HTTP Status 404 - </h1><HR size="1" noshade="noshade"><p><b>type</b> Status report</p><p><b>message</b> <u></u></p><p><b>description</b> <u>The requested resource is not available.</u></p><HR size="1" noshade="noshade"><h3>Apache Tomcat/7.0.70</h3></body></html>
|
| URL | http://zero.webappsecurity.com/resources/css |
| Method | GET |
| Parameter | Header User-Agent |
| Attack | Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) |
| Evidence | |
| Request Header - size: 259 bytes. |
GET http://zero.webappsecurity.com/resources/css HTTP/1.1
Host: zero.webappsecurity.com User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Pragma: no-cache Cache-Control: no-cache Referer: http://zero.webappsecurity.com Content-Length: 0 |
| Request Body - size: 0 bytes. |
|
| Response Header - size: 267 bytes. |
HTTP/1.1 404 Not Found
Date: Mon, 14 Mar 2022 07:21:48 GMT Server: Apache-Coyote/1.1 Access-Control-Allow-Origin: * Cache-Control: no-cache, max-age=0, must-revalidate, no-store Content-Type: text/html;charset=utf-8 Content-Language: en Content-Length: 949 |
| Response Body - size: 949 bytes. |
<html><head><title>Apache Tomcat/7.0.70 - Error report</title><style><!--H1 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:22px;} H2 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:16px;} H3 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:14px;} BODY {font-family:Tahoma,Arial,sans-serif;color:black;background-color:white;} B {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;} P {font-family:Tahoma,Arial,sans-serif;background:white;color:black;font-size:12px;}A {color : black;}A.name {color : black;}HR {color : #525D76;}--></style> </head><body><h1>HTTP Status 404 - </h1><HR size="1" noshade="noshade"><p><b>type</b> Status report</p><p><b>message</b> <u></u></p><p><b>description</b> <u>The requested resource is not available.</u></p><HR size="1" noshade="noshade"><h3>Apache Tomcat/7.0.70</h3></body></html>
|
| URL | http://zero.webappsecurity.com/resources/css |
| Method | GET |
| Parameter | Header User-Agent |
| Attack | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1) |
| Evidence | |
| Request Header - size: 259 bytes. |
GET http://zero.webappsecurity.com/resources/css HTTP/1.1
Host: zero.webappsecurity.com User-Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1) Pragma: no-cache Cache-Control: no-cache Referer: http://zero.webappsecurity.com Content-Length: 0 |
| Request Body - size: 0 bytes. |
|
| Response Header - size: 267 bytes. |
HTTP/1.1 404 Not Found
Date: Mon, 14 Mar 2022 07:21:47 GMT Server: Apache-Coyote/1.1 Access-Control-Allow-Origin: * Cache-Control: no-cache, max-age=0, must-revalidate, no-store Content-Type: text/html;charset=utf-8 Content-Language: en Content-Length: 949 |
| Response Body - size: 949 bytes. |
<html><head><title>Apache Tomcat/7.0.70 - Error report</title><style><!--H1 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:22px;} H2 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:16px;} H3 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:14px;} BODY {font-family:Tahoma,Arial,sans-serif;color:black;background-color:white;} B {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;} P {font-family:Tahoma,Arial,sans-serif;background:white;color:black;font-size:12px;}A {color : black;}A.name {color : black;}HR {color : #525D76;}--></style> </head><body><h1>HTTP Status 404 - </h1><HR size="1" noshade="noshade"><p><b>type</b> Status report</p><p><b>message</b> <u></u></p><p><b>description</b> <u>The requested resource is not available.</u></p><HR size="1" noshade="noshade"><h3>Apache Tomcat/7.0.70</h3></body></html>
|
| URL | http://zero.webappsecurity.com/resources/css |
| Method | GET |
| Parameter | Header User-Agent |
| Attack | Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) |
| Evidence | |
| Request Header - size: 281 bytes. |
GET http://zero.webappsecurity.com/resources/css HTTP/1.1
Host: zero.webappsecurity.com User-Agent: Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) Pragma: no-cache Cache-Control: no-cache Referer: http://zero.webappsecurity.com Content-Length: 0 |
| Request Body - size: 0 bytes. |
|
| Response Header - size: 267 bytes. |
HTTP/1.1 404 Not Found
Date: Mon, 14 Mar 2022 07:21:50 GMT Server: Apache-Coyote/1.1 Access-Control-Allow-Origin: * Cache-Control: no-cache, max-age=0, must-revalidate, no-store Content-Type: text/html;charset=utf-8 Content-Language: en Content-Length: 949 |
| Response Body - size: 949 bytes. |
<html><head><title>Apache Tomcat/7.0.70 - Error report</title><style><!--H1 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:22px;} H2 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:16px;} H3 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:14px;} BODY {font-family:Tahoma,Arial,sans-serif;color:black;background-color:white;} B {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;} P {font-family:Tahoma,Arial,sans-serif;background:white;color:black;font-size:12px;}A {color : black;}A.name {color : black;}HR {color : #525D76;}--></style> </head><body><h1>HTTP Status 404 - </h1><HR size="1" noshade="noshade"><p><b>type</b> Status report</p><p><b>message</b> <u></u></p><p><b>description</b> <u>The requested resource is not available.</u></p><HR size="1" noshade="noshade"><h3>Apache Tomcat/7.0.70</h3></body></html>
|
| URL | http://zero.webappsecurity.com/resources/css |
| Method | GET |
| Parameter | Header User-Agent |
| Attack | Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) |
| Evidence | |
| Request Header - size: 292 bytes. |
GET http://zero.webappsecurity.com/resources/css HTTP/1.1
Host: zero.webappsecurity.com User-Agent: Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) Pragma: no-cache Cache-Control: no-cache Referer: http://zero.webappsecurity.com Content-Length: 0 |
| Request Body - size: 0 bytes. |
|
| Response Header - size: 267 bytes. |
HTTP/1.1 404 Not Found
Date: Mon, 14 Mar 2022 07:21:50 GMT Server: Apache-Coyote/1.1 Access-Control-Allow-Origin: * Cache-Control: no-cache, max-age=0, must-revalidate, no-store Content-Type: text/html;charset=utf-8 Content-Language: en Content-Length: 949 |
| Response Body - size: 949 bytes. |
<html><head><title>Apache Tomcat/7.0.70 - Error report</title><style><!--H1 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:22px;} H2 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:16px;} H3 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:14px;} BODY {font-family:Tahoma,Arial,sans-serif;color:black;background-color:white;} B {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;} P {font-family:Tahoma,Arial,sans-serif;background:white;color:black;font-size:12px;}A {color : black;}A.name {color : black;}HR {color : #525D76;}--></style> </head><body><h1>HTTP Status 404 - </h1><HR size="1" noshade="noshade"><p><b>type</b> Status report</p><p><b>message</b> <u></u></p><p><b>description</b> <u>The requested resource is not available.</u></p><HR size="1" noshade="noshade"><h3>Apache Tomcat/7.0.70</h3></body></html>
|
| URL | http://zero.webappsecurity.com/resources/css |
| Method | GET |
| Parameter | Header User-Agent |
| Attack | Mozilla/5.0 (iPhone; U; CPU iPhone OS 3_0 like Mac OS X; en-us) AppleWebKit/528.18 (KHTML, like Gecko) Version/4.0 Mobile/7A341 Safari/528.16 |
| Evidence | |
| Request Header - size: 350 bytes. |
GET http://zero.webappsecurity.com/resources/css HTTP/1.1
Host: zero.webappsecurity.com User-Agent: Mozilla/5.0 (iPhone; U; CPU iPhone OS 3_0 like Mac OS X; en-us) AppleWebKit/528.18 (KHTML, like Gecko) Version/4.0 Mobile/7A341 Safari/528.16 Pragma: no-cache Cache-Control: no-cache Referer: http://zero.webappsecurity.com Content-Length: 0 |
| Request Body - size: 0 bytes. |
|
| Response Header - size: 267 bytes. |
HTTP/1.1 404 Not Found
Date: Mon, 14 Mar 2022 07:21:51 GMT Server: Apache-Coyote/1.1 Access-Control-Allow-Origin: * Cache-Control: no-cache, max-age=0, must-revalidate, no-store Content-Type: text/html;charset=utf-8 Content-Language: en Content-Length: 949 |
| Response Body - size: 949 bytes. |
<html><head><title>Apache Tomcat/7.0.70 - Error report</title><style><!--H1 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:22px;} H2 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:16px;} H3 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:14px;} BODY {font-family:Tahoma,Arial,sans-serif;color:black;background-color:white;} B {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;} P {font-family:Tahoma,Arial,sans-serif;background:white;color:black;font-size:12px;}A {color : black;}A.name {color : black;}HR {color : #525D76;}--></style> </head><body><h1>HTTP Status 404 - </h1><HR size="1" noshade="noshade"><p><b>type</b> Status report</p><p><b>message</b> <u></u></p><p><b>description</b> <u>The requested resource is not available.</u></p><HR size="1" noshade="noshade"><h3>Apache Tomcat/7.0.70</h3></body></html>
|
| URL | http://zero.webappsecurity.com/resources/css |
| Method | GET |
| Parameter | Header User-Agent |
| Attack | msnbot/1.1 (+http://search.msn.com/msnbot.htm) |
| Evidence | |
| Request Header - size: 255 bytes. |
GET http://zero.webappsecurity.com/resources/css HTTP/1.1
Host: zero.webappsecurity.com User-Agent: msnbot/1.1 (+http://search.msn.com/msnbot.htm) Pragma: no-cache Cache-Control: no-cache Referer: http://zero.webappsecurity.com Content-Length: 0 |
| Request Body - size: 0 bytes. |
|
| Response Header - size: 267 bytes. |
HTTP/1.1 404 Not Found
Date: Mon, 14 Mar 2022 07:21:50 GMT Server: Apache-Coyote/1.1 Access-Control-Allow-Origin: * Cache-Control: no-cache, max-age=0, must-revalidate, no-store Content-Type: text/html;charset=utf-8 Content-Language: en Content-Length: 949 |
| Response Body - size: 949 bytes. |
<html><head><title>Apache Tomcat/7.0.70 - Error report</title><style><!--H1 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:22px;} H2 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:16px;} H3 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:14px;} BODY {font-family:Tahoma,Arial,sans-serif;color:black;background-color:white;} B {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;} P {font-family:Tahoma,Arial,sans-serif;background:white;color:black;font-size:12px;}A {color : black;}A.name {color : black;}HR {color : #525D76;}--></style> </head><body><h1>HTTP Status 404 - </h1><HR size="1" noshade="noshade"><p><b>type</b> Status report</p><p><b>message</b> <u></u></p><p><b>description</b> <u>The requested resource is not available.</u></p><HR size="1" noshade="noshade"><h3>Apache Tomcat/7.0.70</h3></body></html>
|
| URL | http://zero.webappsecurity.com/resources/img |
| Method | GET |
| Parameter | Header User-Agent |
| Attack | Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1) |
| Evidence | |
| Request Header - size: 259 bytes. |
GET http://zero.webappsecurity.com/resources/img HTTP/1.1
Host: zero.webappsecurity.com User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1) Pragma: no-cache Cache-Control: no-cache Referer: http://zero.webappsecurity.com Content-Length: 0 |
| Request Body - size: 0 bytes. |
|
| Response Header - size: 267 bytes. |
HTTP/1.1 404 Not Found
Date: Mon, 14 Mar 2022 07:21:54 GMT Server: Apache-Coyote/1.1 Access-Control-Allow-Origin: * Cache-Control: no-cache, max-age=0, must-revalidate, no-store Content-Type: text/html;charset=utf-8 Content-Language: en Content-Length: 949 |
| Response Body - size: 949 bytes. |
<html><head><title>Apache Tomcat/7.0.70 - Error report</title><style><!--H1 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:22px;} H2 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:16px;} H3 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:14px;} BODY {font-family:Tahoma,Arial,sans-serif;color:black;background-color:white;} B {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;} P {font-family:Tahoma,Arial,sans-serif;background:white;color:black;font-size:12px;}A {color : black;}A.name {color : black;}HR {color : #525D76;}--></style> </head><body><h1>HTTP Status 404 - </h1><HR size="1" noshade="noshade"><p><b>type</b> Status report</p><p><b>message</b> <u></u></p><p><b>description</b> <u>The requested resource is not available.</u></p><HR size="1" noshade="noshade"><h3>Apache Tomcat/7.0.70</h3></body></html>
|
| URL | http://zero.webappsecurity.com/resources/img |
| Method | GET |
| Parameter | Header User-Agent |
| Attack | Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) |
| Evidence | |
| Request Header - size: 259 bytes. |
GET http://zero.webappsecurity.com/resources/img HTTP/1.1
Host: zero.webappsecurity.com User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Pragma: no-cache Cache-Control: no-cache Referer: http://zero.webappsecurity.com Content-Length: 0 |
| Request Body - size: 0 bytes. |
|
| Response Header - size: 267 bytes. |
HTTP/1.1 404 Not Found
Date: Mon, 14 Mar 2022 07:21:53 GMT Server: Apache-Coyote/1.1 Access-Control-Allow-Origin: * Cache-Control: no-cache, max-age=0, must-revalidate, no-store Content-Type: text/html;charset=utf-8 Content-Language: en Content-Length: 949 |
| Response Body - size: 949 bytes. |
<html><head><title>Apache Tomcat/7.0.70 - Error report</title><style><!--H1 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:22px;} H2 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:16px;} H3 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:14px;} BODY {font-family:Tahoma,Arial,sans-serif;color:black;background-color:white;} B {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;} P {font-family:Tahoma,Arial,sans-serif;background:white;color:black;font-size:12px;}A {color : black;}A.name {color : black;}HR {color : #525D76;}--></style> </head><body><h1>HTTP Status 404 - </h1><HR size="1" noshade="noshade"><p><b>type</b> Status report</p><p><b>message</b> <u></u></p><p><b>description</b> <u>The requested resource is not available.</u></p><HR size="1" noshade="noshade"><h3>Apache Tomcat/7.0.70</h3></body></html>
|
| URL | http://zero.webappsecurity.com/resources/img |
| Method | GET |
| Parameter | Header User-Agent |
| Attack | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1) |
| Evidence | |
| Request Header - size: 259 bytes. |
GET http://zero.webappsecurity.com/resources/img HTTP/1.1
Host: zero.webappsecurity.com User-Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1) Pragma: no-cache Cache-Control: no-cache Referer: http://zero.webappsecurity.com Content-Length: 0 |
| Request Body - size: 0 bytes. |
|
| Response Header - size: 267 bytes. |
HTTP/1.1 404 Not Found
Date: Mon, 14 Mar 2022 07:21:53 GMT Server: Apache-Coyote/1.1 Access-Control-Allow-Origin: * Cache-Control: no-cache, max-age=0, must-revalidate, no-store Content-Type: text/html;charset=utf-8 Content-Language: en Content-Length: 949 |
| Response Body - size: 949 bytes. |
<html><head><title>Apache Tomcat/7.0.70 - Error report</title><style><!--H1 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:22px;} H2 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:16px;} H3 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:14px;} BODY {font-family:Tahoma,Arial,sans-serif;color:black;background-color:white;} B {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;} P {font-family:Tahoma,Arial,sans-serif;background:white;color:black;font-size:12px;}A {color : black;}A.name {color : black;}HR {color : #525D76;}--></style> </head><body><h1>HTTP Status 404 - </h1><HR size="1" noshade="noshade"><p><b>type</b> Status report</p><p><b>message</b> <u></u></p><p><b>description</b> <u>The requested resource is not available.</u></p><HR size="1" noshade="noshade"><h3>Apache Tomcat/7.0.70</h3></body></html>
|
| URL | http://zero.webappsecurity.com/resources/img |
| Method | GET |
| Parameter | Header User-Agent |
| Attack | Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) |
| Evidence | |
| Request Header - size: 281 bytes. |
GET http://zero.webappsecurity.com/resources/img HTTP/1.1
Host: zero.webappsecurity.com User-Agent: Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) Pragma: no-cache Cache-Control: no-cache Referer: http://zero.webappsecurity.com Content-Length: 0 |
| Request Body - size: 0 bytes. |
|
| Response Header - size: 267 bytes. |
HTTP/1.1 404 Not Found
Date: Mon, 14 Mar 2022 07:21:54 GMT Server: Apache-Coyote/1.1 Access-Control-Allow-Origin: * Cache-Control: no-cache, max-age=0, must-revalidate, no-store Content-Type: text/html;charset=utf-8 Content-Language: en Content-Length: 949 |
| Response Body - size: 949 bytes. |
<html><head><title>Apache Tomcat/7.0.70 - Error report</title><style><!--H1 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:22px;} H2 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:16px;} H3 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:14px;} BODY {font-family:Tahoma,Arial,sans-serif;color:black;background-color:white;} B {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;} P {font-family:Tahoma,Arial,sans-serif;background:white;color:black;font-size:12px;}A {color : black;}A.name {color : black;}HR {color : #525D76;}--></style> </head><body><h1>HTTP Status 404 - </h1><HR size="1" noshade="noshade"><p><b>type</b> Status report</p><p><b>message</b> <u></u></p><p><b>description</b> <u>The requested resource is not available.</u></p><HR size="1" noshade="noshade"><h3>Apache Tomcat/7.0.70</h3></body></html>
|
| URL | http://zero.webappsecurity.com/resources/img |
| Method | GET |
| Parameter | Header User-Agent |
| Attack | Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) |
| Evidence | |
| Request Header - size: 292 bytes. |
GET http://zero.webappsecurity.com/resources/img HTTP/1.1
Host: zero.webappsecurity.com User-Agent: Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) Pragma: no-cache Cache-Control: no-cache Referer: http://zero.webappsecurity.com Content-Length: 0 |
| Request Body - size: 0 bytes. |
|
| Response Header - size: 267 bytes. |
HTTP/1.1 404 Not Found
Date: Mon, 14 Mar 2022 07:21:55 GMT Server: Apache-Coyote/1.1 Access-Control-Allow-Origin: * Cache-Control: no-cache, max-age=0, must-revalidate, no-store Content-Type: text/html;charset=utf-8 Content-Language: en Content-Length: 949 |
| Response Body - size: 949 bytes. |
<html><head><title>Apache Tomcat/7.0.70 - Error report</title><style><!--H1 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:22px;} H2 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:16px;} H3 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:14px;} BODY {font-family:Tahoma,Arial,sans-serif;color:black;background-color:white;} B {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;} P {font-family:Tahoma,Arial,sans-serif;background:white;color:black;font-size:12px;}A {color : black;}A.name {color : black;}HR {color : #525D76;}--></style> </head><body><h1>HTTP Status 404 - </h1><HR size="1" noshade="noshade"><p><b>type</b> Status report</p><p><b>message</b> <u></u></p><p><b>description</b> <u>The requested resource is not available.</u></p><HR size="1" noshade="noshade"><h3>Apache Tomcat/7.0.70</h3></body></html>
|
| URL | http://zero.webappsecurity.com/resources/img |
| Method | GET |
| Parameter | Header User-Agent |
| Attack | Mozilla/5.0 (iPhone; U; CPU iPhone OS 3_0 like Mac OS X; en-us) AppleWebKit/528.18 (KHTML, like Gecko) Version/4.0 Mobile/7A341 Safari/528.16 |
| Evidence | |
| Request Header - size: 350 bytes. |
GET http://zero.webappsecurity.com/resources/img HTTP/1.1
Host: zero.webappsecurity.com User-Agent: Mozilla/5.0 (iPhone; U; CPU iPhone OS 3_0 like Mac OS X; en-us) AppleWebKit/528.18 (KHTML, like Gecko) Version/4.0 Mobile/7A341 Safari/528.16 Pragma: no-cache Cache-Control: no-cache Referer: http://zero.webappsecurity.com Content-Length: 0 |
| Request Body - size: 0 bytes. |
|
| Response Header - size: 267 bytes. |
HTTP/1.1 404 Not Found
Date: Mon, 14 Mar 2022 07:21:57 GMT Server: Apache-Coyote/1.1 Access-Control-Allow-Origin: * Cache-Control: no-cache, max-age=0, must-revalidate, no-store Content-Type: text/html;charset=utf-8 Content-Language: en Content-Length: 949 |
| Response Body - size: 949 bytes. |
<html><head><title>Apache Tomcat/7.0.70 - Error report</title><style><!--H1 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:22px;} H2 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:16px;} H3 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:14px;} BODY {font-family:Tahoma,Arial,sans-serif;color:black;background-color:white;} B {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;} P {font-family:Tahoma,Arial,sans-serif;background:white;color:black;font-size:12px;}A {color : black;}A.name {color : black;}HR {color : #525D76;}--></style> </head><body><h1>HTTP Status 404 - </h1><HR size="1" noshade="noshade"><p><b>type</b> Status report</p><p><b>message</b> <u></u></p><p><b>description</b> <u>The requested resource is not available.</u></p><HR size="1" noshade="noshade"><h3>Apache Tomcat/7.0.70</h3></body></html>
|
| URL | http://zero.webappsecurity.com/resources/img |
| Method | GET |
| Parameter | Header User-Agent |
| Attack | msnbot/1.1 (+http://search.msn.com/msnbot.htm) |
| Evidence | |
| Request Header - size: 255 bytes. |
GET http://zero.webappsecurity.com/resources/img HTTP/1.1
Host: zero.webappsecurity.com User-Agent: msnbot/1.1 (+http://search.msn.com/msnbot.htm) Pragma: no-cache Cache-Control: no-cache Referer: http://zero.webappsecurity.com Content-Length: 0 |
| Request Body - size: 0 bytes. |
|
| Response Header - size: 267 bytes. |
HTTP/1.1 404 Not Found
Date: Mon, 14 Mar 2022 07:21:55 GMT Server: Apache-Coyote/1.1 Access-Control-Allow-Origin: * Cache-Control: no-cache, max-age=0, must-revalidate, no-store Content-Type: text/html;charset=utf-8 Content-Language: en Content-Length: 949 |
| Response Body - size: 949 bytes. |
<html><head><title>Apache Tomcat/7.0.70 - Error report</title><style><!--H1 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:22px;} H2 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:16px;} H3 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:14px;} BODY {font-family:Tahoma,Arial,sans-serif;color:black;background-color:white;} B {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;} P {font-family:Tahoma,Arial,sans-serif;background:white;color:black;font-size:12px;}A {color : black;}A.name {color : black;}HR {color : #525D76;}--></style> </head><body><h1>HTTP Status 404 - </h1><HR size="1" noshade="noshade"><p><b>type</b> Status report</p><p><b>message</b> <u></u></p><p><b>description</b> <u>The requested resource is not available.</u></p><HR size="1" noshade="noshade"><h3>Apache Tomcat/7.0.70</h3></body></html>
|
| URL | http://zero.webappsecurity.com/resources/js |
| Method | GET |
| Parameter | Header User-Agent |
| Attack | Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1) |
| Evidence | |
| Request Header - size: 258 bytes. |
GET http://zero.webappsecurity.com/resources/js HTTP/1.1
Host: zero.webappsecurity.com User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1) Pragma: no-cache Cache-Control: no-cache Referer: http://zero.webappsecurity.com Content-Length: 0 |
| Request Body - size: 0 bytes. |
|
| Response Header - size: 267 bytes. |
HTTP/1.1 404 Not Found
Date: Mon, 14 Mar 2022 07:22:00 GMT Server: Apache-Coyote/1.1 Access-Control-Allow-Origin: * Cache-Control: no-cache, max-age=0, must-revalidate, no-store Content-Type: text/html;charset=utf-8 Content-Language: en Content-Length: 949 |
| Response Body - size: 949 bytes. |
<html><head><title>Apache Tomcat/7.0.70 - Error report</title><style><!--H1 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:22px;} H2 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:16px;} H3 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:14px;} BODY {font-family:Tahoma,Arial,sans-serif;color:black;background-color:white;} B {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;} P {font-family:Tahoma,Arial,sans-serif;background:white;color:black;font-size:12px;}A {color : black;}A.name {color : black;}HR {color : #525D76;}--></style> </head><body><h1>HTTP Status 404 - </h1><HR size="1" noshade="noshade"><p><b>type</b> Status report</p><p><b>message</b> <u></u></p><p><b>description</b> <u>The requested resource is not available.</u></p><HR size="1" noshade="noshade"><h3>Apache Tomcat/7.0.70</h3></body></html>
|
| URL | http://zero.webappsecurity.com/resources/js |
| Method | GET |
| Parameter | Header User-Agent |
| Attack | Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) |
| Evidence | |
| Request Header - size: 258 bytes. |
GET http://zero.webappsecurity.com/resources/js HTTP/1.1
Host: zero.webappsecurity.com User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Pragma: no-cache Cache-Control: no-cache Referer: http://zero.webappsecurity.com Content-Length: 0 |
| Request Body - size: 0 bytes. |
|
| Response Header - size: 267 bytes. |
HTTP/1.1 404 Not Found
Date: Mon, 14 Mar 2022 07:21:59 GMT Server: Apache-Coyote/1.1 Access-Control-Allow-Origin: * Cache-Control: no-cache, max-age=0, must-revalidate, no-store Content-Type: text/html;charset=utf-8 Content-Language: en Content-Length: 949 |
| Response Body - size: 949 bytes. |
<html><head><title>Apache Tomcat/7.0.70 - Error report</title><style><!--H1 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:22px;} H2 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:16px;} H3 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:14px;} BODY {font-family:Tahoma,Arial,sans-serif;color:black;background-color:white;} B {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;} P {font-family:Tahoma,Arial,sans-serif;background:white;color:black;font-size:12px;}A {color : black;}A.name {color : black;}HR {color : #525D76;}--></style> </head><body><h1>HTTP Status 404 - </h1><HR size="1" noshade="noshade"><p><b>type</b> Status report</p><p><b>message</b> <u></u></p><p><b>description</b> <u>The requested resource is not available.</u></p><HR size="1" noshade="noshade"><h3>Apache Tomcat/7.0.70</h3></body></html>
|
| URL | http://zero.webappsecurity.com/resources/js |
| Method | GET |
| Parameter | Header User-Agent |
| Attack | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1) |
| Evidence | |
| Request Header - size: 258 bytes. |
GET http://zero.webappsecurity.com/resources/js HTTP/1.1
Host: zero.webappsecurity.com User-Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1) Pragma: no-cache Cache-Control: no-cache Referer: http://zero.webappsecurity.com Content-Length: 0 |
| Request Body - size: 0 bytes. |
|
| Response Header - size: 267 bytes. |
HTTP/1.1 404 Not Found
Date: Mon, 14 Mar 2022 07:21:59 GMT Server: Apache-Coyote/1.1 Access-Control-Allow-Origin: * Cache-Control: no-cache, max-age=0, must-revalidate, no-store Content-Type: text/html;charset=utf-8 Content-Language: en Content-Length: 949 |
| Response Body - size: 949 bytes. |
<html><head><title>Apache Tomcat/7.0.70 - Error report</title><style><!--H1 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:22px;} H2 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:16px;} H3 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:14px;} BODY {font-family:Tahoma,Arial,sans-serif;color:black;background-color:white;} B {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;} P {font-family:Tahoma,Arial,sans-serif;background:white;color:black;font-size:12px;}A {color : black;}A.name {color : black;}HR {color : #525D76;}--></style> </head><body><h1>HTTP Status 404 - </h1><HR size="1" noshade="noshade"><p><b>type</b> Status report</p><p><b>message</b> <u></u></p><p><b>description</b> <u>The requested resource is not available.</u></p><HR size="1" noshade="noshade"><h3>Apache Tomcat/7.0.70</h3></body></html>
|
| URL | http://zero.webappsecurity.com/resources/js |
| Method | GET |
| Parameter | Header User-Agent |
| Attack | Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) |
| Evidence | |
| Request Header - size: 280 bytes. |
GET http://zero.webappsecurity.com/resources/js HTTP/1.1
Host: zero.webappsecurity.com User-Agent: Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) Pragma: no-cache Cache-Control: no-cache Referer: http://zero.webappsecurity.com Content-Length: 0 |
| Request Body - size: 0 bytes. |
|
| Response Header - size: 267 bytes. |
HTTP/1.1 404 Not Found
Date: Mon, 14 Mar 2022 07:22:00 GMT Server: Apache-Coyote/1.1 Access-Control-Allow-Origin: * Cache-Control: no-cache, max-age=0, must-revalidate, no-store Content-Type: text/html;charset=utf-8 Content-Language: en Content-Length: 949 |
| Response Body - size: 949 bytes. |
<html><head><title>Apache Tomcat/7.0.70 - Error report</title><style><!--H1 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:22px;} H2 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:16px;} H3 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:14px;} BODY {font-family:Tahoma,Arial,sans-serif;color:black;background-color:white;} B {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;} P {font-family:Tahoma,Arial,sans-serif;background:white;color:black;font-size:12px;}A {color : black;}A.name {color : black;}HR {color : #525D76;}--></style> </head><body><h1>HTTP Status 404 - </h1><HR size="1" noshade="noshade"><p><b>type</b> Status report</p><p><b>message</b> <u></u></p><p><b>description</b> <u>The requested resource is not available.</u></p><HR size="1" noshade="noshade"><h3>Apache Tomcat/7.0.70</h3></body></html>
|
| URL | http://zero.webappsecurity.com/resources/js |
| Method | GET |
| Parameter | Header User-Agent |
| Attack | Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) |
| Evidence | |
| Request Header - size: 291 bytes. |
GET http://zero.webappsecurity.com/resources/js HTTP/1.1
Host: zero.webappsecurity.com User-Agent: Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) Pragma: no-cache Cache-Control: no-cache Referer: http://zero.webappsecurity.com Content-Length: 0 |
| Request Body - size: 0 bytes. |
|
| Response Header - size: 267 bytes. |
HTTP/1.1 404 Not Found
Date: Mon, 14 Mar 2022 07:22:01 GMT Server: Apache-Coyote/1.1 Access-Control-Allow-Origin: * Cache-Control: no-cache, max-age=0, must-revalidate, no-store Content-Type: text/html;charset=utf-8 Content-Language: en Content-Length: 949 |
| Response Body - size: 949 bytes. |
<html><head><title>Apache Tomcat/7.0.70 - Error report</title><style><!--H1 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:22px;} H2 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:16px;} H3 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:14px;} BODY {font-family:Tahoma,Arial,sans-serif;color:black;background-color:white;} B {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;} P {font-family:Tahoma,Arial,sans-serif;background:white;color:black;font-size:12px;}A {color : black;}A.name {color : black;}HR {color : #525D76;}--></style> </head><body><h1>HTTP Status 404 - </h1><HR size="1" noshade="noshade"><p><b>type</b> Status report</p><p><b>message</b> <u></u></p><p><b>description</b> <u>The requested resource is not available.</u></p><HR size="1" noshade="noshade"><h3>Apache Tomcat/7.0.70</h3></body></html>
|
| URL | http://zero.webappsecurity.com/resources/js |
| Method | GET |
| Parameter | Header User-Agent |
| Attack | Mozilla/5.0 (iPhone; U; CPU iPhone OS 3_0 like Mac OS X; en-us) AppleWebKit/528.18 (KHTML, like Gecko) Version/4.0 Mobile/7A341 Safari/528.16 |
| Evidence | |
| Request Header - size: 349 bytes. |
GET http://zero.webappsecurity.com/resources/js HTTP/1.1
Host: zero.webappsecurity.com User-Agent: Mozilla/5.0 (iPhone; U; CPU iPhone OS 3_0 like Mac OS X; en-us) AppleWebKit/528.18 (KHTML, like Gecko) Version/4.0 Mobile/7A341 Safari/528.16 Pragma: no-cache Cache-Control: no-cache Referer: http://zero.webappsecurity.com Content-Length: 0 |
| Request Body - size: 0 bytes. |
|
| Response Header - size: 267 bytes. |
HTTP/1.1 404 Not Found
Date: Mon, 14 Mar 2022 07:22:02 GMT Server: Apache-Coyote/1.1 Access-Control-Allow-Origin: * Cache-Control: no-cache, max-age=0, must-revalidate, no-store Content-Type: text/html;charset=utf-8 Content-Language: en Content-Length: 949 |
| Response Body - size: 949 bytes. |
<html><head><title>Apache Tomcat/7.0.70 - Error report</title><style><!--H1 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:22px;} H2 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:16px;} H3 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:14px;} BODY {font-family:Tahoma,Arial,sans-serif;color:black;background-color:white;} B {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;} P {font-family:Tahoma,Arial,sans-serif;background:white;color:black;font-size:12px;}A {color : black;}A.name {color : black;}HR {color : #525D76;}--></style> </head><body><h1>HTTP Status 404 - </h1><HR size="1" noshade="noshade"><p><b>type</b> Status report</p><p><b>message</b> <u></u></p><p><b>description</b> <u>The requested resource is not available.</u></p><HR size="1" noshade="noshade"><h3>Apache Tomcat/7.0.70</h3></body></html>
|
| URL | http://zero.webappsecurity.com/resources/js |
| Method | GET |
| Parameter | Header User-Agent |
| Attack | msnbot/1.1 (+http://search.msn.com/msnbot.htm) |
| Evidence | |
| Request Header - size: 254 bytes. |
GET http://zero.webappsecurity.com/resources/js HTTP/1.1
Host: zero.webappsecurity.com User-Agent: msnbot/1.1 (+http://search.msn.com/msnbot.htm) Pragma: no-cache Cache-Control: no-cache Referer: http://zero.webappsecurity.com Content-Length: 0 |
| Request Body - size: 0 bytes. |
|
| Response Header - size: 267 bytes. |
HTTP/1.1 404 Not Found
Date: Mon, 14 Mar 2022 07:22:01 GMT Server: Apache-Coyote/1.1 Access-Control-Allow-Origin: * Cache-Control: no-cache, max-age=0, must-revalidate, no-store Content-Type: text/html;charset=utf-8 Content-Language: en Content-Length: 949 |
| Response Body - size: 949 bytes. |
<html><head><title>Apache Tomcat/7.0.70 - Error report</title><style><!--H1 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:22px;} H2 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:16px;} H3 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:14px;} BODY {font-family:Tahoma,Arial,sans-serif;color:black;background-color:white;} B {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;} P {font-family:Tahoma,Arial,sans-serif;background:white;color:black;font-size:12px;}A {color : black;}A.name {color : black;}HR {color : #525D76;}--></style> </head><body><h1>HTTP Status 404 - </h1><HR size="1" noshade="noshade"><p><b>type</b> Status report</p><p><b>message</b> <u></u></p><p><b>description</b> <u>The requested resource is not available.</u></p><HR size="1" noshade="noshade"><h3>Apache Tomcat/7.0.70</h3></body></html>
|
| Instances | 28 |
| Solution | |
| Reference | https://owasp.org/wstg |
| Tags | |
| CWE Id | |
| WASC Id | |
| Plugin Id | 10104 |